ETH Price: $3,324.15 (-1.46%)
Gas: 2 Gwei

Token

Demonica (Demonica)
 

Overview

Max Total Supply

1,261 Demonica

Holders

335

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
zombfyd.eth
Balance
10 Demonica
0xc13849e0d791028b313944545f5740d9993113c2
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Demonica

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : Demonica.sol
// SPDX-License-Identifier: MIT

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

// File: @openzeppelin/contracts/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/security/ReentrancyGuard.sol

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: @openzeppelin/contracts/utils/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 {
    // Cia buvo Simonas
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

// File: ERC721A.sol

pragma solidity ^0.8.0;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
Context,
ERC165,
IERC721,
IERC721Metadata,
IERC721Enumerable
{
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 private currentIndex = 0;

    uint256 internal immutable collectionSize;
    uint256 internal immutable maxBatchSize;

    // 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) private _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;

    /**
     * @dev
     * `maxBatchSize` refers to how much a minter can mint at a time.
     * `collectionSize_` refers to how many tokens are in the collection.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 maxBatchSize_,
        uint256 collectionSize_
    ) {
        require(
            collectionSize_ > 0,
            "ERC721A: collection must have a nonzero supply"
        );
        require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
        _name = name_;
        _symbol = symbol_;
        maxBatchSize = maxBatchSize_;
        collectionSize = collectionSize_;
    }

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
    {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert("ERC721A: unable to get token of owner by index");
    }

    /**
     * @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 ||
        interfaceId == type(IERC721Enumerable).interfaceId ||
        super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(
            owner != address(0),
            "ERC721A: number minted query for the zero address"
        );
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
    {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        uint256 lowestTokenToCheck;
        if (tokenId >= maxBatchSize) {
            lowestTokenToCheck = tokenId - maxBatchSize + 1;
        }

        for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }

        revert("ERC721A: unable to determine the owner of token");
    }

    /**
     * @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)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
    public
    override
    {
        require(operator != _msgSender(), "ERC721A: approve to caller");

        _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 override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - there must be `quantity` tokens remaining unminted in the total collection.
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), "ERC721A: mint to the zero address");
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), "ERC721A: token already minted");
        require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

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

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                "ERC721A: transfer to non ERC721Receiver implementer"
            );
            updatedIndex++;
        }

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

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
        getApproved(tokenId) == _msgSender() ||
        isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(
            isApprovedOrOwner,
            "ERC721A: transfer caller is not owner nor approved"
        );

        require(
            prevOwnership.addr == from,
            "ERC721A: transfer from incorrect owner"
        );
        require(to != address(0), "ERC721A: transfer to the zero address");

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        _addressData[from].balance -= 1;
        _addressData[to].balance += 1;
        _ownerships[tokenId] = TokenOwnership(to, 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;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(
                    prevOwnership.addr,
                    prevOwnership.startTimestamp
                );
            }
        }

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

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

    uint256 public nextOwnerToExplicitlySet = 0;

    /**
     * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
     */
    function _setOwnersExplicit(uint256 quantity) internal {
        uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
        require(quantity > 0, "quantity must be nonzero");
        uint256 endIndex = oldNextOwnerToSet + quantity - 1;
        if (endIndex > collectionSize - 1) {
            endIndex = collectionSize - 1;
        }
        // We know if the last one in the group exists, all in the group exist, due to serial ordering.
        require(_exists(endIndex), "not enough minted yet for this cleanup");
        for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
            if (_ownerships[i].addr == address(0)) {
                TokenOwnership memory ownership = ownershipOf(i);
                _ownerships[i] = TokenOwnership(
                    ownership.addr,
                    ownership.startTimestamp
                );
            }
        }
        nextOwnerToExplicitlySet = endIndex + 1;
    }

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * 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`.
     */
    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.
     *
     * 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` 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: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol

// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf)
    internal
    pure
    returns (bytes32)
    {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(
                    abi.encodePacked(computedHash, proofElement)
                );
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(
                    abi.encodePacked(proofElement, computedHash)
                );
            }
        }
        return computedHash;
    }
}

pragma solidity ^0.8.0;

