ETH Price: $2,791.20 (+6.34%)

Token

Shinobros Genesis (SNBG)
 

Overview

Max Total Supply

200 SNBG

Holders

182

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 SNBG
0xe64c8b504c2a5ed8564c07c9f4167f6cfed578ec
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-02-11
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/ShinobrosGenesis.sol


pragma solidity >=0.7.0 <0.9.0;




contract NFT is ERC721Enumerable, Ownable, ReentrancyGuard {
    using Strings for uint256;

    // METADATA
    string public baseURI;
    string public baseExtension = ".json";
    string public notRevealedUri;

    // SUPPLY
    uint256 public genesisASupply = 0;
    uint256 public genesisAMaxSupply = 100;
    uint256 public genesisDSupply = 0;
    uint256 public genesisDMaxSupply = 100;

    // MINT
    uint256 public cost = 0.1 ether;
    uint256 public maxMintAmount = 1;

    // STEPS
    bool public paused = false;
    bool public revealed = false;
    bool public onlyWhitelisted = true;

    // WHITELIST
    mapping(address => uint256) public whitelist;
    mapping(address => uint256) public addressMintedBalanceAngel;
    mapping(address => uint256) public addressMintedBalanceDemon;
    uint256 public nftPerAddressLimit = 1;

    constructor(string memory _initNotRevealedUri)
        ERC721("Shinobros Genesis", "SNBG")
    {
        setNotRevealedURI(_initNotRevealedUri);
    }

    // public
    function mint(uint256 _mintAmount, uint256 _supplyPool)
        public
        payable
        nonReentrant
    {
        require(!paused, "The contract is paused, mint is disabled");
        // Verify mint params & supply
        require(
            _mintAmount > 0 && _mintAmount <= maxMintAmount,
            "Invalid mint amount"
        );
        require(
            poolHasEnoughSupply(_mintAmount, _supplyPool),
            "Not enough Shinobros available in this pool"
        );

        if (onlyWhitelisted == true) {
            require(whitelist[msg.sender] > 0, "User is not whitelisted");
            require(
                addressMintedBalanceAngel[msg.sender] +
                    addressMintedBalanceDemon[msg.sender] +
                    _mintAmount <=
                    nftPerAddressLimit,
                "Mint amount exceed your WL limit."
            );
        }
        require(msg.value >= cost * _mintAmount, "Insufficient funds");

        for (uint256 i = 1; i <= _mintAmount; i++) {
            if (_supplyPool == 1) {
                addressMintedBalanceAngel[msg.sender]++;
                _safeMint(msg.sender, 1 + genesisASupply++);
            } else if (_supplyPool == 2) {
                addressMintedBalanceDemon[msg.sender]++;
                _safeMint(msg.sender, 1 + genesisAMaxSupply + genesisDSupply++);
            }
        }
    }

    function poolHasEnoughSupply(uint256 _mintAmount, uint256 _supplyPool)
        private
        view
        returns (bool)
    {
        return
            (_supplyPool == 1 &&
                genesisASupply + _mintAmount <= genesisAMaxSupply) ||
            (_supplyPool == 2 &&
                genesisDSupply + _mintAmount <= genesisDMaxSupply);
    }

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

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        if (revealed == false) {
            return notRevealedUri;
        }
        return
            bytes(baseURI).length > 0
                ? string(
                    abi.encodePacked(baseURI, tokenId.toString(), baseExtension)
                )
                : "";
    }

    //only owner
    function reveal(string memory _baseURI) public onlyOwner {
        baseURI = _baseURI;
        revealed = true;
        paused = true;
    }

    function giveawayMint(address _user, uint256 _supplyPool) public onlyOwner {
        // Verify mint supply
        require(
            poolHasEnoughSupply(1, _supplyPool),
            "Not enough Shinobros available"
        );

        if (_supplyPool == 1) {
            addressMintedBalanceAngel[_user]++;
            _safeMint(_user, 1 + genesisASupply++);
        } else if (_supplyPool == 2) {
            addressMintedBalanceDemon[_user]++;
            _safeMint(_user, 1 + genesisAMaxSupply + genesisDSupply++);
        }
    }

    function withdraw() external onlyOwner {
        (bool withdrawStatus, ) = payable(owner()).call{
            value: address(this).balance
        }("");
        require(withdrawStatus, "Failed Withdraw");
    }

    function finalize() external onlyOwner {
        selfdestruct(payable(owner()));
    }

    // SETTERS
    function whitelistAdd(address[] calldata whitelistAddresses)
        external
        onlyOwner
    {
        for (uint256 i; i < whitelistAddresses.length; i++) {
            whitelist[whitelistAddresses[i]] = 1;
        }
    }

    function whitelistRemove(address[] calldata whitelistAddresses)
        external
        onlyOwner
    {
        for (uint256 i; i < whitelistAddresses.length; i++) {
            whitelist[whitelistAddresses[i]] = 0;
        }
    }

    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

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

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

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

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

    function pause(bool _state) public onlyOwner {
        paused = _state;
    }

    function setOnlyWhitelisted(bool _state) public onlyOwner {
        onlyWhitelisted = _state;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalanceAngel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalanceDemon","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"finalize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"genesisAMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"genesisASupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"genesisDMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"genesisDSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_supplyPool","type":"uint256"}],"name":"giveawayMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"uint256","name":"_supplyPool","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"whitelistAddresses","type":"address[]"}],"name":"whitelistAdd","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"whitelistAddresses","type":"address[]"}],"name":"whitelistRemove","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600d919062000204565b506000600f8190556064601081905560119190915560125567016345785d8a0000601355600160148190556015805462ffffff1916620100001790556019553480156200007457600080fd5b5060405162003158380380620031588339810160408190526200009791620002aa565b60408051808201825260118152705368696e6f62726f732047656e6573697360781b602080830191825283518085019094526004845263534e424760e01b908401528151919291620000ec9160009162000204565b5080516200010290600190602084019062000204565b5050506200011f620001196200013660201b60201c565b6200013a565b6001600b556200012f816200018c565b50620003d9565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001eb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200020090600e90602084019062000204565b5050565b828054620002129062000386565b90600052602060002090601f01602090048101928262000236576000855562000281565b82601f106200025157805160ff191683800117855562000281565b8280016001018555821562000281579182015b828111156200028157825182559160200191906001019062000264565b506200028f92915062000293565b5090565b5b808211156200028f576000815560010162000294565b60006020808385031215620002be57600080fd5b82516001600160401b0380821115620002d657600080fd5b818501915085601f830112620002eb57600080fd5b815181811115620003005762000300620003c3565b604051601f8201601f19908116603f011681019083821181831017156200032b576200032b620003c3565b8160405282815288868487010111156200034457600080fd5b600093505b8284101562000368578484018601518185018701529285019262000349565b828411156200037a5760008684830101525b98975050505050505050565b600181811c908216806200039b57607f821691505b60208210811415620003bd57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612d6f80620003e96000396000f3fe6080604052600436106102c95760003560e01c80635c975abb116101755780639cf94943116100dc578063c668286211610095578063dacaffdc1161006f578063dacaffdc14610840578063e985e9c51461086d578063f2c4ce1e146108b6578063f2fde38b146108d657600080fd5b8063c6682862146107eb578063c87b56dd14610800578063da3ef23f1461082057600080fd5b80639cf9494314610749578063a22cb46514610769578063a7a4ff1c14610789578063b88d4fde1461079f578063ba7d2c76146107bf578063bc04fb95146107d557600080fd5b80637f00c7a61161012e5780637f00c7a61461069357806382c45714146106b35780638da5cb5b146106c957806395d89b41146106e75780639b19251a146106fc5780639c70b5121461072957600080fd5b80635c975abb146105e25780636352211e146105fc5780636c0360eb1461061c57806370a0823114610631578063715018a6146106515780637be559dc1461066657600080fd5b806323b872dd11610234578063438b6300116101ed5780634c261247116101c75780634c261247146105635780634f6ccce71461058357806351830227146105a357806355f804b3146105c257600080fd5b8063438b63001461050157806344a0d68a1461052e5780634bb278f31461054e57600080fd5b806323b872dd146104565780632734e444146104765780632f745c591461048c5780633c952764146104ac5780633ccfd60b146104cc57806342842e0e146104e157600080fd5b8063095ea7b311610286578063095ea7b3146103b45780630c82b942146103d457806313faede6146103f457806318160ddd146104185780631b2ef1ca1461042d578063239c70ae1461044057600080fd5b806301ffc9a7146102ce57806302329a2914610303578063048266241461032557806306fdde0314610345578063081812fc14610367578063081c8c441461039f575b600080fd5b3480156102da57600080fd5b506102ee6102e936600461289a565b6108f6565b60405190151581526020015b60405180910390f35b34801561030f57600080fd5b5061032361031e36600461287f565b610921565b005b34801561033157600080fd5b506103236103403660046127e0565b610967565b34801561035157600080fd5b5061035a610aac565b6040516102fa9190612ad2565b34801561037357600080fd5b5061038761038236600461291d565b610b3e565b6040516001600160a01b0390911681526020016102fa565b3480156103ab57600080fd5b5061035a610bd3565b3480156103c057600080fd5b506103236103cf3660046127e0565b610c61565b3480156103e057600080fd5b506103236103ef36600461280a565b610d77565b34801561040057600080fd5b5061040a60135481565b6040519081526020016102fa565b34801561042457600080fd5b5060085461040a565b61032361043b366004612936565b610e05565b34801561044c57600080fd5b5061040a60145481565b34801561046257600080fd5b506103236104713660046126fe565b611178565b34801561048257600080fd5b5061040a600f5481565b34801561049857600080fd5b5061040a6104a73660046127e0565b6111a9565b3480156104b857600080fd5b506103236104c736600461287f565b61123f565b3480156104d857600080fd5b50610323611285565b3480156104ed57600080fd5b506103236104fc3660046126fe565b611358565b34801561050d57600080fd5b5061052161051c3660046126b0565b611373565b6040516102fa9190612a8e565b34801561053a57600080fd5b5061032361054936600461291d565b611415565b34801561055a57600080fd5b50610323611444565b34801561056f57600080fd5b5061032361057e3660046128d4565b61147c565b34801561058f57600080fd5b5061040a61059e36600461291d565b6114cc565b3480156105af57600080fd5b506015546102ee90610100900460ff1681565b3480156105ce57600080fd5b506103236105dd3660046128d4565b61155f565b3480156105ee57600080fd5b506015546102ee9060ff1681565b34801561060857600080fd5b5061038761061736600461291d565b61159c565b34801561062857600080fd5b5061035a611613565b34801561063d57600080fd5b5061040a61064c3660046126b0565b611620565b34801561065d57600080fd5b506103236116a7565b34801561067257600080fd5b5061040a6106813660046126b0565b60186020526000908152604090205481565b34801561069f57600080fd5b506103236106ae36600461291d565b6116dd565b3480156106bf57600080fd5b5061040a60125481565b3480156106d557600080fd5b50600a546001600160a01b0316610387565b3480156106f357600080fd5b5061035a61170c565b34801561070857600080fd5b5061040a6107173660046126b0565b60166020526000908152604090205481565b34801561073557600080fd5b506015546102ee9062010000900460ff1681565b34801561075557600080fd5b5061032361076436600461280a565b61171b565b34801561077557600080fd5b506103236107843660046127b6565b6117a9565b34801561079557600080fd5b5061040a60105481565b3480156107ab57600080fd5b506103236107ba36600461273a565b6117b4565b3480156107cb57600080fd5b5061040a60195481565b3480156107e157600080fd5b5061040a60115481565b3480156107f757600080fd5b5061035a6117ec565b34801561080c57600080fd5b5061035a61081b36600461291d565b6117f9565b34801561082c57600080fd5b5061032361083b3660046128d4565b611978565b34801561084c57600080fd5b5061040a61085b3660046126b0565b60176020526000908152604090205481565b34801561087957600080fd5b506102ee6108883660046126cb565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156108c257600080fd5b506103236108d13660046128d4565b6119b5565b3480156108e257600080fd5b506103236108f13660046126b0565b6119f2565b60006001600160e01b0319821663780e9d6360e01b148061091b575061091b82611a8a565b92915050565b600a546001600160a01b031633146109545760405162461bcd60e51b815260040161094b90612b37565b60405180910390fd5b6015805460ff1916911515919091179055565b600a546001600160a01b031633146109915760405162461bcd60e51b815260040161094b90612b37565b61099c600182611ada565b6109e85760405162461bcd60e51b815260206004820152601e60248201527f4e6f7420656e6f756768205368696e6f62726f7320617661696c61626c650000604482015260640161094b565b8060011415610a48576001600160a01b0382166000908152601760205260408120805491610a1583612c86565b9091555050600f8054610a44918491906000610a3083612c86565b90915550610a3f906001612bbd565b611b27565b5050565b8060021415610a44576001600160a01b0382166000908152601860205260408120805491610a7583612c86565b909155505060118054610a44918491906000610a9083612c86565b90915550601054610aa2906001612bbd565b610a3f9190612bbd565b606060008054610abb90612c4b565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae790612c4b565b8015610b345780601f10610b0957610100808354040283529160200191610b34565b820191906000526020600020905b815481529060010190602001808311610b1757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610bb75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161094b565b506000908152600460205260409020546001600160a01b031690565b600e8054610be090612c4b565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0c90612c4b565b8015610c595780601f10610c2e57610100808354040283529160200191610c59565b820191906000526020600020905b815481529060010190602001808311610c3c57829003601f168201915b505050505081565b6000610c6c8261159c565b9050806001600160a01b0316836001600160a01b03161415610cda5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161094b565b336001600160a01b0382161480610cf65750610cf68133610888565b610d685760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161094b565b610d728383611b41565b505050565b600a546001600160a01b03163314610da15760405162461bcd60e51b815260040161094b90612b37565b60005b81811015610d7257600060166000858585818110610dc457610dc4612cf7565b9050602002016020810190610dd991906126b0565b6001600160a01b0316815260208101919091526040016000205580610dfd81612c86565b915050610da4565b6002600b541415610e585760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161094b565b6002600b5560155460ff1615610ec15760405162461bcd60e51b815260206004820152602860248201527f54686520636f6e7472616374206973207061757365642c206d696e7420697320604482015267191a5cd8589b195960c21b606482015260840161094b565b600082118015610ed357506014548211155b610f155760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b604482015260640161094b565b610f1f8282611ada565b610f7f5760405162461bcd60e51b815260206004820152602b60248201527f4e6f7420656e6f756768205368696e6f62726f7320617661696c61626c65206960448201526a1b881d1a1a5cc81c1bdbdb60aa1b606482015260840161094b565b60155462010000900460ff1615156001141561107d5733600090815260166020526040902054610ff15760405162461bcd60e51b815260206004820152601760248201527f55736572206973206e6f742077686974656c6973746564000000000000000000604482015260640161094b565b60195433600090815260186020908152604080832054601790925290912054849161101b91612bbd565b6110259190612bbd565b111561107d5760405162461bcd60e51b815260206004820152602160248201527f4d696e7420616d6f756e742065786365656420796f757220574c206c696d69746044820152601760f91b606482015260840161094b565b8160135461108b9190612be9565b3410156110cf5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b604482015260640161094b565b60015b82811161116e57816001141561111d573360009081526017602052604081208054916110fd83612c86565b9091555050600f8054611118913391906000610a3083612c86565b61115c565b816002141561115c5733600090815260186020526040812080549161114183612c86565b90915550506011805461115c913391906000610a9083612c86565b8061116681612c86565b9150506110d2565b50506001600b5550565b6111823382611baf565b61119e5760405162461bcd60e51b815260040161094b90612b6c565b610d72838383611ca6565b60006111b483611620565b82106112165760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161094b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146112695760405162461bcd60e51b815260040161094b90612b37565b60158054911515620100000262ff000019909216919091179055565b600a546001600160a01b031633146112af5760405162461bcd60e51b815260040161094b90612b37565b60006112c3600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461130d576040519150601f19603f3d011682016040523d82523d6000602084013e611312565b606091505b50509050806113555760405162461bcd60e51b815260206004820152600f60248201526e4661696c656420576974686472617760881b604482015260640161094b565b50565b610d72838383604051806020016040528060008152506117b4565b6060600061138083611620565b905060008167ffffffffffffffff81111561139d5761139d612d0d565b6040519080825280602002602001820160405280156113c6578160200160208202803683370190505b50905060005b8281101561140d576113de85826111a9565b8282815181106113f0576113f0612cf7565b60209081029190910101528061140581612c86565b9150506113cc565b509392505050565b600a546001600160a01b0316331461143f5760405162461bcd60e51b815260040161094b90612b37565b601355565b600a546001600160a01b0316331461146e5760405162461bcd60e51b815260040161094b90612b37565b600a546001600160a01b0316ff5b600a546001600160a01b031633146114a65760405162461bcd60e51b815260040161094b90612b37565b80516114b990600c906020840190612575565b50506015805461ffff1916610101179055565b60006114d760085490565b821061153a5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161094b565b6008828154811061154d5761154d612cf7565b90600052602060002001549050919050565b600a546001600160a01b031633146115895760405162461bcd60e51b815260040161094b90612b37565b8051610a4490600c906020840190612575565b6000818152600260205260408120546001600160a01b03168061091b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161094b565b600c8054610be090612c4b565b60006001600160a01b03821661168b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161094b565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146116d15760405162461bcd60e51b815260040161094b90612b37565b6116db6000611e4d565b565b600a546001600160a01b031633146117075760405162461bcd60e51b815260040161094b90612b37565b601455565b606060018054610abb90612c4b565b600a546001600160a01b031633146117455760405162461bcd60e51b815260040161094b90612b37565b60005b81811015610d725760016016600085858581811061176857611768612cf7565b905060200201602081019061177d91906126b0565b6001600160a01b03168152602081019190915260400160002055806117a181612c86565b915050611748565b610a44338383611e9f565b6117be3383611baf565b6117da5760405162461bcd60e51b815260040161094b90612b6c565b6117e684848484611f6e565b50505050565b600d8054610be090612c4b565b6000818152600260205260409020546060906001600160a01b03166118785760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161094b565b601554610100900460ff1661191957600e805461189490612c4b565b80601f01602080910402602001604051908101604052809291908181526020018280546118c090612c4b565b801561190d5780601f106118e25761010080835404028352916020019161190d565b820191906000526020600020905b8154815290600101906020018083116118f057829003601f168201915b50505050509050919050565b6000600c805461192890612c4b565b905011611944576040518060200160405280600081525061091b565b600c61194f83611fa1565b600d60405160200161196393929190612a1e565b60405160208183030381529060405292915050565b600a546001600160a01b031633146119a25760405162461bcd60e51b815260040161094b90612b37565b8051610a4490600d906020840190612575565b600a546001600160a01b031633146119df5760405162461bcd60e51b815260040161094b90612b37565b8051610a4490600e906020840190612575565b600a546001600160a01b03163314611a1c5760405162461bcd60e51b815260040161094b90612b37565b6001600160a01b038116611a815760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161094b565b61135581611e4d565b60006001600160e01b031982166380ac58cd60e01b1480611abb57506001600160e01b03198216635b5e139f60e01b145b8061091b57506301ffc9a760e01b6001600160e01b031983161461091b565b6000816001148015611afb575060105483600f54611af89190612bbd565b11155b80611b205750816002148015611b20575060125483601154611b1d9190612bbd565b11155b9392505050565b610a4482826040518060200160405280600081525061209f565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b768261159c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611c285760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161094b565b6000611c338361159c565b9050806001600160a01b0316846001600160a01b03161480611c6e5750836001600160a01b0316611c6384610b3e565b6001600160a01b0316145b80611c9e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611cb98261159c565b6001600160a01b031614611d1d5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161094b565b6001600160a01b038216611d7f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161094b565b611d8a8383836120d2565b611d95600082611b41565b6001600160a01b0383166000908152600360205260408120805460019290611dbe908490612c08565b90915550506001600160a01b0382166000908152600360205260408120805460019290611dec908490612bbd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611f015760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161094b565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611f79848484611ca6565b611f858484848461218a565b6117e65760405162461bcd60e51b815260040161094b90612ae5565b606081611fc55750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611fef5780611fd981612c86565b9150611fe89050600a83612bd5565b9150611fc9565b60008167ffffffffffffffff81111561200a5761200a612d0d565b6040519080825280601f01601f191660200182016040528015612034576020820181803683370190505b5090505b8415611c9e57612049600183612c08565b9150612056600a86612ca1565b612061906030612bbd565b60f81b81838151811061207657612076612cf7565b60200101906001600160f81b031916908160001a905350612098600a86612bd5565b9450612038565b6120a98383612297565b6120b6600084848461218a565b610d725760405162461bcd60e51b815260040161094b90612ae5565b6001600160a01b03831661212d5761212881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612150565b816001600160a01b0316836001600160a01b0316146121505761215083826123e5565b6001600160a01b03821661216757610d7281612482565b826001600160a01b0316826001600160a01b031614610d7257610d728282612531565b60006001600160a01b0384163b1561228c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906121ce903390899088908890600401612a51565b602060405180830381600087803b1580156121e857600080fd5b505af1925050508015612218575060408051601f3d908101601f19168201909252612215918101906128b7565b60015b612272573d808015612246576040519150601f19603f3d011682016040523d82523d6000602084013e61224b565b606091505b50805161226a5760405162461bcd60e51b815260040161094b90612ae5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c9e565b506001949350505050565b6001600160a01b0382166122ed5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161094b565b6000818152600260205260409020546001600160a01b0316156123525760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161094b565b61235e600083836120d2565b6001600160a01b0382166000908152600360205260408120805460019290612387908490612bbd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016123f284611620565b6123fc9190612c08565b60008381526007602052604090205490915080821461244f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061249490600190612c08565b600083815260096020526040812054600880549394509092849081106124bc576124bc612cf7565b9060005260206000200154905080600883815481106124dd576124dd612cf7565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061251557612515612ce1565b6001900381819060005260206000200160009055905550505050565b600061253c83611620565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461258190612c4b565b90600052602060002090601f0160209004810192826125a357600085556125e9565b82601f106125bc57805160ff19168380011785556125e9565b828001600101855582156125e9579182015b828111156125e95782518255916020019190600101906125ce565b506125f59291506125f9565b5090565b5b808211156125f557600081556001016125fa565b600067ffffffffffffffff8084111561262957612629612d0d565b604051601f8501601f19908116603f0116810190828211818310171561265157612651612d0d565b8160405280935085815286868601111561266a57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461269b57600080fd5b919050565b8035801515811461269b57600080fd5b6000602082840312156126c257600080fd5b611b2082612684565b600080604083850312156126de57600080fd5b6126e783612684565b91506126f560208401612684565b90509250929050565b60008060006060848603121561271357600080fd5b61271c84612684565b925061272a60208501612684565b9150604084013590509250925092565b6000806000806080858703121561275057600080fd5b61275985612684565b935061276760208601612684565b925060408501359150606085013567ffffffffffffffff81111561278a57600080fd5b8501601f8101871361279b57600080fd5b6127aa8782356020840161260e565b91505092959194509250565b600080604083850312156127c957600080fd5b6127d283612684565b91506126f5602084016126a0565b600080604083850312156127f357600080fd5b6127fc83612684565b946020939093013593505050565b6000806020838503121561281d57600080fd5b823567ffffffffffffffff8082111561283557600080fd5b818501915085601f83011261284957600080fd5b81358181111561285857600080fd5b8660208260051b850101111561286d57600080fd5b60209290920196919550909350505050565b60006020828403121561289157600080fd5b611b20826126a0565b6000602082840312156128ac57600080fd5b8135611b2081612d23565b6000602082840312156128c957600080fd5b8151611b2081612d23565b6000602082840312156128e657600080fd5b813567ffffffffffffffff8111156128fd57600080fd5b8201601f8101841361290e57600080fd5b611c9e8482356020840161260e565b60006020828403121561292f57600080fd5b5035919050565b6000806040838503121561294957600080fd5b50508035926020909101359150565b60008151808452612970816020860160208601612c1f565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061299e57607f831692505b60208084108214156129c057634e487b7160e01b600052602260045260246000fd5b8180156129d457600181146129e557612a12565b60ff19861689528489019650612a12565b60008881526020902060005b86811015612a0a5781548b8201529085019083016129f1565b505084890196505b50505050505092915050565b6000612a2a8286612984565b8451612a3a818360208901612c1f565b612a4681830186612984565b979650505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a8490830184612958565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612ac657835183529284019291840191600101612aaa565b50909695505050505050565b602081526000611b206020830184612958565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612bd057612bd0612cb5565b500190565b600082612be457612be4612ccb565b500490565b6000816000190483118215151615612c0357612c03612cb5565b500290565b600082821015612c1a57612c1a612cb5565b500390565b60005b83811015612c3a578181015183820152602001612c22565b838111156117e65750506000910152565b600181811c90821680612c5f57607f821691505b60208210811415612c8057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c9a57612c9a612cb5565b5060010190565b600082612cb057612cb0612ccb565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461135557600080fdfea264697066735822122001a21a5360a86a0ed1cb010431b5712b5a579363213385e85c16015794889c0c64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d575a763933486f53693952726374504348756577444c6b597834735834685a3932385435735056624a384c420000000000000000000000

