ETH Price: $3,060.13 (+1.19%)
Gas: 3 Gwei

Token

AnimeSkaters (Skaters)
 

Overview

Max Total Supply

5,000 Skaters

Holders

3,325

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
eatthedips.eth
Balance
1 Skaters
0xaa2d0029f54ee1a193f957757e77c3101cfd57bf
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

AnimeSkaters is an Opensea NFT collection of 5000 unique hand drawn anime skaters from over 150 traits.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
AnimeSkaters

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : AnimeSkaters.sol
/**
 *Submitted for verification at Etherscan.io on 2022-07-11
*/                                                                                    

/**

*/
// SPDX-License-Identifier: MIT 
// File: @openzeppelin/contracts/utils/Strings.sol
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: contracts/AnimeSkaters.sol


pragma solidity >=0.8.0 <0.9.0;





contract AnimeSkaters is ERC721A, Ownable { 

  using Strings for uint256;

  string public uriPrefix = "ipfs://QmcuasYiKiWJKfTxtN7rZ9WboRjz6Hge86jW4WR1tem1ex/";
  string public uriSuffix = ".json"; 
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.004 ether; 

  uint256 public maxSupply = 5000; 
  uint256 public maxMintAmountPerTx = 10; 
  uint256 public totalMaxMintAmount = 11; 

  uint256 public freeMaxMintAmount = 1; 

  bool public paused = true;
  bool public publicSale = false;
  bool public revealed = true;

  mapping(address => uint256) public addressMintedBalance; 

  constructor() ERC721A("AnimeSkaters", "Skaters") { 
        setHiddenMetadataUri("ipfs://__CID__/hidden.json"); 
            ownerMint(55); 
    } 

  // MODIFIERS 
  
  modifier mintCompliance(uint256 _mintAmount) {
    if (msg.sender != owner()) { 
        require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
    }
    require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    _;
  } 

  modifier mintPriceCompliance(uint256 _mintAmount) {
    uint256 ownerMintedCount = addressMintedBalance[msg.sender];
   if (ownerMintedCount >= freeMaxMintAmount) {
        require(msg.value >= cost * _mintAmount, 'Insufficient funds!');
   }
        _;
  }

  // MINTS 

   function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    require(!paused, 'The contract is paused!'); 
    require(publicSale, "Not open to public yet!");
    uint256 ownerMintedCount = addressMintedBalance[msg.sender];

    if (ownerMintedCount < freeMaxMintAmount) {  
            require(ownerMintedCount + _mintAmount <= freeMaxMintAmount, "Exceeded Free Mint Limit");
        } else if (ownerMintedCount >= freeMaxMintAmount) { 
            require(ownerMintedCount + _mintAmount <= totalMaxMintAmount, "Exceeded Mint Limit");
        }

    _safeMint(_msgSender(), _mintAmount);
    for (uint256 i = 1; i <=_mintAmount; i++){
        addressMintedBalance[msg.sender]++;
    }
  }

  function ownerMint(uint256 _mintAmount) public payable onlyOwner {
     require(_mintAmount > 0, 'Invalid mint amount!');
     require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    _safeMint(_msgSender(), _mintAmount);
  }

