ETH Price: $3,117.40 (-5.31%)
Gas: 5 Gwei

Token

MarvelGooseNFT (MGNFT)
 

Overview

Max Total Supply

443 MGNFT

Holders

139

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
13 MGNFT
0xdd5412775e75dc4b0f9bca29dde964e5b08a6fec
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:
MarvelGooseNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-12
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/marvelgoose.sol



pragma solidity >=0.7.0 <0.9.0;



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

  string public baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;
  uint256 public cost = 0.1 ether;
  uint256 public maxSupply = 999;
  uint256 public maxMintAmount = 10;
  uint256 public nftPerAddressLimit = 100;
  uint256 public maxwlSupply = 499;
  bool public paused = false;
  bool public revealed = false;
  bool public onlyWhitelisted = true;
  address[] public whitelistedAddresses;
  mapping(address => uint256) public addressMintedBalance;


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

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

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

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

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

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

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

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

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

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

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

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
  
  function setOnlyWhitelisted(bool _state) public onlyOwner {
    onlyWhitelisted = _state;
  }
  
  function whitelistUsers(address[] calldata _users) public onlyOwner {
    delete whitelistedAddresses;
    whitelistedAddresses = _users;
  }
 
  function withdraw() public payable onlyOwner {
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }
}

Contract Security Audit

