ETH Price: $3,781.67 (+5.61%)

Token

: Adzuki (ADZUKI)

Overview

Max Total Supply

10,000 ADZUKI

Holders

2,922

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 ADZUKI
0x24d9Ad4603a20512D6Ac47a1404aDb130180062d
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
Adzuki

Compiler Version
v0.8.8+commit.dddeac2f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at optimistic.etherscan.io on 2022-08-16
*/

// SPDX-License-Identifier: MIT

/*
Adzuki is entirely copy-pasting images from Azuki:

Azuki: https://www.azuki.com
Adzuki: https://adzuki.art
*/


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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/interfaces/IERC2981.sol


// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

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


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/common/ERC2981.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

// File: contracts/ERC721A.sol



pragma solidity ^0.8.0;










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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

    currentIndex = updatedIndex;
    _afterTokenTransfers(address(0), to, startTokenId, quantity);
  }

  /**
   * @dev Transfers `tokenId` from `from` to `to`.
   *
   * Requirements:
   *
   * - `to` cannot be the zero address.
   * - `tokenId` token must be owned by `from`.
   *
   * Emits a {Transfer} event.
   */
  function _transfer(
    address from,
    address to,
    uint256 tokenId
  ) private {
    TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
   * transferred to `to`.
   * - When `from` is zero, `tokenId` will be minted for `to`.
   */
  function _beforeTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}

  /**
   * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
   * minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - when `from` and `to` are both non-zero.
   * - `from` and `to` are never both zero.
   */
  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}
}
// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// File: contracts/Adzuki.sol



/*
Adzuki is entirely copy-pasting images from Azuki:

Azuki: https://www.azuki.com
Adzuki: https://adzuki.art
*/

pragma solidity ^0.8.0;






