ETH Price: $3,114.38 (+1.53%)

Token

AIKaijuz (AIK)
 

Overview

Max Total Supply

1,218 AIK

Holders

153

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
5 AIK
0x455085F40683d82BA99Eef8ED552b1AC64367e1C
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
AIKaijuz

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.6.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 be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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









contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

    /**
     * @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(totalSupply). 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;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert('ERC721A: unable to get token of owner by index');
    }

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

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

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

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

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

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    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);

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: contracts/AIKaijuz.sol



pragma solidity ^0.8.0;






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

    string public baseURI;
    uint256 public price = 0.005 ether;
    uint256 public maxSupply = 3333;
    uint256 public maxFreeAmount = 1000;
    uint256 public maxMintsPerTx = 10;
    bool public paused = false;
    

    mapping(address => uint256) public addressFreeMintedBalance;

    constructor(
        string memory _name,
        string memory _symbol
        ) ERC721A(_name, _symbol) {
    }
    
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    modifier isCorrectPayment(uint256 cost, uint256 _mintAmount) {
        if(totalSupply() + _mintAmount > maxFreeAmount) {
        require((cost * _mintAmount) == msg.value, "Incorrect ETH value sent." );
        }
        _;
    }
    
    function mint(uint256 _mintAmount) public payable 
        nonReentrant 
        isCorrectPayment(price, _mintAmount) 
    {
		uint256 supply = totalSupply();
        uint256 addressFreeMintedCount = addressFreeMintedBalance[msg.sender];
        require(paused, "Sales paused.");
        require(_mintAmount < maxMintsPerTx + 1, "Max per TX reached."); 
		require(_mintAmount > 0, "Cant mint 0." );
		require(supply + _mintAmount <= maxSupply, "Cant go over supply." );
		for (uint256 i = 0; i < _mintAmount; ++i) {
            addressFreeMintedBalance[msg.sender]++;
		}
        _safeMint(msg.sender, _mintAmount);
		delete supply;
        delete addressFreeMintedCount;
	}

    function devMint(uint256 _mintAmount) public payable onlyOwner{
        uint256 supply = totalSupply();
        uint256 addressFreeMintedCount = addressFreeMintedBalance[msg.sender];
        require(_mintAmount < maxMintsPerTx + 1, "Max per TX reached."); 
		require(_mintAmount > 0, "Cant mint 0." );
		require(supply + _mintAmount <= maxSupply, "Cant go over supply." );
		for (uint256 i = 0; i < _mintAmount; ++i) {
            addressFreeMintedBalance[msg.sender]++;
		}
        _safeMint(msg.sender, _mintAmount);
		delete supply;
        delete addressFreeMintedCount;
    }
    
    function toggleSale() external onlyOwner {
        paused = !paused;
    }


    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: Nonexistent token");
        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), ".json"))
                : "";
    }

    function setCost(uint256 _newCost) public onlyOwner {
        price = _newCost;
    }

    function setmaxSupply(uint256 _newMaxSupply) public onlyOwner {
        require(_newMaxSupply <= maxSupply, "Cannot increase max supply");
        maxSupply = _newMaxSupply;
    }

    function setmaxFreeSupply(uint256 _newMaxFreeSupply) public onlyOwner {
        maxFreeAmount = _newMaxFreeSupply;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function setMaxPerTx(uint256 _amount) public onlyOwner{
        maxMintsPerTx = _amount;
    }

    function withdraw() public payable onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success);
    }

    function withdrawAny(uint256 _amount) public payable onlyOwner {
        (bool success, ) = payable(msg.sender).call{value: _amount}("");
        require(success);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"addressFreeMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxFreeSupply","type":"uint256"}],"name":"setmaxFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setmaxSupply","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":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","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":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawAny","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526611c37937e08000600a908155610d05600b556103e8600c55600d55600e805460ff191690553480156200003757600080fd5b506040516200269d3803806200269d8339810160408190526200005a916200027c565b8151829082906200007390600190602085019062000109565b5080516200008990600290602084019062000109565b505050620000a6620000a0620000b360201b60201c565b620000b7565b5050600160085562000322565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011790620002e6565b90600052602060002090601f0160209004810192826200013b576000855562000186565b82601f106200015657805160ff191683800117855562000186565b8280016001018555821562000186579182015b828111156200018657825182559160200191906001019062000169565b506200019492915062000198565b5090565b5b8082111562000194576000815560010162000199565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001d757600080fd5b81516001600160401b0380821115620001f457620001f4620001af565b604051601f8301601f19908116603f011681019082821181831017156200021f576200021f620001af565b816040528381526020925086838588010111156200023c57600080fd5b600091505b8382101562000260578582018301518183018401529082019062000241565b83821115620002725760008385830101525b9695505050505050565b600080604083850312156200029057600080fd5b82516001600160401b0380821115620002a857600080fd5b620002b686838701620001c5565b93506020850151915080821115620002cd57600080fd5b50620002dc85828601620001c5565b9150509250929050565b600181811c90821680620002fb57607f821691505b6020821081036200031c57634e487b7160e01b600052602260045260246000fd5b50919050565b61236b80620003326000396000f3fe60806040526004361061020f5760003560e01c8063715018a611610118578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb01146105b4578063dc30158b146105ca578063e985e9c5146105e0578063f2fde38b14610629578063f892c6e21461064957600080fd5b8063b88d4fde14610534578063bde12d7314610554578063c6f6f21614610574578063c87b56dd1461059457600080fd5b80638da5cb5b116100e75780638da5cb5b146104b857806395d89b41146104d6578063a035b1fe146104eb578063a0712d6814610501578063a22cb4651461051457600080fd5b8063715018a61461044e57806377ad99f0146104635780637c6b172d146104765780637d8966e4146104a357600080fd5b80633ccfd60b1161019b57806355f804b31161016a57806355f804b3146103bf5780635c975abb146103df5780636352211e146103f95780636c0360eb1461041957806370a082311461042e57600080fd5b80633ccfd60b1461035757806342842e0e1461035f57806344a0d68a1461037f5780634f6ccce71461039f57600080fd5b806318160ddd116101e257806318160ddd146102c5578063228025e8146102e457806323b872dd146103045780632f745c5914610324578063375a069a1461034457600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004611e0b565b61065f565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106cc565b6040516102409190611e80565b34801561027757600080fd5b5061028b610286366004611e93565b61075e565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004611ec8565b6107ee565b005b3480156102d157600080fd5b506000545b604051908152602001610240565b3480156102f057600080fd5b506102c36102ff366004611e93565b610905565b34801561031057600080fd5b506102c361031f366004611ef2565b610986565b34801561033057600080fd5b506102d661033f366004611ec8565b610991565b6102c3610352366004611e93565b610aec565b6102c3610c52565b34801561036b57600080fd5b506102c361037a366004611ef2565b610cd4565b34801561038b57600080fd5b506102c361039a366004611e93565b610cef565b3480156103ab57600080fd5b506102d66103ba366004611e93565b610d1e565b3480156103cb57600080fd5b506102c36103da366004611fba565b610d80565b3480156103eb57600080fd5b50600e546102349060ff1681565b34801561040557600080fd5b5061028b610414366004611e93565b610dc1565b34801561042557600080fd5b5061025e610dd3565b34801561043a57600080fd5b506102d6610449366004612003565b610e61565b34801561045a57600080fd5b506102c3610ef2565b6102c3610471366004611e93565b610f28565b34801561048257600080fd5b506102d6610491366004612003565b600f6020526000908152604090205481565b3480156104af57600080fd5b506102c3610fa7565b3480156104c457600080fd5b506007546001600160a01b031661028b565b3480156104e257600080fd5b5061025e610fe5565b3480156104f757600080fd5b506102d6600a5481565b6102c361050f366004611e93565b610ff4565b34801561052057600080fd5b506102c361052f36600461201e565b61124f565b34801561054057600080fd5b506102c361054f36600461205a565b611313565b34801561056057600080fd5b506102c361056f366004611e93565b61134c565b34801561058057600080fd5b506102c361058f366004611e93565b61137b565b3480156105a057600080fd5b5061025e6105af366004611e93565b6113aa565b3480156105c057600080fd5b506102d6600b5481565b3480156105d657600080fd5b506102d6600d5481565b3480156105ec57600080fd5b506102346105fb3660046120d6565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561063557600080fd5b506102c3610644366004612003565b611469565b34801561065557600080fd5b506102d6600c5481565b60006001600160e01b031982166380ac58cd60e01b148061069057506001600160e01b03198216635b5e139f60e01b145b806106ab57506001600160e01b0319821663780e9d6360e01b145b806106c657506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546106db90612109565b80601f016020809104026020016040519081016040528092919081815260200182805461070790612109565b80156107545780601f1061072957610100808354040283529160200191610754565b820191906000526020600020905b81548152906001019060200180831161073757829003601f168201915b5050505050905090565b600061076b826000541190565b6107d25760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006107f982610dc1565b9050806001600160a01b0316836001600160a01b0316036108675760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016107c9565b336001600160a01b0382161480610883575061088381336105fb565b6108f55760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016107c9565b610900838383611501565b505050565b6007546001600160a01b0316331461092f5760405162461bcd60e51b81526004016107c990612143565b600b548111156109815760405162461bcd60e51b815260206004820152601a60248201527f43616e6e6f7420696e637265617365206d617820737570706c7900000000000060448201526064016107c9565b600b55565b61090083838361155d565b600061099c83610e61565b82106109f55760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016107c9565b600080549080805b83811015610a8c576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a5057805192505b876001600160a01b0316836001600160a01b031603610a8357868403610a7c575093506106c692505050565b6001909301925b506001016109fd565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016107c9565b6007546001600160a01b03163314610b165760405162461bcd60e51b81526004016107c990612143565b60008054338252600f602052604090912054600d54610b3690600161218e565b8310610b7a5760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b60448201526064016107c9565b60008311610bb95760405162461bcd60e51b815260206004820152600c60248201526b21b0b73a1036b4b73a10181760a11b60448201526064016107c9565b600b54610bc6848461218e565b1115610c0b5760405162461bcd60e51b815260206004820152601460248201527321b0b73a1033b79037bb32b91039bab838363c9760611b60448201526064016107c9565b60005b83811015610c4757336000908152600f60205260408120805491610c31836121a6565b919050555080610c40906121a6565b9050610c0e565b506109003384611842565b6007546001600160a01b03163314610c7c5760405162461bcd60e51b81526004016107c990612143565b604051600090339047908381818185875af1925050503d8060008114610cbe576040519150601f19603f3d011682016040523d82523d6000602084013e610cc3565b606091505b5050905080610cd157600080fd5b50565b61090083838360405180602001604052806000815250611313565b6007546001600160a01b03163314610d195760405162461bcd60e51b81526004016107c990612143565b600a55565b600080548210610d7c5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016107c9565b5090565b6007546001600160a01b03163314610daa5760405162461bcd60e51b81526004016107c990612143565b8051610dbd906009906020840190611d65565b5050565b6000610dcc8261185c565b5192915050565b60098054610de090612109565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0c90612109565b8015610e595780601f10610e2e57610100808354040283529160200191610e59565b820191906000526020600020905b815481529060010190602001808311610e3c57829003601f168201915b505050505081565b60006001600160a01b038216610ecd5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016107c9565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610f1c5760405162461bcd60e51b81526004016107c990612143565b610f266000611933565b565b6007546001600160a01b03163314610f525760405162461bcd60e51b81526004016107c990612143565b604051600090339083908381818185875af1925050503d8060008114610f94576040519150601f19603f3d011682016040523d82523d6000602084013e610f99565b606091505b5050905080610dbd57600080fd5b6007546001600160a01b03163314610fd15760405162461bcd60e51b81526004016107c990612143565b600e805460ff19811660ff90911615179055565b6060600280546106db90612109565b6002600854036110465760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107c9565b6002600855600a54600c5482908161105d60005490565b611067919061218e565b11156110c5573461107882846121bf565b146110c55760405162461bcd60e51b815260206004820152601960248201527f496e636f7272656374204554482076616c75652073656e742e0000000000000060448201526064016107c9565b60008054338252600f602052604090912054600e5460ff166111195760405162461bcd60e51b815260206004820152600d60248201526c29b0b632b9903830bab9b2b21760991b60448201526064016107c9565b600d5461112790600161218e565b851061116b5760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b60448201526064016107c9565b600085116111aa5760405162461bcd60e51b815260206004820152600c60248201526b21b0b73a1036b4b73a10181760a11b60448201526064016107c9565b600b546111b7868461218e565b11156111fc5760405162461bcd60e51b815260206004820152601460248201527321b0b73a1033b79037bb32b91039bab838363c9760611b60448201526064016107c9565b60005b8581101561123857336000908152600f60205260408120805491611222836121a6565b919050555080611231906121a6565b90506111ff565b506112433386611842565b50506001600855505050565b336001600160a01b038316036112a75760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016107c9565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61131e84848461155d565b61132a84848484611985565b6113465760405162461bcd60e51b81526004016107c9906121de565b50505050565b6007546001600160a01b031633146113765760405162461bcd60e51b81526004016107c990612143565b600c55565b6007546001600160a01b031633146113a55760405162461bcd60e51b81526004016107c990612143565b600d55565b60606113b7826000541190565b61140d5760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b60648201526084016107c9565b6000611417611a87565b905060008151116114375760405180602001604052806000815250611462565b8061144184611a96565b604051602001611452929190612231565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146114935760405162461bcd60e51b81526004016107c990612143565b6001600160a01b0381166114f85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107c9565b610cd181611933565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006115688261185c565b80519091506000906001600160a01b0316336001600160a01b0316148061159f5750336115948461075e565b6001600160a01b0316145b806115b1575081516115b190336105fb565b90508061161b5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016107c9565b846001600160a01b031682600001516001600160a01b03161461168f5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016107c9565b6001600160a01b0384166116f35760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016107c9565b6117036000848460000151611501565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166117f8576117ab816000541190565b156117f8578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610dbd828260405180602001604052806000815250611b97565b604080518082019091526000808252602082015261187b826000541190565b6118da5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016107c9565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611929579392505050565b50600019016118dc565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611a7b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119c9903390899088908890600401612270565b6020604051808303816000875af1925050508015611a04575060408051601f3d908101601f19168201909252611a01918101906122ad565b60015b611a61573d808015611a32576040519150601f19603f3d011682016040523d82523d6000602084013e611a37565b606091505b508051600003611a595760405162461bcd60e51b81526004016107c9906121de565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a7f565b5060015b949350505050565b6060600980546106db90612109565b606081600003611abd5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ae75780611ad1816121a6565b9150611ae09050600a836122e0565b9150611ac1565b60008167ffffffffffffffff811115611b0257611b02611f2e565b6040519080825280601f01601f191660200182016040528015611b2c576020820181803683370190505b5090505b8415611a7f57611b416001836122f4565b9150611b4e600a8661230b565b611b5990603061218e565b60f81b818381518110611b6e57611b6e61231f565b60200101906001600160f81b031916908160001a905350611b90600a866122e0565b9450611b30565b61090083838360016000546001600160a01b038516611c025760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016107c9565b83600003611c635760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b60648201526084016107c9565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611d5c5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611d5057611d346000888488611985565b611d505760405162461bcd60e51b81526004016107c9906121de565b60019182019101611ce1565b5060005561183b565b828054611d7190612109565b90600052602060002090601f016020900481019282611d935760008555611dd9565b82601f10611dac57805160ff1916838001178555611dd9565b82800160010185558215611dd9579182015b82811115611dd9578251825591602001919060010190611dbe565b50610d7c9291505b80821115610d7c5760008155600101611de1565b6001600160e01b031981168114610cd157600080fd5b600060208284031215611e1d57600080fd5b813561146281611df5565b60005b83811015611e43578181015183820152602001611e2b565b838111156113465750506000910152565b60008151808452611e6c816020860160208601611e28565b601f01601f19169290920160200192915050565b6020815260006114626020830184611e54565b600060208284031215611ea557600080fd5b5035919050565b80356001600160a01b0381168114611ec357600080fd5b919050565b60008060408385031215611edb57600080fd5b611ee483611eac565b946020939093013593505050565b600080600060608486031215611f0757600080fd5b611f1084611eac565b9250611f1e60208501611eac565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611f5f57611f5f611f2e565b604051601f8501601f19908116603f01168101908282118183101715611f8757611f87611f2e565b81604052809350858152868686011115611fa057600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611fcc57600080fd5b813567ffffffffffffffff811115611fe357600080fd5b8201601f81018413611ff457600080fd5b611a7f84823560208401611f44565b60006020828403121561201557600080fd5b61146282611eac565b6000806040838503121561203157600080fd5b61203a83611eac565b91506020830135801515811461204f57600080fd5b809150509250929050565b6000806000806080858703121561207057600080fd5b61207985611eac565b935061208760208601611eac565b925060408501359150606085013567ffffffffffffffff8111156120aa57600080fd5b8501601f810187136120bb57600080fd5b6120ca87823560208401611f44565b91505092959194509250565b600080604083850312156120e957600080fd5b6120f283611eac565b915061210060208401611eac565b90509250929050565b600181811c9082168061211d57607f821691505b60208210810361213d57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156121a1576121a1612178565b500190565b6000600182016121b8576121b8612178565b5060010190565b60008160001904831182151516156121d9576121d9612178565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351612243818460208801611e28565b835190830190612257818360208801611e28565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122a390830184611e54565b9695505050505050565b6000602082840312156122bf57600080fd5b815161146281611df5565b634e487b7160e01b600052601260045260246000fd5b6000826122ef576122ef6122ca565b500490565b60008282101561230657612306612178565b500390565b60008261231a5761231a6122ca565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220cb759b4e0c0c975030141eee3559d2e6d69047db106bde6ee72e39e84f7ae7bd64736f6c634300080e003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000841494b61696a757a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000341494b0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c8063715018a611610118578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb01146105b4578063dc30158b146105ca578063e985e9c5146105e0578063f2fde38b14610629578063f892c6e21461064957600080fd5b8063b88d4fde14610534578063bde12d7314610554578063c6f6f21614610574578063c87b56dd1461059457600080fd5b80638da5cb5b116100e75780638da5cb5b146104b857806395d89b41146104d6578063a035b1fe146104eb578063a0712d6814610501578063a22cb4651461051457600080fd5b8063715018a61461044e57806377ad99f0146104635780637c6b172d146104765780637d8966e4146104a357600080fd5b80633ccfd60b1161019b57806355f804b31161016a57806355f804b3146103bf5780635c975abb146103df5780636352211e146103f95780636c0360eb1461041957806370a082311461042e57600080fd5b80633ccfd60b1461035757806342842e0e1461035f57806344a0d68a1461037f5780634f6ccce71461039f57600080fd5b806318160ddd116101e257806318160ddd146102c5578063228025e8146102e457806323b872dd146103045780632f745c5914610324578063375a069a1461034457600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004611e0b565b61065f565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106cc565b6040516102409190611e80565b34801561027757600080fd5b5061028b610286366004611e93565b61075e565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004611ec8565b6107ee565b005b3480156102d157600080fd5b506000545b604051908152602001610240565b3480156102f057600080fd5b506102c36102ff366004611e93565b610905565b34801561031057600080fd5b506102c361031f366004611ef2565b610986565b34801561033057600080fd5b506102d661033f366004611ec8565b610991565b6102c3610352366004611e93565b610aec565b6102c3610c52565b34801561036b57600080fd5b506102c361037a366004611ef2565b610cd4565b34801561038b57600080fd5b506102c361039a366004611e93565b610cef565b3480156103ab57600080fd5b506102d66103ba366004611e93565b610d1e565b3480156103cb57600080fd5b506102c36103da366004611fba565b610d80565b3480156103eb57600080fd5b50600e546102349060ff1681565b34801561040557600080fd5b5061028b610414366004611e93565b610dc1565b34801561042557600080fd5b5061025e610dd3565b34801561043a57600080fd5b506102d6610449366004612003565b610e61565b34801561045a57600080fd5b506102c3610ef2565b6102c3610471366004611e93565b610f28565b34801561048257600080fd5b506102d6610491366004612003565b600f6020526000908152604090205481565b3480156104af57600080fd5b506102c3610fa7565b3480156104c457600080fd5b506007546001600160a01b031661028b565b3480156104e257600080fd5b5061025e610fe5565b3480156104f757600080fd5b506102d6600a5481565b6102c361050f366004611e93565b610ff4565b34801561052057600080fd5b506102c361052f36600461201e565b61124f565b34801561054057600080fd5b506102c361054f36600461205a565b611313565b34801561056057600080fd5b506102c361056f366004611e93565b61134c565b34801561058057600080fd5b506102c361058f366004611e93565b61137b565b3480156105a057600080fd5b5061025e6105af366004611e93565b6113aa565b3480156105c057600080fd5b506102d6600b5481565b3480156105d657600080fd5b506102d6600d5481565b3480156105ec57600080fd5b506102346105fb3660046120d6565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561063557600080fd5b506102c3610644366004612003565b611469565b34801561065557600080fd5b506102d6600c5481565b60006001600160e01b031982166380ac58cd60e01b148061069057506001600160e01b03198216635b5e139f60e01b145b806106ab57506001600160e01b0319821663780e9d6360e01b145b806106c657506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546106db90612109565b80601f016020809104026020016040519081016040528092919081815260200182805461070790612109565b80156107545780601f1061072957610100808354040283529160200191610754565b820191906000526020600020905b81548152906001019060200180831161073757829003601f168201915b5050505050905090565b600061076b826000541190565b6107d25760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006107f982610dc1565b9050806001600160a01b0316836001600160a01b0316036108675760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016107c9565b336001600160a01b0382161480610883575061088381336105fb565b6108f55760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016107c9565b610900838383611501565b505050565b6007546001600160a01b0316331461092f5760405162461bcd60e51b81526004016107c990612143565b600b548111156109815760405162461bcd60e51b815260206004820152601a60248201527f43616e6e6f7420696e637265617365206d617820737570706c7900000000000060448201526064016107c9565b600b55565b61090083838361155d565b600061099c83610e61565b82106109f55760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016107c9565b600080549080805b83811015610a8c576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a5057805192505b876001600160a01b0316836001600160a01b031603610a8357868403610a7c575093506106c692505050565b6001909301925b506001016109fd565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016107c9565b6007546001600160a01b03163314610b165760405162461bcd60e51b81526004016107c990612143565b60008054338252600f602052604090912054600d54610b3690600161218e565b8310610b7a5760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b60448201526064016107c9565b60008311610bb95760405162461bcd60e51b815260206004820152600c60248201526b21b0b73a1036b4b73a10181760a11b60448201526064016107c9565b600b54610bc6848461218e565b1115610c0b5760405162461bcd60e51b815260206004820152601460248201527321b0b73a1033b79037bb32b91039bab838363c9760611b60448201526064016107c9565b60005b83811015610c4757336000908152600f60205260408120805491610c31836121a6565b919050555080610c40906121a6565b9050610c0e565b506109003384611842565b6007546001600160a01b03163314610c7c5760405162461bcd60e51b81526004016107c990612143565b604051600090339047908381818185875af1925050503d8060008114610cbe576040519150601f19603f3d011682016040523d82523d6000602084013e610cc3565b606091505b5050905080610cd157600080fd5b50565b61090083838360405180602001604052806000815250611313565b6007546001600160a01b03163314610d195760405162461bcd60e51b81526004016107c990612143565b600a55565b600080548210610d7c5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016107c9565b5090565b6007546001600160a01b03163314610daa5760405162461bcd60e51b81526004016107c990612143565b8051610dbd906009906020840190611d65565b5050565b6000610dcc8261185c565b5192915050565b60098054610de090612109565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0c90612109565b8015610e595780601f10610e2e57610100808354040283529160200191610e59565b820191906000526020600020905b815481529060010190602001808311610e3c57829003601f168201915b505050505081565b60006001600160a01b038216610ecd5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016107c9565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610f1c5760405162461bcd60e51b81526004016107c990612143565b610f266000611933565b565b6007546001600160a01b03163314610f525760405162461bcd60e51b81526004016107c990612143565b604051600090339083908381818185875af1925050503d8060008114610f94576040519150601f19603f3d011682016040523d82523d6000602084013e610f99565b606091505b5050905080610dbd57600080fd5b6007546001600160a01b03163314610fd15760405162461bcd60e51b81526004016107c990612143565b600e805460ff19811660ff90911615179055565b6060600280546106db90612109565b6002600854036110465760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107c9565b6002600855600a54600c5482908161105d60005490565b611067919061218e565b11156110c5573461107882846121bf565b146110c55760405162461bcd60e51b815260206004820152601960248201527f496e636f7272656374204554482076616c75652073656e742e0000000000000060448201526064016107c9565b60008054338252600f602052604090912054600e5460ff166111195760405162461bcd60e51b815260206004820152600d60248201526c29b0b632b9903830bab9b2b21760991b60448201526064016107c9565b600d5461112790600161218e565b851061116b5760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b60448201526064016107c9565b600085116111aa5760405162461bcd60e51b815260206004820152600c60248201526b21b0b73a1036b4b73a10181760a11b60448201526064016107c9565b600b546111b7868461218e565b11156111fc5760405162461bcd60e51b815260206004820152601460248201527321b0b73a1033b79037bb32b91039bab838363c9760611b60448201526064016107c9565b60005b8581101561123857336000908152600f60205260408120805491611222836121a6565b919050555080611231906121a6565b90506111ff565b506112433386611842565b50506001600855505050565b336001600160a01b038316036112a75760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016107c9565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61131e84848461155d565b61132a84848484611985565b6113465760405162461bcd60e51b81526004016107c9906121de565b50505050565b6007546001600160a01b031633146113765760405162461bcd60e51b81526004016107c990612143565b600c55565b6007546001600160a01b031633146113a55760405162461bcd60e51b81526004016107c990612143565b600d55565b60606113b7826000541190565b61140d5760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b60648201526084016107c9565b6000611417611a87565b905060008151116114375760405180602001604052806000815250611462565b8061144184611a96565b604051602001611452929190612231565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146114935760405162461bcd60e51b81526004016107c990612143565b6001600160a01b0381166114f85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107c9565b610cd181611933565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006115688261185c565b80519091506000906001600160a01b0316336001600160a01b0316148061159f5750336115948461075e565b6001600160a01b0316145b806115b1575081516115b190336105fb565b90508061161b5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016107c9565b846001600160a01b031682600001516001600160a01b03161461168f5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016107c9565b6001600160a01b0384166116f35760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016107c9565b6117036000848460000151611501565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166117f8576117ab816000541190565b156117f8578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610dbd828260405180602001604052806000815250611b97565b604080518082019091526000808252602082015261187b826000541190565b6118da5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016107c9565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611929579392505050565b50600019016118dc565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611a7b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119c9903390899088908890600401612270565b6020604051808303816000875af1925050508015611a04575060408051601f3d908101601f19168201909252611a01918101906122ad565b60015b611a61573d808015611a32576040519150601f19603f3d011682016040523d82523d6000602084013e611a37565b606091505b508051600003611a595760405162461bcd60e51b81526004016107c9906121de565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a7f565b5060015b949350505050565b6060600980546106db90612109565b606081600003611abd5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ae75780611ad1816121a6565b9150611ae09050600a836122e0565b9150611ac1565b60008167ffffffffffffffff811115611b0257611b02611f2e565b6040519080825280601f01601f191660200182016040528015611b2c576020820181803683370190505b5090505b8415611a7f57611b416001836122f4565b9150611b4e600a8661230b565b611b5990603061218e565b60f81b818381518110611b6e57611b6e61231f565b60200101906001600160f81b031916908160001a905350611b90600a866122e0565b9450611b30565b61090083838360016000546001600160a01b038516611c025760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016107c9565b83600003611c635760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b60648201526084016107c9565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611d5c5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611d5057611d346000888488611985565b611d505760405162461bcd60e51b81526004016107c9906121de565b60019182019101611ce1565b5060005561183b565b828054611d7190612109565b90600052602060002090601f016020900481019282611d935760008555611dd9565b82601f10611dac57805160ff1916838001178555611dd9565b82800160010185558215611dd9579182015b82811115611dd9578251825591602001919060010190611dbe565b50610d7c9291505b80821115610d7c5760008155600101611de1565b6001600160e01b031981168114610cd157600080fd5b600060208284031215611e1d57600080fd5b813561146281611df5565b60005b83811015611e43578181015183820152602001611e2b565b838111156113465750506000910152565b60008151808452611e6c816020860160208601611e28565b601f01601f19169290920160200192915050565b6020815260006114626020830184611e54565b600060208284031215611ea557600080fd5b5035919050565b80356001600160a01b0381168114611ec357600080fd5b919050565b60008060408385031215611edb57600080fd5b611ee483611eac565b946020939093013593505050565b600080600060608486031215611f0757600080fd5b611f1084611eac565b9250611f1e60208501611eac565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611f5f57611f5f611f2e565b604051601f8501601f19908116603f01168101908282118183101715611f8757611f87611f2e565b81604052809350858152868686011115611fa057600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611fcc57600080fd5b813567ffffffffffffffff811115611fe357600080fd5b8201601f81018413611ff457600080fd5b611a7f84823560208401611f44565b60006020828403121561201557600080fd5b61146282611eac565b6000806040838503121561203157600080fd5b61203a83611eac565b91506020830135801515811461204f57600080fd5b809150509250929050565b6000806000806080858703121561207057600080fd5b61207985611eac565b935061208760208601611eac565b925060408501359150606085013567ffffffffffffffff8111156120aa57600080fd5b8501601f810187136120bb57600080fd5b6120ca87823560208401611f44565b91505092959194509250565b600080604083850312156120e957600080fd5b6120f283611eac565b915061210060208401611eac565b90509250929050565b600181811c9082168061211d57607f821691505b60208210810361213d57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156121a1576121a1612178565b500190565b6000600182016121b8576121b8612178565b5060010190565b60008160001904831182151516156121d9576121d9612178565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351612243818460208801611e28565b835190830190612257818360208801611e28565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122a390830184611e54565b9695505050505050565b6000602082840312156122bf57600080fd5b815161146281611df5565b634e487b7160e01b600052601260045260246000fd5b6000826122ef576122ef6122ca565b500490565b60008282101561230657612306612178565b500390565b60008261231a5761231a6122ca565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220cb759b4e0c0c975030141eee3559d2e6d69047db106bde6ee72e39e84f7ae7bd64736f6c634300080e0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000841494b61696a757a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000341494b0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): AIKaijuz
Arg [1] : _symbol (string): AIK

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [3] : 41494b61696a757a000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 41494b0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

42853:3682:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27125:372;;;;;;;;;;-1:-1:-1;27125:372:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;27125:372:0;;;;;;;;29011:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30573:214::-;;;;;;;;;;-1:-1:-1;30573:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;30573:214:0;1528:203:1;30094:413:0;;;;;;;;;;-1:-1:-1;30094:413:0;;;;;:::i;:::-;;:::i;:::-;;25382:100;;;;;;;;;;-1:-1:-1;25435:7:0;25462:12;25382:100;;;2319:25:1;;;2307:2;2292:18;25382:100:0;2173:177:1;45624:182:0;;;;;;;;;;-1:-1:-1;45624:182:0;;;;;:::i;:::-;;:::i;31449:162::-;;;;;;;;;;-1:-1:-1;31449:162:0;;;;;:::i;:::-;;:::i;26046:1007::-;;;;;;;;;;-1:-1:-1;26046:1007:0;;;;;:::i;:::-;;:::i;44436:592::-;;;;;;:::i;:::-;;:::i;46160:192::-;;;:::i;31682:177::-;;;;;;;;;;-1:-1:-1;31682:177:0;;;;;:::i;:::-;;:::i;45529:87::-;;;;;;;;;;-1:-1:-1;45529:87:0;;;;;:::i;:::-;;:::i;25559:187::-;;;;;;;;;;-1:-1:-1;25559:187:0;;;;;:::i;:::-;;:::i;45944:104::-;;;;;;;;;;-1:-1:-1;45944:104:0;;;;;:::i;:::-;;:::i;43138:26::-;;;;;;;;;;-1:-1:-1;43138:26:0;;;;;;;;28820:124;;;;;;;;;;-1:-1:-1;28820:124:0;;;;;:::i;:::-;;:::i;42949:21::-;;;;;;;;;;;;;:::i;27561:221::-;;;;;;;;;;-1:-1:-1;27561:221:0;;;;;:::i;:::-;;:::i;41960:103::-;;;;;;;;;;;;;:::i;46360:172::-;;;;;;:::i;:::-;;:::i;43179:59::-;;;;;;;;;;-1:-1:-1;43179:59:0;;;;;:::i;:::-;;;;;;;;;;;;;;45040:76;;;;;;;;;;;;;:::i;41309:87::-;;;;;;;;;;-1:-1:-1;41382:6:0;;-1:-1:-1;;;;;41382:6:0;41309:87;;29180:104;;;;;;;;;;;;;:::i;42977:34::-;;;;;;;;;;;;;;;;43738:690;;;;;;:::i;:::-;;:::i;30859:288::-;;;;;;;;;;-1:-1:-1;30859:288:0;;;;;:::i;:::-;;:::i;31930:355::-;;;;;;;;;;-1:-1:-1;31930:355:0;;;;;:::i;:::-;;:::i;45814:122::-;;;;;;;;;;-1:-1:-1;45814:122:0;;;;;:::i;:::-;;:::i;46056:96::-;;;;;;;;;;-1:-1:-1;46056:96:0;;;;;:::i;:::-;;:::i;45126:395::-;;;;;;;;;;-1:-1:-1;45126:395:0;;;;;:::i;:::-;;:::i;43018:31::-;;;;;;;;;;;;;;;;43098:33;;;;;;;;;;;;;;;;31218:164;;;;;;;;;;-1:-1:-1;31218:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31339:25:0;;;31315:4;31339:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31218:164;42218:201;;;;;;;;;;-1:-1:-1;42218:201:0;;;;;:::i;:::-;;:::i;43056:35::-;;;;;;;;;;;;;;;;27125:372;27227:4;-1:-1:-1;;;;;;27264:40:0;;-1:-1:-1;;;27264:40:0;;:105;;-1:-1:-1;;;;;;;27321:48:0;;-1:-1:-1;;;27321:48:0;27264:105;:172;;;-1:-1:-1;;;;;;;27386:50:0;;-1:-1:-1;;;27386:50:0;27264:172;:225;;;-1:-1:-1;;;;;;;;;;13572:40:0;;;27453:36;27244:245;27125:372;-1:-1:-1;;27125:372:0:o;29011:100::-;29065:13;29098:5;29091:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29011:100;:::o;30573:214::-;30641:7;30669:16;30677:7;32597:4;32631:12;-1:-1:-1;32621:22:0;32540:111;30669:16;30661:74;;;;-1:-1:-1;;;30661:74:0;;5980:2:1;30661:74:0;;;5962:21:1;6019:2;5999:18;;;5992:30;6058:34;6038:18;;;6031:62;-1:-1:-1;;;6109:18:1;;;6102:43;6162:19;;30661:74:0;;;;;;;;;-1:-1:-1;30755:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30755:24:0;;30573:214::o;30094:413::-;30167:13;30183:24;30199:7;30183:15;:24::i;:::-;30167:40;;30232:5;-1:-1:-1;;;;;30226:11:0;:2;-1:-1:-1;;;;;30226:11:0;;30218:58;;;;-1:-1:-1;;;30218:58:0;;6394:2:1;30218:58:0;;;6376:21:1;6433:2;6413:18;;;6406:30;6472:34;6452:18;;;6445:62;-1:-1:-1;;;6523:18:1;;;6516:32;6565:19;;30218:58:0;6192:398:1;30218:58:0;23915:10;-1:-1:-1;;;;;30311:21:0;;;;:62;;-1:-1:-1;30336:37:0;30353:5;23915:10;31218:164;:::i;30336:37::-;30289:169;;;;-1:-1:-1;;;30289:169:0;;6797:2:1;30289:169:0;;;6779:21:1;6836:2;6816:18;;;6809:30;6875:34;6855:18;;;6848:62;6946:27;6926:18;;;6919:55;6991:19;;30289:169:0;6595:421:1;30289:169:0;30471:28;30480:2;30484:7;30493:5;30471:8;:28::i;:::-;30156:351;30094:413;;:::o;45624:182::-;41382:6;;-1:-1:-1;;;;;41382:6:0;23915:10;41529:23;41521:68;;;;-1:-1:-1;;;41521:68:0;;;;;;;:::i;:::-;45722:9:::1;;45705:13;:26;;45697:65;;;::::0;-1:-1:-1;;;45697:65:0;;7584:2:1;45697:65:0::1;::::0;::::1;7566:21:1::0;7623:2;7603:18;;;7596:30;7662:28;7642:18;;;7635:56;7708:18;;45697:65:0::1;7382:350:1::0;45697:65:0::1;45773:9;:25:::0;45624:182::o;31449:162::-;31575:28;31585:4;31591:2;31595:7;31575:9;:28::i;26046:1007::-;26135:7;26171:16;26181:5;26171:9;:16::i;:::-;26163:5;:24;26155:71;;;;-1:-1:-1;;;26155:71:0;;7939:2:1;26155:71:0;;;7921:21:1;7978:2;7958:18;;;7951:30;8017:34;7997:18;;;7990:62;-1:-1:-1;;;8068:18:1;;;8061:32;8110:19;;26155:71:0;7737:398:1;26155:71:0;26237:22;25462:12;;;26237:22;;26500:466;26520:14;26516:1;:18;26500:466;;;26560:31;26594:14;;;:11;:14;;;;;;;;;26560:48;;;;;;;;;-1:-1:-1;;;;;26560:48:0;;;;;-1:-1:-1;;;26560:48:0;;;;;;;;;;;;26631:28;26627:111;;26704:14;;;-1:-1:-1;26627:111:0;26781:5;-1:-1:-1;;;;;26760:26:0;:17;-1:-1:-1;;;;;26760:26:0;;26756:195;;26830:5;26815:11;:20;26811:85;;-1:-1:-1;26871:1:0;-1:-1:-1;26864:8:0;;-1:-1:-1;;;26864:8:0;26811:85;26918:13;;;;;26756:195;-1:-1:-1;26536:3:0;;26500:466;;;-1:-1:-1;26989:56:0;;-1:-1:-1;;;26989:56:0;;8342:2:1;26989:56:0;;;8324:21:1;8381:2;8361:18;;;8354:30;8420:34;8400:18;;;8393:62;-1:-1:-1;;;8471:18:1;;;8464:44;8525:19;;26989:56:0;8140:410:1;44436:592:0;41382:6;;-1:-1:-1;;;;;41382:6:0;23915:10;41529:23;41521:68;;;;-1:-1:-1;;;41521:68:0;;;;;;;:::i;:::-;44509:14:::1;25462:12:::0;;44608:10:::1;44583:36:::0;;:24:::1;:36;::::0;;;;;;44652:13:::1;::::0;:17:::1;::::0;44668:1:::1;44652:17;:::i;:::-;44638:11;:31;44630:63;;;::::0;-1:-1:-1;;;44630:63:0;;9022:2:1;44630:63:0::1;::::0;::::1;9004:21:1::0;9061:2;9041:18;;;9034:30;-1:-1:-1;;;9080:18:1;;;9073:49;9139:18;;44630:63:0::1;8820:343:1::0;44630:63:0::1;44721:1;44707:11;:15;44699:41;;;::::0;-1:-1:-1;;;44699:41:0;;9370:2:1;44699:41:0::1;::::0;::::1;9352:21:1::0;9409:2;9389:18;;;9382:30;-1:-1:-1;;;9428:18:1;;;9421:42;9480:18;;44699:41:0::1;9168:336:1::0;44699:41:0::1;44777:9;::::0;44753:20:::1;44762:11:::0;44753:6;:20:::1;:::i;:::-;:33;;44745:67;;;::::0;-1:-1:-1;;;44745:67:0;;9711:2:1;44745:67:0::1;::::0;::::1;9693:21:1::0;9750:2;9730:18;;;9723:30;-1:-1:-1;;;9769:18:1;;;9762:50;9829:18;;44745:67:0::1;9509:344:1::0;44745:67:0::1;44822:9;44817:101;44841:11;44837:1;:15;44817:101;;;44899:10;44874:36;::::0;;;:24:::1;:36;::::0;;;;:38;;;::::1;::::0;::::1;:::i;:::-;;;;;;44854:3;;;;:::i;:::-;;;44817:101;;;;44928:34;44938:10;44950:11;44928:9;:34::i;46160:192::-:0;41382:6;;-1:-1:-1;;;;;41382:6:0;23915:10;41529:23;41521:68;;;;-1:-1:-1;;;41521:68:0;;;;;;;:::i;:::-;46235:82:::1;::::0;46217:12:::1;::::0;46243:10:::1;::::0;46281:21:::1;::::0;46217:12;46235:82;46217:12;46235:82;46281:21;46243:10;46235:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46216:101;;;46336:7;46328:16;;;::::0;::::1;;46205:147;46160:192::o:0;31682:177::-;31812:39;31829:4;31835:2;31839:7;31812:39;;;;;;;;;;;;:16;:39::i;45529:87::-;41382:6;;-1:-1:-1;;;;;41382:6:0;23915:10;41529:23;41521:68;;;;-1:-1:-1;;;41521:68:0;;;;;;;:::i;:::-;45592:5:::1;:16:::0;45529:87::o;25559:187::-;25626:7;25462:12;;25654:5;:21;25646:69;;;;-1:-1:-1;;;25646:69:0;;10410:2:1;25646:69:0;;;10392:21:1;10449:2;10429:18;;;10422:30;10488:34;10468:18;;;10461:62;-1:-1:-1;;;10539:18:1;;;10532:33;10582:19;;25646:69:0;10208:399:1;25646:69:0;-1:-1:-1;25733:5:0;25559:187::o;45944:104::-;41382:6;;-1:-1:-1;;;;;41382:6:0;23915:10;41529:23;41521:68;;;;-1:-1:-1;;;41521:68:0;;;;;;;:::i;:::-;46019:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;45944:104:::0;:::o;28820:124::-;28884:7;28911:20;28923:7;28911:11;:20::i;:::-;:25;;28820:124;-1:-1:-1;;28820:124:0:o;42949:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27561:221::-;27625:7;-1:-1:-1;;;;;27653:19:0;;27645:75;;;;-1:-1:-1;;;27645:75:0;;10814:2:1;27645:75:0;;;10796:21:1;10853:2;10833:18;;;10826:30;10892:34;10872:18;;;10865:62;-1:-1:-1;;;10943:18:1;;;10936:41;10994:19;;27645:75:0;10612:407:1;27645:75:0;-1:-1:-1;;;;;;27746:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;27746:27:0;;27561:221::o;41960:103::-;41382:6;;-1:-1:-1;;;;;41382:6:0;23915:10;41529:23;41521:68;;;;-1:-1:-1;;;41521:68:0;;;;;;;:::i;:::-;42025:30:::1;42052:1;42025:18;:30::i;:::-;41960:103::o:0;46360:172::-;41382:6;;-1:-1:-1;;;;;41382:6:0;23915:10;41529:23;41521:68;;;;-1:-1:-1;;;41521:68:0;;;;;;;:::i;:::-;46453:44:::1;::::0;46435:12:::1;::::0;46461:10:::1;::::0;46485:7;;46435:12;46453:44;46435:12;46453:44;46485:7;46461:10;46453:44:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46434:63;;;46516:7;46508:16;;;::::0;::::1;45040:76:::0;41382:6;;-1:-1:-1;;;;;41382:6:0;23915:10;41529:23;41521:68;;;;-1:-1:-1;;;41521:68:0;;;;;;;:::i;:::-;45102:6:::1;::::0;;-1:-1:-1;;45092:16:0;::::1;45102:6;::::0;;::::1;45101:7;45092:16;::::0;;45040:76::o;29180:104::-;29236:13;29269:7;29262:14;;;;;:::i;43738:690::-;22209:1;22807:7;;:19;22799:63;;;;-1:-1:-1;;;22799:63:0;;11226:2:1;22799:63:0;;;11208:21:1;11265:2;11245:18;;;11238:30;11304:33;11284:18;;;11277:61;11355:18;;22799:63:0;11024:355:1;22799:63:0;22209:1;22940:7;:18;43838:5:::1;::::0;43597:13:::1;::::0;43845:11;;;43567:13:::1;25435:7:::0;25462:12;;25382:100;43567:13:::1;:27;;;;:::i;:::-;:43;43564:143;;;43655:9;43632:18;43639:11:::0;43632:4;:18:::1;:::i;:::-;43631:33;43623:72;;;::::0;-1:-1:-1;;;43623:72:0;;11759:2:1;43623:72:0::1;::::0;::::1;11741:21:1::0;11798:2;11778:18;;;11771:30;11837:27;11817:18;;;11810:55;11882:18;;43623:72:0::1;11557:349:1::0;43623:72:0::1;43869:14:::2;25462:12:::0;;43968:10:::2;43943:36:::0;;:24:::2;:36;::::0;;;;;;43998:6:::2;::::0;::::2;;43990:32;;;::::0;-1:-1:-1;;;43990:32:0;;12113:2:1;43990:32:0::2;::::0;::::2;12095:21:1::0;12152:2;12132:18;;;12125:30;-1:-1:-1;;;12171:18:1;;;12164:43;12224:18;;43990:32:0::2;11911:337:1::0;43990:32:0::2;44055:13;::::0;:17:::2;::::0;44071:1:::2;44055:17;:::i;:::-;44041:11;:31;44033:63;;;::::0;-1:-1:-1;;;44033:63:0;;9022:2:1;44033:63:0::2;::::0;::::2;9004:21:1::0;9061:2;9041:18;;;9034:30;-1:-1:-1;;;9080:18:1;;;9073:49;9139:18;;44033:63:0::2;8820:343:1::0;44033:63:0::2;44124:1;44110:11;:15;44102:41;;;::::0;-1:-1:-1;;;44102:41:0;;9370:2:1;44102:41:0::2;::::0;::::2;9352:21:1::0;9409:2;9389:18;;;9382:30;-1:-1:-1;;;9428:18:1;;;9421:42;9480:18;;44102:41:0::2;9168:336:1::0;44102:41:0::2;44180:9;::::0;44156:20:::2;44165:11:::0;44156:6;:20:::2;:::i;:::-;:33;;44148:67;;;::::0;-1:-1:-1;;;44148:67:0;;9711:2:1;44148:67:0::2;::::0;::::2;9693:21:1::0;9750:2;9730:18;;;9723:30;-1:-1:-1;;;9769:18:1;;;9762:50;9829:18;;44148:67:0::2;9509:344:1::0;44148:67:0::2;44225:9;44220:101;44244:11;44240:1;:15;44220:101;;;44302:10;44277:36;::::0;;;:24:::2;:36;::::0;;;;:38;;;::::2;::::0;::::2;:::i;:::-;;;;;;44257:3;;;;:::i;:::-;;;44220:101;;;;44331:34;44341:10;44353:11;44331:9;:34::i;:::-;-1:-1:-1::0;;22165:1:0;23119:7;:22;-1:-1:-1;;;43738:690:0:o;30859:288::-;23915:10;-1:-1:-1;;;;;30954:24:0;;;30946:63;;;;-1:-1:-1;;;30946:63:0;;12455:2:1;30946:63:0;;;12437:21:1;12494:2;12474:18;;;12467:30;12533:28;12513:18;;;12506:56;12579:18;;30946:63:0;12253:350:1;30946:63:0;23915:10;31022:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31022:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31022:53:0;;;;;;;;;;31091:48;;540:41:1;;;31022:42:0;;23915:10;31091:48;;513:18:1;31091:48:0;;;;;;;30859:288;;:::o;31930:355::-;32089:28;32099:4;32105:2;32109:7;32089:9;:28::i;:::-;32150:48;32173:4;32179:2;32183:7;32192:5;32150:22;:48::i;:::-;32128:149;;;;-1:-1:-1;;;32128:149:0;;;;;;;:::i;:::-;31930:355;;;;:::o;45814:122::-;41382:6;;-1:-1:-1;;;;;41382:6:0;23915:10;41529:23;41521:68;;;;-1:-1:-1;;;41521:68:0;;;;;;;:::i;:::-;45895:13:::1;:33:::0;45814:122::o;46056:96::-;41382:6;;-1:-1:-1;;;;;41382:6:0;23915:10;41529:23;41521:68;;;;-1:-1:-1;;;41521:68:0;;;;;;;:::i;:::-;46121:13:::1;:23:::0;46056:96::o;45126:395::-;45199:13;45233:16;45241:7;32597:4;32631:12;-1:-1:-1;32621:22:0;32540:111;45233:16;45225:62;;;;-1:-1:-1;;;45225:62:0;;13230:2:1;45225:62:0;;;13212:21:1;13269:2;13249:18;;;13242:30;13308:34;13288:18;;;13281:62;-1:-1:-1;;;13359:18:1;;;13352:31;13400:19;;45225:62:0;13028:397:1;45225:62:0;45298:28;45329:10;:8;:10::i;:::-;45298:41;;45401:1;45376:14;45370:28;:32;:143;;;;;;;;;;;;;;;;;45446:14;45462:18;:7;:16;:18::i;:::-;45429:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45370:143;45350:163;45126:395;-1:-1:-1;;;45126:395:0:o;42218:201::-;41382:6;;-1:-1:-1;;;;;41382:6:0;23915:10;41529:23;41521:68;;;;-1:-1:-1;;;41521:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42307:22:0;::::1;42299:73;;;::::0;-1:-1:-1;;;42299:73:0;;14274:2:1;42299:73:0::1;::::0;::::1;14256:21:1::0;14313:2;14293:18;;;14286:30;14352:34;14332:18;;;14325:62;-1:-1:-1;;;14403:18:1;;;14396:36;14449:19;;42299:73:0::1;14072:402:1::0;42299:73:0::1;42383:28;42402:8;42383:18;:28::i;37460:196::-:0;37575:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;37575:29:0;-1:-1:-1;;;;;37575:29:0;;;;;;;;;37620:28;;37575:24;;37620:28;;;;;;;37460:196;;;:::o;35340:2002::-;35455:35;35493:20;35505:7;35493:11;:20::i;:::-;35568:18;;35455:58;;-1:-1:-1;35526:22:0;;-1:-1:-1;;;;;35552:34:0;23915:10;-1:-1:-1;;;;;35552:34:0;;:87;;;-1:-1:-1;23915:10:0;35603:20;35615:7;35603:11;:20::i;:::-;-1:-1:-1;;;;;35603:36:0;;35552:87;:154;;;-1:-1:-1;35673:18:0;;35656:50;;23915:10;31218:164;:::i;35656:50::-;35526:181;;35728:17;35720:80;;;;-1:-1:-1;;;35720:80:0;;14681:2:1;35720:80:0;;;14663:21:1;14720:2;14700:18;;;14693:30;14759:34;14739:18;;;14732:62;-1:-1:-1;;;14810:18:1;;;14803:48;14868:19;;35720:80:0;14479:414:1;35720:80:0;35843:4;-1:-1:-1;;;;;35821:26:0;:13;:18;;;-1:-1:-1;;;;;35821:26:0;;35813:77;;;;-1:-1:-1;;;35813:77:0;;15100:2:1;35813:77:0;;;15082:21:1;15139:2;15119:18;;;15112:30;15178:34;15158:18;;;15151:62;-1:-1:-1;;;15229:18:1;;;15222:36;15275:19;;35813:77:0;14898:402:1;35813:77:0;-1:-1:-1;;;;;35909:16:0;;35901:66;;;;-1:-1:-1;;;35901:66:0;;15507:2:1;35901:66:0;;;15489:21:1;15546:2;15526:18;;;15519:30;15585:34;15565:18;;;15558:62;-1:-1:-1;;;15636:18:1;;;15629:35;15681:19;;35901:66:0;15305:401:1;35901:66:0;36088:49;36105:1;36109:7;36118:13;:18;;;36088:8;:49::i;:::-;-1:-1:-1;;;;;36433:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;36433:31:0;;;-1:-1:-1;;;;;36433:31:0;;;-1:-1:-1;;36433:31:0;;;;;;;36479:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;36479:29:0;;;;;;;;;;;;;36525:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;36570:61:0;;;;-1:-1:-1;;;36615:15:0;36570:61;;;;;;36905:11;;;36935:24;;;;;:29;36905:11;;36935:29;36931:295;;37003:20;37011:11;32597:4;32631:12;-1:-1:-1;32621:22:0;32540:111;37003:20;36999:212;;;37080:18;;;37048:24;;;:11;:24;;;;;;;;:50;;37163:28;;;;37121:70;;-1:-1:-1;;;37121:70:0;-1:-1:-1;;;;;;37121:70:0;;;-1:-1:-1;;;;;37048:50:0;;;37121:70;;;;;;;36999:212;36408:829;37273:7;37269:2;-1:-1:-1;;;;;37254:27:0;37263:4;-1:-1:-1;;;;;37254:27:0;;;;;;;;;;;37292:42;35444:1898;;35340:2002;;;:::o;32659:104::-;32728:27;32738:2;32742:8;32728:27;;;;;;;;;;;;:9;:27::i;28221:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;28324:16:0;28332:7;32597:4;32631:12;-1:-1:-1;32621:22:0;32540:111;28324:16;28316:71;;;;-1:-1:-1;;;28316:71:0;;15913:2:1;28316:71:0;;;15895:21:1;15952:2;15932:18;;;15925:30;15991:34;15971:18;;;15964:62;-1:-1:-1;;;16042:18:1;;;16035:40;16092:19;;28316:71:0;15711:406:1;28316:71:0;28445:7;28425:245;28492:31;28526:17;;;:11;:17;;;;;;;;;28492:51;;;;;;;;;-1:-1:-1;;;;;28492:51:0;;;;;-1:-1:-1;;;28492:51:0;;;;;;;;;;;;28566:28;28562:93;;28626:9;28221:537;-1:-1:-1;;;28221:537:0:o;28562:93::-;-1:-1:-1;;;28465:6:0;28425:245;;42579:191;42672:6;;;-1:-1:-1;;;;;42689:17:0;;;-1:-1:-1;;;;;;42689:17:0;;;;;;;42722:40;;42672:6;;;42689:17;42672:6;;42722:40;;42653:16;;42722:40;42642:128;42579:191;:::o;38221:804::-;38376:4;-1:-1:-1;;;;;38397:13:0;;3652:19;:23;38393:625;;38433:72;;-1:-1:-1;;;38433:72:0;;-1:-1:-1;;;;;38433:36:0;;;;;:72;;23915:10;;38484:4;;38490:7;;38499:5;;38433:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38433:72:0;;;;;;;;-1:-1:-1;;38433:72:0;;;;;;;;;;;;:::i;:::-;;;38429:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38679:6;:13;38696:1;38679:18;38675:273;;38722:61;;-1:-1:-1;;;38722:61:0;;;;;;;:::i;38675:273::-;38898:6;38892:13;38883:6;38879:2;38875:15;38868:38;38429:534;-1:-1:-1;;;;;;38556:55:0;-1:-1:-1;;;38556:55:0;;-1:-1:-1;38549:62:0;;38393:625;-1:-1:-1;39002:4:0;38393:625;38221:804;;;;;;:::o;43376:108::-;43436:13;43469:7;43462:14;;;;;:::i;365:723::-;421:13;642:5;651:1;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;33126:163;33249:32;33255:2;33259:8;33269:5;33276:4;33687:20;33710:12;-1:-1:-1;;;;;33741:16:0;;33733:62;;;;-1:-1:-1;;;33733:62:0;;18124:2:1;33733:62:0;;;18106:21:1;18163:2;18143:18;;;18136:30;18202:34;18182:18;;;18175:62;-1:-1:-1;;;18253:18:1;;;18246:31;18294:19;;33733:62:0;17922:397:1;33733:62:0;33814:8;33826:1;33814:13;33806:66;;;;-1:-1:-1;;;33806:66:0;;18526:2:1;33806:66:0;;;18508:21:1;18565:2;18545:18;;;18538:30;18604:34;18584:18;;;18577:62;-1:-1:-1;;;18655:18:1;;;18648:38;18703:19;;33806:66:0;18324:404:1;33806:66:0;-1:-1:-1;;;;;34224:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;34224:45:0;;-1:-1:-1;;;;;34224:45:0;;;;;;;;;;34284:50;;;;;;;;;;;;;;34351:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;34401:66:0;;;;-1:-1:-1;;;34451:15:0;34401:66;;;;;;;34351:25;;34536:415;34556:8;34552:1;:12;34536:415;;;34595:38;;34620:12;;-1:-1:-1;;;;;34595:38:0;;;34612:1;;34595:38;;34612:1;;34595:38;34656:4;34652:249;;;34719:59;34750:1;34754:2;34758:12;34772:5;34719:22;:59::i;:::-;34685:196;;;;-1:-1:-1;;;34685:196:0;;;;;;;:::i;:::-;34921:14;;;;;34566:3;34536:415;;;-1:-1:-1;34967:12:0;:27;35018:60;31930:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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:127::-;2749:10;2744:3;2740:20;2737:1;2730:31;2780:4;2777:1;2770:15;2804:4;2801:1;2794:15;2820:632;2885:5;2915:18;2956:2;2948:6;2945:14;2942:40;;;2962:18;;:::i;:::-;3037:2;3031:9;3005:2;3091:15;;-1:-1:-1;;3087:24:1;;;3113:2;3083:33;3079:42;3067:55;;;3137:18;;;3157:22;;;3134:46;3131:72;;;3183:18;;:::i;:::-;3223:10;3219:2;3212:22;3252:6;3243:15;;3282:6;3274;3267:22;3322:3;3313:6;3308:3;3304:16;3301:25;3298:45;;;3339:1;3336;3329:12;3298:45;3389:6;3384:3;3377:4;3369:6;3365:17;3352:44;3444:1;3437:4;3428:6;3420;3416:19;3412:30;3405:41;;;;2820:632;;;;;:::o;3457:451::-;3526:6;3579:2;3567:9;3558:7;3554:23;3550:32;3547:52;;;3595:1;3592;3585:12;3547:52;3635:9;3622:23;3668:18;3660:6;3657:30;3654:50;;;3700:1;3697;3690:12;3654:50;3723:22;;3776:4;3768:13;;3764:27;-1:-1:-1;3754:55:1;;3805:1;3802;3795:12;3754:55;3828:74;3894:7;3889:2;3876:16;3871:2;3867;3863:11;3828:74;:::i;3913:186::-;3972:6;4025:2;4013:9;4004:7;4000:23;3996:32;3993:52;;;4041:1;4038;4031:12;3993:52;4064:29;4083:9;4064:29;:::i;4104:347::-;4169:6;4177;4230:2;4218:9;4209:7;4205:23;4201:32;4198:52;;;4246:1;4243;4236:12;4198:52;4269:29;4288:9;4269:29;:::i;:::-;4259:39;;4348:2;4337:9;4333:18;4320:32;4395:5;4388:13;4381:21;4374:5;4371:32;4361:60;;4417:1;4414;4407:12;4361:60;4440:5;4430:15;;;4104:347;;;;;:::o;4456:667::-;4551:6;4559;4567;4575;4628:3;4616:9;4607:7;4603:23;4599:33;4596:53;;;4645:1;4642;4635:12;4596:53;4668:29;4687:9;4668:29;:::i;:::-;4658:39;;4716:38;4750:2;4739:9;4735:18;4716:38;:::i;:::-;4706:48;;4801:2;4790:9;4786:18;4773:32;4763:42;;4856:2;4845:9;4841:18;4828:32;4883:18;4875:6;4872:30;4869:50;;;4915:1;4912;4905:12;4869:50;4938:22;;4991:4;4983:13;;4979:27;-1:-1:-1;4969:55:1;;5020:1;5017;5010:12;4969:55;5043:74;5109:7;5104:2;5091:16;5086:2;5082;5078:11;5043:74;:::i;:::-;5033:84;;;4456:667;;;;;;;:::o;5128:260::-;5196:6;5204;5257:2;5245:9;5236:7;5232:23;5228:32;5225:52;;;5273:1;5270;5263:12;5225:52;5296:29;5315:9;5296:29;:::i;:::-;5286:39;;5344:38;5378:2;5367:9;5363:18;5344:38;:::i;:::-;5334:48;;5128:260;;;;;:::o;5393:380::-;5472:1;5468:12;;;;5515;;;5536:61;;5590:4;5582:6;5578:17;5568:27;;5536:61;5643:2;5635:6;5632:14;5612:18;5609:38;5606:161;;5689:10;5684:3;5680:20;5677:1;5670:31;5724:4;5721:1;5714:15;5752:4;5749:1;5742:15;5606:161;;5393:380;;;:::o;7021:356::-;7223:2;7205:21;;;7242:18;;;7235:30;7301:34;7296:2;7281:18;;7274:62;7368:2;7353:18;;7021:356::o;8555:127::-;8616:10;8611:3;8607:20;8604:1;8597:31;8647:4;8644:1;8637:15;8671:4;8668:1;8661:15;8687:128;8727:3;8758:1;8754:6;8751:1;8748:13;8745:39;;;8764:18;;:::i;:::-;-1:-1:-1;8800:9:1;;8687:128::o;9858:135::-;9897:3;9918:17;;;9915:43;;9938:18;;:::i;:::-;-1:-1:-1;9985:1:1;9974:13;;9858:135::o;11384:168::-;11424:7;11490:1;11486;11482:6;11478:14;11475:1;11472:21;11467:1;11460:9;11453:17;11449:45;11446:71;;;11497:18;;:::i;:::-;-1:-1:-1;11537:9:1;;11384:168::o;12608:415::-;12810:2;12792:21;;;12849:2;12829:18;;;12822:30;12888:34;12883:2;12868:18;;12861:62;-1:-1:-1;;;12954:2:1;12939:18;;12932:49;13013:3;12998:19;;12608:415::o;13430:637::-;13710:3;13748:6;13742:13;13764:53;13810:6;13805:3;13798:4;13790:6;13786:17;13764:53;:::i;:::-;13880:13;;13839:16;;;;13902:57;13880:13;13839:16;13936:4;13924:17;;13902:57;:::i;:::-;-1:-1:-1;;;13981:20:1;;14010:22;;;14059:1;14048:13;;13430:637;-1:-1:-1;;;;13430:637:1:o;16538:489::-;-1:-1:-1;;;;;16807:15:1;;;16789:34;;16859:15;;16854:2;16839:18;;16832:43;16906:2;16891:18;;16884:34;;;16954:3;16949:2;16934:18;;16927:31;;;16732:4;;16975:46;;17001:19;;16993:6;16975:46;:::i;:::-;16967:54;16538:489;-1:-1:-1;;;;;;16538:489:1:o;17032:249::-;17101:6;17154:2;17142:9;17133:7;17129:23;17125:32;17122:52;;;17170:1;17167;17160:12;17122:52;17202:9;17196:16;17221:30;17245:5;17221:30;:::i;17286:127::-;17347:10;17342:3;17338:20;17335:1;17328:31;17378:4;17375:1;17368:15;17402:4;17399:1;17392:15;17418:120;17458:1;17484;17474:35;;17489:18;;:::i;:::-;-1:-1:-1;17523:9:1;;17418:120::o;17543:125::-;17583:4;17611:1;17608;17605:8;17602:34;;;17616:18;;:::i;:::-;-1:-1:-1;17653:9:1;;17543:125::o;17673:112::-;17705:1;17731;17721:35;;17736:18;;:::i;:::-;-1:-1:-1;17770:9:1;;17673:112::o;17790:127::-;17851:10;17846:3;17842:20;17839:1;17832:31;17882:4;17879:1;17872:15;17906:4;17903:1;17896:15

Swarm Source

ipfs://cb759b4e0c0c975030141eee3559d2e6d69047db106bde6ee72e39e84f7ae7bd
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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