Contract ABI

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

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c908051906020019062000051929190620003c8565b5067016345785d8a0000600e556103e7600f55600a60105560646011556101f36012556000601360006101000a81548160ff0219169083151502179055506000601360016101000a81548160ff0219169083151502179055506001601360026101000a81548160ff021916908315150217905550348015620000d257600080fd5b5060405162005980380380620059808339818101604052810190620000f89190620004f6565b8383816000908051906020019062000112929190620003c8565b5080600190805190602001906200012b929190620003c8565b5050506200014e620001426200017a60201b60201c565b6200018260201b60201c565b6200015f826200024860201b60201c565b6200017081620002f360201b60201c565b50505050620007eb565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002586200017a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200027e6200039e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002d7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002ce906200060b565b60405180910390fd5b80600b9080519060200190620002ef929190620003c8565b5050565b620003036200017a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003296200039e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000382576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000379906200060b565b60405180910390fd5b80600d90805190602001906200039a929190620003c8565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003d690620006d3565b90600052602060002090601f016020900481019282620003fa576000855562000446565b82601f106200041557805160ff191683800117855562000446565b8280016001018555821562000446579182015b828111156200044557825182559160200191906001019062000428565b5b50905062000455919062000459565b5090565b5b80821115620004745760008160009055506001016200045a565b5090565b60006200048f620004898462000656565b6200062d565b905082815260208101848484011115620004ae57620004ad620007a2565b5b620004bb8482856200069d565b509392505050565b600082601f830112620004db57620004da6200079d565b5b8151620004ed84826020860162000478565b91505092915050565b60008060008060808587031215620005135762000512620007ac565b5b600085015167ffffffffffffffff811115620005345762000533620007a7565b5b6200054287828801620004c3565b945050602085015167ffffffffffffffff811115620005665762000565620007a7565b5b6200057487828801620004c3565b935050604085015167ffffffffffffffff811115620005985762000597620007a7565b5b620005a687828801620004c3565b925050606085015167ffffffffffffffff811115620005ca57620005c9620007a7565b5b620005d887828801620004c3565b91505092959194509250565b6000620005f36020836200068c565b91506200060082620007c2565b602082019050919050565b600060208201905081810360008301526200062681620005e4565b9050919050565b6000620006396200064c565b905062000647828262000709565b919050565b6000604051905090565b600067ffffffffffffffff8211156200067457620006736200076e565b5b6200067f82620007b1565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620006bd578082015181840152602081019050620006a0565b83811115620006cd576000848401525b50505050565b60006002820490506001821680620006ec57607f821691505b602082108114156200070357620007026200073f565b5b50919050565b6200071482620007b1565b810181811067ffffffffffffffff821117156200073657620007356200076e565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61518580620007fb6000396000f3fe60806040526004361061027d5760003560e01c80636352211e1161014f578063b88d4fde116100c1578063d5abeb011161007a578063d5abeb0114610992578063da3ef23f146109bd578063e985e9c5146109e6578063edec5f2714610a23578063f2c4ce1e14610a4c578063f2fde38b14610a755761027d565b8063b88d4fde14610870578063ba4e5c4914610899578063ba7d2c76146108d6578063c668286214610901578063c87b56dd1461092c578063d0eb26b0146109695761027d565b80638da5cb5b116101135780638da5cb5b1461079357806395d89b41146107be5780639c70b512146107e9578063a0712d6814610814578063a22cb46514610830578063a475b5dd146108595761027d565b80636352211e146106ae5780636c0360eb146106eb57806370a0823114610716578063715018a6146107535780637f00c7a61461076a5761027d565b80632f745c59116101f357806344a0d68a116101ac57806344a0d68a1461059e5780634f6ccce7146105c75780634febcc8614610604578063518302271461062f57806355f804b31461065a5780635c975abb146106835761027d565b80632f745c591461048b5780633af32abf146104c85780633c952764146105055780633ccfd60b1461052e57806342842e0e14610538578063438b6300146105615761027d565b8063095ea7b311610245578063095ea7b31461037b57806313faede6146103a457806318160ddd146103cf57806318cae269146103fa578063239c70ae1461043757806323b872dd146104625761027d565b806301ffc9a71461028257806302329a29146102bf57806306fdde03146102e8578063081812fc14610313578063081c8c4414610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613abc565b610a9e565b6040516102b691906141e0565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e19190613a8f565b610b18565b005b3480156102f457600080fd5b506102fd610bb1565b60405161030a91906141fb565b60405180910390f35b34801561031f57600080fd5b5061033a60048036038101906103359190613b5f565b610c43565b6040516103479190614157565b60405180910390f35b34801561035c57600080fd5b50610365610cc8565b60405161037291906141fb565b60405180910390f35b34801561038757600080fd5b506103a2600480360381019061039d9190613a02565b610d56565b005b3480156103b057600080fd5b506103b9610e6e565b6040516103c6919061455d565b60405180910390f35b3480156103db57600080fd5b506103e4610e74565b6040516103f1919061455d565b60405180910390f35b34801561040657600080fd5b50610421600480360381019061041c919061387f565b610e81565b60405161042e919061455d565b60405180910390f35b34801561044357600080fd5b5061044c610e99565b604051610459919061455d565b60405180910390f35b34801561046e57600080fd5b50610489600480360381019061048491906138ec565b610e9f565b005b34801561049757600080fd5b506104b260048036038101906104ad9190613a02565b610eff565b6040516104bf919061455d565b60405180910390f35b3480156104d457600080fd5b506104ef60048036038101906104ea919061387f565b610fa4565b6040516104fc91906141e0565b60405180910390f35b34801561051157600080fd5b5061052c60048036038101906105279190613a8f565b611053565b005b6105366110ec565b005b34801561054457600080fd5b5061055f600480360381019061055a91906138ec565b6111e8565b005b34801561056d57600080fd5b506105886004803603810190610583919061387f565b611208565b60405161059591906141be565b60405180910390f35b3480156105aa57600080fd5b506105c560048036038101906105c09190613b5f565b6112b6565b005b3480156105d357600080fd5b506105ee60048036038101906105e99190613b5f565b61133c565b6040516105fb919061455d565b60405180910390f35b34801561061057600080fd5b506106196113ad565b604051610626919061455d565b60405180910390f35b34801561063b57600080fd5b506106446113b3565b60405161065191906141e0565b60405180910390f35b34801561066657600080fd5b50610681600480360381019061067c9190613b16565b6113c6565b005b34801561068f57600080fd5b5061069861145c565b6040516106a591906141e0565b60405180910390f35b3480156106ba57600080fd5b506106d560048036038101906106d09190613b5f565b61146f565b6040516106e29190614157565b60405180910390f35b3480156106f757600080fd5b50610700611521565b60405161070d91906141fb565b60405180910390f35b34801561072257600080fd5b5061073d6004803603810190610738919061387f565b6115af565b60405161074a919061455d565b60405180910390f35b34801561075f57600080fd5b50610768611667565b005b34801561077657600080fd5b50610791600480360381019061078c9190613b5f565b6116ef565b005b34801561079f57600080fd5b506107a8611775565b6040516107b59190614157565b60405180910390f35b3480156107ca57600080fd5b506107d361179f565b6040516107e091906141fb565b60405180910390f35b3480156107f557600080fd5b506107fe611831565b60405161080b91906141e0565b60405180910390f35b61082e60048036038101906108299190613b5f565b611844565b005b34801561083c57600080fd5b50610857600480360381019061085291906139c2565b611bea565b005b34801561086557600080fd5b5061086e611c00565b005b34801561087c57600080fd5b506108976004803603810190610892919061393f565b611c99565b005b3480156108a557600080fd5b506108c060048036038101906108bb9190613b5f565b611cfb565b6040516108cd9190614157565b60405180910390f35b3480156108e257600080fd5b506108eb611d3a565b6040516108f8919061455d565b60405180910390f35b34801561090d57600080fd5b50610916611d40565b60405161092391906141fb565b60405180910390f35b34801561093857600080fd5b50610953600480360381019061094e9190613b5f565b611dce565b60405161096091906141fb565b60405180910390f35b34801561097557600080fd5b50610990600480360381019061098b9190613b5f565b611f27565b005b34801561099e57600080fd5b506109a7611fad565b6040516109b4919061455d565b60405180910390f35b3480156109c957600080fd5b506109e460048036038101906109df9190613b16565b611fb3565b005b3480156109f257600080fd5b50610a0d6004803603810190610a0891906138ac565b612049565b604051610a1a91906141e0565b60405180910390f35b348015610a2f57600080fd5b50610a4a6004803603810190610a459190613a42565b6120dd565b005b348015610a5857600080fd5b50610a736004803603810190610a6e9190613b16565b61217d565b005b348015610a8157600080fd5b50610a9c6004803603810190610a97919061387f565b612213565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b115750610b108261230b565b5b9050919050565b610b206123ed565b73ffffffffffffffffffffffffffffffffffffffff16610b3e611775565b73ffffffffffffffffffffffffffffffffffffffff1614610b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8b9061441d565b60405180910390fd5b80601360006101000a81548160ff02191690831515021790555050565b606060008054610bc090614866565b80601f0160208091040260200160405190810160405280929190818152602001828054610bec90614866565b8015610c395780601f10610c0e57610100808354040283529160200191610c39565b820191906000526020600020905b815481529060010190602001808311610c1c57829003601f168201915b5050505050905090565b6000610c4e826123f5565b610c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c84906143fd565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610cd590614866565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0190614866565b8015610d4e5780601f10610d2357610100808354040283529160200191610d4e565b820191906000526020600020905b815481529060010190602001808311610d3157829003601f168201915b505050505081565b6000610d618261146f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc99061449d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610df16123ed565b73ffffffffffffffffffffffffffffffffffffffff161480610e205750610e1f81610e1a6123ed565b612049565b5b610e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e569061433d565b60405180910390fd5b610e698383612461565b505050565b600e5481565b6000600880549050905090565b60156020528060005260406000206000915090505481565b60105481565b610eb0610eaa6123ed565b8261251a565b610eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee6906144dd565b60405180910390fd5b610efa8383836125f8565b505050565b6000610f0a836115af565b8210610f4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f429061421d565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600080600090505b601480549050811015611048578273ffffffffffffffffffffffffffffffffffffffff1660148281548110610fe457610fe36149ff565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561103557600191505061104e565b8080611040906148c9565b915050610fac565b50600090505b919050565b61105b6123ed565b73ffffffffffffffffffffffffffffffffffffffff16611079611775565b73ffffffffffffffffffffffffffffffffffffffff16146110cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c69061441d565b60405180910390fd5b80601360026101000a81548160ff02191690831515021790555050565b6110f46123ed565b73ffffffffffffffffffffffffffffffffffffffff16611112611775565b73ffffffffffffffffffffffffffffffffffffffff1614611168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115f9061441d565b60405180910390fd5b6000611172611775565b73ffffffffffffffffffffffffffffffffffffffff164760405161119590614142565b60006040518083038185875af1925050503d80600081146111d2576040519150601f19603f3d011682016040523d82523d6000602084013e6111d7565b606091505b50509050806111e557600080fd5b50565b61120383838360405180602001604052806000815250611c99565b505050565b60606000611215836115af565b905060008167ffffffffffffffff81111561123357611232614a2e565b5b6040519080825280602002602001820160405280156112615781602001602082028036833780820191505090505b50905060005b828110156112ab576112798582610eff565b82828151811061128c5761128b6149ff565b5b60200260200101818152505080806112a3906148c9565b915050611267565b508092505050919050565b6112be6123ed565b73ffffffffffffffffffffffffffffffffffffffff166112dc611775565b73ffffffffffffffffffffffffffffffffffffffff1614611332576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113299061441d565b60405180910390fd5b80600e8190555050565b6000611346610e74565b8210611387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137e906144fd565b60405180910390fd5b6008828154811061139b5761139a6149ff565b5b90600052602060002001549050919050565b60125481565b601360019054906101000a900460ff1681565b6113ce6123ed565b73ffffffffffffffffffffffffffffffffffffffff166113ec611775565b73ffffffffffffffffffffffffffffffffffffffff1614611442576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114399061441d565b60405180910390fd5b80600b908051906020019061145892919061357c565b5050565b601360009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611518576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150f9061437d565b60405180910390fd5b80915050919050565b600b805461152e90614866565b80601f016020809104026020016040519081016040528092919081815260200182805461155a90614866565b80156115a75780601f1061157c576101008083540402835291602001916115a7565b820191906000526020600020905b81548152906001019060200180831161158a57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611620576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116179061435d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61166f6123ed565b73ffffffffffffffffffffffffffffffffffffffff1661168d611775565b73ffffffffffffffffffffffffffffffffffffffff16146116e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116da9061441d565b60405180910390fd5b6116ed600061285f565b565b6116f76123ed565b73ffffffffffffffffffffffffffffffffffffffff16611715611775565b73ffffffffffffffffffffffffffffffffffffffff161461176b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117629061441d565b60405180910390fd5b8060108190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546117ae90614866565b80601f01602080910402602001604051908101604052809291908181526020018280546117da90614866565b80156118275780601f106117fc57610100808354040283529160200191611827565b820191906000526020600020905b81548152906001019060200180831161180a57829003601f168201915b5050505050905090565b601360029054906101000a900460ff1681565b601360009054906101000a900460ff1615611894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188b9061443d565b60405180910390fd5b600061189e610e74565b905060006118aa610e74565b9050600083116118ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e69061453d565b60405180910390fd5b601054831115611934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192b906143bd565b60405180910390fd5b600f548383611943919061469b565b1115611984576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197b9061439d565b60405180910390fd5b61198c611775565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611b595760011515601360029054906101000a900460ff1615151415611b08576119e333610fa4565b611a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a199061451d565b60405180910390fd5b6000601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506011548482611a75919061469b565b1115611ab6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aad906142bd565b60405180910390fd5b6012548483611ac5919061469b565b1115611b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afd9061445d565b60405180910390fd5b505b82600e54611b169190614722565b341015611b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4f906144bd565b60405180910390fd5b5b6000600190505b838111611be457601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611bb7906148c9565b9190505550611bd1338285611bcc919061469b565b612925565b8080611bdc906148c9565b915050611b60565b50505050565b611bfc611bf56123ed565b8383612943565b5050565b611c086123ed565b73ffffffffffffffffffffffffffffffffffffffff16611c26611775565b73ffffffffffffffffffffffffffffffffffffffff1614611c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c739061441d565b60405180910390fd5b6001601360016101000a81548160ff021916908315150217905550565b611caa611ca46123ed565b8361251a565b611ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce0906144dd565b60405180910390fd5b611cf584848484612ab0565b50505050565b60148181548110611d0b57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b600c8054611d4d90614866565b80601f0160208091040260200160405190810160405280929190818152602001828054611d7990614866565b8015611dc65780601f10611d9b57610100808354040283529160200191611dc6565b820191906000526020600020905b815481529060010190602001808311611da957829003601f168201915b505050505081565b6060611dd9826123f5565b611e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0f9061447d565b60405180910390fd5b60001515601360019054906101000a900460ff1615151415611ec657600d8054611e4190614866565b80601f0160208091040260200160405190810160405280929190818152602001828054611e6d90614866565b8015611eba5780601f10611e8f57610100808354040283529160200191611eba565b820191906000526020600020905b815481529060010190602001808311611e9d57829003601f168201915b50505050509050611f22565b6000611ed0612b0c565b90506000815111611ef05760405180602001604052806000815250611f1e565b80611efa84612b9e565b600c604051602001611f0e93929190614111565b6040516020818303038152906040525b9150505b919050565b611f2f6123ed565b73ffffffffffffffffffffffffffffffffffffffff16611f4d611775565b73ffffffffffffffffffffffffffffffffffffffff1614611fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9a9061441d565b60405180910390fd5b8060118190555050565b600f5481565b611fbb6123ed565b73ffffffffffffffffffffffffffffffffffffffff16611fd9611775565b73ffffffffffffffffffffffffffffffffffffffff161461202f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120269061441d565b60405180910390fd5b80600c908051906020019061204592919061357c565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120e56123ed565b73ffffffffffffffffffffffffffffffffffffffff16612103611775565b73ffffffffffffffffffffffffffffffffffffffff1614612159576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121509061441d565b60405180910390fd5b601460006121679190613602565b818160149190612178929190613623565b505050565b6121856123ed565b73ffffffffffffffffffffffffffffffffffffffff166121a3611775565b73ffffffffffffffffffffffffffffffffffffffff16146121f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f09061441d565b60405180910390fd5b80600d908051906020019061220f92919061357c565b5050565b61221b6123ed565b73ffffffffffffffffffffffffffffffffffffffff16612239611775565b73ffffffffffffffffffffffffffffffffffffffff161461228f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122869061441d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f69061425d565b60405180910390fd5b6123088161285f565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806123d657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806123e657506123e582612cff565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166124d48361146f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612525826123f5565b612564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255b9061431d565b60405180910390fd5b600061256f8361146f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806125de57508373ffffffffffffffffffffffffffffffffffffffff166125c684610c43565b73ffffffffffffffffffffffffffffffffffffffff16145b806125ef57506125ee8185612049565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166126188261146f565b73ffffffffffffffffffffffffffffffffffffffff161461266e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126659061427d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d5906142dd565b60405180910390fd5b6126e9838383612d69565b6126f4600082612461565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612744919061477c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461279b919061469b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461285a838383612e7d565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61293f828260405180602001604052806000815250612e82565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a9906142fd565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612aa391906141e0565b60405180910390a3505050565b612abb8484846125f8565b612ac784848484612edd565b612b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612afd9061423d565b60405180910390fd5b50505050565b6060600b8054612b1b90614866565b80601f0160208091040260200160405190810160405280929190818152602001828054612b4790614866565b8015612b945780601f10612b6957610100808354040283529160200191612b94565b820191906000526020600020905b815481529060010190602001808311612b7757829003601f168201915b5050505050905090565b60606000821415612be6576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612cfa565b600082905060005b60008214612c18578080612c01906148c9565b915050600a82612c1191906146f1565b9150612bee565b60008167ffffffffffffffff811115612c3457612c33614a2e565b5b6040519080825280601f01601f191660200182016040528015612c665781602001600182028036833780820191505090505b5090505b60008514612cf357600182612c7f919061477c565b9150600a85612c8e9190614912565b6030612c9a919061469b565b60f81b818381518110612cb057612caf6149ff565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612cec91906146f1565b9450612c6a565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612d74838383613074565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612db757612db281613079565b612df6565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612df557612df483826130c2565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e3957612e348161322f565b612e78565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612e7757612e768282613300565b5b5b505050565b505050565b612e8c838361337f565b612e996000848484612edd565b612ed8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ecf9061423d565b60405180910390fd5b505050565b6000612efe8473ffffffffffffffffffffffffffffffffffffffff16613559565b15613067578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f276123ed565b8786866040518563ffffffff1660e01b8152600401612f499493929190614172565b602060405180830381600087803b158015612f6357600080fd5b505af1925050508015612f9457506040513d601f19601f82011682018060405250810190612f919190613ae9565b60015b613017573d8060008114612fc4576040519150601f19603f3d011682016040523d82523d6000602084013e612fc9565b606091505b5060008151141561300f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130069061423d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061306c565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016130cf846115af565b6130d9919061477c565b90506000600760008481526020019081526020016000205490508181146131be576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613243919061477c565b9050600060096000848152602001908152602001600020549050600060088381548110613273576132726149ff565b5b906000526020600020015490508060088381548110613295576132946149ff565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806132e4576132e36149d0565b5b6001900381819060005260206000200160009055905550505050565b600061330b836115af565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156133ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133e6906143dd565b60405180910390fd5b6133f8816123f5565b15613438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161342f9061429d565b60405180910390fd5b61344460008383612d69565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613494919061469b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461355560008383612e7d565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461358890614866565b90600052602060002090601f0160209004810192826135aa57600085556135f1565b82601f106135c357805160ff19168380011785556135f1565b828001600101855582156135f1579182015b828111156135f05782518255916020019190600101906135d5565b5b5090506135fe91906136c3565b5090565b508054600082559060005260206000209081019061362091906136c3565b50565b8280548282559060005260206000209081019282156136b2579160200282015b828111156136b157823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190613643565b5b5090506136bf91906136c3565b5090565b5b808211156136dc5760008160009055506001016136c4565b5090565b60006136f36136ee8461459d565b614578565b90508281526020810184848401111561370f5761370e614a6c565b5b61371a848285614824565b509392505050565b6000613735613730846145ce565b614578565b90508281526020810184848401111561375157613750614a6c565b5b61375c848285614824565b509392505050565b600081359050613773816150f3565b92915050565b60008083601f84011261378f5761378e614a62565b5b8235905067ffffffffffffffff8111156137ac576137ab614a5d565b5b6020830191508360208202830111156137c8576137c7614a67565b5b9250929050565b6000813590506137de8161510a565b92915050565b6000813590506137f381615121565b92915050565b60008151905061380881615121565b92915050565b600082601f83011261382357613822614a62565b5b81356138338482602086016136e0565b91505092915050565b600082601f83011261385157613850614a62565b5b8135613861848260208601613722565b91505092915050565b60008135905061387981615138565b92915050565b60006020828403121561389557613894614a76565b5b60006138a384828501613764565b91505092915050565b600080604083850312156138c3576138c2614a76565b5b60006138d185828601613764565b92505060206138e285828601613764565b9150509250929050565b60008060006060848603121561390557613904614a76565b5b600061391386828701613764565b935050602061392486828701613764565b92505060406139358682870161386a565b9150509250925092565b6000806000806080858703121561395957613958614a76565b5b600061396787828801613764565b945050602061397887828801613764565b93505060406139898782880161386a565b925050606085013567ffffffffffffffff8111156139aa576139a9614a71565b5b6139b68782880161380e565b91505092959194509250565b600080604083850312156139d9576139d8614a76565b5b60006139e785828601613764565b92505060206139f8858286016137cf565b9150509250929050565b60008060408385031215613a1957613a18614a76565b5b6000613a2785828601613764565b9250506020613a388582860161386a565b9150509250929050565b60008060208385031215613a5957613a58614a76565b5b600083013567ffffffffffffffff811115613a7757613a76614a71565b5b613a8385828601613779565b92509250509250929050565b600060208284031215613aa557613aa4614a76565b5b6000613ab3848285016137cf565b91505092915050565b600060208284031215613ad257613ad1614a76565b5b6000613ae0848285016137e4565b91505092915050565b600060208284031215613aff57613afe614a76565b5b6000613b0d848285016137f9565b91505092915050565b600060208284031215613b2c57613b2b614a76565b5b600082013567ffffffffffffffff811115613b4a57613b49614a71565b5b613b568482850161383c565b91505092915050565b600060208284031215613b7557613b74614a76565b5b6000613b838482850161386a565b91505092915050565b6000613b9883836140f3565b60208301905092915050565b613bad816147b0565b82525050565b6000613bbe82614624565b613bc88185614652565b9350613bd3836145ff565b8060005b83811015613c04578151613beb8882613b8c565b9750613bf683614645565b925050600181019050613bd7565b5085935050505092915050565b613c1a816147c2565b82525050565b6000613c2b8261462f565b613c358185614663565b9350613c45818560208601614833565b613c4e81614a7b565b840191505092915050565b6000613c648261463a565b613c6e818561467f565b9350613c7e818560208601614833565b613c8781614a7b565b840191505092915050565b6000613c9d8261463a565b613ca78185614690565b9350613cb7818560208601614833565b80840191505092915050565b60008154613cd081614866565b613cda8186614690565b94506001821660008114613cf55760018114613d0657613d39565b60ff19831686528186019350613d39565b613d0f8561460f565b60005b83811015613d3157815481890152600182019150602081019050613d12565b838801955050505b50505092915050565b6000613d4f602b8361467f565b9150613d5a82614a8c565b604082019050919050565b6000613d7260328361467f565b9150613d7d82614adb565b604082019050919050565b6000613d9560268361467f565b9150613da082614b2a565b604082019050919050565b6000613db860258361467f565b9150613dc382614b79565b604082019050919050565b6000613ddb601c8361467f565b9150613de682614bc8565b602082019050919050565b6000613dfe601c8361467f565b9150613e0982614bf1565b602082019050919050565b6000613e2160248361467f565b9150613e2c82614c1a565b604082019050919050565b6000613e4460198361467f565b9150613e4f82614c69565b602082019050919050565b6000613e67602c8361467f565b9150613e7282614c92565b604082019050919050565b6000613e8a60388361467f565b9150613e9582614ce1565b604082019050919050565b6000613ead602a8361467f565b9150613eb882614d30565b604082019050919050565b6000613ed060298361467f565b9150613edb82614d7f565b604082019050919050565b6000613ef360168361467f565b9150613efe82614dce565b602082019050919050565b6000613f1660248361467f565b9150613f2182614df7565b604082019050919050565b6000613f3960208361467f565b9150613f4482614e46565b602082019050919050565b6000613f5c602c8361467f565b9150613f6782614e6f565b604082019050919050565b6000613f7f60208361467f565b9150613f8a82614ebe565b602082019050919050565b6000613fa260168361467f565b9150613fad82614ee7565b602082019050919050565b6000613fc560048361467f565b9150613fd082614f10565b602082019050919050565b6000613fe8602f8361467f565b9150613ff382614f39565b604082019050919050565b600061400b60218361467f565b915061401682614f88565b604082019050919050565b600061402e600083614674565b915061403982614fd7565b600082019050919050565b600061405160128361467f565b915061405c82614fda565b602082019050919050565b600061407460318361467f565b915061407f82615003565b604082019050919050565b6000614097602c8361467f565b91506140a282615052565b604082019050919050565b60006140ba60178361467f565b91506140c5826150a1565b602082019050919050565b60006140dd601b8361467f565b91506140e8826150ca565b602082019050919050565b6140fc8161481a565b82525050565b61410b8161481a565b82525050565b600061411d8286613c92565b91506141298285613c92565b91506141358284613cc3565b9150819050949350505050565b600061414d82614021565b9150819050919050565b600060208201905061416c6000830184613ba4565b92915050565b60006080820190506141876000830187613ba4565b6141946020830186613ba4565b6141a16040830185614102565b81810360608301526141b38184613c20565b905095945050505050565b600060208201905081810360008301526141d88184613bb3565b905092915050565b60006020820190506141f56000830184613c11565b92915050565b600060208201905081810360008301526142158184613c59565b905092915050565b6000602082019050818103600083015261423681613d42565b9050919050565b6000602082019050818103600083015261425681613d65565b9050919050565b6000602082019050818103600083015261427681613d88565b9050919050565b6000602082019050818103600083015261429681613dab565b9050919050565b600060208201905081810360008301526142b681613dce565b9050919050565b600060208201905081810360008301526142d681613df1565b9050919050565b600060208201905081810360008301526142f681613e14565b9050919050565b6000602082019050818103600083015261431681613e37565b9050919050565b6000602082019050818103600083015261433681613e5a565b9050919050565b6000602082019050818103600083015261435681613e7d565b9050919050565b6000602082019050818103600083015261437681613ea0565b9050919050565b6000602082019050818103600083015261439681613ec3565b9050919050565b600060208201905081810360008301526143b681613ee6565b9050919050565b600060208201905081810360008301526143d681613f09565b9050919050565b600060208201905081810360008301526143f681613f2c565b9050919050565b6000602082019050818103600083015261441681613f4f565b9050919050565b6000602082019050818103600083015261443681613f72565b9050919050565b6000602082019050818103600083015261445681613f95565b9050919050565b6000602082019050818103600083015261447681613fb8565b9050919050565b6000602082019050818103600083015261449681613fdb565b9050919050565b600060208201905081810360008301526144b681613ffe565b9050919050565b600060208201905081810360008301526144d681614044565b9050919050565b600060208201905081810360008301526144f681614067565b9050919050565b600060208201905081810360008301526145168161408a565b9050919050565b60006020820190508181036000830152614536816140ad565b9050919050565b60006020820190508181036000830152614556816140d0565b9050919050565b60006020820190506145726000830184614102565b92915050565b6000614582614593565b905061458e8282614898565b919050565b6000604051905090565b600067ffffffffffffffff8211156145b8576145b7614a2e565b5b6145c182614a7b565b9050602081019050919050565b600067ffffffffffffffff8211156145e9576145e8614a2e565b5b6145f282614a7b565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006146a68261481a565b91506146b18361481a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146e6576146e5614943565b5b828201905092915050565b60006146fc8261481a565b91506147078361481a565b92508261471757614716614972565b5b828204905092915050565b600061472d8261481a565b91506147388361481a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561477157614770614943565b5b828202905092915050565b60006147878261481a565b91506147928361481a565b9250828210156147a5576147a4614943565b5b828203905092915050565b60006147bb826147fa565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614851578082015181840152602081019050614836565b83811115614860576000848401525b50505050565b6000600282049050600182168061487e57607f821691505b60208210811415614892576148916149a1565b5b50919050565b6148a182614a7b565b810181811067ffffffffffffffff821117156148c0576148bf614a2e565b5b80604052505050565b60006148d48261481a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561490757614906614943565b5b600182019050919050565b600061491d8261481a565b91506149288361481a565b92508261493857614937614972565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f736f6c6400000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6150fc816147b0565b811461510757600080fd5b50565b615113816147c2565b811461511e57600080fd5b50565b61512a816147ce565b811461513557600080fd5b50565b6151418161481a565b811461514c57600080fd5b5056fea2646970667358221220849f4a957f8211a0316266c0e967005030d219253c4b696e50d188332f659e7264736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000e4d617276656c476f6f73654e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054d474e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d586e62393272325078794d51447a78465a4a726832674857426b4865563743724845566576727756777439642f000000000000000000000000000000000000000000000000000000000000000000000000000000000047697066733a2f2f516d624643335a4b71324558674d5450396278714d527a664c685a4e31524636656f376f45796337727a5875326f2f68696464656e2e6a736f6e2e6a736f6e2f00000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061027d5760003560e01c80636352211e1161014f578063b88d4fde116100c1578063d5abeb011161007a578063d5abeb0114610992578063da3ef23f146109bd578063e985e9c5146109e6578063edec5f2714610a23578063f2c4ce1e14610a4c578063f2fde38b14610a755761027d565b8063b88d4fde14610870578063ba4e5c4914610899578063ba7d2c76146108d6578063c668286214610901578063c87b56dd1461092c578063d0eb26b0146109695761027d565b80638da5cb5b116101135780638da5cb5b1461079357806395d89b41146107be5780639c70b512146107e9578063a0712d6814610814578063a22cb46514610830578063a475b5dd146108595761027d565b80636352211e146106ae5780636c0360eb146106eb57806370a0823114610716578063715018a6146107535780637f00c7a61461076a5761027d565b80632f745c59116101f357806344a0d68a116101ac57806344a0d68a1461059e5780634f6ccce7146105c75780634febcc8614610604578063518302271461062f57806355f804b31461065a5780635c975abb146106835761027d565b80632f745c591461048b5780633af32abf146104c85780633c952764146105055780633ccfd60b1461052e57806342842e0e14610538578063438b6300146105615761027d565b8063095ea7b311610245578063095ea7b31461037b57806313faede6146103a457806318160ddd146103cf57806318cae269146103fa578063239c70ae1461043757806323b872dd146104625761027d565b806301ffc9a71461028257806302329a29146102bf57806306fdde03146102e8578063081812fc14610313578063081c8c4414610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613abc565b610a9e565b6040516102b691906141e0565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e19190613a8f565b610b18565b005b3480156102f457600080fd5b506102fd610bb1565b60405161030a91906141fb565b60405180910390f35b34801561031f57600080fd5b5061033a60048036038101906103359190613b5f565b610c43565b6040516103479190614157565b60405180910390f35b34801561035c57600080fd5b50610365610cc8565b60405161037291906141fb565b60405180910390f35b34801561038757600080fd5b506103a2600480360381019061039d9190613a02565b610d56565b005b3480156103b057600080fd5b506103b9610e6e565b6040516103c6919061455d565b60405180910390f35b3480156103db57600080fd5b506103e4610e74565b6040516103f1919061455d565b60405180910390f35b34801561040657600080fd5b50610421600480360381019061041c919061387f565b610e81565b60405161042e919061455d565b60405180910390f35b34801561044357600080fd5b5061044c610e99565b604051610459919061455d565b60405180910390f35b34801561046e57600080fd5b50610489600480360381019061048491906138ec565b610e9f565b005b34801561049757600080fd5b506104b260048036038101906104ad9190613a02565b610eff565b6040516104bf919061455d565b60405180910390f35b3480156104d457600080fd5b506104ef60048036038101906104ea919061387f565b610fa4565b6040516104fc91906141e0565b60405180910390f35b34801561051157600080fd5b5061052c60048036038101906105279190613a8f565b611053565b005b6105366110ec565b005b34801561054457600080fd5b5061055f600480360381019061055a91906138ec565b6111e8565b005b34801561056d57600080fd5b506105886004803603810190610583919061387f565b611208565b60405161059591906141be565b60405180910390f35b3480156105aa57600080fd5b506105c560048036038101906105c09190613b5f565b6112b6565b005b3480156105d357600080fd5b506105ee60048036038101906105e99190613b5f565b61133c565b6040516105fb919061455d565b60405180910390f35b34801561061057600080fd5b506106196113ad565b604051610626919061455d565b60405180910390f35b34801561063b57600080fd5b506106446113b3565b60405161065191906141e0565b60405180910390f35b34801561066657600080fd5b50610681600480360381019061067c9190613b16565b6113c6565b005b34801561068f57600080fd5b5061069861145c565b6040516106a591906141e0565b60405180910390f35b3480156106ba57600080fd5b506106d560048036038101906106d09190613b5f565b61146f565b6040516106e29190614157565b60405180910390f35b3480156106f757600080fd5b50610700611521565b60405161070d91906141fb565b60405180910390f35b34801561072257600080fd5b5061073d6004803603810190610738919061387f565b6115af565b60405161074a919061455d565b60405180910390f35b34801561075f57600080fd5b50610768611667565b005b34801561077657600080fd5b50610791600480360381019061078c9190613b5f565b6116ef565b005b34801561079f57600080fd5b506107a8611775565b6040516107b59190614157565b60405180910390f35b3480156107ca57600080fd5b506107d361179f565b6040516107e091906141fb565b60405180910390f35b3480156107f557600080fd5b506107fe611831565b60405161080b91906141e0565b60405180910390f35b61082e60048036038101906108299190613b5f565b611844565b005b34801561083c57600080fd5b50610857600480360381019061085291906139c2565b611bea565b005b34801561086557600080fd5b5061086e611c00565b005b34801561087c57600080fd5b506108976004803603810190610892919061393f565b611c99565b005b3480156108a557600080fd5b506108c060048036038101906108bb9190613b5f565b611cfb565b6040516108cd9190614157565b60405180910390f35b3480156108e257600080fd5b506108eb611d3a565b6040516108f8919061455d565b60405180910390f35b34801561090d57600080fd5b50610916611d40565b60405161092391906141fb565b60405180910390f35b34801561093857600080fd5b50610953600480360381019061094e9190613b5f565b611dce565b60405161096091906141fb565b60405180910390f35b34801561097557600080fd5b50610990600480360381019061098b9190613b5f565b611f27565b005b34801561099e57600080fd5b506109a7611fad565b6040516109b4919061455d565b60405180910390f35b3480156109c957600080fd5b506109e460048036038101906109df9190613b16565b611fb3565b005b3480156109f257600080fd5b50610a0d6004803603810190610a0891906138ac565b612049565b604051610a1a91906141e0565b60405180910390f35b348015610a2f57600080fd5b50610a4a6004803603810190610a459190613a42565b6120dd565b005b348015610a5857600080fd5b50610a736004803603810190610a6e9190613b16565b61217d565b005b348015610a8157600080fd5b50610a9c6004803603810190610a97919061387f565b612213565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b115750610b108261230b565b5b9050919050565b610b206123ed565b73ffffffffffffffffffffffffffffffffffffffff16610b3e611775565b73ffffffffffffffffffffffffffffffffffffffff1614610b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8b9061441d565b60405180910390fd5b80601360006101000a81548160ff02191690831515021790555050565b606060008054610bc090614866565b80601f0160208091040260200160405190810160405280929190818152602001828054610bec90614866565b8015610c395780601f10610c0e57610100808354040283529160200191610c39565b820191906000526020600020905b815481529060010190602001808311610c1c57829003601f168201915b5050505050905090565b6000610c4e826123f5565b610c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c84906143fd565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610cd590614866565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0190614866565b8015610d4e5780601f10610d2357610100808354040283529160200191610d4e565b820191906000526020600020905b815481529060010190602001808311610d3157829003601f168201915b505050505081565b6000610d618261146f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc99061449d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610df16123ed565b73ffffffffffffffffffffffffffffffffffffffff161480610e205750610e1f81610e1a6123ed565b612049565b5b610e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e569061433d565b60405180910390fd5b610e698383612461565b505050565b600e5481565b6000600880549050905090565b60156020528060005260406000206000915090505481565b60105481565b610eb0610eaa6123ed565b8261251a565b610eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee6906144dd565b60405180910390fd5b610efa8383836125f8565b505050565b6000610f0a836115af565b8210610f4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f429061421d565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600080600090505b601480549050811015611048578273ffffffffffffffffffffffffffffffffffffffff1660148281548110610fe457610fe36149ff565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561103557600191505061104e565b8080611040906148c9565b915050610fac565b50600090505b919050565b61105b6123ed565b73ffffffffffffffffffffffffffffffffffffffff16611079611775565b73ffffffffffffffffffffffffffffffffffffffff16146110cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c69061441d565b60405180910390fd5b80601360026101000a81548160ff02191690831515021790555050565b6110f46123ed565b73ffffffffffffffffffffffffffffffffffffffff16611112611775565b73ffffffffffffffffffffffffffffffffffffffff1614611168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115f9061441d565b60405180910390fd5b6000611172611775565b73ffffffffffffffffffffffffffffffffffffffff164760405161119590614142565b60006040518083038185875af1925050503d80600081146111d2576040519150601f19603f3d011682016040523d82523d6000602084013e6111d7565b606091505b50509050806111e557600080fd5b50565b61120383838360405180602001604052806000815250611c99565b505050565b60606000611215836115af565b905060008167ffffffffffffffff81111561123357611232614a2e565b5b6040519080825280602002602001820160405280156112615781602001602082028036833780820191505090505b50905060005b828110156112ab576112798582610eff565b82828151811061128c5761128b6149ff565b5b60200260200101818152505080806112a3906148c9565b915050611267565b508092505050919050565b6112be6123ed565b73ffffffffffffffffffffffffffffffffffffffff166112dc611775565b73ffffffffffffffffffffffffffffffffffffffff1614611332576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113299061441d565b60405180910390fd5b80600e8190555050565b6000611346610e74565b8210611387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137e906144fd565b60405180910390fd5b6008828154811061139b5761139a6149ff565b5b90600052602060002001549050919050565b60125481565b601360019054906101000a900460ff1681565b6113ce6123ed565b73ffffffffffffffffffffffffffffffffffffffff166113ec611775565b73ffffffffffffffffffffffffffffffffffffffff1614611442576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114399061441d565b60405180910390fd5b80600b908051906020019061145892919061357c565b5050565b601360009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611518576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150f9061437d565b60405180910390fd5b80915050919050565b600b805461152e90614866565b80601f016020809104026020016040519081016040528092919081815260200182805461155a90614866565b80156115a75780601f1061157c576101008083540402835291602001916115a7565b820191906000526020600020905b81548152906001019060200180831161158a57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611620576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116179061435d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61166f6123ed565b73ffffffffffffffffffffffffffffffffffffffff1661168d611775565b73ffffffffffffffffffffffffffffffffffffffff16146116e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116da9061441d565b60405180910390fd5b6116ed600061285f565b565b6116f76123ed565b73ffffffffffffffffffffffffffffffffffffffff16611715611775565b73ffffffffffffffffffffffffffffffffffffffff161461176b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117629061441d565b60405180910390fd5b8060108190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546117ae90614866565b80601f01602080910402602001604051908101604052809291908181526020018280546117da90614866565b80156118275780601f106117fc57610100808354040283529160200191611827565b820191906000526020600020905b81548152906001019060200180831161180a57829003601f168201915b5050505050905090565b601360029054906101000a900460ff1681565b601360009054906101000a900460ff1615611894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188b9061443d565b60405180910390fd5b600061189e610e74565b905060006118aa610e74565b9050600083116118ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e69061453d565b60405180910390fd5b601054831115611934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192b906143bd565b60405180910390fd5b600f548383611943919061469b565b1115611984576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197b9061439d565b60405180910390fd5b61198c611775565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611b595760011515601360029054906101000a900460ff1615151415611b08576119e333610fa4565b611a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a199061451d565b60405180910390fd5b6000601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506011548482611a75919061469b565b1115611ab6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aad906142bd565b60405180910390fd5b6012548483611ac5919061469b565b1115611b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afd9061445d565b60405180910390fd5b505b82600e54611b169190614722565b341015611b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4f906144bd565b60405180910390fd5b5b6000600190505b838111611be457601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611bb7906148c9565b9190505550611bd1338285611bcc919061469b565b612925565b8080611bdc906148c9565b915050611b60565b50505050565b611bfc611bf56123ed565b8383612943565b5050565b611c086123ed565b73ffffffffffffffffffffffffffffffffffffffff16611c26611775565b73ffffffffffffffffffffffffffffffffffffffff1614611c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c739061441d565b60405180910390fd5b6001601360016101000a81548160ff021916908315150217905550565b611caa611ca46123ed565b8361251a565b611ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce0906144dd565b60405180910390fd5b611cf584848484612ab0565b50505050565b60148181548110611d0b57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b600c8054611d4d90614866565b80601f0160208091040260200160405190810160405280929190818152602001828054611d7990614866565b8015611dc65780601f10611d9b57610100808354040283529160200191611dc6565b820191906000526020600020905b815481529060010190602001808311611da957829003601f168201915b505050505081565b6060611dd9826123f5565b611e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0f9061447d565b60405180910390fd5b60001515601360019054906101000a900460ff1615151415611ec657600d8054611e4190614866565b80601f0160208091040260200160405190810160405280929190818152602001828054611e6d90614866565b8015611eba5780601f10611e8f57610100808354040283529160200191611eba565b820191906000526020600020905b815481529060010190602001808311611e9d57829003601f168201915b50505050509050611f22565b6000611ed0612b0c565b90506000815111611ef05760405180602001604052806000815250611f1e565b80611efa84612b9e565b600c604051602001611f0e93929190614111565b6040516020818303038152906040525b9150505b919050565b611f2f6123ed565b73ffffffffffffffffffffffffffffffffffffffff16611f4d611775565b73ffffffffffffffffffffffffffffffffffffffff1614611fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9a9061441d565b60405180910390fd5b8060118190555050565b600f5481565b611fbb6123ed565b73ffffffffffffffffffffffffffffffffffffffff16611fd9611775565b73ffffffffffffffffffffffffffffffffffffffff161461202f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120269061441d565b60405180910390fd5b80600c908051906020019061204592919061357c565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120e56123ed565b73ffffffffffffffffffffffffffffffffffffffff16612103611775565b73ffffffffffffffffffffffffffffffffffffffff1614612159576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121509061441d565b60405180910390fd5b601460006121679190613602565b818160149190612178929190613623565b505050565b6121856123ed565b73ffffffffffffffffffffffffffffffffffffffff166121a3611775565b73ffffffffffffffffffffffffffffffffffffffff16146121f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f09061441d565b60405180910390fd5b80600d908051906020019061220f92919061357c565b5050565b61221b6123ed565b73ffffffffffffffffffffffffffffffffffffffff16612239611775565b73ffffffffffffffffffffffffffffffffffffffff161461228f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122869061441d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f69061425d565b60405180910390fd5b6123088161285f565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806123d657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806123e657506123e582612cff565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166124d48361146f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612525826123f5565b612564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255b9061431d565b60405180910390fd5b600061256f8361146f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806125de57508373ffffffffffffffffffffffffffffffffffffffff166125c684610c43565b73ffffffffffffffffffffffffffffffffffffffff16145b806125ef57506125ee8185612049565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166126188261146f565b73ffffffffffffffffffffffffffffffffffffffff161461266e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126659061427d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d5906142dd565b60405180910390fd5b6126e9838383612d69565b6126f4600082612461565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612744919061477c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461279b919061469b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461285a838383612e7d565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61293f828260405180602001604052806000815250612e82565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a9906142fd565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612aa391906141e0565b60405180910390a3505050565b612abb8484846125f8565b612ac784848484612edd565b612b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612afd9061423d565b60405180910390fd5b50505050565b6060600b8054612b1b90614866565b80601f0160208091040260200160405190810160405280929190818152602001828054612b4790614866565b8015612b945780601f10612b6957610100808354040283529160200191612b94565b820191906000526020600020905b815481529060010190602001808311612b7757829003601f168201915b5050505050905090565b60606000821415612be6576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612cfa565b600082905060005b60008214612c18578080612c01906148c9565b915050600a82612c1191906146f1565b9150612bee565b60008167ffffffffffffffff811115612c3457612c33614a2e565b5b6040519080825280601f01601f191660200182016040528015612c665781602001600182028036833780820191505090505b5090505b60008514612cf357600182612c7f919061477c565b9150600a85612c8e9190614912565b6030612c9a919061469b565b60f81b818381518110612cb057612caf6149ff565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612cec91906146f1565b9450612c6a565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612d74838383613074565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612db757612db281613079565b612df6565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612df557612df483826130c2565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e3957612e348161322f565b612e78565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612e7757612e768282613300565b5b5b505050565b505050565b612e8c838361337f565b612e996000848484612edd565b612ed8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ecf9061423d565b60405180910390fd5b505050565b6000612efe8473ffffffffffffffffffffffffffffffffffffffff16613559565b15613067578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f276123ed565b8786866040518563ffffffff1660e01b8152600401612f499493929190614172565b602060405180830381600087803b158015612f6357600080fd5b505af1925050508015612f9457506040513d601f19601f82011682018060405250810190612f919190613ae9565b60015b613017573d8060008114612fc4576040519150601f19603f3d011682016040523d82523d6000602084013e612fc9565b606091505b5060008151141561300f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130069061423d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061306c565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016130cf846115af565b6130d9919061477c565b90506000600760008481526020019081526020016000205490508181146131be576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613243919061477c565b9050600060096000848152602001908152602001600020549050600060088381548110613273576132726149ff565b5b906000526020600020015490508060088381548110613295576132946149ff565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806132e4576132e36149d0565b5b6001900381819060005260206000200160009055905550505050565b600061330b836115af565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156133ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133e6906143dd565b60405180910390fd5b6133f8816123f5565b15613438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161342f9061429d565b60405180910390fd5b61344460008383612d69565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613494919061469b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461355560008383612e7d565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461358890614866565b90600052602060002090601f0160209004810192826135aa57600085556135f1565b82601f106135c357805160ff19168380011785556135f1565b828001600101855582156135f1579182015b828111156135f05782518255916020019190600101906135d5565b5b5090506135fe91906136c3565b5090565b508054600082559060005260206000209081019061362091906136c3565b50565b8280548282559060005260206000209081019282156136b2579160200282015b828111156136b157823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190613643565b5b5090506136bf91906136c3565b5090565b5b808211156136dc5760008160009055506001016136c4565b5090565b60006136f36136ee8461459d565b614578565b90508281526020810184848401111561370f5761370e614a6c565b5b61371a848285614824565b509392505050565b6000613735613730846145ce565b614578565b90508281526020810184848401111561375157613750614a6c565b5b61375c848285614824565b509392505050565b600081359050613773816150f3565b92915050565b60008083601f84011261378f5761378e614a62565b5b8235905067ffffffffffffffff8111156137ac576137ab614a5d565b5b6020830191508360208202830111156137c8576137c7614a67565b5b9250929050565b6000813590506137de8161510a565b92915050565b6000813590506137f381615121565b92915050565b60008151905061380881615121565b92915050565b600082601f83011261382357613822614a62565b5b81356138338482602086016136e0565b91505092915050565b600082601f83011261385157613850614a62565b5b8135613861848260208601613722565b91505092915050565b60008135905061387981615138565b92915050565b60006020828403121561389557613894614a76565b5b60006138a384828501613764565b91505092915050565b600080604083850312156138c3576138c2614a76565b5b60006138d185828601613764565b92505060206138e285828601613764565b9150509250929050565b60008060006060848603121561390557613904614a76565b5b600061391386828701613764565b935050602061392486828701613764565b92505060406139358682870161386a565b9150509250925092565b6000806000806080858703121561395957613958614a76565b5b600061396787828801613764565b945050602061397887828801613764565b93505060406139898782880161386a565b925050606085013567ffffffffffffffff8111156139aa576139a9614a71565b5b6139b68782880161380e565b91505092959194509250565b600080604083850312156139d9576139d8614a76565b5b60006139e785828601613764565b92505060206139f8858286016137cf565b9150509250929050565b60008060408385031215613a1957613a18614a76565b5b6000613a2785828601613764565b9250506020613a388582860161386a565b9150509250929050565b60008060208385031215613a5957613a58614a76565b5b600083013567ffffffffffffffff811115613a7757613a76614a71565b5b613a8385828601613779565b92509250509250929050565b600060208284031215613aa557613aa4614a76565b5b6000613ab3848285016137cf565b91505092915050565b600060208284031215613ad257613ad1614a76565b5b6000613ae0848285016137e4565b91505092915050565b600060208284031215613aff57613afe614a76565b5b6000613b0d848285016137f9565b91505092915050565b600060208284031215613b2c57613b2b614a76565b5b600082013567ffffffffffffffff811115613b4a57613b49614a71565b5b613b568482850161383c565b91505092915050565b600060208284031215613b7557613b74614a76565b5b6000613b838482850161386a565b91505092915050565b6000613b9883836140f3565b60208301905092915050565b613bad816147b0565b82525050565b6000613bbe82614624565b613bc88185614652565b9350613bd3836145ff565b8060005b83811015613c04578151613beb8882613b8c565b9750613bf683614645565b925050600181019050613bd7565b5085935050505092915050565b613c1a816147c2565b82525050565b6000613c2b8261462f565b613c358185614663565b9350613c45818560208601614833565b613c4e81614a7b565b840191505092915050565b6000613c648261463a565b613c6e818561467f565b9350613c7e818560208601614833565b613c8781614a7b565b840191505092915050565b6000613c9d8261463a565b613ca78185614690565b9350613cb7818560208601614833565b80840191505092915050565b60008154613cd081614866565b613cda8186614690565b94506001821660008114613cf55760018114613d0657613d39565b60ff19831686528186019350613d39565b613d0f8561460f565b60005b83811015613d3157815481890152600182019150602081019050613d12565b838801955050505b50505092915050565b6000613d4f602b8361467f565b9150613d5a82614a8c565b604082019050919050565b6000613d7260328361467f565b9150613d7d82614adb565b604082019050919050565b6000613d9560268361467f565b9150613da082614b2a565b604082019050919050565b6000613db860258361467f565b9150613dc382614b79565b604082019050919050565b6000613ddb601c8361467f565b9150613de682614bc8565b602082019050919050565b6000613dfe601c8361467f565b9150613e0982614bf1565b602082019050919050565b6000613e2160248361467f565b9150613e2c82614c1a565b604082019050919050565b6000613e4460198361467f565b9150613e4f82614c69565b602082019050919050565b6000613e67602c8361467f565b9150613e7282614c92565b604082019050919050565b6000613e8a60388361467f565b9150613e9582614ce1565b604082019050919050565b6000613ead602a8361467f565b9150613eb882614d30565b604082019050919050565b6000613ed060298361467f565b9150613edb82614d7f565b604082019050919050565b6000613ef360168361467f565b9150613efe82614dce565b602082019050919050565b6000613f1660248361467f565b9150613f2182614df7565b604082019050919050565b6000613f3960208361467f565b9150613f4482614e46565b602082019050919050565b6000613f5c602c8361467f565b9150613f6782614e6f565b604082019050919050565b6000613f7f60208361467f565b9150613f8a82614ebe565b602082019050919050565b6000613fa260168361467f565b9150613fad82614ee7565b602082019050919050565b6000613fc560048361467f565b9150613fd082614f10565b602082019050919050565b6000613fe8602f8361467f565b9150613ff382614f39565b604082019050919050565b600061400b60218361467f565b915061401682614f88565b604082019050919050565b600061402e600083614674565b915061403982614fd7565b600082019050919050565b600061405160128361467f565b915061405c82614fda565b602082019050919050565b600061407460318361467f565b915061407f82615003565b604082019050919050565b6000614097602c8361467f565b91506140a282615052565b604082019050919050565b60006140ba60178361467f565b91506140c5826150a1565b602082019050919050565b60006140dd601b8361467f565b91506140e8826150ca565b602082019050919050565b6140fc8161481a565b82525050565b61410b8161481a565b82525050565b600061411d8286613c92565b91506141298285613c92565b91506141358284613cc3565b9150819050949350505050565b600061414d82614021565b9150819050919050565b600060208201905061416c6000830184613ba4565b92915050565b60006080820190506141876000830187613ba4565b6141946020830186613ba4565b6141a16040830185614102565b81810360608301526141b38184613c20565b905095945050505050565b600060208201905081810360008301526141d88184613bb3565b905092915050565b60006020820190506141f56000830184613c11565b92915050565b600060208201905081810360008301526142158184613c59565b905092915050565b6000602082019050818103600083015261423681613d42565b9050919050565b6000602082019050818103600083015261425681613d65565b9050919050565b6000602082019050818103600083015261427681613d88565b9050919050565b6000602082019050818103600083015261429681613dab565b9050919050565b600060208201905081810360008301526142b681613dce565b9050919050565b600060208201905081810360008301526142d681613df1565b9050919050565b600060208201905081810360008301526142f681613e14565b9050919050565b6000602082019050818103600083015261431681613e37565b9050919050565b6000602082019050818103600083015261433681613e5a565b9050919050565b6000602082019050818103600083015261435681613e7d565b9050919050565b6000602082019050818103600083015261437681613ea0565b9050919050565b6000602082019050818103600083015261439681613ec3565b9050919050565b600060208201905081810360008301526143b681613ee6565b9050919050565b600060208201905081810360008301526143d681613f09565b9050919050565b600060208201905081810360008301526143f681613f2c565b9050919050565b6000602082019050818103600083015261441681613f4f565b9050919050565b6000602082019050818103600083015261443681613f72565b9050919050565b6000602082019050818103600083015261445681613f95565b9050919050565b6000602082019050818103600083015261447681613fb8565b9050919050565b6000602082019050818103600083015261449681613fdb565b9050919050565b600060208201905081810360008301526144b681613ffe565b9050919050565b600060208201905081810360008301526144d681614044565b9050919050565b600060208201905081810360008301526144f681614067565b9050919050565b600060208201905081810360008301526145168161408a565b9050919050565b60006020820190508181036000830152614536816140ad565b9050919050565b60006020820190508181036000830152614556816140d0565b9050919050565b60006020820190506145726000830184614102565b92915050565b6000614582614593565b905061458e8282614898565b919050565b6000604051905090565b600067ffffffffffffffff8211156145b8576145b7614a2e565b5b6145c182614a7b565b9050602081019050919050565b600067ffffffffffffffff8211156145e9576145e8614a2e565b5b6145f282614a7b565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006146a68261481a565b91506146b18361481a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146e6576146e5614943565b5b828201905092915050565b60006146fc8261481a565b91506147078361481a565b92508261471757614716614972565b5b828204905092915050565b600061472d8261481a565b91506147388361481a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561477157614770614943565b5b828202905092915050565b60006147878261481a565b91506147928361481a565b9250828210156147a5576147a4614943565b5b828203905092915050565b60006147bb826147fa565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614851578082015181840152602081019050614836565b83811115614860576000848401525b50505050565b6000600282049050600182168061487e57607f821691505b60208210811415614892576148916149a1565b5b50919050565b6148a182614a7b565b810181811067ffffffffffffffff821117156148c0576148bf614a2e565b5b80604052505050565b60006148d48261481a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561490757614906614943565b5b600182019050919050565b600061491d8261481a565b91506149288361481a565b92508261493857614937614972565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f736f6c6400000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6150fc816147b0565b811461510757600080fd5b50565b615113816147c2565b811461511e57600080fd5b50565b61512a816147ce565b811461513557600080fd5b50565b6151418161481a565b811461514c57600080fd5b5056fea2646970667358221220849f4a957f8211a0316266c0e967005030d219253c4b696e50d188332f659e7264736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000e4d617276656c476f6f73654e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054d474e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d586e62393272325078794d51447a78465a4a726832674857426b4865563743724845566576727756777439642f000000000000000000000000000000000000000000000000000000000000000000000000000000000047697066733a2f2f516d624643335a4b71324558674d5450396278714d527a664c685a4e31524636656f376f45796337727a5875326f2f68696464656e2e6a736f6e2e6a736f6e2f00000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): MarvelGooseNFT
Arg [1] : _symbol (string): MGNFT
Arg [2] : _initBaseURI (string): ipfs://QmXnb92r2PxyMQDzxFZJrh2gHWBkHeV7CrHEVevrwVwt9d/
Arg [3] : _initNotRevealedUri (string): ipfs://QmbFC3ZKq2EXgMTP9bxqMRzfLhZN1RF6eo7oEyc7rzXu2o/hidden.json.json/