contract Demonica is Ownable, ERC721A, ReentrancyGuard {
    using Strings for uint256;

    uint256 public constant PRICE = 0.05 ether;
    uint256 public constant MAX_PRESALE_MINTS = 4; // maximum presale mints per wallet
    uint256 public constant MAX_PUBLIC_SALE_MINTS = 50; // maximum public sale mints per wallet
    uint256 public constant MAX_TOKENS = 15000; // maximum supply of tokens
    uint256 public constant MAX_BATCH_SIZE = 100; // maximum tokens minted per mint (used in reserve)
    address private constant TEAM = 0x87003EE80aF44E57bb530a83F557F167d48ABB33;
    string public baseExtension = ".json";

    bool public isPresaleLive = false;
    bool public isPublicLive = false;
    bool public isRevealed = false;

    bytes32 public merkleRoot;
    mapping(address => uint256) public presaleAddressMintCount;
    mapping(address => uint256) public publicSaleAddressMintCount;

    mapping(address => bool) public isEligibleForFreeMint;
    mapping(address => bool) public hasClaimedFreeMint;

    string private _baseTokenURI;
    string private _notRevealedBaseTokenURI = "";

    constructor() ERC721A("Demonica", "Demonica", MAX_BATCH_SIZE, MAX_TOKENS) {
        _safeMint(msg.sender, 1);
        isEligibleForFreeMint[0x4d8dd3fcCA3820F3E02Df2e4c3134b1286178C26] = true;
        isEligibleForFreeMint[0x4DA1BB8F9c525512728BF05AfD82C1c5f3D8A727] = true;
        isEligibleForFreeMint[0x4a22db474aa401024beD520b05DcBB193A748430] = true;
        isEligibleForFreeMint[0x78558458DfA43CCF87b5458D456268AD7F974dC0] = true;
        isEligibleForFreeMint[0xF5Bf5E26b79f0dD614dAF51b5D78a3a21dDa5745] = true;
        isEligibleForFreeMint[0xB3ee437294B4C3e803224B57dFdfEeC30aD832E0] = true;
        isEligibleForFreeMint[0xdF69d13A4a6dfa3d849CA6943387Da6119Da438F] = true;
        isEligibleForFreeMint[0x399D0D4cd89CCbA8b6dF81C15783DA867f6578c7] = true;
        isEligibleForFreeMint[0x27e39548B7422E736D127b6272586a310bcE99c7] = true;
        isEligibleForFreeMint[0xB2D56e9Bc10640afeF23D65B3d4956F50a8f382F] = true;
        isEligibleForFreeMint[0x563EE904a92ec3223A46385DeED9deD0350360D0] = true;
        isEligibleForFreeMint[0x91b14234fc9AB21261c02A5D39C50074cEb66bfC] = true;
        isEligibleForFreeMint[0xa43a8B5CA81CCfEde49c7435d2cD89cD12E12845] = true;
    }

    // Set whitelist
    function setMerkleRoot(bytes32 root) external onlyOwner {
        merkleRoot = root;
    }

    modifier mintGuard(uint256 tokenCount) {
        require(msg.sender == tx.origin, "No cheating");
        require(PRICE * tokenCount <= msg.value, "Wrong ether value");
        require(totalSupply() + tokenCount <= MAX_TOKENS, "Not enough supply");
        _;
    }

    // Reserve tokens
    function reserveTokens(uint256 amount) external onlyOwner {
        require(totalSupply() + amount <= MAX_TOKENS, "Not enough supply");
        require(amount % MAX_BATCH_SIZE == 0);

        uint256 chunks = amount / MAX_BATCH_SIZE;
        for (uint256 i = 0; i < chunks; i++) {
            _safeMint(msg.sender, MAX_BATCH_SIZE);
        }
    }

    function privateMint(uint256 amount) external onlyOwner {
        require(totalSupply() + amount <= MAX_TOKENS, "Not enough supply");
        _safeMint(msg.sender, amount);
    }

    function claimFreeNft() external {
        require(msg.sender == tx.origin, "No cheating");
        require(totalSupply() + 1 <= MAX_TOKENS, "Not enough supply");
        require(isEligibleForFreeMint[msg.sender] == true, "Not eligible for free NFT");
        require(hasClaimedFreeMint[msg.sender] == false, "Already claimed free NFT");

        hasClaimedFreeMint[msg.sender] = true;
        _safeMint(msg.sender, 1);
    }

    function mint(uint256 amount) external payable mintGuard(amount) {
        require(isPublicLive, "Sale not live");
        require(amount <= MAX_PUBLIC_SALE_MINTS, "Exceeds max allowed public sale mints per wallet");
        require(publicSaleAddressMintCount[msg.sender] + amount <= MAX_PUBLIC_SALE_MINTS, "Address already minted allocation");

        publicSaleAddressMintCount[msg.sender] += amount;
        _safeMint(msg.sender, amount);
    }

    function mintPresale(bytes32[] calldata proof, uint256 amount) external payable mintGuard(amount) {
        require(isPresaleLive, "Presale not live");
        require(amount <= MAX_PRESALE_MINTS, "Exceeds max allowed presale mints per wallet");
        require(
            MerkleProof.verify(
                proof,
                merkleRoot,
                keccak256(abi.encodePacked(msg.sender))
            ),
            "Not whitelisted"
        );
        require(presaleAddressMintCount[msg.sender] + amount <= MAX_PRESALE_MINTS, "Address already minted allocation");

        presaleAddressMintCount[msg.sender] += amount;
        _safeMint(msg.sender, amount);
    }

    function flipPublicState() external onlyOwner {
        isPublicLive = !isPublicLive;
    }

    function flipPresaleState() external onlyOwner {
        isPresaleLive = !isPresaleLive;
    }

    function flipIsRevealedState() external onlyOwner {
        isRevealed = !isRevealed;
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "Token does not exist");

        if (isRevealed == false) {
            return _notRevealedBaseTokenURI;
        }

        return string(abi.encodePacked(_baseTokenURI, tokenId.toString(), baseExtension));
    }

    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

    function setNotRevealedBaseURI(string calldata _notRevealedTokenUri) external onlyOwner {
        _notRevealedBaseTokenURI = _notRevealedTokenUri;
    }

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

    function withdraw() external onlyOwner {
        payable(TEAM).transfer(address(this).balance);
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_BATCH_SIZE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PRESALE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_SALE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimFreeNft","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipIsRevealedState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPresaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPublicState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"hasClaimedFreeMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isEligibleForFreeMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresaleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","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":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleAddressMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"privateMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicSaleAddressMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedTokenUri","type":"string"}],"name":"setNotRevealedBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c0604052600060015560006008556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a90805190602001906200005b92919062000fa2565b506000600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055506040518060200160405280600081525060129080519060200190620000d492919062000fa2565b50348015620000e257600080fd5b506040518060400160405280600881526020017f44656d6f6e6963610000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f44656d6f6e6963610000000000000000000000000000000000000000000000008152506064613a986200017462000168620007e360201b60201c565b620007eb60201b60201c565b60008111620001ba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001b190620010d9565b60405180910390fd5b6000821162000200576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001f79062001171565b60405180910390fd5b83600290805190602001906200021892919062000fa2565b5082600390805190602001906200023192919062000fa2565b508160a08181525050806080818152505050505050600160098190555062000261336001620008af60201b60201c565b6001600f6000734d8dd3fcca3820f3e02df2e4c3134b1286178c2673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f6000734da1bb8f9c525512728bf05afd82c1c5f3d8a72773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f6000734a22db474aa401024bed520b05dcbb193a74843073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f60007378558458dfa43ccf87b5458d456268ad7f974dc073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f600073f5bf5e26b79f0dd614daf51b5d78a3a21dda574573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f600073b3ee437294b4c3e803224b57dfdfeec30ad832e073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f600073df69d13a4a6dfa3d849ca6943387da6119da438f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f600073399d0d4cd89ccba8b6df81c15783da867f6578c773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f60007327e39548b7422e736d127b6272586a310bce99c773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f600073b2d56e9bc10640afef23d65b3d4956f50a8f382f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f600073563ee904a92ec3223a46385deed9ded0350360d073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f60007391b14234fc9ab21261c02a5d39c50074ceb66bfc73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f600073a43a8b5ca81ccfede49c7435d2cd89cd12e1284573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062001702565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620008d1828260405180602001604052806000815250620008d560201b60201c565b5050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036200094e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009459062001209565b60405180910390fd5b6200095f8162000dcc60201b60201c565b15620009a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000999906200127b565b60405180910390fd5b60a051831115620009ea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009e19062001313565b60405180910390fd5b620009ff600085838662000dda60201b60201c565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015162000afe919062001380565b6fffffffffffffffffffffffffffffffff16815260200185836020015162000b27919062001380565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101562000da757818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a462000d3f600088848862000de060201b60201c565b62000d81576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d789062001443565b60405180910390fd5b818062000d8e906200146f565b925050808062000d9e906200146f565b91505062000cc5565b508060018190555062000dc4600087858862000f8960201b60201c565b505050505050565b600060015482109050919050565b50505050565b600062000e0e8473ffffffffffffffffffffffffffffffffffffffff1662000f8f60201b6200276e1760201c565b1562000f7c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000e40620007e360201b60201c565b8786866040518563ffffffff1660e01b815260040162000e649493929190620015b6565b6020604051808303816000875af192505050801562000ea357506040513d601f19601f8201168201806040525081019062000ea091906200166c565b60015b62000f2b573d806000811462000ed6576040519150601f19603f3d011682016040523d82523d6000602084013e62000edb565b606091505b50600081510362000f23576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000f1a9062001443565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000f81565b600190505b949350505050565b50505050565b600080823b905060008111915050919050565b82805462000fb090620016cd565b90600052602060002090601f01602090048101928262000fd4576000855562001020565b82601f1062000fef57805160ff191683800117855562001020565b8280016001018555821562001020579182015b828111156200101f57825182559160200191906001019062001002565b5b5090506200102f919062001033565b5090565b5b808211156200104e57600081600090555060010162001034565b5090565b600082825260208201905092915050565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b6000620010c1602e8362001052565b9150620010ce8262001063565b604082019050919050565b60006020820190508181036000830152620010f481620010b2565b9050919050565b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b60006200115960278362001052565b91506200116682620010fb565b604082019050919050565b600060208201905081810360008301526200118c816200114a565b9050919050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000620011f160218362001052565b9150620011fe8262001193565b604082019050919050565b600060208201905081810360008301526200122481620011e2565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b600062001263601d8362001052565b915062001270826200122b565b602082019050919050565b60006020820190508181036000830152620012968162001254565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000620012fb60228362001052565b915062001308826200129d565b604082019050919050565b600060208201905081810360008301526200132e81620012ec565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200138d8262001335565b91506200139a8362001335565b9250826fffffffffffffffffffffffffffffffff03821115620013c257620013c162001351565b5b828201905092915050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006200142b60338362001052565b91506200143882620013cd565b604082019050919050565b600060208201905081810360008301526200145e816200141c565b9050919050565b6000819050919050565b60006200147c8262001465565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203620014b157620014b062001351565b5b600182019050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620014e982620014bc565b9050919050565b620014fb81620014dc565b82525050565b6200150c8162001465565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b838110156200154e57808201518184015260208101905062001531565b838111156200155e576000848401525b50505050565b6000601f19601f8301169050919050565b6000620015828262001512565b6200158e81856200151d565b9350620015a08185602086016200152e565b620015ab8162001564565b840191505092915050565b6000608082019050620015cd6000830187620014f0565b620015dc6020830186620014f0565b620015eb604083018562001501565b8181036060830152620015ff818462001575565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62001646816200160f565b81146200165257600080fd5b50565b60008151905062001666816200163b565b92915050565b6000602082840312156200168557620016846200160a565b5b6000620016958482850162001655565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620016e657607f821691505b602082108103620016fc57620016fb6200169e565b5b50919050565b60805160a0516158656200173360003960008181612ebe01528181612ee7015261351a0152600050506158656000f3fe60806040526004361061027d5760003560e01c80637db5a6361161014f578063c0e05d0b116100c1578063e03ad9441161007a578063e03ad9441461096c578063e985e9c5146109a9578063f2fde38b146109e6578063f47c84c514610a0f578063f81227d414610a3a578063f970c8e614610a515761027d565b8063c0e05d0b14610848578063c668286214610885578063c87b56dd146108b0578063cfdbf254146108ed578063d031370b14610918578063d7224ba0146109415761027d565b806395d89b411161011357806395d89b411461076a578063a0712d6814610795578063a22cb465146107b1578063abfe40a8146107da578063ad7f1ea114610803578063b88d4fde1461081f5761027d565b80637db5a63614610695578063882b1808146106d25780638d859f3e146106e95780638da5cb5b146107145780639208383a1461073f5761027d565b806342842e0e116101f357806356e228e6116101ac57806356e228e6146105995780635e5f3ce4146105b05780636352211e146105db57806370a0823114610618578063715018a6146106555780637cb647591461066c5761027d565b806342842e0e14610477578063428640d8146104a05780634f6ccce7146104dd578063508881c11461051a57806354214f691461054557806355f804b3146105705761027d565b8063194c293611610245578063194c29361461037b57806323b872dd146103a45780632c9ad1fb146103cd5780632eb4a7ab146103f85780632f745c59146104235780633ccfd60b146104605761027d565b806301ffc9a71461028257806306fdde03146102bf578063081812fc146102ea578063095ea7b31461032757806318160ddd14610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613b34565b610a68565b6040516102b69190613b7c565b60405180910390f35b3480156102cb57600080fd5b506102d4610bb2565b6040516102e19190613c30565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c9190613c88565b610c44565b60405161031e9190613cf6565b60405180910390f35b34801561033357600080fd5b5061034e60048036038101906103499190613d3d565b610cc9565b005b34801561035c57600080fd5b50610365610de1565b6040516103729190613d8c565b60405180910390f35b34801561038757600080fd5b506103a2600480360381019061039d9190613e0c565b610deb565b005b3480156103b057600080fd5b506103cb60048036038101906103c69190613e59565b610e7d565b005b3480156103d957600080fd5b506103e2610e8d565b6040516103ef9190613b7c565b60405180910390f35b34801561040457600080fd5b5061040d610ea0565b60405161041a9190613ec5565b60405180910390f35b34801561042f57600080fd5b5061044a60048036038101906104459190613d3d565b610ea6565b6040516104579190613d8c565b60405180910390f35b34801561046c57600080fd5b506104756110a2565b005b34801561048357600080fd5b5061049e60048036038101906104999190613e59565b61117b565b005b3480156104ac57600080fd5b506104c760048036038101906104c29190613ee0565b61119b565b6040516104d49190613b7c565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff9190613c88565b6111bb565b6040516105119190613d8c565b60405180910390f35b34801561052657600080fd5b5061052f61120e565b60405161053c9190613d8c565b60405180910390f35b34801561055157600080fd5b5061055a611213565b6040516105679190613b7c565b60405180910390f35b34801561057c57600080fd5b5061059760048036038101906105929190613e0c565b611226565b005b3480156105a557600080fd5b506105ae6112b8565b005b3480156105bc57600080fd5b506105c5611360565b6040516105d29190613b7c565b60405180910390f35b3480156105e757600080fd5b5061060260048036038101906105fd9190613c88565b611373565b60405161060f9190613cf6565b60405180910390f35b34801561062457600080fd5b5061063f600480360381019061063a9190613ee0565b611389565b60405161064c9190613d8c565b60405180910390f35b34801561066157600080fd5b5061066a611471565b005b34801561067857600080fd5b50610693600480360381019061068e9190613f39565b6114f9565b005b3480156106a157600080fd5b506106bc60048036038101906106b79190613ee0565b61157f565b6040516106c99190613d8c565b60405180910390f35b3480156106de57600080fd5b506106e7611597565b005b3480156106f557600080fd5b506106fe61163f565b60405161070b9190613d8c565b60405180910390f35b34801561072057600080fd5b5061072961164a565b6040516107369190613cf6565b60405180910390f35b34801561074b57600080fd5b50610754611673565b6040516107619190613d8c565b60405180910390f35b34801561077657600080fd5b5061077f611678565b60405161078c9190613c30565b60405180910390f35b6107af60048036038101906107aa9190613c88565b61170a565b005b3480156107bd57600080fd5b506107d860048036038101906107d39190613f92565b6119aa565b005b3480156107e657600080fd5b5061080160048036038101906107fc9190613c88565b611b2a565b005b61081d60048036038101906108189190614028565b611c0a565b005b34801561082b57600080fd5b50610846600480360381019061084191906141b8565b611f5f565b005b34801561085457600080fd5b5061086f600480360381019061086a9190613ee0565b611fbb565b60405161087c9190613b7c565b60405180910390f35b34801561089157600080fd5b5061089a611fdb565b6040516108a79190613c30565b60405180910390f35b3480156108bc57600080fd5b506108d760048036038101906108d29190613c88565b612069565b6040516108e49190613c30565b60405180910390f35b3480156108f957600080fd5b50610902612196565b60405161090f9190613d8c565b60405180910390f35b34801561092457600080fd5b5061093f600480360381019061093a9190613c88565b61219b565b005b34801561094d57600080fd5b506109566122c6565b6040516109639190613d8c565b60405180910390f35b34801561097857600080fd5b50610993600480360381019061098e9190613ee0565b6122cc565b6040516109a09190613d8c565b60405180910390f35b3480156109b557600080fd5b506109d060048036038101906109cb919061423b565b6122e4565b6040516109dd9190613b7c565b60405180910390f35b3480156109f257600080fd5b50610a0d6004803603810190610a089190613ee0565b612378565b005b348015610a1b57600080fd5b50610a2461246f565b604051610a319190613d8c565b60405180910390f35b348015610a4657600080fd5b50610a4f612475565b005b348015610a5d57600080fd5b50610a6661251d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b3357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b9b57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bab5750610baa82612781565b5b9050919050565b606060028054610bc1906142aa565b80601f0160208091040260200160405190810160405280929190818152602001828054610bed906142aa565b8015610c3a5780601f10610c0f57610100808354040283529160200191610c3a565b820191906000526020600020905b815481529060010190602001808311610c1d57829003601f168201915b5050505050905090565b6000610c4f826127eb565b610c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c859061434d565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cd482611373565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3b906143df565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d636127f9565b73ffffffffffffffffffffffffffffffffffffffff161480610d925750610d9181610d8c6127f9565b6122e4565b5b610dd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc890614471565b60405180910390fd5b610ddc838383612801565b505050565b6000600154905090565b610df36127f9565b73ffffffffffffffffffffffffffffffffffffffff16610e1161164a565b73ffffffffffffffffffffffffffffffffffffffff1614610e67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5e906144dd565b60405180910390fd5b818160129190610e789291906139eb565b505050565b610e888383836128b3565b505050565b600b60009054906101000a900460ff1681565b600c5481565b6000610eb183611389565b8210610ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee99061456f565b60405180910390fd5b6000610efc610de1565b905060008060005b83811015611060576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610ff657806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361104c5786840361103d57819550505050505061109c565b8380611048906145be565b9450505b508080611058906145be565b915050610f04565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109390614678565b60405180910390fd5b92915050565b6110aa6127f9565b73ffffffffffffffffffffffffffffffffffffffff166110c861164a565b73ffffffffffffffffffffffffffffffffffffffff161461111e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611115906144dd565b60405180910390fd5b7387003ee80af44e57bb530a83f557f167d48abb3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611178573d6000803e3d6000fd5b50565b61119683838360405180602001604052806000815250611f5f565b505050565b60106020528060005260406000206000915054906101000a900460ff1681565b60006111c5610de1565b8210611206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fd9061470a565b60405180910390fd5b819050919050565b603281565b600b60029054906101000a900460ff1681565b61122e6127f9565b73ffffffffffffffffffffffffffffffffffffffff1661124c61164a565b73ffffffffffffffffffffffffffffffffffffffff16146112a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611299906144dd565b60405180910390fd5b8181601191906112b39291906139eb565b505050565b6112c06127f9565b73ffffffffffffffffffffffffffffffffffffffff166112de61164a565b73ffffffffffffffffffffffffffffffffffffffff1614611334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132b906144dd565b60405180910390fd5b600b60029054906101000a900460ff1615600b60026101000a81548160ff021916908315150217905550565b600b60019054906101000a900460ff1681565b600061137e82612e6a565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f09061479c565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6114796127f9565b73ffffffffffffffffffffffffffffffffffffffff1661149761164a565b73ffffffffffffffffffffffffffffffffffffffff16146114ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e4906144dd565b60405180910390fd5b6114f7600061306d565b565b6115016127f9565b73ffffffffffffffffffffffffffffffffffffffff1661151f61164a565b73ffffffffffffffffffffffffffffffffffffffff1614611575576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156c906144dd565b60405180910390fd5b80600c8190555050565b600d6020528060005260406000206000915090505481565b61159f6127f9565b73ffffffffffffffffffffffffffffffffffffffff166115bd61164a565b73ffffffffffffffffffffffffffffffffffffffff1614611613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160a906144dd565b60405180910390fd5b600b60019054906101000a900460ff1615600b60016101000a81548160ff021916908315150217905550565b66b1a2bc2ec5000081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600481565b606060038054611687906142aa565b80601f01602080910402602001604051908101604052809291908181526020018280546116b3906142aa565b80156117005780601f106116d557610100808354040283529160200191611700565b820191906000526020600020905b8154815290600101906020018083116116e357829003601f168201915b5050505050905090565b803273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611779576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177090614808565b60405180910390fd5b348166b1a2bc2ec5000061178d9190614828565b11156117ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c5906148ce565b60405180910390fd5b613a98816117da610de1565b6117e491906148ee565b1115611825576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181c90614990565b60405180910390fd5b600b60019054906101000a900460ff16611874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186b906149fc565b60405180910390fd5b60328211156118b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118af90614a8e565b60405180910390fd5b603282600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461190591906148ee565b1115611946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193d90614b20565b60405180910390fd5b81600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461199591906148ee565b925050819055506119a63383613131565b5050565b6119b26127f9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1690614b8c565b60405180910390fd5b8060076000611a2c6127f9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ad96127f9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b1e9190613b7c565b60405180910390a35050565b611b326127f9565b73ffffffffffffffffffffffffffffffffffffffff16611b5061164a565b73ffffffffffffffffffffffffffffffffffffffff1614611ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9d906144dd565b60405180910390fd5b613a9881611bb2610de1565b611bbc91906148ee565b1115611bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf490614990565b60405180910390fd5b611c073382613131565b50565b803273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7090614808565b60405180910390fd5b348166b1a2bc2ec50000611c8d9190614828565b1115611cce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc5906148ce565b60405180910390fd5b613a9881611cda610de1565b611ce491906148ee565b1115611d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1c90614990565b60405180910390fd5b600b60009054906101000a900460ff16611d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6b90614bf8565b60405180910390fd5b6004821115611db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611daf90614c8a565b60405180910390fd5b611e2c848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c5433604051602001611e119190614cf2565b6040516020818303038152906040528051906020012061314f565b611e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6290614d59565b60405180910390fd5b600482600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611eb891906148ee565b1115611ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef090614b20565b60405180910390fd5b81600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f4891906148ee565b92505081905550611f593383613131565b50505050565b611f6a8484846128b3565b611f7684848484613166565b611fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fac90614deb565b60405180910390fd5b50505050565b600f6020528060005260406000206000915054906101000a900460ff1681565b600a8054611fe8906142aa565b80601f0160208091040260200160405190810160405280929190818152602001828054612014906142aa565b80156120615780601f1061203657610100808354040283529160200191612061565b820191906000526020600020905b81548152906001019060200180831161204457829003601f168201915b505050505081565b6060612074826127eb565b6120b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120aa90614e57565b60405180910390fd5b60001515600b60029054906101000a900460ff1615150361216057601280546120db906142aa565b80601f0160208091040260200160405190810160405280929190818152602001828054612107906142aa565b80156121545780601f1061212957610100808354040283529160200191612154565b820191906000526020600020905b81548152906001019060200180831161213757829003601f168201915b50505050509050612191565b601161216b836132ed565b600a60405160200161217f93929190614f47565b60405160208183030381529060405290505b919050565b606481565b6121a36127f9565b73ffffffffffffffffffffffffffffffffffffffff166121c161164a565b73ffffffffffffffffffffffffffffffffffffffff1614612217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220e906144dd565b60405180910390fd5b613a9881612223610de1565b61222d91906148ee565b111561226e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226590614990565b60405180910390fd5b600060648261227d9190614fa7565b1461228757600080fd5b60006064826122969190614fd8565b905060005b818110156122c1576122ae336064613131565b80806122b9906145be565b91505061229b565b505050565b60085481565b600e6020528060005260406000206000915090505481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6123806127f9565b73ffffffffffffffffffffffffffffffffffffffff1661239e61164a565b73ffffffffffffffffffffffffffffffffffffffff16146123f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123eb906144dd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612463576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245a9061507b565b60405180910390fd5b61246c8161306d565b50565b613a9881565b61247d6127f9565b73ffffffffffffffffffffffffffffffffffffffff1661249b61164a565b73ffffffffffffffffffffffffffffffffffffffff16146124f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e8906144dd565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461258b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258290614808565b60405180910390fd5b613a986001612598610de1565b6125a291906148ee565b11156125e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125da90614990565b60405180910390fd5b60011515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514612676576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266d906150e7565b60405180910390fd5b60001515601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514612709576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270090615153565b60405180910390fd5b6001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061276c336001613131565b565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006128be82612e6a565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166128e56127f9565b73ffffffffffffffffffffffffffffffffffffffff161480612941575061290a6127f9565b73ffffffffffffffffffffffffffffffffffffffff1661292984610c44565b73ffffffffffffffffffffffffffffffffffffffff16145b8061295d575061295c82600001516129576127f9565b6122e4565b5b90508061299f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612996906151e5565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612a11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0890615277565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7790615309565b60405180910390fd5b612a8d858585600161344d565b612a9d6000848460000151612801565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612b0b9190615345565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612baf9190615379565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612cb591906148ee565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612dfa57612d2a816127eb565b15612df9576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e628686866001613453565b505050505050565b612e72613a71565b612e7b826127eb565b612eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb190615431565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310612f1e5760017f000000000000000000000000000000000000000000000000000000000000000084612f119190615451565b612f1b91906148ee565b90505b60008390505b81811061302c576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461301857809350505050613068565b50808061302490615485565b915050612f24565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305f90615520565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61314b828260405180602001604052806000815250613459565b5050565b60008261315c8584613938565b1490509392505050565b60006131878473ffffffffffffffffffffffffffffffffffffffff1661276e565b156132e0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026131b06127f9565b8786866040518563ffffffff1660e01b81526004016131d29493929190615595565b6020604051808303816000875af192505050801561320e57506040513d601f19601f8201168201806040525081019061320b91906155f6565b60015b613290573d806000811461323e576040519150601f19603f3d011682016040523d82523d6000602084013e613243565b606091505b506000815103613288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327f90614deb565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506132e5565b600190505b949350505050565b606060008203613334576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613448565b600082905060005b6000821461336657808061334f906145be565b915050600a8261335f9190614fd8565b915061333c565b60008167ffffffffffffffff8111156133825761338161408d565b5b6040519080825280601f01601f1916602001820160405280156133b45781602001600182028036833780820191505090505b5090505b60008514613441576001826133cd9190615451565b9150600a856133dc9190614fa7565b60306133e891906148ee565b60f81b8183815181106133fe576133fd615623565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561343a9190614fd8565b94506133b8565b8093505050505b919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036134cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134c6906156c4565b60405180910390fd5b6134d8816127eb565b15613518576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161350f90615730565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000083111561357b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613572906157c2565b60405180910390fd5b613588600085838661344d565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516136859190615379565b6fffffffffffffffffffffffffffffffff1681526020018583602001516136ac9190615379565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561391b57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46138bb6000888488613166565b6138fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138f190614deb565b60405180910390fd5b8180613905906145be565b9250508080613913906145be565b91505061384a565b50806001819055506139306000878588613453565b505050505050565b60008082905060005b84518110156139e057600085828151811061395f5761395e615623565b5b602002602001015190508083116139a0578281604051602001613983929190615803565b6040516020818303038152906040528051906020012092506139cc565b80836040516020016139b3929190615803565b6040516020818303038152906040528051906020012092505b5080806139d8906145be565b915050613941565b508091505092915050565b8280546139f7906142aa565b90600052602060002090601f016020900481019282613a195760008555613a60565b82601f10613a3257803560ff1916838001178555613a60565b82800160010185558215613a60579182015b82811115613a5f578235825591602001919060010190613a44565b5b509050613a6d9190613aab565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613ac4576000816000905550600101613aac565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613b1181613adc565b8114613b1c57600080fd5b50565b600081359050613b2e81613b08565b92915050565b600060208284031215613b4a57613b49613ad2565b5b6000613b5884828501613b1f565b91505092915050565b60008115159050919050565b613b7681613b61565b82525050565b6000602082019050613b916000830184613b6d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613bd1578082015181840152602081019050613bb6565b83811115613be0576000848401525b50505050565b6000601f19601f8301169050919050565b6000613c0282613b97565b613c0c8185613ba2565b9350613c1c818560208601613bb3565b613c2581613be6565b840191505092915050565b60006020820190508181036000830152613c4a8184613bf7565b905092915050565b6000819050919050565b613c6581613c52565b8114613c7057600080fd5b50565b600081359050613c8281613c5c565b92915050565b600060208284031215613c9e57613c9d613ad2565b5b6000613cac84828501613c73565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613ce082613cb5565b9050919050565b613cf081613cd5565b82525050565b6000602082019050613d0b6000830184613ce7565b92915050565b613d1a81613cd5565b8114613d2557600080fd5b50565b600081359050613d3781613d11565b92915050565b60008060408385031215613d5457613d53613ad2565b5b6000613d6285828601613d28565b9250506020613d7385828601613c73565b9150509250929050565b613d8681613c52565b82525050565b6000602082019050613da16000830184613d7d565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613dcc57613dcb613da7565b5b8235905067ffffffffffffffff811115613de957613de8613dac565b5b602083019150836001820283011115613e0557613e04613db1565b5b9250929050565b60008060208385031215613e2357613e22613ad2565b5b600083013567ffffffffffffffff811115613e4157613e40613ad7565b5b613e4d85828601613db6565b92509250509250929050565b600080600060608486031215613e7257613e71613ad2565b5b6000613e8086828701613d28565b9350506020613e9186828701613d28565b9250506040613ea286828701613c73565b9150509250925092565b6000819050919050565b613ebf81613eac565b82525050565b6000602082019050613eda6000830184613eb6565b92915050565b600060208284031215613ef657613ef5613ad2565b5b6000613f0484828501613d28565b91505092915050565b613f1681613eac565b8114613f2157600080fd5b50565b600081359050613f3381613f0d565b92915050565b600060208284031215613f4f57613f4e613ad2565b5b6000613f5d84828501613f24565b91505092915050565b613f6f81613b61565b8114613f7a57600080fd5b50565b600081359050613f8c81613f66565b92915050565b60008060408385031215613fa957613fa8613ad2565b5b6000613fb785828601613d28565b9250506020613fc885828601613f7d565b9150509250929050565b60008083601f840112613fe857613fe7613da7565b5b8235905067ffffffffffffffff81111561400557614004613dac565b5b60208301915083602082028301111561402157614020613db1565b5b9250929050565b60008060006040848603121561404157614040613ad2565b5b600084013567ffffffffffffffff81111561405f5761405e613ad7565b5b61406b86828701613fd2565b9350935050602061407e86828701613c73565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6140c582613be6565b810181811067ffffffffffffffff821117156140e4576140e361408d565b5b80604052505050565b60006140f7613ac8565b905061410382826140bc565b919050565b600067ffffffffffffffff8211156141235761412261408d565b5b61412c82613be6565b9050602081019050919050565b82818337600083830152505050565b600061415b61415684614108565b6140ed565b90508281526020810184848401111561417757614176614088565b5b614182848285614139565b509392505050565b600082601f83011261419f5761419e613da7565b5b81356141af848260208601614148565b91505092915050565b600080600080608085870312156141d2576141d1613ad2565b5b60006141e087828801613d28565b94505060206141f187828801613d28565b935050604061420287828801613c73565b925050606085013567ffffffffffffffff81111561422357614222613ad7565b5b61422f8782880161418a565b91505092959194509250565b6000806040838503121561425257614251613ad2565b5b600061426085828601613d28565b925050602061427185828601613d28565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806142c257607f821691505b6020821081036142d5576142d461427b565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000614337602d83613ba2565b9150614342826142db565b604082019050919050565b600060208201905081810360008301526143668161432a565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b60006143c9602283613ba2565b91506143d48261436d565b604082019050919050565b600060208201905081810360008301526143f8816143bc565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b600061445b603983613ba2565b9150614466826143ff565b604082019050919050565b6000602082019050818103600083015261448a8161444e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006144c7602083613ba2565b91506144d282614491565b602082019050919050565b600060208201905081810360008301526144f6816144ba565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000614559602283613ba2565b9150614564826144fd565b604082019050919050565b600060208201905081810360008301526145888161454c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006145c982613c52565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036145fb576145fa61458f565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000614662602e83613ba2565b915061466d82614606565b604082019050919050565b6000602082019050818103600083015261469181614655565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b60006146f4602383613ba2565b91506146ff82614698565b604082019050919050565b60006020820190508181036000830152614723816146e7565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000614786602b83613ba2565b91506147918261472a565b604082019050919050565b600060208201905081810360008301526147b581614779565b9050919050565b7f4e6f206368656174696e67000000000000000000000000000000000000000000600082015250565b60006147f2600b83613ba2565b91506147fd826147bc565b602082019050919050565b60006020820190508181036000830152614821816147e5565b9050919050565b600061483382613c52565b915061483e83613c52565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156148775761487661458f565b5b828202905092915050565b7f57726f6e672065746865722076616c7565000000000000000000000000000000600082015250565b60006148b8601183613ba2565b91506148c382614882565b602082019050919050565b600060208201905081810360008301526148e7816148ab565b9050919050565b60006148f982613c52565b915061490483613c52565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156149395761493861458f565b5b828201905092915050565b7f4e6f7420656e6f75676820737570706c79000000000000000000000000000000600082015250565b600061497a601183613ba2565b915061498582614944565b602082019050919050565b600060208201905081810360008301526149a98161496d565b9050919050565b7f53616c65206e6f74206c69766500000000000000000000000000000000000000600082015250565b60006149e6600d83613ba2565b91506149f1826149b0565b602082019050919050565b60006020820190508181036000830152614a15816149d9565b9050919050565b7f45786365656473206d617820616c6c6f776564207075626c69632073616c652060008201527f6d696e7473207065722077616c6c657400000000000000000000000000000000602082015250565b6000614a78603083613ba2565b9150614a8382614a1c565b604082019050919050565b60006020820190508181036000830152614aa781614a6b565b9050919050565b7f4164647265737320616c7265616479206d696e74656420616c6c6f636174696f60008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b0a602183613ba2565b9150614b1582614aae565b604082019050919050565b60006020820190508181036000830152614b3981614afd565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000614b76601a83613ba2565b9150614b8182614b40565b602082019050919050565b60006020820190508181036000830152614ba581614b69565b9050919050565b7f50726573616c65206e6f74206c69766500000000000000000000000000000000600082015250565b6000614be2601083613ba2565b9150614bed82614bac565b602082019050919050565b60006020820190508181036000830152614c1181614bd5565b9050919050565b7f45786365656473206d617820616c6c6f7765642070726573616c65206d696e7460008201527f73207065722077616c6c65740000000000000000000000000000000000000000602082015250565b6000614c74602c83613ba2565b9150614c7f82614c18565b604082019050919050565b60006020820190508181036000830152614ca381614c67565b9050919050565b60008160601b9050919050565b6000614cc282614caa565b9050919050565b6000614cd482614cb7565b9050919050565b614cec614ce782613cd5565b614cc9565b82525050565b6000614cfe8284614cdb565b60148201915081905092915050565b7f4e6f742077686974656c69737465640000000000000000000000000000000000600082015250565b6000614d43600f83613ba2565b9150614d4e82614d0d565b602082019050919050565b60006020820190508181036000830152614d7281614d36565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000614dd5603383613ba2565b9150614de082614d79565b604082019050919050565b60006020820190508181036000830152614e0481614dc8565b9050919050565b7f546f6b656e20646f6573206e6f74206578697374000000000000000000000000600082015250565b6000614e41601483613ba2565b9150614e4c82614e0b565b602082019050919050565b60006020820190508181036000830152614e7081614e34565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154614ea4816142aa565b614eae8186614e77565b94506001821660008114614ec95760018114614eda57614f0d565b60ff19831686528186019350614f0d565b614ee385614e82565b60005b83811015614f0557815481890152600182019150602081019050614ee6565b838801955050505b50505092915050565b6000614f2182613b97565b614f2b8185614e77565b9350614f3b818560208601613bb3565b80840191505092915050565b6000614f538286614e97565b9150614f5f8285614f16565b9150614f6b8284614e97565b9150819050949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614fb282613c52565b9150614fbd83613c52565b925082614fcd57614fcc614f78565b5b828206905092915050565b6000614fe382613c52565b9150614fee83613c52565b925082614ffe57614ffd614f78565b5b828204905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615065602683613ba2565b915061507082615009565b604082019050919050565b6000602082019050818103600083015261509481615058565b9050919050565b7f4e6f7420656c696769626c6520666f722066726565204e465400000000000000600082015250565b60006150d1601983613ba2565b91506150dc8261509b565b602082019050919050565b60006020820190508181036000830152615100816150c4565b9050919050565b7f416c726561647920636c61696d65642066726565204e46540000000000000000600082015250565b600061513d601883613ba2565b915061514882615107565b602082019050919050565b6000602082019050818103600083015261516c81615130565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006151cf603283613ba2565b91506151da82615173565b604082019050919050565b600060208201905081810360008301526151fe816151c2565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000615261602683613ba2565b915061526c82615205565b604082019050919050565b6000602082019050818103600083015261529081615254565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006152f3602583613ba2565b91506152fe82615297565b604082019050919050565b60006020820190508181036000830152615322816152e6565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600061535082615329565b915061535b83615329565b92508282101561536e5761536d61458f565b5b828203905092915050565b600061538482615329565b915061538f83615329565b9250826fffffffffffffffffffffffffffffffff038211156153b4576153b361458f565b5b828201905092915050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b600061541b602a83613ba2565b9150615426826153bf565b604082019050919050565b6000602082019050818103600083015261544a8161540e565b9050919050565b600061545c82613c52565b915061546783613c52565b92508282101561547a5761547961458f565b5b828203905092915050565b600061549082613c52565b9150600082036154a3576154a261458f565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b600061550a602f83613ba2565b9150615515826154ae565b604082019050919050565b60006020820190508181036000830152615539816154fd565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061556782615540565b615571818561554b565b9350615581818560208601613bb3565b61558a81613be6565b840191505092915050565b60006080820190506155aa6000830187613ce7565b6155b76020830186613ce7565b6155c46040830185613d7d565b81810360608301526155d6818461555c565b905095945050505050565b6000815190506155f081613b08565b92915050565b60006020828403121561560c5761560b613ad2565b5b600061561a848285016155e1565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006156ae602183613ba2565b91506156b982615652565b604082019050919050565b600060208201905081810360008301526156dd816156a1565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b600061571a601d83613ba2565b9150615725826156e4565b602082019050919050565b600060208201905081810360008301526157498161570d565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b60006157ac602283613ba2565b91506157b782615750565b604082019050919050565b600060208201905081810360008301526157db8161579f565b9050919050565b6000819050919050565b6157fd6157f882613eac565b6157e2565b82525050565b600061580f82856157ec565b60208201915061581f82846157ec565b602082019150819050939250505056fea2646970667358221220c15a70b0cd8454f068ecafbeebef5e740e39eb8e10b9de3ca15b78b020a6c98c64736f6c634300080d0033