Deployed Bytecode

0x6080604052600436106102c95760003560e01c80635c975abb116101755780639cf94943116100dc578063c668286211610095578063dacaffdc1161006f578063dacaffdc14610840578063e985e9c51461086d578063f2c4ce1e146108b6578063f2fde38b146108d657600080fd5b8063c6682862146107eb578063c87b56dd14610800578063da3ef23f1461082057600080fd5b80639cf9494314610749578063a22cb46514610769578063a7a4ff1c14610789578063b88d4fde1461079f578063ba7d2c76146107bf578063bc04fb95146107d557600080fd5b80637f00c7a61161012e5780637f00c7a61461069357806382c45714146106b35780638da5cb5b146106c957806395d89b41146106e75780639b19251a146106fc5780639c70b5121461072957600080fd5b80635c975abb146105e25780636352211e146105fc5780636c0360eb1461061c57806370a0823114610631578063715018a6146106515780637be559dc1461066657600080fd5b806323b872dd11610234578063438b6300116101ed5780634c261247116101c75780634c261247146105635780634f6ccce71461058357806351830227146105a357806355f804b3146105c257600080fd5b8063438b63001461050157806344a0d68a1461052e5780634bb278f31461054e57600080fd5b806323b872dd146104565780632734e444146104765780632f745c591461048c5780633c952764146104ac5780633ccfd60b146104cc57806342842e0e146104e157600080fd5b8063095ea7b311610286578063095ea7b3146103b45780630c82b942146103d457806313faede6146103f457806318160ddd146104185780631b2ef1ca1461042d578063239c70ae1461044057600080fd5b806301ffc9a7146102ce57806302329a2914610303578063048266241461032557806306fdde0314610345578063081812fc14610367578063081c8c441461039f575b600080fd5b3480156102da57600080fd5b506102ee6102e936600461289a565b6108f6565b60405190151581526020015b60405180910390f35b34801561030f57600080fd5b5061032361031e36600461287f565b610921565b005b34801561033157600080fd5b506103236103403660046127e0565b610967565b34801561035157600080fd5b5061035a610aac565b6040516102fa9190612ad2565b34801561037357600080fd5b5061038761038236600461291d565b610b3e565b6040516001600160a01b0390911681526020016102fa565b3480156103ab57600080fd5b5061035a610bd3565b3480156103c057600080fd5b506103236103cf3660046127e0565b610c61565b3480156103e057600080fd5b506103236103ef36600461280a565b610d77565b34801561040057600080fd5b5061040a60135481565b6040519081526020016102fa565b34801561042457600080fd5b5060085461040a565b61032361043b366004612936565b610e05565b34801561044c57600080fd5b5061040a60145481565b34801561046257600080fd5b506103236104713660046126fe565b611178565b34801561048257600080fd5b5061040a600f5481565b34801561049857600080fd5b5061040a6104a73660046127e0565b6111a9565b3480156104b857600080fd5b506103236104c736600461287f565b61123f565b3480156104d857600080fd5b50610323611285565b3480156104ed57600080fd5b506103236104fc3660046126fe565b611358565b34801561050d57600080fd5b5061052161051c3660046126b0565b611373565b6040516102fa9190612a8e565b34801561053a57600080fd5b5061032361054936600461291d565b611415565b34801561055a57600080fd5b50610323611444565b34801561056f57600080fd5b5061032361057e3660046128d4565b61147c565b34801561058f57600080fd5b5061040a61059e36600461291d565b6114cc565b3480156105af57600080fd5b506015546102ee90610100900460ff1681565b3480156105ce57600080fd5b506103236105dd3660046128d4565b61155f565b3480156105ee57600080fd5b506015546102ee9060ff1681565b34801561060857600080fd5b5061038761061736600461291d565b61159c565b34801561062857600080fd5b5061035a611613565b34801561063d57600080fd5b5061040a61064c3660046126b0565b611620565b34801561065d57600080fd5b506103236116a7565b34801561067257600080fd5b5061040a6106813660046126b0565b60186020526000908152604090205481565b34801561069f57600080fd5b506103236106ae36600461291d565b6116dd565b3480156106bf57600080fd5b5061040a60125481565b3480156106d557600080fd5b50600a546001600160a01b0316610387565b3480156106f357600080fd5b5061035a61170c565b34801561070857600080fd5b5061040a6107173660046126b0565b60166020526000908152604090205481565b34801561073557600080fd5b506015546102ee9062010000900460ff1681565b34801561075557600080fd5b5061032361076436600461280a565b61171b565b34801561077557600080fd5b506103236107843660046127b6565b6117a9565b34801561079557600080fd5b5061040a60105481565b3480156107ab57600080fd5b506103236107ba36600461273a565b6117b4565b3480156107cb57600080fd5b5061040a60195481565b3480156107e157600080fd5b5061040a60115481565b3480156107f757600080fd5b5061035a6117ec565b34801561080c57600080fd5b5061035a61081b36600461291d565b6117f9565b34801561082c57600080fd5b5061032361083b3660046128d4565b611978565b34801561084c57600080fd5b5061040a61085b3660046126b0565b60176020526000908152604090205481565b34801561087957600080fd5b506102ee6108883660046126cb565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156108c257600080fd5b506103236108d13660046128d4565b6119b5565b3480156108e257600080fd5b506103236108f13660046126b0565b6119f2565b60006001600160e01b0319821663780e9d6360e01b148061091b575061091b82611a8a565b92915050565b600a546001600160a01b031633146109545760405162461bcd60e51b815260040161094b90612b37565b60405180910390fd5b6015805460ff1916911515919091179055565b600a546001600160a01b031633146109915760405162461bcd60e51b815260040161094b90612b37565b61099c600182611ada565b6109e85760405162461bcd60e51b815260206004820152601e60248201527f4e6f7420656e6f756768205368696e6f62726f7320617661696c61626c650000604482015260640161094b565b8060011415610a48576001600160a01b0382166000908152601760205260408120805491610a1583612c86565b9091555050600f8054610a44918491906000610a3083612c86565b90915550610a3f906001612bbd565b611b27565b5050565b8060021415610a44576001600160a01b0382166000908152601860205260408120805491610a7583612c86565b909155505060118054610a44918491906000610a9083612c86565b90915550601054610aa2906001612bbd565b610a3f9190612bbd565b606060008054610abb90612c4b565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae790612c4b565b8015610b345780601f10610b0957610100808354040283529160200191610b34565b820191906000526020600020905b815481529060010190602001808311610b1757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610bb75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161094b565b506000908152600460205260409020546001600160a01b031690565b600e8054610be090612c4b565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0c90612c4b565b8015610c595780601f10610c2e57610100808354040283529160200191610c59565b820191906000526020600020905b815481529060010190602001808311610c3c57829003601f168201915b505050505081565b6000610c6c8261159c565b9050806001600160a01b0316836001600160a01b03161415610cda5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161094b565b336001600160a01b0382161480610cf65750610cf68133610888565b610d685760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161094b565b610d728383611b41565b505050565b600a546001600160a01b03163314610da15760405162461bcd60e51b815260040161094b90612b37565b60005b81811015610d7257600060166000858585818110610dc457610dc4612cf7565b9050602002016020810190610dd991906126b0565b6001600160a01b0316815260208101919091526040016000205580610dfd81612c86565b915050610da4565b6002600b541415610e585760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161094b565b6002600b5560155460ff1615610ec15760405162461bcd60e51b815260206004820152602860248201527f54686520636f6e7472616374206973207061757365642c206d696e7420697320604482015267191a5cd8589b195960c21b606482015260840161094b565b600082118015610ed357506014548211155b610f155760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b604482015260640161094b565b610f1f8282611ada565b610f7f5760405162461bcd60e51b815260206004820152602b60248201527f4e6f7420656e6f756768205368696e6f62726f7320617661696c61626c65206960448201526a1b881d1a1a5cc81c1bdbdb60aa1b606482015260840161094b565b60155462010000900460ff1615156001141561107d5733600090815260166020526040902054610ff15760405162461bcd60e51b815260206004820152601760248201527f55736572206973206e6f742077686974656c6973746564000000000000000000604482015260640161094b565b60195433600090815260186020908152604080832054601790925290912054849161101b91612bbd565b6110259190612bbd565b111561107d5760405162461bcd60e51b815260206004820152602160248201527f4d696e7420616d6f756e742065786365656420796f757220574c206c696d69746044820152601760f91b606482015260840161094b565b8160135461108b9190612be9565b3410156110cf5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b604482015260640161094b565b60015b82811161116e57816001141561111d573360009081526017602052604081208054916110fd83612c86565b9091555050600f8054611118913391906000610a3083612c86565b61115c565b816002141561115c5733600090815260186020526040812080549161114183612c86565b90915550506011805461115c913391906000610a9083612c86565b8061116681612c86565b9150506110d2565b50506001600b5550565b6111823382611baf565b61119e5760405162461bcd60e51b815260040161094b90612b6c565b610d72838383611ca6565b60006111b483611620565b82106112165760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161094b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146112695760405162461bcd60e51b815260040161094b90612b37565b60158054911515620100000262ff000019909216919091179055565b600a546001600160a01b031633146112af5760405162461bcd60e51b815260040161094b90612b37565b60006112c3600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461130d576040519150601f19603f3d011682016040523d82523d6000602084013e611312565b606091505b50509050806113555760405162461bcd60e51b815260206004820152600f60248201526e4661696c656420576974686472617760881b604482015260640161094b565b50565b610d72838383604051806020016040528060008152506117b4565b6060600061138083611620565b905060008167ffffffffffffffff81111561139d5761139d612d0d565b6040519080825280602002602001820160405280156113c6578160200160208202803683370190505b50905060005b8281101561140d576113de85826111a9565b8282815181106113f0576113f0612cf7565b60209081029190910101528061140581612c86565b9150506113cc565b509392505050565b600a546001600160a01b0316331461143f5760405162461bcd60e51b815260040161094b90612b37565b601355565b600a546001600160a01b0316331461146e5760405162461bcd60e51b815260040161094b90612b37565b600a546001600160a01b0316ff5b600a546001600160a01b031633146114a65760405162461bcd60e51b815260040161094b90612b37565b80516114b990600c906020840190612575565b50506015805461ffff1916610101179055565b60006114d760085490565b821061153a5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161094b565b6008828154811061154d5761154d612cf7565b90600052602060002001549050919050565b600a546001600160a01b031633146115895760405162461bcd60e51b815260040161094b90612b37565b8051610a4490600c906020840190612575565b6000818152600260205260408120546001600160a01b03168061091b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161094b565b600c8054610be090612c4b565b60006001600160a01b03821661168b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161094b565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146116d15760405162461bcd60e51b815260040161094b90612b37565b6116db6000611e4d565b565b600a546001600160a01b031633146117075760405162461bcd60e51b815260040161094b90612b37565b601455565b606060018054610abb90612c4b565b600a546001600160a01b031633146117455760405162461bcd60e51b815260040161094b90612b37565b60005b81811015610d725760016016600085858581811061176857611768612cf7565b905060200201602081019061177d91906126b0565b6001600160a01b03168152602081019190915260400160002055806117a181612c86565b915050611748565b610a44338383611e9f565b6117be3383611baf565b6117da5760405162461bcd60e51b815260040161094b90612b6c565b6117e684848484611f6e565b50505050565b600d8054610be090612c4b565b6000818152600260205260409020546060906001600160a01b03166118785760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161094b565b601554610100900460ff1661191957600e805461189490612c4b565b80601f01602080910402602001604051908101604052809291908181526020018280546118c090612c4b565b801561190d5780601f106118e25761010080835404028352916020019161190d565b820191906000526020600020905b8154815290600101906020018083116118f057829003601f168201915b50505050509050919050565b6000600c805461192890612c4b565b905011611944576040518060200160405280600081525061091b565b600c61194f83611fa1565b600d60405160200161196393929190612a1e565b60405160208183030381529060405292915050565b600a546001600160a01b031633146119a25760405162461bcd60e51b815260040161094b90612b37565b8051610a4490600d906020840190612575565b600a546001600160a01b031633146119df5760405162461bcd60e51b815260040161094b90612b37565b8051610a4490600e906020840190612575565b600a546001600160a01b03163314611a1c5760405162461bcd60e51b815260040161094b90612b37565b6001600160a01b038116611a815760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161094b565b61135581611e4d565b60006001600160e01b031982166380ac58cd60e01b1480611abb57506001600160e01b03198216635b5e139f60e01b145b8061091b57506301ffc9a760e01b6001600160e01b031983161461091b565b6000816001148015611afb575060105483600f54611af89190612bbd565b11155b80611b205750816002148015611b20575060125483601154611b1d9190612bbd565b11155b9392505050565b610a4482826040518060200160405280600081525061209f565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b768261159c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611c285760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161094b565b6000611c338361159c565b9050806001600160a01b0316846001600160a01b03161480611c6e5750836001600160a01b0316611c6384610b3e565b6001600160a01b0316145b80611c9e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611cb98261159c565b6001600160a01b031614611d1d5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161094b565b6001600160a01b038216611d7f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161094b565b611d8a8383836120d2565b611d95600082611b41565b6001600160a01b0383166000908152600360205260408120805460019290611dbe908490612c08565b90915550506001600160a01b0382166000908152600360205260408120805460019290611dec908490612bbd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611f015760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161094b565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611f79848484611ca6565b611f858484848461218a565b6117e65760405162461bcd60e51b815260040161094b90612ae5565b606081611fc55750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611fef5780611fd981612c86565b9150611fe89050600a83612bd5565b9150611fc9565b60008167ffffffffffffffff81111561200a5761200a612d0d565b6040519080825280601f01601f191660200182016040528015612034576020820181803683370190505b5090505b8415611c9e57612049600183612c08565b9150612056600a86612ca1565b612061906030612bbd565b60f81b81838151811061207657612076612cf7565b60200101906001600160f81b031916908160001a905350612098600a86612bd5565b9450612038565b6120a98383612297565b6120b6600084848461218a565b610d725760405162461bcd60e51b815260040161094b90612ae5565b6001600160a01b03831661212d5761212881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612150565b816001600160a01b0316836001600160a01b0316146121505761215083826123e5565b6001600160a01b03821661216757610d7281612482565b826001600160a01b0316826001600160a01b031614610d7257610d728282612531565b60006001600160a01b0384163b1561228c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906121ce903390899088908890600401612a51565b602060405180830381600087803b1580156121e857600080fd5b505af1925050508015612218575060408051601f3d908101601f19168201909252612215918101906128b7565b60015b612272573d808015612246576040519150601f19603f3d011682016040523d82523d6000602084013e61224b565b606091505b50805161226a5760405162461bcd60e51b815260040161094b90612ae5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c9e565b506001949350505050565b6001600160a01b0382166122ed5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161094b565b6000818152600260205260409020546001600160a01b0316156123525760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161094b565b61235e600083836120d2565b6001600160a01b0382166000908152600360205260408120805460019290612387908490612bbd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016123f284611620565b6123fc9190612c08565b60008381526007602052604090205490915080821461244f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061249490600190612c08565b600083815260096020526040812054600880549394509092849081106124bc576124bc612cf7565b9060005260206000200154905080600883815481106124dd576124dd612cf7565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061251557612515612ce1565b6001900381819060005260206000200160009055905550505050565b600061253c83611620565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461258190612c4b565b90600052602060002090601f0160209004810192826125a357600085556125e9565b82601f106125bc57805160ff19168380011785556125e9565b828001600101855582156125e9579182015b828111156125e95782518255916020019190600101906125ce565b506125f59291506125f9565b5090565b5b808211156125f557600081556001016125fa565b600067ffffffffffffffff8084111561262957612629612d0d565b604051601f8501601f19908116603f0116810190828211818310171561265157612651612d0d565b8160405280935085815286868601111561266a57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461269b57600080fd5b919050565b8035801515811461269b57600080fd5b6000602082840312156126c257600080fd5b611b2082612684565b600080604083850312156126de57600080fd5b6126e783612684565b91506126f560208401612684565b90509250929050565b60008060006060848603121561271357600080fd5b61271c84612684565b925061272a60208501612684565b9150604084013590509250925092565b6000806000806080858703121561275057600080fd5b61275985612684565b935061276760208601612684565b925060408501359150606085013567ffffffffffffffff81111561278a57600080fd5b8501601f8101871361279b57600080fd5b6127aa8782356020840161260e565b91505092959194509250565b600080604083850312156127c957600080fd5b6127d283612684565b91506126f5602084016126a0565b600080604083850312156127f357600080fd5b6127fc83612684565b946020939093013593505050565b6000806020838503121561281d57600080fd5b823567ffffffffffffffff8082111561283557600080fd5b818501915085601f83011261284957600080fd5b81358181111561285857600080fd5b8660208260051b850101111561286d57600080fd5b60209290920196919550909350505050565b60006020828403121561289157600080fd5b611b20826126a0565b6000602082840312156128ac57600080fd5b8135611b2081612d23565b6000602082840312156128c957600080fd5b8151611b2081612d23565b6000602082840312156128e657600080fd5b813567ffffffffffffffff8111156128fd57600080fd5b8201601f8101841361290e57600080fd5b611c9e8482356020840161260e565b60006020828403121561292f57600080fd5b5035919050565b6000806040838503121561294957600080fd5b50508035926020909101359150565b60008151808452612970816020860160208601612c1f565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061299e57607f831692505b60208084108214156129c057634e487b7160e01b600052602260045260246000fd5b8180156129d457600181146129e557612a12565b60ff19861689528489019650612a12565b60008881526020902060005b86811015612a0a5781548b8201529085019083016129f1565b505084890196505b50505050505092915050565b6000612a2a8286612984565b8451612a3a818360208901612c1f565b612a4681830186612984565b979650505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a8490830184612958565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612ac657835183529284019291840191600101612aaa565b50909695505050505050565b602081526000611b206020830184612958565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612bd057612bd0612cb5565b500190565b600082612be457612be4612ccb565b500490565b6000816000190483118215151615612c0357612c03612cb5565b500290565b600082821015612c1a57612c1a612cb5565b500390565b60005b83811015612c3a578181015183820152602001612c22565b838111156117e65750506000910152565b600181811c90821680612c5f57607f821691505b60208210811415612c8057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c9a57612c9a612cb5565b5060010190565b600082612cb057612cb0612ccb565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461135557600080fdfea264697066735822122001a21a5360a86a0ed1cb010431b5712b5a579363213385e85c16015794889c0c64736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d575a763933486f53693952726374504348756577444c6b597834735834685a3932385435735056624a384c420000000000000000000000

