ETH Price: $3,245.75 (+1.98%)
Gas: 2 Gwei

Token

Hanako (HANAKO)
 

Overview

Max Total Supply

182 HANAKO

Holders

64

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 HANAKO
0x937e8bfacbd52db2dd3e01a4a1a03f10e0b6ff2a
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:
Hanako

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-05
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/[email protected]/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/[email protected]/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/[email protected]/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/[email protected]/security/Pausable.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: @openzeppelin/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/token/ERC721/ERC721.sol


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

// File: @openzeppelin/[email protected]/token/ERC721/extensions/ERC721Burnable.sol


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

pragma solidity ^0.8.0;



/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

// File: @openzeppelin/[email protected]/token/ERC721/extensions/ERC721URIStorage.sol


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

pragma solidity ^0.8.0;


/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

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

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

// File: @openzeppelin/[email protected]/token/ERC721/extensions/ERC721Enumerable.sol


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: HANAKO.sol
/**
 * @title HANAKOFriends
 * @author BCC Team (Asim, AbdulBasit, Mansoob, Tariq)
 * @dev Final layer of ERC721 Token, using generative NFT Art.
 *
 * Include with `using Counters for Counters.Counter;`
 */

pragma solidity ^0.8.7;


contract Hanako is ERC721, ERC721Enumerable, ERC721URIStorage, Pausable, Ownable, ERC721Burnable {
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdCounter;
    uint256 private NFTPrice;
    uint256 private NFTMaxSupply;
    uint256 private maxCapPerMint = 10;                     //per address mint 
    mapping(address => uint256) internal mintBlanceOf;
    bool private startSale = true;
    string internal baseuri = "https://gateway.pinata.cloud/ipfs/Qmb84EzqsUS7uNbqMTv5ugeJabzTBJEYtrXaNv3AsgzP3v/";
    
                        
    constructor() ERC721("Hanako", "HANAKO") {
        NFTPrice = 0.015 ether;         //15 Finney           
        NFTMaxSupply = 5000;            //5000
    }


    fallback() external payable { }
    receive() external payable { }

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

    function setBaseURI(string memory _baseuri) external onlyOwner {
        baseuri = _baseuri;
    }

    function setNFTPrice(uint256 NFTPrice_) external onlyOwner {
        NFTPrice = NFTPrice_ ;
    }

    function getNFTPrice() external view returns(uint256) {
        return NFTPrice;
    }


    function updateMaxMintPerCap(uint256 maxCap_) external onlyOwner {
        maxCapPerMint = maxCap_;
    }

    //start Sale
    function setStartSale() external onlyOwner {
            startSale = !startSale;
    }

    function _maxSupply() external view returns(uint256) {
        return NFTMaxSupply;
    }

    function pause() external onlyOwner {
        _pause();
    }

    function unpause() external onlyOwner {
        _unpause();
    }

    //wraping all buy or mint function in one function:
    function mint(uint256 _countNfts) public payable whenNotPaused {
        uint NFTsPrice = NFTPrice * _countNfts;
        address to = msg.sender; 
        require(totalSupply() + _countNfts <= NFTMaxSupply, "NFT: Max Supply reached");
        require(_countNfts > 0, "NFT: No of NFTs must be greater then zero");
        

        if (msg.sender != owner()) {
            require(startSale == true, "NFT sale not started");
            require(msg.value == NFTsPrice, "Please enter exact price");
            require(_countNfts <= maxCapPerMint, "Max limit is 50 NFT in one transaction");
            require(mintBlanceOf[to] + _countNfts <= maxCapPerMint, "Max limit minting per wallet");
        }
        
        for (uint i = 0; i < _countNfts; i++ ) {
            _tokenIdCounter.increment();
            uint256 tokenId = _tokenIdCounter.current();
            mintBlanceOf[to] += 1;
            _safeMint(to, tokenId);
            _setTokenURI(tokenId, "");
        }
    }


    function _beforeTokenTransfer(address from, address to, uint256 tokenId)
    internal
    whenNotPaused
    override(ERC721, ERC721Enumerable)
    {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    // The following functions are overrides required by Solidity.

    function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) {
        super._burn(tokenId);
    }

    function tokenURI(uint256 tokenId)
    public
    view
    override(ERC721, ERC721URIStorage)
    returns(string memory)
    {
        return super.tokenURI(tokenId);
    }

    function supportsInterface(bytes4 interfaceId)
    public
    view
    override(ERC721, ERC721Enumerable)
    returns(bool)
    {
        return super.supportsInterface(interfaceId);
    }

    function lastTokenID() external view returns(uint256) {
        return _tokenIdCounter.current();
    }

    function contractBalance() external onlyOwner view returns(uint256) {
        return address(this).balance;
    }

    function withdraw() external onlyOwner whenNotPaused returns(uint256){
        uint balance = address(this).balance;
        require(balance > 0, "NFT: No ether left to withdraw");

        (bool success, ) = payable(owner()).call{ value: balance } ("");
        require(success, "NFT: Transfer failed.");
        return balance;
    }
}

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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"_maxSupply","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNFTPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastTokenID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_countNfts","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"uint256","name":"NFTPrice_","type":"uint256"}],"name":"setNFTPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStartSale","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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxCap_","type":"uint256"}],"name":"updateMaxMintPerCap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