Deployed Bytecode

0x60806040526004361061027d5760003560e01c80637db5a6361161014f578063c0e05d0b116100c1578063e03ad9441161007a578063e03ad9441461096c578063e985e9c5146109a9578063f2fde38b146109e6578063f47c84c514610a0f578063f81227d414610a3a578063f970c8e614610a515761027d565b8063c0e05d0b14610848578063c668286214610885578063c87b56dd146108b0578063cfdbf254146108ed578063d031370b14610918578063d7224ba0146109415761027d565b806395d89b411161011357806395d89b411461076a578063a0712d6814610795578063a22cb465146107b1578063abfe40a8146107da578063ad7f1ea114610803578063b88d4fde1461081f5761027d565b80637db5a63614610695578063882b1808146106d25780638d859f3e146106e95780638da5cb5b146107145780639208383a1461073f5761027d565b806342842e0e116101f357806356e228e6116101ac57806356e228e6146105995780635e5f3ce4146105b05780636352211e146105db57806370a0823114610618578063715018a6146106555780637cb647591461066c5761027d565b806342842e0e14610477578063428640d8146104a05780634f6ccce7146104dd578063508881c11461051a57806354214f691461054557806355f804b3146105705761027d565b8063194c293611610245578063194c29361461037b57806323b872dd146103a45780632c9ad1fb146103cd5780632eb4a7ab146103f85780632f745c59146104235780633ccfd60b146104605761027d565b806301ffc9a71461028257806306fdde03146102bf578063081812fc146102ea578063095ea7b31461032757806318160ddd14610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613b34565b610a68565b6040516102b69190613b7c565b60405180910390f35b3480156102cb57600080fd5b506102d4610bb2565b6040516102e19190613c30565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c9190613c88565b610c44565b60405161031e9190613cf6565b60405180910390f35b34801561033357600080fd5b5061034e60048036038101906103499190613d3d565b610cc9565b005b34801561035c57600080fd5b50610365610de1565b6040516103729190613d8c565b60405180910390f35b34801561038757600080fd5b506103a2600480360381019061039d9190613e0c565b610deb565b005b3480156103b057600080fd5b506103cb60048036038101906103c69190613e59565b610e7d565b005b3480156103d957600080fd5b506103e2610e8d565b6040516103ef9190613b7c565b60405180910390f35b34801561040457600080fd5b5061040d610ea0565b60405161041a9190613ec5565b60405180910390f35b34801561042f57600080fd5b5061044a60048036038101906104459190613d3d565b610ea6565b6040516104579190613d8c565b60405180910390f35b34801561046c57600080fd5b506104756110a2565b005b34801561048357600080fd5b5061049e60048036038101906104999190613e59565b61117b565b005b3480156104ac57600080fd5b506104c760048036038101906104c29190613ee0565b61119b565b6040516104d49190613b7c565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff9190613c88565b6111bb565b6040516105119190613d8c565b60405180910390f35b34801561052657600080fd5b5061052f61120e565b60405161053c9190613d8c565b60405180910390f35b34801561055157600080fd5b5061055a611213565b6040516105679190613b7c565b60405180910390f35b34801561057c57600080fd5b5061059760048036038101906105929190613e0c565b611226565b005b3480156105a557600080fd5b506105ae6112b8565b005b3480156105bc57600080fd5b506105c5611360565b6040516105d29190613b7c565b60405180910390f35b3480156105e757600080fd5b5061060260048036038101906105fd9190613c88565b611373565b60405161060f9190613cf6565b60405180910390f35b34801561062457600080fd5b5061063f600480360381019061063a9190613ee0565b611389565b60405161064c9190613d8c565b60405180910390f35b34801561066157600080fd5b5061066a611471565b005b34801561067857600080fd5b50610693600480360381019061068e9190613f39565b6114f9565b005b3480156106a157600080fd5b506106bc60048036038101906106b79190613ee0565b61157f565b6040516106c99190613d8c565b60405180910390f35b3480156106de57600080fd5b506106e7611597565b005b3480156106f557600080fd5b506106fe61163f565b60405161070b9190613d8c565b60405180910390f35b34801561072057600080fd5b5061072961164a565b6040516107369190613cf6565b60405180910390f35b34801561074b57600080fd5b50610754611673565b6040516107619190613d8c565b60405180910390f35b34801561077657600080fd5b5061077f611678565b60405161078c9190613c30565b60405180910390f35b6107af60048036038101906107aa9190613c88565b61170a565b005b3480156107bd57600080fd5b506107d860048036038101906107d39190613f92565b6119aa565b005b3480156107e657600080fd5b5061080160048036038101906107fc9190613c88565b611b2a565b005b61081d60048036038101906108189190614028565b611c0a565b005b34801561082b57600080fd5b50610846600480360381019061084191906141b8565b611f5f565b005b34801561085457600080fd5b5061086f600480360381019061086a9190613ee0565b611fbb565b60405161087c9190613b7c565b60405180910390f35b34801561089157600080fd5b5061089a611fdb565b6040516108a79190613c30565b60405180910390f35b3480156108bc57600080fd5b506108d760048036038101906108d29190613c88565b612069565b6040516108e49190613c30565b60405180910390f35b3480156108f957600080fd5b50610902612196565b60405161090f9190613d8c565b60405180910390f35b34801561092457600080fd5b5061093f600480360381019061093a9190613c88565b61219b565b005b34801561094d57600080fd5b506109566122c6565b6040516109639190613d8c565b60405180910390f35b34801561097857600080fd5b50610993600480360381019061098e9190613ee0565b6122cc565b6040516109a09190613d8c565b60405180910390f35b3480156109b557600080fd5b506109d060048036038101906109cb919061423b565b6122e4565b6040516109dd9190613b7c565b60405180910390f35b3480156109f257600080fd5b50610a0d6004803603810190610a089190613ee0565b612378565b005b348015610a1b57600080fd5b50610a2461246f565b604051610a319190613d8c565b60405180910390f35b348015610a4657600080fd5b50610a4f612475565b005b348015610a5d57600080fd5b50610a6661251d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b3357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b9b57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bab5750610baa82612781565b5b9050919050565b606060028054610bc1906142aa565b80601f0160208091040260200160405190810160405280929190818152602001828054610bed906142aa565b8015610c3a5780601f10610c0f57610100808354040283529160200191610c3a565b820191906000526020600020905b815481529060010190602001808311610c1d57829003601f168201915b5050505050905090565b6000610c4f826127eb565b610c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c859061434d565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cd482611373565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3b906143df565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d636127f9565b73ffffffffffffffffffffffffffffffffffffffff161480610d925750610d9181610d8c6127f9565b6122e4565b5b610dd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc890614471565b60405180910390fd5b610ddc838383612801565b505050565b6000600154905090565b610df36127f9565b73ffffffffffffffffffffffffffffffffffffffff16610e1161164a565b73ffffffffffffffffffffffffffffffffffffffff1614610e67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5e906144dd565b60405180910390fd5b818160129190610e789291906139eb565b505050565b610e888383836128b3565b505050565b600b60009054906101000a900460ff1681565b600c5481565b6000610eb183611389565b8210610ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee99061456f565b60405180910390fd5b6000610efc610de1565b905060008060005b83811015611060576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610ff657806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361104c5786840361103d57819550505050505061109c565b8380611048906145be565b9450505b508080611058906145be565b915050610f04565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109390614678565b60405180910390fd5b92915050565b6110aa6127f9565b73ffffffffffffffffffffffffffffffffffffffff166110c861164a565b73ffffffffffffffffffffffffffffffffffffffff161461111e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611115906144dd565b60405180910390fd5b7387003ee80af44e57bb530a83f557f167d48abb3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611178573d6000803e3d6000fd5b50565b61119683838360405180602001604052806000815250611f5f565b505050565b60106020528060005260406000206000915054906101000a900460ff1681565b60006111c5610de1565b8210611206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fd9061470a565b60405180910390fd5b819050919050565b603281565b600b60029054906101000a900460ff1681565b61122e6127f9565b73ffffffffffffffffffffffffffffffffffffffff1661124c61164a565b73ffffffffffffffffffffffffffffffffffffffff16146112a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611299906144dd565b60405180910390fd5b8181601191906112b39291906139eb565b505050565b6112c06127f9565b73ffffffffffffffffffffffffffffffffffffffff166112de61164a565b73ffffffffffffffffffffffffffffffffffffffff1614611334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132b906144dd565b60405180910390fd5b600b60029054906101000a900460ff1615600b60026101000a81548160ff021916908315150217905550565b600b60019054906101000a900460ff1681565b600061137e82612e6a565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f09061479c565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6114796127f9565b73ffffffffffffffffffffffffffffffffffffffff1661149761164a565b73ffffffffffffffffffffffffffffffffffffffff16146114ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e4906144dd565b60405180910390fd5b6114f7600061306d565b565b6115016127f9565b73ffffffffffffffffffffffffffffffffffffffff1661151f61164a565b73ffffffffffffffffffffffffffffffffffffffff1614611575576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156c906144dd565b60405180910390fd5b80600c8190555050565b600d6020528060005260406000206000915090505481565b61159f6127f9565b73ffffffffffffffffffffffffffffffffffffffff166115bd61164a565b73ffffffffffffffffffffffffffffffffffffffff1614611613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160a906144dd565b60405180910390fd5b600b60019054906101000a900460ff1615600b60016101000a81548160ff021916908315150217905550565b66b1a2bc2ec5000081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600481565b606060038054611687906142aa565b80601f01602080910402602001604051908101604052809291908181526020018280546116b3906142aa565b80156117005780601f106116d557610100808354040283529160200191611700565b820191906000526020600020905b8154815290600101906020018083116116e357829003601f168201915b5050505050905090565b803273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611779576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177090614808565b60405180910390fd5b348166b1a2bc2ec5000061178d9190614828565b11156117ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c5906148ce565b60405180910390fd5b613a98816117da610de1565b6117e491906148ee565b1115611825576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181c90614990565b60405180910390fd5b600b60019054906101000a900460ff16611874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186b906149fc565b60405180910390fd5b60328211156118b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118af90614a8e565b60405180910390fd5b603282600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461190591906148ee565b1115611946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193d90614b20565b60405180910390fd5b81600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461199591906148ee565b925050819055506119a63383613131565b5050565b6119b26127f9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1690614b8c565b60405180910390fd5b8060076000611a2c6127f9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ad96127f9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b1e9190613b7c565b60405180910390a35050565b611b326127f9565b73ffffffffffffffffffffffffffffffffffffffff16611b5061164a565b73ffffffffffffffffffffffffffffffffffffffff1614611ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9d906144dd565b60405180910390fd5b613a9881611bb2610de1565b611bbc91906148ee565b1115611bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf490614990565b60405180910390fd5b611c073382613131565b50565b803273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7090614808565b60405180910390fd5b348166b1a2bc2ec50000611c8d9190614828565b1115611cce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc5906148ce565b60405180910390fd5b613a9881611cda610de1565b611ce491906148ee565b1115611d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1c90614990565b60405180910390fd5b600b60009054906101000a900460ff16611d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6b90614bf8565b60405180910390fd5b6004821115611db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611daf90614c8a565b60405180910390fd5b611e2c848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c5433604051602001611e119190614cf2565b6040516020818303038152906040528051906020012061314f565b611e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6290614d59565b60405180910390fd5b600482600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611eb891906148ee565b1115611ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef090614b20565b60405180910390fd5b81600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f4891906148ee565b92505081905550611f593383613131565b50505050565b611f6a8484846128b3565b611f7684848484613166565b611fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fac90614deb565b60405180910390fd5b50505050565b600f6020528060005260406000206000915054906101000a900460ff1681565b600a8054611fe8906142aa565b80601f0160208091040260200160405190810160405280929190818152602001828054612014906142aa565b80156120615780601f1061203657610100808354040283529160200191612061565b820191906000526020600020905b81548152906001019060200180831161204457829003601f168201915b505050505081565b6060612074826127eb565b6120b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120aa90614e57565b60405180910390fd5b60001515600b60029054906101000a900460ff1615150361216057601280546120db906142aa565b80601f0160208091040260200160405190810160405280929190818152602001828054612107906142aa565b80156121545780601f1061212957610100808354040283529160200191612154565b820191906000526020600020905b81548152906001019060200180831161213757829003601f168201915b50505050509050612191565b601161216b836132ed565b600a60405160200161217f93929190614f47565b60405160208183030381529060405290505b919050565b606481565b6121a36127f9565b73ffffffffffffffffffffffffffffffffffffffff166121c161164a565b73ffffffffffffffffffffffffffffffffffffffff1614612217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220e906144dd565b60405180910390fd5b613a9881612223610de1565b61222d91906148ee565b111561226e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226590614990565b60405180910390fd5b600060648261227d9190614fa7565b1461228757600080fd5b60006064826122969190614fd8565b905060005b818110156122c1576122ae336064613131565b80806122b9906145be565b91505061229b565b505050565b60085481565b600e6020528060005260406000206000915090505481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6123806127f9565b73ffffffffffffffffffffffffffffffffffffffff1661239e61164a565b73ffffffffffffffffffffffffffffffffffffffff16146123f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123eb906144dd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612463576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245a9061507b565b60405180910390fd5b61246c8161306d565b50565b613a9881565b61247d6127f9565b73ffffffffffffffffffffffffffffffffffffffff1661249b61164a565b73ffffffffffffffffffffffffffffffffffffffff16146124f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e8906144dd565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461258b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258290614808565b60405180910390fd5b613a986001612598610de1565b6125a291906148ee565b11156125e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125da90614990565b60405180910390fd5b60011515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514612676576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266d906150e7565b60405180910390fd5b60001515601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514612709576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270090615153565b60405180910390fd5b6001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061276c336001613131565b565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006128be82612e6a565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166128e56127f9565b73ffffffffffffffffffffffffffffffffffffffff161480612941575061290a6127f9565b73ffffffffffffffffffffffffffffffffffffffff1661292984610c44565b73ffffffffffffffffffffffffffffffffffffffff16145b8061295d575061295c82600001516129576127f9565b6122e4565b5b90508061299f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612996906151e5565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612a11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0890615277565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7790615309565b60405180910390fd5b612a8d858585600161344d565b612a9d6000848460000151612801565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612b0b9190615345565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612baf9190615379565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612cb591906148ee565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612dfa57612d2a816127eb565b15612df9576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e628686866001613453565b505050505050565b612e72613a71565b612e7b826127eb565b612eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb190615431565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000648310612f1e5760017f000000000000000000000000000000000000000000000000000000000000006484612f119190615451565b612f1b91906148ee565b90505b60008390505b81811061302c576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461301857809350505050613068565b50808061302490615485565b915050612f24565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305f90615520565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61314b828260405180602001604052806000815250613459565b5050565b60008261315c8584613938565b1490509392505050565b60006131878473ffffffffffffffffffffffffffffffffffffffff1661276e565b156132e0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026131b06127f9565b8786866040518563ffffffff1660e01b81526004016131d29493929190615595565b6020604051808303816000875af192505050801561320e57506040513d601f19601f8201168201806040525081019061320b91906155f6565b60015b613290573d806000811461323e576040519150601f19603f3d011682016040523d82523d6000602084013e613243565b606091505b506000815103613288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327f90614deb565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506132e5565b600190505b949350505050565b606060008203613334576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613448565b600082905060005b6000821461336657808061334f906145be565b915050600a8261335f9190614fd8565b915061333c565b60008167ffffffffffffffff8111156133825761338161408d565b5b6040519080825280601f01601f1916602001820160405280156133b45781602001600182028036833780820191505090505b5090505b60008514613441576001826133cd9190615451565b9150600a856133dc9190614fa7565b60306133e891906148ee565b60f81b8183815181106133fe576133fd615623565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561343a9190614fd8565b94506133b8565b8093505050505b919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036134cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134c6906156c4565b60405180910390fd5b6134d8816127eb565b15613518576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161350f90615730565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000006483111561357b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613572906157c2565b60405180910390fd5b613588600085838661344d565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516136859190615379565b6fffffffffffffffffffffffffffffffff1681526020018583602001516136ac9190615379565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561391b57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46138bb6000888488613166565b6138fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138f190614deb565b60405180910390fd5b8180613905906145be565b9250508080613913906145be565b91505061384a565b50806001819055506139306000878588613453565b505050505050565b60008082905060005b84518110156139e057600085828151811061395f5761395e615623565b5b602002602001015190508083116139a0578281604051602001613983929190615803565b6040516020818303038152906040528051906020012092506139cc565b80836040516020016139b3929190615803565b6040516020818303038152906040528051906020012092505b5080806139d8906145be565b915050613941565b508091505092915050565b8280546139f7906142aa565b90600052602060002090601f016020900481019282613a195760008555613a60565b82601f10613a3257803560ff1916838001178555613a60565b82800160010185558215613a60579182015b82811115613a5f578235825591602001919060010190613a44565b5b509050613a6d9190613aab565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613ac4576000816000905550600101613aac565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613b1181613adc565b8114613b1c57600080fd5b50565b600081359050613b2e81613b08565b92915050565b600060208284031215613b4a57613b49613ad2565b5b6000613b5884828501613b1f565b91505092915050565b60008115159050919050565b613b7681613b61565b82525050565b6000602082019050613b916000830184613b6d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613bd1578082015181840152602081019050613bb6565b83811115613be0576000848401525b50505050565b6000601f19601f8301169050919050565b6000613c0282613b97565b613c0c8185613ba2565b9350613c1c818560208601613bb3565b613c2581613be6565b840191505092915050565b60006020820190508181036000830152613c4a8184613bf7565b905092915050565b6000819050919050565b613c6581613c52565b8114613c7057600080fd5b50565b600081359050613c8281613c5c565b92915050565b600060208284031215613c9e57613c9d613ad2565b5b6000613cac84828501613c73565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613ce082613cb5565b9050919050565b613cf081613cd5565b82525050565b6000602082019050613d0b6000830184613ce7565b92915050565b613d1a81613cd5565b8114613d2557600080fd5b50565b600081359050613d3781613d11565b92915050565b60008060408385031215613d5457613d53613ad2565b5b6000613d6285828601613d28565b9250506020613d7385828601613c73565b9150509250929050565b613d8681613c52565b82525050565b6000602082019050613da16000830184613d7d565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613dcc57613dcb613da7565b5b8235905067ffffffffffffffff811115613de957613de8613dac565b5b602083019150836001820283011115613e0557613e04613db1565b5b9250929050565b60008060208385031215613e2357613e22613ad2565b5b600083013567ffffffffffffffff811115613e4157613e40613ad7565b5b613e4d85828601613db6565b92509250509250929050565b600080600060608486031215613e7257613e71613ad2565b5b6000613e8086828701613d28565b9350506020613e9186828701613d28565b9250506040613ea286828701613c73565b9150509250925092565b6000819050919050565b613ebf81613eac565b82525050565b6000602082019050613eda6000830184613eb6565b92915050565b600060208284031215613ef657613ef5613ad2565b5b6000613f0484828501613d28565b91505092915050565b613f1681613eac565b8114613f2157600080fd5b50565b600081359050613f3381613f0d565b92915050565b600060208284031215613f4f57613f4e613ad2565b5b6000613f5d84828501613f24565b91505092915050565b613f6f81613b61565b8114613f7a57600080fd5b50565b600081359050613f8c81613f66565b92915050565b60008060408385031215613fa957613fa8613ad2565b5b6000613fb785828601613d28565b9250506020613fc885828601613f7d565b9150509250929050565b60008083601f840112613fe857613fe7613da7565b5b8235905067ffffffffffffffff81111561400557614004613dac565b5b60208301915083602082028301111561402157614020613db1565b5b9250929050565b60008060006040848603121561404157614040613ad2565b5b600084013567ffffffffffffffff81111561405f5761405e613ad7565b5b61406b86828701613fd2565b9350935050602061407e86828701613c73565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6140c582613be6565b810181811067ffffffffffffffff821117156140e4576140e361408d565b5b80604052505050565b60006140f7613ac8565b905061410382826140bc565b919050565b600067ffffffffffffffff8211156141235761412261408d565b5b61412c82613be6565b9050602081019050919050565b82818337600083830152505050565b600061415b61415684614108565b6140ed565b90508281526020810184848401111561417757614176614088565b5b614182848285614139565b509392505050565b600082601f83011261419f5761419e613da7565b5b81356141af848260208601614148565b91505092915050565b600080600080608085870312156141d2576141d1613ad2565b5b60006141e087828801613d28565b94505060206141f187828801613d28565b935050604061420287828801613c73565b925050606085013567ffffffffffffffff81111561422357614222613ad7565b5b61422f8782880161418a565b91505092959194509250565b6000806040838503121561425257614251613ad2565b5b600061426085828601613d28565b925050602061427185828601613d28565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806142c257607f821691505b6020821081036142d5576142d461427b565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000614337602d83613ba2565b9150614342826142db565b604082019050919050565b600060208201905081810360008301526143668161432a565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b60006143c9602283613ba2565b91506143d48261436d565b604082019050919050565b600060208201905081810360008301526143f8816143bc565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b600061445b603983613ba2565b9150614466826143ff565b604082019050919050565b6000602082019050818103600083015261448a8161444e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006144c7602083613ba2565b91506144d282614491565b602082019050919050565b600060208201905081810360008301526144f6816144ba565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000614559602283613ba2565b9150614564826144fd565b604082019050919050565b600060208201905081810360008301526145888161454c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006145c982613c52565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036145fb576145fa61458f565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000614662602e83613ba2565b915061466d82614606565b604082019050919050565b6000602082019050818103600083015261469181614655565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b60006146f4602383613ba2565b91506146ff82614698565b604082019050919050565b60006020820190508181036000830152614723816146e7565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000614786602b83613ba2565b91506147918261472a565b604082019050919050565b600060208201905081810360008301526147b581614779565b9050919050565b7f4e6f206368656174696e67000000000000000000000000000000000000000000600082015250565b60006147f2600b83613ba2565b91506147fd826147bc565b602082019050919050565b60006020820190508181036000830152614821816147e5565b9050919050565b600061483382613c52565b915061483e83613c52565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156148775761487661458f565b5b828202905092915050565b7f57726f6e672065746865722076616c7565000000000000000000000000000000600082015250565b60006148b8601183613ba2565b91506148c382614882565b602082019050919050565b600060208201905081810360008301526148e7816148ab565b9050919050565b60006148f982613c52565b915061490483613c52565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156149395761493861458f565b5b828201905092915050565b7f4e6f7420656e6f75676820737570706c79000000000000000000000000000000600082015250565b600061497a601183613ba2565b915061498582614944565b602082019050919050565b600060208201905081810360008301526149a98161496d565b9050919050565b7f53616c65206e6f74206c69766500000000000000000000000000000000000000600082015250565b60006149e6600d83613ba2565b91506149f1826149b0565b602082019050919050565b60006020820190508181036000830152614a15816149d9565b9050919050565b7f45786365656473206d617820616c6c6f776564207075626c69632073616c652060008201527f6d696e7473207065722077616c6c657400000000000000000000000000000000602082015250565b6000614a78603083613ba2565b9150614a8382614a1c565b604082019050919050565b60006020820190508181036000830152614aa781614a6b565b9050919050565b7f4164647265737320616c7265616479206d696e74656420616c6c6f636174696f60008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b0a602183613ba2565b9150614b1582614aae565b604082019050919050565b60006020820190508181036000830152614b3981614afd565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000614b76601a83613ba2565b9150614b8182614b40565b602082019050919050565b60006020820190508181036000830152614ba581614b69565b9050919050565b7f50726573616c65206e6f74206c69766500000000000000000000000000000000600082015250565b6000614be2601083613ba2565b9150614bed82614bac565b602082019050919050565b60006020820190508181036000830152614c1181614bd5565b9050919050565b7f45786365656473206d617820616c6c6f7765642070726573616c65206d696e7460008201527f73207065722077616c6c65740000000000000000000000000000000000000000602082015250565b6000614c74602c83613ba2565b9150614c7f82614c18565b604082019050919050565b60006020820190508181036000830152614ca381614c67565b9050919050565b60008160601b9050919050565b6000614cc282614caa565b9050919050565b6000614cd482614cb7565b9050919050565b614cec614ce782613cd5565b614cc9565b82525050565b6000614cfe8284614cdb565b60148201915081905092915050565b7f4e6f742077686974656c69737465640000000000000000000000000000000000600082015250565b6000614d43600f83613ba2565b9150614d4e82614d0d565b602082019050919050565b60006020820190508181036000830152614d7281614d36565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000614dd5603383613ba2565b9150614de082614d79565b604082019050919050565b60006020820190508181036000830152614e0481614dc8565b9050919050565b7f546f6b656e20646f6573206e6f74206578697374000000000000000000000000600082015250565b6000614e41601483613ba2565b9150614e4c82614e0b565b602082019050919050565b60006020820190508181036000830152614e7081614e34565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154614ea4816142aa565b614eae8186614e77565b94506001821660008114614ec95760018114614eda57614f0d565b60ff19831686528186019350614f0d565b614ee385614e82565b60005b83811015614f0557815481890152600182019150602081019050614ee6565b838801955050505b50505092915050565b6000614f2182613b97565b614f2b8185614e77565b9350614f3b818560208601613bb3565b80840191505092915050565b6000614f538286614e97565b9150614f5f8285614f16565b9150614f6b8284614e97565b9150819050949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614fb282613c52565b9150614fbd83613c52565b925082614fcd57614fcc614f78565b5b828206905092915050565b6000614fe382613c52565b9150614fee83613c52565b925082614ffe57614ffd614f78565b5b828204905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615065602683613ba2565b915061507082615009565b604082019050919050565b6000602082019050818103600083015261509481615058565b9050919050565b7f4e6f7420656c696769626c6520666f722066726565204e465400000000000000600082015250565b60006150d1601983613ba2565b91506150dc8261509b565b602082019050919050565b60006020820190508181036000830152615100816150c4565b9050919050565b7f416c726561647920636c61696d65642066726565204e46540000000000000000600082015250565b600061513d601883613ba2565b915061514882615107565b602082019050919050565b6000602082019050818103600083015261516c81615130565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006151cf603283613ba2565b91506151da82615173565b604082019050919050565b600060208201905081810360008301526151fe816151c2565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000615261602683613ba2565b915061526c82615205565b604082019050919050565b6000602082019050818103600083015261529081615254565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006152f3602583613ba2565b91506152fe82615297565b604082019050919050565b60006020820190508181036000830152615322816152e6565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600061535082615329565b915061535b83615329565b92508282101561536e5761536d61458f565b5b828203905092915050565b600061538482615329565b915061538f83615329565b9250826fffffffffffffffffffffffffffffffff038211156153b4576153b361458f565b5b828201905092915050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b600061541b602a83613ba2565b9150615426826153bf565b604082019050919050565b6000602082019050818103600083015261544a8161540e565b9050919050565b600061545c82613c52565b915061546783613c52565b92508282101561547a5761547961458f565b5b828203905092915050565b600061549082613c52565b9150600082036154a3576154a261458f565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b600061550a602f83613ba2565b9150615515826154ae565b604082019050919050565b60006020820190508181036000830152615539816154fd565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061556782615540565b615571818561554b565b9350615581818560208601613bb3565b61558a81613be6565b840191505092915050565b60006080820190506155aa6000830187613ce7565b6155b76020830186613ce7565b6155c46040830185613d7d565b81810360608301526155d6818461555c565b905095945050505050565b6000815190506155f081613b08565b92915050565b60006020828403121561560c5761560b613ad2565b5b600061561a848285016155e1565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006156ae602183613ba2565b91506156b982615652565b604082019050919050565b600060208201905081810360008301526156dd816156a1565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b600061571a601d83613ba2565b9150615725826156e4565b602082019050919050565b600060208201905081810360008301526157498161570d565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b60006157ac602283613ba2565b91506157b782615750565b604082019050919050565b600060208201905081810360008301526157db8161579f565b9050919050565b6000819050919050565b6157fd6157f882613eac565b6157e2565b82525050565b600061580f82856157ec565b60208201915061581f82846157ec565b602082019150819050939250505056fea2646970667358221220c15a70b0cd8454f068ecafbeebef5e740e39eb8e10b9de3ca15b78b020a6c98c64736f6c634300080d0033

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.