Contract Address Details

0x12A9C820e2789Dd59d50a15D9eD91C94bab40962

Token
BA.net/aart (AART)
Creator
0xece369–fbe31e at 0x32e3ef–48f3f9
Balance
0 Doge
Tokens
Fetching tokens...
Transactions
125 Transactions
Transfers
0 Transfers
Gas Used
100,662,248
Last Balance Update
26996449
Contract name:
DOGEaart




Optimization enabled
false
Compiler version
v0.8.7+commit.e28d00a7




EVM Version
default




Verified at
2022-09-17T19:28:23.844717Z

Constructor Arguments

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000b42412e6e65742f6161727400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044141525400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002268747470733a2f2f73736c2e62612e6e65742f64616172742f6f726967696e616c2f000000000000000000000000000000000000000000000000000000000000

Arg [0] (string) : BA.net/aart
Arg [1] (string) : AART
Arg [2] (string) : https://ssl.ba.net/daart/original/

              

Contract source code

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

    /**
     * @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);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// 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 (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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.7.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
                /// @solidity memory-safe-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 (last updated v4.6.0) (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 `IERC721Receiver.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 (last updated v4.7.0) (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`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}

// 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.7.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: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 overridden 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 token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        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: caller is not token 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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 an {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 an {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 Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    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/dogeaart-automint.sol



pragma solidity ^0.8.0;




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

  string public baseURI;
  string public baseExtension = ".json";
  uint256 public cost = 0 ether;
  uint256 public maxSupply = 10000;
  uint256 public maxMintAmount = 20;
  bool public paused = false;
  mapping(address => bool) public whitelisted;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI
  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
    mint(msg.sender, 3);
  }

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

  // public
  function mint(address _to, uint256 _mintAmount) public payable {
    uint256 supply = totalSupply();
    require(!paused);
    require(_mintAmount > 0);
    require(_mintAmount <= maxMintAmount);
    require(supply + _mintAmount <= maxSupply);

    if (msg.sender != owner()) {
        if(whitelisted[msg.sender] != true) {
          require(msg.value >= cost * _mintAmount);
        }
    }

    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(_to, supply + i);
    }
  }

  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"
    );

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

  //only owner
  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 pause(bool _state) public onlyOwner {
    paused = _state;
  }
 
 function whitelistUser(address _user) public onlyOwner {
    whitelisted[_user] = true;
  }
 
  function removeWhitelistUser(address _user) public onlyOwner {
    whitelisted[_user] = false;
  }

  function withdraw() public payable onlyOwner {
    require(payable(msg.sender).send(address(this).balance));
  }
}
        

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"string","name":"_name","internalType":"string"},{"type":"string","name":"_symbol","internalType":"string"},{"type":"string","name":"_initBaseURI","internalType":"string"}]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"approved","internalType":"address","indexed":true},{"type":"uint256","name":"tokenId","internalType":"uint256","indexed":true}],"anonymous":false},{"type":"event","name":"ApprovalForAll","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"operator","internalType":"address","indexed":true},{"type":"bool","name":"approved","internalType":"bool","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"tokenId","internalType":"uint256","indexed":true}],"anonymous":false},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"approve","inputs":[{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"owner","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"baseExtension","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"baseURI","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"cost","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"getApproved","inputs":[{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isApprovedForAll","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"operator","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"maxMintAmount","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"maxSupply","inputs":[]},{"type":"function","stateMutability":"payable","outputs":[],"name":"mint","inputs":[{"type":"address","name":"_to","internalType":"address"},{"type":"uint256","name":"_mintAmount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"ownerOf","inputs":[{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"pause","inputs":[{"type":"bool","name":"_state","internalType":"bool"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"paused","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"removeWhitelistUser","inputs":[{"type":"address","name":"_user","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"safeTransferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"safeTransferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"tokenId","internalType":"uint256"},{"type":"bytes","name":"data","internalType":"bytes"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setApprovalForAll","inputs":[{"type":"address","name":"operator","internalType":"address"},{"type":"bool","name":"approved","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setBaseExtension","inputs":[{"type":"string","name":"_newBaseExtension","internalType":"string"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setBaseURI","inputs":[{"type":"string","name":"_newBaseURI","internalType":"string"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setCost","inputs":[{"type":"uint256","name":"_newCost","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setmaxMintAmount","inputs":[{"type":"uint256","name":"_newmaxMintAmount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"supportsInterface","inputs":[{"type":"bytes4","name":"interfaceId","internalType":"bytes4"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"tokenByIndex","inputs":[{"type":"uint256","name":"index","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"tokenOfOwnerByIndex","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"uint256","name":"index","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"tokenURI","inputs":[{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256[]","name":"","internalType":"uint256[]"}],"name":"walletOfOwner","inputs":[{"type":"address","name":"_owner","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"whitelistUser","inputs":[{"type":"address","name":"_user","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"whitelisted","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"payable","outputs":[],"name":"withdraw","inputs":[]}]
            

Contract Creation Code

0x60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90805190602001906200005192919062000e75565b506000600d55612710600e556014600f556000601060006101000a81548160ff0219169083151502179055503480156200008a57600080fd5b5060405162005658380380620056588339818101604052810190620000b0919062000fec565b82828160009080519060200190620000ca92919062000e75565b508060019080519060200190620000e392919062000e75565b50505062000106620000fa6200013360201b60201c565b6200013b60201b60201c565b62000117816200020160201b60201c565b6200012a3360036200022d60201b60201c565b505050620017eb565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002116200039c60201b60201c565b80600b90805190602001906200022992919062000e75565b5050565b60006200023f6200042d60201b60201c565b9050601060009054906101000a900460ff16156200025c57600080fd5b600082116200026a57600080fd5b600f548211156200027a57600080fd5b600e5482826200028b919062001355565b11156200029757600080fd5b620002a76200043a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614620003525760011515601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514620003515781600d54620003439190620013b2565b3410156200035057600080fd5b5b5b6000600190505b82811162000396576200038084828462000374919062001355565b6200046460201b60201c565b80806200038d906200155a565b91505062000359565b50505050565b620003ac6200013360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003d26200043a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200042b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200042290620012a7565b60405180910390fd5b565b6000600880549050905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620004868282604051806020016040528060008152506200048a60201b60201c565b5050565b6200049c8383620004f860201b60201c565b620004b16000848484620006f260201b60201c565b620004f3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004ea906200121f565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200056b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005629062001285565b60405180910390fd5b6200057c81620008ac60201b60201c565b15620005bf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005b69062001241565b60405180910390fd5b620005d3600083836200091860201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000625919062001355565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620006ee6000838362000a5f60201b60201c565b5050565b6000620007208473ffffffffffffffffffffffffffffffffffffffff1662000a6460201b620015e71760201c565b156200089f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620007526200013360201b60201c565b8786866040518563ffffffff1660e01b8152600401620007769493929190620011cb565b602060405180830381600087803b1580156200079157600080fd5b505af1925050508015620007c557506040513d601f19601f82011682018060405250810190620007c2919062000fba565b60015b6200084e573d8060008114620007f8576040519150601f19603f3d011682016040523d82523d6000602084013e620007fd565b606091505b5060008151141562000846576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200083d906200121f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050620008a4565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6200093083838362000a8760201b6200160a1760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156200097d57620009778162000a8c60201b60201c565b620009c5565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614620009c457620009c3838262000ad560201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a125762000a0c8162000c5260201b60201c565b62000a5a565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000a595762000a58828262000d2e60201b60201c565b5b5b505050565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600162000aef8462000dba60201b6200113d1760201c565b62000afb919062001413565b905060006007600084815260200190815260200160002054905081811462000be1576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000c68919062001413565b905060006009600084815260200190815260200160002054905060006008838154811062000c9b5762000c9a62001635565b5b90600052602060002001549050806008838154811062000cc05762000cbf62001635565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000d125762000d1162001606565b5b6001900381819060005260206000200160009055905550505050565b600062000d468362000dba60201b6200113d1760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000e2e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000e259062001263565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000e8390620014ee565b90600052602060002090601f01602090048101928262000ea7576000855562000ef3565b82601f1062000ec257805160ff191683800117855562000ef3565b8280016001018555821562000ef3579182015b8281111562000ef257825182559160200191906001019062000ed5565b5b50905062000f02919062000f06565b5090565b5b8082111562000f2157600081600090555060010162000f07565b5090565b600062000f3c62000f3684620012f2565b620012c9565b90508281526020810184848401111562000f5b5762000f5a62001698565b5b62000f68848285620014b8565b509392505050565b60008151905062000f8181620017d1565b92915050565b600082601f83011262000f9f5762000f9e62001693565b5b815162000fb184826020860162000f25565b91505092915050565b60006020828403121562000fd35762000fd2620016a2565b5b600062000fe38482850162000f70565b91505092915050565b600080600060608486031215620010085762001007620016a2565b5b600084015167ffffffffffffffff8111156200102957620010286200169d565b5b620010378682870162000f87565b935050602084015167ffffffffffffffff8111156200105b576200105a6200169d565b5b620010698682870162000f87565b925050604084015167ffffffffffffffff8111156200108d576200108c6200169d565b5b6200109b8682870162000f87565b9150509250925092565b620010b0816200144e565b82525050565b6000620010c38262001328565b620010cf818562001333565b9350620010e1818560208601620014b8565b620010ec81620016a7565b840191505092915050565b60006200110660328362001344565b91506200111382620016b8565b604082019050919050565b60006200112d601c8362001344565b91506200113a8262001707565b602082019050919050565b60006200115460298362001344565b9150620011618262001730565b604082019050919050565b60006200117b60208362001344565b915062001188826200177f565b602082019050919050565b6000620011a260208362001344565b9150620011af82620017a8565b602082019050919050565b620011c581620014ae565b82525050565b6000608082019050620011e26000830187620010a5565b620011f16020830186620010a5565b620012006040830185620011ba565b8181036060830152620012148184620010b6565b905095945050505050565b600060208201905081810360008301526200123a81620010f7565b9050919050565b600060208201905081810360008301526200125c816200111e565b9050919050565b600060208201905081810360008301526200127e8162001145565b9050919050565b60006020820190508181036000830152620012a0816200116c565b9050919050565b60006020820190508181036000830152620012c28162001193565b9050919050565b6000620012d5620012e8565b9050620012e3828262001524565b919050565b6000604051905090565b600067ffffffffffffffff82111562001310576200130f62001664565b5b6200131b82620016a7565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006200136282620014ae565b91506200136f83620014ae565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620013a757620013a6620015a8565b5b828201905092915050565b6000620013bf82620014ae565b9150620013cc83620014ae565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620014085762001407620015a8565b5b828202905092915050565b60006200142082620014ae565b91506200142d83620014ae565b925082821015620014435762001442620015a8565b5b828203905092915050565b60006200145b826200148e565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620014d8578082015181840152602081019050620014bb565b83811115620014e8576000848401525b50505050565b600060028204905060018216806200150757607f821691505b602082108114156200151e576200151d620015d7565b5b50919050565b6200152f82620016a7565b810181811067ffffffffffffffff8211171562001551576200155062001664565b5b80604052505050565b60006200156782620014ae565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156200159d576200159c620015a8565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b620017dc8162001462565b8114620017e857600080fd5b50565b613e5d80620017fb6000396000f3fe60806040526004361061020f5760003560e01c806355f804b311610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb011461077f578063d936547e146107aa578063da3ef23f146107e7578063e985e9c514610810578063f2fde38b1461084d5761020f565b8063a22cb465146106c5578063b88d4fde146106ee578063c668286214610717578063c87b56dd146107425761020f565b806370a08231116100e757806370a08231146105f2578063715018a61461062f5780637f00c7a6146106465780638da5cb5b1461066f57806395d89b411461069a5761020f565b806355f804b3146105365780635c975abb1461055f5780636352211e1461058a5780636c0360eb146105c75761020f565b80632f745c591161019b57806342842e0e1161016a57806342842e0e14610441578063438b63001461046a57806344a0d68a146104a75780634a4c560d146104d05780634f6ccce7146104f95761020f565b80632f745c59146103b557806330cc7ae0146103f25780633ccfd60b1461041b57806340c10f19146104255761020f565b8063095ea7b3116101e2578063095ea7b3146102e257806313faede61461030b57806318160ddd14610336578063239c70ae1461036157806323b872dd1461038c5761020f565b806301ffc9a71461021457806302329a291461025157806306fdde031461027a578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612cb4565b610876565b6040516102489190613242565b60405180910390f35b34801561025d57600080fd5b5061027860048036038101906102739190612c87565b6108f0565b005b34801561028657600080fd5b5061028f610915565b60405161029c919061325d565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c79190612d57565b6109a7565b6040516102d991906131b9565b60405180910390f35b3480156102ee57600080fd5b5061030960048036038101906103049190612c47565b6109ed565b005b34801561031757600080fd5b50610320610b05565b60405161032d919061347f565b60405180910390f35b34801561034257600080fd5b5061034b610b0b565b604051610358919061347f565b60405180910390f35b34801561036d57600080fd5b50610376610b18565b604051610383919061347f565b60405180910390f35b34801561039857600080fd5b506103b360048036038101906103ae9190612b31565b610b1e565b005b3480156103c157600080fd5b506103dc60048036038101906103d79190612c47565b610b7e565b6040516103e9919061347f565b60405180910390f35b3480156103fe57600080fd5b5061041960048036038101906104149190612ac4565b610c23565b005b610423610c86565b005b61043f600480360381019061043a9190612c47565b610cce565b005b34801561044d57600080fd5b5061046860048036038101906104639190612b31565b610e14565b005b34801561047657600080fd5b50610491600480360381019061048c9190612ac4565b610e34565b60405161049e9190613220565b60405180910390f35b3480156104b357600080fd5b506104ce60048036038101906104c99190612d57565b610ee2565b005b3480156104dc57600080fd5b506104f760048036038101906104f29190612ac4565b610ef4565b005b34801561050557600080fd5b50610520600480360381019061051b9190612d57565b610f57565b60405161052d919061347f565b60405180910390f35b34801561054257600080fd5b5061055d60048036038101906105589190612d0e565b610fc8565b005b34801561056b57600080fd5b50610574610fea565b6040516105819190613242565b60405180910390f35b34801561059657600080fd5b506105b160048036038101906105ac9190612d57565b610ffd565b6040516105be91906131b9565b60405180910390f35b3480156105d357600080fd5b506105dc6110af565b6040516105e9919061325d565b60405180910390f35b3480156105fe57600080fd5b5061061960048036038101906106149190612ac4565b61113d565b604051610626919061347f565b60405180910390f35b34801561063b57600080fd5b506106446111f5565b005b34801561065257600080fd5b5061066d60048036038101906106689190612d57565b611209565b005b34801561067b57600080fd5b5061068461121b565b60405161069191906131b9565b60405180910390f35b3480156106a657600080fd5b506106af611245565b6040516106bc919061325d565b60405180910390f35b3480156106d157600080fd5b506106ec60048036038101906106e79190612c07565b6112d7565b005b3480156106fa57600080fd5b5061071560048036038101906107109190612b84565b6112ed565b005b34801561072357600080fd5b5061072c61134f565b604051610739919061325d565b60405180910390f35b34801561074e57600080fd5b5061076960048036038101906107649190612d57565b6113dd565b604051610776919061325d565b60405180910390f35b34801561078b57600080fd5b50610794611487565b6040516107a1919061347f565b60405180910390f35b3480156107b657600080fd5b506107d160048036038101906107cc9190612ac4565b61148d565b6040516107de9190613242565b60405180910390f35b3480156107f357600080fd5b5061080e60048036038101906108099190612d0e565b6114ad565b005b34801561081c57600080fd5b5061083760048036038101906108329190612af1565b6114cf565b6040516108449190613242565b60405180910390f35b34801561085957600080fd5b50610874600480360381019061086f9190612ac4565b611563565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e957506108e88261160f565b5b9050919050565b6108f86116f1565b80601060006101000a81548160ff02191690831515021790555050565b6060600080546109249061377d565b80601f01602080910402602001604051908101604052809291908181526020018280546109509061377d565b801561099d5780601f106109725761010080835404028352916020019161099d565b820191906000526020600020905b81548152906001019060200180831161098057829003601f168201915b5050505050905090565b60006109b28261176f565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109f882610ffd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a609061341f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a886117ba565b73ffffffffffffffffffffffffffffffffffffffff161480610ab75750610ab681610ab16117ba565b6114cf565b5b610af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aed9061337f565b60405180910390fd5b610b0083836117c2565b505050565b600d5481565b6000600880549050905090565b600f5481565b610b2f610b296117ba565b8261187b565b610b6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b659061345f565b60405180910390fd5b610b79838383611910565b505050565b6000610b898361113d565b8210610bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc19061327f565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c2b6116f1565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610c8e6116f1565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610ccc57600080fd5b565b6000610cd8610b0b565b9050601060009054906101000a900460ff1615610cf457600080fd5b60008211610d0157600080fd5b600f54821115610d1057600080fd5b600e548282610d1f91906135b2565b1115610d2a57600080fd5b610d3261121b565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610dd85760011515601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610dd75781600d54610dca9190613639565b341015610dd657600080fd5b5b5b6000600190505b828111610e0e57610dfb848284610df691906135b2565b611b77565b8080610e06906137e0565b915050610ddf565b50505050565b610e2f838383604051806020016040528060008152506112ed565b505050565b60606000610e418361113d565b905060008167ffffffffffffffff811115610e5f57610e5e613945565b5b604051908082528060200260200182016040528015610e8d5781602001602082028036833780820191505090505b50905060005b82811015610ed757610ea58582610b7e565b828281518110610eb857610eb7613916565b5b6020026020010181815250508080610ecf906137e0565b915050610e93565b508092505050919050565b610eea6116f1565b80600d8190555050565b610efc6116f1565b6001601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000610f61610b0b565b8210610fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f999061343f565b60405180910390fd5b60088281548110610fb657610fb5613916565b5b90600052602060002001549050919050565b610fd06116f1565b80600b9080519060200190610fe69291906128d8565b5050565b601060009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109d906133ff565b60405180910390fd5b80915050919050565b600b80546110bc9061377d565b80601f01602080910402602001604051908101604052809291908181526020018280546110e89061377d565b80156111355780601f1061110a57610100808354040283529160200191611135565b820191906000526020600020905b81548152906001019060200180831161111857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a59061335f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111fd6116f1565b6112076000611b95565b565b6112116116f1565b80600f8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546112549061377d565b80601f01602080910402602001604051908101604052809291908181526020018280546112809061377d565b80156112cd5780601f106112a2576101008083540402835291602001916112cd565b820191906000526020600020905b8154815290600101906020018083116112b057829003601f168201915b5050505050905090565b6112e96112e26117ba565b8383611c5b565b5050565b6112fe6112f86117ba565b8361187b565b61133d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113349061345f565b60405180910390fd5b61134984848484611dc8565b50505050565b600c805461135c9061377d565b80601f01602080910402602001604051908101604052809291908181526020018280546113889061377d565b80156113d55780601f106113aa576101008083540402835291602001916113d5565b820191906000526020600020905b8154815290600101906020018083116113b857829003601f168201915b505050505081565b60606113e882611e24565b611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e906133df565b60405180910390fd5b6000611431611e90565b90506000815111611451576040518060200160405280600081525061147f565b8061145b84611f22565b600c60405160200161146f93929190613188565b6040516020818303038152906040525b915050919050565b600e5481565b60116020528060005260406000206000915054906101000a900460ff1681565b6114b56116f1565b80600c90805190602001906114cb9291906128d8565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61156b6116f1565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d2906132bf565b60405180910390fd5b6115e481611b95565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806116da57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806116ea57506116e982612083565b5b9050919050565b6116f96117ba565b73ffffffffffffffffffffffffffffffffffffffff1661171761121b565b73ffffffffffffffffffffffffffffffffffffffff161461176d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611764906133bf565b60405180910390fd5b565b61177881611e24565b6117b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ae906133ff565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661183583610ffd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061188783610ffd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806118c957506118c881856114cf565b5b8061190757508373ffffffffffffffffffffffffffffffffffffffff166118ef846109a7565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661193082610ffd565b73ffffffffffffffffffffffffffffffffffffffff1614611986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197d906132df565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ed9061331f565b60405180910390fd5b611a018383836120ed565b611a0c6000826117c2565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a5c9190613693565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ab391906135b2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b72838383612201565b505050565b611b91828260405180602001604052806000815250612206565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc19061333f565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611dbb9190613242565b60405180910390a3505050565b611dd3848484611910565b611ddf84848484612261565b611e1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e159061329f565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600b8054611e9f9061377d565b80601f0160208091040260200160405190810160405280929190818152602001828054611ecb9061377d565b8015611f185780601f10611eed57610100808354040283529160200191611f18565b820191906000526020600020905b815481529060010190602001808311611efb57829003601f168201915b5050505050905090565b60606000821415611f6a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061207e565b600082905060005b60008214611f9c578080611f85906137e0565b915050600a82611f959190613608565b9150611f72565b60008167ffffffffffffffff811115611fb857611fb7613945565b5b6040519080825280601f01601f191660200182016040528015611fea5781602001600182028036833780820191505090505b5090505b60008514612077576001826120039190613693565b9150600a856120129190613829565b603061201e91906135b2565b60f81b81838151811061203457612033613916565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120709190613608565b9450611fee565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6120f883838361160a565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561213b57612136816123f8565b61217a565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612179576121788382612441565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121bd576121b8816125ae565b6121fc565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146121fb576121fa828261267f565b5b5b505050565b505050565b61221083836126fe565b61221d6000848484612261565b61225c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122539061329f565b60405180910390fd5b505050565b60006122828473ffffffffffffffffffffffffffffffffffffffff166115e7565b156123eb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122ab6117ba565b8786866040518563ffffffff1660e01b81526004016122cd94939291906131d4565b602060405180830381600087803b1580156122e757600080fd5b505af192505050801561231857506040513d601f19601f820116820180604052508101906123159190612ce1565b60015b61239b573d8060008114612348576040519150601f19603f3d011682016040523d82523d6000602084013e61234d565b606091505b50600081511415612393576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238a9061329f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506123f0565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161244e8461113d565b6124589190613693565b905060006007600084815260200190815260200160002054905081811461253d576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506125c29190613693565b90506000600960008481526020019081526020016000205490506000600883815481106125f2576125f1613916565b5b90600052602060002001549050806008838154811061261457612613613916565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612663576126626138e7565b5b6001900381819060005260206000200160009055905550505050565b600061268a8361113d565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561276e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127659061339f565b60405180910390fd5b61277781611e24565b156127b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ae906132ff565b60405180910390fd5b6127c3600083836120ed565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461281391906135b2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128d460008383612201565b5050565b8280546128e49061377d565b90600052602060002090601f016020900481019282612906576000855561294d565b82601f1061291f57805160ff191683800117855561294d565b8280016001018555821561294d579182015b8281111561294c578251825591602001919060010190612931565b5b50905061295a919061295e565b5090565b5b8082111561297757600081600090555060010161295f565b5090565b600061298e612989846134bf565b61349a565b9050828152602081018484840111156129aa576129a9613979565b5b6129b584828561373b565b509392505050565b60006129d06129cb846134f0565b61349a565b9050828152602081018484840111156129ec576129eb613979565b5b6129f784828561373b565b509392505050565b600081359050612a0e81613dcb565b92915050565b600081359050612a2381613de2565b92915050565b600081359050612a3881613df9565b92915050565b600081519050612a4d81613df9565b92915050565b600082601f830112612a6857612a67613974565b5b8135612a7884826020860161297b565b91505092915050565b600082601f830112612a9657612a95613974565b5b8135612aa68482602086016129bd565b91505092915050565b600081359050612abe81613e10565b92915050565b600060208284031215612ada57612ad9613983565b5b6000612ae8848285016129ff565b91505092915050565b60008060408385031215612b0857612b07613983565b5b6000612b16858286016129ff565b9250506020612b27858286016129ff565b9150509250929050565b600080600060608486031215612b4a57612b49613983565b5b6000612b58868287016129ff565b9350506020612b69868287016129ff565b9250506040612b7a86828701612aaf565b9150509250925092565b60008060008060808587031215612b9e57612b9d613983565b5b6000612bac878288016129ff565b9450506020612bbd878288016129ff565b9350506040612bce87828801612aaf565b925050606085013567ffffffffffffffff811115612bef57612bee61397e565b5b612bfb87828801612a53565b91505092959194509250565b60008060408385031215612c1e57612c1d613983565b5b6000612c2c858286016129ff565b9250506020612c3d85828601612a14565b9150509250929050565b60008060408385031215612c5e57612c5d613983565b5b6000612c6c858286016129ff565b9250506020612c7d85828601612aaf565b9150509250929050565b600060208284031215612c9d57612c9c613983565b5b6000612cab84828501612a14565b91505092915050565b600060208284031215612cca57612cc9613983565b5b6000612cd884828501612a29565b91505092915050565b600060208284031215612cf757612cf6613983565b5b6000612d0584828501612a3e565b91505092915050565b600060208284031215612d2457612d23613983565b5b600082013567ffffffffffffffff811115612d4257612d4161397e565b5b612d4e84828501612a81565b91505092915050565b600060208284031215612d6d57612d6c613983565b5b6000612d7b84828501612aaf565b91505092915050565b6000612d90838361316a565b60208301905092915050565b612da5816136c7565b82525050565b6000612db682613546565b612dc08185613574565b9350612dcb83613521565b8060005b83811015612dfc578151612de38882612d84565b9750612dee83613567565b925050600181019050612dcf565b5085935050505092915050565b612e12816136d9565b82525050565b6000612e2382613551565b612e2d8185613585565b9350612e3d81856020860161374a565b612e4681613988565b840191505092915050565b6000612e5c8261355c565b612e668185613596565b9350612e7681856020860161374a565b612e7f81613988565b840191505092915050565b6000612e958261355c565b612e9f81856135a7565b9350612eaf81856020860161374a565b80840191505092915050565b60008154612ec88161377d565b612ed281866135a7565b94506001821660008114612eed5760018114612efe57612f31565b60ff19831686528186019350612f31565b612f0785613531565b60005b83811015612f2957815481890152600182019150602081019050612f0a565b838801955050505b50505092915050565b6000612f47602b83613596565b9150612f5282613999565b604082019050919050565b6000612f6a603283613596565b9150612f75826139e8565b604082019050919050565b6000612f8d602683613596565b9150612f9882613a37565b604082019050919050565b6000612fb0602583613596565b9150612fbb82613a86565b604082019050919050565b6000612fd3601c83613596565b9150612fde82613ad5565b602082019050919050565b6000612ff6602483613596565b915061300182613afe565b604082019050919050565b6000613019601983613596565b915061302482613b4d565b602082019050919050565b600061303c602983613596565b915061304782613b76565b604082019050919050565b600061305f603e83613596565b915061306a82613bc5565b604082019050919050565b6000613082602083613596565b915061308d82613c14565b602082019050919050565b60006130a5602083613596565b91506130b082613c3d565b602082019050919050565b60006130c8602f83613596565b91506130d382613c66565b604082019050919050565b60006130eb601883613596565b91506130f682613cb5565b602082019050919050565b600061310e602183613596565b915061311982613cde565b604082019050919050565b6000613131602c83613596565b915061313c82613d2d565b604082019050919050565b6000613154602e83613596565b915061315f82613d7c565b604082019050919050565b61317381613731565b82525050565b61318281613731565b82525050565b60006131948286612e8a565b91506131a08285612e8a565b91506131ac8284612ebb565b9150819050949350505050565b60006020820190506131ce6000830184612d9c565b92915050565b60006080820190506131e96000830187612d9c565b6131f66020830186612d9c565b6132036040830185613179565b81810360608301526132158184612e18565b905095945050505050565b6000602082019050818103600083015261323a8184612dab565b905092915050565b60006020820190506132576000830184612e09565b92915050565b600060208201905081810360008301526132778184612e51565b905092915050565b6000602082019050818103600083015261329881612f3a565b9050919050565b600060208201905081810360008301526132b881612f5d565b9050919050565b600060208201905081810360008301526132d881612f80565b9050919050565b600060208201905081810360008301526132f881612fa3565b9050919050565b6000602082019050818103600083015261331881612fc6565b9050919050565b6000602082019050818103600083015261333881612fe9565b9050919050565b600060208201905081810360008301526133588161300c565b9050919050565b600060208201905081810360008301526133788161302f565b9050919050565b6000602082019050818103600083015261339881613052565b9050919050565b600060208201905081810360008301526133b881613075565b9050919050565b600060208201905081810360008301526133d881613098565b9050919050565b600060208201905081810360008301526133f8816130bb565b9050919050565b60006020820190508181036000830152613418816130de565b9050919050565b6000602082019050818103600083015261343881613101565b9050919050565b6000602082019050818103600083015261345881613124565b9050919050565b6000602082019050818103600083015261347881613147565b9050919050565b60006020820190506134946000830184613179565b92915050565b60006134a46134b5565b90506134b082826137af565b919050565b6000604051905090565b600067ffffffffffffffff8211156134da576134d9613945565b5b6134e382613988565b9050602081019050919050565b600067ffffffffffffffff82111561350b5761350a613945565b5b61351482613988565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006135bd82613731565b91506135c883613731565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135fd576135fc61385a565b5b828201905092915050565b600061361382613731565b915061361e83613731565b92508261362e5761362d613889565b5b828204905092915050565b600061364482613731565b915061364f83613731565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136885761368761385a565b5b828202905092915050565b600061369e82613731565b91506136a983613731565b9250828210156136bc576136bb61385a565b5b828203905092915050565b60006136d282613711565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561376857808201518184015260208101905061374d565b83811115613777576000848401525b50505050565b6000600282049050600182168061379557607f821691505b602082108114156137a9576137a86138b8565b5b50919050565b6137b882613988565b810181811067ffffffffffffffff821117156137d7576137d6613945565b5b80604052505050565b60006137eb82613731565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561381e5761381d61385a565b5b600182019050919050565b600061383482613731565b915061383f83613731565b92508261384f5761384e613889565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b613dd4816136c7565b8114613ddf57600080fd5b50565b613deb816136d9565b8114613df657600080fd5b50565b613e02816136e5565b8114613e0d57600080fd5b50565b613e1981613731565b8114613e2457600080fd5b5056fea26469706673582212205e6b4d5ccaa175b548fe98de4f216da9fb45c117d655b507b0678f2bf5a0951c64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000b42412e6e65742f6161727400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044141525400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002268747470733a2f2f73736c2e62612e6e65742f64616172742f6f726967696e616c2f000000000000000000000000000000000000000000000000000000000000

Deployed ByteCode

0x60806040526004361061020f5760003560e01c806355f804b311610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb011461077f578063d936547e146107aa578063da3ef23f146107e7578063e985e9c514610810578063f2fde38b1461084d5761020f565b8063a22cb465146106c5578063b88d4fde146106ee578063c668286214610717578063c87b56dd146107425761020f565b806370a08231116100e757806370a08231146105f2578063715018a61461062f5780637f00c7a6146106465780638da5cb5b1461066f57806395d89b411461069a5761020f565b806355f804b3146105365780635c975abb1461055f5780636352211e1461058a5780636c0360eb146105c75761020f565b80632f745c591161019b57806342842e0e1161016a57806342842e0e14610441578063438b63001461046a57806344a0d68a146104a75780634a4c560d146104d05780634f6ccce7146104f95761020f565b80632f745c59146103b557806330cc7ae0146103f25780633ccfd60b1461041b57806340c10f19146104255761020f565b8063095ea7b3116101e2578063095ea7b3146102e257806313faede61461030b57806318160ddd14610336578063239c70ae1461036157806323b872dd1461038c5761020f565b806301ffc9a71461021457806302329a291461025157806306fdde031461027a578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612cb4565b610876565b6040516102489190613242565b60405180910390f35b34801561025d57600080fd5b5061027860048036038101906102739190612c87565b6108f0565b005b34801561028657600080fd5b5061028f610915565b60405161029c919061325d565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c79190612d57565b6109a7565b6040516102d991906131b9565b60405180910390f35b3480156102ee57600080fd5b5061030960048036038101906103049190612c47565b6109ed565b005b34801561031757600080fd5b50610320610b05565b60405161032d919061347f565b60405180910390f35b34801561034257600080fd5b5061034b610b0b565b604051610358919061347f565b60405180910390f35b34801561036d57600080fd5b50610376610b18565b604051610383919061347f565b60405180910390f35b34801561039857600080fd5b506103b360048036038101906103ae9190612b31565b610b1e565b005b3480156103c157600080fd5b506103dc60048036038101906103d79190612c47565b610b7e565b6040516103e9919061347f565b60405180910390f35b3480156103fe57600080fd5b5061041960048036038101906104149190612ac4565b610c23565b005b610423610c86565b005b61043f600480360381019061043a9190612c47565b610cce565b005b34801561044d57600080fd5b5061046860048036038101906104639190612b31565b610e14565b005b34801561047657600080fd5b50610491600480360381019061048c9190612ac4565b610e34565b60405161049e9190613220565b60405180910390f35b3480156104b357600080fd5b506104ce60048036038101906104c99190612d57565b610ee2565b005b3480156104dc57600080fd5b506104f760048036038101906104f29190612ac4565b610ef4565b005b34801561050557600080fd5b50610520600480360381019061051b9190612d57565b610f57565b60405161052d919061347f565b60405180910390f35b34801561054257600080fd5b5061055d60048036038101906105589190612d0e565b610fc8565b005b34801561056b57600080fd5b50610574610fea565b6040516105819190613242565b60405180910390f35b34801561059657600080fd5b506105b160048036038101906105ac9190612d57565b610ffd565b6040516105be91906131b9565b60405180910390f35b3480156105d357600080fd5b506105dc6110af565b6040516105e9919061325d565b60405180910390f35b3480156105fe57600080fd5b5061061960048036038101906106149190612ac4565b61113d565b604051610626919061347f565b60405180910390f35b34801561063b57600080fd5b506106446111f5565b005b34801561065257600080fd5b5061066d60048036038101906106689190612d57565b611209565b005b34801561067b57600080fd5b5061068461121b565b60405161069191906131b9565b60405180910390f35b3480156106a657600080fd5b506106af611245565b6040516106bc919061325d565b60405180910390f35b3480156106d157600080fd5b506106ec60048036038101906106e79190612c07565b6112d7565b005b3480156106fa57600080fd5b5061071560048036038101906107109190612b84565b6112ed565b005b34801561072357600080fd5b5061072c61134f565b604051610739919061325d565b60405180910390f35b34801561074e57600080fd5b5061076960048036038101906107649190612d57565b6113dd565b604051610776919061325d565b60405180910390f35b34801561078b57600080fd5b50610794611487565b6040516107a1919061347f565b60405180910390f35b3480156107b657600080fd5b506107d160048036038101906107cc9190612ac4565b61148d565b6040516107de9190613242565b60405180910390f35b3480156107f357600080fd5b5061080e60048036038101906108099190612d0e565b6114ad565b005b34801561081c57600080fd5b5061083760048036038101906108329190612af1565b6114cf565b6040516108449190613242565b60405180910390f35b34801561085957600080fd5b50610874600480360381019061086f9190612ac4565b611563565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e957506108e88261160f565b5b9050919050565b6108f86116f1565b80601060006101000a81548160ff02191690831515021790555050565b6060600080546109249061377d565b80601f01602080910402602001604051908101604052809291908181526020018280546109509061377d565b801561099d5780601f106109725761010080835404028352916020019161099d565b820191906000526020600020905b81548152906001019060200180831161098057829003601f168201915b5050505050905090565b60006109b28261176f565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109f882610ffd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a609061341f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a886117ba565b73ffffffffffffffffffffffffffffffffffffffff161480610ab75750610ab681610ab16117ba565b6114cf565b5b610af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aed9061337f565b60405180910390fd5b610b0083836117c2565b505050565b600d5481565b6000600880549050905090565b600f5481565b610b2f610b296117ba565b8261187b565b610b6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b659061345f565b60405180910390fd5b610b79838383611910565b505050565b6000610b898361113d565b8210610bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc19061327f565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c2b6116f1565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610c8e6116f1565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610ccc57600080fd5b565b6000610cd8610b0b565b9050601060009054906101000a900460ff1615610cf457600080fd5b60008211610d0157600080fd5b600f54821115610d1057600080fd5b600e548282610d1f91906135b2565b1115610d2a57600080fd5b610d3261121b565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610dd85760011515601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610dd75781600d54610dca9190613639565b341015610dd657600080fd5b5b5b6000600190505b828111610e0e57610dfb848284610df691906135b2565b611b77565b8080610e06906137e0565b915050610ddf565b50505050565b610e2f838383604051806020016040528060008152506112ed565b505050565b60606000610e418361113d565b905060008167ffffffffffffffff811115610e5f57610e5e613945565b5b604051908082528060200260200182016040528015610e8d5781602001602082028036833780820191505090505b50905060005b82811015610ed757610ea58582610b7e565b828281518110610eb857610eb7613916565b5b6020026020010181815250508080610ecf906137e0565b915050610e93565b508092505050919050565b610eea6116f1565b80600d8190555050565b610efc6116f1565b6001601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000610f61610b0b565b8210610fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f999061343f565b60405180910390fd5b60088281548110610fb657610fb5613916565b5b90600052602060002001549050919050565b610fd06116f1565b80600b9080519060200190610fe69291906128d8565b5050565b601060009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109d906133ff565b60405180910390fd5b80915050919050565b600b80546110bc9061377d565b80601f01602080910402602001604051908101604052809291908181526020018280546110e89061377d565b80156111355780601f1061110a57610100808354040283529160200191611135565b820191906000526020600020905b81548152906001019060200180831161111857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a59061335f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111fd6116f1565b6112076000611b95565b565b6112116116f1565b80600f8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546112549061377d565b80601f01602080910402602001604051908101604052809291908181526020018280546112809061377d565b80156112cd5780601f106112a2576101008083540402835291602001916112cd565b820191906000526020600020905b8154815290600101906020018083116112b057829003601f168201915b5050505050905090565b6112e96112e26117ba565b8383611c5b565b5050565b6112fe6112f86117ba565b8361187b565b61133d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113349061345f565b60405180910390fd5b61134984848484611dc8565b50505050565b600c805461135c9061377d565b80601f01602080910402602001604051908101604052809291908181526020018280546113889061377d565b80156113d55780601f106113aa576101008083540402835291602001916113d5565b820191906000526020600020905b8154815290600101906020018083116113b857829003601f168201915b505050505081565b60606113e882611e24565b611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e906133df565b60405180910390fd5b6000611431611e90565b90506000815111611451576040518060200160405280600081525061147f565b8061145b84611f22565b600c60405160200161146f93929190613188565b6040516020818303038152906040525b915050919050565b600e5481565b60116020528060005260406000206000915054906101000a900460ff1681565b6114b56116f1565b80600c90805190602001906114cb9291906128d8565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61156b6116f1565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d2906132bf565b60405180910390fd5b6115e481611b95565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806116da57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806116ea57506116e982612083565b5b9050919050565b6116f96117ba565b73ffffffffffffffffffffffffffffffffffffffff1661171761121b565b73ffffffffffffffffffffffffffffffffffffffff161461176d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611764906133bf565b60405180910390fd5b565b61177881611e24565b6117b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ae906133ff565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661183583610ffd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061188783610ffd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806118c957506118c881856114cf565b5b8061190757508373ffffffffffffffffffffffffffffffffffffffff166118ef846109a7565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661193082610ffd565b73ffffffffffffffffffffffffffffffffffffffff1614611986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197d906132df565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ed9061331f565b60405180910390fd5b611a018383836120ed565b611a0c6000826117c2565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a5c9190613693565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ab391906135b2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b72838383612201565b505050565b611b91828260405180602001604052806000815250612206565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc19061333f565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611dbb9190613242565b60405180910390a3505050565b611dd3848484611910565b611ddf84848484612261565b611e1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e159061329f565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600b8054611e9f9061377d565b80601f0160208091040260200160405190810160405280929190818152602001828054611ecb9061377d565b8015611f185780601f10611eed57610100808354040283529160200191611f18565b820191906000526020600020905b815481529060010190602001808311611efb57829003601f168201915b5050505050905090565b60606000821415611f6a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061207e565b600082905060005b60008214611f9c578080611f85906137e0565b915050600a82611f959190613608565b9150611f72565b60008167ffffffffffffffff811115611fb857611fb7613945565b5b6040519080825280601f01601f191660200182016040528015611fea5781602001600182028036833780820191505090505b5090505b60008514612077576001826120039190613693565b9150600a856120129190613829565b603061201e91906135b2565b60f81b81838151811061203457612033613916565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120709190613608565b9450611fee565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6120f883838361160a565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561213b57612136816123f8565b61217a565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612179576121788382612441565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121bd576121b8816125ae565b6121fc565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146121fb576121fa828261267f565b5b5b505050565b505050565b61221083836126fe565b61221d6000848484612261565b61225c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122539061329f565b60405180910390fd5b505050565b60006122828473ffffffffffffffffffffffffffffffffffffffff166115e7565b156123eb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122ab6117ba565b8786866040518563ffffffff1660e01b81526004016122cd94939291906131d4565b602060405180830381600087803b1580156122e757600080fd5b505af192505050801561231857506040513d601f19601f820116820180604052508101906123159190612ce1565b60015b61239b573d8060008114612348576040519150601f19603f3d011682016040523d82523d6000602084013e61234d565b606091505b50600081511415612393576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238a9061329f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506123f0565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161244e8461113d565b6124589190613693565b905060006007600084815260200190815260200160002054905081811461253d576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506125c29190613693565b90506000600960008481526020019081526020016000205490506000600883815481106125f2576125f1613916565b5b90600052602060002001549050806008838154811061261457612613613916565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612663576126626138e7565b5b6001900381819060005260206000200160009055905550505050565b600061268a8361113d565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561276e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127659061339f565b60405180910390fd5b61277781611e24565b156127b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ae906132ff565b60405180910390fd5b6127c3600083836120ed565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461281391906135b2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128d460008383612201565b5050565b8280546128e49061377d565b90600052602060002090601f016020900481019282612906576000855561294d565b82601f1061291f57805160ff191683800117855561294d565b8280016001018555821561294d579182015b8281111561294c578251825591602001919060010190612931565b5b50905061295a919061295e565b5090565b5b8082111561297757600081600090555060010161295f565b5090565b600061298e612989846134bf565b61349a565b9050828152602081018484840111156129aa576129a9613979565b5b6129b584828561373b565b509392505050565b60006129d06129cb846134f0565b61349a565b9050828152602081018484840111156129ec576129eb613979565b5b6129f784828561373b565b509392505050565b600081359050612a0e81613dcb565b92915050565b600081359050612a2381613de2565b92915050565b600081359050612a3881613df9565b92915050565b600081519050612a4d81613df9565b92915050565b600082601f830112612a6857612a67613974565b5b8135612a7884826020860161297b565b91505092915050565b600082601f830112612a9657612a95613974565b5b8135612aa68482602086016129bd565b91505092915050565b600081359050612abe81613e10565b92915050565b600060208284031215612ada57612ad9613983565b5b6000612ae8848285016129ff565b91505092915050565b60008060408385031215612b0857612b07613983565b5b6000612b16858286016129ff565b9250506020612b27858286016129ff565b9150509250929050565b600080600060608486031215612b4a57612b49613983565b5b6000612b58868287016129ff565b9350506020612b69868287016129ff565b9250506040612b7a86828701612aaf565b9150509250925092565b60008060008060808587031215612b9e57612b9d613983565b5b6000612bac878288016129ff565b9450506020612bbd878288016129ff565b9350506040612bce87828801612aaf565b925050606085013567ffffffffffffffff811115612bef57612bee61397e565b5b612bfb87828801612a53565b91505092959194509250565b60008060408385031215612c1e57612c1d613983565b5b6000612c2c858286016129ff565b9250506020612c3d85828601612a14565b9150509250929050565b60008060408385031215612c5e57612c5d613983565b5b6000612c6c858286016129ff565b9250506020612c7d85828601612aaf565b9150509250929050565b600060208284031215612c9d57612c9c613983565b5b6000612cab84828501612a14565b91505092915050565b600060208284031215612cca57612cc9613983565b5b6000612cd884828501612a29565b91505092915050565b600060208284031215612cf757612cf6613983565b5b6000612d0584828501612a3e565b91505092915050565b600060208284031215612d2457612d23613983565b5b600082013567ffffffffffffffff811115612d4257612d4161397e565b5b612d4e84828501612a81565b91505092915050565b600060208284031215612d6d57612d6c613983565b5b6000612d7b84828501612aaf565b91505092915050565b6000612d90838361316a565b60208301905092915050565b612da5816136c7565b82525050565b6000612db682613546565b612dc08185613574565b9350612dcb83613521565b8060005b83811015612dfc578151612de38882612d84565b9750612dee83613567565b925050600181019050612dcf565b5085935050505092915050565b612e12816136d9565b82525050565b6000612e2382613551565b612e2d8185613585565b9350612e3d81856020860161374a565b612e4681613988565b840191505092915050565b6000612e5c8261355c565b612e668185613596565b9350612e7681856020860161374a565b612e7f81613988565b840191505092915050565b6000612e958261355c565b612e9f81856135a7565b9350612eaf81856020860161374a565b80840191505092915050565b60008154612ec88161377d565b612ed281866135a7565b94506001821660008114612eed5760018114612efe57612f31565b60ff19831686528186019350612f31565b612f0785613531565b60005b83811015612f2957815481890152600182019150602081019050612f0a565b838801955050505b50505092915050565b6000612f47602b83613596565b9150612f5282613999565b604082019050919050565b6000612f6a603283613596565b9150612f75826139e8565b604082019050919050565b6000612f8d602683613596565b9150612f9882613a37565b604082019050919050565b6000612fb0602583613596565b9150612fbb82613a86565b604082019050919050565b6000612fd3601c83613596565b9150612fde82613ad5565b602082019050919050565b6000612ff6602483613596565b915061300182613afe565b604082019050919050565b6000613019601983613596565b915061302482613b4d565b602082019050919050565b600061303c602983613596565b915061304782613b76565b604082019050919050565b600061305f603e83613596565b915061306a82613bc5565b604082019050919050565b6000613082602083613596565b915061308d82613c14565b602082019050919050565b60006130a5602083613596565b91506130b082613c3d565b602082019050919050565b60006130c8602f83613596565b91506130d382613c66565b604082019050919050565b60006130eb601883613596565b91506130f682613cb5565b602082019050919050565b600061310e602183613596565b915061311982613cde565b604082019050919050565b6000613131602c83613596565b915061313c82613d2d565b604082019050919050565b6000613154602e83613596565b915061315f82613d7c565b604082019050919050565b61317381613731565b82525050565b61318281613731565b82525050565b60006131948286612e8a565b91506131a08285612e8a565b91506131ac8284612ebb565b9150819050949350505050565b60006020820190506131ce6000830184612d9c565b92915050565b60006080820190506131e96000830187612d9c565b6131f66020830186612d9c565b6132036040830185613179565b81810360608301526132158184612e18565b905095945050505050565b6000602082019050818103600083015261323a8184612dab565b905092915050565b60006020820190506132576000830184612e09565b92915050565b600060208201905081810360008301526132778184612e51565b905092915050565b6000602082019050818103600083015261329881612f3a565b9050919050565b600060208201905081810360008301526132b881612f5d565b9050919050565b600060208201905081810360008301526132d881612f80565b9050919050565b600060208201905081810360008301526132f881612fa3565b9050919050565b6000602082019050818103600083015261331881612fc6565b9050919050565b6000602082019050818103600083015261333881612fe9565b9050919050565b600060208201905081810360008301526133588161300c565b9050919050565b600060208201905081810360008301526133788161302f565b9050919050565b6000602082019050818103600083015261339881613052565b9050919050565b600060208201905081810360008301526133b881613075565b9050919050565b600060208201905081810360008301526133d881613098565b9050919050565b600060208201905081810360008301526133f8816130bb565b9050919050565b60006020820190508181036000830152613418816130de565b9050919050565b6000602082019050818103600083015261343881613101565b9050919050565b6000602082019050818103600083015261345881613124565b9050919050565b6000602082019050818103600083015261347881613147565b9050919050565b60006020820190506134946000830184613179565b92915050565b60006134a46134b5565b90506134b082826137af565b919050565b6000604051905090565b600067ffffffffffffffff8211156134da576134d9613945565b5b6134e382613988565b9050602081019050919050565b600067ffffffffffffffff82111561350b5761350a613945565b5b61351482613988565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006135bd82613731565b91506135c883613731565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135fd576135fc61385a565b5b828201905092915050565b600061361382613731565b915061361e83613731565b92508261362e5761362d613889565b5b828204905092915050565b600061364482613731565b915061364f83613731565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136885761368761385a565b5b828202905092915050565b600061369e82613731565b91506136a983613731565b9250828210156136bc576136bb61385a565b5b828203905092915050565b60006136d282613711565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561376857808201518184015260208101905061374d565b83811115613777576000848401525b50505050565b6000600282049050600182168061379557607f821691505b602082108114156137a9576137a86138b8565b5b50919050565b6137b882613988565b810181811067ffffffffffffffff821117156137d7576137d6613945565b5b80604052505050565b60006137eb82613731565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561381e5761381d61385a565b5b600182019050919050565b600061383482613731565b915061383f83613731565b92508261384f5761384e613889565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b613dd4816136c7565b8114613ddf57600080fd5b50565b613deb816136d9565b8114613df657600080fd5b50565b613e02816136e5565b8114613e0d57600080fd5b50565b613e1981613731565b8114613e2457600080fd5b5056fea26469706673582212205e6b4d5ccaa175b548fe98de4f216da9fb45c117d655b507b0678f2bf5a0951c64736f6c63430008070033