600a600f556011805460ff19166001179055610100604052605160808181529062002b5060a03980516200003c9160129160209091019062000140565b503480156200004a57600080fd5b506040518060400160405280600681526020016548616e616b6f60d01b8152506040518060400160405280600681526020016548414e414b4f60d01b8152508160009080519060200190620000a192919062000140565b508051620000b790600190602084019062000140565b5050600b805460ff1916905550620000cf33620000e6565b66354a6ba7a18000600d55611388600e5562000223565b600b80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014e90620001e6565b90600052602060002090601f016020900481019282620001725760008555620001bd565b82601f106200018d57805160ff1916838001178555620001bd565b82800160010185558215620001bd579182015b82811115620001bd578251825591602001919060010190620001a0565b50620001cb929150620001cf565b5090565b5b80821115620001cb5760008155600101620001d0565b600181811c90821680620001fb57607f821691505b602082108114156200021d57634e487b7160e01b600052602260045260246000fd5b50919050565b61291d80620002336000396000f3fe6080604052600436106101da5760003560e01c80636352211e116101015780638da5cb5b1161009a578063b88d4fde1161006c578063b88d4fde1461051c578063c87b56dd1461053c578063e985e9c51461055c578063f2fde38b146105a5578063fb107a4f146105c557005b80638da5cb5b146104b157806395d89b41146104d4578063a0712d68146104e9578063a22cb465146104fc57005b806381530b68116100d357806381530b68146104475780638456cb591461046757806388bd098c1461047c5780638b7afe2e1461049c57005b80636352211e146103dd57806370a08231146103fd578063715018a61461041d578063777708f11461043257005b80633521bd7e1161017357806342966c681161014557806342966c68146103655780634f6ccce71461038557806355f804b3146103a55780635c975abb146103c557005b80633521bd7e146103065780633ccfd60b1461031b5780633f4ba83a1461033057806342842e0e1461034557005b806318160ddd116101ac57806318160ddd1461029257806322f4596f146102b157806323b872dd146102c65780632f745c59146102e657005b806301ffc9a7146101e357806306fdde0314610218578063081812fc1461023a578063095ea7b31461027257005b366101e157005b005b3480156101ef57600080fd5b506102036101fe3660046124df565b6105da565b60405190151581526020015b60405180910390f35b34801561022457600080fd5b5061022d6105eb565b60405161020f9190612656565b34801561024657600080fd5b5061025a610255366004612562565b61067d565b6040516001600160a01b03909116815260200161020f565b34801561027e57600080fd5b506101e161028d3660046124b5565b61070a565b34801561029e57600080fd5b506008545b60405190815260200161020f565b3480156102bd57600080fd5b50600e546102a3565b3480156102d257600080fd5b506101e16102e13660046123c1565b610820565b3480156102f257600080fd5b506102a36103013660046124b5565b610852565b34801561031257600080fd5b506102a36108e8565b34801561032757600080fd5b506102a36108f8565b34801561033c57600080fd5b506101e1610a42565b34801561035157600080fd5b506101e16103603660046123c1565b610a7c565b34801561037157600080fd5b506101e1610380366004612562565b610a97565b34801561039157600080fd5b506102a36103a0366004612562565b610b11565b3480156103b157600080fd5b506101e16103c0366004612519565b610ba4565b3480156103d157600080fd5b50600b5460ff16610203565b3480156103e957600080fd5b5061025a6103f8366004612562565b610beb565b34801561040957600080fd5b506102a361041836600461236c565b610c62565b34801561042957600080fd5b506101e1610ce9565b34801561043e57600080fd5b506101e1610d23565b34801561045357600080fd5b506101e1610462366004612562565b610d67565b34801561047357600080fd5b506101e1610d9c565b34801561048857600080fd5b506101e1610497366004612562565b610dd4565b3480156104a857600080fd5b506102a3610e09565b3480156104bd57600080fd5b50600b5461010090046001600160a01b031661025a565b3480156104e057600080fd5b5061022d610e41565b6101e16104f7366004612562565b610e50565b34801561050857600080fd5b506101e1610517366004612479565b61117f565b34801561052857600080fd5b506101e16105373660046123fd565b61118a565b34801561054857600080fd5b5061022d610557366004612562565b6111bc565b34801561056857600080fd5b5061020361057736600461238e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105b157600080fd5b506101e16105c036600461236c565b6111c7565b3480156105d157600080fd5b50600d546102a3565b60006105e582611265565b92915050565b6060600080546105fa906127f9565b80601f0160208091040260200160405190810160405280929190818152602001828054610626906127f9565b80156106735780601f1061064857610100808354040283529160200191610673565b820191906000526020600020905b81548152906001019060200180831161065657829003601f168201915b5050505050905090565b60006106888261128a565b6106ee5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061071582610beb565b9050806001600160a01b0316836001600160a01b031614156107835760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106e5565b336001600160a01b038216148061079f575061079f8133610577565b6108115760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106e5565b61081b83836112a7565b505050565b61082b335b82611315565b6108475760405162461bcd60e51b81526004016106e59061271a565b61081b8383836113ff565b600061085d83610c62565b82106108bf5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106e5565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b60006108f3600c5490565b905090565b600b546000906001600160a01b0361010090910416331461092b5760405162461bcd60e51b81526004016106e5906126e5565b600b5460ff161561094e5760405162461bcd60e51b81526004016106e5906126bb565b478061099c5760405162461bcd60e51b815260206004820152601e60248201527f4e46543a204e6f206574686572206c65667420746f207769746864726177000060448201526064016106e5565b600b5460405160009161010090046001600160a01b03169083908381818185875af1925050503d80600081146109ee576040519150601f19603f3d011682016040523d82523d6000602084013e6109f3565b606091505b5050905080610a3c5760405162461bcd60e51b815260206004820152601560248201527427232a1d102a3930b739b332b9103330b4b632b21760591b60448201526064016106e5565b50905090565b600b546001600160a01b03610100909104163314610a725760405162461bcd60e51b81526004016106e5906126e5565b610a7a6115aa565b565b61081b8383836040518060200160405280600081525061118a565b610aa033610825565b610b055760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b60648201526084016106e5565b610b0e8161163d565b50565b6000610b1c60085490565b8210610b7f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106e5565b60088281548110610b9257610b926128a5565b90600052602060002001549050919050565b600b546001600160a01b03610100909104163314610bd45760405162461bcd60e51b81526004016106e5906126e5565b8051610be790601290602084019061220b565b5050565b6000818152600260205260408120546001600160a01b0316806105e55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106e5565b60006001600160a01b038216610ccd5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106e5565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03610100909104163314610d195760405162461bcd60e51b81526004016106e5906126e5565b610a7a6000611646565b600b546001600160a01b03610100909104163314610d535760405162461bcd60e51b81526004016106e5906126e5565b6011805460ff19811660ff90911615179055565b600b546001600160a01b03610100909104163314610d975760405162461bcd60e51b81526004016106e5906126e5565b600d55565b600b546001600160a01b03610100909104163314610dcc5760405162461bcd60e51b81526004016106e5906126e5565b610a7a6116a0565b600b546001600160a01b03610100909104163314610e045760405162461bcd60e51b81526004016106e5906126e5565b600f55565b600b546000906001600160a01b03610100909104163314610e3c5760405162461bcd60e51b81526004016106e5906126e5565b504790565b6060600180546105fa906127f9565b600b5460ff1615610e735760405162461bcd60e51b81526004016106e5906126bb565b600081600d54610e839190612797565b600e54909150339083610e9560085490565b610e9f919061276b565b1115610eed5760405162461bcd60e51b815260206004820152601760248201527f4e46543a204d617820537570706c79207265616368656400000000000000000060448201526064016106e5565b60008311610f4f5760405162461bcd60e51b815260206004820152602960248201527f4e46543a204e6f206f66204e465473206d7573742062652067726561746572206044820152687468656e207a65726f60b81b60648201526084016106e5565b600b5461010090046001600160a01b03166001600160a01b0316336001600160a01b0316146110eb5760115460ff161515600114610fc65760405162461bcd60e51b8152602060048201526014602482015273139195081cd85b19481b9bdd081cdd185c9d195960621b60448201526064016106e5565b8134146110155760405162461bcd60e51b815260206004820152601860248201527f506c6561736520656e746572206578616374207072696365000000000000000060448201526064016106e5565b600f548311156110765760405162461bcd60e51b815260206004820152602660248201527f4d6178206c696d6974206973203530204e465420696e206f6e65207472616e7360448201526530b1ba34b7b760d11b60648201526084016106e5565b600f546001600160a01b03821660009081526010602052604090205461109d90859061276b565b11156110eb5760405162461bcd60e51b815260206004820152601c60248201527f4d6178206c696d6974206d696e74696e67207065722077616c6c65740000000060448201526064016106e5565b60005b8381101561117957611104600c80546001019055565b600061110f600c5490565b6001600160a01b0384166000908152601060205260408120805492935060019290919061113d90849061276b565b9091555061114d905083826116f8565b6111668160405180602001604052806000815250611712565b508061117181612834565b9150506110ee565b50505050565b610be733838361179d565b6111943383611315565b6111b05760405162461bcd60e51b81526004016106e59061271a565b6111798484848461186c565b60606105e58261189f565b600b546001600160a01b036101009091041633146111f75760405162461bcd60e51b81526004016106e5906126e5565b6001600160a01b03811661125c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106e5565b610b0e81611646565b60006001600160e01b0319821663780e9d6360e01b14806105e557506105e582611a01565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906112dc82610beb565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006113208261128a565b6113815760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106e5565b600061138c83610beb565b9050806001600160a01b0316846001600160a01b031614806113c75750836001600160a01b03166113bc8461067d565b6001600160a01b0316145b806113f757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661141282610beb565b6001600160a01b03161461147a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106e5565b6001600160a01b0382166114dc5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106e5565b6114e7838383611a51565b6114f26000826112a7565b6001600160a01b038316600090815260036020526040812080546001929061151b9084906127b6565b90915550506001600160a01b038216600090815260036020526040812080546001929061154990849061276b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b5460ff166115f35760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016106e5565b600b805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b610b0e81611a7f565b600b80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600b5460ff16156116c35760405162461bcd60e51b81526004016106e5906126bb565b600b805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586116203390565b610be7828260405180602001604052806000815250611abf565b61171b8261128a565b61177e5760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b60648201526084016106e5565b6000828152600a60209081526040909120825161081b9284019061220b565b816001600160a01b0316836001600160a01b031614156117ff5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106e5565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6118778484846113ff565b61188384848484611af2565b6111795760405162461bcd60e51b81526004016106e590612669565b60606118aa8261128a565b6119105760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b60648201526084016106e5565b6000828152600a602052604081208054611929906127f9565b80601f0160208091040260200160405190810160405280929190818152602001828054611955906127f9565b80156119a25780601f10611977576101008083540402835291602001916119a2565b820191906000526020600020905b81548152906001019060200180831161198557829003601f168201915b5050505050905060006119b3611bff565b90508051600014156119c6575092915050565b8151156119f85780826040516020016119e09291906125a7565b60405160208183030381529060405292505050919050565b6113f784611c0e565b60006001600160e01b031982166380ac58cd60e01b1480611a3257506001600160e01b03198216635b5e139f60e01b145b806105e557506301ffc9a760e01b6001600160e01b03198316146105e5565b600b5460ff1615611a745760405162461bcd60e51b81526004016106e5906126bb565b61081b838383611cdf565b611a8881611d97565b6000818152600a602052604090208054611aa1906127f9565b159050610b0e576000818152600a60205260408120610b0e9161228f565b611ac98383611e3e565b611ad66000848484611af2565b61081b5760405162461bcd60e51b81526004016106e590612669565b60006001600160a01b0384163b15611bf457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b36903390899088908890600401612619565b602060405180830381600087803b158015611b5057600080fd5b505af1925050508015611b80575060408051601f3d908101601f19168201909252611b7d918101906124fc565b60015b611bda573d808015611bae576040519150601f19603f3d011682016040523d82523d6000602084013e611bb3565b606091505b508051611bd25760405162461bcd60e51b81526004016106e590612669565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113f7565b506001949350505050565b6060601280546105fa906127f9565b6060611c198261128a565b611c7d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106e5565b6000611c87611bff565b604080518082019091526005815264173539b7b760d91b6020820152815191925090611cc257604051806020016040528060008152506113f7565b81611ccc85611f7d565b826040516020016119e0939291906125d6565b6001600160a01b038316611d3a57611d3581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611d5d565b816001600160a01b0316836001600160a01b031614611d5d57611d5d838261207b565b6001600160a01b038216611d745761081b81612118565b826001600160a01b0316826001600160a01b03161461081b5761081b82826121c7565b6000611da282610beb565b9050611db081600084611a51565b611dbb6000836112a7565b6001600160a01b0381166000908152600360205260408120805460019290611de49084906127b6565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6001600160a01b038216611e945760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106e5565b611e9d8161128a565b15611eea5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106e5565b611ef660008383611a51565b6001600160a01b0382166000908152600360205260408120805460019290611f1f90849061276b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b606081611fa15750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611fcb5780611fb581612834565b9150611fc49050600a83612783565b9150611fa5565b60008167ffffffffffffffff811115611fe657611fe66128bb565b6040519080825280601f01601f191660200182016040528015612010576020820181803683370190505b5090505b84156113f7576120256001836127b6565b9150612032600a8661284f565b61203d90603061276b565b60f81b818381518110612052576120526128a5565b60200101906001600160f81b031916908160001a905350612074600a86612783565b9450612014565b6000600161208884610c62565b61209291906127b6565b6000838152600760205260409020549091508082146120e5576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061212a906001906127b6565b60008381526009602052604081205460088054939450909284908110612152576121526128a5565b906000526020600020015490508060088381548110612173576121736128a5565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806121ab576121ab61288f565b6001900381819060005260206000200160009055905550505050565b60006121d283610c62565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612217906127f9565b90600052602060002090601f016020900481019282612239576000855561227f565b82601f1061225257805160ff191683800117855561227f565b8280016001018555821561227f579182015b8281111561227f578251825591602001919060010190612264565b5061228b9291506122c5565b5090565b50805461229b906127f9565b6000825580601f106122ab575050565b601f016020900490600052602060002090810190610b0e91905b5b8082111561228b57600081556001016122c6565b600067ffffffffffffffff808411156122f5576122f56128bb565b604051601f8501601f19908116603f0116810190828211818310171561231d5761231d6128bb565b8160405280935085815286868601111561233657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461236757600080fd5b919050565b60006020828403121561237e57600080fd5b61238782612350565b9392505050565b600080604083850312156123a157600080fd5b6123aa83612350565b91506123b860208401612350565b90509250929050565b6000806000606084860312156123d657600080fd5b6123df84612350565b92506123ed60208501612350565b9150604084013590509250925092565b6000806000806080858703121561241357600080fd5b61241c85612350565b935061242a60208601612350565b925060408501359150606085013567ffffffffffffffff81111561244d57600080fd5b8501601f8101871361245e57600080fd5b61246d878235602084016122da565b91505092959194509250565b6000806040838503121561248c57600080fd5b61249583612350565b9150602083013580151581146124aa57600080fd5b809150509250929050565b600080604083850312156124c857600080fd5b6124d183612350565b946020939093013593505050565b6000602082840312156124f157600080fd5b8135612387816128d1565b60006020828403121561250e57600080fd5b8151612387816128d1565b60006020828403121561252b57600080fd5b813567ffffffffffffffff81111561254257600080fd5b8201601f8101841361255357600080fd5b6113f7848235602084016122da565b60006020828403121561257457600080fd5b5035919050565b600081518084526125938160208601602086016127cd565b601f01601f19169290920160200192915050565b600083516125b98184602088016127cd565b8351908301906125cd8183602088016127cd565b01949350505050565b600084516125e88184602089016127cd565b8451908301906125fc8183602089016127cd565b845191019061260f8183602088016127cd565b0195945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061264c9083018461257b565b9695505050505050565b602081526000612387602083018461257b565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561277e5761277e612863565b500190565b60008261279257612792612879565b500490565b60008160001904831182151516156127b1576127b1612863565b500290565b6000828210156127c8576127c8612863565b500390565b60005b838110156127e85781810151838201526020016127d0565b838111156111795750506000910152565b600181811c9082168061280d57607f821691505b6020821081141561282e57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561284857612848612863565b5060010190565b60008261285e5761285e612879565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b0e57600080fdfea26469706673582212206d6a48da972b2b23f5a48510703de10c50c6a88474e25a361ce092a9e7fcc7ae64736f6c6343000807003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d623834457a7173555337754e62714d5476357567654a61627a54424a4559747258614e76334173677a5033762f

