ETH Price: $3,186.44 (-7.43%)
Gas: 2 Gwei

Token

BBSHEEP (BBSHEEP)
 

Overview

Max Total Supply

274 BBSHEEP

Holders

164

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 BBSHEEP
0xa8D3F65b6E2922fED1430b77aC2b557e1fa8DA4a
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:
NFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity 0.8.7;

// File @openzeppelin/contracts/utils/introspection/[email protected]

/**
 * @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]

/**
 * @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 whiteed 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 whiteed 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]

/**
 * @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]

/**
 * @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]

/**
 * @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]

/**
 * @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]

/**
 * @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]

/**
 * @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]

/**
 * @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(), ".json")) : "";
    }

    /**
     * @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 "https://bafybeihndaytwn2pihob3b5yl2wuym7hfudxapl5ray57llscwj2pqlcda.ipfs.nftstorage.link/";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

/**
 * @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]


/**
 * @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; //用户->列表->token

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex; //用户tokenID -> 用户列表序号

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

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex; //全部tokenID -> 总列表序号

    /**
     * @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]; //返回owner 的tokenid
    }

    /**
     * @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]; //在index序号的token
    }

    /**
     * @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);//mint
        } 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 whites 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;//数量少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/utils/math/[email protected]


// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}


// File @openzeppelin/contracts/access/[email protected]

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

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

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

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

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

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

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

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


contract NFT is ERC721("BBSHEEP", "BBSHEEP"), ERC721Enumerable, Ownable {
    using SafeMath for uint256;
    using Strings for uint256;

    uint256 public constant PUBLIC_LIMIT_PER_TX = 2;
    uint256 public constant SALE_LIMIT_PER_TX = 10;
    uint256 public constant MAX_NFT_PUBLIC = 2000;
    uint256 public constant MAX_NFT_SALE = 8000;
    uint256 private constant MAX_NFT = 10000;
    uint256 public NFTPrice = 5000000000000000;  // 0.005 ETH
    bool public isActive;
    bool public isPresaleActive;
    bool public freeMintActive;
    uint256 public freeMintCount;
    uint256 public saleMintCount;

    
    /*
     * Function setIsActive to activate/desactivate the smart contract
    */
    function setIsActive(bool _isActive) external onlyOwner {
        isActive = _isActive;
    }
    
    /*
     * Function setPresaleActive to activate/desactivate the whitelist/raffle presale  
    */
    function setPresaleActive(bool _isActive) external onlyOwner {
        isPresaleActive = _isActive;
    }

    /*
     * Function setFreeMintActive to activate/desactivate the free mint capability  
    */
    function setFreeMintActive(bool _isActive) external onlyOwner {
        freeMintActive = _isActive;
    }
    
    /*
     * Function to withdraw collected amount during minting by the owner
    */
    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        require(balance > 0, "Balance should be more then zero");
        payable(msg.sender).transfer(balance);
    }
    
    /*
     * Function to mint new NFTs during the public free
     * It is payable. Amount is calculated as per (NFTPrice.mul(_numOfTokens))
    */
    function freeMintNFT(uint256 _numOfTokens)public payable{
        require(isActive, 'Contract is not active');
        require(!isPresaleActive, 'Presale is still active');
        require(balanceOf(msg.sender).add(_numOfTokens) <= PUBLIC_LIMIT_PER_TX, "Cannot mint above limit");
        require(freeMintCount.add(_numOfTokens) <= MAX_NFT_PUBLIC, "Purchase would exceed max free supply of NFTs");

        freeMintCount = freeMintCount.add(_numOfTokens);

        for(uint i = 0; i < _numOfTokens; i++) {
            _safeMint(msg.sender, totalSupply());
        }
    }

    /*
     * Function to mint new NFTs during the presale
     * It is payable. Amount is calculated as per (NFTPrice.mul(_numOfTokens))
    */ 
    function mintNFTDuringPresale(uint256 _numOfTokens) public payable{
        require(isActive, 'Sale is not active');
        require(isPresaleActive, 'sale is not active');
        require(totalSupply() < MAX_NFT, 'All tokens have been minted');
        require(balanceOf(msg.sender).add(_numOfTokens) <= SALE_LIMIT_PER_TX, "Cannot mint above limit");
        require(saleMintCount.add(_numOfTokens) <= MAX_NFT_SALE, 'Purchase would exceed max sale supply of NFTs');
        require(NFTPrice.mul(_numOfTokens) == msg.value, "Ether value sent is not correct");

        saleMintCount = saleMintCount.add(_numOfTokens);

        for (uint256 i = 0; i < _numOfTokens; i++) {
                _safeMint(msg.sender, totalSupply());
        }
    }
    

    // Standard functions to be overridden in ERC721Enumerable
    function supportsInterface(
        bytes4 _interfaceId
    ) 
        public
        view 
        override (ERC721, ERC721Enumerable) 
        returns (bool) 
    {
        return super.supportsInterface(_interfaceId);
    }

    function _beforeTokenTransfer(
        address _from, 
        address _to, 
        uint256 _tokenId
    ) 
        internal 
        override(ERC721, ERC721Enumerable) 
    {
        super._beforeTokenTransfer(_from, _to, _tokenId);
    }

}

Contract Security Audit

Contract ABI