function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }
  
  function walletOfOwner(address _owner) public view returns (uint256[] memory) {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = _startTokenId();
    uint256 ownedTokenIndex = 0;
    address latestOwnerAddress;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      TokenOwnership memory ownership = _ownerships[currentTokenId];

      if (!ownership.burned && ownership.addr != address(0)) {
        latestOwnerAddress = ownership.addr;
      }

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

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

  function _startTokenId() internal view virtual override returns (uint256) {
    return 1;
  }

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

    if (revealed == false) {
      return hiddenMetadataUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : '';
  }

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

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

   function setFreeMaxMintAmount(uint256 _freeMaxMintAmount) public onlyOwner {
    freeMaxMintAmount = _freeMaxMintAmount; 
  }

  function setTotalMaxMintAmount(uint _amount) public onlyOwner {
      require(_amount <= maxSupply, "Exceed total amount");
      totalMaxMintAmount = _amount;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

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

  function setPublicSale(bool _state) public onlyOwner {
    publicSale = _state;
  }

  // WITHDRAW
   function withdraw() public onlyOwner  {
    uint256 artist = address(this).balance * 39 / 100;
    uint256 marketer = address(this).balance * 39 / 100;

    (bool artSuccess, ) = payable(0xF34D1151eE92C50cff4395154b224F4EcDa0C822).call{value: artist}('');
    require(artSuccess);

    (bool marketerSuccess, ) = payable(0xD69EBa3349d69f2e96EB7db98eF610ef625762a7).call{value: marketer}('');
    require(marketerSuccess);

    (bool devSuccess, ) = payable(0x7d2a48384EC3FC52fA6916B314C3304D2FFf4de2).call{value: address(this).balance}('');
    require(devSuccess);
  }

  function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMaxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeMaxMintAmount","type":"uint256"}],"name":"setFreeMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setTotalMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMaxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180606001604052806036815260200162005f5560369139600990816200002e919062000d7e565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a908162000075919062000d7e565b50660e35fa931a0000600c55611388600d55600a600e55600b600f5560016010556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff021916908315150217905550348015620000f457600080fd5b506040518060400160405280600c81526020017f416e696d65536b617465727300000000000000000000000000000000000000008152506040518060400160405280600781526020017f536b617465727300000000000000000000000000000000000000000000000000815250816002908162000172919062000d7e565b50806003908162000184919062000d7e565b50620001956200021b60201b60201c565b6000819055505050620001bd620001b16200022460201b60201c565b6200022c60201b60201c565b620002036040518060400160405280601a81526020017f697066733a2f2f5f5f4349445f5f2f68696464656e2e6a736f6e000000000000815250620002f260201b60201c565b6200021560376200039660201b60201c565b6200123a565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003026200022460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000328620004f360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000381576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003789062000ec6565b60405180910390fd5b80600b908162000392919062000d7e565b5050565b620003a66200022460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003cc620004f360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000425576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200041c9062000ec6565b60405180910390fd5b600081116200046b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004629062000f38565b60405180910390fd5b600d54816200047f6200051d60201b60201c565b6200048b919062000f89565b1115620004cf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004c69062001036565b60405180910390fd5b620004f0620004e36200022460201b60201c565b826200053c60201b60201c565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006200052f6200021b60201b60201c565b6001546000540303905090565b6200055e8282604051806020016040528060008152506200056260201b60201c565b5050565b6200057783838360016200057c60201b60201c565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603620005e9576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000840362000624576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200063960008683876200097460201b60201c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015620008115750620008108773ffffffffffffffffffffffffffffffffffffffff166200097a60201b6200273d1760201c565b5b15620008e3575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200088f60008884806001019550886200099d60201b60201c565b620008c6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80820362000818578260005414620008dd57600080fd5b6200094f565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203620008e4575b8160008190555050506200096d600086838762000afe60201b60201c565b5050505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620009cb6200022460201b60201c565b8786866040518563ffffffff1660e01b8152600401620009ef949392919062001152565b6020604051808303816000875af192505050801562000a2e57506040513d601f19601f8201168201806040525081019062000a2b919062001208565b60015b62000aab573d806000811462000a61576040519150601f19603f3d011682016040523d82523d6000602084013e62000a66565b606091505b50600081510362000aa3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b8657607f821691505b60208210810362000b9c5762000b9b62000b3e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000c067fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000bc7565b62000c12868362000bc7565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000c5f62000c5962000c538462000c2a565b62000c34565b62000c2a565b9050919050565b6000819050919050565b62000c7b8362000c3e565b62000c9362000c8a8262000c66565b84845462000bd4565b825550505050565b600090565b62000caa62000c9b565b62000cb781848462000c70565b505050565b5b8181101562000cdf5762000cd360008262000ca0565b60018101905062000cbd565b5050565b601f82111562000d2e5762000cf88162000ba2565b62000d038462000bb7565b8101602085101562000d13578190505b62000d2b62000d228562000bb7565b83018262000cbc565b50505b505050565b600082821c905092915050565b600062000d536000198460080262000d33565b1980831691505092915050565b600062000d6e838362000d40565b9150826002028217905092915050565b62000d898262000b04565b67ffffffffffffffff81111562000da55762000da462000b0f565b5b62000db1825462000b6d565b62000dbe82828562000ce3565b600060209050601f83116001811462000df6576000841562000de1578287015190505b62000ded858262000d60565b86555062000e5d565b601f19841662000e068662000ba2565b60005b8281101562000e305784890151825560018201915060208501945060208101905062000e09565b8683101562000e50578489015162000e4c601f89168262000d40565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000eae60208362000e65565b915062000ebb8262000e76565b602082019050919050565b6000602082019050818103600083015262000ee18162000e9f565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b600062000f2060148362000e65565b915062000f2d8262000ee8565b602082019050919050565b6000602082019050818103600083015262000f538162000f11565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000f968262000c2a565b915062000fa38362000c2a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000fdb5762000fda62000f5a565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006200101e60148362000e65565b91506200102b8262000fe6565b602082019050919050565b6000602082019050818103600083015262001051816200100f565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620010858262001058565b9050919050565b620010978162001078565b82525050565b620010a88162000c2a565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b83811015620010ea578082015181840152602081019050620010cd565b83811115620010fa576000848401525b50505050565b6000601f19601f8301169050919050565b60006200111e82620010ae565b6200112a8185620010b9565b93506200113c818560208601620010ca565b620011478162001100565b840191505092915050565b60006080820190506200116960008301876200108c565b6200117860208301866200108c565b6200118760408301856200109d565b81810360608301526200119b818462001111565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b620011e281620011ab565b8114620011ee57600080fd5b50565b6000815190506200120281620011d7565b92915050565b600060208284031215620012215762001220620011a6565b5b60006200123184828501620011f1565b91505092915050565b614d0b806200124a6000396000f3fe6080604052600436106102725760003560e01c806362b99ad41161014f578063b071401b116100c1578063e0a808531161007a578063e0a8085314610941578063e4386d261461096a578063e985e9c514610995578063efbd73f4146109d2578063f19e75d4146109fb578063f2fde38b14610a1757610272565b8063b071401b14610821578063b88d4fde1461084a578063c87b56dd14610873578063d4fcb2ae146108b0578063d5abeb01146108d9578063dc33e6811461090457610272565b80638da5cb5b116101135780638da5cb5b1461073057806394354fd01461075b57806395d89b4114610786578063a0712d68146107b1578063a22cb465146107cd578063a45ba8e7146107f657610272565b806362b99ad41461064b5780636352211e1461067657806370a08231146106b3578063715018a6146106f05780637ec4a6591461070757610272565b806323b872dd116101e857806344a0d68a116101ac57806344a0d68a1461054f5780634fdd43cb1461057857806351830227146105a15780635503a0e8146105cc5780635aca1bb6146105f75780635c975abb1461062057610272565b806323b872dd1461047e57806333bc1c5c146104a75780633ccfd60b146104d257806342842e0e146104e9578063438b63001461051257610272565b80631159aca41161023a5780631159aca41461036e57806313faede61461039957806316ba10e0146103c457806316c38b3c146103ed57806318160ddd1461041657806318cae2691461044157610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063095ea7b31461031c5780631042779c14610345575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613945565b610a40565b6040516102ab919061398d565b60405180910390f35b3480156102c057600080fd5b506102c9610b22565b6040516102d69190613a41565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613a99565b610bb4565b6040516103139190613b07565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e9190613b4e565b610c30565b005b34801561035157600080fd5b5061036c60048036038101906103679190613a99565b610d3a565b005b34801561037a57600080fd5b50610383610e05565b6040516103909190613b9d565b60405180910390f35b3480156103a557600080fd5b506103ae610e0b565b6040516103bb9190613b9d565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e69190613ced565b610e11565b005b3480156103f957600080fd5b50610414600480360381019061040f9190613d62565b610ea0565b005b34801561042257600080fd5b5061042b610f39565b6040516104389190613b9d565b60405180910390f35b34801561044d57600080fd5b5061046860048036038101906104639190613d8f565b610f50565b6040516104759190613b9d565b60405180910390f35b34801561048a57600080fd5b506104a560048036038101906104a09190613dbc565b610f68565b005b3480156104b357600080fd5b506104bc610f78565b6040516104c9919061398d565b60405180910390f35b3480156104de57600080fd5b506104e7610f8b565b005b3480156104f557600080fd5b50610510600480360381019061050b9190613dbc565b6111e6565b005b34801561051e57600080fd5b5061053960048036038101906105349190613d8f565b611206565b6040516105469190613ecd565b60405180910390f35b34801561055b57600080fd5b5061057660048036038101906105719190613a99565b611420565b005b34801561058457600080fd5b5061059f600480360381019061059a9190613ced565b6114a6565b005b3480156105ad57600080fd5b506105b6611535565b6040516105c3919061398d565b60405180910390f35b3480156105d857600080fd5b506105e1611548565b6040516105ee9190613a41565b60405180910390f35b34801561060357600080fd5b5061061e60048036038101906106199190613d62565b6115d6565b005b34801561062c57600080fd5b5061063561166f565b604051610642919061398d565b60405180910390f35b34801561065757600080fd5b50610660611682565b60405161066d9190613a41565b60405180910390f35b34801561068257600080fd5b5061069d60048036038101906106989190613a99565b611710565b6040516106aa9190613b07565b60405180910390f35b3480156106bf57600080fd5b506106da60048036038101906106d59190613d8f565b611726565b6040516106e79190613b9d565b60405180910390f35b3480156106fc57600080fd5b506107056117f5565b005b34801561071357600080fd5b5061072e60048036038101906107299190613ced565b61187d565b005b34801561073c57600080fd5b5061074561190c565b6040516107529190613b07565b60405180910390f35b34801561076757600080fd5b50610770611936565b60405161077d9190613b9d565b60405180910390f35b34801561079257600080fd5b5061079b61193c565b6040516107a89190613a41565b60405180910390f35b6107cb60048036038101906107c69190613a99565b6119ce565b005b3480156107d957600080fd5b506107f460048036038101906107ef9190613eef565b611d7d565b005b34801561080257600080fd5b5061080b611ef4565b6040516108189190613a41565b60405180910390f35b34801561082d57600080fd5b5061084860048036038101906108439190613a99565b611f82565b005b34801561085657600080fd5b50610871600480360381019061086c9190613fd0565b612008565b005b34801561087f57600080fd5b5061089a60048036038101906108959190613a99565b612084565b6040516108a79190613a41565b60405180910390f35b3480156108bc57600080fd5b506108d760048036038101906108d29190613a99565b6121dc565b005b3480156108e557600080fd5b506108ee612262565b6040516108fb9190613b9d565b60405180910390f35b34801561091057600080fd5b5061092b60048036038101906109269190613d8f565b612268565b6040516109389190613b9d565b60405180910390f35b34801561094d57600080fd5b5061096860048036038101906109639190613d62565b61227a565b005b34801561097657600080fd5b5061097f612313565b60405161098c9190613b9d565b60405180910390f35b3480156109a157600080fd5b506109bc60048036038101906109b79190614053565b612319565b6040516109c9919061398d565b60405180910390f35b3480156109de57600080fd5b506109f960048036038101906109f49190614093565b6123ad565b005b610a156004803603810190610a109190613a99565b61251c565b005b348015610a2357600080fd5b50610a3e6004803603810190610a399190613d8f565b612646565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b0b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b1b5750610b1a82612760565b5b9050919050565b606060028054610b3190614102565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5d90614102565b8015610baa5780601f10610b7f57610100808354040283529160200191610baa565b820191906000526020600020905b815481529060010190602001808311610b8d57829003601f168201915b5050505050905090565b6000610bbf826127ca565b610bf5576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c3b82611710565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ca2576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cc1612818565b73ffffffffffffffffffffffffffffffffffffffff1614158015610cf35750610cf181610cec612818565b612319565b155b15610d2a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d35838383612820565b505050565b610d42612818565b73ffffffffffffffffffffffffffffffffffffffff16610d6061190c565b73ffffffffffffffffffffffffffffffffffffffff1614610db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dad9061417f565b60405180910390fd5b600d54811115610dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df2906141eb565b60405180910390fd5b80600f8190555050565b60105481565b600c5481565b610e19612818565b73ffffffffffffffffffffffffffffffffffffffff16610e3761190c565b73ffffffffffffffffffffffffffffffffffffffff1614610e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e849061417f565b60405180910390fd5b80600a9081610e9c91906143b7565b5050565b610ea8612818565b73ffffffffffffffffffffffffffffffffffffffff16610ec661190c565b73ffffffffffffffffffffffffffffffffffffffff1614610f1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f139061417f565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b6000610f436128d2565b6001546000540303905090565b60126020528060005260406000206000915090505481565b610f738383836128db565b505050565b601160019054906101000a900460ff1681565b610f93612818565b73ffffffffffffffffffffffffffffffffffffffff16610fb161190c565b73ffffffffffffffffffffffffffffffffffffffff1614611007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffe9061417f565b60405180910390fd5b6000606460274761101891906144b8565b6110229190614541565b90506000606460274761103591906144b8565b61103f9190614541565b9050600073f34d1151ee92c50cff4395154b224f4ecda0c82273ffffffffffffffffffffffffffffffffffffffff168360405161107b906145a3565b60006040518083038185875af1925050503d80600081146110b8576040519150601f19603f3d011682016040523d82523d6000602084013e6110bd565b606091505b50509050806110cb57600080fd5b600073d69eba3349d69f2e96eb7db98ef610ef625762a773ffffffffffffffffffffffffffffffffffffffff1683604051611105906145a3565b60006040518083038185875af1925050503d8060008114611142576040519150601f19603f3d011682016040523d82523d6000602084013e611147565b606091505b505090508061115557600080fd5b6000737d2a48384ec3fc52fa6916b314c3304d2fff4de273ffffffffffffffffffffffffffffffffffffffff164760405161118f906145a3565b60006040518083038185875af1925050503d80600081146111cc576040519150601f19603f3d011682016040523d82523d6000602084013e6111d1565b606091505b50509050806111df57600080fd5b5050505050565b61120183838360405180602001604052806000815250612008565b505050565b6060600061121383611726565b905060008167ffffffffffffffff81111561123157611230613bc2565b5b60405190808252806020026020018201604052801561125f5781602001602082028036833780820191505090505b509050600061126c6128d2565b90506000805b84821080156112835750600d548311155b15611413576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001511580156113905750600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614155b1561139d57806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113ff57838584815181106113e4576113e36145b8565b5b60200260200101818152505082806113fb906145e7565b9350505b838061140a906145e7565b94505050611272565b8395505050505050919050565b611428612818565b73ffffffffffffffffffffffffffffffffffffffff1661144661190c565b73ffffffffffffffffffffffffffffffffffffffff161461149c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114939061417f565b60405180910390fd5b80600c8190555050565b6114ae612818565b73ffffffffffffffffffffffffffffffffffffffff166114cc61190c565b73ffffffffffffffffffffffffffffffffffffffff1614611522576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115199061417f565b60405180910390fd5b80600b908161153191906143b7565b5050565b601160029054906101000a900460ff1681565b600a805461155590614102565b80601f016020809104026020016040519081016040528092919081815260200182805461158190614102565b80156115ce5780601f106115a3576101008083540402835291602001916115ce565b820191906000526020600020905b8154815290600101906020018083116115b157829003601f168201915b505050505081565b6115de612818565b73ffffffffffffffffffffffffffffffffffffffff166115fc61190c565b73ffffffffffffffffffffffffffffffffffffffff1614611652576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116499061417f565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b601160009054906101000a900460ff1681565b6009805461168f90614102565b80601f01602080910402602001604051908101604052809291908181526020018280546116bb90614102565b80156117085780601f106116dd57610100808354040283529160200191611708565b820191906000526020600020905b8154815290600101906020018083116116eb57829003601f168201915b505050505081565b600061171b82612d8f565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361178d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6117fd612818565b73ffffffffffffffffffffffffffffffffffffffff1661181b61190c565b73ffffffffffffffffffffffffffffffffffffffff1614611871576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118689061417f565b60405180910390fd5b61187b600061301e565b565b611885612818565b73ffffffffffffffffffffffffffffffffffffffff166118a361190c565b73ffffffffffffffffffffffffffffffffffffffff16146118f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f09061417f565b60405180910390fd5b806009908161190891906143b7565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b60606003805461194b90614102565b80601f016020809104026020016040519081016040528092919081815260200182805461197790614102565b80156119c45780601f10611999576101008083540402835291602001916119c4565b820191906000526020600020905b8154815290600101906020018083116119a757829003601f168201915b5050505050905090565b806119d761190c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a5b57600081118015611a1b5750600e548111155b611a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a519061467b565b60405180910390fd5b5b600d5481611a67610f39565b611a71919061469b565b1115611ab2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa99061473d565b60405180910390fd5b816000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506010548110611b515781600c54611b0e91906144b8565b341015611b50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b47906147a9565b60405180910390fd5b5b601160009054906101000a900460ff1615611ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9890614815565b60405180910390fd5b601160019054906101000a900460ff16611bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be790614881565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050601054811015611c93576010548582611c4d919061469b565b1115611c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c85906148ed565b60405180910390fd5b611cee565b6010548110611ced57600f548582611cab919061469b565b1115611cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce390614959565b60405180910390fd5b5b5b611cff611cf9612818565b866130e4565b6000600190505b858111611d7557601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611d5d906145e7565b91905055508080611d6d906145e7565b915050611d06565b505050505050565b611d85612818565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611de9576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611df6612818565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ea3612818565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ee8919061398d565b60405180910390a35050565b600b8054611f0190614102565b80601f0160208091040260200160405190810160405280929190818152602001828054611f2d90614102565b8015611f7a5780601f10611f4f57610100808354040283529160200191611f7a565b820191906000526020600020905b815481529060010190602001808311611f5d57829003601f168201915b505050505081565b611f8a612818565b73ffffffffffffffffffffffffffffffffffffffff16611fa861190c565b73ffffffffffffffffffffffffffffffffffffffff1614611ffe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff59061417f565b60405180910390fd5b80600e8190555050565b6120138484846128db565b6120328373ffffffffffffffffffffffffffffffffffffffff1661273d565b8015612047575061204584848484613102565b155b1561207e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061208f826127ca565b6120ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c5906149eb565b60405180910390fd5b60001515601160029054906101000a900460ff1615150361217b57600b80546120f690614102565b80601f016020809104026020016040519081016040528092919081815260200182805461212290614102565b801561216f5780601f106121445761010080835404028352916020019161216f565b820191906000526020600020905b81548152906001019060200180831161215257829003601f168201915b505050505090506121d7565b6000612185613252565b905060008151116121a557604051806020016040528060008152506121d3565b806121af846132e4565b600a6040516020016121c393929190614aca565b6040516020818303038152906040525b9150505b919050565b6121e4612818565b73ffffffffffffffffffffffffffffffffffffffff1661220261190c565b73ffffffffffffffffffffffffffffffffffffffff1614612258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224f9061417f565b60405180910390fd5b8060108190555050565b600d5481565b600061227382613444565b9050919050565b612282612818565b73ffffffffffffffffffffffffffffffffffffffff166122a061190c565b73ffffffffffffffffffffffffffffffffffffffff16146122f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ed9061417f565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816123b661190c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461243a576000811180156123fa5750600e548111155b612439576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124309061467b565b60405180910390fd5b5b600d5481612446610f39565b612450919061469b565b1115612491576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124889061473d565b60405180910390fd5b612499612818565b73ffffffffffffffffffffffffffffffffffffffff166124b761190c565b73ffffffffffffffffffffffffffffffffffffffff161461250d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125049061417f565b60405180910390fd5b61251782846130e4565b505050565b612524612818565b73ffffffffffffffffffffffffffffffffffffffff1661254261190c565b73ffffffffffffffffffffffffffffffffffffffff1614612598576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258f9061417f565b60405180910390fd5b600081116125db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d29061467b565b60405180910390fd5b600d54816125e7610f39565b6125f1919061469b565b1115612632576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126299061473d565b60405180910390fd5b61264361263d612818565b826130e4565b50565b61264e612818565b73ffffffffffffffffffffffffffffffffffffffff1661266c61190c565b73ffffffffffffffffffffffffffffffffffffffff16146126c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b99061417f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612731576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272890614b6d565b60405180910390fd5b61273a8161301e565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816127d56128d2565b111580156127e4575060005482105b8015612811575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006128e682612d8f565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612951576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612972612818565b73ffffffffffffffffffffffffffffffffffffffff1614806129a157506129a08561299b612818565b612319565b5b806129e657506129af612818565b73ffffffffffffffffffffffffffffffffffffffff166129ce84610bb4565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612a1f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612a85576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a9285858560016134ae565b612a9e60008487612820565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612d1d576000548214612d1c57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d8885858560016134b4565b5050505050565b612d97613896565b600082905080612da56128d2565b11158015612db4575060005481105b15612fe7576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612fe557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ec9578092505050613019565b5b600115612fe457818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612fdf578092505050613019565b612eca565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6130fe8282604051806020016040528060008152506134ba565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613128612818565b8786866040518563ffffffff1660e01b815260040161314a9493929190614be2565b6020604051808303816000875af192505050801561318657506040513d601f19601f820116820180604052508101906131839190614c43565b60015b6131ff573d80600081146131b6576040519150601f19603f3d011682016040523d82523d6000602084013e6131bb565b606091505b5060008151036131f7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606009805461326190614102565b80601f016020809104026020016040519081016040528092919081815260200182805461328d90614102565b80156132da5780601f106132af576101008083540402835291602001916132da565b820191906000526020600020905b8154815290600101906020018083116132bd57829003601f168201915b5050505050905090565b60606000820361332b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061343f565b600082905060005b6000821461335d578080613346906145e7565b915050600a826133569190614541565b9150613333565b60008167ffffffffffffffff81111561337957613378613bc2565b5b6040519080825280601f01601f1916602001820160405280156133ab5781602001600182028036833780820191505090505b5090505b60008514613438576001826133c49190614c70565b9150600a856133d39190614ca4565b60306133df919061469b565b60f81b8183815181106133f5576133f46145b8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134319190614541565b94506133af565b8093505050505b919050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b50505050565b50505050565b6134c783838360016134cc565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603613538576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403613572576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61357f60008683876134ae565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561374957506137488773ffffffffffffffffffffffffffffffffffffffff1661273d565b5b1561380e575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46137be6000888480600101955088613102565b6137f4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80820361374f57826000541461380957600080fd5b613879565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480820361380f575b81600081905550505061388f60008683876134b4565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613922816138ed565b811461392d57600080fd5b50565b60008135905061393f81613919565b92915050565b60006020828403121561395b5761395a6138e3565b5b600061396984828501613930565b91505092915050565b60008115159050919050565b61398781613972565b82525050565b60006020820190506139a2600083018461397e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156139e25780820151818401526020810190506139c7565b838111156139f1576000848401525b50505050565b6000601f19601f8301169050919050565b6000613a13826139a8565b613a1d81856139b3565b9350613a2d8185602086016139c4565b613a36816139f7565b840191505092915050565b60006020820190508181036000830152613a5b8184613a08565b905092915050565b6000819050919050565b613a7681613a63565b8114613a8157600080fd5b50565b600081359050613a9381613a6d565b92915050565b600060208284031215613aaf57613aae6138e3565b5b6000613abd84828501613a84565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613af182613ac6565b9050919050565b613b0181613ae6565b82525050565b6000602082019050613b1c6000830184613af8565b92915050565b613b2b81613ae6565b8114613b3657600080fd5b50565b600081359050613b4881613b22565b92915050565b60008060408385031215613b6557613b646138e3565b5b6000613b7385828601613b39565b9250506020613b8485828601613a84565b9150509250929050565b613b9781613a63565b82525050565b6000602082019050613bb26000830184613b8e565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613bfa826139f7565b810181811067ffffffffffffffff82111715613c1957613c18613bc2565b5b80604052505050565b6000613c2c6138d9565b9050613c388282613bf1565b919050565b600067ffffffffffffffff821115613c5857613c57613bc2565b5b613c61826139f7565b9050602081019050919050565b82818337600083830152505050565b6000613c90613c8b84613c3d565b613c22565b905082815260208101848484011115613cac57613cab613bbd565b5b613cb7848285613c6e565b509392505050565b600082601f830112613cd457613cd3613bb8565b5b8135613ce4848260208601613c7d565b91505092915050565b600060208284031215613d0357613d026138e3565b5b600082013567ffffffffffffffff811115613d2157613d206138e8565b5b613d2d84828501613cbf565b91505092915050565b613d3f81613972565b8114613d4a57600080fd5b50565b600081359050613d5c81613d36565b92915050565b600060208284031215613d7857613d776138e3565b5b6000613d8684828501613d4d565b91505092915050565b600060208284031215613da557613da46138e3565b5b6000613db384828501613b39565b91505092915050565b600080600060608486031215613dd557613dd46138e3565b5b6000613de386828701613b39565b9350506020613df486828701613b39565b9250506040613e0586828701613a84565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613e4481613a63565b82525050565b6000613e568383613e3b565b60208301905092915050565b6000602082019050919050565b6000613e7a82613e0f565b613e848185613e1a565b9350613e8f83613e2b565b8060005b83811015613ec0578151613ea78882613e4a565b9750613eb283613e62565b925050600181019050613e93565b5085935050505092915050565b60006020820190508181036000830152613ee78184613e6f565b905092915050565b60008060408385031215613f0657613f056138e3565b5b6000613f1485828601613b39565b9250506020613f2585828601613d4d565b9150509250929050565b600067ffffffffffffffff821115613f4a57613f49613bc2565b5b613f53826139f7565b9050602081019050919050565b6000613f73613f6e84613f2f565b613c22565b905082815260208101848484011115613f8f57613f8e613bbd565b5b613f9a848285613c6e565b509392505050565b600082601f830112613fb757613fb6613bb8565b5b8135613fc7848260208601613f60565b91505092915050565b60008060008060808587031215613fea57613fe96138e3565b5b6000613ff887828801613b39565b945050602061400987828801613b39565b935050604061401a87828801613a84565b925050606085013567ffffffffffffffff81111561403b5761403a6138e8565b5b61404787828801613fa2565b91505092959194509250565b6000806040838503121561406a576140696138e3565b5b600061407885828601613b39565b925050602061408985828601613b39565b9150509250929050565b600080604083850312156140aa576140a96138e3565b5b60006140b885828601613a84565b92505060206140c985828601613b39565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061411a57607f821691505b60208210810361412d5761412c6140d3565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006141696020836139b3565b915061417482614133565b602082019050919050565b600060208201905081810360008301526141988161415c565b9050919050565b7f45786365656420746f74616c20616d6f756e7400000000000000000000000000600082015250565b60006141d56013836139b3565b91506141e08261419f565b602082019050919050565b60006020820190508181036000830152614204816141c8565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261426d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614230565b6142778683614230565b95508019841693508086168417925050509392505050565b6000819050919050565b60006142b46142af6142aa84613a63565b61428f565b613a63565b9050919050565b6000819050919050565b6142ce83614299565b6142e26142da826142bb565b84845461423d565b825550505050565b600090565b6142f76142ea565b6143028184846142c5565b505050565b5b818110156143265761431b6000826142ef565b600181019050614308565b5050565b601f82111561436b5761433c8161420b565b61434584614220565b81016020851015614354578190505b61436861436085614220565b830182614307565b50505b505050565b600082821c905092915050565b600061438e60001984600802614370565b1980831691505092915050565b60006143a7838361437d565b9150826002028217905092915050565b6143c0826139a8565b67ffffffffffffffff8111156143d9576143d8613bc2565b5b6143e38254614102565b6143ee82828561432a565b600060209050601f831160018114614421576000841561440f578287015190505b614419858261439b565b865550614481565b601f19841661442f8661420b565b60005b8281101561445757848901518255600182019150602085019450602081019050614432565b868310156144745784890151614470601f89168261437d565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006144c382613a63565b91506144ce83613a63565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561450757614506614489565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061454c82613a63565b915061455783613a63565b92508261456757614566614512565b5b828204905092915050565b600081905092915050565b50565b600061458d600083614572565b91506145988261457d565b600082019050919050565b60006145ae82614580565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006145f282613a63565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361462457614623614489565b5b600182019050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b60006146656014836139b3565b91506146708261462f565b602082019050919050565b6000602082019050818103600083015261469481614658565b9050919050565b60006146a682613a63565b91506146b183613a63565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146e6576146e5614489565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006147276014836139b3565b9150614732826146f1565b602082019050919050565b600060208201905081810360008301526147568161471a565b9050919050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006147936013836139b3565b915061479e8261475d565b602082019050919050565b600060208201905081810360008301526147c281614786565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b60006147ff6017836139b3565b915061480a826147c9565b602082019050919050565b6000602082019050818103600083015261482e816147f2565b9050919050565b7f4e6f74206f70656e20746f207075626c69632079657421000000000000000000600082015250565b600061486b6017836139b3565b915061487682614835565b602082019050919050565b6000602082019050818103600083015261489a8161485e565b9050919050565b7f45786365656465642046726565204d696e74204c696d69740000000000000000600082015250565b60006148d76018836139b3565b91506148e2826148a1565b602082019050919050565b60006020820190508181036000830152614906816148ca565b9050919050565b7f4578636565646564204d696e74204c696d697400000000000000000000000000600082015250565b60006149436013836139b3565b915061494e8261490d565b602082019050919050565b6000602082019050818103600083015261497281614936565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006149d5602f836139b3565b91506149e082614979565b604082019050919050565b60006020820190508181036000830152614a04816149c8565b9050919050565b600081905092915050565b6000614a21826139a8565b614a2b8185614a0b565b9350614a3b8185602086016139c4565b80840191505092915050565b60008154614a5481614102565b614a5e8186614a0b565b94506001821660008114614a795760018114614a8e57614ac1565b60ff1983168652811515820286019350614ac1565b614a978561420b565b60005b83811015614ab957815481890152600182019150602081019050614a9a565b838801955050505b50505092915050565b6000614ad68286614a16565b9150614ae28285614a16565b9150614aee8284614a47565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614b576026836139b3565b9150614b6282614afb565b604082019050919050565b60006020820190508181036000830152614b8681614b4a565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614bb482614b8d565b614bbe8185614b98565b9350614bce8185602086016139c4565b614bd7816139f7565b840191505092915050565b6000608082019050614bf76000830187613af8565b614c046020830186613af8565b614c116040830185613b8e565b8181036060830152614c238184614ba9565b905095945050505050565b600081519050614c3d81613919565b92915050565b600060208284031215614c5957614c586138e3565b5b6000614c6784828501614c2e565b91505092915050565b6000614c7b82613a63565b9150614c8683613a63565b925082821015614c9957614c98614489565b5b828203905092915050565b6000614caf82613a63565b9150614cba83613a63565b925082614cca57614cc9614512565b5b82820690509291505056fea264697066735822122095f0948e9c59e228533fd871fe97637ee5a8caa578c4f0af378ae4f2311dab7d64736f6c634300080f0033697066733a2f2f516d6375617359694b69574a4b665478744e37725a3957626f526a7a3648676538366a573457523174656d3165782f

Deployed Bytecode

0x6080604052600436106102725760003560e01c806362b99ad41161014f578063b071401b116100c1578063e0a808531161007a578063e0a8085314610941578063e4386d261461096a578063e985e9c514610995578063efbd73f4146109d2578063f19e75d4146109fb578063f2fde38b14610a1757610272565b8063b071401b14610821578063b88d4fde1461084a578063c87b56dd14610873578063d4fcb2ae146108b0578063d5abeb01146108d9578063dc33e6811461090457610272565b80638da5cb5b116101135780638da5cb5b1461073057806394354fd01461075b57806395d89b4114610786578063a0712d68146107b1578063a22cb465146107cd578063a45ba8e7146107f657610272565b806362b99ad41461064b5780636352211e1461067657806370a08231146106b3578063715018a6146106f05780637ec4a6591461070757610272565b806323b872dd116101e857806344a0d68a116101ac57806344a0d68a1461054f5780634fdd43cb1461057857806351830227146105a15780635503a0e8146105cc5780635aca1bb6146105f75780635c975abb1461062057610272565b806323b872dd1461047e57806333bc1c5c146104a75780633ccfd60b146104d257806342842e0e146104e9578063438b63001461051257610272565b80631159aca41161023a5780631159aca41461036e57806313faede61461039957806316ba10e0146103c457806316c38b3c146103ed57806318160ddd1461041657806318cae2691461044157610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063095ea7b31461031c5780631042779c14610345575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613945565b610a40565b6040516102ab919061398d565b60405180910390f35b3480156102c057600080fd5b506102c9610b22565b6040516102d69190613a41565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613a99565b610bb4565b6040516103139190613b07565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e9190613b4e565b610c30565b005b34801561035157600080fd5b5061036c60048036038101906103679190613a99565b610d3a565b005b34801561037a57600080fd5b50610383610e05565b6040516103909190613b9d565b60405180910390f35b3480156103a557600080fd5b506103ae610e0b565b6040516103bb9190613b9d565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e69190613ced565b610e11565b005b3480156103f957600080fd5b50610414600480360381019061040f9190613d62565b610ea0565b005b34801561042257600080fd5b5061042b610f39565b6040516104389190613b9d565b60405180910390f35b34801561044d57600080fd5b5061046860048036038101906104639190613d8f565b610f50565b6040516104759190613b9d565b60405180910390f35b34801561048a57600080fd5b506104a560048036038101906104a09190613dbc565b610f68565b005b3480156104b357600080fd5b506104bc610f78565b6040516104c9919061398d565b60405180910390f35b3480156104de57600080fd5b506104e7610f8b565b005b3480156104f557600080fd5b50610510600480360381019061050b9190613dbc565b6111e6565b005b34801561051e57600080fd5b5061053960048036038101906105349190613d8f565b611206565b6040516105469190613ecd565b60405180910390f35b34801561055b57600080fd5b5061057660048036038101906105719190613a99565b611420565b005b34801561058457600080fd5b5061059f600480360381019061059a9190613ced565b6114a6565b005b3480156105ad57600080fd5b506105b6611535565b6040516105c3919061398d565b60405180910390f35b3480156105d857600080fd5b506105e1611548565b6040516105ee9190613a41565b60405180910390f35b34801561060357600080fd5b5061061e60048036038101906106199190613d62565b6115d6565b005b34801561062c57600080fd5b5061063561166f565b604051610642919061398d565b60405180910390f35b34801561065757600080fd5b50610660611682565b60405161066d9190613a41565b60405180910390f35b34801561068257600080fd5b5061069d60048036038101906106989190613a99565b611710565b6040516106aa9190613b07565b60405180910390f35b3480156106bf57600080fd5b506106da60048036038101906106d59190613d8f565b611726565b6040516106e79190613b9d565b60405180910390f35b3480156106fc57600080fd5b506107056117f5565b005b34801561071357600080fd5b5061072e60048036038101906107299190613ced565b61187d565b005b34801561073c57600080fd5b5061074561190c565b6040516107529190613b07565b60405180910390f35b34801561076757600080fd5b50610770611936565b60405161077d9190613b9d565b60405180910390f35b34801561079257600080fd5b5061079b61193c565b6040516107a89190613a41565b60405180910390f35b6107cb60048036038101906107c69190613a99565b6119ce565b005b3480156107d957600080fd5b506107f460048036038101906107ef9190613eef565b611d7d565b005b34801561080257600080fd5b5061080b611ef4565b6040516108189190613a41565b60405180910390f35b34801561082d57600080fd5b5061084860048036038101906108439190613a99565b611f82565b005b34801561085657600080fd5b50610871600480360381019061086c9190613fd0565b612008565b005b34801561087f57600080fd5b5061089a60048036038101906108959190613a99565b612084565b6040516108a79190613a41565b60405180910390f35b3480156108bc57600080fd5b506108d760048036038101906108d29190613a99565b6121dc565b005b3480156108e557600080fd5b506108ee612262565b6040516108fb9190613b9d565b60405180910390f35b34801561091057600080fd5b5061092b60048036038101906109269190613d8f565b612268565b6040516109389190613b9d565b60405180910390f35b34801561094d57600080fd5b5061096860048036038101906109639190613d62565b61227a565b005b34801561097657600080fd5b5061097f612313565b60405161098c9190613b9d565b60405180910390f35b3480156109a157600080fd5b506109bc60048036038101906109b79190614053565b612319565b6040516109c9919061398d565b60405180910390f35b3480156109de57600080fd5b506109f960048036038101906109f49190614093565b6123ad565b005b610a156004803603810190610a109190613a99565b61251c565b005b348015610a2357600080fd5b50610a3e6004803603810190610a399190613d8f565b612646565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b0b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b1b5750610b1a82612760565b5b9050919050565b606060028054610b3190614102565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5d90614102565b8015610baa5780601f10610b7f57610100808354040283529160200191610baa565b820191906000526020600020905b815481529060010190602001808311610b8d57829003601f168201915b5050505050905090565b6000610bbf826127ca565b610bf5576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c3b82611710565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ca2576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cc1612818565b73ffffffffffffffffffffffffffffffffffffffff1614158015610cf35750610cf181610cec612818565b612319565b155b15610d2a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d35838383612820565b505050565b610d42612818565b73ffffffffffffffffffffffffffffffffffffffff16610d6061190c565b73ffffffffffffffffffffffffffffffffffffffff1614610db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dad9061417f565b60405180910390fd5b600d54811115610dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df2906141eb565b60405180910390fd5b80600f8190555050565b60105481565b600c5481565b610e19612818565b73ffffffffffffffffffffffffffffffffffffffff16610e3761190c565b73ffffffffffffffffffffffffffffffffffffffff1614610e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e849061417f565b60405180910390fd5b80600a9081610e9c91906143b7565b5050565b610ea8612818565b73ffffffffffffffffffffffffffffffffffffffff16610ec661190c565b73ffffffffffffffffffffffffffffffffffffffff1614610f1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f139061417f565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b6000610f436128d2565b6001546000540303905090565b60126020528060005260406000206000915090505481565b610f738383836128db565b505050565b601160019054906101000a900460ff1681565b610f93612818565b73ffffffffffffffffffffffffffffffffffffffff16610fb161190c565b73ffffffffffffffffffffffffffffffffffffffff1614611007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffe9061417f565b60405180910390fd5b6000606460274761101891906144b8565b6110229190614541565b90506000606460274761103591906144b8565b61103f9190614541565b9050600073f34d1151ee92c50cff4395154b224f4ecda0c82273ffffffffffffffffffffffffffffffffffffffff168360405161107b906145a3565b60006040518083038185875af1925050503d80600081146110b8576040519150601f19603f3d011682016040523d82523d6000602084013e6110bd565b606091505b50509050806110cb57600080fd5b600073d69eba3349d69f2e96eb7db98ef610ef625762a773ffffffffffffffffffffffffffffffffffffffff1683604051611105906145a3565b60006040518083038185875af1925050503d8060008114611142576040519150601f19603f3d011682016040523d82523d6000602084013e611147565b606091505b505090508061115557600080fd5b6000737d2a48384ec3fc52fa6916b314c3304d2fff4de273ffffffffffffffffffffffffffffffffffffffff164760405161118f906145a3565b60006040518083038185875af1925050503d80600081146111cc576040519150601f19603f3d011682016040523d82523d6000602084013e6111d1565b606091505b50509050806111df57600080fd5b5050505050565b61120183838360405180602001604052806000815250612008565b505050565b6060600061121383611726565b905060008167ffffffffffffffff81111561123157611230613bc2565b5b60405190808252806020026020018201604052801561125f5781602001602082028036833780820191505090505b509050600061126c6128d2565b90506000805b84821080156112835750600d548311155b15611413576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001511580156113905750600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614155b1561139d57806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113ff57838584815181106113e4576113e36145b8565b5b60200260200101818152505082806113fb906145e7565b9350505b838061140a906145e7565b94505050611272565b8395505050505050919050565b611428612818565b73ffffffffffffffffffffffffffffffffffffffff1661144661190c565b73ffffffffffffffffffffffffffffffffffffffff161461149c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114939061417f565b60405180910390fd5b80600c8190555050565b6114ae612818565b73ffffffffffffffffffffffffffffffffffffffff166114cc61190c565b73ffffffffffffffffffffffffffffffffffffffff1614611522576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115199061417f565b60405180910390fd5b80600b908161153191906143b7565b5050565b601160029054906101000a900460ff1681565b600a805461155590614102565b80601f016020809104026020016040519081016040528092919081815260200182805461158190614102565b80156115ce5780601f106115a3576101008083540402835291602001916115ce565b820191906000526020600020905b8154815290600101906020018083116115b157829003601f168201915b505050505081565b6115de612818565b73ffffffffffffffffffffffffffffffffffffffff166115fc61190c565b73ffffffffffffffffffffffffffffffffffffffff1614611652576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116499061417f565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b601160009054906101000a900460ff1681565b6009805461168f90614102565b80601f01602080910402602001604051908101604052809291908181526020018280546116bb90614102565b80156117085780601f106116dd57610100808354040283529160200191611708565b820191906000526020600020905b8154815290600101906020018083116116eb57829003601f168201915b505050505081565b600061171b82612d8f565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361178d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6117fd612818565b73ffffffffffffffffffffffffffffffffffffffff1661181b61190c565b73ffffffffffffffffffffffffffffffffffffffff1614611871576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118689061417f565b60405180910390fd5b61187b600061301e565b565b611885612818565b73ffffffffffffffffffffffffffffffffffffffff166118a361190c565b73ffffffffffffffffffffffffffffffffffffffff16146118f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f09061417f565b60405180910390fd5b806009908161190891906143b7565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b60606003805461194b90614102565b80601f016020809104026020016040519081016040528092919081815260200182805461197790614102565b80156119c45780601f10611999576101008083540402835291602001916119c4565b820191906000526020600020905b8154815290600101906020018083116119a757829003601f168201915b5050505050905090565b806119d761190c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a5b57600081118015611a1b5750600e548111155b611a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a519061467b565b60405180910390fd5b5b600d5481611a67610f39565b611a71919061469b565b1115611ab2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa99061473d565b60405180910390fd5b816000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506010548110611b515781600c54611b0e91906144b8565b341015611b50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b47906147a9565b60405180910390fd5b5b601160009054906101000a900460ff1615611ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9890614815565b60405180910390fd5b601160019054906101000a900460ff16611bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be790614881565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050601054811015611c93576010548582611c4d919061469b565b1115611c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c85906148ed565b60405180910390fd5b611cee565b6010548110611ced57600f548582611cab919061469b565b1115611cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce390614959565b60405180910390fd5b5b5b611cff611cf9612818565b866130e4565b6000600190505b858111611d7557601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611d5d906145e7565b91905055508080611d6d906145e7565b915050611d06565b505050505050565b611d85612818565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611de9576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611df6612818565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ea3612818565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ee8919061398d565b60405180910390a35050565b600b8054611f0190614102565b80601f0160208091040260200160405190810160405280929190818152602001828054611f2d90614102565b8015611f7a5780601f10611f4f57610100808354040283529160200191611f7a565b820191906000526020600020905b815481529060010190602001808311611f5d57829003601f168201915b505050505081565b611f8a612818565b73ffffffffffffffffffffffffffffffffffffffff16611fa861190c565b73ffffffffffffffffffffffffffffffffffffffff1614611ffe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff59061417f565b60405180910390fd5b80600e8190555050565b6120138484846128db565b6120328373ffffffffffffffffffffffffffffffffffffffff1661273d565b8015612047575061204584848484613102565b155b1561207e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061208f826127ca565b6120ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c5906149eb565b60405180910390fd5b60001515601160029054906101000a900460ff1615150361217b57600b80546120f690614102565b80601f016020809104026020016040519081016040528092919081815260200182805461212290614102565b801561216f5780601f106121445761010080835404028352916020019161216f565b820191906000526020600020905b81548152906001019060200180831161215257829003601f168201915b505050505090506121d7565b6000612185613252565b905060008151116121a557604051806020016040528060008152506121d3565b806121af846132e4565b600a6040516020016121c393929190614aca565b6040516020818303038152906040525b9150505b919050565b6121e4612818565b73ffffffffffffffffffffffffffffffffffffffff1661220261190c565b73ffffffffffffffffffffffffffffffffffffffff1614612258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224f9061417f565b60405180910390fd5b8060108190555050565b600d5481565b600061227382613444565b9050919050565b612282612818565b73ffffffffffffffffffffffffffffffffffffffff166122a061190c565b73ffffffffffffffffffffffffffffffffffffffff16146122f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ed9061417f565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816123b661190c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461243a576000811180156123fa5750600e548111155b612439576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124309061467b565b60405180910390fd5b5b600d5481612446610f39565b612450919061469b565b1115612491576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124889061473d565b60405180910390fd5b612499612818565b73ffffffffffffffffffffffffffffffffffffffff166124b761190c565b73ffffffffffffffffffffffffffffffffffffffff161461250d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125049061417f565b60405180910390fd5b61251782846130e4565b505050565b612524612818565b73ffffffffffffffffffffffffffffffffffffffff1661254261190c565b73ffffffffffffffffffffffffffffffffffffffff1614612598576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258f9061417f565b60405180910390fd5b600081116125db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d29061467b565b60405180910390fd5b600d54816125e7610f39565b6125f1919061469b565b1115612632576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126299061473d565b60405180910390fd5b61264361263d612818565b826130e4565b50565b61264e612818565b73ffffffffffffffffffffffffffffffffffffffff1661266c61190c565b73ffffffffffffffffffffffffffffffffffffffff16146126c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b99061417f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612731576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272890614b6d565b60405180910390fd5b61273a8161301e565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816127d56128d2565b111580156127e4575060005482105b8015612811575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006128e682612d8f565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612951576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612972612818565b73ffffffffffffffffffffffffffffffffffffffff1614806129a157506129a08561299b612818565b612319565b5b806129e657506129af612818565b73ffffffffffffffffffffffffffffffffffffffff166129ce84610bb4565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612a1f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612a85576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a9285858560016134ae565b612a9e60008487612820565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612d1d576000548214612d1c57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d8885858560016134b4565b5050505050565b612d97613896565b600082905080612da56128d2565b11158015612db4575060005481105b15612fe7576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612fe557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ec9578092505050613019565b5b600115612fe457818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612fdf578092505050613019565b612eca565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6130fe8282604051806020016040528060008152506134ba565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613128612818565b8786866040518563ffffffff1660e01b815260040161314a9493929190614be2565b6020604051808303816000875af192505050801561318657506040513d601f19601f820116820180604052508101906131839190614c43565b60015b6131ff573d80600081146131b6576040519150601f19603f3d011682016040523d82523d6000602084013e6131bb565b606091505b5060008151036131f7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606009805461326190614102565b80601f016020809104026020016040519081016040528092919081815260200182805461328d90614102565b80156132da5780601f106132af576101008083540402835291602001916132da565b820191906000526020600020905b8154815290600101906020018083116132bd57829003601f168201915b5050505050905090565b60606000820361332b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061343f565b600082905060005b6000821461335d578080613346906145e7565b915050600a826133569190614541565b9150613333565b60008167ffffffffffffffff81111561337957613378613bc2565b5b6040519080825280601f01601f1916602001820160405280156133ab5781602001600182028036833780820191505090505b5090505b60008514613438576001826133c49190614c70565b9150600a856133d39190614ca4565b60306133df919061469b565b60f81b8183815181106133f5576133f46145b8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134319190614541565b94506133af565b8093505050505b919050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b50505050565b50505050565b6134c783838360016134cc565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603613538576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403613572576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61357f60008683876134ae565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561374957506137488773ffffffffffffffffffffffffffffffffffffffff1661273d565b5b1561380e575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46137be6000888480600101955088613102565b6137f4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80820361374f57826000541461380957600080fd5b613879565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480820361380f575b81600081905550505061388f60008683876134b4565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613922816138ed565b811461392d57600080fd5b50565b60008135905061393f81613919565b92915050565b60006020828403121561395b5761395a6138e3565b5b600061396984828501613930565b91505092915050565b60008115159050919050565b61398781613972565b82525050565b60006020820190506139a2600083018461397e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156139e25780820151818401526020810190506139c7565b838111156139f1576000848401525b50505050565b6000601f19601f8301169050919050565b6000613a13826139a8565b613a1d81856139b3565b9350613a2d8185602086016139c4565b613a36816139f7565b840191505092915050565b60006020820190508181036000830152613a5b8184613a08565b905092915050565b6000819050919050565b613a7681613a63565b8114613a8157600080fd5b50565b600081359050613a9381613a6d565b92915050565b600060208284031215613aaf57613aae6138e3565b5b6000613abd84828501613a84565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613af182613ac6565b9050919050565b613b0181613ae6565b82525050565b6000602082019050613b1c6000830184613af8565b92915050565b613b2b81613ae6565b8114613b3657600080fd5b50565b600081359050613b4881613b22565b92915050565b60008060408385031215613b6557613b646138e3565b5b6000613b7385828601613b39565b9250506020613b8485828601613a84565b9150509250929050565b613b9781613a63565b82525050565b6000602082019050613bb26000830184613b8e565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613bfa826139f7565b810181811067ffffffffffffffff82111715613c1957613c18613bc2565b5b80604052505050565b6000613c2c6138d9565b9050613c388282613bf1565b919050565b600067ffffffffffffffff821115613c5857613c57613bc2565b5b613c61826139f7565b9050602081019050919050565b82818337600083830152505050565b6000613c90613c8b84613c3d565b613c22565b905082815260208101848484011115613cac57613cab613bbd565b5b613cb7848285613c6e565b509392505050565b600082601f830112613cd457613cd3613bb8565b5b8135613ce4848260208601613c7d565b91505092915050565b600060208284031215613d0357613d026138e3565b5b600082013567ffffffffffffffff811115613d2157613d206138e8565b5b613d2d84828501613cbf565b91505092915050565b613d3f81613972565b8114613d4a57600080fd5b50565b600081359050613d5c81613d36565b92915050565b600060208284031215613d7857613d776138e3565b5b6000613d8684828501613d4d565b91505092915050565b600060208284031215613da557613da46138e3565b5b6000613db384828501613b39565b91505092915050565b600080600060608486031215613dd557613dd46138e3565b5b6000613de386828701613b39565b9350506020613df486828701613b39565b9250506040613e0586828701613a84565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613e4481613a63565b82525050565b6000613e568383613e3b565b60208301905092915050565b6000602082019050919050565b6000613e7a82613e0f565b613e848185613e1a565b9350613e8f83613e2b565b8060005b83811015613ec0578151613ea78882613e4a565b9750613eb283613e62565b925050600181019050613e93565b5085935050505092915050565b60006020820190508181036000830152613ee78184613e6f565b905092915050565b60008060408385031215613f0657613f056138e3565b5b6000613f1485828601613b39565b9250506020613f2585828601613d4d565b9150509250929050565b600067ffffffffffffffff821115613f4a57613f49613bc2565b5b613f53826139f7565b9050602081019050919050565b6000613f73613f6e84613f2f565b613c22565b905082815260208101848484011115613f8f57613f8e613bbd565b5b613f9a848285613c6e565b509392505050565b600082601f830112613fb757613fb6613bb8565b5b8135613fc7848260208601613f60565b91505092915050565b60008060008060808587031215613fea57613fe96138e3565b5b6000613ff887828801613b39565b945050602061400987828801613b39565b935050604061401a87828801613a84565b925050606085013567ffffffffffffffff81111561403b5761403a6138e8565b5b61404787828801613fa2565b91505092959194509250565b6000806040838503121561406a576140696138e3565b5b600061407885828601613b39565b925050602061408985828601613b39565b9150509250929050565b600080604083850312156140aa576140a96138e3565b5b60006140b885828601613a84565b92505060206140c985828601613b39565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061411a57607f821691505b60208210810361412d5761412c6140d3565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006141696020836139b3565b915061417482614133565b602082019050919050565b600060208201905081810360008301526141988161415c565b9050919050565b7f45786365656420746f74616c20616d6f756e7400000000000000000000000000600082015250565b60006141d56013836139b3565b91506141e08261419f565b602082019050919050565b60006020820190508181036000830152614204816141c8565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261426d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614230565b6142778683614230565b95508019841693508086168417925050509392505050565b6000819050919050565b60006142b46142af6142aa84613a63565b61428f565b613a63565b9050919050565b6000819050919050565b6142ce83614299565b6142e26142da826142bb565b84845461423d565b825550505050565b600090565b6142f76142ea565b6143028184846142c5565b505050565b5b818110156143265761431b6000826142ef565b600181019050614308565b5050565b601f82111561436b5761433c8161420b565b61434584614220565b81016020851015614354578190505b61436861436085614220565b830182614307565b50505b505050565b600082821c905092915050565b600061438e60001984600802614370565b1980831691505092915050565b60006143a7838361437d565b9150826002028217905092915050565b6143c0826139a8565b67ffffffffffffffff8111156143d9576143d8613bc2565b5b6143e38254614102565b6143ee82828561432a565b600060209050601f831160018114614421576000841561440f578287015190505b614419858261439b565b865550614481565b601f19841661442f8661420b565b60005b8281101561445757848901518255600182019150602085019450602081019050614432565b868310156144745784890151614470601f89168261437d565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006144c382613a63565b91506144ce83613a63565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561450757614506614489565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061454c82613a63565b915061455783613a63565b92508261456757614566614512565b5b828204905092915050565b600081905092915050565b50565b600061458d600083614572565b91506145988261457d565b600082019050919050565b60006145ae82614580565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006145f282613a63565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361462457614623614489565b5b600182019050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b60006146656014836139b3565b91506146708261462f565b602082019050919050565b6000602082019050818103600083015261469481614658565b9050919050565b60006146a682613a63565b91506146b183613a63565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146e6576146e5614489565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006147276014836139b3565b9150614732826146f1565b602082019050919050565b600060208201905081810360008301526147568161471a565b9050919050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006147936013836139b3565b915061479e8261475d565b602082019050919050565b600060208201905081810360008301526147c281614786565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b60006147ff6017836139b3565b915061480a826147c9565b602082019050919050565b6000602082019050818103600083015261482e816147f2565b9050919050565b7f4e6f74206f70656e20746f207075626c69632079657421000000000000000000600082015250565b600061486b6017836139b3565b915061487682614835565b602082019050919050565b6000602082019050818103600083015261489a8161485e565b9050919050565b7f45786365656465642046726565204d696e74204c696d69740000000000000000600082015250565b60006148d76018836139b3565b91506148e2826148a1565b602082019050919050565b60006020820190508181036000830152614906816148ca565b9050919050565b7f4578636565646564204d696e74204c696d697400000000000000000000000000600082015250565b60006149436013836139b3565b915061494e8261490d565b602082019050919050565b6000602082019050818103600083015261497281614936565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006149d5602f836139b3565b91506149e082614979565b604082019050919050565b60006020820190508181036000830152614a04816149c8565b9050919050565b600081905092915050565b6000614a21826139a8565b614a2b8185614a0b565b9350614a3b8185602086016139c4565b80840191505092915050565b60008154614a5481614102565b614a5e8186614a0b565b94506001821660008114614a795760018114614a8e57614ac1565b60ff1983168652811515820286019350614ac1565b614a978561420b565b60005b83811015614ab957815481890152600182019150602081019050614a9a565b838801955050505b50505092915050565b6000614ad68286614a16565b9150614ae28285614a16565b9150614aee8284614a47565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614b576026836139b3565b9150614b6282614afb565b604082019050919050565b60006020820190508181036000830152614b8681614b4a565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614bb482614b8d565b614bbe8185614b98565b9350614bce8185602086016139c4565b614bd7816139f7565b840191505092915050565b6000608082019050614bf76000830187613af8565b614c046020830186613af8565b614c116040830185613b8e565b8181036060830152614c238184614ba9565b905095945050505050565b600081519050614c3d81613919565b92915050565b600060208284031215614c5957614c586138e3565b5b6000614c6784828501614c2e565b91505092915050565b6000614c7b82613a63565b9150614c8683613a63565b925082821015614c9957614c98614489565b5b828203905092915050565b6000614caf82613a63565b9150614cba83613a63565b925082614cca57614cc9614512565b5b82820690509291505056fea264697066735822122095f0948e9c59e228533fd871fe97637ee5a8caa578c4f0af378ae4f2311dab7d64736f6c634300080f0033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.