Deployed Bytecode

0x6080604052600436106101da5760003560e01c80636352211e116101015780638da5cb5b1161009a578063b88d4fde1161006c578063b88d4fde1461051c578063c87b56dd1461053c578063e985e9c51461055c578063f2fde38b146105a5578063fb107a4f146105c557005b80638da5cb5b146104b157806395d89b41146104d4578063a0712d68146104e9578063a22cb465146104fc57005b806381530b68116100d357806381530b68146104475780638456cb591461046757806388bd098c1461047c5780638b7afe2e1461049c57005b80636352211e146103dd57806370a08231146103fd578063715018a61461041d578063777708f11461043257005b80633521bd7e1161017357806342966c681161014557806342966c68146103655780634f6ccce71461038557806355f804b3146103a55780635c975abb146103c557005b80633521bd7e146103065780633ccfd60b1461031b5780633f4ba83a1461033057806342842e0e1461034557005b806318160ddd116101ac57806318160ddd1461029257806322f4596f146102b157806323b872dd146102c65780632f745c59146102e657005b806301ffc9a7146101e357806306fdde0314610218578063081812fc1461023a578063095ea7b31461027257005b366101e157005b005b3480156101ef57600080fd5b506102036101fe3660046124df565b6105da565b60405190151581526020015b60405180910390f35b34801561022457600080fd5b5061022d6105eb565b60405161020f9190612656565b34801561024657600080fd5b5061025a610255366004612562565b61067d565b6040516001600160a01b03909116815260200161020f565b34801561027e57600080fd5b506101e161028d3660046124b5565b61070a565b34801561029e57600080fd5b506008545b60405190815260200161020f565b3480156102bd57600080fd5b50600e546102a3565b3480156102d257600080fd5b506101e16102e13660046123c1565b610820565b3480156102f257600080fd5b506102a36103013660046124b5565b610852565b34801561031257600080fd5b506102a36108e8565b34801561032757600080fd5b506102a36108f8565b34801561033c57600080fd5b506101e1610a42565b34801561035157600080fd5b506101e16103603660046123c1565b610a7c565b34801561037157600080fd5b506101e1610380366004612562565b610a97565b34801561039157600080fd5b506102a36103a0366004612562565b610b11565b3480156103b157600080fd5b506101e16103c0366004612519565b610ba4565b3480156103d157600080fd5b50600b5460ff16610203565b3480156103e957600080fd5b5061025a6103f8366004612562565b610beb565b34801561040957600080fd5b506102a361041836600461236c565b610c62565b34801561042957600080fd5b506101e1610ce9565b34801561043e57600080fd5b506101e1610d23565b34801561045357600080fd5b506101e1610462366004612562565b610d67565b34801561047357600080fd5b506101e1610d9c565b34801561048857600080fd5b506101e1610497366004612562565b610dd4565b3480156104a857600080fd5b506102a3610e09565b3480156104bd57600080fd5b50600b5461010090046001600160a01b031661025a565b3480156104e057600080fd5b5061022d610e41565b6101e16104f7366004612562565b610e50565b34801561050857600080fd5b506101e1610517366004612479565b61117f565b34801561052857600080fd5b506101e16105373660046123fd565b61118a565b34801561054857600080fd5b5061022d610557366004612562565b6111bc565b34801561056857600080fd5b5061020361057736600461238e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105b157600080fd5b506101e16105c036600461236c565b6111c7565b3480156105d157600080fd5b50600d546102a3565b60006105e582611265565b92915050565b6060600080546105fa906127f9565b80601f0160208091040260200160405190810160405280929190818152602001828054610626906127f9565b80156106735780601f1061064857610100808354040283529160200191610673565b820191906000526020600020905b81548152906001019060200180831161065657829003601f168201915b5050505050905090565b60006106888261128a565b6106ee5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061071582610beb565b9050806001600160a01b0316836001600160a01b031614156107835760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106e5565b336001600160a01b038216148061079f575061079f8133610577565b6108115760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106e5565b61081b83836112a7565b505050565b61082b335b82611315565b6108475760405162461bcd60e51b81526004016106e59061271a565b61081b8383836113ff565b600061085d83610c62565b82106108bf5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106e5565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b60006108f3600c5490565b905090565b600b546000906001600160a01b0361010090910416331461092b5760405162461bcd60e51b81526004016106e5906126e5565b600b5460ff161561094e5760405162461bcd60e51b81526004016106e5906126bb565b478061099c5760405162461bcd60e51b815260206004820152601e60248201527f4e46543a204e6f206574686572206c65667420746f207769746864726177000060448201526064016106e5565b600b5460405160009161010090046001600160a01b03169083908381818185875af1925050503d80600081146109ee576040519150601f19603f3d011682016040523d82523d6000602084013e6109f3565b606091505b5050905080610a3c5760405162461bcd60e51b815260206004820152601560248201527427232a1d102a3930b739b332b9103330b4b632b21760591b60448201526064016106e5565b50905090565b600b546001600160a01b03610100909104163314610a725760405162461bcd60e51b81526004016106e5906126e5565b610a7a6115aa565b565b61081b8383836040518060200160405280600081525061118a565b610aa033610825565b610b055760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b60648201526084016106e5565b610b0e8161163d565b50565b6000610b1c60085490565b8210610b7f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106e5565b60088281548110610b9257610b926128a5565b90600052602060002001549050919050565b600b546001600160a01b03610100909104163314610bd45760405162461bcd60e51b81526004016106e5906126e5565b8051610be790601290602084019061220b565b5050565b6000818152600260205260408120546001600160a01b0316806105e55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106e5565b60006001600160a01b038216610ccd5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106e5565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03610100909104163314610d195760405162461bcd60e51b81526004016106e5906126e5565b610a7a6000611646565b600b546001600160a01b03610100909104163314610d535760405162461bcd60e51b81526004016106e5906126e5565b6011805460ff19811660ff90911615179055565b600b546001600160a01b03610100909104163314610d975760405162461bcd60e51b81526004016106e5906126e5565b600d55565b600b546001600160a01b03610100909104163314610dcc5760405162461bcd60e51b81526004016106e5906126e5565b610a7a6116a0565b600b546001600160a01b03610100909104163314610e045760405162461bcd60e51b81526004016106e5906126e5565b600f55565b600b546000906001600160a01b03610100909104163314610e3c5760405162461bcd60e51b81526004016106e5906126e5565b504790565b6060600180546105fa906127f9565b600b5460ff1615610e735760405162461bcd60e51b81526004016106e5906126bb565b600081600d54610e839190612797565b600e54909150339083610e9560085490565b610e9f919061276b565b1115610eed5760405162461bcd60e51b815260206004820152601760248201527f4e46543a204d617820537570706c79207265616368656400000000000000000060448201526064016106e5565b60008311610f4f5760405162461bcd60e51b815260206004820152602960248201527f4e46543a204e6f206f66204e465473206d7573742062652067726561746572206044820152687468656e207a65726f60b81b60648201526084016106e5565b600b5461010090046001600160a01b03166001600160a01b0316336001600160a01b0316146110eb5760115460ff161515600114610fc65760405162461bcd60e51b8152602060048201526014602482015273139195081cd85b19481b9bdd081cdd185c9d195960621b60448201526064016106e5565b8134146110155760405162461bcd60e51b815260206004820152601860248201527f506c6561736520656e746572206578616374207072696365000000000000000060448201526064016106e5565b600f548311156110765760405162461bcd60e51b815260206004820152602660248201527f4d6178206c696d6974206973203530204e465420696e206f6e65207472616e7360448201526530b1ba34b7b760d11b60648201526084016106e5565b600f546001600160a01b03821660009081526010602052604090205461109d90859061276b565b11156110eb5760405162461bcd60e51b815260206004820152601c60248201527f4d6178206c696d6974206d696e74696e67207065722077616c6c65740000000060448201526064016106e5565b60005b8381101561117957611104600c80546001019055565b600061110f600c5490565b6001600160a01b0384166000908152601060205260408120805492935060019290919061113d90849061276b565b9091555061114d905083826116f8565b6111668160405180602001604052806000815250611712565b508061117181612834565b9150506110ee565b50505050565b610be733838361179d565b6111943383611315565b6111b05760405162461bcd60e51b81526004016106e59061271a565b6111798484848461186c565b60606105e58261189f565b600b546001600160a01b036101009091041633146111f75760405162461bcd60e51b81526004016106e5906126e5565b6001600160a01b03811661125c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106e5565b610b0e81611646565b60006001600160e01b0319821663780e9d6360e01b14806105e557506105e582611a01565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906112dc82610beb565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006113208261128a565b6113815760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106e5565b600061138c83610beb565b9050806001600160a01b0316846001600160a01b031614806113c75750836001600160a01b03166113bc8461067d565b6001600160a01b0316145b806113f757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661141282610beb565b6001600160a01b03161461147a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106e5565b6001600160a01b0382166114dc5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106e5565b6114e7838383611a51565b6114f26000826112a7565b6001600160a01b038316600090815260036020526040812080546001929061151b9084906127b6565b90915550506001600160a01b038216600090815260036020526040812080546001929061154990849061276b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b5460ff166115f35760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016106e5565b600b805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b610b0e81611a7f565b600b80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600b5460ff16156116c35760405162461bcd60e51b81526004016106e5906126bb565b600b805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586116203390565b610be7828260405180602001604052806000815250611abf565b61171b8261128a565b61177e5760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b60648201526084016106e5565b6000828152600a60209081526040909120825161081b9284019061220b565b816001600160a01b0316836001600160a01b031614156117ff5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106e5565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6118778484846113ff565b61188384848484611af2565b6111795760405162461bcd60e51b81526004016106e590612669565b60606118aa8261128a565b6119105760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b60648201526084016106e5565b6000828152600a602052604081208054611929906127f9565b80601f0160208091040260200160405190810160405280929190818152602001828054611955906127f9565b80156119a25780601f10611977576101008083540402835291602001916119a2565b820191906000526020600020905b81548152906001019060200180831161198557829003601f168201915b5050505050905060006119b3611bff565b90508051600014156119c6575092915050565b8151156119f85780826040516020016119e09291906125a7565b60405160208183030381529060405292505050919050565b6113f784611c0e565b60006001600160e01b031982166380ac58cd60e01b1480611a3257506001600160e01b03198216635b5e139f60e01b145b806105e557506301ffc9a760e01b6001600160e01b03198316146105e5565b600b5460ff1615611a745760405162461bcd60e51b81526004016106e5906126bb565b61081b838383611cdf565b611a8881611d97565b6000818152600a602052604090208054611aa1906127f9565b159050610b0e576000818152600a60205260408120610b0e9161228f565b611ac98383611e3e565b611ad66000848484611af2565b61081b5760405162461bcd60e51b81526004016106e590612669565b60006001600160a01b0384163b15611bf457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b36903390899088908890600401612619565b602060405180830381600087803b158015611b5057600080fd5b505af1925050508015611b80575060408051601f3d908101601f19168201909252611b7d918101906124fc565b60015b611bda573d808015611bae576040519150601f19603f3d011682016040523d82523d6000602084013e611bb3565b606091505b508051611bd25760405162461bcd60e51b81526004016106e590612669565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113f7565b506001949350505050565b6060601280546105fa906127f9565b6060611c198261128a565b611c7d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106e5565b6000611c87611bff565b604080518082019091526005815264173539b7b760d91b6020820152815191925090611cc257604051806020016040528060008152506113f7565b81611ccc85611f7d565b826040516020016119e0939291906125d6565b6001600160a01b038316611d3a57611d3581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611d5d565b816001600160a01b0316836001600160a01b031614611d5d57611d5d838261207b565b6001600160a01b038216611d745761081b81612118565b826001600160a01b0316826001600160a01b03161461081b5761081b82826121c7565b6000611da282610beb565b9050611db081600084611a51565b611dbb6000836112a7565b6001600160a01b0381166000908152600360205260408120805460019290611de49084906127b6565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6001600160a01b038216611e945760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106e5565b611e9d8161128a565b15611eea5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106e5565b611ef660008383611a51565b6001600160a01b0382166000908152600360205260408120805460019290611f1f90849061276b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b606081611fa15750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611fcb5780611fb581612834565b9150611fc49050600a83612783565b9150611fa5565b60008167ffffffffffffffff811115611fe657611fe66128bb565b6040519080825280601f01601f191660200182016040528015612010576020820181803683370190505b5090505b84156113f7576120256001836127b6565b9150612032600a8661284f565b61203d90603061276b565b60f81b818381518110612052576120526128a5565b60200101906001600160f81b031916908160001a905350612074600a86612783565b9450612014565b6000600161208884610c62565b61209291906127b6565b6000838152600760205260409020549091508082146120e5576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061212a906001906127b6565b60008381526009602052604081205460088054939450909284908110612152576121526128a5565b906000526020600020015490508060088381548110612173576121736128a5565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806121ab576121ab61288f565b6001900381819060005260206000200160009055905550505050565b60006121d283610c62565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612217906127f9565b90600052602060002090601f016020900481019282612239576000855561227f565b82601f1061225257805160ff191683800117855561227f565b8280016001018555821561227f579182015b8281111561227f578251825591602001919060010190612264565b5061228b9291506122c5565b5090565b50805461229b906127f9565b6000825580601f106122ab575050565b601f016020900490600052602060002090810190610b0e91905b5b8082111561228b57600081556001016122c6565b600067ffffffffffffffff808411156122f5576122f56128bb565b604051601f8501601f19908116603f0116810190828211818310171561231d5761231d6128bb565b8160405280935085815286868601111561233657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461236757600080fd5b919050565b60006020828403121561237e57600080fd5b61238782612350565b9392505050565b600080604083850312156123a157600080fd5b6123aa83612350565b91506123b860208401612350565b90509250929050565b6000806000606084860312156123d657600080fd5b6123df84612350565b92506123ed60208501612350565b9150604084013590509250925092565b6000806000806080858703121561241357600080fd5b61241c85612350565b935061242a60208601612350565b925060408501359150606085013567ffffffffffffffff81111561244d57600080fd5b8501601f8101871361245e57600080fd5b61246d878235602084016122da565b91505092959194509250565b6000806040838503121561248c57600080fd5b61249583612350565b9150602083013580151581146124aa57600080fd5b809150509250929050565b600080604083850312156124c857600080fd5b6124d183612350565b946020939093013593505050565b6000602082840312156124f157600080fd5b8135612387816128d1565b60006020828403121561250e57600080fd5b8151612387816128d1565b60006020828403121561252b57600080fd5b813567ffffffffffffffff81111561254257600080fd5b8201601f8101841361255357600080fd5b6113f7848235602084016122da565b60006020828403121561257457600080fd5b5035919050565b600081518084526125938160208601602086016127cd565b601f01601f19169290920160200192915050565b600083516125b98184602088016127cd565b8351908301906125cd8183602088016127cd565b01949350505050565b600084516125e88184602089016127cd565b8451908301906125fc8183602089016127cd565b845191019061260f8183602088016127cd565b0195945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061264c9083018461257b565b9695505050505050565b602081526000612387602083018461257b565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561277e5761277e612863565b500190565b60008261279257612792612879565b500490565b60008160001904831182151516156127b1576127b1612863565b500290565b6000828210156127c8576127c8612863565b500390565b60005b838110156127e85781810151838201526020016127d0565b838111156111795750506000910152565b600181811c9082168061280d57607f821691505b6020821081141561282e57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561284857612848612863565b5060010190565b60008261285e5761285e612879565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b0e57600080fdfea26469706673582212206d6a48da972b2b23f5a48510703de10c50c6a88474e25a361ce092a9e7fcc7ae64736f6c63430008070033

