ETH Price: $3,471.36 (+6.91%)
Gas: 7 Gwei

Token

Moonfighter (MOONFIGHTER)
 

Overview

Max Total Supply

610 MOONFIGHTER

Holders

109

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 MOONFIGHTER
0x20fe10b966708b772e912458932a1206aa8d7e40
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:
Moonfighter

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-26
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

pragma solidity ^0.8.0;
/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

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


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


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

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

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

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

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

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

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

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

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

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

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

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

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


pragma solidity ^0.8.0;
/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: 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 virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev 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("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


pragma solidity ^0.8.1;

interface ERC721Interface {
    function balanceOf(address owner) external view returns (uint256);
}

contract Moonfighter is ERC721Enumerable, Ownable {
    using SafeMath for uint256;
    using Strings for uint256;
    uint256 public constant MAXGASMASK = 5555;
    uint256 public constant freeMints = 500;
    uint256 public constant maxFreeMintsPerWallet = 50;
    uint256 public maxGasmasksPurchase = 20;
    uint256 public _price = 0.015 ether;
    uint256 public tokenCounter;
    string public _baseTokenURI;
    bool public isSaleActive;
    address public cyberKongzAddress;

    ERC721Interface kongzContract;

    mapping (uint256 => string) private _tokenURIs;
    mapping (address => bool) public freeMintsCyberKongz;
    mapping (address => uint256) private freeMintsWallet;

    constructor(string memory baseURI, address erc721address) ERC721("Moonfighter", "MOONFIGHTER") {
        setBaseURI(baseURI);
        isSaleActive = false;
        tokenCounter = 0;
        cyberKongzAddress = erc721address;
        kongzContract = ERC721Interface(cyberKongzAddress);
    }

    function mintNFT(uint256 numberOfGasmasks) public payable {
        require(isSaleActive, "Sale is not active!");
        require(numberOfGasmasks >= 0 && numberOfGasmasks <= maxGasmasksPurchase,
            "You can only mint 20 Gasmasks at a time!");
        require(totalSupply().add(numberOfGasmasks) <= MAXGASMASK,
            "Hold up! You would buy more Gasmasks than available...");

        if(totalSupply() >= freeMints){
            require(msg.value >= _price.mul(numberOfGasmasks),
                "Not enough ETH for this purchase!");
        }else{
            require(totalSupply().add(numberOfGasmasks) <= freeMints,
                "You would exceed the number of free mints");
            require(freeMintsWallet[msg.sender].add(numberOfGasmasks) <= maxFreeMintsPerWallet, 
                "You can only mint 50 Gasmasks for free!");
            freeMintsWallet[msg.sender] += numberOfGasmasks;
        }
        for (uint256 i = 0; i < numberOfGasmasks; i++){
            //uint256 tokenNr = totalSupply();
            if (totalSupply() < MAXGASMASK) {
                _safeMint(msg.sender, tokenCounter+1);
                tokenCounter++;
            }
        }   
    }

    function mintCyberkongzs() public {
        require(isSaleActive, "Sale is not active!");
        require(kongzContract.balanceOf(msg.sender) > 0, "You do not own any CyberKongz!");
        require(!freeMintsCyberKongz[msg.sender], "You already got your free mint!");
        require(totalSupply().add(1) <= MAXGASMASK, 
            "Hold up! You would buy more Gasmasks than available...");

        _safeMint(msg.sender, tokenCounter+1);
        tokenCounter++;
        freeMintsCyberKongz[msg.sender] = true;
    }

    function gasmasksOfOwner(address _owner) external view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            return new uint256[](0);
        } else {
            uint256[] memory tokensId = new uint256[](tokenCount);
            for (uint256 i = 0; i < tokenCount; i++){
                tokensId[i] = tokenOfOwnerByIndex(_owner, i);
            }
            return tokensId;
        }
    }

    function setGasmaskPrice(uint256 newPrice) public onlyOwner {
        _price = newPrice;
    }

    function flipSaleState() public onlyOwner {
        isSaleActive = !isSaleActive;
    }

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

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

    function giveAway(address _to, uint256 _amount) external onlyOwner() {
        require(totalSupply().add(_amount) <= MAXGASMASK,
            "Hold up! You would buy more Gasmasks than available...");
        for(uint256 i = 0; i < _amount; i++){
            _safeMint(_to, tokenCounter + 1);
            tokenCounter++;
        }
    }

    function withdrawAll() public onlyOwner {
        uint256 balance = address(this).balance;
        require(payable(msg.sender).send(balance),
            "Withdraw did not work...");
    }

    function withdraw(uint256 _amount) public onlyOwner {
        uint256 balance = address(this).balance;
        require(_amount < balance, "Amount is larger than balance");
        require(payable(msg.sender).send(_amount),
            "Withdraw did not work...");
    }

    function changeKongzAddress(address _newAddress) public onlyOwner {
        cyberKongzAddress = _newAddress;
        kongzContract = ERC721Interface(cyberKongzAddress);
    }

    function contractURI() public view returns (string memory) {
        string memory baseURI = _baseURI();
        uint256 tokenId = 0;
        return string(abi.encodePacked(baseURI, tokenId.toString()));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"address","name":"erc721address","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAXGASMASK","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"changeKongzAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cyberKongzAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintsCyberKongz","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"gasmasksOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","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":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintsPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxGasmasksPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintCyberkongzs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfGasmasks","type":"uint256"}],"name":"mintNFT","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setGasmaskPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenCounter","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":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526014600b5566354a6ba7a18000600c553480156200002157600080fd5b5060405162002d5338038062002d538339810160408190526200004491620002cc565b6040518060400160405280600b81526020016a26b7b7b73334b3b43a32b960a91b8152506040518060400160405280600b81526020016a26a7a7a72324a3a42a22a960a91b8152508160009080519060200190620000a4929190620001f3565b508051620000ba906001906020840190620001f3565b5050506000620000cf6200017760201b60201c565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000128826200017b565b600f80546000600d556001600160a81b0319166101006001600160a01b039384168102919091179182905560108054919092049092166001600160a01b031990921691909117905550620003fa565b3390565b600a546001600160a01b03163314620001da5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001ef90600e906020840190620001f3565b5050565b8280546200020190620003bd565b90600052602060002090601f01602090048101928262000225576000855562000270565b82601f106200024057805160ff191683800117855562000270565b8280016001018555821562000270579182015b828111156200027057825182559160200191906001019062000253565b506200027e92915062000282565b5090565b5b808211156200027e576000815560010162000283565b634e487b7160e01b600052604160045260246000fd5b80516001600160a01b0381168114620002c757600080fd5b919050565b60008060408385031215620002e057600080fd5b82516001600160401b0380821115620002f857600080fd5b818501915085601f8301126200030d57600080fd5b81518181111562000322576200032262000299565b604051601f8201601f19908116603f011681019083821181831017156200034d576200034d62000299565b816040528281526020935088848487010111156200036a57600080fd5b600091505b828210156200038e57848201840151818301850152908301906200036f565b82821115620003a05760008484830101525b9550620003b2915050858201620002af565b925050509250929050565b600181811c90821680620003d257607f821691505b60208210811415620003f457634e487b7160e01b600052602260045260246000fd5b50919050565b612949806200040a6000396000f3fe60806040526004361061023a5760003560e01c80637076d0d51161012e578063a22cb465116100ab578063cfc86f7b1161006f578063cfc86f7b14610676578063d082e3811461068b578063e8a3d485146106a1578063e985e9c5146106b6578063f2fde38b146106ff57600080fd5b8063a22cb465146105d6578063b0114bf1146105f6578063b88d4fde14610616578063c87b56dd14610636578063ca8001441461065657600080fd5b80638c4f5f8e116100f25780638c4f5f8e1461054e5780638da5cb5b1461057b578063926427441461059957806395d89b41146105ac57806397e32949146105c157600080fd5b80637076d0d5146104ce57806370a08231146104ee578063715018a61461050e57806380b1733514610523578063853828b61461053957600080fd5b80632e1a7d4d116101bc5780634f6ccce7116101805780634f6ccce71461043e57806355f804b31461045e578063564566a81461047e5780635d3b4f1d146104985780636352211e146104ae57600080fd5b80632e1a7d4d146103b45780632f745c59146103d457806334918dfd146103f457806342842e0e146104095780634cb1ac021461042957600080fd5b806318160ddd1161020357806318160ddd146103145780631ea04b6d14610329578063235b6ea11461034e57806323b872dd146103645780632cda8edf1461038457600080fd5b80620991341461023f57806301ffc9a71461026857806306fdde0314610298578063081812fc146102ba578063095ea7b3146102f2575b600080fd5b34801561024b57600080fd5b50610255600b5481565b6040519081526020015b60405180910390f35b34801561027457600080fd5b506102886102833660046122e3565b61071f565b604051901515815260200161025f565b3480156102a457600080fd5b506102ad61074a565b60405161025f9190612358565b3480156102c657600080fd5b506102da6102d536600461236b565b6107dc565b6040516001600160a01b03909116815260200161025f565b3480156102fe57600080fd5b5061031261030d3660046123a0565b610876565b005b34801561032057600080fd5b50600854610255565b34801561033557600080fd5b50600f546102da9061010090046001600160a01b031681565b34801561035a57600080fd5b50610255600c5481565b34801561037057600080fd5b5061031261037f3660046123ca565b61098c565b34801561039057600080fd5b5061028861039f366004612406565b60126020526000908152604090205460ff1681565b3480156103c057600080fd5b506103126103cf36600461236b565b6109bd565b3480156103e057600080fd5b506102556103ef3660046123a0565b610a9e565b34801561040057600080fd5b50610312610b34565b34801561041557600080fd5b506103126104243660046123ca565b610b72565b34801561043557600080fd5b50610255603281565b34801561044a57600080fd5b5061025561045936600461236b565b610b8d565b34801561046a57600080fd5b506103126104793660046124ad565b610c20565b34801561048a57600080fd5b50600f546102889060ff1681565b3480156104a457600080fd5b506102556115b381565b3480156104ba57600080fd5b506102da6104c936600461236b565b610c5d565b3480156104da57600080fd5b506103126104e936600461236b565b610cd4565b3480156104fa57600080fd5b50610255610509366004612406565b610d03565b34801561051a57600080fd5b50610312610d8a565b34801561052f57600080fd5b506102556101f481565b34801561054557600080fd5b50610312610dfe565b34801561055a57600080fd5b5061056e610569366004612406565b610e90565b60405161025f91906124f6565b34801561058757600080fd5b50600a546001600160a01b03166102da565b6103126105a736600461236b565b610f4f565b3480156105b857600080fd5b506102ad611217565b3480156105cd57600080fd5b50610312611226565b3480156105e257600080fd5b506103126105f136600461253a565b6113fb565b34801561060257600080fd5b50610312610611366004612406565b6114c0565b34801561062257600080fd5b50610312610631366004612576565b611530565b34801561064257600080fd5b506102ad61065136600461236b565b611568565b34801561066257600080fd5b506103126106713660046123a0565b611643565b34801561068257600080fd5b506102ad6116e1565b34801561069757600080fd5b50610255600d5481565b3480156106ad57600080fd5b506102ad61176f565b3480156106c257600080fd5b506102886106d13660046125f2565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561070b57600080fd5b5061031261071a366004612406565b6117b0565b60006001600160e01b0319821663780e9d6360e01b148061074457506107448261189b565b92915050565b60606000805461075990612625565b80601f016020809104026020016040519081016040528092919081815260200182805461078590612625565b80156107d25780601f106107a7576101008083540402835291602001916107d2565b820191906000526020600020905b8154815290600101906020018083116107b557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661085a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061088182610c5d565b9050806001600160a01b0316836001600160a01b031614156108ef5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610851565b336001600160a01b038216148061090b575061090b81336106d1565b61097d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610851565b61098783836118eb565b505050565b6109963382611959565b6109b25760405162461bcd60e51b81526004016108519061265a565b610987838383611a50565b600a546001600160a01b031633146109e75760405162461bcd60e51b8152600401610851906126ab565b47808210610a375760405162461bcd60e51b815260206004820152601d60248201527f416d6f756e74206973206c6172676572207468616e2062616c616e63650000006044820152606401610851565b604051339083156108fc029084906000818181858888f19350505050610a9a5760405162461bcd60e51b81526020600482015260186024820152772bb4ba34323930bb903234b2103737ba103bb7b93597171760411b6044820152606401610851565b5050565b6000610aa983610d03565b8210610b0b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610851565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610b5e5760405162461bcd60e51b8152600401610851906126ab565b600f805460ff19811660ff90911615179055565b61098783838360405180602001604052806000815250611530565b6000610b9860085490565b8210610bfb5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610851565b60088281548110610c0e57610c0e6126e0565b90600052602060002001549050919050565b600a546001600160a01b03163314610c4a5760405162461bcd60e51b8152600401610851906126ab565b8051610a9a90600e906020840190612234565b6000818152600260205260408120546001600160a01b0316806107445760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610851565b600a546001600160a01b03163314610cfe5760405162461bcd60e51b8152600401610851906126ab565b600c55565b60006001600160a01b038216610d6e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610851565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610db45760405162461bcd60e51b8152600401610851906126ab565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b03163314610e285760405162461bcd60e51b8152600401610851906126ab565b6040514790339082156108fc029083906000818181858888f19350505050610e8d5760405162461bcd60e51b81526020600482015260186024820152772bb4ba34323930bb903234b2103737ba103bb7b93597171760411b6044820152606401610851565b50565b60606000610e9d83610d03565b905080610ebe5760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115610ed957610ed9612421565b604051908082528060200260200182016040528015610f02578160200160208202803683370190505b50905060005b82811015610eb657610f1a8582610a9e565b828281518110610f2c57610f2c6126e0565b602090810291909101015280610f418161270c565b915050610f08565b50919050565b600f5460ff16610f975760405162461bcd60e51b815260206004820152601360248201527253616c65206973206e6f74206163746976652160681b6044820152606401610851565b600b54811115610ffa5760405162461bcd60e51b815260206004820152602860248201527f596f752063616e206f6e6c79206d696e74203230204761736d61736b7320617460448201526720612074696d652160c01b6064820152608401610851565b6115b36110108261100a60085490565b90611bfb565b111561102e5760405162461bcd60e51b815260040161085190612727565b6101f461103a60085490565b106110aa57600c5461104c9082611c07565b3410156110a55760405162461bcd60e51b815260206004820152602160248201527f4e6f7420656e6f7567682045544820666f7220746869732070757263686173656044820152602160f81b6064820152608401610851565b6111ba565b6101f46110ba8261100a60085490565b111561111a5760405162461bcd60e51b815260206004820152602960248201527f596f7520776f756c642065786365656420746865206e756d626572206f662066604482015268726565206d696e747360b81b6064820152608401610851565b336000908152601360205260409020546032906111379083611bfb565b11156111955760405162461bcd60e51b815260206004820152602760248201527f596f752063616e206f6e6c79206d696e74203530204761736d61736b7320666f6044820152667220667265652160c81b6064820152608401610851565b33600090815260136020526040812080548392906111b490849061277d565b90915550505b60005b81811015610a9a576115b36111d160085490565b1015611205576111ef33600d5460016111ea919061277d565b611c13565b600d80549060006111ff8361270c565b91905055505b8061120f8161270c565b9150506111bd565b60606001805461075990612625565b600f5460ff1661126e5760405162461bcd60e51b815260206004820152601360248201527253616c65206973206e6f74206163746976652160681b6044820152606401610851565b6010546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa1580156112b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112db9190612795565b116113285760405162461bcd60e51b815260206004820152601e60248201527f596f7520646f206e6f74206f776e20616e792043796265724b6f6e677a2100006044820152606401610851565b3360009081526012602052604090205460ff16156113885760405162461bcd60e51b815260206004820152601f60248201527f596f7520616c726561647920676f7420796f75722066726565206d696e7421006044820152606401610851565b6115b3611399600161100a60085490565b11156113b75760405162461bcd60e51b815260040161085190612727565b6113ca33600d5460016111ea919061277d565b600d80549060006113da8361270c565b9091555050336000908152601260205260409020805460ff19166001179055565b6001600160a01b0382163314156114545760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610851565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146114ea5760405162461bcd60e51b8152600401610851906126ab565b600f8054610100600160a81b0319166101006001600160a01b039384168102919091179182905560108054919092049092166001600160a01b0319909216919091179055565b61153a3383611959565b6115565760405162461bcd60e51b81526004016108519061265a565b61156284848484611c2d565b50505050565b6000818152600260205260409020546060906001600160a01b03166115e75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610851565b60006115f1611c60565b90506000815111611611576040518060200160405280600081525061163c565b8061161b84611c6f565b60405160200161162c9291906127ae565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461166d5760405162461bcd60e51b8152600401610851906126ab565b6115b361167d8261100a60085490565b111561169b5760405162461bcd60e51b815260040161085190612727565b60005b81811015610987576116b983600d5460016111ea919061277d565b600d80549060006116c98361270c565b919050555080806116d99061270c565b91505061169e565b600e80546116ee90612625565b80601f016020809104026020016040519081016040528092919081815260200182805461171a90612625565b80156117675780601f1061173c57610100808354040283529160200191611767565b820191906000526020600020905b81548152906001019060200180831161174a57829003601f168201915b505050505081565b6060600061177b611c60565b905060008161178982611c6f565b60405160200161179a9291906127ae565b6040516020818303038152906040529250505090565b600a546001600160a01b031633146117da5760405162461bcd60e51b8152600401610851906126ab565b6001600160a01b03811661183f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610851565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b14806118cc57506001600160e01b03198216635b5e139f60e01b145b8061074457506301ffc9a760e01b6001600160e01b0319831614610744565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061192082610c5d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119d25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610851565b60006119dd83610c5d565b9050806001600160a01b0316846001600160a01b03161480611a185750836001600160a01b0316611a0d846107dc565b6001600160a01b0316145b80611a4857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611a6382610c5d565b6001600160a01b031614611acb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610851565b6001600160a01b038216611b2d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610851565b611b38838383611d6d565b611b436000826118eb565b6001600160a01b0383166000908152600360205260408120805460019290611b6c9084906127dd565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b9a90849061277d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061163c828461277d565b600061163c82846127f4565b610a9a828260405180602001604052806000815250611e25565b611c38848484611a50565b611c4484848484611e58565b6115625760405162461bcd60e51b815260040161085190612813565b6060600e805461075990612625565b606081611c935750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cbd5780611ca78161270c565b9150611cb69050600a8361287b565b9150611c97565b60008167ffffffffffffffff811115611cd857611cd8612421565b6040519080825280601f01601f191660200182016040528015611d02576020820181803683370190505b5090505b8415611a4857611d176001836127dd565b9150611d24600a8661288f565b611d2f90603061277d565b60f81b818381518110611d4457611d446126e0565b60200101906001600160f81b031916908160001a905350611d66600a8661287b565b9450611d06565b6001600160a01b038316611dc857611dc381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611deb565b816001600160a01b0316836001600160a01b031614611deb57611deb8382611f56565b6001600160a01b038216611e025761098781611ff3565b826001600160a01b0316826001600160a01b0316146109875761098782826120a2565b611e2f83836120e6565b611e3c6000848484611e58565b6109875760405162461bcd60e51b815260040161085190612813565b60006001600160a01b0384163b15611f4b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e9c9033908990889088906004016128a3565b6020604051808303816000875af1925050508015611ed7575060408051601f3d908101601f19168201909252611ed4918101906128e0565b60015b611f31573d808015611f05576040519150601f19603f3d011682016040523d82523d6000602084013e611f0a565b606091505b508051611f295760405162461bcd60e51b815260040161085190612813565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a48565b506001949350505050565b60006001611f6384610d03565b611f6d91906127dd565b600083815260076020526040902054909150808214611fc0576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612005906001906127dd565b6000838152600960205260408120546008805493945090928490811061202d5761202d6126e0565b90600052602060002001549050806008838154811061204e5761204e6126e0565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612086576120866128fd565b6001900381819060005260206000200160009055905550505050565b60006120ad83610d03565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661213c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610851565b6000818152600260205260409020546001600160a01b0316156121a15760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610851565b6121ad60008383611d6d565b6001600160a01b03821660009081526003602052604081208054600192906121d690849061277d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461224090612625565b90600052602060002090601f01602090048101928261226257600085556122a8565b82601f1061227b57805160ff19168380011785556122a8565b828001600101855582156122a8579182015b828111156122a857825182559160200191906001019061228d565b506122b49291506122b8565b5090565b5b808211156122b457600081556001016122b9565b6001600160e01b031981168114610e8d57600080fd5b6000602082840312156122f557600080fd5b813561163c816122cd565b60005b8381101561231b578181015183820152602001612303565b838111156115625750506000910152565b60008151808452612344816020860160208601612300565b601f01601f19169290920160200192915050565b60208152600061163c602083018461232c565b60006020828403121561237d57600080fd5b5035919050565b80356001600160a01b038116811461239b57600080fd5b919050565b600080604083850312156123b357600080fd5b6123bc83612384565b946020939093013593505050565b6000806000606084860312156123df57600080fd5b6123e884612384565b92506123f660208501612384565b9150604084013590509250925092565b60006020828403121561241857600080fd5b61163c82612384565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561245257612452612421565b604051601f8501601f19908116603f0116810190828211818310171561247a5761247a612421565b8160405280935085815286868601111561249357600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156124bf57600080fd5b813567ffffffffffffffff8111156124d657600080fd5b8201601f810184136124e757600080fd5b611a4884823560208401612437565b6020808252825182820181905260009190848201906040850190845b8181101561252e57835183529284019291840191600101612512565b50909695505050505050565b6000806040838503121561254d57600080fd5b61255683612384565b91506020830135801515811461256b57600080fd5b809150509250929050565b6000806000806080858703121561258c57600080fd5b61259585612384565b93506125a360208601612384565b925060408501359150606085013567ffffffffffffffff8111156125c657600080fd5b8501601f810187136125d757600080fd5b6125e687823560208401612437565b91505092959194509250565b6000806040838503121561260557600080fd5b61260e83612384565b915061261c60208401612384565b90509250929050565b600181811c9082168061263957607f821691505b60208210811415610f4957634e487b7160e01b600052602260045260246000fd5b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415612720576127206126f6565b5060010190565b60208082526036908201527f486f6c642075702120596f7520776f756c6420627579206d6f7265204761736d60408201527530b9b5b9903a3430b71030bb30b4b630b1363297171760511b606082015260800190565b60008219821115612790576127906126f6565b500190565b6000602082840312156127a757600080fd5b5051919050565b600083516127c0818460208801612300565b8351908301906127d4818360208801612300565b01949350505050565b6000828210156127ef576127ef6126f6565b500390565b600081600019048311821515161561280e5761280e6126f6565b500290565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261288a5761288a612865565b500490565b60008261289e5761289e612865565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128d69083018461232c565b9695505050505050565b6000602082840312156128f257600080fd5b815161163c816122cd565b634e487b7160e01b600052603160045260246000fdfea26469706673582212208a1e8166d8cec4a68be6d93ba6a886eef63f48f4ec532197faba85a7c96fde5264736f6c634300080b0033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000057a204aa1042f6e66dd7730813f4024114d74f37000000000000000000000000000000000000000000000000000000000000001b68747470733a2f2f6d6f6f6e666967687465722e696f2f6170692f0000000000

Deployed Bytecode

0x60806040526004361061023a5760003560e01c80637076d0d51161012e578063a22cb465116100ab578063cfc86f7b1161006f578063cfc86f7b14610676578063d082e3811461068b578063e8a3d485146106a1578063e985e9c5146106b6578063f2fde38b146106ff57600080fd5b8063a22cb465146105d6578063b0114bf1146105f6578063b88d4fde14610616578063c87b56dd14610636578063ca8001441461065657600080fd5b80638c4f5f8e116100f25780638c4f5f8e1461054e5780638da5cb5b1461057b578063926427441461059957806395d89b41146105ac57806397e32949146105c157600080fd5b80637076d0d5146104ce57806370a08231146104ee578063715018a61461050e57806380b1733514610523578063853828b61461053957600080fd5b80632e1a7d4d116101bc5780634f6ccce7116101805780634f6ccce71461043e57806355f804b31461045e578063564566a81461047e5780635d3b4f1d146104985780636352211e146104ae57600080fd5b80632e1a7d4d146103b45780632f745c59146103d457806334918dfd146103f457806342842e0e146104095780634cb1ac021461042957600080fd5b806318160ddd1161020357806318160ddd146103145780631ea04b6d14610329578063235b6ea11461034e57806323b872dd146103645780632cda8edf1461038457600080fd5b80620991341461023f57806301ffc9a71461026857806306fdde0314610298578063081812fc146102ba578063095ea7b3146102f2575b600080fd5b34801561024b57600080fd5b50610255600b5481565b6040519081526020015b60405180910390f35b34801561027457600080fd5b506102886102833660046122e3565b61071f565b604051901515815260200161025f565b3480156102a457600080fd5b506102ad61074a565b60405161025f9190612358565b3480156102c657600080fd5b506102da6102d536600461236b565b6107dc565b6040516001600160a01b03909116815260200161025f565b3480156102fe57600080fd5b5061031261030d3660046123a0565b610876565b005b34801561032057600080fd5b50600854610255565b34801561033557600080fd5b50600f546102da9061010090046001600160a01b031681565b34801561035a57600080fd5b50610255600c5481565b34801561037057600080fd5b5061031261037f3660046123ca565b61098c565b34801561039057600080fd5b5061028861039f366004612406565b60126020526000908152604090205460ff1681565b3480156103c057600080fd5b506103126103cf36600461236b565b6109bd565b3480156103e057600080fd5b506102556103ef3660046123a0565b610a9e565b34801561040057600080fd5b50610312610b34565b34801561041557600080fd5b506103126104243660046123ca565b610b72565b34801561043557600080fd5b50610255603281565b34801561044a57600080fd5b5061025561045936600461236b565b610b8d565b34801561046a57600080fd5b506103126104793660046124ad565b610c20565b34801561048a57600080fd5b50600f546102889060ff1681565b3480156104a457600080fd5b506102556115b381565b3480156104ba57600080fd5b506102da6104c936600461236b565b610c5d565b3480156104da57600080fd5b506103126104e936600461236b565b610cd4565b3480156104fa57600080fd5b50610255610509366004612406565b610d03565b34801561051a57600080fd5b50610312610d8a565b34801561052f57600080fd5b506102556101f481565b34801561054557600080fd5b50610312610dfe565b34801561055a57600080fd5b5061056e610569366004612406565b610e90565b60405161025f91906124f6565b34801561058757600080fd5b50600a546001600160a01b03166102da565b6103126105a736600461236b565b610f4f565b3480156105b857600080fd5b506102ad611217565b3480156105cd57600080fd5b50610312611226565b3480156105e257600080fd5b506103126105f136600461253a565b6113fb565b34801561060257600080fd5b50610312610611366004612406565b6114c0565b34801561062257600080fd5b50610312610631366004612576565b611530565b34801561064257600080fd5b506102ad61065136600461236b565b611568565b34801561066257600080fd5b506103126106713660046123a0565b611643565b34801561068257600080fd5b506102ad6116e1565b34801561069757600080fd5b50610255600d5481565b3480156106ad57600080fd5b506102ad61176f565b3480156106c257600080fd5b506102886106d13660046125f2565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561070b57600080fd5b5061031261071a366004612406565b6117b0565b60006001600160e01b0319821663780e9d6360e01b148061074457506107448261189b565b92915050565b60606000805461075990612625565b80601f016020809104026020016040519081016040528092919081815260200182805461078590612625565b80156107d25780601f106107a7576101008083540402835291602001916107d2565b820191906000526020600020905b8154815290600101906020018083116107b557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661085a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061088182610c5d565b9050806001600160a01b0316836001600160a01b031614156108ef5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610851565b336001600160a01b038216148061090b575061090b81336106d1565b61097d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610851565b61098783836118eb565b505050565b6109963382611959565b6109b25760405162461bcd60e51b81526004016108519061265a565b610987838383611a50565b600a546001600160a01b031633146109e75760405162461bcd60e51b8152600401610851906126ab565b47808210610a375760405162461bcd60e51b815260206004820152601d60248201527f416d6f756e74206973206c6172676572207468616e2062616c616e63650000006044820152606401610851565b604051339083156108fc029084906000818181858888f19350505050610a9a5760405162461bcd60e51b81526020600482015260186024820152772bb4ba34323930bb903234b2103737ba103bb7b93597171760411b6044820152606401610851565b5050565b6000610aa983610d03565b8210610b0b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610851565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610b5e5760405162461bcd60e51b8152600401610851906126ab565b600f805460ff19811660ff90911615179055565b61098783838360405180602001604052806000815250611530565b6000610b9860085490565b8210610bfb5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610851565b60088281548110610c0e57610c0e6126e0565b90600052602060002001549050919050565b600a546001600160a01b03163314610c4a5760405162461bcd60e51b8152600401610851906126ab565b8051610a9a90600e906020840190612234565b6000818152600260205260408120546001600160a01b0316806107445760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610851565b600a546001600160a01b03163314610cfe5760405162461bcd60e51b8152600401610851906126ab565b600c55565b60006001600160a01b038216610d6e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610851565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610db45760405162461bcd60e51b8152600401610851906126ab565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b03163314610e285760405162461bcd60e51b8152600401610851906126ab565b6040514790339082156108fc029083906000818181858888f19350505050610e8d5760405162461bcd60e51b81526020600482015260186024820152772bb4ba34323930bb903234b2103737ba103bb7b93597171760411b6044820152606401610851565b50565b60606000610e9d83610d03565b905080610ebe5760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115610ed957610ed9612421565b604051908082528060200260200182016040528015610f02578160200160208202803683370190505b50905060005b82811015610eb657610f1a8582610a9e565b828281518110610f2c57610f2c6126e0565b602090810291909101015280610f418161270c565b915050610f08565b50919050565b600f5460ff16610f975760405162461bcd60e51b815260206004820152601360248201527253616c65206973206e6f74206163746976652160681b6044820152606401610851565b600b54811115610ffa5760405162461bcd60e51b815260206004820152602860248201527f596f752063616e206f6e6c79206d696e74203230204761736d61736b7320617460448201526720612074696d652160c01b6064820152608401610851565b6115b36110108261100a60085490565b90611bfb565b111561102e5760405162461bcd60e51b815260040161085190612727565b6101f461103a60085490565b106110aa57600c5461104c9082611c07565b3410156110a55760405162461bcd60e51b815260206004820152602160248201527f4e6f7420656e6f7567682045544820666f7220746869732070757263686173656044820152602160f81b6064820152608401610851565b6111ba565b6101f46110ba8261100a60085490565b111561111a5760405162461bcd60e51b815260206004820152602960248201527f596f7520776f756c642065786365656420746865206e756d626572206f662066604482015268726565206d696e747360b81b6064820152608401610851565b336000908152601360205260409020546032906111379083611bfb565b11156111955760405162461bcd60e51b815260206004820152602760248201527f596f752063616e206f6e6c79206d696e74203530204761736d61736b7320666f6044820152667220667265652160c81b6064820152608401610851565b33600090815260136020526040812080548392906111b490849061277d565b90915550505b60005b81811015610a9a576115b36111d160085490565b1015611205576111ef33600d5460016111ea919061277d565b611c13565b600d80549060006111ff8361270c565b91905055505b8061120f8161270c565b9150506111bd565b60606001805461075990612625565b600f5460ff1661126e5760405162461bcd60e51b815260206004820152601360248201527253616c65206973206e6f74206163746976652160681b6044820152606401610851565b6010546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa1580156112b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112db9190612795565b116113285760405162461bcd60e51b815260206004820152601e60248201527f596f7520646f206e6f74206f776e20616e792043796265724b6f6e677a2100006044820152606401610851565b3360009081526012602052604090205460ff16156113885760405162461bcd60e51b815260206004820152601f60248201527f596f7520616c726561647920676f7420796f75722066726565206d696e7421006044820152606401610851565b6115b3611399600161100a60085490565b11156113b75760405162461bcd60e51b815260040161085190612727565b6113ca33600d5460016111ea919061277d565b600d80549060006113da8361270c565b9091555050336000908152601260205260409020805460ff19166001179055565b6001600160a01b0382163314156114545760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610851565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146114ea5760405162461bcd60e51b8152600401610851906126ab565b600f8054610100600160a81b0319166101006001600160a01b039384168102919091179182905560108054919092049092166001600160a01b0319909216919091179055565b61153a3383611959565b6115565760405162461bcd60e51b81526004016108519061265a565b61156284848484611c2d565b50505050565b6000818152600260205260409020546060906001600160a01b03166115e75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610851565b60006115f1611c60565b90506000815111611611576040518060200160405280600081525061163c565b8061161b84611c6f565b60405160200161162c9291906127ae565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461166d5760405162461bcd60e51b8152600401610851906126ab565b6115b361167d8261100a60085490565b111561169b5760405162461bcd60e51b815260040161085190612727565b60005b81811015610987576116b983600d5460016111ea919061277d565b600d80549060006116c98361270c565b919050555080806116d99061270c565b91505061169e565b600e80546116ee90612625565b80601f016020809104026020016040519081016040528092919081815260200182805461171a90612625565b80156117675780601f1061173c57610100808354040283529160200191611767565b820191906000526020600020905b81548152906001019060200180831161174a57829003601f168201915b505050505081565b6060600061177b611c60565b905060008161178982611c6f565b60405160200161179a9291906127ae565b6040516020818303038152906040529250505090565b600a546001600160a01b031633146117da5760405162461bcd60e51b8152600401610851906126ab565b6001600160a01b03811661183f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610851565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b14806118cc57506001600160e01b03198216635b5e139f60e01b145b8061074457506301ffc9a760e01b6001600160e01b0319831614610744565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061192082610c5d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119d25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610851565b60006119dd83610c5d565b9050806001600160a01b0316846001600160a01b03161480611a185750836001600160a01b0316611a0d846107dc565b6001600160a01b0316145b80611a4857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611a6382610c5d565b6001600160a01b031614611acb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610851565b6001600160a01b038216611b2d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610851565b611b38838383611d6d565b611b436000826118eb565b6001600160a01b0383166000908152600360205260408120805460019290611b6c9084906127dd565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b9a90849061277d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061163c828461277d565b600061163c82846127f4565b610a9a828260405180602001604052806000815250611e25565b611c38848484611a50565b611c4484848484611e58565b6115625760405162461bcd60e51b815260040161085190612813565b6060600e805461075990612625565b606081611c935750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cbd5780611ca78161270c565b9150611cb69050600a8361287b565b9150611c97565b60008167ffffffffffffffff811115611cd857611cd8612421565b6040519080825280601f01601f191660200182016040528015611d02576020820181803683370190505b5090505b8415611a4857611d176001836127dd565b9150611d24600a8661288f565b611d2f90603061277d565b60f81b818381518110611d4457611d446126e0565b60200101906001600160f81b031916908160001a905350611d66600a8661287b565b9450611d06565b6001600160a01b038316611dc857611dc381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611deb565b816001600160a01b0316836001600160a01b031614611deb57611deb8382611f56565b6001600160a01b038216611e025761098781611ff3565b826001600160a01b0316826001600160a01b0316146109875761098782826120a2565b611e2f83836120e6565b611e3c6000848484611e58565b6109875760405162461bcd60e51b815260040161085190612813565b60006001600160a01b0384163b15611f4b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e9c9033908990889088906004016128a3565b6020604051808303816000875af1925050508015611ed7575060408051601f3d908101601f19168201909252611ed4918101906128e0565b60015b611f31573d808015611f05576040519150601f19603f3d011682016040523d82523d6000602084013e611f0a565b606091505b508051611f295760405162461bcd60e51b815260040161085190612813565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a48565b506001949350505050565b60006001611f6384610d03565b611f6d91906127dd565b600083815260076020526040902054909150808214611fc0576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612005906001906127dd565b6000838152600960205260408120546008805493945090928490811061202d5761202d6126e0565b90600052602060002001549050806008838154811061204e5761204e6126e0565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612086576120866128fd565b6001900381819060005260206000200160009055905550505050565b60006120ad83610d03565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661213c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610851565b6000818152600260205260409020546001600160a01b0316156121a15760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610851565b6121ad60008383611d6d565b6001600160a01b03821660009081526003602052604081208054600192906121d690849061277d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461224090612625565b90600052602060002090601f01602090048101928261226257600085556122a8565b82601f1061227b57805160ff19168380011785556122a8565b828001600101855582156122a8579182015b828111156122a857825182559160200191906001019061228d565b506122b49291506122b8565b5090565b5b808211156122b457600081556001016122b9565b6001600160e01b031981168114610e8d57600080fd5b6000602082840312156122f557600080fd5b813561163c816122cd565b60005b8381101561231b578181015183820152602001612303565b838111156115625750506000910152565b60008151808452612344816020860160208601612300565b601f01601f19169290920160200192915050565b60208152600061163c602083018461232c565b60006020828403121561237d57600080fd5b5035919050565b80356001600160a01b038116811461239b57600080fd5b919050565b600080604083850312156123b357600080fd5b6123bc83612384565b946020939093013593505050565b6000806000606084860312156123df57600080fd5b6123e884612384565b92506123f660208501612384565b9150604084013590509250925092565b60006020828403121561241857600080fd5b61163c82612384565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561245257612452612421565b604051601f8501601f19908116603f0116810190828211818310171561247a5761247a612421565b8160405280935085815286868601111561249357600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156124bf57600080fd5b813567ffffffffffffffff8111156124d657600080fd5b8201601f810184136124e757600080fd5b611a4884823560208401612437565b6020808252825182820181905260009190848201906040850190845b8181101561252e57835183529284019291840191600101612512565b50909695505050505050565b6000806040838503121561254d57600080fd5b61255683612384565b91506020830135801515811461256b57600080fd5b809150509250929050565b6000806000806080858703121561258c57600080fd5b61259585612384565b93506125a360208601612384565b925060408501359150606085013567ffffffffffffffff8111156125c657600080fd5b8501601f810187136125d757600080fd5b6125e687823560208401612437565b91505092959194509250565b6000806040838503121561260557600080fd5b61260e83612384565b915061261c60208401612384565b90509250929050565b600181811c9082168061263957607f821691505b60208210811415610f4957634e487b7160e01b600052602260045260246000fd5b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415612720576127206126f6565b5060010190565b60208082526036908201527f486f6c642075702120596f7520776f756c6420627579206d6f7265204761736d60408201527530b9b5b9903a3430b71030bb30b4b630b1363297171760511b606082015260800190565b60008219821115612790576127906126f6565b500190565b6000602082840312156127a757600080fd5b5051919050565b600083516127c0818460208801612300565b8351908301906127d4818360208801612300565b01949350505050565b6000828210156127ef576127ef6126f6565b500390565b600081600019048311821515161561280e5761280e6126f6565b500290565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261288a5761288a612865565b500490565b60008261289e5761289e612865565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128d69083018461232c565b9695505050505050565b6000602082840312156128f257600080fd5b815161163c816122cd565b634e487b7160e01b600052603160045260246000fdfea26469706673582212208a1e8166d8cec4a68be6d93ba6a886eef63f48f4ec532197faba85a7c96fde5264736f6c634300080b0033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000057a204aa1042f6e66dd7730813f4024114d74f37000000000000000000000000000000000000000000000000000000000000001b68747470733a2f2f6d6f6f6e666967687465722e696f2f6170692f0000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://moonfighter.io/api/
Arg [1] : erc721address (address): 0x57a204AA1042f6E66DD7730813f4024114d74f37

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000057a204aa1042f6e66dd7730813f4024114d74f37
Arg [2] : 000000000000000000000000000000000000000000000000000000000000001b
Arg [3] : 68747470733a2f2f6d6f6f6e666967687465722e696f2f6170692f0000000000


Deployed Bytecode Sourcemap

49034:4917:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49307:39;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;49307:39:0;;;;;;;;42772:237;;;;;;;;;;-1:-1:-1;42772:237:0;;;;;:::i;:::-;;:::i;:::-;;;747:14:1;;740:22;722:41;;710:2;695:18;42772:237:0;582:187:1;31059:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32519:221::-;;;;;;;;;;-1:-1:-1;32519:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1874:32:1;;;1856:51;;1844:2;1829:18;32519:221:0;1710:203:1;32056:397:0;;;;;;;;;;-1:-1:-1;32056:397:0;;;;;:::i;:::-;;:::i;:::-;;43425:113;;;;;;;;;;-1:-1:-1;43513:10:0;:17;43425:113;;49494:32;;;;;;;;;;-1:-1:-1;49494:32:0;;;;;;;-1:-1:-1;;;;;49494:32:0;;;49353:35;;;;;;;;;;;;;;;;33409:305;;;;;;;;;;-1:-1:-1;33409:305:0;;;;;:::i;:::-;;:::i;49626:52::-;;;;;;;;;;-1:-1:-1;49626:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;53268:274;;;;;;;;;;-1:-1:-1;53268:274:0;;;;;:::i;:::-;;:::i;43093:256::-;;;;;;;;;;-1:-1:-1;43093:256:0;;;;;:::i;:::-;;:::i;52389:89::-;;;;;;;;;;;;;:::i;33785:151::-;;;;;;;;;;-1:-1:-1;33785:151:0;;;;;:::i;:::-;;:::i;49250:50::-;;;;;;;;;;;;49298:2;49250:50;;43615:233;;;;;;;;;;-1:-1:-1;43615:233:0;;;;;:::i;:::-;;:::i;52608:102::-;;;;;;;;;;-1:-1:-1;52608:102:0;;;;;:::i;:::-;;:::i;49463:24::-;;;;;;;;;;-1:-1:-1;49463:24:0;;;;;;;;49156:41;;;;;;;;;;;;49193:4;49156:41;;30753:239;;;;;;;;;;-1:-1:-1;30753:239:0;;;;;:::i;:::-;;:::i;52285:96::-;;;;;;;;;;-1:-1:-1;52285:96:0;;;;;:::i;:::-;;:::i;30483:208::-;;;;;;;;;;-1:-1:-1;30483:208:0;;;;;:::i;:::-;;:::i;19620:148::-;;;;;;;;;;;;;:::i;49204:39::-;;;;;;;;;;;;49240:3;49204:39;;53068:192;;;;;;;;;;;;;:::i;51809:468::-;;;;;;;;;;-1:-1:-1;51809:468:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;18969:87::-;;;;;;;;;;-1:-1:-1;19042:6:0;;-1:-1:-1;;;;;19042:6:0;18969:87;;50050:1216;;;;;;:::i;:::-;;:::i;31228:104::-;;;;;;;;;;;;;:::i;51274:527::-;;;;;;;;;;;;;:::i;32812:295::-;;;;;;;;;;-1:-1:-1;32812:295:0;;;;;:::i;:::-;;:::i;53550:177::-;;;;;;;;;;-1:-1:-1;53550:177:0;;;;;:::i;:::-;;:::i;34007:285::-;;;;;;;;;;-1:-1:-1;34007:285:0;;;;;:::i;:::-;;:::i;31403:360::-;;;;;;;;;;-1:-1:-1;31403:360:0;;;;;:::i;:::-;;:::i;52718:342::-;;;;;;;;;;-1:-1:-1;52718:342:0;;;;;:::i;:::-;;:::i;49429:27::-;;;;;;;;;;;;;:::i;49395:::-;;;;;;;;;;;;;;;;53735:213;;;;;;;;;;;;;:::i;33178:164::-;;;;;;;;;;-1:-1:-1;33178:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33299:25:0;;;33275:4;33299:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33178:164;19923:244;;;;;;;;;;-1:-1:-1;19923:244:0;;;;;:::i;:::-;;:::i;42772:237::-;42874:4;-1:-1:-1;;;;;;42898:50:0;;-1:-1:-1;;;42898:50:0;;:103;;;42965:36;42989:11;42965:23;:36::i;:::-;42891:110;42772:237;-1:-1:-1;;42772:237:0:o;31059:100::-;31113:13;31146:5;31139:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31059:100;:::o;32519:221::-;32595:7;35848:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35848:16:0;32615:73;;;;-1:-1:-1;;;32615:73:0;;6617:2:1;32615:73:0;;;6599:21:1;6656:2;6636:18;;;6629:30;6695:34;6675:18;;;6668:62;-1:-1:-1;;;6746:18:1;;;6739:42;6798:19;;32615:73:0;;;;;;;;;-1:-1:-1;32708:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32708:24:0;;32519:221::o;32056:397::-;32137:13;32153:23;32168:7;32153:14;:23::i;:::-;32137:39;;32201:5;-1:-1:-1;;;;;32195:11:0;:2;-1:-1:-1;;;;;32195:11:0;;;32187:57;;;;-1:-1:-1;;;32187:57:0;;7030:2:1;32187:57:0;;;7012:21:1;7069:2;7049:18;;;7042:30;7108:34;7088:18;;;7081:62;-1:-1:-1;;;7159:18:1;;;7152:31;7200:19;;32187:57:0;6828:397:1;32187:57:0;7697:10;-1:-1:-1;;;;;32265:21:0;;;;:62;;-1:-1:-1;32290:37:0;32307:5;7697:10;33178:164;:::i;32290:37::-;32257:154;;;;-1:-1:-1;;;32257:154:0;;7432:2:1;32257:154:0;;;7414:21:1;7471:2;7451:18;;;7444:30;7510:34;7490:18;;;7483:62;7581:26;7561:18;;;7554:54;7625:19;;32257:154:0;7230:420:1;32257:154:0;32424:21;32433:2;32437:7;32424:8;:21::i;:::-;32126:327;32056:397;;:::o;33409:305::-;33570:41;7697:10;33603:7;33570:18;:41::i;:::-;33562:103;;;;-1:-1:-1;;;33562:103:0;;;;;;;:::i;:::-;33678:28;33688:4;33694:2;33698:7;33678:9;:28::i;53268:274::-;19042:6;;-1:-1:-1;;;;;19042:6:0;7697:10;19189:23;19181:68;;;;-1:-1:-1;;;19181:68:0;;;;;;;:::i;:::-;53349:21:::1;53389:17:::0;;::::1;53381:59;;;::::0;-1:-1:-1;;;53381:59:0;;8636:2:1;53381:59:0::1;::::0;::::1;8618:21:1::0;8675:2;8655:18;;;8648:30;8714:31;8694:18;;;8687:59;8763:18;;53381:59:0::1;8434:353:1::0;53381:59:0::1;53459:33;::::0;53467:10:::1;::::0;53459:33;::::1;;;::::0;53484:7;;53459:33:::1;::::0;;;53484:7;53467:10;53459:33;::::1;;;;;;53451:83;;;::::0;-1:-1:-1;;;53451:83:0;;8994:2:1;53451:83:0::1;::::0;::::1;8976:21:1::0;9033:2;9013:18;;;9006:30;-1:-1:-1;;;9052:18:1;;;9045:54;9116:18;;53451:83:0::1;8792:348:1::0;53451:83:0::1;53320:222;53268:274:::0;:::o;43093:256::-;43190:7;43226:23;43243:5;43226:16;:23::i;:::-;43218:5;:31;43210:87;;;;-1:-1:-1;;;43210:87:0;;9347:2:1;43210:87:0;;;9329:21:1;9386:2;9366:18;;;9359:30;9425:34;9405:18;;;9398:62;-1:-1:-1;;;9476:18:1;;;9469:41;9527:19;;43210:87:0;9145:407:1;43210:87:0;-1:-1:-1;;;;;;43315:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;43093:256::o;52389:89::-;19042:6;;-1:-1:-1;;;;;19042:6:0;7697:10;19189:23;19181:68;;;;-1:-1:-1;;;19181:68:0;;;;;;;:::i;:::-;52458:12:::1;::::0;;-1:-1:-1;;52442:28:0;::::1;52458:12;::::0;;::::1;52457:13;52442:28;::::0;;52389:89::o;33785:151::-;33889:39;33906:4;33912:2;33916:7;33889:39;;;;;;;;;;;;:16;:39::i;43615:233::-;43690:7;43726:30;43513:10;:17;;43425:113;43726:30;43718:5;:38;43710:95;;;;-1:-1:-1;;;43710:95:0;;9759:2:1;43710:95:0;;;9741:21:1;9798:2;9778:18;;;9771:30;9837:34;9817:18;;;9810:62;-1:-1:-1;;;9888:18:1;;;9881:42;9940:19;;43710:95:0;9557:408:1;43710:95:0;43823:10;43834:5;43823:17;;;;;;;;:::i;:::-;;;;;;;;;43816:24;;43615:233;;;:::o;52608:102::-;19042:6;;-1:-1:-1;;;;;19042:6:0;7697:10;19189:23;19181:68;;;;-1:-1:-1;;;19181:68:0;;;;;;;:::i;:::-;52679:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;30753:239::-:0;30825:7;30861:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30861:16:0;30896:19;30888:73;;;;-1:-1:-1;;;30888:73:0;;10304:2:1;30888:73:0;;;10286:21:1;10343:2;10323:18;;;10316:30;10382:34;10362:18;;;10355:62;-1:-1:-1;;;10433:18:1;;;10426:39;10482:19;;30888:73:0;10102:405:1;52285:96:0;19042:6;;-1:-1:-1;;;;;19042:6:0;7697:10;19189:23;19181:68;;;;-1:-1:-1;;;19181:68:0;;;;;;;:::i;:::-;52356:6:::1;:17:::0;52285:96::o;30483:208::-;30555:7;-1:-1:-1;;;;;30583:19:0;;30575:74;;;;-1:-1:-1;;;30575:74:0;;10714:2:1;30575:74:0;;;10696:21:1;10753:2;10733:18;;;10726:30;10792:34;10772:18;;;10765:62;-1:-1:-1;;;10843:18:1;;;10836:40;10893:19;;30575:74:0;10512:406:1;30575:74:0;-1:-1:-1;;;;;;30667:16:0;;;;;:9;:16;;;;;;;30483:208::o;19620:148::-;19042:6;;-1:-1:-1;;;;;19042:6:0;7697:10;19189:23;19181:68;;;;-1:-1:-1;;;19181:68:0;;;;;;;:::i;:::-;19711:6:::1;::::0;19690:40:::1;::::0;19727:1:::1;::::0;-1:-1:-1;;;;;19711:6:0::1;::::0;19690:40:::1;::::0;19727:1;;19690:40:::1;19741:6;:19:::0;;-1:-1:-1;;;;;;19741:19:0::1;::::0;;19620:148::o;53068:192::-;19042:6;;-1:-1:-1;;;;;19042:6:0;7697:10;19189:23;19181:68;;;;-1:-1:-1;;;19181:68:0;;;;;;;:::i;:::-;53177:33:::1;::::0;53137:21:::1;::::0;53185:10:::1;::::0;53177:33;::::1;;;::::0;53137:21;;53119:15:::1;53177:33:::0;53119:15;53177:33;53137:21;53185:10;53177:33;::::1;;;;;;53169:83;;;::::0;-1:-1:-1;;;53169:83:0;;8994:2:1;53169:83:0::1;::::0;::::1;8976:21:1::0;9033:2;9013:18;;;9006:30;-1:-1:-1;;;9052:18:1;;;9045:54;9116:18;;53169:83:0::1;8792:348:1::0;53169:83:0::1;53108:152;53068:192::o:0;51809:468::-;51872:16;51901:18;51922:17;51932:6;51922:9;:17::i;:::-;51901:38;-1:-1:-1;51954:15:0;51950:320;;51993:16;;;52007:1;51993:16;;;;;;;;;;;-1:-1:-1;51986:23:0;51809:468;-1:-1:-1;;;51809:468:0:o;51950:320::-;52042:25;52084:10;52070:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52070:25:0;;52042:53;;52115:9;52110:119;52134:10;52130:1;:14;52110:119;;;52183:30;52203:6;52211:1;52183:19;:30::i;:::-;52169:8;52178:1;52169:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;52146:3;;;;:::i;:::-;;;;52110:119;;51950:320;51890:387;51809:468;;;:::o;50050:1216::-;50127:12;;;;50119:44;;;;-1:-1:-1;;;50119:44:0;;11397:2:1;50119:44:0;;;11379:21:1;11436:2;11416:18;;;11409:30;-1:-1:-1;;;11455:18:1;;;11448:49;11514:18;;50119:44:0;11195:343:1;50119:44:0;50227:19;;50207:16;:39;;50174:130;;;;-1:-1:-1;;;50174:130:0;;11745:2:1;50174:130:0;;;11727:21:1;11784:2;11764:18;;;11757:30;11823:34;11803:18;;;11796:62;-1:-1:-1;;;11874:18:1;;;11867:38;11922:19;;50174:130:0;11543:404:1;50174:130:0;49193:4;50323:35;50341:16;50323:13;43513:10;:17;;43425:113;50323:13;:17;;:35::i;:::-;:49;;50315:129;;;;-1:-1:-1;;;50315:129:0;;;;;;;:::i;:::-;49240:3;50460:13;43513:10;:17;;43425:113;50460:13;:26;50457:532;;50523:6;;:28;;50534:16;50523:10;:28::i;:::-;50510:9;:41;;50502:104;;;;-1:-1:-1;;;50502:104:0;;12577:2:1;50502:104:0;;;12559:21:1;12616:2;12596:18;;;12589:30;12655:34;12635:18;;;12628:62;-1:-1:-1;;;12706:18:1;;;12699:31;12747:19;;50502:104:0;12375:397:1;50502:104:0;50457:532;;;49240:3;50645:35;50663:16;50645:13;43513:10;:17;;43425:113;50645:35;:48;;50637:119;;;;-1:-1:-1;;;50637:119:0;;12979:2:1;50637:119:0;;;12961:21:1;13018:2;12998:18;;;12991:30;13057:34;13037:18;;;13030:62;-1:-1:-1;;;13108:18:1;;;13101:39;13157:19;;50637:119:0;12777:405:1;50637:119:0;50795:10;50779:27;;;;:15;:27;;;;;;49298:2;;50779:49;;50811:16;50779:31;:49::i;:::-;:74;;50771:144;;;;-1:-1:-1;;;50771:144:0;;13389:2:1;50771:144:0;;;13371:21:1;13428:2;13408:18;;;13401:30;13467:34;13447:18;;;13440:62;-1:-1:-1;;;13518:18:1;;;13511:37;13565:19;;50771:144:0;13187:403:1;50771:144:0;50946:10;50930:27;;;;:15;:27;;;;;:47;;50961:16;;50930:27;:47;;50961:16;;50930:47;:::i;:::-;;;;-1:-1:-1;;50457:532:0;51004:9;50999:257;51023:16;51019:1;:20;50999:257;;;49193:4;51112:13;43513:10;:17;;43425:113;51112:13;:26;51108:137;;;51159:37;51169:10;51181:12;;51194:1;51181:14;;;;:::i;:::-;51159:9;:37::i;:::-;51215:12;:14;;;:12;:14;;;:::i;:::-;;;;;;51108:137;51041:3;;;;:::i;:::-;;;;50999:257;;31228:104;31284:13;31317:7;31310:14;;;;;:::i;51274:527::-;51327:12;;;;51319:44;;;;-1:-1:-1;;;51319:44:0;;11397:2:1;51319:44:0;;;11379:21:1;11436:2;11416:18;;;11409:30;-1:-1:-1;;;11455:18:1;;;11448:49;11514:18;;51319:44:0;11195:343:1;51319:44:0;51382:13;;:35;;-1:-1:-1;;;51382:35:0;;51406:10;51382:35;;;1856:51:1;51420:1:0;;-1:-1:-1;;;;;51382:13:0;;:23;;1829:18:1;;51382:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:39;51374:82;;;;-1:-1:-1;;;51374:82:0;;14119:2:1;51374:82:0;;;14101:21:1;14158:2;14138:18;;;14131:30;14197:32;14177:18;;;14170:60;14247:18;;51374:82:0;13917:354:1;51374:82:0;51496:10;51476:31;;;;:19;:31;;;;;;;;51475:32;51467:76;;;;-1:-1:-1;;;51467:76:0;;14478:2:1;51467:76:0;;;14460:21:1;14517:2;14497:18;;;14490:30;14556:33;14536:18;;;14529:61;14607:18;;51467:76:0;14276:355:1;51467:76:0;49193:4;51562:20;51580:1;51562:13;43513:10;:17;;43425:113;51562:20;:34;;51554:115;;;;-1:-1:-1;;;51554:115:0;;;;;;;:::i;:::-;51682:37;51692:10;51704:12;;51717:1;51704:14;;;;:::i;51682:37::-;51730:12;:14;;;:12;:14;;;:::i;:::-;;;;-1:-1:-1;;51775:10:0;51755:31;;;;:19;:31;;;;;:38;;-1:-1:-1;;51755:38:0;51789:4;51755:38;;;51274:527::o;32812:295::-;-1:-1:-1;;;;;32915:24:0;;7697:10;32915:24;;32907:62;;;;-1:-1:-1;;;32907:62:0;;14838:2:1;32907:62:0;;;14820:21:1;14877:2;14857:18;;;14850:30;14916:27;14896:18;;;14889:55;14961:18;;32907:62:0;14636:349:1;32907:62:0;7697:10;32982:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32982:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32982:53:0;;;;;;;;;;33051:48;;722:41:1;;;32982:42:0;;7697:10;33051:48;;695:18:1;33051:48:0;;;;;;;32812:295;;:::o;53550:177::-;19042:6;;-1:-1:-1;;;;;19042:6:0;7697:10;19189:23;19181:68;;;;-1:-1:-1;;;19181:68:0;;;;;;;:::i;:::-;53627:17:::1;:31:::0;;-1:-1:-1;;;;;;53627:31:0::1;;-1:-1:-1::0;;;;;53627:31:0;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;;53669:13:::1;:50:::0;;53701:17;;;::::1;::::0;;::::1;-1:-1:-1::0;;;;;;53669:50:0;;::::1;::::0;;;::::1;::::0;;53550:177::o;34007:285::-;34139:41;7697:10;34172:7;34139:18;:41::i;:::-;34131:103;;;;-1:-1:-1;;;34131:103:0;;;;;;;:::i;:::-;34245:39;34259:4;34265:2;34269:7;34278:5;34245:13;:39::i;:::-;34007:285;;;;:::o;31403:360::-;35824:4;35848:16;;;:7;:16;;;;;;31476:13;;-1:-1:-1;;;;;35848:16:0;31502:76;;;;-1:-1:-1;;;31502:76:0;;15192:2:1;31502:76:0;;;15174:21:1;15231:2;15211:18;;;15204:30;15270:34;15250:18;;;15243:62;-1:-1:-1;;;15321:18:1;;;15314:45;15376:19;;31502:76:0;14990:411:1;31502:76:0;31591:21;31615:10;:8;:10::i;:::-;31591:34;;31667:1;31649:7;31643:21;:25;:112;;;;;;;;;;;;;;;;;31708:7;31717:18;:7;:16;:18::i;:::-;31691:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;31643:112;31636:119;31403:360;-1:-1:-1;;;31403:360:0:o;52718:342::-;19042:6;;-1:-1:-1;;;;;19042:6:0;7697:10;19189:23;19181:68;;;;-1:-1:-1;;;19181:68:0;;;;;;;:::i;:::-;49193:4:::1;52806:26;52824:7;52806:13;43513:10:::0;:17;;43425:113;52806:26:::1;:40;;52798:120;;;;-1:-1:-1::0;;;52798:120:0::1;;;;;;;:::i;:::-;52933:9;52929:124;52952:7;52948:1;:11;52929:124;;;52980:32;52990:3;52995:12;;53010:1;52995:16;;;;:::i;52980:32::-;53027:12;:14:::0;;;:12:::1;:14;::::0;::::1;:::i;:::-;;;;;;52961:3;;;;;:::i;:::-;;;;52929:124;;49429:27:::0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53735:213::-;53779:13;53805:21;53829:10;:8;:10::i;:::-;53805:34;;53850:15;53911:7;53920:18;:7;:16;:18::i;:::-;53894:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53880:60;;;;53735:213;:::o;19923:244::-;19042:6;;-1:-1:-1;;;;;19042:6:0;7697:10;19189:23;19181:68;;;;-1:-1:-1;;;19181:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20012:22:0;::::1;20004:73;;;::::0;-1:-1:-1;;;20004:73:0;;16083:2:1;20004:73:0::1;::::0;::::1;16065:21:1::0;16122:2;16102:18;;;16095:30;16161:34;16141:18;;;16134:62;-1:-1:-1;;;16212:18:1;;;16205:36;16258:19;;20004:73:0::1;15881:402:1::0;20004:73:0::1;20114:6;::::0;20093:38:::1;::::0;-1:-1:-1;;;;;20093:38:0;;::::1;::::0;20114:6:::1;::::0;20093:38:::1;::::0;20114:6:::1;::::0;20093:38:::1;20142:6;:17:::0;;-1:-1:-1;;;;;;20142:17:0::1;-1:-1:-1::0;;;;;20142:17:0;;;::::1;::::0;;;::::1;::::0;;19923:244::o;30127:292::-;30229:4;-1:-1:-1;;;;;;30253:40:0;;-1:-1:-1;;;30253:40:0;;:105;;-1:-1:-1;;;;;;;30310:48:0;;-1:-1:-1;;;30310:48:0;30253:105;:158;;;-1:-1:-1;;;;;;;;;;21783:40:0;;;30375:36;21674:157;39636:174;39711:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;39711:29:0;-1:-1:-1;;;;;39711:29:0;;;;;;;;:24;;39765:23;39711:24;39765:14;:23::i;:::-;-1:-1:-1;;;;;39756:46:0;;;;;;;;;;;39636:174;;:::o;36053:348::-;36146:4;35848:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35848:16:0;36163:73;;;;-1:-1:-1;;;36163:73:0;;16490:2:1;36163:73:0;;;16472:21:1;16529:2;16509:18;;;16502:30;16568:34;16548:18;;;16541:62;-1:-1:-1;;;16619:18:1;;;16612:42;16671:19;;36163:73:0;16288:408:1;36163:73:0;36247:13;36263:23;36278:7;36263:14;:23::i;:::-;36247:39;;36316:5;-1:-1:-1;;;;;36305:16:0;:7;-1:-1:-1;;;;;36305:16:0;;:51;;;;36349:7;-1:-1:-1;;;;;36325:31:0;:20;36337:7;36325:11;:20::i;:::-;-1:-1:-1;;;;;36325:31:0;;36305:51;:87;;;-1:-1:-1;;;;;;33299:25:0;;;33275:4;33299:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;36360:32;36297:96;36053:348;-1:-1:-1;;;;36053:348:0:o;38974:544::-;39099:4;-1:-1:-1;;;;;39072:31:0;:23;39087:7;39072:14;:23::i;:::-;-1:-1:-1;;;;;39072:31:0;;39064:85;;;;-1:-1:-1;;;39064:85:0;;16903:2:1;39064:85:0;;;16885:21:1;16942:2;16922:18;;;16915:30;16981:34;16961:18;;;16954:62;-1:-1:-1;;;17032:18:1;;;17025:39;17081:19;;39064:85:0;16701:405:1;39064:85:0;-1:-1:-1;;;;;39168:16:0;;39160:65;;;;-1:-1:-1;;;39160:65:0;;17313:2:1;39160:65:0;;;17295:21:1;17352:2;17332:18;;;17325:30;17391:34;17371:18;;;17364:62;-1:-1:-1;;;17442:18:1;;;17435:34;17486:19;;39160:65:0;17111:400:1;39160:65:0;39238:39;39259:4;39265:2;39269:7;39238:20;:39::i;:::-;39342:29;39359:1;39363:7;39342:8;:29::i;:::-;-1:-1:-1;;;;;39384:15:0;;;;;;:9;:15;;;;;:20;;39403:1;;39384:15;:20;;39403:1;;39384:20;:::i;:::-;;;;-1:-1:-1;;;;;;;39415:13:0;;;;;;:9;:13;;;;;:18;;39432:1;;39415:13;:18;;39432:1;;39415:18;:::i;:::-;;;;-1:-1:-1;;39444:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39444:21:0;-1:-1:-1;;;;;39444:21:0;;;;;;;;;39483:27;;39444:16;;39483:27;;;;;;;38974:544;;;:::o;2763:98::-;2821:7;2848:5;2852:1;2848;:5;:::i;3501:98::-;3559:7;3586:5;3590:1;3586;:5;:::i;36743:110::-;36819:26;36829:2;36833:7;36819:26;;;;;;;;;;;;:9;:26::i;35174:272::-;35288:28;35298:4;35304:2;35308:7;35288:9;:28::i;:::-;35335:48;35358:4;35364:2;35368:7;35377:5;35335:22;:48::i;:::-;35327:111;;;;-1:-1:-1;;;35327:111:0;;;;;;;:::i;52486:114::-;52546:13;52579;52572:20;;;;;:::i;8212:723::-;8268:13;8489:10;8485:53;;-1:-1:-1;;8516:10:0;;;;;;;;;;;;-1:-1:-1;;;8516:10:0;;;;;8212:723::o;8485:53::-;8563:5;8548:12;8604:78;8611:9;;8604:78;;8637:8;;;;:::i;:::-;;-1:-1:-1;8660:10:0;;-1:-1:-1;8668:2:0;8660:10;;:::i;:::-;;;8604:78;;;8692:19;8724:6;8714:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8714:17:0;;8692:39;;8742:154;8749:10;;8742:154;;8776:11;8786:1;8776:11;;:::i;:::-;;-1:-1:-1;8845:10:0;8853:2;8845:5;:10;:::i;:::-;8832:24;;:2;:24;:::i;:::-;8819:39;;8802:6;8809;8802:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8802:56:0;;;;;;;;-1:-1:-1;8873:11:0;8882:2;8873:11;;:::i;:::-;;;8742:154;;44461:555;-1:-1:-1;;;;;44633:18:0;;44629:187;;44668:40;44700:7;45843:10;:17;;45816:24;;;;:15;:24;;;;;:44;;;45871:24;;;;;;;;;;;;45739:164;44668:40;44629:187;;;44738:2;-1:-1:-1;;;;;44730:10:0;:4;-1:-1:-1;;;;;44730:10:0;;44726:90;;44757:47;44790:4;44796:7;44757:32;:47::i;:::-;-1:-1:-1;;;;;44830:16:0;;44826:183;;44863:45;44900:7;44863:36;:45::i;44826:183::-;44936:4;-1:-1:-1;;;;;44930:10:0;:2;-1:-1:-1;;;;;44930:10:0;;44926:83;;44957:40;44985:2;44989:7;44957:27;:40::i;37080:250::-;37176:18;37182:2;37186:7;37176:5;:18::i;:::-;37213:54;37244:1;37248:2;37252:7;37261:5;37213:22;:54::i;:::-;37205:117;;;;-1:-1:-1;;;37205:117:0;;;;;;;:::i;40375:843::-;40496:4;-1:-1:-1;;;;;40522:13:0;;11042:20;11081:8;40518:693;;40558:72;;-1:-1:-1;;;40558:72:0;;-1:-1:-1;;;;;40558:36:0;;;;;:72;;7697:10;;40609:4;;40615:7;;40624:5;;40558:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40558:72:0;;;;;;;;-1:-1:-1;;40558:72:0;;;;;;;;;;;;:::i;:::-;;;40554:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40804:13:0;;40800:341;;40847:60;;-1:-1:-1;;;40847:60:0;;;;;;;:::i;40800:341::-;41091:6;41085:13;41076:6;41072:2;41068:15;41061:38;40554:602;-1:-1:-1;;;;;;40681:55:0;-1:-1:-1;;;40681:55:0;;-1:-1:-1;40674:62:0;;40518:693;-1:-1:-1;41195:4:0;40375:843;;;;;;:::o;46530:988::-;46796:22;46846:1;46821:22;46838:4;46821:16;:22::i;:::-;:26;;;;:::i;:::-;46858:18;46879:26;;;:17;:26;;;;;;46796:51;;-1:-1:-1;47012:28:0;;;47008:328;;-1:-1:-1;;;;;47079:18:0;;47057:19;47079:18;;;:12;:18;;;;;;;;:34;;;;;;;;;47130:30;;;;;;:44;;;47247:30;;:17;:30;;;;;:43;;;47008:328;-1:-1:-1;47432:26:0;;;;:17;:26;;;;;;;;47425:33;;;-1:-1:-1;;;;;47476:18:0;;;;;:12;:18;;;;;:34;;;;;;;47469:41;46530:988::o;47813:1079::-;48091:10;:17;48066:22;;48091:21;;48111:1;;48091:21;:::i;:::-;48123:18;48144:24;;;:15;:24;;;;;;48517:10;:26;;48066:46;;-1:-1:-1;48144:24:0;;48066:46;;48517:26;;;;;;:::i;:::-;;;;;;;;;48495:48;;48581:11;48556:10;48567;48556:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;48661:28;;;:15;:28;;;;;;;:41;;;48833:24;;;;;48826:31;48868:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;47884:1008;;;47813:1079;:::o;45317:221::-;45402:14;45419:20;45436:2;45419:16;:20::i;:::-;-1:-1:-1;;;;;45450:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;45495:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;45317:221:0:o;37666:382::-;-1:-1:-1;;;;;37746:16:0;;37738:61;;;;-1:-1:-1;;;37738:61:0;;19694:2:1;37738:61:0;;;19676:21:1;;;19713:18;;;19706:30;19772:34;19752:18;;;19745:62;19824:18;;37738:61:0;19492:356:1;37738:61:0;35824:4;35848:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35848:16:0;:30;37810:58;;;;-1:-1:-1;;;37810:58:0;;20055:2:1;37810:58:0;;;20037:21:1;20094:2;20074:18;;;20067:30;20133;20113:18;;;20106:58;20181:18;;37810:58:0;19853:352:1;37810:58:0;37881:45;37910:1;37914:2;37918:7;37881:20;:45::i;:::-;-1:-1:-1;;;;;37939:13:0;;;;;;:9;:13;;;;;:18;;37956:1;;37939:13;:18;;37956:1;;37939:18;:::i;:::-;;;;-1:-1:-1;;37968:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37968:21:0;-1:-1:-1;;;;;37968:21:0;;;;;;;;38007:33;;37968:16;;;38007:33;;37968:16;;38007:33;37666:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;196:131:1;-1:-1:-1;;;;;;270:32:1;;260:43;;250:71;;317:1;314;307:12;332:245;390:6;443:2;431:9;422:7;418:23;414:32;411:52;;;459:1;456;449:12;411:52;498:9;485:23;517:30;541:5;517:30;:::i;774:258::-;846:1;856:113;870:6;867:1;864:13;856:113;;;946:11;;;940:18;927:11;;;920:39;892:2;885:10;856:113;;;987:6;984:1;981:13;978:48;;;-1:-1:-1;;1022:1:1;1004:16;;997:27;774:258::o;1037:::-;1079:3;1117:5;1111:12;1144:6;1139:3;1132:19;1160:63;1216:6;1209:4;1204:3;1200:14;1193:4;1186:5;1182:16;1160:63;:::i;:::-;1277:2;1256:15;-1:-1:-1;;1252:29:1;1243:39;;;;1284:4;1239:50;;1037:258;-1:-1:-1;;1037:258:1:o;1300:220::-;1449:2;1438:9;1431:21;1412:4;1469:45;1510:2;1499:9;1495:18;1487:6;1469:45;:::i;1525:180::-;1584:6;1637:2;1625:9;1616:7;1612:23;1608:32;1605:52;;;1653:1;1650;1643:12;1605:52;-1:-1:-1;1676:23:1;;1525:180;-1:-1:-1;1525:180:1:o;1918:173::-;1986:20;;-1:-1:-1;;;;;2035:31:1;;2025:42;;2015:70;;2081:1;2078;2071:12;2015:70;1918:173;;;:::o;2096:254::-;2164:6;2172;2225:2;2213:9;2204:7;2200:23;2196:32;2193:52;;;2241:1;2238;2231:12;2193:52;2264:29;2283:9;2264:29;:::i;:::-;2254:39;2340:2;2325:18;;;;2312:32;;-1:-1:-1;;;2096: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:186::-;2747:6;2800:2;2788:9;2779:7;2775:23;2771:32;2768:52;;;2816:1;2813;2806:12;2768:52;2839:29;2858:9;2839:29;:::i;2879:127::-;2940:10;2935:3;2931:20;2928:1;2921:31;2971:4;2968:1;2961:15;2995:4;2992:1;2985:15;3011:632;3076:5;3106:18;3147:2;3139:6;3136:14;3133:40;;;3153:18;;:::i;:::-;3228:2;3222:9;3196:2;3282:15;;-1:-1:-1;;3278:24:1;;;3304:2;3274:33;3270:42;3258:55;;;3328:18;;;3348:22;;;3325:46;3322:72;;;3374:18;;:::i;:::-;3414:10;3410:2;3403:22;3443:6;3434:15;;3473:6;3465;3458:22;3513:3;3504:6;3499:3;3495:16;3492:25;3489:45;;;3530:1;3527;3520:12;3489:45;3580:6;3575:3;3568:4;3560:6;3556:17;3543:44;3635:1;3628:4;3619:6;3611;3607:19;3603:30;3596:41;;;;3011:632;;;;;:::o;3648:451::-;3717:6;3770:2;3758:9;3749:7;3745:23;3741:32;3738:52;;;3786:1;3783;3776:12;3738:52;3826:9;3813:23;3859:18;3851:6;3848:30;3845:50;;;3891:1;3888;3881:12;3845:50;3914:22;;3967:4;3959:13;;3955:27;-1:-1:-1;3945:55:1;;3996:1;3993;3986:12;3945:55;4019:74;4085:7;4080:2;4067:16;4062:2;4058;4054:11;4019:74;:::i;4104:632::-;4275:2;4327:21;;;4397:13;;4300:18;;;4419:22;;;4246:4;;4275:2;4498:15;;;;4472:2;4457:18;;;4246:4;4541:169;4555:6;4552:1;4549:13;4541:169;;;4616:13;;4604:26;;4685:15;;;;4650:12;;;;4577:1;4570:9;4541:169;;;-1:-1:-1;4727:3:1;;4104:632;-1:-1:-1;;;;;;4104:632:1:o;4741:347::-;4806:6;4814;4867:2;4855:9;4846:7;4842:23;4838:32;4835:52;;;4883:1;4880;4873:12;4835:52;4906:29;4925:9;4906:29;:::i;:::-;4896:39;;4985:2;4974:9;4970:18;4957:32;5032:5;5025:13;5018:21;5011:5;5008:32;4998:60;;5054:1;5051;5044:12;4998:60;5077:5;5067:15;;;4741:347;;;;;:::o;5093:667::-;5188:6;5196;5204;5212;5265:3;5253:9;5244:7;5240:23;5236:33;5233:53;;;5282:1;5279;5272:12;5233:53;5305:29;5324:9;5305:29;:::i;:::-;5295:39;;5353:38;5387:2;5376:9;5372:18;5353:38;:::i;:::-;5343:48;;5438:2;5427:9;5423:18;5410:32;5400:42;;5493:2;5482:9;5478:18;5465:32;5520:18;5512:6;5509:30;5506:50;;;5552:1;5549;5542:12;5506:50;5575:22;;5628:4;5620:13;;5616:27;-1:-1:-1;5606:55:1;;5657:1;5654;5647:12;5606:55;5680:74;5746:7;5741:2;5728:16;5723:2;5719;5715:11;5680:74;:::i;:::-;5670:84;;;5093:667;;;;;;;:::o;5765:260::-;5833:6;5841;5894:2;5882:9;5873:7;5869:23;5865:32;5862:52;;;5910:1;5907;5900:12;5862:52;5933:29;5952:9;5933:29;:::i;:::-;5923:39;;5981:38;6015:2;6004:9;6000:18;5981:38;:::i;:::-;5971:48;;5765:260;;;;;:::o;6030:380::-;6109:1;6105:12;;;;6152;;;6173:61;;6227:4;6219:6;6215:17;6205:27;;6173:61;6280:2;6272:6;6269:14;6249:18;6246:38;6243:161;;;6326:10;6321:3;6317:20;6314:1;6307:31;6361:4;6358:1;6351:15;6389:4;6386:1;6379:15;7655:413;7857:2;7839:21;;;7896:2;7876:18;;;7869:30;7935:34;7930:2;7915:18;;7908:62;-1:-1:-1;;;8001:2:1;7986:18;;7979:47;8058:3;8043:19;;7655:413::o;8073:356::-;8275:2;8257:21;;;8294:18;;;8287:30;8353:34;8348:2;8333:18;;8326:62;8420:2;8405:18;;8073:356::o;9970:127::-;10031:10;10026:3;10022:20;10019:1;10012:31;10062:4;10059:1;10052:15;10086:4;10083:1;10076:15;10923:127;10984:10;10979:3;10975:20;10972:1;10965:31;11015:4;11012:1;11005:15;11039:4;11036:1;11029:15;11055:135;11094:3;-1:-1:-1;;11115:17:1;;11112:43;;;11135:18;;:::i;:::-;-1:-1:-1;11182:1:1;11171:13;;11055:135::o;11952:418::-;12154:2;12136:21;;;12193:2;12173:18;;;12166:30;12232:34;12227:2;12212:18;;12205:62;-1:-1:-1;;;12298:2:1;12283:18;;12276:52;12360:3;12345:19;;11952:418::o;13595:128::-;13635:3;13666:1;13662:6;13659:1;13656:13;13653:39;;;13672:18;;:::i;:::-;-1:-1:-1;13708:9:1;;13595:128::o;13728:184::-;13798:6;13851:2;13839:9;13830:7;13826:23;13822:32;13819:52;;;13867:1;13864;13857:12;13819:52;-1:-1:-1;13890:16:1;;13728:184;-1:-1:-1;13728:184:1:o;15406:470::-;15585:3;15623:6;15617:13;15639:53;15685:6;15680:3;15673:4;15665:6;15661:17;15639:53;:::i;:::-;15755:13;;15714:16;;;;15777:57;15755:13;15714:16;15811:4;15799:17;;15777:57;:::i;:::-;15850:20;;15406:470;-1:-1:-1;;;;15406:470:1:o;17516:125::-;17556:4;17584:1;17581;17578:8;17575:34;;;17589:18;;:::i;:::-;-1:-1:-1;17626:9:1;;17516:125::o;17646:168::-;17686:7;17752:1;17748;17744:6;17740:14;17737:1;17734:21;17729:1;17722:9;17715:17;17711:45;17708:71;;;17759:18;;:::i;:::-;-1:-1:-1;17799:9:1;;17646:168::o;17819:414::-;18021:2;18003:21;;;18060:2;18040:18;;;18033:30;18099:34;18094:2;18079:18;;18072:62;-1:-1:-1;;;18165:2:1;18150:18;;18143:48;18223:3;18208:19;;17819:414::o;18238:127::-;18299:10;18294:3;18290:20;18287:1;18280:31;18330:4;18327:1;18320:15;18354:4;18351:1;18344:15;18370:120;18410:1;18436;18426:35;;18441:18;;:::i;:::-;-1:-1:-1;18475:9:1;;18370:120::o;18495:112::-;18527:1;18553;18543:35;;18558:18;;:::i;:::-;-1:-1:-1;18592:9:1;;18495:112::o;18612:489::-;-1:-1:-1;;;;;18881:15:1;;;18863:34;;18933:15;;18928:2;18913:18;;18906:43;18980:2;18965:18;;18958:34;;;19028:3;19023:2;19008:18;;19001:31;;;18806:4;;19049:46;;19075:19;;19067:6;19049:46;:::i;:::-;19041:54;18612:489;-1:-1:-1;;;;;;18612:489:1:o;19106:249::-;19175:6;19228:2;19216:9;19207:7;19203:23;19199:32;19196:52;;;19244:1;19241;19234:12;19196:52;19276:9;19270:16;19295:30;19319:5;19295:30;:::i;19360:127::-;19421:10;19416:3;19412:20;19409:1;19402:31;19452:4;19449:1;19442:15;19476:4;19473:1;19466:15

Swarm Source

ipfs://8a1e8166d8cec4a68be6d93ba6a886eef63f48f4ec532197faba85a7c96fde52
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.