contract Adzuki is Ownable, ERC721A, ReentrancyGuard {
  uint256 public constant MAX_MINT_AMOUNT_PER_TX = 100;
  uint256 public constant MAX_SUPPLY = 10000;
  uint256 public constant PRICE = 0.05 ether;
  
  constructor() ERC721A("Adzuki", "ADZUKI", MAX_MINT_AMOUNT_PER_TX, MAX_SUPPLY) {}

  function _baseURI() internal pure override returns (string memory) {
      return "ipfs://QmV4kdAUCVUMjWCZhnfUVhTSyqNDAQKdYN1tnt3AAT5kUy/";
  }

  function mint(uint256 amount) public payable {
      require(amount > 0 && amount <= MAX_MINT_AMOUNT_PER_TX, "Invalid mint amount!");
      require(totalSupply() + amount <= MAX_SUPPLY, "Max supply exceeded!");

      uint256 tokenId = totalSupply();
      for (uint256 i = 0; i < amount; i++) {
        tokenId++;
      }

      _safeMint(msg.sender, amount);
  }

  function withdraw() public onlyOwner nonReentrant {
    uint256 balance = address(this).balance;
    Address.sendValue(payable(owner()), balance);
  }

  function getOwnershipData(uint256 tokenId)
    external
    view
    returns (TokenOwnership memory)
  {
    return ownershipOf(tokenId);
  }

  function royaltyInfo(uint256 , uint256 salePrice)
      public
      view
      virtual
      override
      returns (address, uint256)
    {
      // 5% to azuki owner
      uint256 royaltyAmount = (salePrice * 5) / 100;

      return (owner(), royaltyAmount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINT_AMOUNT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c060405260006003556000600a553480156200001b57600080fd5b506040518060400160405280600681526020016541647a756b6960d01b8152506040518060400160405280600681526020016541445a554b4960d01b815250606461271062000079620000736200018a60201b60201c565b6200018e565b60008111620000e65760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001485760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401620000dd565b83516200015d906004906020870190620001de565b50825162000173906005906020860190620001de565b5060a09190915260805250506001600b55620002c1565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001ec9062000284565b90600052602060002090601f0160209004810192826200021057600085556200025b565b82601f106200022b57805160ff19168380011785556200025b565b828001600101855582156200025b579182015b828111156200025b5782518255916020019190600101906200023e565b50620002699291506200026d565b5090565b5b808211156200026957600081556001016200026e565b600181811c908216806200029957607f821691505b60208210811415620002bb57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05161210a620002f2600039600081816114e30152818161150d015261195e01526000505061210a6000f3fe60806040526004361061019c5760003560e01c80636352211e116100ec578063a0712d681161008a578063c87b56dd11610064578063c87b56dd146104b8578063d7224ba0146104d8578063e985e9c5146104ee578063f2fde38b1461053757600080fd5b8063a0712d6814610465578063a22cb46514610478578063b88d4fde1461049857600080fd5b80638d859f3e116100c65780638d859f3e146103c95780638da5cb5b146103e45780639231ab2a1461040257806395d89b411461045057600080fd5b80636352211e1461037457806370a0823114610394578063715018a6146103b457600080fd5b806323b872dd1161015957806332cb6b0c1161013357806332cb6b0c146103095780633ccfd60b1461031f57806342842e0e146103345780634f6ccce71461035457600080fd5b806323b872dd1461028a5780632a55205a146102aa5780632f745c59146102e957600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806309ef65271461025257806318160ddd14610275575b600080fd5b3480156101ad57600080fd5b506101c16101bc366004611b92565b610557565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb6105b8565b6040516101cd9190611c07565b34801561020457600080fd5b50610218610213366004611c1a565b61064a565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b366004611c4f565b6106da565b005b34801561025e57600080fd5b50610267606481565b6040519081526020016101cd565b34801561028157600080fd5b50600354610267565b34801561029657600080fd5b506102506102a5366004611c79565b6107f2565b3480156102b657600080fd5b506102ca6102c5366004611cb5565b6107fd565b604080516001600160a01b0390931683526020830191909152016101cd565b3480156102f557600080fd5b50610267610304366004611c4f565b610836565b34801561031557600080fd5b5061026761271081565b34801561032b57600080fd5b506102506109af565b34801561034057600080fd5b5061025061034f366004611c79565b610a33565b34801561036057600080fd5b5061026761036f366004611c1a565b610a4e565b34801561038057600080fd5b5061021861038f366004611c1a565b610ab7565b3480156103a057600080fd5b506102676103af366004611cd7565b610ac9565b3480156103c057600080fd5b50610250610b5a565b3480156103d557600080fd5b5061026766b1a2bc2ec5000081565b3480156103f057600080fd5b506000546001600160a01b0316610218565b34801561040e57600080fd5b5061042261041d366004611c1a565b610b6e565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff1692810192909252016101cd565b34801561045c57600080fd5b506101eb610b8b565b610250610473366004611c1a565b610b9a565b34801561048457600080fd5b50610250610493366004611cf2565b610c91565b3480156104a457600080fd5b506102506104b3366004611d44565b610d56565b3480156104c457600080fd5b506101eb6104d3366004611c1a565b610d8f565b3480156104e457600080fd5b50610267600a5481565b3480156104fa57600080fd5b506101c1610509366004611e20565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b34801561054357600080fd5b50610250610552366004611cd7565b610e5c565b60006001600160e01b031982166380ac58cd60e01b148061058857506001600160e01b03198216635b5e139f60e01b145b806105a357506001600160e01b0319821663780e9d6360e01b145b806105b257506105b282610ed5565b92915050565b6060600480546105c790611e53565b80601f01602080910402602001604051908101604052809291908181526020018280546105f390611e53565b80156106405780601f1061061557610100808354040283529160200191610640565b820191906000526020600020905b81548152906001019060200180831161062357829003601f168201915b5050505050905090565b6000610657826003541190565b6106be5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600860205260409020546001600160a01b031690565b60006106e582610ab7565b9050806001600160a01b0316836001600160a01b031614156107545760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016106b5565b336001600160a01b038216148061077057506107708133610509565b6107e25760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016106b5565b6107ed838383610f0a565b505050565b6107ed838383610f66565b60008080606461080e856005611ea4565b6108189190611ed9565b905061082c6000546001600160a01b031690565b9590945092505050565b600061084183610ac9565b821061089a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106b5565b60006108a560035490565b905060008060005b8381101561094f576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561090057805192505b876001600160a01b0316836001600160a01b0316141561093c578684141561092e575093506105b292505050565b8361093881611eed565b9450505b508061094781611eed565b9150506108ad565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016106b5565b6109b76112ee565b6002600b541415610a0a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106b5565b6002600b5547610a2b610a256000546001600160a01b031690565b82611348565b506001600b55565b6107ed83838360405180602001604052806000815250610d56565b6000610a5960035490565b8210610ab35760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016106b5565b5090565b6000610ac282611461565b5192915050565b60006001600160a01b038216610b355760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016106b5565b506001600160a01b03166000908152600760205260409020546001600160801b031690565b610b626112ee565b610b6c600061160b565b565b60408051808201909152600080825260208201526105b282611461565b6060600580546105c790611e53565b600081118015610bab575060648111155b610bee5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016106b5565b61271081610bfb60035490565b610c059190611f08565b1115610c4a5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016106b5565b6000610c5560035490565b905060005b82811015610c825781610c6c81611eed565b9250508080610c7a90611eed565b915050610c5a565b50610c8d338361165b565b5050565b6001600160a01b038216331415610cea5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016106b5565b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d61848484610f66565b610d6d84848484611675565b610d895760405162461bcd60e51b81526004016106b590611f20565b50505050565b6060610d9c826003541190565b610e005760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106b5565b6000610e0a611783565b90506000815111610e2a5760405180602001604052806000815250610e55565b80610e34846117a3565b604051602001610e45929190611f73565b6040516020818303038152906040525b9392505050565b610e646112ee565b6001600160a01b038116610ec95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106b5565b610ed28161160b565b50565b60006001600160e01b0319821663152a902d60e11b14806105b257506301ffc9a760e01b6001600160e01b03198316146105b2565b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610f7182611461565b80519091506000906001600160a01b0316336001600160a01b03161480610fa8575033610f9d8461064a565b6001600160a01b0316145b80610fba57508151610fba9033610509565b9050806110245760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106b5565b846001600160a01b031682600001516001600160a01b0316146110985760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016106b5565b6001600160a01b0384166110fc5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106b5565b61110c6000848460000151610f0a565b6001600160a01b038516600090815260076020526040812080546001929061113e9084906001600160801b0316611fa2565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600760205260408120805460019450909261118a91859116611fca565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526006909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611212846001611f08565b6000818152600660205260409020549091506001600160a01b03166112a45761123c816003541190565b156112a45760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600690935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6000546001600160a01b03163314610b6c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b5565b804710156113985760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016106b5565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146113e5576040519150601f19603f3d011682016040523d82523d6000602084013e6113ea565b606091505b50509050806107ed5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016106b5565b6040805180820190915260008082526020820152611480826003541190565b6114df5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016106b5565b60007f00000000000000000000000000000000000000000000000000000000000000008310611540576115327f000000000000000000000000000000000000000000000000000000000000000084611fec565b61153d906001611f08565b90505b825b8181106115aa576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561159757949350505050565b50806115a281612003565b915050611542565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016106b5565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610c8d8282604051806020016040528060008152506118a1565b60006001600160a01b0384163b1561177757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906116b990339089908890889060040161201a565b602060405180830381600087803b1580156116d357600080fd5b505af1925050508015611703575060408051601f3d908101601f1916820190925261170091810190612057565b60015b61175d573d808015611731576040519150601f19603f3d011682016040523d82523d6000602084013e611736565b606091505b5080516117555760405162461bcd60e51b81526004016106b590611f20565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061177b565b5060015b949350505050565b606060405180606001604052806036815260200161209f60369139905090565b6060816117c75750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117f157806117db81611eed565b91506117ea9050600a83611ed9565b91506117cb565b60008167ffffffffffffffff81111561180c5761180c611d2e565b6040519080825280601f01601f191660200182016040528015611836576020820181803683370190505b5090505b841561177b5761184b600183611fec565b9150611858600a86612074565b611863906030611f08565b60f81b81838151811061187857611878612088565b60200101906001600160f81b031916908160001a90535061189a600a86611ed9565b945061183a565b6003546001600160a01b0384166119045760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106b5565b61190f816003541190565b1561195c5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016106b5565b7f00000000000000000000000000000000000000000000000000000000000000008311156119d75760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016106b5565b6001600160a01b0384166000908152600760209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611a33908790611fca565b6001600160801b03168152602001858360200151611a519190611fca565b6001600160801b039081169091526001600160a01b0380881660008181526007602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526006909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611b715760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611b356000888488611675565b611b515760405162461bcd60e51b81526004016106b590611f20565b81611b5b81611eed565b9250508080611b6990611eed565b915050611ae8565b5060038190556112e6565b6001600160e01b031981168114610ed257600080fd5b600060208284031215611ba457600080fd5b8135610e5581611b7c565b60005b83811015611bca578181015183820152602001611bb2565b83811115610d895750506000910152565b60008151808452611bf3816020860160208601611baf565b601f01601f19169290920160200192915050565b602081526000610e556020830184611bdb565b600060208284031215611c2c57600080fd5b5035919050565b80356001600160a01b0381168114611c4a57600080fd5b919050565b60008060408385031215611c6257600080fd5b611c6b83611c33565b946020939093013593505050565b600080600060608486031215611c8e57600080fd5b611c9784611c33565b9250611ca560208501611c33565b9150604084013590509250925092565b60008060408385031215611cc857600080fd5b50508035926020909101359150565b600060208284031215611ce957600080fd5b610e5582611c33565b60008060408385031215611d0557600080fd5b611d0e83611c33565b915060208301358015158114611d2357600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611d5a57600080fd5b611d6385611c33565b9350611d7160208601611c33565b925060408501359150606085013567ffffffffffffffff80821115611d9557600080fd5b818701915087601f830112611da957600080fd5b813581811115611dbb57611dbb611d2e565b604051601f8201601f19908116603f01168101908382118183101715611de357611de3611d2e565b816040528281528a6020848701011115611dfc57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611e3357600080fd5b611e3c83611c33565b9150611e4a60208401611c33565b90509250929050565b600181811c90821680611e6757607f821691505b60208210811415611e8857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611ebe57611ebe611e8e565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611ee857611ee8611ec3565b500490565b6000600019821415611f0157611f01611e8e565b5060010190565b60008219821115611f1b57611f1b611e8e565b500190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351611f85818460208801611baf565b835190830190611f99818360208801611baf565b01949350505050565b60006001600160801b0383811690831681811015611fc257611fc2611e8e565b039392505050565b60006001600160801b03808316818516808303821115611f9957611f99611e8e565b600082821015611ffe57611ffe611e8e565b500390565b60008161201257612012611e8e565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061204d90830184611bdb565b9695505050505050565b60006020828403121561206957600080fd5b8151610e5581611b7c565b60008261208357612083611ec3565b500690565b634e487b7160e01b600052603260045260246000fdfe697066733a2f2f516d56346b6441554356554d6a57435a686e66555668545379714e4441514b64594e31746e7433414154356b55792fa2646970667358221220b4eeaa8083c57973917e52da5fe8b1b04f54d3da65043eadde58f462d40f409164736f6c63430008080033

Deployed Bytecode

0x60806040526004361061019c5760003560e01c80636352211e116100ec578063a0712d681161008a578063c87b56dd11610064578063c87b56dd146104b8578063d7224ba0146104d8578063e985e9c5146104ee578063f2fde38b1461053757600080fd5b8063a0712d6814610465578063a22cb46514610478578063b88d4fde1461049857600080fd5b80638d859f3e116100c65780638d859f3e146103c95780638da5cb5b146103e45780639231ab2a1461040257806395d89b411461045057600080fd5b80636352211e1461037457806370a0823114610394578063715018a6146103b457600080fd5b806323b872dd1161015957806332cb6b0c1161013357806332cb6b0c146103095780633ccfd60b1461031f57806342842e0e146103345780634f6ccce71461035457600080fd5b806323b872dd1461028a5780632a55205a146102aa5780632f745c59146102e957600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806309ef65271461025257806318160ddd14610275575b600080fd5b3480156101ad57600080fd5b506101c16101bc366004611b92565b610557565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb6105b8565b6040516101cd9190611c07565b34801561020457600080fd5b50610218610213366004611c1a565b61064a565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b366004611c4f565b6106da565b005b34801561025e57600080fd5b50610267606481565b6040519081526020016101cd565b34801561028157600080fd5b50600354610267565b34801561029657600080fd5b506102506102a5366004611c79565b6107f2565b3480156102b657600080fd5b506102ca6102c5366004611cb5565b6107fd565b604080516001600160a01b0390931683526020830191909152016101cd565b3480156102f557600080fd5b50610267610304366004611c4f565b610836565b34801561031557600080fd5b5061026761271081565b34801561032b57600080fd5b506102506109af565b34801561034057600080fd5b5061025061034f366004611c79565b610a33565b34801561036057600080fd5b5061026761036f366004611c1a565b610a4e565b34801561038057600080fd5b5061021861038f366004611c1a565b610ab7565b3480156103a057600080fd5b506102676103af366004611cd7565b610ac9565b3480156103c057600080fd5b50610250610b5a565b3480156103d557600080fd5b5061026766b1a2bc2ec5000081565b3480156103f057600080fd5b506000546001600160a01b0316610218565b34801561040e57600080fd5b5061042261041d366004611c1a565b610b6e565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff1692810192909252016101cd565b34801561045c57600080fd5b506101eb610b8b565b610250610473366004611c1a565b610b9a565b34801561048457600080fd5b50610250610493366004611cf2565b610c91565b3480156104a457600080fd5b506102506104b3366004611d44565b610d56565b3480156104c457600080fd5b506101eb6104d3366004611c1a565b610d8f565b3480156104e457600080fd5b50610267600a5481565b3480156104fa57600080fd5b506101c1610509366004611e20565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b34801561054357600080fd5b50610250610552366004611cd7565b610e5c565b60006001600160e01b031982166380ac58cd60e01b148061058857506001600160e01b03198216635b5e139f60e01b145b806105a357506001600160e01b0319821663780e9d6360e01b145b806105b257506105b282610ed5565b92915050565b6060600480546105c790611e53565b80601f01602080910402602001604051908101604052809291908181526020018280546105f390611e53565b80156106405780601f1061061557610100808354040283529160200191610640565b820191906000526020600020905b81548152906001019060200180831161062357829003601f168201915b5050505050905090565b6000610657826003541190565b6106be5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600860205260409020546001600160a01b031690565b60006106e582610ab7565b9050806001600160a01b0316836001600160a01b031614156107545760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016106b5565b336001600160a01b038216148061077057506107708133610509565b6107e25760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016106b5565b6107ed838383610f0a565b505050565b6107ed838383610f66565b60008080606461080e856005611ea4565b6108189190611ed9565b905061082c6000546001600160a01b031690565b9590945092505050565b600061084183610ac9565b821061089a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106b5565b60006108a560035490565b905060008060005b8381101561094f576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561090057805192505b876001600160a01b0316836001600160a01b0316141561093c578684141561092e575093506105b292505050565b8361093881611eed565b9450505b508061094781611eed565b9150506108ad565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016106b5565b6109b76112ee565b6002600b541415610a0a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106b5565b6002600b5547610a2b610a256000546001600160a01b031690565b82611348565b506001600b55565b6107ed83838360405180602001604052806000815250610d56565b6000610a5960035490565b8210610ab35760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016106b5565b5090565b6000610ac282611461565b5192915050565b60006001600160a01b038216610b355760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016106b5565b506001600160a01b03166000908152600760205260409020546001600160801b031690565b610b626112ee565b610b6c600061160b565b565b60408051808201909152600080825260208201526105b282611461565b6060600580546105c790611e53565b600081118015610bab575060648111155b610bee5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016106b5565b61271081610bfb60035490565b610c059190611f08565b1115610c4a5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016106b5565b6000610c5560035490565b905060005b82811015610c825781610c6c81611eed565b9250508080610c7a90611eed565b915050610c5a565b50610c8d338361165b565b5050565b6001600160a01b038216331415610cea5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016106b5565b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d61848484610f66565b610d6d84848484611675565b610d895760405162461bcd60e51b81526004016106b590611f20565b50505050565b6060610d9c826003541190565b610e005760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106b5565b6000610e0a611783565b90506000815111610e2a5760405180602001604052806000815250610e55565b80610e34846117a3565b604051602001610e45929190611f73565b6040516020818303038152906040525b9392505050565b610e646112ee565b6001600160a01b038116610ec95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106b5565b610ed28161160b565b50565b60006001600160e01b0319821663152a902d60e11b14806105b257506301ffc9a760e01b6001600160e01b03198316146105b2565b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610f7182611461565b80519091506000906001600160a01b0316336001600160a01b03161480610fa8575033610f9d8461064a565b6001600160a01b0316145b80610fba57508151610fba9033610509565b9050806110245760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106b5565b846001600160a01b031682600001516001600160a01b0316146110985760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016106b5565b6001600160a01b0384166110fc5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106b5565b61110c6000848460000151610f0a565b6001600160a01b038516600090815260076020526040812080546001929061113e9084906001600160801b0316611fa2565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600760205260408120805460019450909261118a91859116611fca565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526006909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611212846001611f08565b6000818152600660205260409020549091506001600160a01b03166112a45761123c816003541190565b156112a45760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600690935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6000546001600160a01b03163314610b6c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b5565b804710156113985760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016106b5565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146113e5576040519150601f19603f3d011682016040523d82523d6000602084013e6113ea565b606091505b50509050806107ed5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016106b5565b6040805180820190915260008082526020820152611480826003541190565b6114df5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016106b5565b60007f00000000000000000000000000000000000000000000000000000000000000648310611540576115327f000000000000000000000000000000000000000000000000000000000000006484611fec565b61153d906001611f08565b90505b825b8181106115aa576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561159757949350505050565b50806115a281612003565b915050611542565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016106b5565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610c8d8282604051806020016040528060008152506118a1565b60006001600160a01b0384163b1561177757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906116b990339089908890889060040161201a565b602060405180830381600087803b1580156116d357600080fd5b505af1925050508015611703575060408051601f3d908101601f1916820190925261170091810190612057565b60015b61175d573d808015611731576040519150601f19603f3d011682016040523d82523d6000602084013e611736565b606091505b5080516117555760405162461bcd60e51b81526004016106b590611f20565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061177b565b5060015b949350505050565b606060405180606001604052806036815260200161209f60369139905090565b6060816117c75750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117f157806117db81611eed565b91506117ea9050600a83611ed9565b91506117cb565b60008167ffffffffffffffff81111561180c5761180c611d2e565b6040519080825280601f01601f191660200182016040528015611836576020820181803683370190505b5090505b841561177b5761184b600183611fec565b9150611858600a86612074565b611863906030611f08565b60f81b81838151811061187857611878612088565b60200101906001600160f81b031916908160001a90535061189a600a86611ed9565b945061183a565b6003546001600160a01b0384166119045760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106b5565b61190f816003541190565b1561195c5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016106b5565b7f00000000000000000000000000000000000000000000000000000000000000648311156119d75760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016106b5565b6001600160a01b0384166000908152600760209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611a33908790611fca565b6001600160801b03168152602001858360200151611a519190611fca565b6001600160801b039081169091526001600160a01b0380881660008181526007602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526006909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611b715760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611b356000888488611675565b611b515760405162461bcd60e51b81526004016106b590611f20565b81611b5b81611eed565b9250508080611b6990611eed565b915050611ae8565b5060038190556112e6565b6001600160e01b031981168114610ed257600080fd5b600060208284031215611ba457600080fd5b8135610e5581611b7c565b60005b83811015611bca578181015183820152602001611bb2565b83811115610d895750506000910152565b60008151808452611bf3816020860160208601611baf565b601f01601f19169290920160200192915050565b602081526000610e556020830184611bdb565b600060208284031215611c2c57600080fd5b5035919050565b80356001600160a01b0381168114611c4a57600080fd5b919050565b60008060408385031215611c6257600080fd5b611c6b83611c33565b946020939093013593505050565b600080600060608486031215611c8e57600080fd5b611c9784611c33565b9250611ca560208501611c33565b9150604084013590509250925092565b60008060408385031215611cc857600080fd5b50508035926020909101359150565b600060208284031215611ce957600080fd5b610e5582611c33565b60008060408385031215611d0557600080fd5b611d0e83611c33565b915060208301358015158114611d2357600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611d5a57600080fd5b611d6385611c33565b9350611d7160208601611c33565b925060408501359150606085013567ffffffffffffffff80821115611d9557600080fd5b818701915087601f830112611da957600080fd5b813581811115611dbb57611dbb611d2e565b604051601f8201601f19908116603f01168101908382118183101715611de357611de3611d2e565b816040528281528a6020848701011115611dfc57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611e3357600080fd5b611e3c83611c33565b9150611e4a60208401611c33565b90509250929050565b600181811c90821680611e6757607f821691505b60208210811415611e8857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611ebe57611ebe611e8e565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611ee857611ee8611ec3565b500490565b6000600019821415611f0157611f01611e8e565b5060010190565b60008219821115611f1b57611f1b611e8e565b500190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351611f85818460208801611baf565b835190830190611f99818360208801611baf565b01949350505050565b60006001600160801b0383811690831681811015611fc257611fc2611e8e565b039392505050565b60006001600160801b03808316818516808303821115611f9957611f99611e8e565b600082821015611ffe57611ffe611e8e565b500390565b60008161201257612012611e8e565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061204d90830184611bdb565b9695505050505050565b60006020828403121561206957600080fd5b8151610e5581611b7c565b60008261208357612083611ec3565b500690565b634e487b7160e01b600052603260045260246000fdfe697066733a2f2f516d56346b6441554356554d6a57435a686e66555668545379714e4441514b64594e31746e7433414154356b55792fa2646970667358221220b4eeaa8083c57973917e52da5fe8b1b04f54d3da65043eadde58f462d40f409164736f6c63430008080033

Deployed Bytecode Sourcemap

48655:1423:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33448:379;;;;;;;;;;-1:-1:-1;33448:379:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;33448:379:0;;;;;;;;35183:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;36708:204::-;;;;;;;;;;-1:-1:-1;36708:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;36708:204:0;1528:203:1;36271:379:0;;;;;;;;;;-1:-1:-1;36271:379:0;;;;;:::i;:::-;;:::i;:::-;;48713:52;;;;;;;;;;;;48762:3;48713:52;;;;;2319:25:1;;;2307:2;2292:18;48713:52:0;2173:177:1;32009:94:0;;;;;;;;;;-1:-1:-1;32085:12:0;;32009:94;;37558:142;;;;;;;;;;-1:-1:-1;37558:142:0;;;;;:::i;:::-;;:::i;49797:278::-;;;;;;;;;;-1:-1:-1;49797:278:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3133:32:1;;;3115:51;;3197:2;3182:18;;3175:34;;;;3088:18;49797:278:0;2941:274:1;32640:744:0;;;;;;;;;;-1:-1:-1;32640:744:0;;;;;:::i;:::-;;:::i;48770:42::-;;;;;;;;;;;;48807:5;48770:42;;49485:153;;;;;;;;;;;;;:::i;37763:157::-;;;;;;;;;;-1:-1:-1;37763:157:0;;;;;:::i;:::-;;:::i;32172:177::-;;;;;;;;;;-1:-1:-1;32172:177:0;;;;;:::i;:::-;;:::i;35006:118::-;;;;;;;;;;-1:-1:-1;35006:118:0;;;;;:::i;:::-;;:::i;33883:211::-;;;;;;;;;;-1:-1:-1;33883:211:0;;;;;:::i;:::-;;:::i;47642:103::-;;;;;;;;;;;;;:::i;48817:42::-;;;;;;;;;;;;48849:10;48817:42;;46994:87;;;;;;;;;;-1:-1:-1;47040:7:0;47067:6;-1:-1:-1;;;;;47067:6:0;46994:87;;49644:147;;;;;;;;;;-1:-1:-1;49644:147:0;;;;;:::i;:::-;;:::i;:::-;;;;3643:13:1;;-1:-1:-1;;;;;3639:39:1;3621:58;;3739:4;3727:17;;;3721:24;3747:18;3717:49;3695:20;;;3688:79;;;;3594:18;49644:147:0;3411:362:1;35338:98:0;;;;;;;;;;;;;:::i;49105:374::-;;;;;;:::i;:::-;;:::i;36976:274::-;;;;;;;;;;-1:-1:-1;36976:274:0;;;;;:::i;:::-;;:::i;37983:311::-;;;;;;;;;;-1:-1:-1;37983:311:0;;;;;:::i;:::-;;:::i;35499:394::-;;;;;;;;;;-1:-1:-1;35499:394:0;;;;;:::i;:::-;;:::i;42398:43::-;;;;;;;;;;;;;;;;37313:186;;;;;;;;;;-1:-1:-1;37313:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;37458:25:0;;;37435:4;37458:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;37313:186;47900:201;;;;;;;;;;-1:-1:-1;47900:201:0;;;;;:::i;:::-;;:::i;33448:379::-;33584:4;-1:-1:-1;;;;;;33614:40:0;;-1:-1:-1;;;33614:40:0;;:99;;-1:-1:-1;;;;;;;33665:48:0;;-1:-1:-1;;;33665:48:0;33614:99;:160;;;-1:-1:-1;;;;;;;33724:50:0;;-1:-1:-1;;;33724:50:0;33614:160;:207;;;;33785:36;33809:11;33785:23;:36::i;:::-;33600:221;33448:379;-1:-1:-1;;33448:379:0:o;35183:94::-;35237:13;35266:5;35259:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35183:94;:::o;36708:204::-;36776:7;36800:16;36808:7;38620:12;;-1:-1:-1;38610:22:0;38533:105;36800:16;36792:74;;;;-1:-1:-1;;;36792:74:0;;6257:2:1;36792:74:0;;;6239:21:1;6296:2;6276:18;;;6269:30;6335:34;6315:18;;;6308:62;-1:-1:-1;;;6386:18:1;;;6379:43;6439:19;;36792:74:0;;;;;;;;;-1:-1:-1;36882:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;36882:24:0;;36708:204::o;36271:379::-;36340:13;36356:24;36372:7;36356:15;:24::i;:::-;36340:40;;36401:5;-1:-1:-1;;;;;36395:11:0;:2;-1:-1:-1;;;;;36395:11:0;;;36387:58;;;;-1:-1:-1;;;36387:58:0;;6671:2:1;36387:58:0;;;6653:21:1;6710:2;6690:18;;;6683:30;6749:34;6729:18;;;6722:62;-1:-1:-1;;;6800:18:1;;;6793:32;6842:19;;36387:58:0;6469:398:1;36387:58:0;29545:10;-1:-1:-1;;;;;36470:21:0;;;;:62;;-1:-1:-1;36495:37:0;36512:5;29545:10;37313:186;:::i;36495:37::-;36454:153;;;;-1:-1:-1;;;36454:153:0;;7074:2:1;36454:153:0;;;7056:21:1;7113:2;7093:18;;;7086:30;7152:34;7132:18;;;7125:62;7223:27;7203:18;;;7196:55;7268:19;;36454:153:0;6872:421:1;36454:153:0;36616:28;36625:2;36629:7;36638:5;36616:8;:28::i;:::-;36333:317;36271:379;;:::o;37558:142::-;37666:28;37676:4;37682:2;37686:7;37666:9;:28::i;49797:278::-;49920:7;;;50022:3;50005:13;:9;50017:1;50005:13;:::i;:::-;50004:21;;;;:::i;:::-;49980:45;;50044:7;47040;47067:6;-1:-1:-1;;;;;47067:6:0;;46994:87;50044:7;50036:31;50053:13;;-1:-1:-1;49797:278:0;-1:-1:-1;;;49797:278:0:o;32640:744::-;32749:7;32784:16;32794:5;32784:9;:16::i;:::-;32776:5;:24;32768:71;;;;-1:-1:-1;;;32768:71:0;;8062:2:1;32768:71:0;;;8044:21:1;8101:2;8081:18;;;8074:30;8140:34;8120:18;;;8113:62;-1:-1:-1;;;8191:18:1;;;8184:32;8233:19;;32768:71:0;7860:398:1;32768:71:0;32846:22;32871:13;32085:12;;;32009:94;32871:13;32846:38;;32891:19;32921:25;32971:9;32966:350;32990:14;32986:1;:18;32966:350;;;33020:31;33054:14;;;:11;:14;;;;;;;;;33020:48;;;;;;;;;-1:-1:-1;;;;;33020:48:0;;;;;-1:-1:-1;;;33020:48:0;;;;;;;;;;;;33081:28;33077:89;;33142:14;;;-1:-1:-1;33077:89:0;33199:5;-1:-1:-1;;;;;33178:26:0;:17;-1:-1:-1;;;;;33178:26:0;;33174:135;;;33236:5;33221:11;:20;33217:59;;;-1:-1:-1;33263:1:0;-1:-1:-1;33256:8:0;;-1:-1:-1;;;33256:8:0;33217:59;33286:13;;;;:::i;:::-;;;;33174:135;-1:-1:-1;33006:3:0;;;;:::i;:::-;;;;32966:350;;;-1:-1:-1;33322:56:0;;-1:-1:-1;;;33322:56:0;;8605:2:1;33322:56:0;;;8587:21:1;8644:2;8624:18;;;8617:30;8683:34;8663:18;;;8656:62;-1:-1:-1;;;8734:18:1;;;8727:44;8788:19;;33322:56:0;8403:410:1;49485:153:0;46880:13;:11;:13::i;:::-;27839:1:::1;28437:7;;:19;;28429:63;;;::::0;-1:-1:-1;;;28429:63:0;;9020:2:1;28429:63:0::1;::::0;::::1;9002:21:1::0;9059:2;9039:18;;;9032:30;9098:33;9078:18;;;9071:61;9149:18;;28429:63:0::1;8818:355:1::0;28429:63:0::1;27839:1;28570:7;:18:::0;49560:21:::2;49588:44;49614:7;47040::::0;47067:6;-1:-1:-1;;;;;47067:6:0;;46994:87;49614:7:::2;49624;49588:17;:44::i;:::-;-1:-1:-1::0;27795:1:0::1;28749:7;:22:::0;49485:153::o;37763:157::-;37875:39;37892:4;37898:2;37902:7;37875:39;;;;;;;;;;;;:16;:39::i;32172:177::-;32239:7;32271:13;32085:12;;;32009:94;32271:13;32263:5;:21;32255:69;;;;-1:-1:-1;;;32255:69:0;;9380:2:1;32255:69:0;;;9362:21:1;9419:2;9399:18;;;9392:30;9458:34;9438:18;;;9431:62;-1:-1:-1;;;9509:18:1;;;9502:33;9552:19;;32255:69:0;9178:399:1;32255:69:0;-1:-1:-1;32338:5:0;32172:177::o;35006:118::-;35070:7;35093:20;35105:7;35093:11;:20::i;:::-;:25;;35006:118;-1:-1:-1;;35006:118:0:o;33883:211::-;33947:7;-1:-1:-1;;;;;33971:19:0;;33963:75;;;;-1:-1:-1;;;33963:75:0;;9784:2:1;33963:75:0;;;9766:21:1;9823:2;9803:18;;;9796:30;9862:34;9842:18;;;9835:62;-1:-1:-1;;;9913:18:1;;;9906:41;9964:19;;33963:75:0;9582:407:1;33963:75:0;-1:-1:-1;;;;;;34060:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;34060:27:0;;33883:211::o;47642:103::-;46880:13;:11;:13::i;:::-;47707:30:::1;47734:1;47707:18;:30::i;:::-;47642:103::o:0;49644:147::-;-1:-1:-1;;;;;;;;;;;;;;;;;49765:20:0;49777:7;49765:11;:20::i;35338:98::-;35394:13;35423:7;35416:14;;;;;:::i;49105:374::-;49176:1;49167:6;:10;:46;;;;;48762:3;49181:6;:32;;49167:46;49159:79;;;;-1:-1:-1;;;49159:79:0;;10196:2:1;49159:79:0;;;10178:21:1;10235:2;10215:18;;;10208:30;-1:-1:-1;;;10254:18:1;;;10247:50;10314:18;;49159:79:0;9994:344:1;49159:79:0;48807:5;49271:6;49255:13;32085:12;;;32009:94;49255:13;:22;;;;:::i;:::-;:36;;49247:69;;;;-1:-1:-1;;;49247:69:0;;10678:2:1;49247:69:0;;;10660:21:1;10717:2;10697:18;;;10690:30;-1:-1:-1;;;10736:18:1;;;10729:50;10796:18;;49247:69:0;10476:344:1;49247:69:0;49327:15;49345:13;32085:12;;;32009:94;49345:13;49327:31;;49372:9;49367:67;49391:6;49387:1;:10;49367:67;;;49415:9;;;;:::i;:::-;;;;49399:3;;;;;:::i;:::-;;;;49367:67;;;;49444:29;49454:10;49466:6;49444:9;:29::i;:::-;49150:329;49105:374;:::o;36976:274::-;-1:-1:-1;;;;;37067:24:0;;29545:10;37067:24;;37059:63;;;;-1:-1:-1;;;37059:63:0;;11027:2:1;37059:63:0;;;11009:21:1;11066:2;11046:18;;;11039:30;11105:28;11085:18;;;11078:56;11151:18;;37059:63:0;10825:350:1;37059:63:0;29545:10;37131:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;37131:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;37131:53:0;;;;;;;;;;37196:48;;540:41:1;;;37131:42:0;;29545:10;37196:48;;513:18:1;37196:48:0;;;;;;;36976:274;;:::o;37983:311::-;38120:28;38130:4;38136:2;38140:7;38120:9;:28::i;:::-;38171:48;38194:4;38200:2;38204:7;38213:5;38171:22;:48::i;:::-;38155:133;;;;-1:-1:-1;;;38155:133:0;;;;;;;:::i;:::-;37983:311;;;;:::o;35499:394::-;35597:13;35638:16;35646:7;38620:12;;-1:-1:-1;38610:22:0;38533:105;35638:16;35622:97;;;;-1:-1:-1;;;35622:97:0;;11802:2:1;35622:97:0;;;11784:21:1;11841:2;11821:18;;;11814:30;11880:34;11860:18;;;11853:62;-1:-1:-1;;;11931:18:1;;;11924:45;11986:19;;35622:97:0;11600:411:1;35622:97:0;35728:21;35752:10;:8;:10::i;:::-;35728:34;;35807:1;35789:7;35783:21;:25;:104;;;;;;;;;;;;;;;;;35844:7;35853:18;:7;:16;:18::i;:::-;35827:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;35783:104;35769:118;35499:394;-1:-1:-1;;;35499:394:0:o;47900:201::-;46880:13;:11;:13::i;:::-;-1:-1:-1;;;;;47989:22:0;::::1;47981:73;;;::::0;-1:-1:-1;;;47981:73:0;;12693:2:1;47981:73:0::1;::::0;::::1;12675:21:1::0;12732:2;12712:18;;;12705:30;12771:34;12751:18;;;12744:62;-1:-1:-1;;;12822:18:1;;;12815:36;12868:19;;47981:73:0::1;12491:402:1::0;47981:73:0::1;48065:28;48084:8;48065:18;:28::i;:::-;47900:201:::0;:::o;13996:215::-;14098:4;-1:-1:-1;;;;;;14122:41:0;;-1:-1:-1;;;14122:41:0;;:81;;-1:-1:-1;;;;;;;;;;12555:40:0;;;14167:36;12446:157;42220:172;42317:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;42317:29:0;-1:-1:-1;;;;;42317:29:0;;;;;;;;;42358:28;;42317:24;;42358:28;;;;;;;42220:172;;;:::o;40585:1529::-;40682:35;40720:20;40732:7;40720:11;:20::i;:::-;40791:18;;40682:58;;-1:-1:-1;40749:22:0;;-1:-1:-1;;;;;40775:34:0;29545:10;-1:-1:-1;;;;;40775:34:0;;:81;;;-1:-1:-1;29545:10:0;40820:20;40832:7;40820:11;:20::i;:::-;-1:-1:-1;;;;;40820:36:0;;40775:81;:142;;;-1:-1:-1;40884:18:0;;40867:50;;29545:10;37313:186;:::i;40867:50::-;40749:169;;40943:17;40927:101;;;;-1:-1:-1;;;40927:101:0;;13100:2:1;40927:101:0;;;13082:21:1;13139:2;13119:18;;;13112:30;13178:34;13158:18;;;13151:62;-1:-1:-1;;;13229:18:1;;;13222:48;13287:19;;40927:101:0;12898:414:1;40927:101:0;41075:4;-1:-1:-1;;;;;41053:26:0;:13;:18;;;-1:-1:-1;;;;;41053:26:0;;41037:98;;;;-1:-1:-1;;;41037:98:0;;13519:2:1;41037:98:0;;;13501:21:1;13558:2;13538:18;;;13531:30;13597:34;13577:18;;;13570:62;-1:-1:-1;;;13648:18:1;;;13641:36;13694:19;;41037:98:0;13317:402:1;41037:98:0;-1:-1:-1;;;;;41150:16:0;;41142:66;;;;-1:-1:-1;;;41142:66:0;;13926:2:1;41142:66:0;;;13908:21:1;13965:2;13945:18;;;13938:30;14004:34;13984:18;;;13977:62;-1:-1:-1;;;14055:18:1;;;14048:35;14100:19;;41142:66:0;13724:401:1;41142:66:0;41317:49;41334:1;41338:7;41347:13;:18;;;41317:8;:49::i;:::-;-1:-1:-1;;;;;41375:18:0;;;;;;:12;:18;;;;;:31;;41405:1;;41375:18;:31;;41405:1;;-1:-1:-1;;;;;41375:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;41375:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;41413:16:0;;-1:-1:-1;41413:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;41413:16:0;;:29;;-1:-1:-1;;41413:29:0;;:::i;:::-;;;-1:-1:-1;;;;;41413:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41472:43:0;;;;;;;;-1:-1:-1;;;;;41472:43:0;;;;;;41498:15;41472:43;;;;;;;;;-1:-1:-1;41449:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;41449:66:0;-1:-1:-1;;;;;;41449:66:0;;;;;;;;;;;41765:11;41461:7;-1:-1:-1;41765:11:0;:::i;:::-;41828:1;41787:24;;;:11;:24;;;;;:29;41743:33;;-1:-1:-1;;;;;;41787:29:0;41783:236;;41845:20;41853:11;38620:12;;-1:-1:-1;38610:22:0;38533:105;41845:20;41841:171;;;41905:97;;;;;;;;41932:18;;-1:-1:-1;;;;;41905:97:0;;;;;;41963:28;;;;41905:97;;;;;;;;;;-1:-1:-1;41878:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;41878:124:0;-1:-1:-1;;;;;;41878:124:0;;;;;;;;;;;;41841:171;42051:7;42047:2;-1:-1:-1;;;;;42032:27:0;42041:4;-1:-1:-1;;;;;42032:27:0;;;;;;;;;;;42066:42;40675:1439;;;40585:1529;;;:::o;47159:132::-;47040:7;47067:6;-1:-1:-1;;;;;47067:6:0;29545:10;47223:23;47215:68;;;;-1:-1:-1;;;47215:68:0;;14841:2:1;47215:68:0;;;14823:21:1;;;14860:18;;;14853:30;14919:34;14899:18;;;14892:62;14971:18;;47215:68:0;14639:356:1;2653:317:0;2768:6;2743:21;:31;;2735:73;;;;-1:-1:-1;;;2735:73:0;;15202:2:1;2735:73:0;;;15184:21:1;15241:2;15221:18;;;15214:30;15280:31;15260:18;;;15253:59;15329:18;;2735:73:0;15000:353:1;2735:73:0;2822:12;2840:9;-1:-1:-1;;;;;2840:14:0;2862:6;2840:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2821:52;;;2892:7;2884:78;;;;-1:-1:-1;;;2884:78:0;;15770:2:1;2884:78:0;;;15752:21:1;15809:2;15789:18;;;15782:30;15848:34;15828:18;;;15821:62;15919:28;15899:18;;;15892:56;15965:19;;2884:78:0;15568:422:1;34346:606:0;-1:-1:-1;;;;;;;;;;;;;;;;;34463:16:0;34471:7;38620:12;;-1:-1:-1;38610:22:0;38533:105;34463:16;34455:71;;;;-1:-1:-1;;;34455:71:0;;16197:2:1;34455:71:0;;;16179:21:1;16236:2;16216:18;;;16209:30;16275:34;16255:18;;;16248:62;-1:-1:-1;;;16326:18:1;;;16319:40;16376:19;;34455:71:0;15995:406:1;34455:71:0;34535:26;34583:12;34572:7;:23;34568:93;;34627:22;34637:12;34627:7;:22;:::i;:::-;:26;;34652:1;34627:26;:::i;:::-;34606:47;;34568:93;34689:7;34669:212;34706:18;34698:4;:26;34669:212;;34743:31;34777:17;;;:11;:17;;;;;;;;;34743:51;;;;;;;;;-1:-1:-1;;;;;34743:51:0;;;;;-1:-1:-1;;;34743:51:0;;;;;;;;;;;;34807:28;34803:71;;34855:9;34346:606;-1:-1:-1;;;;34346:606:0:o;34803:71::-;-1:-1:-1;34726:6:0;;;;:::i;:::-;;;;34669:212;;;-1:-1:-1;34889:57:0;;-1:-1:-1;;;34889:57:0;;16879:2:1;34889:57:0;;;16861:21:1;16918:2;16898:18;;;16891:30;16957:34;16937:18;;;16930:62;-1:-1:-1;;;17008:18:1;;;17001:45;17063:19;;34889:57:0;16677:411:1;48261:191:0;48335:16;48354:6;;-1:-1:-1;;;;;48371:17:0;;;-1:-1:-1;;;;;;48371:17:0;;;;;;48404:40;;48354:6;;;;;;;48404:40;;48335:16;48404:40;48324:128;48261:191;:::o;38644:98::-;38709:27;38719:2;38723:8;38709:27;;;;;;;;;;;;:9;:27::i;43935:690::-;44072:4;-1:-1:-1;;;;;44089:13:0;;1687:19;:23;44085:535;;44128:72;;-1:-1:-1;;;44128:72:0;;-1:-1:-1;;;;;44128:36:0;;;;;:72;;29545:10;;44179:4;;44185:7;;44194:5;;44128:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44128:72:0;;;;;;;;-1:-1:-1;;44128:72:0;;;;;;;;;;;;:::i;:::-;;;44115:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44359:13:0;;44355:215;;44392:61;;-1:-1:-1;;;44392:61:0;;;;;;;:::i;44355:215::-;44538:6;44532:13;44523:6;44519:2;44515:15;44508:38;44115:464;-1:-1:-1;;;;;;44250:55:0;-1:-1:-1;;;44250:55:0;;-1:-1:-1;44243:62:0;;44085:535;-1:-1:-1;44608:4:0;44085:535;43935:690;;;;;;:::o;48954:145::-;49006:13;49030:63;;;;;;;;;;;;;;;;;;;48954:145;:::o;23960:723::-;24016:13;24237:10;24233:53;;-1:-1:-1;;24264:10:0;;;;;;;;;;;;-1:-1:-1;;;24264:10:0;;;;;23960:723::o;24233:53::-;24311:5;24296:12;24352:78;24359:9;;24352:78;;24385:8;;;;:::i;:::-;;-1:-1:-1;24408:10:0;;-1:-1:-1;24416:2:0;24408:10;;:::i;:::-;;;24352:78;;;24440:19;24472:6;24462:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24462:17:0;;24440:39;;24490:154;24497:10;;24490:154;;24524:11;24534:1;24524:11;;:::i;:::-;;-1:-1:-1;24593:10:0;24601:2;24593:5;:10;:::i;:::-;24580:24;;:2;:24;:::i;:::-;24567:39;;24550:6;24557;24550:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;24550:56:0;;;;;;;;-1:-1:-1;24621:11:0;24630:2;24621:11;;:::i;:::-;;;24490:154;;39081:1272;39209:12;;-1:-1:-1;;;;;39236:16:0;;39228:62;;;;-1:-1:-1;;;39228:62:0;;18292:2:1;39228:62:0;;;18274:21:1;18331:2;18311:18;;;18304:30;18370:34;18350:18;;;18343:62;-1:-1:-1;;;18421:18:1;;;18414:31;18462:19;;39228:62:0;18090:397:1;39228:62:0;39427:21;39435:12;38620;;-1:-1:-1;38610:22:0;38533:105;39427:21;39426:22;39418:64;;;;-1:-1:-1;;;39418:64:0;;18694:2:1;39418:64:0;;;18676:21:1;18733:2;18713:18;;;18706:30;18772:31;18752:18;;;18745:59;18821:18;;39418:64:0;18492:353:1;39418:64:0;39509:12;39497:8;:24;;39489:71;;;;-1:-1:-1;;;39489:71:0;;19052:2:1;39489:71:0;;;19034:21:1;19091:2;19071:18;;;19064:30;19130:34;19110:18;;;19103:62;-1:-1:-1;;;19181:18:1;;;19174:32;19223:19;;39489:71:0;18850:398:1;39489:71:0;-1:-1:-1;;;;;39672:16:0;;39639:30;39672:16;;;:12;:16;;;;;;;;;39639:49;;;;;;;;;-1:-1:-1;;;;;39639:49:0;;;;;-1:-1:-1;;;39639:49:0;;;;;;;;;;;39714:119;;;;;;;;39734:19;;39639:49;;39714:119;;;39734:39;;39764:8;;39734:39;:::i;:::-;-1:-1:-1;;;;;39714:119:0;;;;;39817:8;39782:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;39714:119:0;;;;;;-1:-1:-1;;;;;39695:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;39695:138:0;;;;;;;;;;;;39868:43;;;;;;;;;;;39894:15;39868:43;;;;;;;;39840:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;39840:71:0;-1:-1:-1;;;;;;39840:71:0;;;;;;;;;;;;;;;;;;39852:12;;39964:281;39988:8;39984:1;:12;39964:281;;;40017:38;;40042:12;;-1:-1:-1;;;;;40017:38:0;;;40034:1;;40017:38;;40034:1;;40017:38;40082:59;40113:1;40117:2;40121:12;40135:5;40082:22;:59::i;:::-;40064:150;;;;-1:-1:-1;;;40064:150:0;;;;;;;:::i;:::-;40223:14;;;;:::i;:::-;;;;39998:3;;;;;:::i;:::-;;;;39964:281;;;-1:-1:-1;40253:12:0;:27;;;40287:60;37983:311;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:248::-;2756:6;2764;2817:2;2805:9;2796:7;2792:23;2788:32;2785:52;;;2833:1;2830;2823:12;2785:52;-1:-1:-1;;2856:23:1;;;2926:2;2911:18;;;2898:32;;-1:-1:-1;2688:248:1:o;3220:186::-;3279:6;3332:2;3320:9;3311:7;3307:23;3303:32;3300:52;;;3348:1;3345;3338:12;3300:52;3371:29;3390:9;3371:29;:::i;3778:347::-;3843:6;3851;3904:2;3892:9;3883:7;3879:23;3875:32;3872:52;;;3920:1;3917;3910:12;3872:52;3943:29;3962:9;3943:29;:::i;:::-;3933:39;;4022:2;4011:9;4007:18;3994:32;4069:5;4062:13;4055:21;4048:5;4045:32;4035:60;;4091:1;4088;4081:12;4035:60;4114:5;4104:15;;;3778:347;;;;;:::o;4130:127::-;4191:10;4186:3;4182:20;4179:1;4172:31;4222:4;4219:1;4212:15;4246:4;4243:1;4236:15;4262:1138;4357:6;4365;4373;4381;4434:3;4422:9;4413:7;4409:23;4405:33;4402:53;;;4451:1;4448;4441:12;4402:53;4474:29;4493:9;4474:29;:::i;:::-;4464:39;;4522:38;4556:2;4545:9;4541:18;4522:38;:::i;:::-;4512:48;;4607:2;4596:9;4592:18;4579:32;4569:42;;4662:2;4651:9;4647:18;4634:32;4685:18;4726:2;4718:6;4715:14;4712:34;;;4742:1;4739;4732:12;4712:34;4780:6;4769:9;4765:22;4755:32;;4825:7;4818:4;4814:2;4810:13;4806:27;4796:55;;4847:1;4844;4837:12;4796:55;4883:2;4870:16;4905:2;4901;4898:10;4895:36;;;4911:18;;:::i;:::-;4986:2;4980:9;4954:2;5040:13;;-1:-1:-1;;5036:22:1;;;5060:2;5032:31;5028:40;5016:53;;;5084:18;;;5104:22;;;5081:46;5078:72;;;5130:18;;:::i;:::-;5170:10;5166:2;5159:22;5205:2;5197:6;5190:18;5245:7;5240:2;5235;5231;5227:11;5223:20;5220:33;5217:53;;;5266:1;5263;5256:12;5217:53;5322:2;5317;5313;5309:11;5304:2;5296:6;5292:15;5279:46;5367:1;5362:2;5357;5349:6;5345:15;5341:24;5334:35;5388:6;5378:16;;;;;;;4262:1138;;;;;;;:::o;5405:260::-;5473:6;5481;5534:2;5522:9;5513:7;5509:23;5505:32;5502:52;;;5550:1;5547;5540:12;5502:52;5573:29;5592:9;5573:29;:::i;:::-;5563:39;;5621:38;5655:2;5644:9;5640:18;5621:38;:::i;:::-;5611:48;;5405:260;;;;;:::o;5670:380::-;5749:1;5745:12;;;;5792;;;5813:61;;5867:4;5859:6;5855:17;5845:27;;5813:61;5920:2;5912:6;5909:14;5889:18;5886:38;5883:161;;;5966:10;5961:3;5957:20;5954:1;5947:31;6001:4;5998:1;5991:15;6029:4;6026:1;6019:15;5883:161;;5670:380;;;:::o;7298:127::-;7359:10;7354:3;7350:20;7347:1;7340:31;7390:4;7387:1;7380:15;7414:4;7411:1;7404:15;7430:168;7470:7;7536:1;7532;7528:6;7524:14;7521:1;7518:21;7513:1;7506:9;7499:17;7495:45;7492:71;;;7543:18;;:::i;:::-;-1:-1:-1;7583:9:1;;7430:168::o;7603:127::-;7664:10;7659:3;7655:20;7652:1;7645:31;7695:4;7692:1;7685:15;7719:4;7716:1;7709:15;7735:120;7775:1;7801;7791:35;;7806:18;;:::i;:::-;-1:-1:-1;7840:9:1;;7735:120::o;8263:135::-;8302:3;-1:-1:-1;;8323:17:1;;8320:43;;;8343:18;;:::i;:::-;-1:-1:-1;8390:1:1;8379:13;;8263:135::o;10343:128::-;10383:3;10414:1;10410:6;10407:1;10404:13;10401:39;;;10420:18;;:::i;:::-;-1:-1:-1;10456:9:1;;10343:128::o;11180:415::-;11382:2;11364:21;;;11421:2;11401:18;;;11394:30;11460:34;11455:2;11440:18;;11433:62;-1:-1:-1;;;11526:2:1;11511:18;;11504:49;11585:3;11570:19;;11180:415::o;12016:470::-;12195:3;12233:6;12227:13;12249:53;12295:6;12290:3;12283:4;12275:6;12271:17;12249:53;:::i;:::-;12365:13;;12324:16;;;;12387:57;12365:13;12324:16;12421:4;12409:17;;12387:57;:::i;:::-;12460:20;;12016:470;-1:-1:-1;;;;12016:470:1:o;14130:246::-;14170:4;-1:-1:-1;;;;;14283:10:1;;;;14253;;14305:12;;;14302:38;;;14320:18;;:::i;:::-;14357:13;;14130:246;-1:-1:-1;;;14130:246:1:o;14381:253::-;14421:3;-1:-1:-1;;;;;14510:2:1;14507:1;14503:10;14540:2;14537:1;14533:10;14571:3;14567:2;14563:12;14558:3;14555:21;14552:47;;;14579:18;;:::i;16406:125::-;16446:4;16474:1;16471;16468:8;16465:34;;;16479:18;;:::i;:::-;-1:-1:-1;16516:9:1;;16406:125::o;16536:136::-;16575:3;16603:5;16593:39;;16612:18;;:::i;:::-;-1:-1:-1;;;16648:18:1;;16536:136::o;17093:489::-;-1:-1:-1;;;;;17362:15:1;;;17344:34;;17414:15;;17409:2;17394:18;;17387:43;17461:2;17446:18;;17439:34;;;17509:3;17504:2;17489:18;;17482:31;;;17287:4;;17530:46;;17556:19;;17548:6;17530:46;:::i;:::-;17522:54;17093:489;-1:-1:-1;;;;;;17093:489:1:o;17587:249::-;17656:6;17709:2;17697:9;17688:7;17684:23;17680:32;17677:52;;;17725:1;17722;17715:12;17677:52;17757:9;17751:16;17776:30;17800:5;17776:30;:::i;17841:112::-;17873:1;17899;17889:35;;17904:18;;:::i;:::-;-1:-1:-1;17938:9:1;;17841:112::o;17958:127::-;18019:10;18014:3;18010:20;18007:1;18000:31;18050:4;18047:1;18040:15;18074:4;18071:1;18064:15

Swarm Source

ipfs://b4eeaa8083c57973917e52da5fe8b1b04f54d3da65043eadde58f462d40f4091
[ 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.