-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [5] : 4d617276656c476f6f73654e4654000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 4d474e4654000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d586e62393272325078794d51447a78465a4a7268326748
Arg [10] : 57426b4865563743724845566576727756777439642f00000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000047
Arg [12] : 697066733a2f2f516d624643335a4b71324558674d5450396278714d527a664c
Arg [13] : 685a4e31524636656f376f45796337727a5875326f2f68696464656e2e6a736f
Arg [14] : 6e2e6a736f6e2f00000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

45543:4388:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39314:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49448:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26134:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27693:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45701:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27216:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45734:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39954:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46069:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45805:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28443:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39622:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47577:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49529:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49783:145;;;:::i;:::-;;28853:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47822:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48880:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40144:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45887:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45955:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49088:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45924:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25828:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45633:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25558:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4730:103;;;;;;;;;;;;;:::i;:::-;;48966:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4079:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26303:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45988:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46524:1045;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27986:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48695:65;;;;;;;;;;;;;:::i;:::-;;29109:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46027:37;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45843:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45659:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48176:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48768:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45770:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49192:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28212:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49632:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49322:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4988:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39314:224;39416:4;39455:35;39440:50;;;:11;:50;;;;:90;;;;39494:36;39518:11;39494:23;:36::i;:::-;39440:90;39433:97;;39314:224;;;:::o;49448:73::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49509:6:::1;49500;;:15;;;;;;;;;;;;;;;;;;49448:73:::0;:::o;26134:100::-;26188:13;26221:5;26214:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26134:100;:::o;27693:221::-;27769:7;27797:16;27805:7;27797;:16::i;:::-;27789:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27882:15;:24;27898:7;27882:24;;;;;;;;;;;;;;;;;;;;;27875:31;;27693:221;;;:::o;45701:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27216:411::-;27297:13;27313:23;27328:7;27313:14;:23::i;:::-;27297:39;;27361:5;27355:11;;:2;:11;;;;27347:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27455:5;27439:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27464:37;27481:5;27488:12;:10;:12::i;:::-;27464:16;:37::i;:::-;27439:62;27417:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;27598:21;27607:2;27611:7;27598:8;:21::i;:::-;27286:341;27216:411;;:::o;45734:31::-;;;;:::o;39954:113::-;40015:7;40042:10;:17;;;;40035:24;;39954:113;:::o;46069:55::-;;;;;;;;;;;;;;;;;:::o;45805:33::-;;;;:::o;28443:339::-;28638:41;28657:12;:10;:12::i;:::-;28671:7;28638:18;:41::i;:::-;28630:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28746:28;28756:4;28762:2;28766:7;28746:9;:28::i;:::-;28443:339;;;:::o;39622:256::-;39719:7;39755:23;39772:5;39755:16;:23::i;:::-;39747:5;:31;39739:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;39844:12;:19;39857:5;39844:19;;;;;;;;;;;;;;;:26;39864:5;39844:26;;;;;;;;;;;;39837:33;;39622:256;;;;:::o;47577:239::-;47636:4;47654:6;47663:1;47654:10;;47649:143;47670:20;:27;;;;47666:1;:31;47649:143;;;47744:5;47717:32;;:20;47738:1;47717:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:32;;;47713:72;;;47771:4;47764:11;;;;;47713:72;47699:3;;;;;:::i;:::-;;;;47649:143;;;;47805:5;47798:12;;47577:239;;;;:::o;49529:95::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49612:6:::1;49594:15;;:24;;;;;;;;;;;;;;;;;;49529:95:::0;:::o;49783:145::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49836:7:::1;49857;:5;:7::i;:::-;49849:21;;49878;49849:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49835:69;;;49919:2;49911:11;;;::::0;::::1;;49828:100;49783:145::o:0;28853:185::-;28991:39;29008:4;29014:2;29018:7;28991:39;;;;;;;;;;;;:16;:39::i;:::-;28853:185;;;:::o;47822:348::-;47897:16;47925:23;47951:17;47961:6;47951:9;:17::i;:::-;47925:43;;47975:25;48017:15;48003:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47975:58;;48045:9;48040:103;48060:15;48056:1;:19;48040:103;;;48105:30;48125:6;48133:1;48105:19;:30::i;:::-;48091:8;48100:1;48091:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;48077:3;;;;;:::i;:::-;;;;48040:103;;;;48156:8;48149:15;;;;47822:348;;;:::o;48880:80::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48946:8:::1;48939:4;:15;;;;48880:80:::0;:::o;40144:233::-;40219:7;40255:30;:28;:30::i;:::-;40247:5;:38;40239:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;40352:10;40363:5;40352:17;;;;;;;;:::i;:::-;;;;;;;;;;40345:24;;40144:233;;;:::o;45887:32::-;;;;:::o;45955:28::-;;;;;;;;;;;;;:::o;49088:98::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49169:11:::1;49159:7;:21;;;;;;;;;;;;:::i;:::-;;49088:98:::0;:::o;45924:26::-;;;;;;;;;;;;;:::o;25828:239::-;25900:7;25920:13;25936:7;:16;25944:7;25936:16;;;;;;;;;;;;;;;;;;;;;25920:32;;25988:1;25971:19;;:5;:19;;;;25963:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26054:5;26047:12;;;25828:239;;;:::o;45633:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25558:208::-;25630:7;25675:1;25658:19;;:5;:19;;;;25650:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;25742:9;:16;25752:5;25742:16;;;;;;;;;;;;;;;;25735:23;;25558:208;;;:::o;4730:103::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;48966:116::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49059:17:::1;49043:13;:33;;;;48966:116:::0;:::o;4079:87::-;4125:7;4152:6;;;;;;;;;;;4145:13;;4079:87;:::o;26303:104::-;26359:13;26392:7;26385:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26303:104;:::o;45988:34::-;;;;;;;;;;;;;:::o;46524:1045::-;46590:6;;;;;;;;;;;46589:7;46581:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;46630:14;46647:13;:11;:13::i;:::-;46630:30;;46667:16;46686:13;:11;:13::i;:::-;46667:32;;46728:1;46714:11;:15;46706:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;46791:13;;46776:11;:28;;46768:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;46884:9;;46869:11;46860:6;:20;;;;:::i;:::-;:33;;46852:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46947:7;:5;:7::i;:::-;46933:21;;:10;:21;;;46929:485;;46989:4;46970:23;;:15;;;;;;;;;;;:23;;;46967:367;;;47018:25;47032:10;47018:13;:25::i;:::-;47010:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;47086:24;47113:20;:32;47134:10;47113:32;;;;;;;;;;;;;;;;47086:59;;47202:18;;47187:11;47168:16;:30;;;;:::i;:::-;:52;;47160:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;47302:11;;47287;47276:8;:22;;;;:::i;:::-;:37;;47268:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;46995:339;46967:367;47372:11;47365:4;;:18;;;;:::i;:::-;47352:9;:31;;47344:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;46929:485;47431:9;47443:1;47431:13;;47426:138;47451:11;47446:1;:16;47426:138;;47480:20;:32;47501:10;47480:32;;;;;;;;;;;;;;;;:34;;;;;;;;;:::i;:::-;;;;;;47523:33;47533:10;47554:1;47545:6;:10;;;;:::i;:::-;47523:9;:33::i;:::-;47464:3;;;;;:::i;:::-;;;;47426:138;;;;46574:995;;46524:1045;:::o;27986:155::-;28081:52;28100:12;:10;:12::i;:::-;28114:8;28124;28081:18;:52::i;:::-;27986:155;;:::o;48695:65::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48750:4:::1;48739:8;;:15;;;;;;;;;;;;;;;;;;48695:65::o:0;29109:328::-;29284:41;29303:12;:10;:12::i;:::-;29317:7;29284:18;:41::i;:::-;29276:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29390:39;29404:4;29410:2;29414:7;29423:5;29390:13;:39::i;:::-;29109:328;;;;:::o;46027:37::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45843:39::-;;;;:::o;45659:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48176:497::-;48274:13;48315:16;48323:7;48315;:16::i;:::-;48299:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;48424:5;48412:17;;:8;;;;;;;;;;;:17;;;48409:62;;;48449:14;48442:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48409:62;48479:28;48510:10;:8;:10::i;:::-;48479:41;;48565:1;48540:14;48534:28;:32;:133;;;;;;;;;;;;;;;;;48602:14;48618:18;:7;:16;:18::i;:::-;48638:13;48585:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48534:133;48527:140;;;48176:497;;;;:::o;48768:104::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48860:6:::1;48839:18;:27;;;;48768:104:::0;:::o;45770:30::-;;;;:::o;49192:122::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49291:17:::1;49275:13;:33;;;;;;;;;;;;:::i;:::-;;49192:122:::0;:::o;28212:164::-;28309:4;28333:18;:25;28352:5;28333:25;;;;;;;;;;;;;;;:35;28359:8;28333:35;;;;;;;;;;;;;;;;;;;;;;;;;28326:42;;28212:164;;;;:::o;49632:144::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49714:20:::1;;49707:27;;;;:::i;:::-;49764:6;;49741:20;:29;;;;;;;:::i;:::-;;49632:144:::0;;:::o;49322:120::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49421:15:::1;49404:14;:32;;;;;;;;;;;;:::i;:::-;;49322:120:::0;:::o;4988:201::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5097:1:::1;5077:22;;:8;:22;;;;5069:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;25189:305::-;25291:4;25343:25;25328:40;;;:11;:40;;;;:105;;;;25400:33;25385:48;;;:11;:48;;;;25328:105;:158;;;;25450:36;25474:11;25450:23;:36::i;:::-;25328:158;25308:178;;25189:305;;;:::o;2803:98::-;2856:7;2883:10;2876:17;;2803:98;:::o;30947:127::-;31012:4;31064:1;31036:30;;:7;:16;31044:7;31036:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31029:37;;30947:127;;;:::o;35093:174::-;35195:2;35168:15;:24;35184:7;35168:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35251:7;35247:2;35213:46;;35222:23;35237:7;35222:14;:23::i;:::-;35213:46;;;;;;;;;;;;35093:174;;:::o;31241:348::-;31334:4;31359:16;31367:7;31359;:16::i;:::-;31351:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31435:13;31451:23;31466:7;31451:14;:23::i;:::-;31435:39;;31504:5;31493:16;;:7;:16;;;:51;;;;31537:7;31513:31;;:20;31525:7;31513:11;:20::i;:::-;:31;;;31493:51;:87;;;;31548:32;31565:5;31572:7;31548:16;:32::i;:::-;31493:87;31485:96;;;31241:348;;;;:::o;34350:625::-;34509:4;34482:31;;:23;34497:7;34482:14;:23::i;:::-;:31;;;34474:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;34588:1;34574:16;;:2;:16;;;;34566:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;34644:39;34665:4;34671:2;34675:7;34644:20;:39::i;:::-;34748:29;34765:1;34769:7;34748:8;:29::i;:::-;34809:1;34790:9;:15;34800:4;34790:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;34838:1;34821:9;:13;34831:2;34821:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34869:2;34850:7;:16;34858:7;34850:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34908:7;34904:2;34889:27;;34898:4;34889:27;;;;;;;;;;;;34929:38;34949:4;34955:2;34959:7;34929:19;:38::i;:::-;34350:625;;;:::o;5349:191::-;5423:16;5442:6;;;;;;;;;;;5423:25;;5468:8;5459:6;;:17;;;;;;;;;;;;;;;;;;5523:8;5492:40;;5513:8;5492:40;;;;;;;;;;;;5412:128;5349:191;:::o;31931:110::-;32007:26;32017:2;32021:7;32007:26;;;;;;;;;;;;:9;:26::i;:::-;31931:110;;:::o;35409:315::-;35564:8;35555:17;;:5;:17;;;;35547:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;35651:8;35613:18;:25;35632:5;35613:25;;;;;;;;;;;;;;;:35;35639:8;35613:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35697:8;35675:41;;35690:5;35675:41;;;35707:8;35675:41;;;;;;:::i;:::-;;;;;;;;35409:315;;;:::o;30319:::-;30476:28;30486:4;30492:2;30496:7;30476:9;:28::i;:::-;30523:48;30546:4;30552:2;30556:7;30565:5;30523:22;:48::i;:::-;30515:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;30319:315;;;;:::o;46403:102::-;46463:13;46492:7;46485:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46403:102;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;16863:157::-;16948:4;16987:25;16972:40;;;:11;:40;;;;16965:47;;16863:157;;;:::o;40990:589::-;41134:45;41161:4;41167:2;41171:7;41134:26;:45::i;:::-;41212:1;41196:18;;:4;:18;;;41192:187;;;41231:40;41263:7;41231:31;:40::i;:::-;41192:187;;;41301:2;41293:10;;:4;:10;;;41289:90;;41320:47;41353:4;41359:7;41320:32;:47::i;:::-;41289:90;41192:187;41407:1;41393:16;;:2;:16;;;41389:183;;;41426:45;41463:7;41426:36;:45::i;:::-;41389:183;;;41499:4;41493:10;;:2;:10;;;41489:83;;41520:40;41548:2;41552:7;41520:27;:40::i;:::-;41489:83;41389:183;40990:589;;;:::o;38171:125::-;;;;:::o;32268:321::-;32398:18;32404:2;32408:7;32398:5;:18::i;:::-;32449:54;32480:1;32484:2;32488:7;32497:5;32449:22;:54::i;:::-;32427:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32268:321;;;:::o;36289:799::-;36444:4;36465:15;:2;:13;;;:15::i;:::-;36461:620;;;36517:2;36501:36;;;36538:12;:10;:12::i;:::-;36552:4;36558:7;36567:5;36501:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36497:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36760:1;36743:6;:13;:18;36739:272;;;36786:60;;;;;;;;;;:::i;:::-;;;;;;;;36739:272;36961:6;36955:13;36946:6;36942:2;36938:15;36931:38;36497:529;36634:41;;;36624:51;;;:6;:51;;;;36617:58;;;;;36461:620;37065:4;37058:11;;36289:799;;;;;;;:::o;37660:126::-;;;;:::o;42302:164::-;42406:10;:17;;;;42379:15;:24;42395:7;42379:24;;;;;;;;;;;:44;;;;42434:10;42450:7;42434:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42302:164;:::o;43093:988::-;43359:22;43409:1;43384:22;43401:4;43384:16;:22::i;:::-;:26;;;;:::i;:::-;43359:51;;43421:18;43442:17;:26;43460:7;43442:26;;;;;;;;;;;;43421:47;;43589:14;43575:10;:28;43571:328;;43620:19;43642:12;:18;43655:4;43642:18;;;;;;;;;;;;;;;:34;43661:14;43642:34;;;;;;;;;;;;43620:56;;43726:11;43693:12;:18;43706:4;43693:18;;;;;;;;;;;;;;;:30;43712:10;43693:30;;;;;;;;;;;:44;;;;43843:10;43810:17;:30;43828:11;43810:30;;;;;;;;;;;:43;;;;43605:294;43571:328;43995:17;:26;44013:7;43995:26;;;;;;;;;;;43988:33;;;44039:12;:18;44052:4;44039:18;;;;;;;;;;;;;;;:34;44058:14;44039:34;;;;;;;;;;;44032:41;;;43174:907;;43093:988;;:::o;44376:1079::-;44629:22;44674:1;44654:10;:17;;;;:21;;;;:::i;:::-;44629:46;;44686:18;44707:15;:24;44723:7;44707:24;;;;;;;;;;;;44686:45;;45058:19;45080:10;45091:14;45080:26;;;;;;;;:::i;:::-;;;;;;;;;;45058:48;;45144:11;45119:10;45130;45119:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;45255:10;45224:15;:28;45240:11;45224:28;;;;;;;;;;;:41;;;;45396:15;:24;45412:7;45396:24;;;;;;;;;;;45389:31;;;45431:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44447:1008;;;44376:1079;:::o;41880:221::-;41965:14;41982:20;41999:2;41982:16;:20::i;:::-;41965:37;;42040:7;42013:12;:16;42026:2;42013:16;;;;;;;;;;;;;;;:24;42030:6;42013:24;;;;;;;;;;;:34;;;;42087:6;42058:17;:26;42076:7;42058:26;;;;;;;;;;;:35;;;;41954:147;41880:221;;:::o;32925:439::-;33019:1;33005:16;;:2;:16;;;;32997:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33078:16;33086:7;33078;:16::i;:::-;33077:17;33069:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33140:45;33169:1;33173:2;33177:7;33140:20;:45::i;:::-;33215:1;33198:9;:13;33208:2;33198:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33246:2;33227:7;:16;33235:7;33227:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33291:7;33287:2;33266:33;;33283:1;33266:33;;;;;;;;;;;;33312:44;33340:1;33344:2;33348:7;33312:19;:44::i;:::-;32925:439;;:::o;6780:326::-;6840:4;7097:1;7075:7;:19;;;:23;7068:30;;6780:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1716:137;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1859:141;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:122;;2131:79;;:::i;:::-;2090:122;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;2019:338;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:122;;2490:79;;:::i;:::-;2449:122;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;2377:340;;;;:::o;2723:139::-;2769:5;2807:6;2794:20;2785:29;;2823:33;2850:5;2823:33;:::i;:::-;2723:139;;;;:::o;2868:329::-;2927:6;2976:2;2964:9;2955:7;2951:23;2947:32;2944:119;;;2982:79;;:::i;:::-;2944:119;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;2868:329;;;;:::o;3203:474::-;3271:6;3279;3328:2;3316:9;3307:7;3303:23;3299:32;3296:119;;;3334:79;;:::i;:::-;3296:119;3454:1;3479:53;3524:7;3515:6;3504:9;3500:22;3479:53;:::i;:::-;3469:63;;3425:117;3581:2;3607:53;3652:7;3643:6;3632:9;3628:22;3607:53;:::i;:::-;3597:63;;3552:118;3203:474;;;;;:::o;3683:619::-;3760:6;3768;3776;3825:2;3813:9;3804:7;3800:23;3796:32;3793:119;;;3831:79;;:::i;:::-;3793:119;3951:1;3976:53;4021:7;4012:6;4001:9;3997:22;3976:53;:::i;:::-;3966:63;;3922:117;4078:2;4104:53;4149:7;4140:6;4129:9;4125:22;4104:53;:::i;:::-;4094:63;;4049:118;4206:2;4232:53;4277:7;4268:6;4257:9;4253:22;4232:53;:::i;:::-;4222:63;;4177:118;3683:619;;;;;:::o;4308:943::-;4403:6;4411;4419;4427;4476:3;4464:9;4455:7;4451:23;4447:33;4444:120;;;4483:79;;:::i;:::-;4444:120;4603:1;4628:53;4673:7;4664:6;4653:9;4649:22;4628:53;:::i;:::-;4618:63;;4574:117;4730:2;4756:53;4801:7;4792:6;4781:9;4777:22;4756:53;:::i;:::-;4746:63;;4701:118;4858:2;4884:53;4929:7;4920:6;4909:9;4905:22;4884:53;:::i;:::-;4874:63;;4829:118;5014:2;5003:9;4999:18;4986:32;5045:18;5037:6;5034:30;5031:117;;;5067:79;;:::i;:::-;5031:117;5172:62;5226:7;5217:6;5206:9;5202:22;5172:62;:::i;:::-;5162:72;;4957:287;4308:943;;;;;;;:::o;5257:468::-;5322:6;5330;5379:2;5367:9;5358:7;5354:23;5350:32;5347:119;;;5385:79;;:::i;:::-;5347:119;5505:1;5530:53;5575:7;5566:6;5555:9;5551:22;5530:53;:::i;:::-;5520:63;;5476:117;5632:2;5658:50;5700:7;5691:6;5680:9;5676:22;5658:50;:::i;:::-;5648:60;;5603:115;5257:468;;;;;:::o;5731:474::-;5799:6;5807;5856:2;5844:9;5835:7;5831:23;5827:32;5824:119;;;5862:79;;:::i;:::-;5824:119;5982:1;6007:53;6052:7;6043:6;6032:9;6028:22;6007:53;:::i;:::-;5997:63;;5953:117;6109:2;6135:53;6180:7;6171:6;6160:9;6156:22;6135:53;:::i;:::-;6125:63;;6080:118;5731:474;;;;;:::o;6211:559::-;6297:6;6305;6354:2;6342:9;6333:7;6329:23;6325:32;6322:119;;;6360:79;;:::i;:::-;6322:119;6508:1;6497:9;6493:17;6480:31;6538:18;6530:6;6527:30;6524:117;;;6560:79;;:::i;:::-;6524:117;6673:80;6745:7;6736:6;6725:9;6721:22;6673:80;:::i;:::-;6655:98;;;;6451:312;6211:559;;;;;:::o;6776:323::-;6832:6;6881:2;6869:9;6860:7;6856:23;6852:32;6849:119;;;6887:79;;:::i;:::-;6849:119;7007:1;7032:50;7074:7;7065:6;7054:9;7050:22;7032:50;:::i;:::-;7022:60;;6978:114;6776:323;;;;:::o;7105:327::-;7163:6;7212:2;7200:9;7191:7;7187:23;7183:32;7180:119;;;7218:79;;:::i;:::-;7180:119;7338:1;7363:52;7407:7;7398:6;7387:9;7383:22;7363:52;:::i;:::-;7353:62;;7309:116;7105:327;;;;:::o;7438:349::-;7507:6;7556:2;7544:9;7535:7;7531:23;7527:32;7524:119;;;7562:79;;:::i;:::-;7524:119;7682:1;7707:63;7762:7;7753:6;7742:9;7738:22;7707:63;:::i;:::-;7697:73;;7653:127;7438:349;;;;:::o;7793:509::-;7862:6;7911:2;7899:9;7890:7;7886:23;7882:32;7879:119;;;7917:79;;:::i;:::-;7879:119;8065:1;8054:9;8050:17;8037:31;8095:18;8087:6;8084:30;8081:117;;;8117:79;;:::i;:::-;8081:117;8222:63;8277:7;8268:6;8257:9;8253:22;8222:63;:::i;:::-;8212:73;;8008:287;7793:509;;;;:::o;8308:329::-;8367:6;8416:2;8404:9;8395:7;8391:23;8387:32;8384:119;;;8422:79;;:::i;:::-;8384:119;8542:1;8567:53;8612:7;8603:6;8592:9;8588:22;8567:53;:::i;:::-;8557:63;;8513:117;8308:329;;;;:::o;8643:179::-;8712:10;8733:46;8775:3;8767:6;8733:46;:::i;:::-;8811:4;8806:3;8802:14;8788:28;;8643:179;;;;:::o;8828:118::-;8915:24;8933:5;8915:24;:::i;:::-;8910:3;8903:37;8828:118;;:::o;8982:732::-;9101:3;9130:54;9178:5;9130:54;:::i;:::-;9200:86;9279:6;9274:3;9200:86;:::i;:::-;9193:93;;9310:56;9360:5;9310:56;:::i;:::-;9389:7;9420:1;9405:284;9430:6;9427:1;9424:13;9405:284;;;9506:6;9500:13;9533:63;9592:3;9577:13;9533:63;:::i;:::-;9526:70;;9619:60;9672:6;9619:60;:::i;:::-;9609:70;;9465:224;9452:1;9449;9445:9;9440:14;;9405:284;;;9409:14;9705:3;9698:10;;9106:608;;;8982:732;;;;:::o;9720:109::-;9801:21;9816:5;9801:21;:::i;:::-;9796:3;9789:34;9720:109;;:::o;9835:360::-;9921:3;9949:38;9981:5;9949:38;:::i;:::-;10003:70;10066:6;10061:3;10003:70;:::i;:::-;9996:77;;10082:52;10127:6;10122:3;10115:4;10108:5;10104:16;10082:52;:::i;:::-;10159:29;10181:6;10159:29;:::i;:::-;10154:3;10150:39;10143:46;;9925:270;9835:360;;;;:::o;10201:364::-;10289:3;10317:39;10350:5;10317:39;:::i;:::-;10372:71;10436:6;10431:3;10372:71;:::i;:::-;10365:78;;10452:52;10497:6;10492:3;10485:4;10478:5;10474:16;10452:52;:::i;:::-;10529:29;10551:6;10529:29;:::i;:::-;10524:3;10520:39;10513:46;;10293:272;10201:364;;;;:::o;10571:377::-;10677:3;10705:39;10738:5;10705:39;:::i;:::-;10760:89;10842:6;10837:3;10760:89;:::i;:::-;10753:96;;10858:52;10903:6;10898:3;10891:4;10884:5;10880:16;10858:52;:::i;:::-;10935:6;10930:3;10926:16;10919:23;;10681:267;10571:377;;;;:::o;10978:845::-;11081:3;11118:5;11112:12;11147:36;11173:9;11147:36;:::i;:::-;11199:89;11281:6;11276:3;11199:89;:::i;:::-;11192:96;;11319:1;11308:9;11304:17;11335:1;11330:137;;;;11481:1;11476:341;;;;11297:520;;11330:137;11414:4;11410:9;11399;11395:25;11390:3;11383:38;11450:6;11445:3;11441:16;11434:23;;11330:137;;11476:341;11543:38;11575:5;11543:38;:::i;:::-;11603:1;11617:154;11631:6;11628:1;11625:13;11617:154;;;11705:7;11699:14;11695:1;11690:3;11686:11;11679:35;11755:1;11746:7;11742:15;11731:26;;11653:4;11650:1;11646:12;11641:17;;11617:154;;;11800:6;11795:3;11791:16;11784:23;;11483:334;;11297:520;;11085:738;;10978:845;;;;:::o;11829:366::-;11971:3;11992:67;12056:2;12051:3;11992:67;:::i;:::-;11985:74;;12068:93;12157:3;12068:93;:::i;:::-;12186:2;12181:3;12177:12;12170:19;;11829:366;;;:::o;12201:::-;12343:3;12364:67;12428:2;12423:3;12364:67;:::i;:::-;12357:74;;12440:93;12529:3;12440:93;:::i;:::-;12558:2;12553:3;12549:12;12542:19;;12201:366;;;:::o;12573:::-;12715:3;12736:67;12800:2;12795:3;12736:67;:::i;:::-;12729:74;;12812:93;12901:3;12812:93;:::i;:::-;12930:2;12925:3;12921:12;12914:19;;12573:366;;;:::o;12945:::-;13087:3;13108:67;13172:2;13167:3;13108:67;:::i;:::-;13101:74;;13184:93;13273:3;13184:93;:::i;:::-;13302:2;13297:3;13293:12;13286:19;;12945:366;;;:::o;13317:::-;13459:3;13480:67;13544:2;13539:3;13480:67;:::i;:::-;13473:74;;13556:93;13645:3;13556:93;:::i;:::-;13674:2;13669:3;13665:12;13658:19;;13317:366;;;:::o;13689:::-;13831:3;13852:67;13916:2;13911:3;13852:67;:::i;:::-;13845:74;;13928:93;14017:3;13928:93;:::i;:::-;14046:2;14041:3;14037:12;14030:19;;13689:366;;;:::o;14061:::-;14203:3;14224:67;14288:2;14283:3;14224:67;:::i;:::-;14217:74;;14300:93;14389:3;14300:93;:::i;:::-;14418:2;14413:3;14409:12;14402:19;;14061:366;;;:::o;14433:::-;14575:3;14596:67;14660:2;14655:3;14596:67;:::i;:::-;14589:74;;14672:93;14761:3;14672:93;:::i;:::-;14790:2;14785:3;14781:12;14774:19;;14433:366;;;:::o;14805:::-;14947:3;14968:67;15032:2;15027:3;14968:67;:::i;:::-;14961:74;;15044:93;15133:3;15044:93;:::i;:::-;15162:2;15157:3;15153:12;15146:19;;14805:366;;;:::o;15177:::-;15319:3;15340:67;15404:2;15399:3;15340:67;:::i;:::-;15333:74;;15416:93;15505:3;15416:93;:::i;:::-;15534:2;15529:3;15525:12;15518:19;;15177:366;;;:::o;15549:::-;15691:3;15712:67;15776:2;15771:3;15712:67;:::i;:::-;15705:74;;15788:93;15877:3;15788:93;:::i;:::-;15906:2;15901:3;15897:12;15890:19;;15549:366;;;:::o;15921:::-;16063:3;16084:67;16148:2;16143:3;16084:67;:::i;:::-;16077:74;;16160:93;16249:3;16160:93;:::i;:::-;16278:2;16273:3;16269:12;16262:19;;15921:366;;;:::o;16293:::-;16435:3;16456:67;16520:2;16515:3;16456:67;:::i;:::-;16449:74;;16532:93;16621:3;16532:93;:::i;:::-;16650:2;16645:3;16641:12;16634:19;;16293:366;;;:::o;16665:::-;16807:3;16828:67;16892:2;16887:3;16828:67;:::i;:::-;16821:74;;16904:93;16993:3;16904:93;:::i;:::-;17022:2;17017:3;17013:12;17006:19;;16665:366;;;:::o;17037:::-;17179:3;17200:67;17264:2;17259:3;17200:67;:::i;:::-;17193:74;;17276:93;17365:3;17276:93;:::i;:::-;17394:2;17389:3;17385:12;17378:19;;17037:366;;;:::o;17409:::-;17551:3;17572:67;17636:2;17631:3;17572:67;:::i;:::-;17565:74;;17648:93;17737:3;17648:93;:::i;:::-;17766:2;17761:3;17757:12;17750:19;;17409:366;;;:::o;17781:::-;17923:3;17944:67;18008:2;18003:3;17944:67;:::i;:::-;17937:74;;18020:93;18109:3;18020:93;:::i;:::-;18138:2;18133:3;18129:12;18122:19;;17781:366;;;:::o;18153:::-;18295:3;18316:67;18380:2;18375:3;18316:67;:::i;:::-;18309:74;;18392:93;18481:3;18392:93;:::i;:::-;18510:2;18505:3;18501:12;18494:19;;18153:366;;;:::o;18525:365::-;18667:3;18688:66;18752:1;18747:3;18688:66;:::i;:::-;18681:73;;18763:93;18852:3;18763:93;:::i;:::-;18881:2;18876:3;18872:12;18865:19;;18525:365;;;:::o;18896:366::-;19038:3;19059:67;19123:2;19118:3;19059:67;:::i;:::-;19052:74;;19135:93;19224:3;19135:93;:::i;:::-;19253:2;19248:3;19244:12;19237:19;;18896:366;;;:::o;19268:::-;19410:3;19431:67;19495:2;19490:3;19431:67;:::i;:::-;19424:74;;19507:93;19596:3;19507:93;:::i;:::-;19625:2;19620:3;19616:12;19609:19;;19268:366;;;:::o;19640:398::-;19799:3;19820:83;19901:1;19896:3;19820:83;:::i;:::-;19813:90;;19912:93;20001:3;19912:93;:::i;:::-;20030:1;20025:3;20021:11;20014:18;;19640:398;;;:::o;20044:366::-;20186:3;20207:67;20271:2;20266:3;20207:67;:::i;:::-;20200:74;;20283:93;20372:3;20283:93;:::i;:::-;20401:2;20396:3;20392:12;20385:19;;20044:366;;;:::o;20416:::-;20558:3;20579:67;20643:2;20638:3;20579:67;:::i;:::-;20572:74;;20655:93;20744:3;20655:93;:::i;:::-;20773:2;20768:3;20764:12;20757:19;;20416:366;;;:::o;20788:::-;20930:3;20951:67;21015:2;21010:3;20951:67;:::i;:::-;20944:74;;21027:93;21116:3;21027:93;:::i;:::-;21145:2;21140:3;21136:12;21129:19;;20788:366;;;:::o;21160:::-;21302:3;21323:67;21387:2;21382:3;21323:67;:::i;:::-;21316:74;;21399:93;21488:3;21399:93;:::i;:::-;21517:2;21512:3;21508:12;21501:19;;21160:366;;;:::o;21532:::-;21674:3;21695:67;21759:2;21754:3;21695:67;:::i;:::-;21688:74;;21771:93;21860:3;21771:93;:::i;:::-;21889:2;21884:3;21880:12;21873:19;;21532:366;;;:::o;21904:108::-;21981:24;21999:5;21981:24;:::i;:::-;21976:3;21969:37;21904:108;;:::o;22018:118::-;22105:24;22123:5;22105:24;:::i;:::-;22100:3;22093:37;22018:118;;:::o;22142:589::-;22367:3;22389:95;22480:3;22471:6;22389:95;:::i;:::-;22382:102;;22501:95;22592:3;22583:6;22501:95;:::i;:::-;22494:102;;22613:92;22701:3;22692:6;22613:92;:::i;:::-;22606:99;;22722:3;22715:10;;22142:589;;;;;;:::o;22737:379::-;22921:3;22943:147;23086:3;22943:147;:::i;:::-;22936:154;;23107:3;23100:10;;22737:379;;;:::o;23122:222::-;23215:4;23253:2;23242:9;23238:18;23230:26;;23266:71;23334:1;23323:9;23319:17;23310:6;23266:71;:::i;:::-;23122:222;;;;:::o;23350:640::-;23545:4;23583:3;23572:9;23568:19;23560:27;;23597:71;23665:1;23654:9;23650:17;23641:6;23597:71;:::i;:::-;23678:72;23746:2;23735:9;23731:18;23722:6;23678:72;:::i;:::-;23760;23828:2;23817:9;23813:18;23804:6;23760:72;:::i;:::-;23879:9;23873:4;23869:20;23864:2;23853:9;23849:18;23842:48;23907:76;23978:4;23969:6;23907:76;:::i;:::-;23899:84;;23350:640;;;;;;;:::o;23996:373::-;24139:4;24177:2;24166:9;24162:18;24154:26;;24226:9;24220:4;24216:20;24212:1;24201:9;24197:17;24190:47;24254:108;24357:4;24348:6;24254:108;:::i;:::-;24246:116;;23996:373;;;;:::o;24375:210::-;24462:4;24500:2;24489:9;24485:18;24477:26;;24513:65;24575:1;24564:9;24560:17;24551:6;24513:65;:::i;:::-;24375:210;;;;:::o;24591:313::-;24704:4;24742:2;24731:9;24727:18;24719:26;;24791:9;24785:4;24781:20;24777:1;24766:9;24762:17;24755:47;24819:78;24892:4;24883:6;24819:78;:::i;:::-;24811:86;;24591:313;;;;:::o;24910:419::-;25076:4;25114:2;25103:9;25099:18;25091:26;;25163:9;25157:4;25153:20;25149:1;25138:9;25134:17;25127:47;25191:131;25317:4;25191:131;:::i;:::-;25183:139;;24910:419;;;:::o;25335:::-;25501:4;25539:2;25528:9;25524:18;25516:26;;25588:9;25582:4;25578:20;25574:1;25563:9;25559:17;25552:47;25616:131;25742:4;25616:131;:::i;:::-;25608:139;;25335:419;;;:::o;25760:::-;25926:4;25964:2;25953:9;25949:18;25941:26;;26013:9;26007:4;26003:20;25999:1;25988:9;25984:17;25977:47;26041:131;26167:4;26041:131;:::i;:::-;26033:139;;25760:419;;;:::o;26185:::-;26351:4;26389:2;26378:9;26374:18;26366:26;;26438:9;26432:4;26428:20;26424:1;26413:9;26409:17;26402:47;26466:131;26592:4;26466:131;:::i;:::-;26458:139;;26185:419;;;:::o;26610:::-;26776:4;26814:2;26803:9;26799:18;26791:26;;26863:9;26857:4;26853:20;26849:1;26838:9;26834:17;26827:47;26891:131;27017:4;26891:131;:::i;:::-;26883:139;;26610:419;;;:::o;27035:::-;27201:4;27239:2;27228:9;27224:18;27216:26;;27288:9;27282:4;27278:20;27274:1;27263:9;27259:17;27252:47;27316:131;27442:4;27316:131;:::i;:::-;27308:139;;27035:419;;;:::o;27460:::-;27626:4;27664:2;27653:9;27649:18;27641:26;;27713:9;27707:4;27703:20;27699:1;27688:9;27684:17;27677:47;27741:131;27867:4;27741:131;:::i;:::-;27733:139;;27460:419;;;:::o;27885:::-;28051:4;28089:2;28078:9;28074:18;28066:26;;28138:9;28132:4;28128:20;28124:1;28113:9;28109:17;28102:47;28166:131;28292:4;28166:131;:::i;:::-;28158:139;;27885:419;;;:::o;28310:::-;28476:4;28514:2;28503:9;28499:18;28491:26;;28563:9;28557:4;28553:20;28549:1;28538:9;28534:17;28527:47;28591:131;28717:4;28591:131;:::i;:::-;28583:139;;28310:419;;;:::o;28735:::-;28901:4;28939:2;28928:9;28924:18;28916:26;;28988:9;28982:4;28978:20;28974:1;28963:9;28959:17;28952:47;29016:131;29142:4;29016:131;:::i;:::-;29008:139;;28735:419;;;:::o;29160:::-;29326:4;29364:2;29353:9;29349:18;29341:26;;29413:9;29407:4;29403:20;29399:1;29388:9;29384:17;29377:47;29441:131;29567:4;29441:131;:::i;:::-;29433:139;;29160:419;;;:::o;29585:::-;29751:4;29789:2;29778:9;29774:18;29766:26;;29838:9;29832:4;29828:20;29824:1;29813:9;29809:17;29802:47;29866:131;29992:4;29866:131;:::i;:::-;29858:139;;29585:419;;;:::o;30010:::-;30176:4;30214:2;30203:9;30199:18;30191:26;;30263:9;30257:4;30253:20;30249:1;30238:9;30234:17;30227:47;30291:131;30417:4;30291:131;:::i;:::-;30283:139;;30010:419;;;:::o;30435:::-;30601:4;30639:2;30628:9;30624:18;30616:26;;30688:9;30682:4;30678:20;30674:1;30663:9;30659:17;30652:47;30716:131;30842:4;30716:131;:::i;:::-;30708:139;;30435:419;;;:::o;30860:::-;31026:4;31064:2;31053:9;31049:18;31041:26;;31113:9;31107:4;31103:20;31099:1;31088:9;31084:17;31077:47;31141:131;31267:4;31141:131;:::i;:::-;31133:139;;30860:419;;;:::o;31285:::-;31451:4;31489:2;31478:9;31474:18;31466:26;;31538:9;31532:4;31528:20;31524:1;31513:9;31509:17;31502:47;31566:131;31692:4;31566:131;:::i;:::-;31558:139;;31285:419;;;:::o;31710:::-;31876:4;31914:2;31903:9;31899:18;31891:26;;31963:9;31957:4;31953:20;31949:1;31938:9;31934:17;31927:47;31991:131;32117:4;31991:131;:::i;:::-;31983:139;;31710:419;;;:::o;32135:::-;32301:4;32339:2;32328:9;32324:18;32316:26;;32388:9;32382:4;32378:20;32374:1;32363:9;32359:17;32352:47;32416:131;32542:4;32416:131;:::i;:::-;32408:139;;32135:419;;;:::o;32560:::-;32726:4;32764:2;32753:9;32749:18;32741:26;;32813:9;32807:4;32803:20;32799:1;32788:9;32784:17;32777:47;32841:131;32967:4;32841:131;:::i;:::-;32833:139;;32560:419;;;:::o;32985:::-;33151:4;33189:2;33178:9;33174:18;33166:26;;33238:9;33232:4;33228:20;33224:1;33213:9;33209:17;33202:47;33266:131;33392:4;33266:131;:::i;:::-;33258:139;;32985:419;;;:::o;33410:::-;33576:4;33614:2;33603:9;33599:18;33591:26;;33663:9;33657:4;33653:20;33649:1;33638:9;33634:17;33627:47;33691:131;33817:4;33691:131;:::i;:::-;33683:139;;33410:419;;;:::o;33835:::-;34001:4;34039:2;34028:9;34024:18;34016:26;;34088:9;34082:4;34078:20;34074:1;34063:9;34059:17;34052:47;34116:131;34242:4;34116:131;:::i;:::-;34108:139;;33835:419;;;:::o;34260:::-;34426:4;34464:2;34453:9;34449:18;34441:26;;34513:9;34507:4;34503:20;34499:1;34488:9;34484:17;34477:47;34541:131;34667:4;34541:131;:::i;:::-;34533:139;;34260:419;;;:::o;34685:::-;34851:4;34889:2;34878:9;34874:18;34866:26;;34938:9;34932:4;34928:20;34924:1;34913:9;34909:17;34902:47;34966:131;35092:4;34966:131;:::i;:::-;34958:139;;34685:419;;;:::o;35110:::-;35276:4;35314:2;35303:9;35299:18;35291:26;;35363:9;35357:4;35353:20;35349:1;35338:9;35334:17;35327:47;35391:131;35517:4;35391:131;:::i;:::-;35383:139;;35110:419;;;:::o;35535:::-;35701:4;35739:2;35728:9;35724:18;35716:26;;35788:9;35782:4;35778:20;35774:1;35763:9;35759:17;35752:47;35816:131;35942:4;35816:131;:::i;:::-;35808:139;;35535:419;;;:::o;35960:222::-;36053:4;36091:2;36080:9;36076:18;36068:26;;36104:71;36172:1;36161:9;36157:17;36148:6;36104:71;:::i;:::-;35960:222;;;;:::o;36188:129::-;36222:6;36249:20;;:::i;:::-;36239:30;;36278:33;36306:4;36298:6;36278:33;:::i;:::-;36188:129;;;:::o;36323:75::-;36356:6;36389:2;36383:9;36373:19;;36323:75;:::o;36404:307::-;36465:4;36555:18;36547:6;36544:30;36541:56;;;36577:18;;:::i;:::-;36541:56;36615:29;36637:6;36615:29;:::i;:::-;36607:37;;36699:4;36693;36689:15;36681:23;;36404:307;;;:::o;36717:308::-;36779:4;36869:18;36861:6;36858:30;36855:56;;;36891:18;;:::i;:::-;36855:56;36929:29;36951:6;36929:29;:::i;:::-;36921:37;;37013:4;37007;37003:15;36995:23;;36717:308;;;:::o;37031:132::-;37098:4;37121:3;37113:11;;37151:4;37146:3;37142:14;37134:22;;37031:132;;;:::o;37169:141::-;37218:4;37241:3;37233:11;;37264:3;37261:1;37254:14;37298:4;37295:1;37285:18;37277:26;;37169:141;;;:::o;37316:114::-;37383:6;37417:5;37411:12;37401:22;;37316:114;;;:::o;37436:98::-;37487:6;37521:5;37515:12;37505:22;;37436:98;;;:::o;37540:99::-;37592:6;37626:5;37620:12;37610:22;;37540:99;;;:::o;37645:113::-;37715:4;37747;37742:3;37738:14;37730:22;;37645:113;;;:::o;37764:184::-;37863:11;37897:6;37892:3;37885:19;37937:4;37932:3;37928:14;37913:29;;37764:184;;;;:::o;37954:168::-;38037:11;38071:6;38066:3;38059:19;38111:4;38106:3;38102:14;38087:29;;37954:168;;;;:::o;38128:147::-;38229:11;38266:3;38251:18;;38128:147;;;;:::o;38281:169::-;38365:11;38399:6;38394:3;38387:19;38439:4;38434:3;38430:14;38415:29;;38281:169;;;;:::o;38456:148::-;38558:11;38595:3;38580:18;;38456:148;;;;:::o;38610:305::-;38650:3;38669:20;38687:1;38669:20;:::i;:::-;38664:25;;38703:20;38721:1;38703:20;:::i;:::-;38698:25;;38857:1;38789:66;38785:74;38782:1;38779:81;38776:107;;;38863:18;;:::i;:::-;38776:107;38907:1;38904;38900:9;38893:16;;38610:305;;;;:::o;38921:185::-;38961:1;38978:20;38996:1;38978:20;:::i;:::-;38973:25;;39012:20;39030:1;39012:20;:::i;:::-;39007:25;;39051:1;39041:35;;39056:18;;:::i;:::-;39041:35;39098:1;39095;39091:9;39086:14;;38921:185;;;;:::o;39112:348::-;39152:7;39175:20;39193:1;39175:20;:::i;:::-;39170:25;;39209:20;39227:1;39209:20;:::i;:::-;39204:25;;39397:1;39329:66;39325:74;39322:1;39319:81;39314:1;39307:9;39300:17;39296:105;39293:131;;;39404:18;;:::i;:::-;39293:131;39452:1;39449;39445:9;39434:20;;39112:348;;;;:::o;39466:191::-;39506:4;39526:20;39544:1;39526:20;:::i;:::-;39521:25;;39560:20;39578:1;39560:20;:::i;:::-;39555:25;;39599:1;39596;39593:8;39590:34;;;39604:18;;:::i;:::-;39590:34;39649:1;39646;39642:9;39634:17;;39466:191;;;;:::o;39663:96::-;39700:7;39729:24;39747:5;39729:24;:::i;:::-;39718:35;;39663:96;;;:::o;39765:90::-;39799:7;39842:5;39835:13;39828:21;39817:32;;39765:90;;;:::o;39861:149::-;39897:7;39937:66;39930:5;39926:78;39915:89;;39861:149;;;:::o;40016:126::-;40053:7;40093:42;40086:5;40082:54;40071:65;;40016:126;;;:::o;40148:77::-;40185:7;40214:5;40203:16;;40148:77;;;:::o;40231:154::-;40315:6;40310:3;40305;40292:30;40377:1;40368:6;40363:3;40359:16;40352:27;40231:154;;;:::o;40391:307::-;40459:1;40469:113;40483:6;40480:1;40477:13;40469:113;;;40568:1;40563:3;40559:11;40553:18;40549:1;40544:3;40540:11;40533:39;40505:2;40502:1;40498:10;40493:15;;40469:113;;;40600:6;40597:1;40594:13;40591:101;;;40680:1;40671:6;40666:3;40662:16;40655:27;40591:101;40440:258;40391:307;;;:::o;40704:320::-;40748:6;40785:1;40779:4;40775:12;40765:22;;40832:1;40826:4;40822:12;40853:18;40843:81;;40909:4;40901:6;40897:17;40887:27;;40843:81;40971:2;40963:6;40960:14;40940:18;40937:38;40934:84;;;40990:18;;:::i;:::-;40934:84;40755:269;40704:320;;;:::o;41030:281::-;41113:27;41135:4;41113:27;:::i;:::-;41105:6;41101:40;41243:6;41231:10;41228:22;41207:18;41195:10;41192:34;41189:62;41186:88;;;41254:18;;:::i;:::-;41186:88;41294:10;41290:2;41283:22;41073:238;41030:281;;:::o;41317:233::-;41356:3;41379:24;41397:5;41379:24;:::i;:::-;41370:33;;41425:66;41418:5;41415:77;41412:103;;;41495:18;;:::i;:::-;41412:103;41542:1;41535:5;41531:13;41524:20;;41317:233;;;:::o;41556:176::-;41588:1;41605:20;41623:1;41605:20;:::i;:::-;41600:25;;41639:20;41657:1;41639:20;:::i;:::-;41634:25;;41678:1;41668:35;;41683:18;;:::i;:::-;41668:35;41724:1;41721;41717:9;41712:14;;41556:176;;;;:::o;41738:180::-;41786:77;41783:1;41776:88;41883:4;41880:1;41873:15;41907:4;41904:1;41897:15;41924:180;41972:77;41969:1;41962:88;42069:4;42066:1;42059:15;42093:4;42090:1;42083:15;42110:180;42158:77;42155:1;42148:88;42255:4;42252:1;42245:15;42279:4;42276:1;42269:15;42296:180;42344:77;42341:1;42334:88;42441:4;42438:1;42431:15;42465:4;42462:1;42455:15;42482:180;42530:77;42527:1;42520:88;42627:4;42624:1;42617:15;42651:4;42648:1;42641:15;42668:180;42716:77;42713:1;42706:88;42813:4;42810:1;42803:15;42837:4;42834:1;42827:15;42854:117;42963:1;42960;42953:12;42977:117;43086:1;43083;43076:12;43100:117;43209:1;43206;43199:12;43223:117;43332:1;43329;43322:12;43346:117;43455:1;43452;43445:12;43469:117;43578:1;43575;43568:12;43592:102;43633:6;43684:2;43680:7;43675:2;43668:5;43664:14;43660:28;43650:38;;43592:102;;;:::o;43700:230::-;43840:34;43836:1;43828:6;43824:14;43817:58;43909:13;43904:2;43896:6;43892:15;43885:38;43700:230;:::o;43936:237::-;44076:34;44072:1;44064:6;44060:14;44053:58;44145:20;44140:2;44132:6;44128:15;44121:45;43936:237;:::o;44179:225::-;44319:34;44315:1;44307:6;44303:14;44296:58;44388:8;44383:2;44375:6;44371:15;44364:33;44179:225;:::o;44410:224::-;44550:34;44546:1;44538:6;44534:14;44527:58;44619:7;44614:2;44606:6;44602:15;44595:32;44410:224;:::o;44640:178::-;44780:30;44776:1;44768:6;44764:14;44757:54;44640:178;:::o;44824:::-;44964:30;44960:1;44952:6;44948:14;44941:54;44824:178;:::o;45008:223::-;45148:34;45144:1;45136:6;45132:14;45125:58;45217:6;45212:2;45204:6;45200:15;45193:31;45008:223;:::o;45237:175::-;45377:27;45373:1;45365:6;45361:14;45354:51;45237:175;:::o;45418:231::-;45558:34;45554:1;45546:6;45542:14;45535:58;45627:14;45622:2;45614:6;45610:15;45603:39;45418:231;:::o;45655:243::-;45795:34;45791:1;45783:6;45779:14;45772:58;45864:26;45859:2;45851:6;45847:15;45840:51;45655:243;:::o;45904:229::-;46044:34;46040:1;46032:6;46028:14;46021:58;46113:12;46108:2;46100:6;46096:15;46089:37;45904:229;:::o;46139:228::-;46279:34;46275:1;46267:6;46263:14;46256:58;46348:11;46343:2;46335:6;46331:15;46324:36;46139:228;:::o;46373:172::-;46513:24;46509:1;46501:6;46497:14;46490:48;46373:172;:::o;46551:223::-;46691:34;46687:1;46679:6;46675:14;46668:58;46760:6;46755:2;46747:6;46743:15;46736:31;46551:223;:::o;46780:182::-;46920:34;46916:1;46908:6;46904:14;46897:58;46780:182;:::o;46968:231::-;47108:34;47104:1;47096:6;47092:14;47085:58;47177:14;47172:2;47164:6;47160:15;47153:39;46968:231;:::o;47205:182::-;47345:34;47341:1;47333:6;47329:14;47322:58;47205:182;:::o;47393:172::-;47533:24;47529:1;47521:6;47517:14;47510:48;47393:172;:::o;47571:154::-;47711:6;47707:1;47699:6;47695:14;47688:30;47571:154;:::o;47731:234::-;47871:34;47867:1;47859:6;47855:14;47848:58;47940:17;47935:2;47927:6;47923:15;47916:42;47731:234;:::o;47971:220::-;48111:34;48107:1;48099:6;48095:14;48088:58;48180:3;48175:2;48167:6;48163:15;48156:28;47971:220;:::o;48197:114::-;;:::o;48317:168::-;48457:20;48453:1;48445:6;48441:14;48434:44;48317:168;:::o;48491:236::-;48631:34;48627:1;48619:6;48615:14;48608:58;48700:19;48695:2;48687:6;48683:15;48676:44;48491:236;:::o;48733:231::-;48873:34;48869:1;48861:6;48857:14;48850:58;48942:14;48937:2;48929:6;48925:15;48918:39;48733:231;:::o;48970:173::-;49110:25;49106:1;49098:6;49094:14;49087:49;48970:173;:::o;49149:177::-;49289:29;49285:1;49277:6;49273:14;49266:53;49149:177;:::o;49332:122::-;49405:24;49423:5;49405:24;:::i;:::-;49398:5;49395:35;49385:63;;49444:1;49441;49434:12;49385:63;49332:122;:::o;49460:116::-;49530:21;49545:5;49530:21;:::i;:::-;49523:5;49520:32;49510:60;;49566:1;49563;49556:12;49510:60;49460:116;:::o;49582:120::-;49654:23;49671:5;49654:23;:::i;:::-;49647:5;49644:34;49634:62;;49692:1;49689;49682:12;49634:62;49582:120;:::o;49708:122::-;49781:24;49799:5;49781:24;:::i;:::-;49774:5;49771:35;49761:63;;49820:1;49817;49810:12;49761:63;49708:122;:::o

Swarm Source

ipfs://849f4a957f8211a0316266c0e967005030d219253c4b696e50d188332f659e72
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.