[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_NFT_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT_SALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFTPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_LIMIT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_LIMIT_PER_TX","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":"freeMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numOfTokens","type":"uint256"}],"name":"freeMintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numOfTokens","type":"uint256"}],"name":"mintNFTDuringPresale","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":[],"name":"saleMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isActive","type":"bool"}],"name":"setFreeMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isActive","type":"bool"}],"name":"setIsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isActive","type":"bool"}],"name":"setPresaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"_interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526611c37937e08000600b553480156200001c57600080fd5b506040805180820182526007808252660424253484545560cc1b6020808401828152855180870190965292855284015281519192916200005f91600091620000ee565b50805162000075906001906020840190620000ee565b505050620000926200008c6200009860201b60201c565b6200009c565b620001d1565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000fc9062000194565b90600052602060002090601f0160209004810192826200012057600085556200016b565b82601f106200013b57805160ff19168380011785556200016b565b828001600101855582156200016b579182015b828111156200016b5782518255916020019190600101906200014e565b50620001799291506200017d565b5090565b5b808211156200017957600081556001016200017e565b600181811c90821680620001a957607f821691505b60208210811415620001cb57634e487b7160e01b600052602260045260246000fd5b50919050565b61235680620001e16000396000f3fe6080604052600436106102035760003560e01c806360d938dc11610118578063b88d4fde116100a0578063e55f58bb1161006f578063e55f58bb14610594578063e985e9c5146105aa578063f29c7ff3146105f3578063f2fde38b14610606578063ff99d8ce1461062657600080fd5b8063b88d4fde1461051e578063c87b56dd1461053e578063cb5bc2aa1461055e578063d1d80f301461057e57600080fd5b8063715018a6116100e7578063715018a6146104a05780638da5cb5b146104b557806395d89b41146104d3578063a22cb465146104e8578063a38bffda1461050857600080fd5b806360d938dc1461042c57806361942b181461044b5780636352211e1461046057806370a082311461048057600080fd5b806322f3e2d41161019b5780633ccfd60b1161016a5780633ccfd60b146103975780633f8121a2146103ac57806342842e0e146103cc5780634f6ccce7146103ec5780634f9b563c1461040c57600080fd5b806322f3e2d41461031d57806323b872dd146103375780632750fc78146103575780632f745c591461037757600080fd5b8063095ea7b3116101d7578063095ea7b3146102ba57806318160ddd146102dc5780631abe10f0146102f15780631e4d8cc01461030757600080fd5b80620ed7791461020857806301ffc9a71461023057806306fdde0314610260578063081812fc14610282575b600080fd5b34801561021457600080fd5b5061021d600281565b6040519081526020015b60405180910390f35b34801561023c57600080fd5b5061025061024b366004611f65565b610639565b6040519015158152602001610227565b34801561026c57600080fd5b5061027561064a565b6040516102279190612060565b34801561028e57600080fd5b506102a261029d366004611f9f565b6106dc565b6040516001600160a01b039091168152602001610227565b3480156102c657600080fd5b506102da6102d5366004611f20565b610776565b005b3480156102e857600080fd5b5060085461021d565b3480156102fd57600080fd5b5061021d611f4081565b34801561031357600080fd5b5061021d600e5481565b34801561032957600080fd5b50600c546102509060ff1681565b34801561034357600080fd5b506102da610352366004611dde565b61088c565b34801561036357600080fd5b506102da610372366004611f4a565b6108bd565b34801561038357600080fd5b5061021d610392366004611f20565b6108fa565b3480156103a357600080fd5b506102da610990565b3480156103b857600080fd5b506102da6103c7366004611f4a565b610a39565b3480156103d857600080fd5b506102da6103e7366004611dde565b610a7d565b3480156103f857600080fd5b5061021d610407366004611f9f565b610a98565b34801561041857600080fd5b506102da610427366004611f4a565b610b2b565b34801561043857600080fd5b50600c5461025090610100900460ff1681565b34801561045757600080fd5b5061021d600a81565b34801561046c57600080fd5b506102a261047b366004611f9f565b610b71565b34801561048c57600080fd5b5061021d61049b366004611d90565b610be8565b3480156104ac57600080fd5b506102da610c6f565b3480156104c157600080fd5b50600a546001600160a01b03166102a2565b3480156104df57600080fd5b50610275610ca5565b3480156104f457600080fd5b506102da610503366004611ef6565b610cb4565b34801561051457600080fd5b5061021d600b5481565b34801561052a57600080fd5b506102da610539366004611e1a565b610d79565b34801561054a57600080fd5b50610275610559366004611f9f565b610db1565b34801561056a57600080fd5b50600c546102509062010000900460ff1681565b34801561058a57600080fd5b5061021d6107d081565b3480156105a057600080fd5b5061021d600d5481565b3480156105b657600080fd5b506102506105c5366004611dab565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102da610601366004611f9f565b610e8c565b34801561061257600080fd5b506102da610621366004611d90565b611040565b6102da610634366004611f9f565b6110db565b600061064482611329565b92915050565b606060008054610659906121d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610685906121d9565b80156106d25780601f106106a7576101008083540402835291602001916106d2565b820191906000526020600020905b8154815290600101906020018083116106b557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661075a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061078182610b71565b9050806001600160a01b0316836001600160a01b031614156107ef5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610751565b336001600160a01b038216148061080b575061080b81336105c5565b61087d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610751565b610887838361134e565b505050565b61089633826113bc565b6108b25760405162461bcd60e51b8152600401610751906120fa565b6108878383836114b3565b600a546001600160a01b031633146108e75760405162461bcd60e51b8152600401610751906120c5565b600c805460ff1916911515919091179055565b600061090583610be8565b82106109675760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610751565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146109ba5760405162461bcd60e51b8152600401610751906120c5565b4780610a085760405162461bcd60e51b815260206004820181905260248201527f42616c616e63652073686f756c64206265206d6f7265207468656e207a65726f6044820152606401610751565b604051339082156108fc029083906000818181858888f19350505050158015610a35573d6000803e3d6000fd5b5050565b600a546001600160a01b03163314610a635760405162461bcd60e51b8152600401610751906120c5565b600c80549115156101000261ff0019909216919091179055565b61088783838360405180602001604052806000815250610d79565b6000610aa360085490565b8210610b065760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610751565b60088281548110610b1957610b19612285565b90600052602060002001549050919050565b600a546001600160a01b03163314610b555760405162461bcd60e51b8152600401610751906120c5565b600c8054911515620100000262ff000019909216919091179055565b6000818152600260205260408120546001600160a01b0316806106445760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610751565b60006001600160a01b038216610c535760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610751565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610c995760405162461bcd60e51b8152600401610751906120c5565b610ca3600061165e565b565b606060018054610659906121d9565b6001600160a01b038216331415610d0d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610751565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d8333836113bc565b610d9f5760405162461bcd60e51b8152600401610751906120fa565b610dab848484846116b0565b50505050565b6000818152600260205260409020546060906001600160a01b0316610e305760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610751565b6000610e3a6116e3565b90506000815111610e5a5760405180602001604052806000815250610e85565b80610e6484611703565b604051602001610e75929190611fe4565b6040516020818303038152906040525b9392505050565b600c5460ff16610ed75760405162461bcd60e51b8152602060048201526016602482015275436f6e7472616374206973206e6f742061637469766560501b6044820152606401610751565b600c54610100900460ff1615610f2f5760405162461bcd60e51b815260206004820152601760248201527f50726573616c65206973207374696c6c206163746976650000000000000000006044820152606401610751565b6002610f4482610f3e33610be8565b90611801565b1115610f8c5760405162461bcd60e51b815260206004820152601760248201527610d85b9b9bdd081b5a5b9d0818589bdd99481b1a5b5a5d604a1b6044820152606401610751565b600d546107d090610f9d9083611801565b11156110015760405162461bcd60e51b815260206004820152602d60248201527f507572636861736520776f756c6420657863656564206d61782066726565207360448201526c7570706c79206f66204e46547360981b6064820152608401610751565b600d5461100e9082611801565b600d5560005b81811015610a355761102e3361102960085490565b61180d565b8061103881612214565b915050611014565b600a546001600160a01b0316331461106a5760405162461bcd60e51b8152600401610751906120c5565b6001600160a01b0381166110cf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610751565b6110d88161165e565b50565b600c5460ff166111225760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b6044820152606401610751565b600c54610100900460ff1661116e5760405162461bcd60e51b815260206004820152601260248201527173616c65206973206e6f742061637469766560701b6044820152606401610751565b61271061117a60085490565b106111c75760405162461bcd60e51b815260206004820152601b60248201527f416c6c20746f6b656e732068617665206265656e206d696e74656400000000006044820152606401610751565b600a6111d682610f3e33610be8565b111561121e5760405162461bcd60e51b815260206004820152601760248201527610d85b9b9bdd081b5a5b9d0818589bdd99481b1a5b5a5d604a1b6044820152606401610751565b600e54611f409061122f9083611801565b11156112935760405162461bcd60e51b815260206004820152602d60248201527f507572636861736520776f756c6420657863656564206d61782073616c65207360448201526c7570706c79206f66204e46547360981b6064820152608401610751565b600b5434906112a29083611827565b146112ef5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610751565b600e546112fc9082611801565b600e5560005b81811015610a35576113173361102960085490565b8061132181612214565b915050611302565b60006001600160e01b0319821663780e9d6360e01b1480610644575061064482611833565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061138382610b71565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114355760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610751565b600061144083610b71565b9050806001600160a01b0316846001600160a01b0316148061147b5750836001600160a01b0316611470846106dc565b6001600160a01b0316145b806114ab57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166114c682610b71565b6001600160a01b03161461152e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610751565b6001600160a01b0382166115905760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610751565b61159b838383611883565b6115a660008261134e565b6001600160a01b03831660009081526003602052604081208054600192906115cf908490612196565b90915550506001600160a01b03821660009081526003602052604081208054600192906115fd90849061214b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6116bb8484846114b3565b6116c78484848461188e565b610dab5760405162461bcd60e51b815260040161075190612073565b60606040518060800160405280605981526020016122c860599139905090565b6060816117275750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611751578061173b81612214565b915061174a9050600a83612163565b915061172b565b60008167ffffffffffffffff81111561176c5761176c61229b565b6040519080825280601f01601f191660200182016040528015611796576020820181803683370190505b5090505b84156114ab576117ab600183612196565b91506117b8600a8661222f565b6117c390603061214b565b60f81b8183815181106117d8576117d8612285565b60200101906001600160f81b031916908160001a9053506117fa600a86612163565b945061179a565b6000610e85828461214b565b610a3582826040518060200160405280600081525061199b565b6000610e858284612177565b60006001600160e01b031982166380ac58cd60e01b148061186457506001600160e01b03198216635b5e139f60e01b145b8061064457506301ffc9a760e01b6001600160e01b0319831614610644565b6108878383836119ce565b60006001600160a01b0384163b1561199057604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906118d2903390899088908890600401612023565b602060405180830381600087803b1580156118ec57600080fd5b505af192505050801561191c575060408051601f3d908101601f1916820190925261191991810190611f82565b60015b611976573d80801561194a576040519150601f19603f3d011682016040523d82523d6000602084013e61194f565b606091505b50805161196e5760405162461bcd60e51b815260040161075190612073565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506114ab565b506001949350505050565b6119a58383611a86565b6119b2600084848461188e565b6108875760405162461bcd60e51b815260040161075190612073565b6001600160a01b038316611a2957611a2481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611a4c565b816001600160a01b0316836001600160a01b031614611a4c57611a4c8382611bd4565b6001600160a01b038216611a635761088781611c71565b826001600160a01b0316826001600160a01b031614610887576108878282611d20565b6001600160a01b038216611adc5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610751565b6000818152600260205260409020546001600160a01b031615611b415760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610751565b611b4d60008383611883565b6001600160a01b0382166000908152600360205260408120805460019290611b7690849061214b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611be184610be8565b611beb9190612196565b600083815260076020526040902054909150808214611c3e576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611c8390600190612196565b60008381526009602052604081205460088054939450909284908110611cab57611cab612285565b906000526020600020015490508060088381548110611ccc57611ccc612285565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611d0457611d0461226f565b6001900381819060005260206000200160009055905550505050565b6000611d2b83610be8565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b80356001600160a01b0381168114611d7b57600080fd5b919050565b80358015158114611d7b57600080fd5b600060208284031215611da257600080fd5b610e8582611d64565b60008060408385031215611dbe57600080fd5b611dc783611d64565b9150611dd560208401611d64565b90509250929050565b600080600060608486031215611df357600080fd5b611dfc84611d64565b9250611e0a60208501611d64565b9150604084013590509250925092565b60008060008060808587031215611e3057600080fd5b611e3985611d64565b9350611e4760208601611d64565b925060408501359150606085013567ffffffffffffffff80821115611e6b57600080fd5b818701915087601f830112611e7f57600080fd5b813581811115611e9157611e9161229b565b604051601f8201601f19908116603f01168101908382118183101715611eb957611eb961229b565b816040528281528a6020848701011115611ed257600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611f0957600080fd5b611f1283611d64565b9150611dd560208401611d80565b60008060408385031215611f3357600080fd5b611f3c83611d64565b946020939093013593505050565b600060208284031215611f5c57600080fd5b610e8582611d80565b600060208284031215611f7757600080fd5b8135610e85816122b1565b600060208284031215611f9457600080fd5b8151610e85816122b1565b600060208284031215611fb157600080fd5b5035919050565b60008151808452611fd08160208601602086016121ad565b601f01601f19169290920160200192915050565b60008351611ff68184602088016121ad565b83519083019061200a8183602088016121ad565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061205690830184611fb8565b9695505050505050565b602081526000610e856020830184611fb8565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561215e5761215e612243565b500190565b60008261217257612172612259565b500490565b600081600019048311821515161561219157612191612243565b500290565b6000828210156121a8576121a8612243565b500390565b60005b838110156121c85781810151838201526020016121b0565b83811115610dab5750506000910152565b600181811c908216806121ed57607f821691505b6020821081141561220e57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561222857612228612243565b5060010190565b60008261223e5761223e612259565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146110d857600080fdfe68747470733a2f2f62616679626569686e64617974776e327069686f62336235796c327775796d37686675647861706c3572617935376c6c7363776a3270716c6364612e697066732e6e667473746f726167652e6c696e6b2fa26469706673582212205981c5b91f63201707f87762fa66994adb8ee6ea887239ced24f50b82fc4260e64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102035760003560e01c806360d938dc11610118578063b88d4fde116100a0578063e55f58bb1161006f578063e55f58bb14610594578063e985e9c5146105aa578063f29c7ff3146105f3578063f2fde38b14610606578063ff99d8ce1461062657600080fd5b8063b88d4fde1461051e578063c87b56dd1461053e578063cb5bc2aa1461055e578063d1d80f301461057e57600080fd5b8063715018a6116100e7578063715018a6146104a05780638da5cb5b146104b557806395d89b41146104d3578063a22cb465146104e8578063a38bffda1461050857600080fd5b806360d938dc1461042c57806361942b181461044b5780636352211e1461046057806370a082311461048057600080fd5b806322f3e2d41161019b5780633ccfd60b1161016a5780633ccfd60b146103975780633f8121a2146103ac57806342842e0e146103cc5780634f6ccce7146103ec5780634f9b563c1461040c57600080fd5b806322f3e2d41461031d57806323b872dd146103375780632750fc78146103575780632f745c591461037757600080fd5b8063095ea7b3116101d7578063095ea7b3146102ba57806318160ddd146102dc5780631abe10f0146102f15780631e4d8cc01461030757600080fd5b80620ed7791461020857806301ffc9a71461023057806306fdde0314610260578063081812fc14610282575b600080fd5b34801561021457600080fd5b5061021d600281565b6040519081526020015b60405180910390f35b34801561023c57600080fd5b5061025061024b366004611f65565b610639565b6040519015158152602001610227565b34801561026c57600080fd5b5061027561064a565b6040516102279190612060565b34801561028e57600080fd5b506102a261029d366004611f9f565b6106dc565b6040516001600160a01b039091168152602001610227565b3480156102c657600080fd5b506102da6102d5366004611f20565b610776565b005b3480156102e857600080fd5b5060085461021d565b3480156102fd57600080fd5b5061021d611f4081565b34801561031357600080fd5b5061021d600e5481565b34801561032957600080fd5b50600c546102509060ff1681565b34801561034357600080fd5b506102da610352366004611dde565b61088c565b34801561036357600080fd5b506102da610372366004611f4a565b6108bd565b34801561038357600080fd5b5061021d610392366004611f20565b6108fa565b3480156103a357600080fd5b506102da610990565b3480156103b857600080fd5b506102da6103c7366004611f4a565b610a39565b3480156103d857600080fd5b506102da6103e7366004611dde565b610a7d565b3480156103f857600080fd5b5061021d610407366004611f9f565b610a98565b34801561041857600080fd5b506102da610427366004611f4a565b610b2b565b34801561043857600080fd5b50600c5461025090610100900460ff1681565b34801561045757600080fd5b5061021d600a81565b34801561046c57600080fd5b506102a261047b366004611f9f565b610b71565b34801561048c57600080fd5b5061021d61049b366004611d90565b610be8565b3480156104ac57600080fd5b506102da610c6f565b3480156104c157600080fd5b50600a546001600160a01b03166102a2565b3480156104df57600080fd5b50610275610ca5565b3480156104f457600080fd5b506102da610503366004611ef6565b610cb4565b34801561051457600080fd5b5061021d600b5481565b34801561052a57600080fd5b506102da610539366004611e1a565b610d79565b34801561054a57600080fd5b50610275610559366004611f9f565b610db1565b34801561056a57600080fd5b50600c546102509062010000900460ff1681565b34801561058a57600080fd5b5061021d6107d081565b3480156105a057600080fd5b5061021d600d5481565b3480156105b657600080fd5b506102506105c5366004611dab565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102da610601366004611f9f565b610e8c565b34801561061257600080fd5b506102da610621366004611d90565b611040565b6102da610634366004611f9f565b6110db565b600061064482611329565b92915050565b606060008054610659906121d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610685906121d9565b80156106d25780601f106106a7576101008083540402835291602001916106d2565b820191906000526020600020905b8154815290600101906020018083116106b557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661075a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061078182610b71565b9050806001600160a01b0316836001600160a01b031614156107ef5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610751565b336001600160a01b038216148061080b575061080b81336105c5565b61087d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610751565b610887838361134e565b505050565b61089633826113bc565b6108b25760405162461bcd60e51b8152600401610751906120fa565b6108878383836114b3565b600a546001600160a01b031633146108e75760405162461bcd60e51b8152600401610751906120c5565b600c805460ff1916911515919091179055565b600061090583610be8565b82106109675760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610751565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146109ba5760405162461bcd60e51b8152600401610751906120c5565b4780610a085760405162461bcd60e51b815260206004820181905260248201527f42616c616e63652073686f756c64206265206d6f7265207468656e207a65726f6044820152606401610751565b604051339082156108fc029083906000818181858888f19350505050158015610a35573d6000803e3d6000fd5b5050565b600a546001600160a01b03163314610a635760405162461bcd60e51b8152600401610751906120c5565b600c80549115156101000261ff0019909216919091179055565b61088783838360405180602001604052806000815250610d79565b6000610aa360085490565b8210610b065760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610751565b60088281548110610b1957610b19612285565b90600052602060002001549050919050565b600a546001600160a01b03163314610b555760405162461bcd60e51b8152600401610751906120c5565b600c8054911515620100000262ff000019909216919091179055565b6000818152600260205260408120546001600160a01b0316806106445760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610751565b60006001600160a01b038216610c535760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610751565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610c995760405162461bcd60e51b8152600401610751906120c5565b610ca3600061165e565b565b606060018054610659906121d9565b6001600160a01b038216331415610d0d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610751565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d8333836113bc565b610d9f5760405162461bcd60e51b8152600401610751906120fa565b610dab848484846116b0565b50505050565b6000818152600260205260409020546060906001600160a01b0316610e305760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610751565b6000610e3a6116e3565b90506000815111610e5a5760405180602001604052806000815250610e85565b80610e6484611703565b604051602001610e75929190611fe4565b6040516020818303038152906040525b9392505050565b600c5460ff16610ed75760405162461bcd60e51b8152602060048201526016602482015275436f6e7472616374206973206e6f742061637469766560501b6044820152606401610751565b600c54610100900460ff1615610f2f5760405162461bcd60e51b815260206004820152601760248201527f50726573616c65206973207374696c6c206163746976650000000000000000006044820152606401610751565b6002610f4482610f3e33610be8565b90611801565b1115610f8c5760405162461bcd60e51b815260206004820152601760248201527610d85b9b9bdd081b5a5b9d0818589bdd99481b1a5b5a5d604a1b6044820152606401610751565b600d546107d090610f9d9083611801565b11156110015760405162461bcd60e51b815260206004820152602d60248201527f507572636861736520776f756c6420657863656564206d61782066726565207360448201526c7570706c79206f66204e46547360981b6064820152608401610751565b600d5461100e9082611801565b600d5560005b81811015610a355761102e3361102960085490565b61180d565b8061103881612214565b915050611014565b600a546001600160a01b0316331461106a5760405162461bcd60e51b8152600401610751906120c5565b6001600160a01b0381166110cf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610751565b6110d88161165e565b50565b600c5460ff166111225760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b6044820152606401610751565b600c54610100900460ff1661116e5760405162461bcd60e51b815260206004820152601260248201527173616c65206973206e6f742061637469766560701b6044820152606401610751565b61271061117a60085490565b106111c75760405162461bcd60e51b815260206004820152601b60248201527f416c6c20746f6b656e732068617665206265656e206d696e74656400000000006044820152606401610751565b600a6111d682610f3e33610be8565b111561121e5760405162461bcd60e51b815260206004820152601760248201527610d85b9b9bdd081b5a5b9d0818589bdd99481b1a5b5a5d604a1b6044820152606401610751565b600e54611f409061122f9083611801565b11156112935760405162461bcd60e51b815260206004820152602d60248201527f507572636861736520776f756c6420657863656564206d61782073616c65207360448201526c7570706c79206f66204e46547360981b6064820152608401610751565b600b5434906112a29083611827565b146112ef5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610751565b600e546112fc9082611801565b600e5560005b81811015610a35576113173361102960085490565b8061132181612214565b915050611302565b60006001600160e01b0319821663780e9d6360e01b1480610644575061064482611833565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061138382610b71565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114355760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610751565b600061144083610b71565b9050806001600160a01b0316846001600160a01b0316148061147b5750836001600160a01b0316611470846106dc565b6001600160a01b0316145b806114ab57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166114c682610b71565b6001600160a01b03161461152e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610751565b6001600160a01b0382166115905760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610751565b61159b838383611883565b6115a660008261134e565b6001600160a01b03831660009081526003602052604081208054600192906115cf908490612196565b90915550506001600160a01b03821660009081526003602052604081208054600192906115fd90849061214b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6116bb8484846114b3565b6116c78484848461188e565b610dab5760405162461bcd60e51b815260040161075190612073565b60606040518060800160405280605981526020016122c860599139905090565b6060816117275750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611751578061173b81612214565b915061174a9050600a83612163565b915061172b565b60008167ffffffffffffffff81111561176c5761176c61229b565b6040519080825280601f01601f191660200182016040528015611796576020820181803683370190505b5090505b84156114ab576117ab600183612196565b91506117b8600a8661222f565b6117c390603061214b565b60f81b8183815181106117d8576117d8612285565b60200101906001600160f81b031916908160001a9053506117fa600a86612163565b945061179a565b6000610e85828461214b565b610a3582826040518060200160405280600081525061199b565b6000610e858284612177565b60006001600160e01b031982166380ac58cd60e01b148061186457506001600160e01b03198216635b5e139f60e01b145b8061064457506301ffc9a760e01b6001600160e01b0319831614610644565b6108878383836119ce565b60006001600160a01b0384163b1561199057604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906118d2903390899088908890600401612023565b602060405180830381600087803b1580156118ec57600080fd5b505af192505050801561191c575060408051601f3d908101601f1916820190925261191991810190611f82565b60015b611976573d80801561194a576040519150601f19603f3d011682016040523d82523d6000602084013e61194f565b606091505b50805161196e5760405162461bcd60e51b815260040161075190612073565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506114ab565b506001949350505050565b6119a58383611a86565b6119b2600084848461188e565b6108875760405162461bcd60e51b815260040161075190612073565b6001600160a01b038316611a2957611a2481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611a4c565b816001600160a01b0316836001600160a01b031614611a4c57611a4c8382611bd4565b6001600160a01b038216611a635761088781611c71565b826001600160a01b0316826001600160a01b031614610887576108878282611d20565b6001600160a01b038216611adc5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610751565b6000818152600260205260409020546001600160a01b031615611b415760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610751565b611b4d60008383611883565b6001600160a01b0382166000908152600360205260408120805460019290611b7690849061214b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611be184610be8565b611beb9190612196565b600083815260076020526040902054909150808214611c3e576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611c8390600190612196565b60008381526009602052604081205460088054939450909284908110611cab57611cab612285565b906000526020600020015490508060088381548110611ccc57611ccc612285565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611d0457611d0461226f565b6001900381819060005260206000200160009055905550505050565b6000611d2b83610be8565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b80356001600160a01b0381168114611d7b57600080fd5b919050565b80358015158114611d7b57600080fd5b600060208284031215611da257600080fd5b610e8582611d64565b60008060408385031215611dbe57600080fd5b611dc783611d64565b9150611dd560208401611d64565b90509250929050565b600080600060608486031215611df357600080fd5b611dfc84611d64565b9250611e0a60208501611d64565b9150604084013590509250925092565b60008060008060808587031215611e3057600080fd5b611e3985611d64565b9350611e4760208601611d64565b925060408501359150606085013567ffffffffffffffff80821115611e6b57600080fd5b818701915087601f830112611e7f57600080fd5b813581811115611e9157611e9161229b565b604051601f8201601f19908116603f01168101908382118183101715611eb957611eb961229b565b816040528281528a6020848701011115611ed257600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611f0957600080fd5b611f1283611d64565b9150611dd560208401611d80565b60008060408385031215611f3357600080fd5b611f3c83611d64565b946020939093013593505050565b600060208284031215611f5c57600080fd5b610e8582611d80565b600060208284031215611f7757600080fd5b8135610e85816122b1565b600060208284031215611f9457600080fd5b8151610e85816122b1565b600060208284031215611fb157600080fd5b5035919050565b60008151808452611fd08160208601602086016121ad565b601f01601f19169290920160200192915050565b60008351611ff68184602088016121ad565b83519083019061200a8183602088016121ad565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061205690830184611fb8565b9695505050505050565b602081526000610e856020830184611fb8565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561215e5761215e612243565b500190565b60008261217257612172612259565b500490565b600081600019048311821515161561219157612191612243565b500290565b6000828210156121a8576121a8612243565b500390565b60005b838110156121c85781810151838201526020016121b0565b83811115610dab5750506000910152565b600181811c908216806121ed57607f821691505b6020821081141561220e57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561222857612228612243565b5060010190565b60008261223e5761223e612259565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146110d857600080fdfe68747470733a2f2f62616679626569686e64617974776e327069686f62336235796c327775796d37686675647861706c3572617935376c6c7363776a3270716c6364612e697066732e6e667473746f726167652e6c696e6b2fa26469706673582212205981c5b91f63201707f87762fa66994adb8ee6ea887239ced24f50b82fc4260e64736f6c63430008070033

Deployed Bytecode Sourcemap

50138:3804:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50284:47;;;;;;;;;;;;50330:1;50284:47;;;;;16709:25:1;;;16697:2;16682:18;50284:47:0;;;;;;;;53445:235;;;;;;;;;;-1:-1:-1;53445:235:0;;;;;:::i;:::-;;:::i;:::-;;;5451:14:1;;5444:22;5426:41;;5414:2;5399:18;53445:235:0;5286:187:1;21422:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23079:221::-;;;;;;;;;;-1:-1:-1;23079:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;4749:32:1;;;4731:51;;4719:2;4704:18;23079:221:0;4585:203:1;22602:411:0;;;;;;;;;;-1:-1:-1;22602:411:0;;;;;:::i;:::-;;:::i;:::-;;35344:130;;;;;;;;;;-1:-1:-1;35432:10:0;:17;35344:130;;50443:43;;;;;;;;;;;;50482:4;50443:43;;50732:28;;;;;;;;;;;;;;;;50603:20;;;;;;;;;;-1:-1:-1;50603:20:0;;;;;;;;23969:339;;;;;;;;;;-1:-1:-1;23969:339:0;;;;;:::i;:::-;;:::i;50863:95::-;;;;;;;;;;-1:-1:-1;50863:95:0;;;;;:::i;:::-;;:::i;34987:281::-;;;;;;;;;;-1:-1:-1;34987:281:0;;;;;:::i;:::-;;:::i;51501:207::-;;;;;;;;;;;;;:::i;51075:107::-;;;;;;;;;;-1:-1:-1;51075:107:0;;;;;:::i;:::-;;:::i;24379:185::-;;;;;;;;;;-1:-1:-1;24379:185:0;;;;;:::i;:::-;;:::i;35551:258::-;;;;;;;;;;-1:-1:-1;35551:258:0;;;;;:::i;:::-;;:::i;51292:107::-;;;;;;;;;;-1:-1:-1;51292:107:0;;;;;:::i;:::-;;:::i;50630:27::-;;;;;;;;;;-1:-1:-1;50630:27:0;;;;;;;;;;;50338:46;;;;;;;;;;;;50382:2;50338:46;;21116:239;;;;;;;;;;-1:-1:-1;21116:239:0;;;;;:::i;:::-;;:::i;20846:208::-;;;;;;;;;;-1:-1:-1;20846:208:0;;;;;:::i;:::-;;:::i;49507:94::-;;;;;;;;;;;;;:::i;48856:87::-;;;;;;;;;;-1:-1:-1;48929:6:0;;-1:-1:-1;;;;;48929:6:0;48856:87;;21591:104;;;;;;;;;;;;;:::i;23372:295::-;;;;;;;;;;-1:-1:-1;23372:295:0;;;;;:::i;:::-;;:::i;50540:42::-;;;;;;;;;;;;;;;;24635:328;;;;;;;;;;-1:-1:-1;24635:328:0;;;;;:::i;:::-;;:::i;21766:343::-;;;;;;;;;;-1:-1:-1;21766:343:0;;;;;:::i;:::-;;:::i;50664:26::-;;;;;;;;;;-1:-1:-1;50664:26:0;;;;;;;;;;;50391:45;;;;;;;;;;;;50432:4;50391:45;;50697:28;;;;;;;;;;;;;;;;23738:164;;;;;;;;;;-1:-1:-1;23738:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;23859:25:0;;;23835:4;23859:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23738:164;51873:582;;;;;;:::i;:::-;;:::i;49756:192::-;;;;;;;;;;-1:-1:-1;49756:192:0;;;;;:::i;:::-;;:::i;52613:754::-;;;;;;:::i;:::-;;:::i;53445:235::-;53605:4;53635:37;53659:12;53635:23;:37::i;:::-;53628:44;53445:235;-1:-1:-1;;53445:235:0:o;21422:100::-;21476:13;21509:5;21502:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21422:100;:::o;23079:221::-;23155:7;26562:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26562:16:0;23175:73;;;;-1:-1:-1;;;23175:73:0;;12810:2:1;23175:73:0;;;12792:21:1;12849:2;12829:18;;;12822:30;12888:34;12868:18;;;12861:62;-1:-1:-1;;;12939:18:1;;;12932:42;12991:19;;23175:73:0;;;;;;;;;-1:-1:-1;23268:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23268:24:0;;23079:221::o;22602:411::-;22683:13;22699:23;22714:7;22699:14;:23::i;:::-;22683:39;;22747:5;-1:-1:-1;;;;;22741:11:0;:2;-1:-1:-1;;;;;22741:11:0;;;22733:57;;;;-1:-1:-1;;;22733:57:0;;14824:2:1;22733:57:0;;;14806:21:1;14863:2;14843:18;;;14836:30;14902:34;14882:18;;;14875:62;-1:-1:-1;;;14953:18:1;;;14946:31;14994:19;;22733:57:0;14622:397:1;22733:57:0;16064:10;-1:-1:-1;;;;;22825:21:0;;;;:62;;-1:-1:-1;22850:37:0;22867:5;16064:10;23738:164;:::i;22850:37::-;22803:168;;;;-1:-1:-1;;;22803:168:0;;10852:2:1;22803:168:0;;;10834:21:1;10891:2;10871:18;;;10864:30;10930:34;10910:18;;;10903:62;11001:26;10981:18;;;10974:54;11045:19;;22803:168:0;10650:420:1;22803:168:0;22984:21;22993:2;22997:7;22984:8;:21::i;:::-;22672:341;22602:411;;:::o;23969:339::-;24164:41;16064:10;24197:7;24164:18;:41::i;:::-;24156:103;;;;-1:-1:-1;;;24156:103:0;;;;;;;:::i;:::-;24272:28;24282:4;24288:2;24292:7;24272:9;:28::i;50863:95::-;48929:6;;-1:-1:-1;;;;;48929:6:0;16064:10;49076:23;49068:68;;;;-1:-1:-1;;;49068:68:0;;;;;;;:::i;:::-;50930:8:::1;:20:::0;;-1:-1:-1;;50930:20:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50863:95::o;34987:281::-;35084:7;35120:23;35137:5;35120:16;:23::i;:::-;35112:5;:31;35104:87;;;;-1:-1:-1;;;35104:87:0;;5904:2:1;35104:87:0;;;5886:21:1;5943:2;5923:18;;;5916:30;5982:34;5962:18;;;5955:62;-1:-1:-1;;;6033:18:1;;;6026:41;6084:19;;35104:87:0;5702:407:1;35104:87:0;-1:-1:-1;;;;;;35209:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34987:281::o;51501:207::-;48929:6;;-1:-1:-1;;;;;48929:6:0;16064:10;49076:23;49068:68;;;;-1:-1:-1;;;49068:68:0;;;;;;;:::i;:::-;51564:21:::1;51604:11:::0;51596:56:::1;;;::::0;-1:-1:-1;;;51596:56:0;;9731:2:1;51596:56:0::1;::::0;::::1;9713:21:1::0;;;9750:18;;;9743:30;9809:34;9789:18;;;9782:62;9861:18;;51596:56:0::1;9529:356:1::0;51596:56:0::1;51663:37;::::0;51671:10:::1;::::0;51663:37;::::1;;;::::0;51692:7;;51663:37:::1;::::0;;;51692:7;51671:10;51663:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;51538:170;51501:207::o:0;51075:107::-;48929:6;;-1:-1:-1;;;;;48929:6:0;16064:10;49076:23;49068:68;;;;-1:-1:-1;;;49068:68:0;;;;;;;:::i;:::-;51147:15:::1;:27:::0;;;::::1;;;;-1:-1:-1::0;;51147:27:0;;::::1;::::0;;;::::1;::::0;;51075:107::o;24379:185::-;24517:39;24534:4;24540:2;24544:7;24517:39;;;;;;;;;;;;:16;:39::i;35551:258::-;35626:7;35662:30;35432:10;:17;;35344:130;35662:30;35654:5;:38;35646:95;;;;-1:-1:-1;;;35646:95:0;;15644:2:1;35646:95:0;;;15626:21:1;15683:2;15663:18;;;15656:30;15722:34;15702:18;;;15695:62;-1:-1:-1;;;15773:18:1;;;15766:42;15825:19;;35646:95:0;15442:408:1;35646:95:0;35759:10;35770:5;35759:17;;;;;;;;:::i;:::-;;;;;;;;;35752:24;;35551:258;;;:::o;51292:107::-;48929:6;;-1:-1:-1;;;;;48929:6:0;16064:10;49076:23;49068:68;;;;-1:-1:-1;;;49068:68:0;;;;;;;:::i;:::-;51365:14:::1;:26:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;51365:26:0;;::::1;::::0;;;::::1;::::0;;51292:107::o;21116:239::-;21188:7;21224:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21224:16:0;21259:19;21251:73;;;;-1:-1:-1;;;21251:73:0;;11688:2:1;21251:73:0;;;11670:21:1;11727:2;11707:18;;;11700:30;11766:34;11746:18;;;11739:62;-1:-1:-1;;;11817:18:1;;;11810:39;11866:19;;21251:73:0;11486:405:1;20846:208:0;20918:7;-1:-1:-1;;;;;20946:19:0;;20938:74;;;;-1:-1:-1;;;20938:74:0;;11277:2:1;20938:74:0;;;11259:21:1;11316:2;11296:18;;;11289:30;11355:34;11335:18;;;11328:62;-1:-1:-1;;;11406:18:1;;;11399:40;11456:19;;20938:74:0;11075:406:1;20938:74:0;-1:-1:-1;;;;;;21030:16:0;;;;;:9;:16;;;;;;;20846:208::o;49507:94::-;48929:6;;-1:-1:-1;;;;;48929:6:0;16064:10;49076:23;49068:68;;;;-1:-1:-1;;;49068:68:0;;;;;;;:::i;:::-;49572:21:::1;49590:1;49572:9;:21::i;:::-;49507:94::o:0;21591:104::-;21647:13;21680:7;21673:14;;;;;:::i;23372:295::-;-1:-1:-1;;;;;23475:24:0;;16064:10;23475:24;;23467:62;;;;-1:-1:-1;;;23467:62:0;;8670:2:1;23467:62:0;;;8652:21:1;8709:2;8689:18;;;8682:30;8748:27;8728:18;;;8721:55;8793:18;;23467:62:0;8468:349:1;23467:62:0;16064:10;23542:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;23542:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;23542:53:0;;;;;;;;;;23611:48;;5426:41:1;;;23542:42:0;;16064:10;23611:48;;5399:18:1;23611:48:0;;;;;;;23372:295;;:::o;24635:328::-;24810:41;16064:10;24843:7;24810:18;:41::i;:::-;24802:103;;;;-1:-1:-1;;;24802:103:0;;;;;;;:::i;:::-;24916:39;24930:4;24936:2;24940:7;24949:5;24916:13;:39::i;:::-;24635:328;;;;:::o;21766:343::-;26538:4;26562:16;;;:7;:16;;;;;;21839:13;;-1:-1:-1;;;;;26562:16:0;21865:76;;;;-1:-1:-1;;;21865:76:0;;14408:2:1;21865:76:0;;;14390:21:1;14447:2;14427:18;;;14420:30;14486:34;14466:18;;;14459:62;-1:-1:-1;;;14537:18:1;;;14530:45;14592:19;;21865:76:0;14206:411:1;21865:76:0;21954:21;21978:10;:8;:10::i;:::-;21954:34;;22030:1;22012:7;22006:21;:25;:95;;;;;;;;;;;;;;;;;22058:7;22067:18;:7;:16;:18::i;:::-;22041:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22006:95;21999:102;21766:343;-1:-1:-1;;;21766:343:0:o;51873:582::-;51948:8;;;;51940:43;;;;-1:-1:-1;;;51940:43:0;;12459:2:1;51940:43:0;;;12441:21:1;12498:2;12478:18;;;12471:30;-1:-1:-1;;;12517:18:1;;;12510:52;12579:18;;51940:43:0;12257:346:1;51940:43:0;52003:15;;;;;;;52002:16;51994:52;;;;-1:-1:-1;;;51994:52:0;;16057:2:1;51994:52:0;;;16039:21:1;16096:2;16076:18;;;16069:30;16135:25;16115:18;;;16108:53;16178:18;;51994:52:0;15855:347:1;51994:52:0;50330:1;52065:39;52091:12;52065:21;52075:10;52065:9;:21::i;:::-;:25;;:39::i;:::-;:62;;52057:98;;;;-1:-1:-1;;;52057:98:0;;7913:2:1;52057:98:0;;;7895:21:1;7952:2;7932:18;;;7925:30;-1:-1:-1;;;7971:18:1;;;7964:53;8034:18;;52057:98:0;7711:347:1;52057:98:0;52174:13;;50432:4;;52174:31;;52192:12;52174:17;:31::i;:::-;:49;;52166:107;;;;-1:-1:-1;;;52166:107:0;;13584:2:1;52166:107:0;;;13566:21:1;13623:2;13603:18;;;13596:30;13662:34;13642:18;;;13635:62;-1:-1:-1;;;13713:18:1;;;13706:43;13766:19;;52166:107:0;13382:409:1;52166:107:0;52302:13;;:31;;52320:12;52302:17;:31::i;:::-;52286:13;:47;52350:6;52346:102;52366:12;52362:1;:16;52346:102;;;52400:36;52410:10;52422:13;35432:10;:17;;35344:130;52422:13;52400:9;:36::i;:::-;52380:3;;;;:::i;:::-;;;;52346:102;;49756:192;48929:6;;-1:-1:-1;;;;;48929:6:0;16064:10;49076:23;49068:68;;;;-1:-1:-1;;;49068:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49845:22:0;::::1;49837:73;;;::::0;-1:-1:-1;;;49837:73:0;;6735:2:1;49837:73:0::1;::::0;::::1;6717:21:1::0;6774:2;6754:18;;;6747:30;6813:34;6793:18;;;6786:62;-1:-1:-1;;;6864:18:1;;;6857:36;6910:19;;49837:73:0::1;6533:402:1::0;49837:73:0::1;49921:19;49931:8;49921:9;:19::i;:::-;49756:192:::0;:::o;52613:754::-;52698:8;;;;52690:39;;;;-1:-1:-1;;;52690:39:0;;9024:2:1;52690:39:0;;;9006:21:1;9063:2;9043:18;;;9036:30;-1:-1:-1;;;9082:18:1;;;9075:48;9140:18;;52690:39:0;8822:342:1;52690:39:0;52748:15;;;;;;;52740:46;;;;-1:-1:-1;;;52740:46:0;;10505:2:1;52740:46:0;;;10487:21:1;10544:2;10524:18;;;10517:30;-1:-1:-1;;;10563:18:1;;;10556:48;10621:18;;52740:46:0;10303:342:1;52740:46:0;50528:5;52805:13;35432:10;:17;;35344:130;52805:13;:23;52797:63;;;;-1:-1:-1;;;52797:63:0;;16409:2:1;52797:63:0;;;16391:21:1;16448:2;16428:18;;;16421:30;16487:29;16467:18;;;16460:57;16534:18;;52797:63:0;16207:351:1;52797:63:0;50382:2;52879:39;52905:12;52879:21;52889:10;52879:9;:21::i;:39::-;:60;;52871:96;;;;-1:-1:-1;;;52871:96:0;;7913:2:1;52871:96:0;;;7895:21:1;7952:2;7932:18;;;7925:30;-1:-1:-1;;;7971:18:1;;;7964:53;8034:18;;52871:96:0;7711:347:1;52871:96:0;52986:13;;50482:4;;52986:31;;53004:12;52986:17;:31::i;:::-;:47;;52978:105;;;;-1:-1:-1;;;52978:105:0;;7499:2:1;52978:105:0;;;7481:21:1;7538:2;7518:18;;;7511:30;7577:34;7557:18;;;7550:62;-1:-1:-1;;;7628:18:1;;;7621:43;7681:19;;52978:105:0;7297:409:1;52978:105:0;53102:8;;53132:9;;53102:26;;53115:12;53102;:26::i;:::-;:39;53094:83;;;;-1:-1:-1;;;53094:83:0;;9371:2:1;53094:83:0;;;9353:21:1;9410:2;9390:18;;;9383:30;9449:33;9429:18;;;9422:61;9500:18;;53094:83:0;9169:355:1;53094:83:0;53206:13;;:31;;53224:12;53206:17;:31::i;:::-;53190:13;:47;53255:9;53250:110;53274:12;53270:1;:16;53250:110;;;53312:36;53322:10;53334:13;35432:10;:17;;35344:130;53312:36;53288:3;;;;:::i;:::-;;;;53250:110;;34679:224;34781:4;-1:-1:-1;;;;;;34805:50:0;;-1:-1:-1;;;34805:50:0;;:90;;;34859:36;34883:11;34859:23;:36::i;30455:174::-;30530:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30530:29:0;-1:-1:-1;;;;;30530:29:0;;;;;;;;:24;;30584:23;30530:24;30584:14;:23::i;:::-;-1:-1:-1;;;;;30575:46:0;;;;;;;;;;;30455:174;;:::o;26767:348::-;26860:4;26562:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26562:16:0;26877:73;;;;-1:-1:-1;;;26877:73:0;;10092:2:1;26877:73:0;;;10074:21:1;10131:2;10111:18;;;10104:30;10170:34;10150:18;;;10143:62;-1:-1:-1;;;10221:18:1;;;10214:42;10273:19;;26877:73:0;9890:408:1;26877:73:0;26961:13;26977:23;26992:7;26977:14;:23::i;:::-;26961:39;;27030:5;-1:-1:-1;;;;;27019:16:0;:7;-1:-1:-1;;;;;27019:16:0;;:51;;;;27063:7;-1:-1:-1;;;;;27039:31:0;:20;27051:7;27039:11;:20::i;:::-;-1:-1:-1;;;;;27039:31:0;;27019:51;:87;;;-1:-1:-1;;;;;;23859:25:0;;;23835:4;23859:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27074:32;27011:96;26767:348;-1:-1:-1;;;;26767:348:0:o;29759:578::-;29918:4;-1:-1:-1;;;;;29891:31:0;:23;29906:7;29891:14;:23::i;:::-;-1:-1:-1;;;;;29891:31:0;;29883:85;;;;-1:-1:-1;;;29883:85:0;;13998:2:1;29883:85:0;;;13980:21:1;14037:2;14017:18;;;14010:30;14076:34;14056:18;;;14049:62;-1:-1:-1;;;14127:18:1;;;14120:39;14176:19;;29883:85:0;13796:405:1;29883:85:0;-1:-1:-1;;;;;29987:16:0;;29979:65;;;;-1:-1:-1;;;29979:65:0;;8265:2:1;29979:65:0;;;8247:21:1;8304:2;8284:18;;;8277:30;8343:34;8323:18;;;8316:62;-1:-1:-1;;;8394:18:1;;;8387:34;8438:19;;29979:65:0;8063:400:1;29979:65:0;30057:39;30078:4;30084:2;30088:7;30057:20;:39::i;:::-;30161:29;30178:1;30182:7;30161:8;:29::i;:::-;-1:-1:-1;;;;;30203:15:0;;;;;;:9;:15;;;;;:20;;30222:1;;30203:15;:20;;30222:1;;30203:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30234:13:0;;;;;;:9;:13;;;;;:18;;30251:1;;30234:13;:18;;30251:1;;30234:18;:::i;:::-;;;;-1:-1:-1;;30263:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30263:21:0;-1:-1:-1;;;;;30263:21:0;;;;;;;;;30302:27;;30263:16;;30302:27;;;;;;;29759:578;;;:::o;49956:173::-;50031:6;;;-1:-1:-1;;;;;50048:17:0;;;-1:-1:-1;;;;;;50048:17:0;;;;;;;50081:40;;50031:6;;;50048:17;50031:6;;50081:40;;50012:16;;50081:40;50001:128;49956:173;:::o;25845:315::-;26002:28;26012:4;26018:2;26022:7;26002:9;:28::i;:::-;26049:48;26072:4;26078:2;26082:7;26091:5;26049:22;:48::i;:::-;26041:111;;;;-1:-1:-1;;;26041:111:0;;;;;;;:::i;22357:183::-;22408:13;22434:98;;;;;;;;;;;;;;;;;;;22357:183;:::o;16486:723::-;16542:13;16763:10;16759:53;;-1:-1:-1;;16790:10:0;;;;;;;;;;;;-1:-1:-1;;;16790:10:0;;;;;16486:723::o;16759:53::-;16837:5;16822:12;16878:78;16885:9;;16878:78;;16911:8;;;;:::i;:::-;;-1:-1:-1;16934:10:0;;-1:-1:-1;16942:2:0;16934:10;;:::i;:::-;;;16878:78;;;16966:19;16998:6;16988:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16988:17:0;;16966:39;;17016:154;17023:10;;17016:154;;17050:11;17060:1;17050:11;;:::i;:::-;;-1:-1:-1;17119:10:0;17127:2;17119:5;:10;:::i;:::-;17106:24;;:2;:24;:::i;:::-;17093:39;;17076:6;17083;17076:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17076:56:0;;;;;;;;-1:-1:-1;17147:11:0;17156:2;17147:11;;:::i;:::-;;;17016:154;;43718:98;43776:7;43803:5;43807:1;43803;:5;:::i;27457:110::-;27533:26;27543:2;27547:7;27533:26;;;;;;;;;;;;:9;:26::i;44456:98::-;44514:7;44541:5;44545:1;44541;:5;:::i;20477:305::-;20579:4;-1:-1:-1;;;;;;20616:40:0;;-1:-1:-1;;;20616:40:0;;:105;;-1:-1:-1;;;;;;;20673:48:0;;-1:-1:-1;;;20673:48:0;20616:105;:158;;;-1:-1:-1;;;;;;;;;;19127:40:0;;;20738:36;19018:157;53688:249;53881:48;53908:5;53915:3;53920:8;53881:26;:48::i;31194:799::-;31349:4;-1:-1:-1;;;;;31370:13:0;;8374:20;8422:8;31366:620;;31406:72;;-1:-1:-1;;;31406:72:0;;-1:-1:-1;;;;;31406:36:0;;;;;:72;;16064:10;;31457:4;;31463:7;;31472:5;;31406:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31406:72:0;;;;;;;;-1:-1:-1;;31406:72:0;;;;;;;;;;;;:::i;:::-;;;31402:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31648:13:0;;31644:272;;31691:60;;-1:-1:-1;;;31691:60:0;;;;;;;:::i;31644:272::-;31866:6;31860:13;31851:6;31847:2;31843:15;31836:38;31402:529;-1:-1:-1;;;;;;31529:51:0;-1:-1:-1;;;31529:51:0;;-1:-1:-1;31522:58:0;;31366:620;-1:-1:-1;31970:4:0;31194:799;;;;;;:::o;27794:321::-;27924:18;27930:2;27934:7;27924:5;:18::i;:::-;27975:54;28006:1;28010:2;28014:7;28023:5;27975:22;:54::i;:::-;27953:154;;;;-1:-1:-1;;;27953:154:0;;;;;;;:::i;36422:595::-;-1:-1:-1;;;;;36628:18:0;;36624:193;;36663:40;36695:7;37877:10;:17;;37850:24;;;;:15;:24;;;;;:44;;;37907:24;;;;;;;;;;;;37773:166;36663:40;36624:193;;;36739:2;-1:-1:-1;;;;;36731:10:0;:4;-1:-1:-1;;;;;36731:10:0;;36727:90;;36758:47;36791:4;36797:7;36758:32;:47::i;:::-;-1:-1:-1;;;;;36831:16:0;;36827:183;;36864:45;36901:7;36864:36;:45::i;36827:183::-;36937:4;-1:-1:-1;;;;;36931:10:0;:2;-1:-1:-1;;;;;36931:10:0;;36927:83;;36958:40;36986:2;36990:7;36958:27;:40::i;28451:382::-;-1:-1:-1;;;;;28531:16:0;;28523:61;;;;-1:-1:-1;;;28523:61:0;;12098:2:1;28523:61:0;;;12080:21:1;;;12117:18;;;12110:30;12176:34;12156:18;;;12149:62;12228:18;;28523:61:0;11896:356:1;28523:61:0;26538:4;26562:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26562:16:0;:30;28595:58;;;;-1:-1:-1;;;28595:58:0;;7142:2:1;28595:58:0;;;7124:21:1;7181:2;7161:18;;;7154:30;7220;7200:18;;;7193:58;7268:18;;28595:58:0;6940:352:1;28595:58:0;28666:45;28695:1;28699:2;28703:7;28666:20;:45::i;:::-;-1:-1:-1;;;;;28724:13:0;;;;;;:9;:13;;;;;:18;;28741:1;;28724:13;:18;;28741:1;;28724:18;:::i;:::-;;;;-1:-1:-1;;28753:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28753:21:0;-1:-1:-1;;;;;28753:21:0;;;;;;;;28792:33;;28753:16;;;28792:33;;28753:16;;28792:33;28451:382;;:::o;38566:1000::-;38832:22;38882:1;38857:22;38874:4;38857:16;:22::i;:::-;:26;;;;:::i;:::-;38906:18;38927:26;;;:17;:26;;;;;;38832:51;;-1:-1:-1;39060:28:0;;;39056:328;;-1:-1:-1;;;;;39127:18:0;;39105:19;39127:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39178:30;;;;;;:44;;;39295:30;;:17;:30;;;;;:43;;;39056:328;-1:-1:-1;39480:26:0;;;;:17;:26;;;;;;;;39473:33;;;-1:-1:-1;;;;;39524:18:0;;;;;:12;:18;;;;;:34;;;;;;;39517:41;38566:1000::o;39861:1079::-;40139:10;:17;40114:22;;40139:21;;40159:1;;40139:21;:::i;:::-;40171:18;40192:24;;;:15;:24;;;;;;40565:10;:26;;40114:46;;-1:-1:-1;40192:24:0;;40114:46;;40565:26;;;;;;:::i;:::-;;;;;;;;;40543:48;;40629:11;40604:10;40615;40604:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40709:28;;;:15;:28;;;;;;;:41;;;40881:24;;;;;40874:31;40916:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39932:1008;;;39861:1079;:::o;37318:254::-;37403:14;37420:20;37437:2;37420:16;:20::i;:::-;-1:-1:-1;;;;;37472:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37527:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37318:254:0:o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:160::-;257:20;;313:13;;306:21;296:32;;286:60;;342:1;339;332:12;357:186;416:6;469:2;457:9;448:7;444:23;440:32;437:52;;;485:1;482;475:12;437:52;508:29;527:9;508:29;:::i;548:260::-;616:6;624;677:2;665:9;656:7;652:23;648:32;645:52;;;693:1;690;683:12;645:52;716:29;735:9;716:29;:::i;:::-;706:39;;764:38;798:2;787:9;783:18;764:38;:::i;:::-;754:48;;548:260;;;;;:::o;813:328::-;890:6;898;906;959:2;947:9;938:7;934:23;930:32;927:52;;;975:1;972;965:12;927:52;998:29;1017:9;998:29;:::i;:::-;988:39;;1046:38;1080:2;1069:9;1065:18;1046:38;:::i;:::-;1036:48;;1131:2;1120:9;1116:18;1103:32;1093:42;;813:328;;;;;:::o;1146:1138::-;1241:6;1249;1257;1265;1318:3;1306:9;1297:7;1293:23;1289:33;1286:53;;;1335:1;1332;1325:12;1286:53;1358:29;1377:9;1358:29;:::i;:::-;1348:39;;1406:38;1440:2;1429:9;1425:18;1406:38;:::i;:::-;1396:48;;1491:2;1480:9;1476:18;1463:32;1453:42;;1546:2;1535:9;1531:18;1518:32;1569:18;1610:2;1602:6;1599:14;1596:34;;;1626:1;1623;1616:12;1596:34;1664:6;1653:9;1649:22;1639:32;;1709:7;1702:4;1698:2;1694:13;1690:27;1680:55;;1731:1;1728;1721:12;1680:55;1767:2;1754:16;1789:2;1785;1782:10;1779:36;;;1795:18;;:::i;:::-;1870:2;1864:9;1838:2;1924:13;;-1:-1:-1;;1920:22:1;;;1944:2;1916:31;1912:40;1900:53;;;1968:18;;;1988:22;;;1965:46;1962:72;;;2014:18;;:::i;:::-;2054:10;2050:2;2043:22;2089:2;2081:6;2074:18;2129:7;2124:2;2119;2115;2111:11;2107:20;2104:33;2101:53;;;2150:1;2147;2140:12;2101:53;2206:2;2201;2197;2193:11;2188:2;2180:6;2176:15;2163:46;2251:1;2246:2;2241;2233:6;2229:15;2225:24;2218:35;2272:6;2262:16;;;;;;;1146:1138;;;;;;;:::o;2289:254::-;2354:6;2362;2415:2;2403:9;2394:7;2390:23;2386:32;2383:52;;;2431:1;2428;2421:12;2383:52;2454:29;2473:9;2454:29;:::i;:::-;2444:39;;2502:35;2533:2;2522:9;2518:18;2502:35;:::i;2548:254::-;2616:6;2624;2677:2;2665:9;2656:7;2652:23;2648:32;2645:52;;;2693:1;2690;2683:12;2645:52;2716:29;2735:9;2716:29;:::i;:::-;2706:39;2792:2;2777:18;;;;2764:32;;-1:-1:-1;;;2548:254:1:o;2807:180::-;2863:6;2916:2;2904:9;2895:7;2891:23;2887:32;2884:52;;;2932:1;2929;2922:12;2884:52;2955:26;2971:9;2955:26;:::i;2992:245::-;3050:6;3103:2;3091:9;3082:7;3078:23;3074:32;3071:52;;;3119:1;3116;3109:12;3071:52;3158:9;3145:23;3177:30;3201:5;3177:30;:::i;3242:249::-;3311:6;3364:2;3352:9;3343:7;3339:23;3335:32;3332:52;;;3380:1;3377;3370:12;3332:52;3412:9;3406:16;3431:30;3455:5;3431:30;:::i;3496:180::-;3555:6;3608:2;3596:9;3587:7;3583:23;3579:32;3576:52;;;3624:1;3621;3614:12;3576:52;-1:-1:-1;3647:23:1;;3496:180;-1:-1:-1;3496:180:1:o;3681:257::-;3722:3;3760:5;3754:12;3787:6;3782:3;3775:19;3803:63;3859:6;3852:4;3847:3;3843:14;3836:4;3829:5;3825:16;3803:63;:::i;:::-;3920:2;3899:15;-1:-1:-1;;3895:29:1;3886:39;;;;3927:4;3882:50;;3681:257;-1:-1:-1;;3681:257:1:o;3943:637::-;4223:3;4261:6;4255:13;4277:53;4323:6;4318:3;4311:4;4303:6;4299:17;4277:53;:::i;:::-;4393:13;;4352:16;;;;4415:57;4393:13;4352:16;4449:4;4437:17;;4415:57;:::i;:::-;-1:-1:-1;;;4494:20:1;;4523:22;;;4572:1;4561:13;;3943:637;-1:-1:-1;;;;3943:637:1:o;4793:488::-;-1:-1:-1;;;;;5062:15:1;;;5044:34;;5114:15;;5109:2;5094:18;;5087:43;5161:2;5146:18;;5139:34;;;5209:3;5204:2;5189:18;;5182:31;;;4987:4;;5230:45;;5255:19;;5247:6;5230:45;:::i;:::-;5222:53;4793:488;-1:-1:-1;;;;;;4793:488:1:o;5478:219::-;5627:2;5616:9;5609:21;5590:4;5647:44;5687:2;5676:9;5672:18;5664:6;5647:44;:::i;6114:414::-;6316:2;6298:21;;;6355:2;6335:18;;;6328:30;6394:34;6389:2;6374:18;;6367:62;-1:-1:-1;;;6460:2:1;6445:18;;6438:48;6518:3;6503:19;;6114:414::o;13021:356::-;13223:2;13205:21;;;13242:18;;;13235:30;13301:34;13296:2;13281:18;;13274:62;13368:2;13353:18;;13021:356::o;15024:413::-;15226:2;15208:21;;;15265:2;15245:18;;;15238:30;15304:34;15299:2;15284:18;;15277:62;-1:-1:-1;;;15370:2:1;15355:18;;15348:47;15427:3;15412:19;;15024:413::o;16745:128::-;16785:3;16816:1;16812:6;16809:1;16806:13;16803:39;;;16822:18;;:::i;:::-;-1:-1:-1;16858:9:1;;16745:128::o;16878:120::-;16918:1;16944;16934:35;;16949:18;;:::i;:::-;-1:-1:-1;16983:9:1;;16878:120::o;17003:168::-;17043:7;17109:1;17105;17101:6;17097:14;17094:1;17091:21;17086:1;17079:9;17072:17;17068:45;17065:71;;;17116:18;;:::i;:::-;-1:-1:-1;17156:9:1;;17003:168::o;17176:125::-;17216:4;17244:1;17241;17238:8;17235:34;;;17249:18;;:::i;:::-;-1:-1:-1;17286:9:1;;17176:125::o;17306:258::-;17378:1;17388:113;17402:6;17399:1;17396:13;17388:113;;;17478:11;;;17472:18;17459:11;;;17452:39;17424:2;17417:10;17388:113;;;17519:6;17516:1;17513:13;17510:48;;;-1:-1:-1;;17554:1:1;17536:16;;17529:27;17306:258::o;17569:380::-;17648:1;17644:12;;;;17691;;;17712:61;;17766:4;17758:6;17754:17;17744:27;;17712:61;17819:2;17811:6;17808:14;17788:18;17785:38;17782:161;;;17865:10;17860:3;17856:20;17853:1;17846:31;17900:4;17897:1;17890:15;17928:4;17925:1;17918:15;17782:161;;17569:380;;;:::o;17954:135::-;17993:3;-1:-1:-1;;18014:17:1;;18011:43;;;18034:18;;:::i;:::-;-1:-1:-1;18081:1:1;18070:13;;17954:135::o;18094:112::-;18126:1;18152;18142:35;;18157:18;;:::i;:::-;-1:-1:-1;18191:9:1;;18094:112::o;18211:127::-;18272:10;18267:3;18263:20;18260:1;18253:31;18303:4;18300:1;18293:15;18327:4;18324:1;18317:15;18343:127;18404:10;18399:3;18395:20;18392:1;18385:31;18435:4;18432:1;18425:15;18459:4;18456:1;18449:15;18475:127;18536:10;18531:3;18527:20;18524:1;18517:31;18567:4;18564:1;18557:15;18591:4;18588:1;18581:15;18607:127;18668:10;18663:3;18659:20;18656:1;18649:31;18699:4;18696:1;18689:15;18723:4;18720:1;18713:15;18739:127;18800:10;18795:3;18791:20;18788:1;18781:31;18831:4;18828:1;18821:15;18855:4;18852:1;18845:15;18871:131;-1:-1:-1;;;;;;18945:32:1;;18935:43;;18925:71;;18992:1;18989;18982:12

Swarm Source

ipfs://5981c5b91f63201707f87762fa66994adb8ee6ea887239ced24f50b82fc4260e
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.