ETH Price: $3,455.70 (+1.68%)

Token

NvShenDAO (NSD)
 

Overview

Max Total Supply

456 NSD

Holders

74

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
0xminter.eth
Balance
8 NSD
0xd38fbaaab882852276cf81a11d22ef586b76b8b7
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:
NvShenDAO

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// 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 v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/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 v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/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 v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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



//



pragma solidity >=0.7.0 <0.9.0;







  contract NvShenDAO is ERC721, Ownable {
  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private supply;

  string public baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;
  uint256 public preSaleCost = 0 ether;
  uint256 public cost = 0.03 ether;
  uint256 public maxSupply = 888;
  uint256 public preSaleMaxSupply = 333;
  uint256 public maxMintAmountPresale =8;
  uint256 public maxMintAmount = 8;
  uint256 public nftPerAddressLimitPresale = 88;
  uint256 public nftPerAddressLimit = 88;
  uint256 public preSaleDate = 1643500800;
  uint256 public preSaleEndDate = 1643511600;
  uint256 public publicSaleDate = 1643673600;
  bool public paused = false;
  bool public revealed = true;
  bool public onlyWhitelisted = false;
  mapping(address => bool) whitelistedAddresses;
  mapping(address => uint256) public addressMintedBalance;

 address p1 = 0x2e528359F88e478BDB2f46DA9e92d66cE1dcDcB2; // put withdraw address1 here
 address p2 = 0xe4908F4eb8d121cEDa149D0f2FF90204e0B050EB; // put withdraw address2 here
 address p3 = 0xFD3D1F08243e137fE58E1C84c993c79e2DEa0D1A; // put withdraw address2 here
  
  constructor(
    string memory _initBaseURI,
    string memory _initNotRevealedUri
  ) ERC721("NvShenDAO", "NSD") {
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
  }

  //MODIFIERS
  modifier notPaused {
    require(!paused, "the contract is paused");
    _;
  }

  modifier saleStarted {
    require(block.timestamp >= preSaleDate, "Sale has not started yet");
    _;
  }

  modifier minimumMintAmount(uint256 _mintAmount) {
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    _;
  }

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

  function presaleValidations(
    uint256 ownerTokenCount,
    uint256 _mintAmount,
    uint256 _supply
  ) internal {
    uint256 actualCost;
    block.timestamp < preSaleEndDate
      ? actualCost = preSaleCost
      : actualCost = cost;
      if (onlyWhitelisted == true) {
    require(isWhitelisted(msg.sender), "user is not whitelisted");
    require(
      ownerTokenCount + _mintAmount <= nftPerAddressLimitPresale,
      "max NFT per address exceeded for presale"
    );
    require(msg.value >= actualCost * _mintAmount, "insufficient funds");
    require(
      _mintAmount <= maxMintAmountPresale,
      "max mint amount per transaction exceeded"
    );
    require(
      supply.current() + _mintAmount <= preSaleMaxSupply,
      "max NFT presale limit exceeded"
    );}
    else {
    require(
      ownerTokenCount + _mintAmount <= nftPerAddressLimitPresale,
      "max NFT per address exceeded for presale"
    );
    require(msg.value >= actualCost * _mintAmount, "insufficient funds");
    require(
      _mintAmount <= maxMintAmountPresale,
      "max mint amount per transaction exceeded"
    );
    require(
      supply.current() + _mintAmount <= preSaleMaxSupply,
      "max NFT presale limit exceeded"
    );
    }
  }

  function publicsaleValidations(uint256 ownerTokenCount, uint256 _mintAmount)
    internal
  {
    require(
      ownerTokenCount + _mintAmount <= nftPerAddressLimit,
      "max NFT per address exceeded"
    );
    require(msg.value >= cost * _mintAmount, "insufficient funds");
    require(
      _mintAmount <= maxMintAmount,
      "max mint amount per transaction exceeded"
    );
  }

  //MINT
  function mint(uint256 _mintAmount)
    public
    payable
    notPaused
    saleStarted
    minimumMintAmount(_mintAmount)
  {
    uint256 ownerTokenCount = addressMintedBalance[msg.sender];

    //Do some validations depending on which step of the sale we are in
    block.timestamp < publicSaleDate
      ? presaleValidations(ownerTokenCount, _mintAmount, supply.current())
      : publicsaleValidations(ownerTokenCount, _mintAmount);

    require(supply.current() + _mintAmount <= maxSupply, "max NFT limit exceeded");

     _mintLoop(msg.sender, _mintAmount);
  }

   function mintForOwner(uint256 _mintAmount) public onlyOwner {
    require(!paused);
    require(_mintAmount > 0);
    require(_mintAmount <= maxMintAmount);
    require(supply.current() + _mintAmount <= maxSupply);

    _mintLoop(msg.sender, _mintAmount);
  }
  
  	function _mintLoop(address _receiver, uint256 _mintAmount) internal {
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      _safeMint(_receiver, supply.current());
    }
  }
 
  
  function gift(uint256 _mintAmount, address destination) public onlyOwner {
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    require(supply.current() + _mintAmount <= maxSupply, "max NFT limit exceeded");

   _mintLoop(msg.sender, _mintAmount);
  }

  //PUBLIC VIEWS
  function isWhitelisted(address _user) public view returns (bool) {
    return whitelistedAddresses[_user];
  }

   function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    if (!revealed) {
      return notRevealedUri;
    } else {
      string memory currentBaseURI = _baseURI();
      return
        bytes(currentBaseURI).length > 0
          ? string(
            abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)
          )
          : "";
    }
  }
  
    function totalSupply() public view returns (uint256) {
    return supply.current();
  }

  function getCurrentCost() public view returns (uint256) {
    if (block.timestamp < preSaleEndDate) {
      return preSaleCost;
    } else {
      return cost;
    }
  }

  //ONLY OWNER VIEWS
  function getBaseURI() public view onlyOwner returns (string memory) {
    return baseURI;
  }

  function getContractBalance() public view onlyOwner returns (uint256) {
    return address(this).balance;
  }

  //ONLY OWNER SETTERS
  function reveal(bool _state) public onlyOwner {
    revealed = _state;
  }

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

  function setNftPerAddressLimitPreSale(uint256 _limit) public onlyOwner {
    nftPerAddressLimitPresale = _limit;
  }

  function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
    nftPerAddressLimit = _limit;
  }

  function setPresaleCost(uint256 _newCost) public onlyOwner {
    preSaleCost = _newCost;
  }

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

  function setmaxMintAmountPreSale(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmountPresale = _newmaxMintAmount;
  }

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

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

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

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

  function setPresaleMaxSupply(uint256 _newPresaleMaxSupply) public onlyOwner {
    preSaleMaxSupply = _newPresaleMaxSupply;
  }

  function setMaxSupply(uint256 _maxSupply) public onlyOwner {
    maxSupply = _maxSupply;
  }

  function setPreSaleDate(uint256 _preSaleDate) public onlyOwner {
    preSaleDate = _preSaleDate;
  }

  function setPreSaleEndDate(uint256 _preSaleEndDate) public onlyOwner {
    preSaleEndDate = _preSaleEndDate;
  }

  function setPublicSaleDate(uint256 _publicSaleDate) public onlyOwner {
    publicSaleDate = _publicSaleDate;
  }

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

  function whitelistUsers(address[] memory addresses) public onlyOwner {
    for (uint256 i = 0; i < addresses.length; i++) {
      whitelistedAddresses[addresses[i]] = true;
    }
  }

  function withdrawAll() public payable onlyOwner {
  
        (bool success, ) = payable(msg.sender).call{value: address(this).balance * 25 / 100}("");
        require(success);
  
        uint256 _each = address(this).balance / 3;
        require(payable(p1).send(_each));
        require(payable(p2).send(_each));
        require(payable(p3).send(_each));
      }
    
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getContractBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintForOwner","outputs":[],"stateMutability":"nonpayable","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":"nftPerAddressLimitPresale","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":"preSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleEndDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimitPreSale","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":"_preSaleDate","type":"uint256"}],"name":"setPreSaleDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_preSaleEndDate","type":"uint256"}],"name":"setPreSaleEndDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setPresaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPresaleMaxSupply","type":"uint256"}],"name":"setPresaleMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicSaleDate","type":"uint256"}],"name":"setPublicSaleDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmountPreSale","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":"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":"addresses","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a0908152620000289160099190620002cd565b506000600b55666a94d74f430000600c55610378600d5561014d600e556008600f819055601055605860118190556012556361f5d5006013556361f5ff306014556361f878006015556016805462ffffff1916610100179055601980546001600160a01b0319908116732e528359f88e478bdb2f46da9e92d66ce1dcdcb217909155601a8054821673e4908f4eb8d121ceda149d0f2ff90204e0b050eb179055601b805490911673fd3d1f08243e137fe58e1c84c993c79e2dea0d1a179055348015620000f457600080fd5b506040516200352d3803806200352d83398101604081905262000117916200042a565b60408051808201825260098152684e765368656e44414f60b81b6020808301918252835180850190945260038452621394d160ea1b9084015281519192916200016391600091620002cd565b50805162000179906001906020840190620002cd565b5050506200019662000190620001b460201b60201c565b620001b8565b620001a1826200020a565b620001ac8162000272565b5050620004e7565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620002595760405162461bcd60e51b815260206004820181905260248201526000805160206200350d83398151915260448201526064015b60405180910390fd5b80516200026e906008906020840190620002cd565b5050565b6006546001600160a01b03163314620002bd5760405162461bcd60e51b815260206004820181905260248201526000805160206200350d833981519152604482015260640162000250565b80516200026e90600a9060208401905b828054620002db9062000494565b90600052602060002090601f016020900481019282620002ff57600085556200034a565b82601f106200031a57805160ff19168380011785556200034a565b828001600101855582156200034a579182015b828111156200034a5782518255916020019190600101906200032d565b50620003589291506200035c565b5090565b5b808211156200035857600081556001016200035d565b600082601f8301126200038557600080fd5b81516001600160401b0380821115620003a257620003a2620004d1565b604051601f8301601f19908116603f01168101908282118183101715620003cd57620003cd620004d1565b81604052838152602092508683858801011115620003ea57600080fd5b600091505b838210156200040e5785820183015181830184015290820190620003ef565b83821115620004205760008385830101525b9695505050505050565b600080604083850312156200043e57600080fd5b82516001600160401b03808211156200045657600080fd5b620004648683870162000373565b935060208501519150808211156200047b57600080fd5b506200048a8582860162000373565b9150509250929050565b600181811c90821680620004a957607f821691505b60208210811415620004cb57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61301680620004f76000396000f3fe6080604052600436106103ad5760003560e01c806370a08231116101e7578063a0712d681161010d578063d0eb26b0116100a0578063eced38731161006f578063eced387314610a98578063edec5f2714610aae578063f2c4ce1e14610ace578063f2fde38b14610aee57600080fd5b8063d0eb26b0146109f9578063d5abeb0114610a19578063da3ef23f14610a2f578063e985e9c514610a4f57600080fd5b8063ba7d2c76116100dc578063ba7d2c7614610998578063c6682862146109ae578063c87b56dd146109c3578063cc9ff9c6146109e357600080fd5b8063a0712d681461092f578063a18116f114610942578063a22cb46514610958578063b88d4fde1461097857600080fd5b8063831e60de116101855780638fdcf942116101545780638fdcf942146108ba578063940cd05b146108da57806395d89b41146108fa5780639c70b5121461090f57600080fd5b8063831e60de1461085f57806383a076be14610874578063853828b6146108945780638da5cb5b1461089c57600080fd5b8063743c7f6b116101c1578063743c7f6b146107f35780637967a50a146108135780637effc032146108295780637f00c7a61461083f57600080fd5b806370a08231146107a9578063714c5398146107c9578063715018a6146107de57600080fd5b80632e09282e116102d757806355f804b31161026a578063669736c011610239578063669736c01461073f5780636c0360eb1461075f5780636f8b44b0146107745780636f9fb98a1461079457600080fd5b806355f804b3146106c55780635c975abb146106e55780636352211e146106ff57806363bc312a1461071f57600080fd5b806342f0ca0d116102a657806342f0ca0d14610639578063438b63001461065957806344a0d68a1461068657806351830227146106a657600080fd5b80632e09282e146105aa5780633af32abf146105c05780633c952764146105f957806342842e0e1461061957600080fd5b80630a50716b1161034f57806318cae2691161031e57806318cae269146105315780631985cc651461055e578063239c70ae1461057457806323b872dd1461058a57600080fd5b80630a50716b146104b85780630e54a883146104d857806313faede6146104f857806318160ddd1461051c57600080fd5b8063081812fc1161038b578063081812fc1461042b578063081c8c4414610463578063095ea7b3146104785780630a403f041461049857600080fd5b806301ffc9a7146103b257806302329a29146103e757806306fdde0314610409575b600080fd5b3480156103be57600080fd5b506103d26103cd366004612a72565b610b0e565b60405190151581526020015b60405180910390f35b3480156103f357600080fd5b50610407610402366004612a57565b610b60565b005b34801561041557600080fd5b5061041e610ba6565b6040516103de9190612ca2565b34801561043757600080fd5b5061044b610446366004612af5565b610c38565b6040516001600160a01b0390911681526020016103de565b34801561046f57600080fd5b5061041e610ccd565b34801561048457600080fd5b50610407610493366004612979565b610d5b565b3480156104a457600080fd5b506104076104b3366004612af5565b610e71565b3480156104c457600080fd5b506104076104d3366004612af5565b610ea0565b3480156104e457600080fd5b506104076104f3366004612af5565b610ecf565b34801561050457600080fd5b5061050e600c5481565b6040519081526020016103de565b34801561052857600080fd5b5061050e610efe565b34801561053d57600080fd5b5061050e61054c366004612849565b60186020526000908152604090205481565b34801561056a57600080fd5b5061050e60135481565b34801561058057600080fd5b5061050e60105481565b34801561059657600080fd5b506104076105a5366004612897565b610f0e565b3480156105b657600080fd5b5061050e60115481565b3480156105cc57600080fd5b506103d26105db366004612849565b6001600160a01b031660009081526017602052604090205460ff1690565b34801561060557600080fd5b50610407610614366004612a57565b610f3f565b34801561062557600080fd5b50610407610634366004612897565b610f85565b34801561064557600080fd5b50610407610654366004612af5565b610fa0565b34801561066557600080fd5b50610679610674366004612849565b610fcf565b6040516103de9190612c5e565b34801561069257600080fd5b506104076106a1366004612af5565b6110b0565b3480156106b257600080fd5b506016546103d290610100900460ff1681565b3480156106d157600080fd5b506104076106e0366004612aac565b6110df565b3480156106f157600080fd5b506016546103d29060ff1681565b34801561070b57600080fd5b5061044b61071a366004612af5565b611120565b34801561072b57600080fd5b5061040761073a366004612af5565b611197565b34801561074b57600080fd5b5061040761075a366004612af5565b61121c565b34801561076b57600080fd5b5061041e61124b565b34801561078057600080fd5b5061040761078f366004612af5565b611258565b3480156107a057600080fd5b5061050e611287565b3480156107b557600080fd5b5061050e6107c4366004612849565b6112b9565b3480156107d557600080fd5b5061041e611340565b3480156107ea57600080fd5b5061040761137a565b3480156107ff57600080fd5b5061040761080e366004612af5565b6113b0565b34801561081f57600080fd5b5061050e60145481565b34801561083557600080fd5b5061050e600f5481565b34801561084b57600080fd5b5061040761085a366004612af5565b6113df565b34801561086b57600080fd5b5061050e61140e565b34801561088057600080fd5b5061040761088f366004612b0e565b611428565b61040761150a565b3480156108a857600080fd5b506006546001600160a01b031661044b565b3480156108c657600080fd5b506104076108d5366004612af5565b611641565b3480156108e657600080fd5b506104076108f5366004612a57565b611670565b34801561090657600080fd5b5061041e6116b4565b34801561091b57600080fd5b506016546103d29062010000900460ff1681565b61040761093d366004612af5565b6116c3565b34801561094e57600080fd5b5061050e600e5481565b34801561096457600080fd5b5061040761097336600461294f565b611855565b34801561098457600080fd5b506104076109933660046128d3565b611860565b3480156109a457600080fd5b5061050e60125481565b3480156109ba57600080fd5b5061041e611898565b3480156109cf57600080fd5b5061041e6109de366004612af5565b6118a5565b3480156109ef57600080fd5b5061050e600b5481565b348015610a0557600080fd5b50610407610a14366004612af5565b611a29565b348015610a2557600080fd5b5061050e600d5481565b348015610a3b57600080fd5b50610407610a4a366004612aac565b611a58565b348015610a5b57600080fd5b506103d2610a6a366004612864565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610aa457600080fd5b5061050e60155481565b348015610aba57600080fd5b50610407610ac93660046129a3565b611a95565b348015610ada57600080fd5b50610407610ae9366004612aac565b611b27565b348015610afa57600080fd5b50610407610b09366004612849565b611b64565b60006001600160e01b031982166380ac58cd60e01b1480610b3f57506001600160e01b03198216635b5e139f60e01b145b80610b5a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b03163314610b935760405162461bcd60e51b8152600401610b8a90612d4f565b60405180910390fd5b6016805460ff1916911515919091179055565b606060008054610bb590612f08565b80601f0160208091040260200160405190810160405280929190818152602001828054610be190612f08565b8015610c2e5780601f10610c0357610100808354040283529160200191610c2e565b820191906000526020600020905b815481529060010190602001808311610c1157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610cb15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b8a565b506000908152600460205260409020546001600160a01b031690565b600a8054610cda90612f08565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0690612f08565b8015610d535780601f10610d2857610100808354040283529160200191610d53565b820191906000526020600020905b815481529060010190602001808311610d3657829003601f168201915b505050505081565b6000610d6682611120565b9050806001600160a01b0316836001600160a01b03161415610dd45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b8a565b336001600160a01b0382161480610df05750610df08133610a6a565b610e625760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b8a565b610e6c8383611bfc565b505050565b6006546001600160a01b03163314610e9b5760405162461bcd60e51b8152600401610b8a90612d4f565b600e55565b6006546001600160a01b03163314610eca5760405162461bcd60e51b8152600401610b8a90612d4f565b601155565b6006546001600160a01b03163314610ef95760405162461bcd60e51b8152600401610b8a90612d4f565b601555565b6000610f0960075490565b905090565b610f183382611c6a565b610f345760405162461bcd60e51b8152600401610b8a90612df8565b610e6c838383611d61565b6006546001600160a01b03163314610f695760405162461bcd60e51b8152600401610b8a90612d4f565b60168054911515620100000262ff000019909216919091179055565b610e6c83838360405180602001604052806000815250611860565b6006546001600160a01b03163314610fca5760405162461bcd60e51b8152600401610b8a90612d4f565b601455565b60606000610fdc836112b9565b905060008167ffffffffffffffff811115610ff957610ff9612fb4565b604051908082528060200260200182016040528015611022578160200160208202803683370190505b509050600160005b838110801561103b5750600d548211155b156110a657600061104b83611120565b9050866001600160a01b0316816001600160a01b03161415611093578284838151811061107a5761107a612f9e565b60209081029190910101528161108f81612f43565b9250505b8261109d81612f43565b9350505061102a565b5090949350505050565b6006546001600160a01b031633146110da5760405162461bcd60e51b8152600401610b8a90612d4f565b600c55565b6006546001600160a01b031633146111095760405162461bcd60e51b8152600401610b8a90612d4f565b805161111c906008906020840190612731565b5050565b6000818152600260205260408120546001600160a01b031680610b5a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610b8a565b6006546001600160a01b031633146111c15760405162461bcd60e51b8152600401610b8a90612d4f565b60165460ff16156111d157600080fd5b600081116111de57600080fd5b6010548111156111ed57600080fd5b600d54816111fa60075490565b6112049190612e7a565b111561120f57600080fd5b6112193382611f01565b50565b6006546001600160a01b031633146112465760405162461bcd60e51b8152600401610b8a90612d4f565b600f55565b60088054610cda90612f08565b6006546001600160a01b031633146112825760405162461bcd60e51b8152600401610b8a90612d4f565b600d55565b6006546000906001600160a01b031633146112b45760405162461bcd60e51b8152600401610b8a90612d4f565b504790565b60006001600160a01b0382166113245760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610b8a565b506001600160a01b031660009081526003602052604090205490565b6006546060906001600160a01b0316331461136d5760405162461bcd60e51b8152600401610b8a90612d4f565b60088054610bb590612f08565b6006546001600160a01b031633146113a45760405162461bcd60e51b8152600401610b8a90612d4f565b6113ae6000611f3e565b565b6006546001600160a01b031633146113da5760405162461bcd60e51b8152600401610b8a90612d4f565b601355565b6006546001600160a01b031633146114095760405162461bcd60e51b8152600401610b8a90612d4f565b601055565b60006014544210156114215750600b5490565b50600c5490565b6006546001600160a01b031633146114525760405162461bcd60e51b8152600401610b8a90612d4f565b600082116114a25760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610b8a565b600d54826114af60075490565b6114b99190612e7a565b11156115005760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610b8a565b61111c3383611f01565b6006546001600160a01b031633146115345760405162461bcd60e51b8152600401610b8a90612d4f565b6000336064611544476019612ea6565b61154e9190612e92565b604051600081818185875af1925050503d806000811461158a576040519150601f19603f3d011682016040523d82523d6000602084013e61158f565b606091505b505090508061159d57600080fd5b60006115aa600347612e92565b6019546040519192506001600160a01b03169082156108fc029083906000818181858888f193505050506115dd57600080fd5b601a546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505061160f57600080fd5b601b546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505061111c57600080fd5b6006546001600160a01b0316331461166b5760405162461bcd60e51b8152600401610b8a90612d4f565b600b55565b6006546001600160a01b0316331461169a5760405162461bcd60e51b8152600401610b8a90612d4f565b601680549115156101000261ff0019909216919091179055565b606060018054610bb590612f08565b60165460ff161561170f5760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610b8a565b6013544210156117615760405162461bcd60e51b815260206004820152601860248201527f53616c6520686173206e6f7420737461727465642079657400000000000000006044820152606401610b8a565b80600081116117b25760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610b8a565b3360009081526018602052604090205460155442106117da576117d58184611f90565b6117ed565b6117ed81846117e860075490565b61203a565b600d54836117fa60075490565b6118049190612e7a565b111561184b5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610b8a565b610e6c3384611f01565b61111c338383612286565b61186a3383611c6a565b6118865760405162461bcd60e51b8152600401610b8a90612df8565b61189284848484612355565b50505050565b60098054610cda90612f08565b6000818152600260205260409020546060906001600160a01b03166119245760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b8a565b601654610100900460ff166119c557600a805461194090612f08565b80601f016020809104026020016040519081016040528092919081815260200182805461196c90612f08565b80156119b95780601f1061198e576101008083540402835291602001916119b9565b820191906000526020600020905b81548152906001019060200180831161199c57829003601f168201915b50505050509050919050565b60006119cf612388565b905060008151116119ef5760405180602001604052806000815250611a1d565b806119f984612397565b6009604051602001611a0d93929190612b5d565b6040516020818303038152906040525b9392505050565b919050565b6006546001600160a01b03163314611a535760405162461bcd60e51b8152600401610b8a90612d4f565b601255565b6006546001600160a01b03163314611a825760405162461bcd60e51b8152600401610b8a90612d4f565b805161111c906009906020840190612731565b6006546001600160a01b03163314611abf5760405162461bcd60e51b8152600401610b8a90612d4f565b60005b815181101561111c57600160176000848481518110611ae357611ae3612f9e565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580611b1f81612f43565b915050611ac2565b6006546001600160a01b03163314611b515760405162461bcd60e51b8152600401610b8a90612d4f565b805161111c90600a906020840190612731565b6006546001600160a01b03163314611b8e5760405162461bcd60e51b8152600401610b8a90612d4f565b6001600160a01b038116611bf35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b8a565b61121981611f3e565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611c3182611120565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611ce35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b8a565b6000611cee83611120565b9050806001600160a01b0316846001600160a01b03161480611d295750836001600160a01b0316611d1e84610c38565b6001600160a01b0316145b80611d5957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611d7482611120565b6001600160a01b031614611ddc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610b8a565b6001600160a01b038216611e3e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b8a565b611e49600082611bfc565b6001600160a01b0383166000908152600360205260408120805460019290611e72908490612ec5565b90915550506001600160a01b0382166000908152600360205260408120805460019290611ea0908490612e7a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60005b81811015610e6c57611f1a600780546001019055565b611f2c83611f2760075490565b612495565b80611f3681612f43565b915050611f04565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b601254611f9d8284612e7a565b1115611feb5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610b8a565b80600c54611ff99190612ea6565b3410156120185760405162461bcd60e51b8152600401610b8a90612d84565b60105481111561111c5760405162461bcd60e51b8152600401610b8a90612d07565b6000601454421061204f5750600c5480612055565b50600b54805b5060165462010000900460ff161515600114156121ab573360009081526017602052604090205460ff166120cb5760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610b8a565b6011546120d88486612e7a565b11156120f65760405162461bcd60e51b8152600401610b8a90612db0565b6121008382612ea6565b34101561211f5760405162461bcd60e51b8152600401610b8a90612d84565b600f548311156121415760405162461bcd60e51b8152600401610b8a90612d07565b600e548361214e60075490565b6121589190612e7a565b11156121a65760405162461bcd60e51b815260206004820152601e60248201527f6d6178204e46542070726573616c65206c696d697420657863656564656400006044820152606401610b8a565b611892565b6011546121b88486612e7a565b11156121d65760405162461bcd60e51b8152600401610b8a90612db0565b6121e08382612ea6565b3410156121ff5760405162461bcd60e51b8152600401610b8a90612d84565b600f548311156122215760405162461bcd60e51b8152600401610b8a90612d07565b600e548361222e60075490565b6122389190612e7a565b11156118925760405162461bcd60e51b815260206004820152601e60248201527f6d6178204e46542070726573616c65206c696d697420657863656564656400006044820152606401610b8a565b816001600160a01b0316836001600160a01b031614156122e85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b8a565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612360848484611d61565b61236c848484846124af565b6118925760405162461bcd60e51b8152600401610b8a90612cb5565b606060088054610bb590612f08565b6060816123bb5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156123e557806123cf81612f43565b91506123de9050600a83612e92565b91506123bf565b60008167ffffffffffffffff81111561240057612400612fb4565b6040519080825280601f01601f19166020018201604052801561242a576020820181803683370190505b5090505b8415611d595761243f600183612ec5565b915061244c600a86612f5e565b612457906030612e7a565b60f81b81838151811061246c5761246c612f9e565b60200101906001600160f81b031916908160001a90535061248e600a86612e92565b945061242e565b61111c8282604051806020016040528060008152506125bc565b60006001600160a01b0384163b156125b157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906124f3903390899088908890600401612c21565b602060405180830381600087803b15801561250d57600080fd5b505af192505050801561253d575060408051601f3d908101601f1916820190925261253a91810190612a8f565b60015b612597573d80801561256b576040519150601f19603f3d011682016040523d82523d6000602084013e612570565b606091505b50805161258f5760405162461bcd60e51b8152600401610b8a90612cb5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d59565b506001949350505050565b6125c683836125ef565b6125d360008484846124af565b610e6c5760405162461bcd60e51b8152600401610b8a90612cb5565b6001600160a01b0382166126455760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b8a565b6000818152600260205260409020546001600160a01b0316156126aa5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b8a565b6001600160a01b03821660009081526003602052604081208054600192906126d3908490612e7a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461273d90612f08565b90600052602060002090601f01602090048101928261275f57600085556127a5565b82601f1061277857805160ff19168380011785556127a5565b828001600101855582156127a5579182015b828111156127a557825182559160200191906001019061278a565b506127b19291506127b5565b5090565b5b808211156127b157600081556001016127b6565b600067ffffffffffffffff8311156127e4576127e4612fb4565b6127f7601f8401601f1916602001612e49565b905082815283838301111561280b57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611a2457600080fd5b80358015158114611a2457600080fd5b60006020828403121561285b57600080fd5b611a1d82612822565b6000806040838503121561287757600080fd5b61288083612822565b915061288e60208401612822565b90509250929050565b6000806000606084860312156128ac57600080fd5b6128b584612822565b92506128c360208501612822565b9150604084013590509250925092565b600080600080608085870312156128e957600080fd5b6128f285612822565b935061290060208601612822565b925060408501359150606085013567ffffffffffffffff81111561292357600080fd5b8501601f8101871361293457600080fd5b612943878235602084016127ca565b91505092959194509250565b6000806040838503121561296257600080fd5b61296b83612822565b915061288e60208401612839565b6000806040838503121561298c57600080fd5b61299583612822565b946020939093013593505050565b600060208083850312156129b657600080fd5b823567ffffffffffffffff808211156129ce57600080fd5b818501915085601f8301126129e257600080fd5b8135818111156129f4576129f4612fb4565b8060051b9150612a05848301612e49565b8181528481019084860184860187018a1015612a2057600080fd5b600095505b83861015612a4a57612a3681612822565b835260019590950194918601918601612a25565b5098975050505050505050565b600060208284031215612a6957600080fd5b611a1d82612839565b600060208284031215612a8457600080fd5b8135611a1d81612fca565b600060208284031215612aa157600080fd5b8151611a1d81612fca565b600060208284031215612abe57600080fd5b813567ffffffffffffffff811115612ad557600080fd5b8201601f81018413612ae657600080fd5b611d59848235602084016127ca565b600060208284031215612b0757600080fd5b5035919050565b60008060408385031215612b2157600080fd5b8235915061288e60208401612822565b60008151808452612b49816020860160208601612edc565b601f01601f19169290920160200192915050565b600084516020612b708285838a01612edc565b855191840191612b838184848a01612edc565b8554920191600090600181811c9080831680612ba057607f831692505b858310811415612bbe57634e487b7160e01b85526022600452602485fd5b808015612bd25760018114612be357612c10565b60ff19851688528388019550612c10565b60008b81526020902060005b85811015612c085781548a820152908401908801612bef565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c5490830184612b31565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612c9657835183529284019291840191600101612c7a565b50909695505050505050565b602081526000611a1d6020830184612b31565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526028908201527f6d6178206d696e7420616d6f756e7420706572207472616e73616374696f6e20604082015267195e18d95959195960c21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b602080825260129082015271696e73756666696369656e742066756e647360701b604082015260600190565b60208082526028908201527f6d6178204e465420706572206164647265737320657863656564656420666f726040820152672070726573616c6560c01b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612e7257612e72612fb4565b604052919050565b60008219821115612e8d57612e8d612f72565b500190565b600082612ea157612ea1612f88565b500490565b6000816000190483118215151615612ec057612ec0612f72565b500290565b600082821015612ed757612ed7612f72565b500390565b60005b83811015612ef7578181015183820152602001612edf565b838111156118925750506000910152565b600181811c90821680612f1c57607f821691505b60208210811415612f3d57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612f5757612f57612f72565b5060010190565b600082612f6d57612f6d612f88565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461121957600080fdfea26469706673582212206a4841670dc8f3f5f2cc9fa575eb44734da71dba1bfbaa07500ebf38d6c46f7a64736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d56394b63424437377170704e436162656365706334504a614e694e454b3543704248386739765365715535782f000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103ad5760003560e01c806370a08231116101e7578063a0712d681161010d578063d0eb26b0116100a0578063eced38731161006f578063eced387314610a98578063edec5f2714610aae578063f2c4ce1e14610ace578063f2fde38b14610aee57600080fd5b8063d0eb26b0146109f9578063d5abeb0114610a19578063da3ef23f14610a2f578063e985e9c514610a4f57600080fd5b8063ba7d2c76116100dc578063ba7d2c7614610998578063c6682862146109ae578063c87b56dd146109c3578063cc9ff9c6146109e357600080fd5b8063a0712d681461092f578063a18116f114610942578063a22cb46514610958578063b88d4fde1461097857600080fd5b8063831e60de116101855780638fdcf942116101545780638fdcf942146108ba578063940cd05b146108da57806395d89b41146108fa5780639c70b5121461090f57600080fd5b8063831e60de1461085f57806383a076be14610874578063853828b6146108945780638da5cb5b1461089c57600080fd5b8063743c7f6b116101c1578063743c7f6b146107f35780637967a50a146108135780637effc032146108295780637f00c7a61461083f57600080fd5b806370a08231146107a9578063714c5398146107c9578063715018a6146107de57600080fd5b80632e09282e116102d757806355f804b31161026a578063669736c011610239578063669736c01461073f5780636c0360eb1461075f5780636f8b44b0146107745780636f9fb98a1461079457600080fd5b806355f804b3146106c55780635c975abb146106e55780636352211e146106ff57806363bc312a1461071f57600080fd5b806342f0ca0d116102a657806342f0ca0d14610639578063438b63001461065957806344a0d68a1461068657806351830227146106a657600080fd5b80632e09282e146105aa5780633af32abf146105c05780633c952764146105f957806342842e0e1461061957600080fd5b80630a50716b1161034f57806318cae2691161031e57806318cae269146105315780631985cc651461055e578063239c70ae1461057457806323b872dd1461058a57600080fd5b80630a50716b146104b85780630e54a883146104d857806313faede6146104f857806318160ddd1461051c57600080fd5b8063081812fc1161038b578063081812fc1461042b578063081c8c4414610463578063095ea7b3146104785780630a403f041461049857600080fd5b806301ffc9a7146103b257806302329a29146103e757806306fdde0314610409575b600080fd5b3480156103be57600080fd5b506103d26103cd366004612a72565b610b0e565b60405190151581526020015b60405180910390f35b3480156103f357600080fd5b50610407610402366004612a57565b610b60565b005b34801561041557600080fd5b5061041e610ba6565b6040516103de9190612ca2565b34801561043757600080fd5b5061044b610446366004612af5565b610c38565b6040516001600160a01b0390911681526020016103de565b34801561046f57600080fd5b5061041e610ccd565b34801561048457600080fd5b50610407610493366004612979565b610d5b565b3480156104a457600080fd5b506104076104b3366004612af5565b610e71565b3480156104c457600080fd5b506104076104d3366004612af5565b610ea0565b3480156104e457600080fd5b506104076104f3366004612af5565b610ecf565b34801561050457600080fd5b5061050e600c5481565b6040519081526020016103de565b34801561052857600080fd5b5061050e610efe565b34801561053d57600080fd5b5061050e61054c366004612849565b60186020526000908152604090205481565b34801561056a57600080fd5b5061050e60135481565b34801561058057600080fd5b5061050e60105481565b34801561059657600080fd5b506104076105a5366004612897565b610f0e565b3480156105b657600080fd5b5061050e60115481565b3480156105cc57600080fd5b506103d26105db366004612849565b6001600160a01b031660009081526017602052604090205460ff1690565b34801561060557600080fd5b50610407610614366004612a57565b610f3f565b34801561062557600080fd5b50610407610634366004612897565b610f85565b34801561064557600080fd5b50610407610654366004612af5565b610fa0565b34801561066557600080fd5b50610679610674366004612849565b610fcf565b6040516103de9190612c5e565b34801561069257600080fd5b506104076106a1366004612af5565b6110b0565b3480156106b257600080fd5b506016546103d290610100900460ff1681565b3480156106d157600080fd5b506104076106e0366004612aac565b6110df565b3480156106f157600080fd5b506016546103d29060ff1681565b34801561070b57600080fd5b5061044b61071a366004612af5565b611120565b34801561072b57600080fd5b5061040761073a366004612af5565b611197565b34801561074b57600080fd5b5061040761075a366004612af5565b61121c565b34801561076b57600080fd5b5061041e61124b565b34801561078057600080fd5b5061040761078f366004612af5565b611258565b3480156107a057600080fd5b5061050e611287565b3480156107b557600080fd5b5061050e6107c4366004612849565b6112b9565b3480156107d557600080fd5b5061041e611340565b3480156107ea57600080fd5b5061040761137a565b3480156107ff57600080fd5b5061040761080e366004612af5565b6113b0565b34801561081f57600080fd5b5061050e60145481565b34801561083557600080fd5b5061050e600f5481565b34801561084b57600080fd5b5061040761085a366004612af5565b6113df565b34801561086b57600080fd5b5061050e61140e565b34801561088057600080fd5b5061040761088f366004612b0e565b611428565b61040761150a565b3480156108a857600080fd5b506006546001600160a01b031661044b565b3480156108c657600080fd5b506104076108d5366004612af5565b611641565b3480156108e657600080fd5b506104076108f5366004612a57565b611670565b34801561090657600080fd5b5061041e6116b4565b34801561091b57600080fd5b506016546103d29062010000900460ff1681565b61040761093d366004612af5565b6116c3565b34801561094e57600080fd5b5061050e600e5481565b34801561096457600080fd5b5061040761097336600461294f565b611855565b34801561098457600080fd5b506104076109933660046128d3565b611860565b3480156109a457600080fd5b5061050e60125481565b3480156109ba57600080fd5b5061041e611898565b3480156109cf57600080fd5b5061041e6109de366004612af5565b6118a5565b3480156109ef57600080fd5b5061050e600b5481565b348015610a0557600080fd5b50610407610a14366004612af5565b611a29565b348015610a2557600080fd5b5061050e600d5481565b348015610a3b57600080fd5b50610407610a4a366004612aac565b611a58565b348015610a5b57600080fd5b506103d2610a6a366004612864565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610aa457600080fd5b5061050e60155481565b348015610aba57600080fd5b50610407610ac93660046129a3565b611a95565b348015610ada57600080fd5b50610407610ae9366004612aac565b611b27565b348015610afa57600080fd5b50610407610b09366004612849565b611b64565b60006001600160e01b031982166380ac58cd60e01b1480610b3f57506001600160e01b03198216635b5e139f60e01b145b80610b5a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b03163314610b935760405162461bcd60e51b8152600401610b8a90612d4f565b60405180910390fd5b6016805460ff1916911515919091179055565b606060008054610bb590612f08565b80601f0160208091040260200160405190810160405280929190818152602001828054610be190612f08565b8015610c2e5780601f10610c0357610100808354040283529160200191610c2e565b820191906000526020600020905b815481529060010190602001808311610c1157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610cb15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b8a565b506000908152600460205260409020546001600160a01b031690565b600a8054610cda90612f08565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0690612f08565b8015610d535780601f10610d2857610100808354040283529160200191610d53565b820191906000526020600020905b815481529060010190602001808311610d3657829003601f168201915b505050505081565b6000610d6682611120565b9050806001600160a01b0316836001600160a01b03161415610dd45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b8a565b336001600160a01b0382161480610df05750610df08133610a6a565b610e625760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b8a565b610e6c8383611bfc565b505050565b6006546001600160a01b03163314610e9b5760405162461bcd60e51b8152600401610b8a90612d4f565b600e55565b6006546001600160a01b03163314610eca5760405162461bcd60e51b8152600401610b8a90612d4f565b601155565b6006546001600160a01b03163314610ef95760405162461bcd60e51b8152600401610b8a90612d4f565b601555565b6000610f0960075490565b905090565b610f183382611c6a565b610f345760405162461bcd60e51b8152600401610b8a90612df8565b610e6c838383611d61565b6006546001600160a01b03163314610f695760405162461bcd60e51b8152600401610b8a90612d4f565b60168054911515620100000262ff000019909216919091179055565b610e6c83838360405180602001604052806000815250611860565b6006546001600160a01b03163314610fca5760405162461bcd60e51b8152600401610b8a90612d4f565b601455565b60606000610fdc836112b9565b905060008167ffffffffffffffff811115610ff957610ff9612fb4565b604051908082528060200260200182016040528015611022578160200160208202803683370190505b509050600160005b838110801561103b5750600d548211155b156110a657600061104b83611120565b9050866001600160a01b0316816001600160a01b03161415611093578284838151811061107a5761107a612f9e565b60209081029190910101528161108f81612f43565b9250505b8261109d81612f43565b9350505061102a565b5090949350505050565b6006546001600160a01b031633146110da5760405162461bcd60e51b8152600401610b8a90612d4f565b600c55565b6006546001600160a01b031633146111095760405162461bcd60e51b8152600401610b8a90612d4f565b805161111c906008906020840190612731565b5050565b6000818152600260205260408120546001600160a01b031680610b5a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610b8a565b6006546001600160a01b031633146111c15760405162461bcd60e51b8152600401610b8a90612d4f565b60165460ff16156111d157600080fd5b600081116111de57600080fd5b6010548111156111ed57600080fd5b600d54816111fa60075490565b6112049190612e7a565b111561120f57600080fd5b6112193382611f01565b50565b6006546001600160a01b031633146112465760405162461bcd60e51b8152600401610b8a90612d4f565b600f55565b60088054610cda90612f08565b6006546001600160a01b031633146112825760405162461bcd60e51b8152600401610b8a90612d4f565b600d55565b6006546000906001600160a01b031633146112b45760405162461bcd60e51b8152600401610b8a90612d4f565b504790565b60006001600160a01b0382166113245760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610b8a565b506001600160a01b031660009081526003602052604090205490565b6006546060906001600160a01b0316331461136d5760405162461bcd60e51b8152600401610b8a90612d4f565b60088054610bb590612f08565b6006546001600160a01b031633146113a45760405162461bcd60e51b8152600401610b8a90612d4f565b6113ae6000611f3e565b565b6006546001600160a01b031633146113da5760405162461bcd60e51b8152600401610b8a90612d4f565b601355565b6006546001600160a01b031633146114095760405162461bcd60e51b8152600401610b8a90612d4f565b601055565b60006014544210156114215750600b5490565b50600c5490565b6006546001600160a01b031633146114525760405162461bcd60e51b8152600401610b8a90612d4f565b600082116114a25760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610b8a565b600d54826114af60075490565b6114b99190612e7a565b11156115005760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610b8a565b61111c3383611f01565b6006546001600160a01b031633146115345760405162461bcd60e51b8152600401610b8a90612d4f565b6000336064611544476019612ea6565b61154e9190612e92565b604051600081818185875af1925050503d806000811461158a576040519150601f19603f3d011682016040523d82523d6000602084013e61158f565b606091505b505090508061159d57600080fd5b60006115aa600347612e92565b6019546040519192506001600160a01b03169082156108fc029083906000818181858888f193505050506115dd57600080fd5b601a546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505061160f57600080fd5b601b546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505061111c57600080fd5b6006546001600160a01b0316331461166b5760405162461bcd60e51b8152600401610b8a90612d4f565b600b55565b6006546001600160a01b0316331461169a5760405162461bcd60e51b8152600401610b8a90612d4f565b601680549115156101000261ff0019909216919091179055565b606060018054610bb590612f08565b60165460ff161561170f5760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610b8a565b6013544210156117615760405162461bcd60e51b815260206004820152601860248201527f53616c6520686173206e6f7420737461727465642079657400000000000000006044820152606401610b8a565b80600081116117b25760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610b8a565b3360009081526018602052604090205460155442106117da576117d58184611f90565b6117ed565b6117ed81846117e860075490565b61203a565b600d54836117fa60075490565b6118049190612e7a565b111561184b5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610b8a565b610e6c3384611f01565b61111c338383612286565b61186a3383611c6a565b6118865760405162461bcd60e51b8152600401610b8a90612df8565b61189284848484612355565b50505050565b60098054610cda90612f08565b6000818152600260205260409020546060906001600160a01b03166119245760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b8a565b601654610100900460ff166119c557600a805461194090612f08565b80601f016020809104026020016040519081016040528092919081815260200182805461196c90612f08565b80156119b95780601f1061198e576101008083540402835291602001916119b9565b820191906000526020600020905b81548152906001019060200180831161199c57829003601f168201915b50505050509050919050565b60006119cf612388565b905060008151116119ef5760405180602001604052806000815250611a1d565b806119f984612397565b6009604051602001611a0d93929190612b5d565b6040516020818303038152906040525b9392505050565b919050565b6006546001600160a01b03163314611a535760405162461bcd60e51b8152600401610b8a90612d4f565b601255565b6006546001600160a01b03163314611a825760405162461bcd60e51b8152600401610b8a90612d4f565b805161111c906009906020840190612731565b6006546001600160a01b03163314611abf5760405162461bcd60e51b8152600401610b8a90612d4f565b60005b815181101561111c57600160176000848481518110611ae357611ae3612f9e565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580611b1f81612f43565b915050611ac2565b6006546001600160a01b03163314611b515760405162461bcd60e51b8152600401610b8a90612d4f565b805161111c90600a906020840190612731565b6006546001600160a01b03163314611b8e5760405162461bcd60e51b8152600401610b8a90612d4f565b6001600160a01b038116611bf35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b8a565b61121981611f3e565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611c3182611120565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611ce35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b8a565b6000611cee83611120565b9050806001600160a01b0316846001600160a01b03161480611d295750836001600160a01b0316611d1e84610c38565b6001600160a01b0316145b80611d5957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611d7482611120565b6001600160a01b031614611ddc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610b8a565b6001600160a01b038216611e3e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b8a565b611e49600082611bfc565b6001600160a01b0383166000908152600360205260408120805460019290611e72908490612ec5565b90915550506001600160a01b0382166000908152600360205260408120805460019290611ea0908490612e7a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60005b81811015610e6c57611f1a600780546001019055565b611f2c83611f2760075490565b612495565b80611f3681612f43565b915050611f04565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b601254611f9d8284612e7a565b1115611feb5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610b8a565b80600c54611ff99190612ea6565b3410156120185760405162461bcd60e51b8152600401610b8a90612d84565b60105481111561111c5760405162461bcd60e51b8152600401610b8a90612d07565b6000601454421061204f5750600c5480612055565b50600b54805b5060165462010000900460ff161515600114156121ab573360009081526017602052604090205460ff166120cb5760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610b8a565b6011546120d88486612e7a565b11156120f65760405162461bcd60e51b8152600401610b8a90612db0565b6121008382612ea6565b34101561211f5760405162461bcd60e51b8152600401610b8a90612d84565b600f548311156121415760405162461bcd60e51b8152600401610b8a90612d07565b600e548361214e60075490565b6121589190612e7a565b11156121a65760405162461bcd60e51b815260206004820152601e60248201527f6d6178204e46542070726573616c65206c696d697420657863656564656400006044820152606401610b8a565b611892565b6011546121b88486612e7a565b11156121d65760405162461bcd60e51b8152600401610b8a90612db0565b6121e08382612ea6565b3410156121ff5760405162461bcd60e51b8152600401610b8a90612d84565b600f548311156122215760405162461bcd60e51b8152600401610b8a90612d07565b600e548361222e60075490565b6122389190612e7a565b11156118925760405162461bcd60e51b815260206004820152601e60248201527f6d6178204e46542070726573616c65206c696d697420657863656564656400006044820152606401610b8a565b816001600160a01b0316836001600160a01b031614156122e85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b8a565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612360848484611d61565b61236c848484846124af565b6118925760405162461bcd60e51b8152600401610b8a90612cb5565b606060088054610bb590612f08565b6060816123bb5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156123e557806123cf81612f43565b91506123de9050600a83612e92565b91506123bf565b60008167ffffffffffffffff81111561240057612400612fb4565b6040519080825280601f01601f19166020018201604052801561242a576020820181803683370190505b5090505b8415611d595761243f600183612ec5565b915061244c600a86612f5e565b612457906030612e7a565b60f81b81838151811061246c5761246c612f9e565b60200101906001600160f81b031916908160001a90535061248e600a86612e92565b945061242e565b61111c8282604051806020016040528060008152506125bc565b60006001600160a01b0384163b156125b157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906124f3903390899088908890600401612c21565b602060405180830381600087803b15801561250d57600080fd5b505af192505050801561253d575060408051601f3d908101601f1916820190925261253a91810190612a8f565b60015b612597573d80801561256b576040519150601f19603f3d011682016040523d82523d6000602084013e612570565b606091505b50805161258f5760405162461bcd60e51b8152600401610b8a90612cb5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d59565b506001949350505050565b6125c683836125ef565b6125d360008484846124af565b610e6c5760405162461bcd60e51b8152600401610b8a90612cb5565b6001600160a01b0382166126455760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b8a565b6000818152600260205260409020546001600160a01b0316156126aa5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b8a565b6001600160a01b03821660009081526003602052604081208054600192906126d3908490612e7a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461273d90612f08565b90600052602060002090601f01602090048101928261275f57600085556127a5565b82601f1061277857805160ff19168380011785556127a5565b828001600101855582156127a5579182015b828111156127a557825182559160200191906001019061278a565b506127b19291506127b5565b5090565b5b808211156127b157600081556001016127b6565b600067ffffffffffffffff8311156127e4576127e4612fb4565b6127f7601f8401601f1916602001612e49565b905082815283838301111561280b57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611a2457600080fd5b80358015158114611a2457600080fd5b60006020828403121561285b57600080fd5b611a1d82612822565b6000806040838503121561287757600080fd5b61288083612822565b915061288e60208401612822565b90509250929050565b6000806000606084860312156128ac57600080fd5b6128b584612822565b92506128c360208501612822565b9150604084013590509250925092565b600080600080608085870312156128e957600080fd5b6128f285612822565b935061290060208601612822565b925060408501359150606085013567ffffffffffffffff81111561292357600080fd5b8501601f8101871361293457600080fd5b612943878235602084016127ca565b91505092959194509250565b6000806040838503121561296257600080fd5b61296b83612822565b915061288e60208401612839565b6000806040838503121561298c57600080fd5b61299583612822565b946020939093013593505050565b600060208083850312156129b657600080fd5b823567ffffffffffffffff808211156129ce57600080fd5b818501915085601f8301126129e257600080fd5b8135818111156129f4576129f4612fb4565b8060051b9150612a05848301612e49565b8181528481019084860184860187018a1015612a2057600080fd5b600095505b83861015612a4a57612a3681612822565b835260019590950194918601918601612a25565b5098975050505050505050565b600060208284031215612a6957600080fd5b611a1d82612839565b600060208284031215612a8457600080fd5b8135611a1d81612fca565b600060208284031215612aa157600080fd5b8151611a1d81612fca565b600060208284031215612abe57600080fd5b813567ffffffffffffffff811115612ad557600080fd5b8201601f81018413612ae657600080fd5b611d59848235602084016127ca565b600060208284031215612b0757600080fd5b5035919050565b60008060408385031215612b2157600080fd5b8235915061288e60208401612822565b60008151808452612b49816020860160208601612edc565b601f01601f19169290920160200192915050565b600084516020612b708285838a01612edc565b855191840191612b838184848a01612edc565b8554920191600090600181811c9080831680612ba057607f831692505b858310811415612bbe57634e487b7160e01b85526022600452602485fd5b808015612bd25760018114612be357612c10565b60ff19851688528388019550612c10565b60008b81526020902060005b85811015612c085781548a820152908401908801612bef565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c5490830184612b31565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612c9657835183529284019291840191600101612c7a565b50909695505050505050565b602081526000611a1d6020830184612b31565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526028908201527f6d6178206d696e7420616d6f756e7420706572207472616e73616374696f6e20604082015267195e18d95959195960c21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b602080825260129082015271696e73756666696369656e742066756e647360701b604082015260600190565b60208082526028908201527f6d6178204e465420706572206164647265737320657863656564656420666f726040820152672070726573616c6560c01b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612e7257612e72612fb4565b604052919050565b60008219821115612e8d57612e8d612f72565b500190565b600082612ea157612ea1612f88565b500490565b6000816000190483118215151615612ec057612ec0612f72565b500290565b600082821015612ed757612ed7612f72565b500390565b60005b83811015612ef7578181015183820152602001612edf565b838111156118925750506000910152565b600181811c90821680612f1c57607f821691505b60208210811415612f3d57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612f5757612f57612f72565b5060010190565b600082612f6d57612f6d612f88565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461121957600080fdfea26469706673582212206a4841670dc8f3f5f2cc9fa575eb44734da71dba1bfbaa07500ebf38d6c46f7a64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d56394b63424437377170704e436162656365706334504a614e694e454b3543704248386739765365715535782f000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmV9KcBD77qppNCabecepc4PJaNiNEK5CpBH8g9vSeqU5x/
Arg [1] : _initNotRevealedUri (string):

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d56394b63424437377170704e436162656365706334504a
Arg [4] : 614e694e454b3543704248386739765365715535782f00000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