Deployed Bytecode Sourcemap

51316:4178:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54710:195;;;;;;;;;;-1:-1:-1;54710:195:0;;;;;:::i;:::-;;:::i;:::-;;;6525:14:1;;6518:22;6500:41;;6488:2;6473:18;54710:195:0;;;;;;;;29536:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31143:221::-;;;;;;;;;;-1:-1:-1;31143:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5823:32:1;;;5805:51;;5793:2;5778:18;31143:221:0;5659:203:1;30666:411:0;;;;;;;;;;-1:-1:-1;30666:411:0;;;;;:::i;:::-;;:::i;45541:113::-;;;;;;;;;;-1:-1:-1;45629:10:0;:17;45541:113;;;19010:25:1;;;18998:2;18983:18;45541:113:0;18864:177:1;52793:91:0;;;;;;;;;;-1:-1:-1;52864:12:0;;52793:91;;31893:339;;;;;;;;;;-1:-1:-1;31893:339:0;;;;;:::i;:::-;;:::i;45209:256::-;;;;;;;;;;-1:-1:-1;45209:256:0;;;;;:::i;:::-;;:::i;54913:105::-;;;;;;;;;;;;;:::i;55149:342::-;;;;;;;;;;;;;:::i;52963:67::-;;;;;;;;;;;;;:::i;32303:185::-;;;;;;;;;;-1:-1:-1;32303:185:0;;;;;:::i;:::-;;:::i;41621:245::-;;;;;;;;;;-1:-1:-1;41621:245:0;;;;;:::i;:::-;;:::i;45731:233::-;;;;;;;;;;-1:-1:-1;45731:233:0;;;;;:::i;:::-;;:::i;52251:100::-;;;;;;;;;;-1:-1:-1;52251:100:0;;;;;:::i;:::-;;:::i;8089:86::-;;;;;;;;;;-1:-1:-1;8160:7:0;;;;8089:86;;29230:239;;;;;;;;;;-1:-1:-1;29230:239:0;;;;;:::i;:::-;;:::i;28960:208::-;;;;;;;;;;-1:-1:-1;28960:208:0;;;;;:::i;:::-;;:::i;6134:103::-;;;;;;;;;;;;;:::i;52697:88::-;;;;;;;;;;;;;:::i;52359:99::-;;;;;;;;;;-1:-1:-1;52359:99:0;;;;;:::i;:::-;;:::i;52892:63::-;;;;;;;;;;;;;:::i;52564:107::-;;;;;;;;;;-1:-1:-1;52564:107:0;;;;;:::i;:::-;;:::i;55026:115::-;;;;;;;;;;;;;:::i;5483:87::-;;;;;;;;;;-1:-1:-1;5556:6:0;;;;;-1:-1:-1;;;;;5556:6:0;5483:87;;29705:104;;;;;;;;;;;;;:::i;53095:1002::-;;;;;;:::i;:::-;;:::i;31436:155::-;;;;;;;;;;-1:-1:-1;31436:155:0;;;;;:::i;:::-;;:::i;32559:328::-;;;;;;;;;;-1:-1:-1;32559:328:0;;;;;:::i;:::-;;:::i;54523:179::-;;;;;;;;;;-1:-1:-1;54523:179:0;;;;;:::i;:::-;;:::i;31662:164::-;;;;;;;;;;-1:-1:-1;31662:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31783:25:0;;;31759:4;31783:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31662:164;6392:201;;;;;;;;;;-1:-1:-1;6392:201:0;;;;;:::i;:::-;;:::i;52466:88::-;;;;;;;;;;-1:-1:-1;52538:8:0;;52466:88;;54710:195;54832:4;54861:36;54885:11;54861:23;:36::i;:::-;54854:43;54710:195;-1:-1:-1;;54710:195:0:o;29536:100::-;29590:13;29623:5;29616:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29536:100;:::o;31143:221::-;31219:7;31247:16;31255:7;31247;:16::i;:::-;31239:73;;;;-1:-1:-1;;;31239:73:0;;15049:2:1;31239:73:0;;;15031:21:1;15088:2;15068:18;;;15061:30;15127:34;15107:18;;;15100:62;-1:-1:-1;;;15178:18:1;;;15171:42;15230:19;;31239:73:0;;;;;;;;;-1:-1:-1;31332:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31332:24:0;;31143:221::o;30666:411::-;30747:13;30763:23;30778:7;30763:14;:23::i;:::-;30747:39;;30811:5;-1:-1:-1;;;;;30805:11:0;:2;-1:-1:-1;;;;;30805:11:0;;;30797:57;;;;-1:-1:-1;;;30797:57:0;;16649:2:1;30797:57:0;;;16631:21:1;16688:2;16668:18;;;16661:30;16727:34;16707:18;;;16700:62;-1:-1:-1;;;16778:18:1;;;16771:31;16819:19;;30797:57:0;16447:397:1;30797:57:0;4281:10;-1:-1:-1;;;;;30889:21:0;;;;:62;;-1:-1:-1;30914:37:0;30931:5;4281:10;31662:164;:::i;30914:37::-;30867:168;;;;-1:-1:-1;;;30867:168:0;;12257:2:1;30867:168:0;;;12239:21:1;12296:2;12276:18;;;12269:30;12335:34;12315:18;;;12308:62;12406:26;12386:18;;;12379:54;12450:19;;30867:168:0;12055:420:1;30867:168:0;31048:21;31057:2;31061:7;31048:8;:21::i;:::-;30736:341;30666:411;;:::o;31893:339::-;32088:41;4281:10;32107:12;32121:7;32088:18;:41::i;:::-;32080:103;;;;-1:-1:-1;;;32080:103:0;;;;;;;:::i;:::-;32196:28;32206:4;32212:2;32216:7;32196:9;:28::i;45209:256::-;45306:7;45342:23;45359:5;45342:16;:23::i;:::-;45334:5;:31;45326:87;;;;-1:-1:-1;;;45326:87:0;;8087:2:1;45326:87:0;;;8069:21:1;8126:2;8106:18;;;8099:30;8165:34;8145:18;;;8138:62;-1:-1:-1;;;8216:18:1;;;8209:41;8267:19;;45326:87:0;7885:407:1;45326:87:0;-1:-1:-1;;;;;;45431:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;45209:256::o;54913:105::-;54958:7;54985:25;:15;885:14;;793:114;54985:25;54978:32;;54913:105;:::o;55149:342::-;5556:6;;55210:7;;-1:-1:-1;;;;;5556:6:0;;;;;4281:10;5703:23;5695:68;;;;-1:-1:-1;;;5695:68:0;;;;;;;:::i;:::-;8160:7;;;;8414:9:::1;8406:38;;;;-1:-1:-1::0;;;8406:38:0::1;;;;;;;:::i;:::-;55244:21:::2;55284:11:::0;55276:54:::2;;;::::0;-1:-1:-1;;;55276:54:0;;9325:2:1;55276:54:0::2;::::0;::::2;9307:21:1::0;9364:2;9344:18;;;9337:30;9403:32;9383:18;;;9376:60;9453:18;;55276:54:0::2;9123:354:1::0;55276:54:0::2;5556:6:::0;;55362:44:::2;::::0;55344:12:::2;::::0;5556:6;;;-1:-1:-1;;;;;5556:6:0;;55392:7;;55344:12;55362:44;55344:12;55362:44;55392:7;5556:6;55362:44:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55343:63;;;55425:7;55417:41;;;::::0;-1:-1:-1;;;55417:41:0;;10041:2:1;55417:41:0::2;::::0;::::2;10023:21:1::0;10080:2;10060:18;;;10053:30;-1:-1:-1;;;10099:18:1;;;10092:51;10160:18;;55417:41:0::2;9839:345:1::0;55417:41:0::2;-1:-1:-1::0;55476:7:0;-1:-1:-1;55149:342:0;:::o;52963:67::-;5556:6;;-1:-1:-1;;;;;5556:6:0;;;;;4281:10;5703:23;5695:68;;;;-1:-1:-1;;;5695:68:0;;;;;;;:::i;:::-;53012:10:::1;:8;:10::i;:::-;52963:67::o:0;32303:185::-;32441:39;32458:4;32464:2;32468:7;32441:39;;;;;;;;;;;;:16;:39::i;41621:245::-;41739:41;4281:10;41758:12;4201:98;41739:41;41731:102;;;;-1:-1:-1;;;41731:102:0;;18649:2:1;41731:102:0;;;18631:21:1;18688:2;18668:18;;;18661:30;18727:34;18707:18;;;18700:62;-1:-1:-1;;;18778:18:1;;;18771:46;18834:19;;41731:102:0;18447:412:1;41731:102:0;41844:14;41850:7;41844:5;:14::i;:::-;41621:245;:::o;45731:233::-;45806:7;45842:30;45629:10;:17;;45541:113;45842:30;45834:5;:38;45826:95;;;;-1:-1:-1;;;45826:95:0;;17469:2:1;45826:95:0;;;17451:21:1;17508:2;17488:18;;;17481:30;17547:34;17527:18;;;17520:62;-1:-1:-1;;;17598:18:1;;;17591:42;17650:19;;45826:95:0;17267:408:1;45826:95:0;45939:10;45950:5;45939:17;;;;;;;;:::i;:::-;;;;;;;;;45932:24;;45731:233;;;:::o;52251:100::-;5556:6;;-1:-1:-1;;;;;5556:6:0;;;;;4281:10;5703:23;5695:68;;;;-1:-1:-1;;;5695:68:0;;;;;;;:::i;:::-;52325:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;52251:100:::0;:::o;29230:239::-;29302:7;29338:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29338:16:0;29373:19;29365:73;;;;-1:-1:-1;;;29365:73:0;;13093:2:1;29365:73:0;;;13075:21:1;13132:2;13112:18;;;13105:30;13171:34;13151:18;;;13144:62;-1:-1:-1;;;13222:18:1;;;13215:39;13271:19;;29365:73:0;12891:405:1;28960:208:0;29032:7;-1:-1:-1;;;;;29060:19:0;;29052:74;;;;-1:-1:-1;;;29052:74:0;;12682:2:1;29052:74:0;;;12664:21:1;12721:2;12701:18;;;12694:30;12760:34;12740:18;;;12733:62;-1:-1:-1;;;12811:18:1;;;12804:40;12861:19;;29052:74:0;12480:406:1;29052:74:0;-1:-1:-1;;;;;;29144:16:0;;;;;:9;:16;;;;;;;28960:208::o;6134:103::-;5556:6;;-1:-1:-1;;;;;5556:6:0;;;;;4281:10;5703:23;5695:68;;;;-1:-1:-1;;;5695:68:0;;;;;;;:::i;:::-;6199:30:::1;6226:1;6199:18;:30::i;52697:88::-:0;5556:6;;-1:-1:-1;;;;;5556:6:0;;;;;4281:10;5703:23;5695:68;;;;-1:-1:-1;;;5695:68:0;;;;;;;:::i;:::-;52768:9:::1;::::0;;-1:-1:-1;;52755:22:0;::::1;52768:9;::::0;;::::1;52767:10;52755:22;::::0;;52697:88::o;52359:99::-;5556:6;;-1:-1:-1;;;;;5556:6:0;;;;;4281:10;5703:23;5695:68;;;;-1:-1:-1;;;5695:68:0;;;;;;;:::i;:::-;52429:8:::1;:20:::0;52359:99::o;52892:63::-;5556:6;;-1:-1:-1;;;;;5556:6:0;;;;;4281:10;5703:23;5695:68;;;;-1:-1:-1;;;5695:68:0;;;;;;;:::i;:::-;52939:8:::1;:6;:8::i;52564:107::-:0;5556:6;;-1:-1:-1;;;;;5556:6:0;;;;;4281:10;5703:23;5695:68;;;;-1:-1:-1;;;5695:68:0;;;;;;;:::i;:::-;52640:13:::1;:23:::0;52564:107::o;55026:115::-;5556:6;;55085:7;;-1:-1:-1;;;;;5556:6:0;;;;;4281:10;5703:23;5695:68;;;;-1:-1:-1;;;5695:68:0;;;;;;;:::i;:::-;-1:-1:-1;55112:21:0::1;55026:115:::0;:::o;29705:104::-;29761:13;29794:7;29787:14;;;;;:::i;53095:1002::-;8160:7;;;;8414:9;8406:38;;;;-1:-1:-1;;;8406:38:0;;;;;;;:::i;:::-;53169:14:::1;53197:10;53186:8;;:21;;;;:::i;:::-;53291:12;::::0;53169:38;;-1:-1:-1;53231:10:0::1;::::0;53277;53261:13:::1;45629:10:::0;:17;;45541:113;53261:13:::1;:26;;;;:::i;:::-;:42;;53253:78;;;::::0;-1:-1:-1;;;53253:78:0;;14697:2:1;53253:78:0::1;::::0;::::1;14679:21:1::0;14736:2;14716:18;;;14709:30;14775:25;14755:18;;;14748:53;14818:18;;53253:78:0::1;14495:347:1::0;53253:78:0::1;53363:1;53350:10;:14;53342:68;;;::::0;-1:-1:-1;;;53342:68:0;;18239:2:1;53342:68:0::1;::::0;::::1;18221:21:1::0;18278:2;18258:18;;;18251:30;18317:34;18297:18;;;18290:62;-1:-1:-1;;;18368:18:1;;;18361:39;18417:19;;53342:68:0::1;18037:405:1::0;53342:68:0::1;5556:6:::0;;;;;-1:-1:-1;;;;;5556:6:0;-1:-1:-1;;;;;53437:21:0::1;:10;-1:-1:-1::0;;;;;53437:21:0::1;;53433:373;;53483:9;::::0;::::1;;:17;;:9:::0;:17:::1;53475:50;;;::::0;-1:-1:-1;;;53475:50:0;;11563:2:1;53475:50:0::1;::::0;::::1;11545:21:1::0;11602:2;11582:18;;;11575:30;-1:-1:-1;;;11621:18:1;;;11614:50;11681:18;;53475:50:0::1;11361:344:1::0;53475:50:0::1;53561:9;53548;:22;53540:59;;;::::0;-1:-1:-1;;;53540:59:0;;7734:2:1;53540:59:0::1;::::0;::::1;7716:21:1::0;7773:2;7753:18;;;7746:30;7812:26;7792:18;;;7785:54;7856:18;;53540:59:0::1;7532:348:1::0;53540:59:0::1;53636:13;;53622:10;:27;;53614:78;;;::::0;-1:-1:-1;;;53614:78:0;;6978:2:1;53614:78:0::1;::::0;::::1;6960:21:1::0;7017:2;6997:18;;;6990:30;7056:34;7036:18;;;7029:62;-1:-1:-1;;;7107:18:1;;;7100:36;7153:19;;53614:78:0::1;6776:402:1::0;53614:78:0::1;53748:13;::::0;-1:-1:-1;;;;;53715:16:0;::::1;;::::0;;;:12:::1;:16;::::0;;;;;:29:::1;::::0;53734:10;;53715:29:::1;:::i;:::-;:46;;53707:87;;;::::0;-1:-1:-1;;;53707:87:0;;17882:2:1;53707:87:0::1;::::0;::::1;17864:21:1::0;17921:2;17901:18;;;17894:30;17960;17940:18;;;17933:58;18008:18;;53707:87:0::1;17680:352:1::0;53707:87:0::1;53831:6;53826:264;53847:10;53843:1;:14;53826:264;;;53880:27;:15;1004:19:::0;;1022:1;1004:19;;;915:127;53880:27:::1;53922:15;53940:25;:15;885:14:::0;;793:114;53940:25:::1;-1:-1:-1::0;;;;;53980:16:0;::::1;;::::0;;;:12:::1;:16;::::0;;;;:21;;53922:43;;-1:-1:-1;54000:1:0::1;::::0;53980:16;;;:21:::1;::::0;54000:1;;53980:21:::1;:::i;:::-;::::0;;;-1:-1:-1;54016:22:0::1;::::0;-1:-1:-1;54026:2:0;54030:7;54016:9:::1;:22::i;:::-;54053:25;54066:7;54053:25;;;;;;;;;;;::::0;:12:::1;:25::i;:::-;-1:-1:-1::0;53859:3:0;::::1;::::0;::::1;:::i;:::-;;;;53826:264;;;;53158:939;;53095:1002:::0;:::o;31436:155::-;31531:52;4281:10;31564:8;31574;31531:18;:52::i;32559:328::-;32734:41;4281:10;32767:7;32734:18;:41::i;:::-;32726:103;;;;-1:-1:-1;;;32726:103:0;;;;;;;:::i;:::-;32840:39;32854:4;32860:2;32864:7;32873:5;32840:13;:39::i;54523:179::-;54633:13;54671:23;54686:7;54671:14;:23::i;6392:201::-;5556:6;;-1:-1:-1;;;;;5556:6:0;;;;;4281:10;5703:23;5695:68;;;;-1:-1:-1;;;5695:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6481:22:0;::::1;6473:73;;;::::0;-1:-1:-1;;;6473:73:0;;8918:2:1;6473:73:0::1;::::0;::::1;8900:21:1::0;8957:2;8937:18;;;8930:30;8996:34;8976:18;;;8969:62;-1:-1:-1;;;9047:18:1;;;9040:36;9093:19;;6473:73:0::1;8716:402:1::0;6473:73:0::1;6557:28;6576:8;6557:18;:28::i;44901:224::-:0;45003:4;-1:-1:-1;;;;;;45027:50:0;;-1:-1:-1;;;45027:50:0;;:90;;;45081:36;45105:11;45081:23;:36::i;34397:127::-;34462:4;34486:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34486:16:0;:30;;;34397:127::o;38379:174::-;38454:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;38454:29:0;-1:-1:-1;;;;;38454:29:0;;;;;;;;:24;;38508:23;38454:24;38508:14;:23::i;:::-;-1:-1:-1;;;;;38499:46:0;;;;;;;;;;;38379:174;;:::o;34691:348::-;34784:4;34809:16;34817:7;34809;:16::i;:::-;34801:73;;;;-1:-1:-1;;;34801:73:0;;11150:2:1;34801:73:0;;;11132:21:1;11189:2;11169:18;;;11162:30;11228:34;11208:18;;;11201:62;-1:-1:-1;;;11279:18:1;;;11272:42;11331:19;;34801:73:0;10948:408:1;34801:73:0;34885:13;34901:23;34916:7;34901:14;:23::i;:::-;34885:39;;34954:5;-1:-1:-1;;;;;34943:16:0;:7;-1:-1:-1;;;;;34943:16:0;;:51;;;;34987:7;-1:-1:-1;;;;;34963:31:0;:20;34975:7;34963:11;:20::i;:::-;-1:-1:-1;;;;;34963:31:0;;34943:51;:87;;;-1:-1:-1;;;;;;31783:25:0;;;31759:4;31783:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;34998:32;34935:96;34691:348;-1:-1:-1;;;;34691:348:0:o;37683:578::-;37842:4;-1:-1:-1;;;;;37815:31:0;:23;37830:7;37815:14;:23::i;:::-;-1:-1:-1;;;;;37815:31:0;;37807:85;;;;-1:-1:-1;;;37807:85:0;;15823:2:1;37807:85:0;;;15805:21:1;15862:2;15842:18;;;15835:30;15901:34;15881:18;;;15874:62;-1:-1:-1;;;15952:18:1;;;15945:39;16001:19;;37807:85:0;15621:405:1;37807:85:0;-1:-1:-1;;;;;37911:16:0;;37903:65;;;;-1:-1:-1;;;37903:65:0;;10391:2:1;37903:65:0;;;10373:21:1;10430:2;10410:18;;;10403:30;10469:34;10449:18;;;10442:62;-1:-1:-1;;;10520:18:1;;;10513:34;10564:19;;37903:65:0;10189:400:1;37903:65:0;37981:39;38002:4;38008:2;38012:7;37981:20;:39::i;:::-;38085:29;38102:1;38106:7;38085:8;:29::i;:::-;-1:-1:-1;;;;;38127:15:0;;;;;;:9;:15;;;;;:20;;38146:1;;38127:15;:20;;38146:1;;38127:20;:::i;:::-;;;;-1:-1:-1;;;;;;;38158:13:0;;;;;;:9;:13;;;;;:18;;38175:1;;38158:13;:18;;38175:1;;38158:18;:::i;:::-;;;;-1:-1:-1;;38187:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38187:21:0;-1:-1:-1;;;;;38187:21:0;;;;;;;;;38226:27;;38187:16;;38226:27;;;;;;;37683:578;;;:::o;9148:120::-;8160:7;;;;8684:41;;;;-1:-1:-1;;;8684:41:0;;7385:2:1;8684:41:0;;;7367:21:1;7424:2;7404:18;;;7397:30;-1:-1:-1;;;7443:18:1;;;7436:50;7503:18;;8684:41:0;7183:344:1;8684:41:0;9207:7:::1;:15:::0;;-1:-1:-1;;9207:15:0::1;::::0;;9238:22:::1;4281:10:::0;9247:12:::1;9238:22;::::0;-1:-1:-1;;;;;5823:32:1;;;5805:51;;5793:2;5778:18;9238:22:0::1;;;;;;;9148:120::o:0;54400:115::-;54487:20;54499:7;54487:11;:20::i;6753:191::-;6846:6;;;-1:-1:-1;;;;;6863:17:0;;;6846:6;6863:17;;;-1:-1:-1;;;;;;6863:17:0;;;;;;6896:40;;6846:6;;;;;;;;6896:40;;6827:16;;6896:40;6816:128;6753:191;:::o;8889:118::-;8160:7;;;;8414:9;8406:38;;;;-1:-1:-1;;;8406:38:0;;;;;;;:::i;:::-;8949:7:::1;:14:::0;;-1:-1:-1;;8949:14:0::1;8959:4;8949:14;::::0;;8979:20:::1;8986:12;4281:10:::0;;4201:98;35381:110;35457:26;35467:2;35471:7;35457:26;;;;;;;;;;;;:9;:26::i;43225:217::-;43325:16;43333:7;43325;:16::i;:::-;43317:75;;;;-1:-1:-1;;;43317:75:0;;13503:2:1;43317:75:0;;;13485:21:1;13542:2;13522:18;;;13515:30;13581:34;13561:18;;;13554:62;-1:-1:-1;;;13632:18:1;;;13625:44;13686:19;;43317:75:0;13301:410:1;43317:75:0;43403:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;38695:315::-;38850:8;-1:-1:-1;;;;;38841:17:0;:5;-1:-1:-1;;;;;38841:17:0;;;38833:55;;;;-1:-1:-1;;;38833:55:0;;10796:2:1;38833:55:0;;;10778:21:1;10835:2;10815:18;;;10808:30;10874:27;10854:18;;;10847:55;10919:18;;38833:55:0;10594:349:1;38833:55:0;-1:-1:-1;;;;;38899:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;38899:46:0;;;;;;;;;;38961:41;;6500::1;;;38961::0;;6473:18:1;38961:41:0;;;;;;;38695:315;;;:::o;33769:::-;33926:28;33936:4;33942:2;33946:7;33926:9;:28::i;:::-;33973:48;33996:4;34002:2;34006:7;34015:5;33973:22;:48::i;:::-;33965:111;;;;-1:-1:-1;;;33965:111:0;;;;;;;:::i;42390:679::-;42463:13;42497:16;42505:7;42497;:16::i;:::-;42489:78;;;;-1:-1:-1;;;42489:78:0;;14279:2:1;42489:78:0;;;14261:21:1;14318:2;14298:18;;;14291:30;14357:34;14337:18;;;14330:62;-1:-1:-1;;;14408:18:1;;;14401:47;14465:19;;42489:78:0;14077:413:1;42489:78:0;42580:23;42606:19;;;:10;:19;;;;;42580:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42636:18;42657:10;:8;:10::i;:::-;42636:31;;42749:4;42743:18;42765:1;42743:23;42739:72;;;-1:-1:-1;42790:9:0;42390:679;-1:-1:-1;;42390:679:0:o;42739:72::-;42915:23;;:27;42911:108;;42990:4;42996:9;42973:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42959:48;;;;42390:679;;;:::o;42911:108::-;43038:23;43053:7;43038:14;:23::i;28591:305::-;28693:4;-1:-1:-1;;;;;;28730:40:0;;-1:-1:-1;;;28730:40:0;;:105;;-1:-1:-1;;;;;;;28787:48:0;;-1:-1:-1;;;28787:48:0;28730:105;:158;;;-1:-1:-1;;;;;;;;;;20372:40:0;;;28852:36;20263:157;54107:215;8160:7;;;;8414:9;8406:38;;;;-1:-1:-1;;;8406:38:0;;;;;;;:::i;:::-;54269:45:::1;54296:4;54302:2;54306:7;54269:26;:45::i;43671:206::-:0;43740:20;43752:7;43740:11;:20::i;:::-;43783:19;;;;:10;:19;;;;;43777:33;;;;;:::i;:::-;:38;;-1:-1:-1;43773:97:0;;43839:19;;;;:10;:19;;;;;43832:26;;;:::i;35718:321::-;35848:18;35854:2;35858:7;35848:5;:18::i;:::-;35899:54;35930:1;35934:2;35938:7;35947:5;35899:22;:54::i;:::-;35877:154;;;;-1:-1:-1;;;35877:154:0;;;;;;;:::i;39575:799::-;39730:4;-1:-1:-1;;;;;39751:13:0;;10424:20;10472:8;39747:620;;39787:72;;-1:-1:-1;;;39787:72:0;;-1:-1:-1;;;;;39787:36:0;;;;;:72;;4281:10;;39838:4;;39844:7;;39853:5;;39787:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39787:72:0;;;;;;;;-1:-1:-1;;39787:72:0;;;;;;;;;;;;:::i;:::-;;;39783:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40029:13:0;;40025:272;;40072:60;;-1:-1:-1;;;40072:60:0;;;;;;;:::i;40025:272::-;40247:6;40241:13;40232:6;40228:2;40224:15;40217:38;39783:529;-1:-1:-1;;;;;;39910:51:0;-1:-1:-1;;;39910:51:0;;-1:-1:-1;39903:58:0;;39747:620;-1:-1:-1;40351:4:0;39575:799;;;;;;:::o;52144:99::-;52195:13;52228:7;52221:14;;;;;:::i;29880:382::-;29953:13;29987:16;29995:7;29987;:16::i;:::-;29979:76;;;;-1:-1:-1;;;29979:76:0;;16233:2:1;29979:76:0;;;16215:21:1;16272:2;16252:18;;;16245:30;16311:34;16291:18;;;16284:62;-1:-1:-1;;;16362:18:1;;;16355:45;16417:19;;29979:76:0;16031:411:1;29979:76:0;30068:21;30092:10;:8;:10::i;:::-;30113:29;;;;;;;;;;;;-1:-1:-1;;;30113:29:0;;;;30160:21;;30068:34;;-1:-1:-1;30113:29:0;30160:94;;;;;;;;;;;;;;;;;30212:7;30221:18;:7;:16;:18::i;:::-;30241:6;30195:53;;;;;;;;;;:::i;46577:589::-;-1:-1:-1;;;;;46783:18:0;;46779:187;;46818:40;46850:7;47993:10;:17;;47966:24;;;;:15;:24;;;;;:44;;;48021:24;;;;;;;;;;;;47889:164;46818:40;46779:187;;;46888:2;-1:-1:-1;;;;;46880:10:0;:4;-1:-1:-1;;;;;46880:10:0;;46876:90;;46907:47;46940:4;46946:7;46907:32;:47::i;:::-;-1:-1:-1;;;;;46980:16:0;;46976:183;;47013:45;47050:7;47013:36;:45::i;46976:183::-;47086:4;-1:-1:-1;;;;;47080:10:0;:2;-1:-1:-1;;;;;47080:10:0;;47076:83;;47107:40;47135:2;47139:7;47107:27;:40::i;36986:360::-;37046:13;37062:23;37077:7;37062:14;:23::i;:::-;37046:39;;37098:48;37119:5;37134:1;37138:7;37098:20;:48::i;:::-;37187:29;37204:1;37208:7;37187:8;:29::i;:::-;-1:-1:-1;;;;;37229:16:0;;;;;;:9;:16;;;;;:21;;37249:1;;37229:16;:21;;37249:1;;37229:21;:::i;:::-;;;;-1:-1:-1;;37268:16:0;;;;:7;:16;;;;;;37261:23;;-1:-1:-1;;;;;;37261:23:0;;;37302:36;37276:7;;37268:16;-1:-1:-1;;;;;37302:36:0;;;;;37268:16;;37302:36;37035:311;36986:360;:::o;36375:382::-;-1:-1:-1;;;;;36455:16:0;;36447:61;;;;-1:-1:-1;;;36447:61:0;;13918:2:1;36447:61:0;;;13900:21:1;;;13937:18;;;13930:30;13996:34;13976:18;;;13969:62;14048:18;;36447:61:0;13716:356:1;36447:61:0;36528:16;36536:7;36528;:16::i;:::-;36527:17;36519:58;;;;-1:-1:-1;;;36519:58:0;;9684:2:1;36519:58:0;;;9666:21:1;9723:2;9703:18;;;9696:30;9762;9742:18;;;9735:58;9810:18;;36519:58:0;9482:352:1;36519:58:0;36590:45;36619:1;36623:2;36627:7;36590:20;:45::i;:::-;-1:-1:-1;;;;;36648:13:0;;;;;;:9;:13;;;;;:18;;36665:1;;36648:13;:18;;36665:1;;36648:18;:::i;:::-;;;;-1:-1:-1;;36677:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36677:21:0;-1:-1:-1;;;;;36677:21:0;;;;;;;;36716:33;;36677:16;;;36716:33;;36677:16;;36716:33;36375:382;;:::o;1757:723::-;1813:13;2034:10;2030:53;;-1:-1:-1;;2061:10:0;;;;;;;;;;;;-1:-1:-1;;;2061:10:0;;;;;1757:723::o;2030:53::-;2108:5;2093:12;2149:78;2156:9;;2149:78;;2182:8;;;;:::i;:::-;;-1:-1:-1;2205:10:0;;-1:-1:-1;2213:2:0;2205:10;;:::i;:::-;;;2149:78;;;2237:19;2269:6;2259:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2259:17:0;;2237:39;;2287:154;2294:10;;2287:154;;2321:11;2331:1;2321:11;;:::i;:::-;;-1:-1:-1;2390:10:0;2398:2;2390:5;:10;:::i;:::-;2377:24;;:2;:24;:::i;:::-;2364:39;;2347:6;2354;2347:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2347:56:0;;;;;;;;-1:-1:-1;2418:11:0;2427:2;2418:11;;:::i;:::-;;;2287:154;;48680:988;48946:22;48996:1;48971:22;48988:4;48971:16;:22::i;:::-;:26;;;;:::i;:::-;49008:18;49029:26;;;:17;:26;;;;;;48946:51;;-1:-1:-1;49162:28:0;;;49158:328;;-1:-1:-1;;;;;49229:18:0;;49207:19;49229:18;;;:12;:18;;;;;;;;:34;;;;;;;;;49280:30;;;;;;:44;;;49397:30;;:17;:30;;;;;:43;;;49158:328;-1:-1:-1;49582:26:0;;;;:17;:26;;;;;;;;49575:33;;;-1:-1:-1;;;;;49626:18:0;;;;;:12;:18;;;;;:34;;;;;;;49619:41;48680:988::o;49963:1079::-;50241:10;:17;50216:22;;50241:21;;50261:1;;50241:21;:::i;:::-;50273:18;50294:24;;;:15;:24;;;;;;50667:10;:26;;50216:46;;-1:-1:-1;50294:24:0;;50216:46;;50667:26;;;;;;:::i;:::-;;;;;;;;;50645:48;;50731:11;50706:10;50717;50706:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;50811:28;;;:15;:28;;;;;;;:41;;;50983:24;;;;;50976:31;51018:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;50034:1008;;;49963:1079;:::o;47467:221::-;47552:14;47569:20;47586:2;47569:16;:20::i;:::-;-1:-1:-1;;;;;47600:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;47645:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;47467:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;:::-;969:39;828:186;-1:-1:-1;;;828:186:1:o;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:470::-;4484:3;4522:6;4516:13;4538:53;4584:6;4579:3;4572:4;4564:6;4560:17;4538:53;:::i;:::-;4654:13;;4613:16;;;;4676:57;4654:13;4613:16;4710:4;4698:17;;4676:57;:::i;:::-;4749:20;;4305:470;-1:-1:-1;;;;4305:470:1:o;4780:664::-;5007:3;5045:6;5039:13;5061:53;5107:6;5102:3;5095:4;5087:6;5083:17;5061:53;:::i;:::-;5177:13;;5136:16;;;;5199:57;5177:13;5136:16;5233:4;5221:17;;5199:57;:::i;:::-;5323:13;;5278:20;;;5345:57;5323:13;5278:20;5379:4;5367:17;;5345:57;:::i;:::-;5418:20;;4780:664;-1:-1:-1;;;;;4780:664:1:o;5867:488::-;-1:-1:-1;;;;;6136:15:1;;;6118:34;;6188:15;;6183:2;6168:18;;6161:43;6235:2;6220:18;;6213:34;;;6283:3;6278:2;6263:18;;6256:31;;;6061:4;;6304:45;;6329:19;;6321:6;6304:45;:::i;:::-;6296:53;5867:488;-1:-1:-1;;;;;;5867:488:1:o;6552:219::-;6701:2;6690:9;6683:21;6664:4;6721:44;6761:2;6750:9;6746:18;6738:6;6721:44;:::i;8297:414::-;8499:2;8481:21;;;8538:2;8518:18;;;8511:30;8577:34;8572:2;8557:18;;8550:62;-1:-1:-1;;;8643:2:1;8628:18;;8621:48;8701:3;8686:19;;8297:414::o;11710:340::-;11912:2;11894:21;;;11951:2;11931:18;;;11924:30;-1:-1:-1;;;11985:2:1;11970:18;;11963:46;12041:2;12026:18;;11710:340::o;15260:356::-;15462:2;15444:21;;;15481:18;;;15474:30;15540:34;15535:2;15520:18;;15513:62;15607:2;15592:18;;15260:356::o;16849:413::-;17051:2;17033:21;;;17090:2;17070:18;;;17063:30;17129:34;17124:2;17109:18;;17102:62;-1:-1:-1;;;17195:2:1;17180:18;;17173:47;17252:3;17237:19;;16849:413::o;19046:128::-;19086:3;19117:1;19113:6;19110:1;19107:13;19104:39;;;19123:18;;:::i;:::-;-1:-1:-1;19159:9:1;;19046:128::o;19179:120::-;19219:1;19245;19235:35;;19250:18;;:::i;:::-;-1:-1:-1;19284:9:1;;19179:120::o;19304:168::-;19344:7;19410:1;19406;19402:6;19398:14;19395:1;19392:21;19387:1;19380:9;19373:17;19369:45;19366:71;;;19417:18;;:::i;:::-;-1:-1:-1;19457:9:1;;19304:168::o;19477:125::-;19517:4;19545:1;19542;19539:8;19536:34;;;19550:18;;:::i;:::-;-1:-1:-1;19587:9:1;;19477:125::o;19607:258::-;19679:1;19689:113;19703:6;19700:1;19697:13;19689:113;;;19779:11;;;19773:18;19760:11;;;19753:39;19725:2;19718:10;19689:113;;;19820:6;19817:1;19814:13;19811:48;;;-1:-1:-1;;19855:1:1;19837:16;;19830:27;19607:258::o;19870:380::-;19949:1;19945:12;;;;19992;;;20013:61;;20067:4;20059:6;20055:17;20045:27;;20013:61;20120:2;20112:6;20109:14;20089:18;20086:38;20083:161;;;20166:10;20161:3;20157:20;20154:1;20147:31;20201:4;20198:1;20191:15;20229:4;20226:1;20219:15;20083:161;;19870:380;;;:::o;20255:135::-;20294:3;-1:-1:-1;;20315:17:1;;20312:43;;;20335:18;;:::i;:::-;-1:-1:-1;20382:1:1;20371:13;;20255:135::o;20395:112::-;20427:1;20453;20443:35;;20458:18;;:::i;:::-;-1:-1:-1;20492:9:1;;20395:112::o;20512:127::-;20573:10;20568:3;20564:20;20561:1;20554:31;20604:4;20601:1;20594:15;20628:4;20625:1;20618:15;20644:127;20705:10;20700:3;20696:20;20693:1;20686:31;20736:4;20733:1;20726:15;20760:4;20757:1;20750:15;20776:127;20837:10;20832:3;20828:20;20825:1;20818:31;20868:4;20865:1;20858:15;20892:4;20889:1;20882:15;20908:127;20969:10;20964:3;20960:20;20957:1;20950:31;21000:4;20997:1;20990:15;21024:4;21021:1;21014:15;21040:127;21101:10;21096:3;21092:20;21089:1;21082:31;21132:4;21129:1;21122:15;21156:4;21153:1;21146:15;21172:131;-1:-1:-1;;;;;;21246:32:1;;21236:43;;21226:71;;21293:1;21290;21283:12

Swarm Source

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