-----Decoded View---------------
Arg [0] : _initNotRevealedUri (string): ipfs://QmWZv93HoSi9RrctPCHuewDLkYx4sX4hZ928T5sPVbJ8LB

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [2] : 697066733a2f2f516d575a763933486f53693952726374504348756577444c6b
Arg [3] : 597834735834685a3932385435735056624a384c420000000000000000000000


Deployed Bytecode Sourcemap

48340:6189:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42106:224;;;;;;;;;;-1:-1:-1;42106:224:0;;;;;:::i;:::-;;:::i;:::-;;;8587:14:1;;8580:22;8562:41;;8550:2;8535:18;42106:224:0;;;;;;;;54338:79;;;;;;;;;;-1:-1:-1;54338:79:0;;;;;:::i;:::-;;:::i;:::-;;52330:550;;;;;;;;;;-1:-1:-1;52330:550:0;;;;;:::i;:::-;;:::i;28926:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30485:221::-;;;;;;;;;;-1:-1:-1;30485:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7248:32:1;;;7230:51;;7218:2;7203:18;30485:221:0;7084:203:1;48529:28:0;;;;;;;;;;;;;:::i;30008:411::-;;;;;;;;;;-1:-1:-1;30008:411:0;;;;;:::i;:::-;;:::i;53468:239::-;;;;;;;;;;-1:-1:-1;53468:239:0;;;;;:::i;:::-;;:::i;48766:31::-;;;;;;;;;;;;;;;;;;;19520:25:1;;;19508:2;19493:18;48766:31:0;19374:177:1;42746:113:0;;;;;;;;;;-1:-1:-1;42834:10:0;:17;42746:113;;49396:1422;;;;;;:::i;:::-;;:::i;48804:32::-;;;;;;;;;;;;;;;;31235:339;;;;;;;;;;-1:-1:-1;31235:339:0;;;;;:::i;:::-;;:::i;48581:33::-;;;;;;;;;;;;;;;;42414:256;;;;;;;;;;-1:-1:-1;42414:256:0;;;;;:::i;:::-;;:::i;54425:101::-;;;;;;;;;;-1:-1:-1;54425:101:0;;;;;:::i;:::-;;:::i;52888:216::-;;;;;;;;;;;;;:::i;31645:185::-;;;;;;;;;;-1:-1:-1;31645:185:0;;;;;:::i;:::-;;:::i;51197:390::-;;;;;;;;;;-1:-1:-1;51197:390:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;53715:86::-;;;;;;;;;;-1:-1:-1;53715:86:0;;;;;:::i;:::-;;:::i;53112:88::-;;;;;;;;;;;;;:::i;52178:144::-;;;;;;;;;;-1:-1:-1;52178:144:0;;;;;:::i;:::-;;:::i;42936:233::-;;;;;;;;;;-1:-1:-1;42936:233:0;;;;;:::i;:::-;;:::i;48892:28::-;;;;;;;;;;-1:-1:-1;48892:28:0;;;;;;;;;;;53939:98;;;;;;;;;;-1:-1:-1;53939:98:0;;;;;:::i;:::-;;:::i;48859:26::-;;;;;;;;;;-1:-1:-1;48859:26:0;;;;;;;;28620:239;;;;;;;;;;-1:-1:-1;28620:239:0;;;;;:::i;:::-;;:::i;48457:21::-;;;;;;;;;;;;;:::i;28350:208::-;;;;;;;;;;-1:-1:-1;28350:208:0;;;;;:::i;:::-;;:::i;7522:103::-;;;;;;;;;;;;;:::i;49106:60::-;;;;;;;;;;-1:-1:-1;49106:60:0;;;;;:::i;:::-;;;;;;;;;;;;;;53809:122;;;;;;;;;;-1:-1:-1;53809:122:0;;;;;:::i;:::-;;:::i;48706:38::-;;;;;;;;;;;;;;;;6871:87;;;;;;;;;;-1:-1:-1;6944:6:0;;-1:-1:-1;;;;;6944:6:0;6871:87;;29095:104;;;;;;;;;;;;;:::i;48988:44::-;;;;;;;;;;-1:-1:-1;48988:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;48927:34;;;;;;;;;;-1:-1:-1;48927:34:0;;;;;;;;;;;53224:236;;;;;;;;;;-1:-1:-1;53224:236:0;;;;;:::i;:::-;;:::i;30778:155::-;;;;;;;;;;-1:-1:-1;30778:155:0;;;;;:::i;:::-;;:::i;48621:38::-;;;;;;;;;;;;;;;;31901:328;;;;;;;;;;-1:-1:-1;31901:328:0;;;;;:::i;:::-;;:::i;49173:37::-;;;;;;;;;;;;;;;;48666:33;;;;;;;;;;;;;;;;48485:37;;;;;;;;;;;;;:::i;51595:557::-;;;;;;;;;;-1:-1:-1;51595:557:0;;;;;:::i;:::-;;:::i;54045:151::-;;;;;;;;;;-1:-1:-1;54045:151:0;;;;;:::i;:::-;;:::i;49039:60::-;;;;;;;;;;-1:-1:-1;49039:60:0;;;;;:::i;:::-;;;;;;;;;;;;;;31004:164;;;;;;;;;;-1:-1:-1;31004:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31125:25:0;;;31101:4;31125:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31004:164;54204:126;;;;;;;;;;-1:-1:-1;54204:126:0;;;;;:::i;:::-;;:::i;7780:201::-;;;;;;;;;;-1:-1:-1;7780:201:0;;;;;:::i;:::-;;:::i;42106:224::-;42208:4;-1:-1:-1;;;;;;42232:50:0;;-1:-1:-1;;;42232:50:0;;:90;;;42286:36;42310:11;42286:23;:36::i;:::-;42225:97;42106:224;-1:-1:-1;;42106:224:0:o;54338:79::-;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;;;;;;;;;54394:6:::1;:15:::0;;-1:-1:-1;;54394:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;54338:79::o;52330:550::-;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;52469:35:::1;52489:1;52492:11;52469:19;:35::i;:::-;52447:115;;;::::0;-1:-1:-1;;;52447:115:0;;11443:2:1;52447:115:0::1;::::0;::::1;11425:21:1::0;11482:2;11462:18;;;11455:30;11521:32;11501:18;;;11494:60;11571:18;;52447:115:0::1;11241:354:1::0;52447:115:0::1;52579:11;52594:1;52579:16;52575:298;;;-1:-1:-1::0;;;;;52612:32:0;::::1;;::::0;;;:25:::1;:32;::::0;;;;:34;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;52682:14:0::1;:16:::0;;52661:38:::1;::::0;52671:5;;52682:16;:14:::1;:16;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;52678:20:0::1;::::0;:1:::1;:20;:::i;:::-;52661:9;:38::i;:::-;52330:550:::0;;:::o;52575:298::-:1;52721:11;52736:1;52721:16;52717:156;;;-1:-1:-1::0;;;;;52754:32:0;::::1;;::::0;;;:25:::1;:32;::::0;;;;:34;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;52844:14:0::1;:16:::0;;52803:58:::1;::::0;52813:5;;52844:16;:14:::1;:16;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;52824:17:0::1;::::0;52820:21:::1;::::0;:1:::1;:21;:::i;:::-;:40;;;;:::i;28926:100::-:0;28980:13;29013:5;29006:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28926:100;:::o;30485:221::-;30561:7;33828:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33828:16:0;30581:73;;;;-1:-1:-1;;;30581:73:0;;15280:2:1;30581:73:0;;;15262:21:1;15319:2;15299:18;;;15292:30;15358:34;15338:18;;;15331:62;-1:-1:-1;;;15409:18:1;;;15402:42;15461:19;;30581:73:0;15078:408:1;30581:73:0;-1:-1:-1;30674:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30674:24:0;;30485:221::o;48529:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30008:411::-;30089:13;30105:23;30120:7;30105:14;:23::i;:::-;30089:39;;30153:5;-1:-1:-1;;;;;30147:11:0;:2;-1:-1:-1;;;;;30147:11:0;;;30139:57;;;;-1:-1:-1;;;30139:57:0;;17223:2:1;30139:57:0;;;17205:21:1;17262:2;17242:18;;;17235:30;17301:34;17281:18;;;17274:62;-1:-1:-1;;;17352:18:1;;;17345:31;17393:19;;30139:57:0;17021:397:1;30139:57:0;5675:10;-1:-1:-1;;;;;30231:21:0;;;;:62;;-1:-1:-1;30256:37:0;30273:5;5675:10;31004:164;:::i;30256:37::-;30209:168;;;;-1:-1:-1;;;30209:168:0;;13673:2:1;30209:168:0;;;13655:21:1;13712:2;13692:18;;;13685:30;13751:34;13731:18;;;13724:62;13822:26;13802:18;;;13795:54;13866:19;;30209:168:0;13471:420:1;30209:168:0;30390:21;30399:2;30403:7;30390:8;:21::i;:::-;30078:341;30008:411;;:::o;53468:239::-;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;53590:9:::1;53585:115;53601:29:::0;;::::1;53585:115;;;53687:1;53652:9;:32;53662:18;;53681:1;53662:21;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;53652:32:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;53652:32:0;:36;53632:3;::::1;::::0;::::1;:::i;:::-;;;;53585:115;;49396:1422:::0;1845:1;2443:7;;:19;;2435:63;;;;-1:-1:-1;;;2435:63:0;;19216:2:1;2435:63:0;;;19198:21:1;19255:2;19235:18;;;19228:30;19294:33;19274:18;;;19267:61;19345:18;;2435:63:0;19014:355:1;2435:63:0;1845:1;2576:7;:18;49532:6:::1;::::0;::::1;;49531:7;49523:60;;;::::0;-1:-1:-1;;;49523:60:0;;15693:2:1;49523:60:0::1;::::0;::::1;15675:21:1::0;15732:2;15712:18;;;15705:30;15771:34;15751:18;;;15744:62;-1:-1:-1;;;15822:18:1;;;15815:38;15870:19;;49523:60:0::1;15491:404:1::0;49523:60:0::1;49670:1;49656:11;:15;:47;;;;;49690:13;;49675:11;:28;;49656:47;49634:116;;;::::0;-1:-1:-1;;;49634:116:0;;18455:2:1;49634:116:0::1;::::0;::::1;18437:21:1::0;18494:2;18474:18;;;18467:30;-1:-1:-1;;;18513:18:1;;;18506:49;18572:18;;49634:116:0::1;18253:343:1::0;49634:116:0::1;49783:45;49803:11;49816;49783:19;:45::i;:::-;49761:138;;;::::0;-1:-1:-1;;;49761:138:0;;18043:2:1;49761:138:0::1;::::0;::::1;18025:21:1::0;18082:2;18062:18;;;18055:30;18121:34;18101:18;;;18094:62;-1:-1:-1;;;18172:18:1;;;18165:41;18223:19;;49761:138:0::1;17841:407:1::0;49761:138:0::1;49916:15;::::0;;;::::1;;;:23;;49935:4;49916:23;49912:403;;;49974:10;49988:1;49964:21:::0;;;:9:::1;:21;::::0;;;;;49956:61:::1;;;::::0;-1:-1:-1;;;49956:61:0;;13321:2:1;49956:61:0::1;::::0;::::1;13303:21:1::0;13360:2;13340:18;;;13333:30;13399:25;13379:18;;;13372:53;13442:18;;49956:61:0::1;13119:347:1::0;49956:61:0::1;50216:18;::::0;50145:10:::1;50119:37;::::0;;;:25:::1;:37;::::0;;;;;;;;50058:25:::1;:37:::0;;;;;;;50180:11;;50058:98:::1;::::0;::::1;:::i;:::-;:133;;;;:::i;:::-;:176;;50032:271;;;::::0;-1:-1:-1;;;50032:271:0;;11041:2:1;50032:271:0::1;::::0;::::1;11023:21:1::0;11080:2;11060:18;;;11053:30;11119:34;11099:18;;;11092:62;-1:-1:-1;;;11170:18:1;;;11163:31;11211:19;;50032:271:0::1;10839:397:1::0;50032:271:0::1;50353:11;50346:4;;:18;;;;:::i;:::-;50333:9;:31;;50325:62;;;::::0;-1:-1:-1;;;50325:62:0;;12974:2:1;50325:62:0::1;::::0;::::1;12956:21:1::0;13013:2;12993:18;;;12986:30;-1:-1:-1;;;13032:18:1;;;13025:48;13090:18;;50325:62:0::1;12772:342:1::0;50325:62:0::1;50417:1;50400:411;50425:11;50420:1;:16;50400:411;;50462:11;50477:1;50462:16;50458:342;;;50525:10;50499:37;::::0;;;:25:::1;:37;::::0;;;;:39;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;50583:14:0::1;:16:::0;;50557:43:::1;::::0;50567:10:::1;::::0;50583:16;:14:::1;:16;::::0;::::1;:::i;50557:43::-;50458:342;;;50626:11;50641:1;50626:16;50622:178;;;50689:10;50663:37;::::0;;;:25:::1;:37;::::0;;;;:39;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;50767:14:0::1;:16:::0;;50721:63:::1;::::0;50731:10:::1;::::0;50767:16;:14:::1;:16;::::0;::::1;:::i;50721:63::-;50438:3:::0;::::1;::::0;::::1;:::i;:::-;;;;50400:411;;;-1:-1:-1::0;;1801:1:0;2755:7;:22;-1:-1:-1;49396:1422:0:o;31235:339::-;31430:41;5675:10;31463:7;31430:18;:41::i;:::-;31422:103;;;;-1:-1:-1;;;31422:103:0;;;;;;;:::i;:::-;31538:28;31548:4;31554:2;31558:7;31538:9;:28::i;42414:256::-;42511:7;42547:23;42564:5;42547:16;:23::i;:::-;42539:5;:31;42531:87;;;;-1:-1:-1;;;42531:87:0;;9040:2:1;42531:87:0;;;9022:21:1;9079:2;9059:18;;;9052:30;9118:34;9098:18;;;9091:62;-1:-1:-1;;;9169:18:1;;;9162:41;9220:19;;42531:87:0;8838:407:1;42531:87:0;-1:-1:-1;;;;;;42636:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;42414:256::o;54425:101::-;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;54494:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;54494:24:0;;::::1;::::0;;;::::1;::::0;;54425:101::o;52888:216::-;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;52939:19:::1;52972:7;6944:6:::0;;-1:-1:-1;;;;;6944:6:0;;6871:87;52972:7:::1;-1:-1:-1::0;;;;;52964:21:0::1;53007;52964:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52938:105;;;53062:14;53054:42;;;::::0;-1:-1:-1;;;53054:42:0;;16879:2:1;53054:42:0::1;::::0;::::1;16861:21:1::0;16918:2;16898:18;;;16891:30;-1:-1:-1;;;16937:18:1;;;16930:45;16992:18;;53054:42:0::1;16677:339:1::0;53054:42:0::1;52927:177;52888:216::o:0;31645:185::-;31783:39;31800:4;31806:2;31810:7;31783:39;;;;;;;;;;;;:16;:39::i;51197:390::-;51284:16;51318:23;51344:17;51354:6;51344:9;:17::i;:::-;51318:43;;51372:25;51414:15;51400:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51400:30:0;;51372:58;;51446:9;51441:113;51461:15;51457:1;:19;51441:113;;;51512:30;51532:6;51540:1;51512:19;:30::i;:::-;51498:8;51507:1;51498:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;51478:3;;;;:::i;:::-;;;;51441:113;;;-1:-1:-1;51571:8:0;51197:390;-1:-1:-1;;;51197:390:0:o;53715:86::-;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;53778:4:::1;:15:::0;53715:86::o;53112:88::-;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;6944:6;;-1:-1:-1;;;;;6944:6:0;53162:30:::1;52178:144:::0;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;52246:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;;52275:8:0::1;:15:::0;;-1:-1:-1;;52301:13:0;;;;;52178:144::o;42936:233::-;43011:7;43047:30;42834:10;:17;;42746:113;43047:30;43039:5;:38;43031:95;;;;-1:-1:-1;;;43031:95:0;;18803:2:1;43031:95:0;;;18785:21:1;18842:2;18822:18;;;18815:30;18881:34;18861:18;;;18854:62;-1:-1:-1;;;18932:18:1;;;18925:42;18984:19;;43031:95:0;18601:408:1;43031:95:0;43144:10;43155:5;43144:17;;;;;;;;:::i;:::-;;;;;;;;;43137:24;;42936:233;;;:::o;53939:98::-;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;54011:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;28620:239::-:0;28692:7;28728:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28728:16:0;28763:19;28755:73;;;;-1:-1:-1;;;28755:73:0;;14509:2:1;28755:73:0;;;14491:21:1;14548:2;14528:18;;;14521:30;14587:34;14567:18;;;14560:62;-1:-1:-1;;;14638:18:1;;;14631:39;14687:19;;28755:73:0;14307:405:1;48457:21:0;;;;;;;:::i;28350:208::-;28422:7;-1:-1:-1;;;;;28450:19:0;;28442:74;;;;-1:-1:-1;;;28442:74:0;;14098:2:1;28442:74:0;;;14080:21:1;14137:2;14117:18;;;14110:30;14176:34;14156:18;;;14149:62;-1:-1:-1;;;14227:18:1;;;14220:40;14277:19;;28442:74:0;13896:406:1;28442:74:0;-1:-1:-1;;;;;;28534:16:0;;;;;:9;:16;;;;;;;28350:208::o;7522:103::-;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;7587:30:::1;7614:1;7587:18;:30::i;:::-;7522:103::o:0;53809:122::-;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;53890:13:::1;:33:::0;53809:122::o;29095:104::-;29151:13;29184:7;29177:14;;;;;:::i;53224:236::-;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;53343:9:::1;53338:115;53354:29:::0;;::::1;53338:115;;;53440:1;53405:9;:32;53415:18;;53434:1;53415:21;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;53405:32:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;53405:32:0;:36;53385:3;::::1;::::0;::::1;:::i;:::-;;;;53338:115;;30778:155:::0;30873:52;5675:10;30906:8;30916;30873:18;:52::i;31901:328::-;32076:41;5675:10;32109:7;32076:18;:41::i;:::-;32068:103;;;;-1:-1:-1;;;32068:103:0;;;;;;;:::i;:::-;32182:39;32196:4;32202:2;32206:7;32215:5;32182:13;:39::i;:::-;31901:328;;;;:::o;48485:37::-;;;;;;;:::i;51595:557::-;33804:4;33828:16;;;:7;:16;;;;;;51713:13;;-1:-1:-1;;;;;33828:16:0;51744:113;;;;-1:-1:-1;;;51744:113:0;;16463:2:1;51744:113:0;;;16445:21:1;16502:2;16482:18;;;16475:30;16541:34;16521:18;;;16514:62;-1:-1:-1;;;16592:18:1;;;16585:45;16647:19;;51744:113:0;16261:411:1;51744:113:0;51872:8;;;;;;;51868:71;;51913:14;51906:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51595:557;;;:::o;51868:71::-;51993:1;51975:7;51969:21;;;;;:::i;:::-;;;:25;:175;;;;;;;;;;;;;;;;;52060:7;52069:18;:7;:16;:18::i;:::-;52089:13;52043:60;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51949:195;51595:557;-1:-1:-1;;51595:557:0:o;54045:151::-;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;54155:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;54204:126::-:0;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;54290:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;7780:201::-:0;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7869:22:0;::::1;7861:73;;;::::0;-1:-1:-1;;;7861:73:0;;9871:2:1;7861:73:0::1;::::0;::::1;9853:21:1::0;9910:2;9890:18;;;9883:30;9949:34;9929:18;;;9922:62;-1:-1:-1;;;10000:18:1;;;9993:36;10046:19;;7861:73:0::1;9669:402:1::0;7861:73:0::1;7945:28;7964:8;7945:18;:28::i;27981:305::-:0;28083:4;-1:-1:-1;;;;;;28120:40:0;;-1:-1:-1;;;28120:40:0;;:105;;-1:-1:-1;;;;;;;28177:48:0;;-1:-1:-1;;;28177:48:0;28120:105;:158;;;-1:-1:-1;;;;;;;;;;19764:40:0;;;28242:36;19655:157;50826:363;50946:4;50989:11;51004:1;50989:16;:86;;;;;51058:17;;51043:11;51026:14;;:28;;;;:::i;:::-;:49;;50989:86;50988:193;;;;51094:11;51109:1;51094:16;:86;;;;;51163:17;;51148:11;51131:14;;:28;;;;:::i;:::-;:49;;51094:86;50968:213;50826:363;-1:-1:-1;;;50826:363:0:o;34723:110::-;34799:26;34809:2;34813:7;34799:26;;;;;;;;;;;;:9;:26::i;37885:174::-;37960:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;37960:29:0;-1:-1:-1;;;;;37960:29:0;;;;;;;;:24;;38014:23;37960:24;38014:14;:23::i;:::-;-1:-1:-1;;;;;38005:46:0;;;;;;;;;;;37885:174;;:::o;34033:348::-;34126:4;33828:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33828:16:0;34143:73;;;;-1:-1:-1;;;34143:73:0;;12561:2:1;34143:73:0;;;12543:21:1;12600:2;12580:18;;;12573:30;12639:34;12619:18;;;12612:62;-1:-1:-1;;;12690:18:1;;;12683:42;12742:19;;34143:73:0;12359:408:1;34143:73:0;34227:13;34243:23;34258:7;34243:14;:23::i;:::-;34227:39;;34296:5;-1:-1:-1;;;;;34285:16:0;:7;-1:-1:-1;;;;;34285:16:0;;:51;;;;34329:7;-1:-1:-1;;;;;34305:31:0;:20;34317:7;34305:11;:20::i;:::-;-1:-1:-1;;;;;34305:31:0;;34285:51;:87;;;-1:-1:-1;;;;;;31125:25:0;;;31101:4;31125:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;34340:32;34277:96;34033:348;-1:-1:-1;;;;34033:348:0:o;37142:625::-;37301:4;-1:-1:-1;;;;;37274:31:0;:23;37289:7;37274:14;:23::i;:::-;-1:-1:-1;;;;;37274:31:0;;37266:81;;;;-1:-1:-1;;;37266:81:0;;10278:2:1;37266:81:0;;;10260:21:1;10317:2;10297:18;;;10290:30;10356:34;10336:18;;;10329:62;-1:-1:-1;;;10407:18:1;;;10400:35;10452:19;;37266:81:0;10076:401:1;37266:81:0;-1:-1:-1;;;;;37366:16:0;;37358:65;;;;-1:-1:-1;;;37358:65:0;;11802:2:1;37358:65:0;;;11784:21:1;11841:2;11821:18;;;11814:30;11880:34;11860:18;;;11853:62;-1:-1:-1;;;11931:18:1;;;11924:34;11975:19;;37358:65:0;11600:400:1;37358:65:0;37436:39;37457:4;37463:2;37467:7;37436:20;:39::i;:::-;37540:29;37557:1;37561:7;37540:8;:29::i;:::-;-1:-1:-1;;;;;37582:15:0;;;;;;:9;:15;;;;;:20;;37601:1;;37582:15;:20;;37601:1;;37582:20;:::i;:::-;;;;-1:-1:-1;;;;;;;37613:13:0;;;;;;:9;:13;;;;;:18;;37630:1;;37613:13;:18;;37630:1;;37613:18;:::i;:::-;;;;-1:-1:-1;;37642:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37642:21:0;-1:-1:-1;;;;;37642:21:0;;;;;;;;;37681:27;;37642:16;;37681:27;;;;;;;30078:341;30008:411;;:::o;8141:191::-;8234:6;;;-1:-1:-1;;;;;8251:17:0;;;-1:-1:-1;;;;;;8251:17:0;;;;;;;8284:40;;8234:6;;;8251:17;8234:6;;8284:40;;8215:16;;8284:40;8204:128;8141:191;:::o;38201:315::-;38356:8;-1:-1:-1;;;;;38347:17:0;:5;-1:-1:-1;;;;;38347:17:0;;;38339:55;;;;-1:-1:-1;;;38339:55:0;;12207:2:1;38339:55:0;;;12189:21:1;12246:2;12226:18;;;12219:30;12285:27;12265:18;;;12258:55;12330:18;;38339:55:0;12005:349:1;38339:55:0;-1:-1:-1;;;;;38405:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;38405:46:0;;;;;;;;;;38467:41;;8562::1;;;38467::0;;8535:18:1;38467:41:0;;;;;;;38201:315;;;:::o;33111:::-;33268:28;33278:4;33284:2;33288:7;33268:9;:28::i;:::-;33315:48;33338:4;33344:2;33348:7;33357:5;33315:22;:48::i;:::-;33307:111;;;;-1:-1:-1;;;33307:111:0;;;;;;;:::i;3157:723::-;3213:13;3434:10;3430:53;;-1:-1:-1;;3461:10:0;;;;;;;;;;;;-1:-1:-1;;;3461:10:0;;;;;3157:723::o;3430:53::-;3508:5;3493:12;3549:78;3556:9;;3549:78;;3582:8;;;;:::i;:::-;;-1:-1:-1;3605:10:0;;-1:-1:-1;3613:2:0;3605:10;;:::i;:::-;;;3549:78;;;3637:19;3669:6;3659:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3659:17:0;;3637:39;;3687:154;3694:10;;3687:154;;3721:11;3731:1;3721:11;;:::i;:::-;;-1:-1:-1;3790:10:0;3798:2;3790:5;:10;:::i;:::-;3777:24;;:2;:24;:::i;:::-;3764:39;;3747:6;3754;3747:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3747:56:0;;;;;;;;-1:-1:-1;3818:11:0;3827:2;3818:11;;:::i;:::-;;;3687:154;;35060:321;35190:18;35196:2;35200:7;35190:5;:18::i;:::-;35241:54;35272:1;35276:2;35280:7;35289:5;35241:22;:54::i;:::-;35219:154;;;;-1:-1:-1;;;35219:154:0;;;;;;;:::i;43782:589::-;-1:-1:-1;;;;;43988:18:0;;43984:187;;44023:40;44055:7;45198:10;:17;;45171:24;;;;:15;:24;;;;;:44;;;45226:24;;;;;;;;;;;;45094:164;44023:40;43984:187;;;44093:2;-1:-1:-1;;;;;44085:10:0;:4;-1:-1:-1;;;;;44085:10:0;;44081:90;;44112:47;44145:4;44151:7;44112:32;:47::i;:::-;-1:-1:-1;;;;;44185:16:0;;44181:183;;44218:45;44255:7;44218:36;:45::i;44181:183::-;44291:4;-1:-1:-1;;;;;44285:10:0;:2;-1:-1:-1;;;;;44285:10:0;;44281:83;;44312:40;44340:2;44344:7;44312:27;:40::i;39081:799::-;39236:4;-1:-1:-1;;;;;39257:13:0;;9867:19;:23;39253:620;;39293:72;;-1:-1:-1;;;39293:72:0;;-1:-1:-1;;;;;39293:36:0;;;;;:72;;5675:10;;39344:4;;39350:7;;39359:5;;39293:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39293:72:0;;;;;;;;-1:-1:-1;;39293:72:0;;;;;;;;;;;;:::i;:::-;;;39289:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39535:13:0;;39531:272;;39578:60;;-1:-1:-1;;;39578:60:0;;;;;;;:::i;39531:272::-;39753:6;39747:13;39738:6;39734:2;39730:15;39723:38;39289:529;-1:-1:-1;;;;;;39416:51:0;-1:-1:-1;;;39416:51:0;;-1:-1:-1;39409:58:0;;39253:620;-1:-1:-1;39857:4:0;39081:799;;;;;;:::o;35717:439::-;-1:-1:-1;;;;;35797:16:0;;35789:61;;;;-1:-1:-1;;;35789:61:0;;14919:2:1;35789:61:0;;;14901:21:1;;;14938:18;;;14931:30;14997:34;14977:18;;;14970:62;15049:18;;35789:61:0;14717:356:1;35789:61:0;33804:4;33828:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33828:16:0;:30;35861:58;;;;-1:-1:-1;;;35861:58:0;;10684:2:1;35861:58:0;;;10666:21:1;10723:2;10703:18;;;10696:30;10762;10742:18;;;10735:58;10810:18;;35861:58:0;10482:352:1;35861:58:0;35932:45;35961:1;35965:2;35969:7;35932:20;:45::i;:::-;-1:-1:-1;;;;;35990:13:0;;;;;;:9;:13;;;;;:18;;36007:1;;35990:13;:18;;36007:1;;35990:18;:::i;:::-;;;;-1:-1:-1;;36019:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36019:21:0;-1:-1:-1;;;;;36019:21:0;;;;;;;;36058:33;;36019:16;;;36058:33;;36019:16;;36058:33;52330:550;;:::o;45885:988::-;46151:22;46201:1;46176:22;46193:4;46176:16;:22::i;:::-;:26;;;;:::i;:::-;46213:18;46234:26;;;:17;:26;;;;;;46151:51;;-1:-1:-1;46367:28:0;;;46363:328;;-1:-1:-1;;;;;46434:18:0;;46412:19;46434:18;;;:12;:18;;;;;;;;:34;;;;;;;;;46485:30;;;;;;:44;;;46602:30;;:17;:30;;;;;:43;;;46363:328;-1:-1:-1;46787:26:0;;;;:17;:26;;;;;;;;46780:33;;;-1:-1:-1;;;;;46831:18:0;;;;;:12;:18;;;;;:34;;;;;;;46824:41;45885:988::o;47168:1079::-;47446:10;:17;47421:22;;47446:21;;47466:1;;47446:21;:::i;:::-;47478:18;47499:24;;;:15;:24;;;;;;47872:10;:26;;47421:46;;-1:-1:-1;47499:24:0;;47421:46;;47872:26;;;;;;:::i;:::-;;;;;;;;;47850:48;;47936:11;47911:10;47922;47911:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;48016:28;;;:15;:28;;;;;;;:41;;;48188:24;;;;;48181:31;48223:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;47239:1008;;;47168:1079;:::o;44672:221::-;44757:14;44774:20;44791:2;44774:16;:20::i;:::-;-1:-1:-1;;;;;44805:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;44850:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;44672:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:615::-;3057:6;3065;3118:2;3106:9;3097:7;3093:23;3089:32;3086:52;;;3134:1;3131;3124:12;3086:52;3174:9;3161:23;3203:18;3244:2;3236:6;3233:14;3230:34;;;3260:1;3257;3250:12;3230:34;3298:6;3287:9;3283:22;3273:32;;3343:7;3336:4;3332:2;3328:13;3324:27;3314:55;;3365:1;3362;3355:12;3314:55;3405:2;3392:16;3431:2;3423:6;3420:14;3417:34;;;3447:1;3444;3437:12;3417:34;3500:7;3495:2;3485:6;3482:1;3478:14;3474:2;3470:23;3466:32;3463:45;3460:65;;;3521:1;3518;3511:12;3460:65;3552:2;3544:11;;;;;3574:6;;-1:-1:-1;2971:615:1;;-1:-1:-1;;;;2971:615:1:o;3591:180::-;3647:6;3700:2;3688:9;3679:7;3675:23;3671:32;3668:52;;;3716:1;3713;3706:12;3668:52;3739:26;3755:9;3739:26;:::i;3776:245::-;3834:6;3887:2;3875:9;3866:7;3862:23;3858:32;3855:52;;;3903:1;3900;3893:12;3855:52;3942:9;3929:23;3961:30;3985:5;3961:30;:::i;4026:249::-;4095:6;4148:2;4136:9;4127:7;4123:23;4119:32;4116:52;;;4164:1;4161;4154:12;4116:52;4196:9;4190:16;4215:30;4239:5;4215:30;:::i;4280:450::-;4349:6;4402:2;4390:9;4381:7;4377:23;4373:32;4370:52;;;4418:1;4415;4408:12;4370:52;4458:9;4445:23;4491:18;4483:6;4480:30;4477:50;;;4523:1;4520;4513:12;4477:50;4546:22;;4599:4;4591:13;;4587:27;-1:-1:-1;4577:55:1;;4628:1;4625;4618:12;4577:55;4651:73;4716:7;4711:2;4698:16;4693:2;4689;4685:11;4651:73;:::i;4735:180::-;4794:6;4847:2;4835:9;4826:7;4822:23;4818:32;4815:52;;;4863:1;4860;4853:12;4815:52;-1:-1:-1;4886:23:1;;4735:180;-1:-1:-1;4735:180:1:o;4920:248::-;4988:6;4996;5049:2;5037:9;5028:7;5024:23;5020:32;5017:52;;;5065:1;5062;5055:12;5017:52;-1:-1:-1;;5088:23:1;;;5158:2;5143:18;;;5130:32;;-1:-1:-1;4920:248:1:o;5173:257::-;5214:3;5252:5;5246:12;5279:6;5274:3;5267:19;5295:63;5351:6;5344:4;5339:3;5335:14;5328:4;5321:5;5317:16;5295:63;:::i;:::-;5412:2;5391:15;-1:-1:-1;;5387:29:1;5378:39;;;;5419:4;5374:50;;5173:257;-1:-1:-1;;5173:257:1:o;5435:973::-;5520:12;;5485:3;;5575:1;5595:18;;;;5648;;;;5675:61;;5729:4;5721:6;5717:17;5707:27;;5675:61;5755:2;5803;5795:6;5792:14;5772:18;5769:38;5766:161;;;5849:10;5844:3;5840:20;5837:1;5830:31;5884:4;5881:1;5874:15;5912:4;5909:1;5902:15;5766:161;5943:18;5970:104;;;;6088:1;6083:319;;;;5936:466;;5970:104;-1:-1:-1;;6003:24:1;;5991:37;;6048:16;;;;-1:-1:-1;5970:104:1;;6083:319;19629:1;19622:14;;;19666:4;19653:18;;6177:1;6191:165;6205:6;6202:1;6199:13;6191:165;;;6283:14;;6270:11;;;6263:35;6326:16;;;;6220:10;;6191:165;;;6195:3;;6385:6;6380:3;6376:16;6369:23;;5936:466;;;;;;;5435:973;;;;:::o;6413:456::-;6634:3;6662:38;6696:3;6688:6;6662:38;:::i;:::-;6729:6;6723:13;6745:52;6790:6;6786:2;6779:4;6771:6;6767:17;6745:52;:::i;:::-;6813:50;6855:6;6851:2;6847:15;6839:6;6813:50;:::i;:::-;6806:57;6413:456;-1:-1:-1;;;;;;;6413:456:1:o;7292:488::-;-1:-1:-1;;;;;7561:15:1;;;7543:34;;7613:15;;7608:2;7593:18;;7586:43;7660:2;7645:18;;7638:34;;;7708:3;7703:2;7688:18;;7681:31;;;7486:4;;7729:45;;7754:19;;7746:6;7729:45;:::i;:::-;7721:53;7292:488;-1:-1:-1;;;;;;7292:488:1:o;7785:632::-;7956:2;8008:21;;;8078:13;;7981:18;;;8100:22;;;7927:4;;7956:2;8179:15;;;;8153:2;8138:18;;;7927:4;8222:169;8236:6;8233:1;8230:13;8222:169;;;8297:13;;8285:26;;8366:15;;;;8331:12;;;;8258:1;8251:9;8222:169;;;-1:-1:-1;8408:3:1;;7785:632;-1:-1:-1;;;;;;7785:632:1:o;8614:219::-;8763:2;8752:9;8745:21;8726:4;8783:44;8823:2;8812:9;8808:18;8800:6;8783:44;:::i;9250:414::-;9452:2;9434:21;;;9491:2;9471:18;;;9464:30;9530:34;9525:2;9510:18;;9503:62;-1:-1:-1;;;9596:2:1;9581:18;;9574:48;9654:3;9639:19;;9250:414::o;15900:356::-;16102:2;16084:21;;;16121:18;;;16114:30;16180:34;16175:2;16160:18;;16153:62;16247:2;16232:18;;15900:356::o;17423:413::-;17625:2;17607:21;;;17664:2;17644:18;;;17637:30;17703:34;17698:2;17683:18;;17676:62;-1:-1:-1;;;17769:2:1;17754:18;;17747:47;17826:3;17811:19;;17423:413::o;19682:128::-;19722:3;19753:1;19749:6;19746:1;19743:13;19740:39;;;19759:18;;:::i;:::-;-1:-1:-1;19795:9:1;;19682:128::o;19815:120::-;19855:1;19881;19871:35;;19886:18;;:::i;:::-;-1:-1:-1;19920:9:1;;19815:120::o;19940:168::-;19980:7;20046:1;20042;20038:6;20034:14;20031:1;20028:21;20023:1;20016:9;20009:17;20005:45;20002:71;;;20053:18;;:::i;:::-;-1:-1:-1;20093:9:1;;19940:168::o;20113:125::-;20153:4;20181:1;20178;20175:8;20172:34;;;20186:18;;:::i;:::-;-1:-1:-1;20223:9:1;;20113:125::o;20243:258::-;20315:1;20325:113;20339:6;20336:1;20333:13;20325:113;;;20415:11;;;20409:18;20396:11;;;20389:39;20361:2;20354:10;20325:113;;;20456:6;20453:1;20450:13;20447:48;;;-1:-1:-1;;20491:1:1;20473:16;;20466:27;20243:258::o;20506:380::-;20585:1;20581:12;;;;20628;;;20649:61;;20703:4;20695:6;20691:17;20681:27;;20649:61;20756:2;20748:6;20745:14;20725:18;20722:38;20719:161;;;20802:10;20797:3;20793:20;20790:1;20783:31;20837:4;20834:1;20827:15;20865:4;20862:1;20855:15;20719:161;;20506:380;;;:::o;20891:135::-;20930:3;-1:-1:-1;;20951:17:1;;20948:43;;;20971:18;;:::i;:::-;-1:-1:-1;21018:1:1;21007:13;;20891:135::o;21031:112::-;21063:1;21089;21079:35;;21094:18;;:::i;:::-;-1:-1:-1;21128:9:1;;21031:112::o;21148:127::-;21209:10;21204:3;21200:20;21197:1;21190:31;21240:4;21237:1;21230:15;21264:4;21261:1;21254:15;21280:127;21341:10;21336:3;21332:20;21329:1;21322:31;21372:4;21369:1;21362:15;21396:4;21393:1;21386:15;21412:127;21473:10;21468:3;21464:20;21461:1;21454:31;21504:4;21501:1;21494:15;21528:4;21525:1;21518:15;21544:127;21605:10;21600:3;21596:20;21593:1;21586:31;21636:4;21633:1;21626:15;21660:4;21657:1;21650:15;21676:127;21737:10;21732:3;21728:20;21725:1;21718:31;21768:4;21765:1;21758:15;21792:4;21789:1;21782:15;21808:131;-1:-1:-1;;;;;;21882:32:1;;21872:43;;21862:71;;21929:1;21926;21919:12

Swarm Source

ipfs://01a21a5360a86a0ed1cb010431b5712b5a579363213385e85c16015794889c0c
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.