45978:9259:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26280:305;;;;;;;;;;-1:-1:-1;26280:305:0;;;;;:::i;:::-;;:::i;:::-;;;8809:14:1;;8802:22;8784:41;;8772:2;8757:18;26280:305:0;;;;;;;;52863:73;;;;;;;;;;-1:-1:-1;52863:73:0;;;;;:::i;:::-;;:::i;:::-;;27225:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28784:221::-;;;;;;;;;;-1:-1:-1;28784:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7470:32:1;;;7452:51;;7440:2;7425:18;28784:221:0;7306:203:1;46199:28:0;;;;;;;;;;;;;:::i;28307:411::-;;;;;;;;;;-1:-1:-1;28307:411:0;;;;;:::i;:::-;;:::i;53978:128::-;;;;;;;;;;-1:-1:-1;53978:128:0;;;;;:::i;:::-;;:::i;52942:118::-;;;;;;;;;;-1:-1:-1;52942:118:0;;;;;:::i;:::-;;:::i;54440:114::-;;;;;;;;;;-1:-1:-1;54440:114:0;;;;;:::i;:::-;;:::i;46273:32::-;;;;;;;;;;;;;;;;;;;19232:25:1;;;19220:2;19205:18;46273:32:0;19086:177:1;52241:89:0;;;;;;;;;;;;;:::i;46851:55::-;;;;;;;;;;-1:-1:-1;46851:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;46560:39;;;;;;;;;;;;;;;;46430:32;;;;;;;;;;;;;;;;29534:339;;;;;;;;;;-1:-1:-1;29534:339:0;;;;;:::i;:::-;;:::i;46467:45::-;;;;;;;;;;;;;;;;50932:112;;;;;;;;;;-1:-1:-1;50932:112:0;;;;;:::i;:::-;-1:-1:-1;;;;;51011:27:0;50991:4;51011:27;;;:20;:27;;;;;;;;;50932:112;54562:95;;;;;;;;;;-1:-1:-1;54562:95:0;;;;;:::i;:::-;;:::i;29944:185::-;;;;;;;;;;-1:-1:-1;29944:185:0;;;;;:::i;:::-;;:::i;54320:114::-;;;;;;;;;;-1:-1:-1;54320:114:0;;;;;:::i;:::-;;:::i;51051:635::-;;;;;;;;;;-1:-1:-1;51051:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;53276:80::-;;;;;;;;;;-1:-1:-1;53276:80:0;;;;;:::i;:::-;;:::i;46729:27::-;;;;;;;;;;-1:-1:-1;46729:27:0;;;;;;;;;;;53620:98;;;;;;;;;;-1:-1:-1;53620:98:0;;;;;:::i;:::-;;:::i;46698:26::-;;;;;;;;;;-1:-1:-1;46698:26:0;;;;;;;;26919:239;;;;;;;;;;-1:-1:-1;26919:239:0;;;;;:::i;:::-;;:::i;50150:266::-;;;;;;;;;;-1:-1:-1;50150:266:0;;;;;:::i;:::-;;:::i;53362:130::-;;;;;;;;;;-1:-1:-1;53362:130:0;;;;;:::i;:::-;;:::i;46131:21::-;;;;;;;;;;;;;:::i;54112:94::-;;;;;;;;;;-1:-1:-1;54112:94:0;;;;;:::i;:::-;;:::i;52640:111::-;;;;;;;;;;;;;:::i;26649:208::-;;;;;;;;;;-1:-1:-1;26649:208:0;;;;;:::i;:::-;;:::i;52539:95::-;;;;;;;;;;;;;:::i;6195:103::-;;;;;;;;;;;;;:::i;54212:102::-;;;;;;;;;;-1:-1:-1;54212:102:0;;;;;:::i;:::-;;:::i;46604:42::-;;;;;;;;;;;;;;;;46387:38;;;;;;;;;;;;;;;;53498:116;;;;;;;;;;-1:-1:-1;53498:116:0;;;;;:::i;:::-;;:::i;52336:175::-;;;;;;;;;;;;;:::i;50640:268::-;;;;;;;;;;-1:-1:-1;50640:268:0;;;;;:::i;:::-;;:::i;54855:373::-;;;:::i;5544:87::-;;;;;;;;;;-1:-1:-1;5617:6:0;;-1:-1:-1;;;;;5617:6:0;5544:87;;53176:94;;;;;;;;;;-1:-1:-1;53176:94:0;;;;;:::i;:::-;;:::i;52781:76::-;;;;;;;;;;-1:-1:-1;52781:76:0;;;;;:::i;:::-;;:::i;27394:104::-;;;;;;;;;;;;;:::i;46761:35::-;;;;;;;;;;-1:-1:-1;46761:35:0;;;;;;;;;;;49559:584;;;;;;:::i;:::-;;:::i;46345:37::-;;;;;;;;;;;;;;;;29077:155;;;;;;;;;;-1:-1:-1;29077:155:0;;;;;:::i;:::-;;:::i;30200:328::-;;;;;;;;;;-1:-1:-1;30200:328:0;;;;;:::i;:::-;;:::i;46517:38::-;;;;;;;;;;;;;;;;46157:37;;;;;;;;;;;;;:::i;51692:539::-;;;;;;;;;;-1:-1:-1;51692:539:0;;;;;:::i;:::-;;:::i;46232:36::-;;;;;;;;;;;;;;;;53066:104;;;;;;;;;;-1:-1:-1;53066:104:0;;;;;:::i;:::-;;:::i;46310:30::-;;;;;;;;;;;;;;;;53724:122;;;;;;;;;;-1:-1:-1;53724:122:0;;;;;:::i;:::-;;:::i;29303:164::-;;;;;;;;;;-1:-1:-1;29303:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29424:25:0;;;29400:4;29424:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29303:164;46651:42;;;;;;;;;;;;;;;;54663:186;;;;;;;;;;-1:-1:-1;54663:186:0;;;;;:::i;:::-;;:::i;53852:120::-;;;;;;;;;;-1:-1:-1;53852:120:0;;;;;:::i;:::-;;:::i;6453:201::-;;;;;;;;;;-1:-1:-1;6453:201:0;;;;;:::i;:::-;;:::i;26280:305::-;26382:4;-1:-1:-1;;;;;;26419:40:0;;-1:-1:-1;;;26419:40:0;;:105;;-1:-1:-1;;;;;;;26476:48:0;;-1:-1:-1;;;26476:48:0;26419:105;:158;;;-1:-1:-1;;;;;;;;;;18085:40:0;;;26541:36;26399:178;26280:305;-1:-1:-1;;26280:305:0:o;52863:73::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;;;;;;;;;52915:6:::1;:15:::0;;-1:-1:-1;;52915:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;52863:73::o;27225:100::-;27279:13;27312:5;27305:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27225:100;:::o;28784:221::-;28860:7;32127:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32127:16:0;28880:73;;;;-1:-1:-1;;;28880:73:0;;14694:2:1;28880:73:0;;;14676:21:1;14733:2;14713:18;;;14706:30;14772:34;14752:18;;;14745:62;-1:-1:-1;;;14823:18:1;;;14816:42;14875:19;;28880:73:0;14492:408:1;28880:73:0;-1:-1:-1;28973:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28973:24:0;;28784:221::o;46199:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28307:411::-;28388:13;28404:23;28419:7;28404:14;:23::i;:::-;28388:39;;28452:5;-1:-1:-1;;;;;28446:11:0;:2;-1:-1:-1;;;;;28446:11:0;;;28438:57;;;;-1:-1:-1;;;28438:57:0;;17004:2:1;28438:57:0;;;16986:21:1;17043:2;17023:18;;;17016:30;17082:34;17062:18;;;17055:62;-1:-1:-1;;;17133:18:1;;;17126:31;17174:19;;28438:57:0;16802:397:1;28438:57:0;4348:10;-1:-1:-1;;;;;28530:21:0;;;;:62;;-1:-1:-1;28555:37:0;28572:5;4348:10;29303:164;:::i;28555:37::-;28508:168;;;;-1:-1:-1;;;28508:168:0;;12736:2:1;28508:168:0;;;12718:21:1;12775:2;12755:18;;;12748:30;12814:34;12794:18;;;12787:62;12885:26;12865:18;;;12858:54;12929:19;;28508:168:0;12534:420:1;28508:168:0;28689:21;28698:2;28702:7;28689:8;:21::i;:::-;28377:341;28307:411;;:::o;53978:128::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;54061:16:::1;:39:::0;53978:128::o;52942:118::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;53020:25:::1;:34:::0;52942:118::o;54440:114::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;54516:14:::1;:32:::0;54440:114::o;52241:89::-;52285:7;52308:16;:6;964:14;;872:114;52308:16;52301:23;;52241:89;:::o;29534:339::-;29729:41;4348:10;29762:7;29729:18;:41::i;:::-;29721:103;;;;-1:-1:-1;;;29721:103:0;;;;;;;:::i;:::-;29837:28;29847:4;29853:2;29857:7;29837:9;:28::i;54562:95::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;54627:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;54627:24:0;;::::1;::::0;;;::::1;::::0;;54562:95::o;29944:185::-;30082:39;30099:4;30105:2;30109:7;30082:39;;;;;;;;;;;;:16;:39::i;54320:114::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;54396:14:::1;:32:::0;54320:114::o;51051:635::-;51126:16;51154:23;51180:17;51190:6;51180:9;:17::i;:::-;51154:43;;51204:30;51251:15;51237:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51237:30:0;-1:-1:-1;51204:63:0;-1:-1:-1;51299:1:0;51274:22;51343:309;51368:15;51350;:33;:64;;;;;51405:9;;51387:14;:27;;51350:64;51343:309;;;51425:25;51453:23;51461:14;51453:7;:23::i;:::-;51425:51;;51512:6;-1:-1:-1;;;;;51491:27:0;:17;-1:-1:-1;;;;;51491:27:0;;51487:131;;;51564:14;51531:13;51545:15;51531:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;51591:17;;;;:::i;:::-;;;;51487:131;51628:16;;;;:::i;:::-;;;;51416:236;51343:309;;;-1:-1:-1;51667:13:0;;51051:635;-1:-1:-1;;;;51051:635:0:o;53276:80::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;53335:4:::1;:15:::0;53276:80::o;53620:98::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;53691:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;53620:98:::0;:::o;26919:239::-;26991:7;27027:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27027:16:0;27062:19;27054:73;;;;-1:-1:-1;;;27054:73:0;;13572:2:1;27054:73:0;;;13554:21:1;13611:2;13591:18;;;13584:30;13650:34;13630:18;;;13623:62;-1:-1:-1;;;13701:18:1;;;13694:39;13750:19;;27054:73:0;13370:405:1;50150:266:0;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;50226:6:::1;::::0;::::1;;50225:7;50217:16;;;::::0;::::1;;50262:1;50248:11;:15;50240:24;;;::::0;::::1;;50294:13;;50279:11;:28;;50271:37;;;::::0;::::1;;50357:9;;50342:11;50323:16;:6;964:14:::0;;872:114;50323:16:::1;:30;;;;:::i;:::-;:43;;50315:52;;;::::0;::::1;;50376:34;50386:10;50398:11;50376:9;:34::i;:::-;50150:266:::0;:::o;53362:130::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;53446:20:::1;:40:::0;53362:130::o;46131:21::-;;;;;;;:::i;54112:94::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;54178:9:::1;:22:::0;54112:94::o;52640:111::-;5617:6;;52701:7;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;-1:-1:-1;52724:21:0::1;52640:111:::0;:::o;26649:208::-;26721:7;-1:-1:-1;;;;;26749:19:0;;26741:74;;;;-1:-1:-1;;;26741:74:0;;13161:2:1;26741:74:0;;;13143:21:1;13200:2;13180:18;;;13173:30;13239:34;13219:18;;;13212:62;-1:-1:-1;;;13290:18:1;;;13283:40;13340:19;;26741:74:0;12959:406:1;26741:74:0;-1:-1:-1;;;;;;26833:16:0;;;;;:9;:16;;;;;;;26649:208::o;52539:95::-;5617:6;;52592:13;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;52621:7:::1;52614:14;;;;;:::i;6195:103::-:0;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;6260:30:::1;6287:1;6260:18;:30::i;:::-;6195:103::o:0;54212:102::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;54282:11:::1;:26:::0;54212:102::o;53498:116::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;53575:13:::1;:33:::0;53498:116::o;52336:175::-;52383:7;52421:14;;52403:15;:32;52399:107;;;-1:-1:-1;52453:11:0;;;52336:175::o;52399:107::-;-1:-1:-1;52494:4:0;;;52336:175::o;50640:268::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;50742:1:::1;50728:11;:15;50720:55;;;::::0;-1:-1:-1;;;50720:55:0;;18932:2:1;50720:55:0::1;::::0;::::1;18914:21:1::0;18971:2;18951:18;;;18944:30;19010:29;18990:18;;;18983:57;19057:18;;50720:55:0::1;18730:351:1::0;50720:55:0::1;50824:9;;50809:11;50790:16;:6;964:14:::0;;872:114;50790:16:::1;:30;;;;:::i;:::-;:43;;50782:78;;;::::0;-1:-1:-1;;;50782:78:0;;13982:2:1;50782:78:0::1;::::0;::::1;13964:21:1::0;14021:2;14001:18;;;13994:30;-1:-1:-1;;;14040:18:1;;;14033:52;14102:18;;50782:78:0::1;13780:346:1::0;50782:78:0::1;50868:34;50878:10;50890:11;50868:9;:34::i;54855:373::-:0;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;54919:12:::1;54945:10;54998:3;54969:26;:21;54993:2;54969:26;:::i;:::-;:32;;;;:::i;:::-;54937:69;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54918:88;;;55025:7;55017:16;;;::::0;::::1;;55048:13;55064:25;55088:1;55064:21;:25;:::i;:::-;55116:2;::::0;55108:23:::1;::::0;55048:41;;-1:-1:-1;;;;;;55116:2:0::1;::::0;55108:23;::::1;;;::::0;55048:41;;55116:2:::1;55108:23:::0;55116:2;55108:23;55048:41;55116:2;55108:23;::::1;;;;;;55100:32;;;::::0;::::1;;55159:2;::::0;55151:23:::1;::::0;-1:-1:-1;;;;;55159:2:0;;::::1;::::0;55151:23;::::1;;;::::0;55168:5;;55159:2:::1;55151:23:::0;55159:2;55151:23;55168:5;55159:2;55151:23;::::1;;;;;;55143:32;;;::::0;::::1;;55202:2;::::0;55194:23:::1;::::0;-1:-1:-1;;;;;55202:2:0;;::::1;::::0;55194:23;::::1;;;::::0;55211:5;;55202:2:::1;55194:23:::0;55202:2;55194:23;55211:5;55202:2;55194:23;::::1;;;;;;55186:32;;;::::0;::::1;53176:94:::0;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;53242:11:::1;:22:::0;53176:94::o;52781:76::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;52834:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;52834:17:0;;::::1;::::0;;;::::1;::::0;;52781:76::o;27394:104::-;27450:13;27483:7;27476:14;;;;;:::i;49559:584::-;47439:6;;;;47438:7;47430:42;;;;-1:-1:-1;;;47430:42:0;;15468:2:1;47430:42:0;;;15450:21:1;15507:2;15487:18;;;15480:30;-1:-1:-1;;;15526:18:1;;;15519:52;15588:18;;47430:42:0;15266:346:1;47430:42:0;47547:11:::1;;47528:15;:30;;47520:67;;;::::0;-1:-1:-1;;;47520:67:0;;9262:2:1;47520:67:0::1;::::0;::::1;9244:21:1::0;9301:2;9281:18;;;9274:30;9340:26;9320:18;;;9313:54;9384:18;;47520:67:0::1;9060:348:1::0;47520:67:0::1;49674:11:::2;47684:1;47670:11;:15;47662:55;;;::::0;-1:-1:-1;;;47662:55:0;;18932:2:1;47662:55:0::2;::::0;::::2;18914:21:1::0;18971:2;18951:18;;;18944:30;19010:29;18990:18;;;18983:57;19057:18;;47662:55:0::2;18730:351:1::0;47662:55:0::2;49744:10:::3;49697:23;49723:32:::0;;;:20:::3;:32;::::0;;;;;49855:14:::3;::::0;49837:15:::3;:32;:169;;49955:51;49977:15;49994:11;49955:21;:51::i;:::-;49837:169;;;49879:66;49898:15;49915:11;49928:16;:6;964:14:::0;;872:114;49928:16:::3;49879:18;:66::i;:::-;50057:9;;50042:11;50023:16;:6;964:14:::0;;872:114;50023:16:::3;:30;;;;:::i;:::-;:43;;50015:78;;;::::0;-1:-1:-1;;;50015:78:0;;13982:2:1;50015:78:0::3;::::0;::::3;13964:21:1::0;14021:2;14001:18;;;13994:30;-1:-1:-1;;;14040:18:1;;;14033:52;14102:18;;50015:78:0::3;13780:346:1::0;50015:78:0::3;50103:34;50113:10;50125:11;50103:9;:34::i;29077:155::-:0;29172:52;4348:10;29205:8;29215;29172:18;:52::i;30200:328::-;30375:41;4348:10;30408:7;30375:18;:41::i;:::-;30367:103;;;;-1:-1:-1;;;30367:103:0;;;;;;;:::i;:::-;30481:39;30495:4;30501:2;30505:7;30514:5;30481:13;:39::i;:::-;30200:328;;;;:::o;46157:37::-;;;;;;;:::i;51692:539::-;32103:4;32127:16;;;:7;:16;;;;;;51790:13;;-1:-1:-1;;;;;32127:16:0;51815:97;;;;-1:-1:-1;;;51815:97:0;;16588:2:1;51815:97:0;;;16570:21:1;16627:2;16607:18;;;16600:30;16666:34;16646:18;;;16639:62;-1:-1:-1;;;16717:18:1;;;16710:45;16772:19;;51815:97:0;16386:411:1;51815:97:0;51926:8;;;;;;;51921:305;;51952:14;51945:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51692:539;;;:::o;51921:305::-;51989:28;52020:10;:8;:10::i;:::-;51989:41;;52086:1;52061:14;52055:28;:32;:163;;;;;;;;;;;;;;;;;52139:14;52155:18;:7;:16;:18::i;:::-;52175:13;52122:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52055:163;52039:179;51692:539;-1:-1:-1;;;51692:539:0:o;51921:305::-;51692:539;;;:::o;53066:104::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;53137:18:::1;:27:::0;53066:104::o;53724:122::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;53807:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;54663:186::-:0;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;54744:9:::1;54739:105;54763:9;:16;54759:1;:20;54739:105;;;54832:4;54795:20;:34;54816:9;54826:1;54816:12;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;54795:34:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;54795:34:0;:41;;-1:-1:-1;;54795:41:0::1;::::0;::::1;;::::0;;;::::1;::::0;;54781:3;::::1;::::0;::::1;:::i;:::-;;;;54739:105;;53852:120:::0;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;53934:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;6453:201::-:0;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6542:22:0;::::1;6534:73;;;::::0;-1:-1:-1;;;6534:73:0;;10034:2:1;6534:73:0::1;::::0;::::1;10016:21:1::0;10073:2;10053:18;;;10046:30;10112:34;10092:18;;;10085:62;-1:-1:-1;;;10163:18:1;;;10156:36;10209:19;;6534:73:0::1;9832:402:1::0;6534:73:0::1;6618:28;6637:8;6618:18;:28::i;36020:174::-:0;36095:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36095:29:0;-1:-1:-1;;;;;36095:29:0;;;;;;;;:24;;36149:23;36095:24;36149:14;:23::i;:::-;-1:-1:-1;;;;;36140:46:0;;;;;;;;;;;36020:174;;:::o;32332:348::-;32425:4;32127:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32127:16:0;32442:73;;;;-1:-1:-1;;;32442:73:0;;12323:2:1;32442:73:0;;;12305:21:1;12362:2;12342:18;;;12335:30;12401:34;12381:18;;;12374:62;-1:-1:-1;;;12452:18:1;;;12445:42;12504:19;;32442:73:0;12121:408:1;32442:73:0;32526:13;32542:23;32557:7;32542:14;:23::i;:::-;32526:39;;32595:5;-1:-1:-1;;;;;32584:16:0;:7;-1:-1:-1;;;;;32584:16:0;;:51;;;;32628:7;-1:-1:-1;;;;;32604:31:0;:20;32616:7;32604:11;:20::i;:::-;-1:-1:-1;;;;;32604:31:0;;32584:51;:87;;;-1:-1:-1;;;;;;29424:25:0;;;29400:4;29424:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;32639:32;32576:96;32332:348;-1:-1:-1;;;;32332:348:0:o;35324:578::-;35483:4;-1:-1:-1;;;;;35456:31:0;:23;35471:7;35456:14;:23::i;:::-;-1:-1:-1;;;;;35456:31:0;;35448:85;;;;-1:-1:-1;;;35448:85:0;;15819:2:1;35448:85:0;;;15801:21:1;15858:2;15838:18;;;15831:30;15897:34;15877:18;;;15870:62;-1:-1:-1;;;15948:18:1;;;15941:39;15997:19;;35448:85:0;15617:405:1;35448:85:0;-1:-1:-1;;;;;35552:16:0;;35544:65;;;;-1:-1:-1;;;35544:65:0;;11155:2:1;35544:65:0;;;11137:21:1;11194:2;11174:18;;;11167:30;11233:34;11213:18;;;11206:62;-1:-1:-1;;;11284:18:1;;;11277:34;11328:19;;35544:65:0;10953:400:1;35544:65:0;35726:29;35743:1;35747:7;35726:8;:29::i;:::-;-1:-1:-1;;;;;35768:15:0;;;;;;:9;:15;;;;;:20;;35787:1;;35768:15;:20;;35787:1;;35768:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35799:13:0;;;;;;:9;:13;;;;;:18;;35816:1;;35799:13;:18;;35816:1;;35799:18;:::i;:::-;;;;-1:-1:-1;;35828:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35828:21:0;-1:-1:-1;;;;;35828:21:0;;;;;;;;;35867:27;;35828:16;;35867:27;;;;;;;35324:578;;;:::o;50425:204::-;50505:9;50500:124;50524:11;50520:1;:15;50500:124;;;50551:18;:6;1083:19;;1101:1;1083:19;;;994:127;50551:18;50578:38;50588:9;50599:16;:6;964:14;;872:114;50599:16;50578:9;:38::i;:::-;50537:3;;;;:::i;:::-;;;;50500:124;;6814:191;6907:6;;;-1:-1:-1;;;;;6924:17:0;;;-1:-1:-1;;;;;;6924:17:0;;;;;;;6957:40;;6907:6;;;6924:17;6907:6;;6957:40;;6888:16;;6957:40;6877:128;6814:191;:::o;49145:398::-;49295:18;;49262:29;49280:11;49262:15;:29;:::i;:::-;:51;;49246:113;;;;-1:-1:-1;;;49246:113:0;;10798:2:1;49246:113:0;;;10780:21:1;10837:2;10817:18;;;10810:30;10876;10856:18;;;10849:58;10924:18;;49246:113:0;10596:352:1;49246:113:0;49394:11;49387:4;;:18;;;;:::i;:::-;49374:9;:31;;49366:62;;;;-1:-1:-1;;;49366:62:0;;;;;;;:::i;:::-;49466:13;;49451:11;:28;;49435:102;;;;-1:-1:-1;;;49435:102:0;;;;;;;:::i;47860:1279::-;47987:18;48030:14;;48012:15;:32;:93;;-1:-1:-1;48101:4:0;;;48012:93;;;-1:-1:-1;48067:11:0;;;48012:93;-1:-1:-1;48118:15:0;;;;;;;:23;;48137:4;48118:23;48114:1020;;;48172:10;50991:4;51011:27;;;:20;:27;;;;;;;;48150:61;;;;-1:-1:-1;;;48150:61:0;;18580:2:1;48150:61:0;;;18562:21:1;18619:2;18599:18;;;18592:30;18658:25;18638:18;;;18631:53;18701:18;;48150:61:0;18378:347:1;48150:61:0;48267:25;;48234:29;48252:11;48234:15;:29;:::i;:::-;:58;;48218:132;;;;-1:-1:-1;;;48218:132:0;;;;;;;:::i;:::-;48378:24;48391:11;48378:10;:24;:::i;:::-;48365:9;:37;;48357:68;;;;-1:-1:-1;;;48357:68:0;;;;;;;:::i;:::-;48463:20;;48448:11;:35;;48432:109;;;;-1:-1:-1;;;48432:109:0;;;;;;;:::i;:::-;48598:16;;48583:11;48564:16;:6;964:14;;872:114;48564:16;:30;;;;:::i;:::-;:50;;48548:114;;;;-1:-1:-1;;;48548:114:0;;16229:2:1;48548:114:0;;;16211:21:1;16268:2;16248:18;;;16241:30;16307:32;16287:18;;;16280:60;16357:18;;48548:114:0;16027:354:1;48548:114:0;48114:1020;;;48731:25;;48698:29;48716:11;48698:15;:29;:::i;:::-;:58;;48682:132;;;;-1:-1:-1;;;48682:132:0;;;;;;;:::i;:::-;48842:24;48855:11;48842:10;:24;:::i;:::-;48829:9;:37;;48821:68;;;;-1:-1:-1;;;48821:68:0;;;;;;;:::i;:::-;48927:20;;48912:11;:35;;48896:109;;;;-1:-1:-1;;;48896:109:0;;;;;;;:::i;:::-;49062:16;;49047:11;49028:16;:6;964:14;;872:114;49028:16;:30;;;;:::i;:::-;:50;;49012:114;;;;-1:-1:-1;;;49012:114:0;;16229:2:1;49012:114:0;;;16211:21:1;16268:2;16248:18;;;16241:30;16307:32;16287:18;;;16280:60;16357:18;;49012:114:0;16027:354:1;36336:315:0;36491:8;-1:-1:-1;;;;;36482:17:0;:5;-1:-1:-1;;;;;36482:17:0;;;36474:55;;;;-1:-1:-1;;;36474:55:0;;11560:2:1;36474:55:0;;;11542:21:1;11599:2;11579:18;;;11572:30;11638:27;11618:18;;;11611:55;11683:18;;36474:55:0;11358:349:1;36474:55:0;-1:-1:-1;;;;;36540:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;36540:46:0;;;;;;;;;;36602:41;;8784::1;;;36602::0;;8757:18:1;36602:41:0;;;;;;;36336:315;;;:::o;31410:::-;31567:28;31577:4;31583:2;31587:7;31567:9;:28::i;:::-;31614:48;31637:4;31643:2;31647:7;31656:5;31614:22;:48::i;:::-;31606:111;;;;-1:-1:-1;;;31606:111:0;;;;;;;:::i;47752:102::-;47812:13;47841:7;47834:14;;;;;:::i;1830:723::-;1886:13;2107:10;2103:53;;-1:-1:-1;;2134:10:0;;;;;;;;;;;;-1:-1:-1;;;2134:10:0;;;;;1830:723::o;2103:53::-;2181:5;2166:12;2222:78;2229:9;;2222:78;;2255:8;;;;:::i;:::-;;-1:-1:-1;2278:10:0;;-1:-1:-1;2286:2:0;2278:10;;:::i;:::-;;;2222:78;;;2310:19;2342:6;2332:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2332:17:0;;2310:39;;2360:154;2367:10;;2360:154;;2394:11;2404:1;2394:11;;:::i;:::-;;-1:-1:-1;2463:10:0;2471:2;2463:5;:10;:::i;:::-;2450:24;;:2;:24;:::i;:::-;2437:39;;2420:6;2427;2420:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2420:56:0;;;;;;;;-1:-1:-1;2491:11:0;2500:2;2491:11;;:::i;:::-;;;2360:154;;33022:110;33098:26;33108:2;33112:7;33098:26;;;;;;;;;;;;:9;:26::i;37216:799::-;37371:4;-1:-1:-1;;;;;37392:13:0;;8155:20;8203:8;37388:620;;37428:72;;-1:-1:-1;;;37428:72:0;;-1:-1:-1;;;;;37428:36:0;;;;;:72;;4348:10;;37479:4;;37485:7;;37494:5;;37428:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37428:72:0;;;;;;;;-1:-1:-1;;37428:72:0;;;;;;;;;;;;:::i;:::-;;;37424:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37670:13:0;;37666:272;;37713:60;;-1:-1:-1;;;37713:60:0;;;;;;;:::i;37666:272::-;37888:6;37882:13;37873:6;37869:2;37865:15;37858:38;37424:529;-1:-1:-1;;;;;;37551:51:0;-1:-1:-1;;;37551:51:0;;-1:-1:-1;37544:58:0;;37388:620;-1:-1:-1;37992:4:0;37216:799;;;;;;:::o;33359:321::-;33489:18;33495:2;33499:7;33489:5;:18::i;:::-;33540:54;33571:1;33575:2;33579:7;33588:5;33540:22;:54::i;:::-;33518:154;;;;-1:-1:-1;;;33518:154:0;;;;;;;:::i;34016:382::-;-1:-1:-1;;;;;34096:16:0;;34088:61;;;;-1:-1:-1;;;34088:61:0;;14333:2:1;34088:61:0;;;14315:21:1;;;14352:18;;;14345:30;14411:34;14391:18;;;14384:62;14463:18;;34088:61:0;14131:356:1;34088:61:0;32103:4;32127:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32127:16:0;:30;34160:58;;;;-1:-1:-1;;;34160:58:0;;10441:2:1;34160:58:0;;;10423:21:1;10480:2;10460:18;;;10453:30;10519;10499:18;;;10492:58;10567:18;;34160:58:0;10239:352:1;34160:58:0;-1:-1:-1;;;;;34289:13:0;;;;;;:9;:13;;;;;:18;;34306:1;;34289:13;:18;;34306:1;;34289:18;:::i;:::-;;;;-1:-1:-1;;34318:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34318:21:0;-1:-1:-1;;;;;34318:21:0;;;;;;;;34357:33;;34318:16;;;34357:33;;34318:16;;34357:33;34016:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;603:160;668:20;;724:13;;717:21;707:32;;697:60;;753:1;750;743:12;768:186;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;919:29;938:9;919:29;:::i;959:260::-;1027:6;1035;1088:2;1076:9;1067:7;1063:23;1059:32;1056:52;;;1104:1;1101;1094:12;1056:52;1127:29;1146:9;1127:29;:::i;:::-;1117:39;;1175:38;1209:2;1198:9;1194:18;1175:38;:::i;:::-;1165:48;;959:260;;;;;:::o;1224:328::-;1301:6;1309;1317;1370:2;1358:9;1349:7;1345:23;1341:32;1338:52;;;1386:1;1383;1376:12;1338:52;1409:29;1428:9;1409:29;:::i;:::-;1399:39;;1457:38;1491:2;1480:9;1476:18;1457:38;:::i;:::-;1447:48;;1542:2;1531:9;1527:18;1514:32;1504:42;;1224:328;;;;;:::o;1557:666::-;1652:6;1660;1668;1676;1729:3;1717:9;1708:7;1704:23;1700:33;1697:53;;;1746:1;1743;1736:12;1697:53;1769:29;1788:9;1769:29;:::i;:::-;1759:39;;1817:38;1851:2;1840:9;1836:18;1817:38;:::i;:::-;1807:48;;1902:2;1891:9;1887:18;1874:32;1864:42;;1957:2;1946:9;1942:18;1929:32;1984:18;1976:6;1973:30;1970:50;;;2016:1;2013;2006:12;1970:50;2039:22;;2092:4;2084:13;;2080:27;-1:-1:-1;2070:55:1;;2121:1;2118;2111:12;2070:55;2144:73;2209:7;2204:2;2191:16;2186:2;2182;2178:11;2144:73;:::i;:::-;2134:83;;;1557:666;;;;;;;:::o;2228:254::-;2293:6;2301;2354:2;2342:9;2333:7;2329:23;2325:32;2322:52;;;2370:1;2367;2360:12;2322:52;2393:29;2412:9;2393:29;:::i;:::-;2383:39;;2441:35;2472:2;2461:9;2457:18;2441:35;:::i;2487:254::-;2555:6;2563;2616:2;2604:9;2595:7;2591:23;2587:32;2584:52;;;2632:1;2629;2622:12;2584:52;2655:29;2674:9;2655:29;:::i;:::-;2645:39;2731:2;2716:18;;;;2703:32;;-1:-1:-1;;;2487:254:1:o;2746:963::-;2830:6;2861:2;2904;2892:9;2883:7;2879:23;2875:32;2872:52;;;2920:1;2917;2910:12;2872:52;2960:9;2947:23;2989:18;3030:2;3022:6;3019:14;3016:34;;;3046:1;3043;3036:12;3016:34;3084:6;3073:9;3069:22;3059:32;;3129:7;3122:4;3118:2;3114:13;3110:27;3100:55;;3151:1;3148;3141:12;3100:55;3187:2;3174:16;3209:2;3205;3202:10;3199:36;;;3215:18;;:::i;:::-;3261:2;3258:1;3254:10;3244:20;;3284:28;3308:2;3304;3300:11;3284:28;:::i;:::-;3346:15;;;3377:12;;;;3409:11;;;3439;;;3435:20;;3432:33;-1:-1:-1;3429:53:1;;;3478:1;3475;3468:12;3429:53;3500:1;3491:10;;3510:169;3524:2;3521:1;3518:9;3510:169;;;3581:23;3600:3;3581:23;:::i;:::-;3569:36;;3542:1;3535:9;;;;;3625:12;;;;3657;;3510:169;;;-1:-1:-1;3698:5:1;2746:963;-1:-1:-1;;;;;;;;2746:963:1:o;3714:180::-;3770:6;3823:2;3811:9;3802:7;3798:23;3794:32;3791:52;;;3839:1;3836;3829:12;3791:52;3862:26;3878:9;3862:26;:::i;3899:245::-;3957:6;4010:2;3998:9;3989:7;3985:23;3981:32;3978:52;;;4026:1;4023;4016:12;3978:52;4065:9;4052:23;4084:30;4108:5;4084:30;:::i;4149:249::-;4218:6;4271:2;4259:9;4250:7;4246:23;4242:32;4239:52;;;4287:1;4284;4277:12;4239:52;4319:9;4313:16;4338:30;4362:5;4338:30;:::i;4403:450::-;4472:6;4525:2;4513:9;4504:7;4500:23;4496:32;4493:52;;;4541:1;4538;4531:12;4493:52;4581:9;4568:23;4614:18;4606:6;4603:30;4600:50;;;4646:1;4643;4636:12;4600:50;4669:22;;4722:4;4714:13;;4710:27;-1:-1:-1;4700:55:1;;4751:1;4748;4741:12;4700:55;4774:73;4839:7;4834:2;4821:16;4816:2;4812;4808:11;4774:73;:::i;4858:180::-;4917:6;4970:2;4958:9;4949:7;4945:23;4941:32;4938:52;;;4986:1;4983;4976:12;4938:52;-1:-1:-1;5009:23:1;;4858:180;-1:-1:-1;4858:180:1:o;5043:254::-;5111:6;5119;5172:2;5160:9;5151:7;5147:23;5143:32;5140:52;;;5188:1;5185;5178:12;5140:52;5224:9;5211:23;5201:33;;5253:38;5287:2;5276:9;5272:18;5253:38;:::i;5302:257::-;5343:3;5381:5;5375:12;5408:6;5403:3;5396:19;5424:63;5480:6;5473:4;5468:3;5464:14;5457:4;5450:5;5446:16;5424:63;:::i;:::-;5541:2;5520:15;-1:-1:-1;;5516:29:1;5507:39;;;;5548:4;5503:50;;5302:257;-1:-1:-1;;5302:257:1:o;5564:1527::-;5788:3;5826:6;5820:13;5852:4;5865:51;5909:6;5904:3;5899:2;5891:6;5887:15;5865:51;:::i;:::-;5979:13;;5938:16;;;;6001:55;5979:13;5938:16;6023:15;;;6001:55;:::i;:::-;6145:13;;6078:20;;;6118:1;;6205;6227:18;;;;6280;;;;6307:93;;6385:4;6375:8;6371:19;6359:31;;6307:93;6448:2;6438:8;6435:16;6415:18;6412:40;6409:167;;;-1:-1:-1;;;6475:33:1;;6531:4;6528:1;6521:15;6561:4;6482:3;6549:17;6409:167;6592:18;6619:110;;;;6743:1;6738:328;;;;6585:481;;6619:110;-1:-1:-1;;6654:24:1;;6640:39;;6699:20;;;;-1:-1:-1;6619:110:1;;6738:328;19621:1;19614:14;;;19658:4;19645:18;;6833:1;6847:169;6861:8;6858:1;6855:15;6847:169;;;6943:14;;6928:13;;;6921:37;6986:16;;;;6878:10;;6847:169;;;6851:3;;7047:8;7040:5;7036:20;7029:27;;6585:481;-1:-1:-1;7082:3:1;;5564:1527;-1:-1:-1;;;;;;;;;;;5564:1527:1:o;7514:488::-;-1:-1:-1;;;;;7783:15:1;;;7765:34;;7835:15;;7830:2;7815:18;;7808:43;7882:2;7867:18;;7860:34;;;7930:3;7925:2;7910:18;;7903:31;;;7708:4;;7951:45;;7976:19;;7968:6;7951:45;:::i;:::-;7943:53;7514:488;-1:-1:-1;;;;;;7514:488:1:o;8007:632::-;8178:2;8230:21;;;8300:13;;8203:18;;;8322:22;;;8149:4;;8178:2;8401:15;;;;8375:2;8360:18;;;8149:4;8444:169;8458:6;8455:1;8452:13;8444:169;;;8519:13;;8507:26;;8588:15;;;;8553:12;;;;8480:1;8473:9;8444:169;;;-1:-1:-1;8630:3:1;;8007:632;-1:-1:-1;;;;;;8007:632:1:o;8836:219::-;8985:2;8974:9;8967:21;8948:4;9005:44;9045:2;9034:9;9030:18;9022:6;9005:44;:::i;9413:414::-;9615:2;9597:21;;;9654:2;9634:18;;;9627:30;9693:34;9688:2;9673:18;;9666:62;-1:-1:-1;;;9759:2:1;9744:18;;9737:48;9817:3;9802:19;;9413:414::o;11712:404::-;11914:2;11896:21;;;11953:2;11933:18;;;11926:30;11992:34;11987:2;11972:18;;11965:62;-1:-1:-1;;;12058:2:1;12043:18;;12036:38;12106:3;12091:19;;11712:404::o;14905:356::-;15107:2;15089:21;;;15126:18;;;15119:30;15185:34;15180:2;15165:18;;15158:62;15252:2;15237:18;;14905:356::o;17204:342::-;17406:2;17388:21;;;17445:2;17425:18;;;17418:30;-1:-1:-1;;;17479:2:1;17464:18;;17457:48;17537:2;17522:18;;17204:342::o;17551:404::-;17753:2;17735:21;;;17792:2;17772:18;;;17765:30;17831:34;17826:2;17811:18;;17804:62;-1:-1:-1;;;17897:2:1;17882:18;;17875:38;17945:3;17930:19;;17551:404::o;17960:413::-;18162:2;18144:21;;;18201:2;18181:18;;;18174:30;18240:34;18235:2;18220:18;;18213:62;-1:-1:-1;;;18306:2:1;18291:18;;18284:47;18363:3;18348:19;;17960:413::o;19268:275::-;19339:2;19333:9;19404:2;19385:13;;-1:-1:-1;;19381:27:1;19369:40;;19439:18;19424:34;;19460:22;;;19421:62;19418:88;;;19486:18;;:::i;:::-;19522:2;19515:22;19268:275;;-1:-1:-1;19268:275:1:o;19674:128::-;19714:3;19745:1;19741:6;19738:1;19735:13;19732:39;;;19751:18;;:::i;:::-;-1:-1:-1;19787:9:1;;19674:128::o;19807:120::-;19847:1;19873;19863:35;;19878:18;;:::i;:::-;-1:-1:-1;19912:9:1;;19807:120::o;19932:168::-;19972:7;20038:1;20034;20030:6;20026:14;20023:1;20020:21;20015:1;20008:9;20001:17;19997:45;19994:71;;;20045:18;;:::i;:::-;-1:-1:-1;20085:9:1;;19932:168::o;20105:125::-;20145:4;20173:1;20170;20167:8;20164:34;;;20178:18;;:::i;:::-;-1:-1:-1;20215:9:1;;20105:125::o;20235:258::-;20307:1;20317:113;20331:6;20328:1;20325:13;20317:113;;;20407:11;;;20401:18;20388:11;;;20381:39;20353:2;20346:10;20317:113;;;20448:6;20445:1;20442:13;20439:48;;;-1:-1:-1;;20483:1:1;20465:16;;20458:27;20235:258::o;20498:380::-;20577:1;20573:12;;;;20620;;;20641:61;;20695:4;20687:6;20683:17;20673:27;;20641:61;20748:2;20740:6;20737:14;20717:18;20714:38;20711:161;;;20794:10;20789:3;20785:20;20782:1;20775:31;20829:4;20826:1;20819:15;20857:4;20854:1;20847:15;20711:161;;20498:380;;;:::o;20883:135::-;20922:3;-1:-1:-1;;20943:17:1;;20940:43;;;20963:18;;:::i;:::-;-1:-1:-1;21010:1:1;20999:13;;20883:135::o;21023:112::-;21055:1;21081;21071:35;;21086:18;;:::i;:::-;-1:-1:-1;21120:9:1;;21023:112::o;21140:127::-;21201:10;21196:3;21192:20;21189:1;21182:31;21232:4;21229:1;21222:15;21256:4;21253:1;21246:15;21272:127;21333:10;21328:3;21324:20;21321:1;21314:31;21364:4;21361:1;21354:15;21388:4;21385:1;21378:15;21404:127;21465:10;21460:3;21456:20;21453:1;21446:31;21496:4;21493:1;21486:15;21520:4;21517:1;21510:15;21536:127;21597:10;21592:3;21588:20;21585:1;21578:31;21628:4;21625:1;21618:15;21652:4;21649:1;21642:15;21668:131;-1:-1:-1;;;;;;21742:32:1;;21732:43;;21722:71;;21789:1;21786;21779:12

Swarm Source

ipfs://6a4841670dc8f3f5f2cc9fa575eb44734da71dba1bfbaa07500ebf38d6c46f7a
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.