ETH Price: $3,433.94 (+2.46%)
Gas: 4 Gwei

Token

0xMFers (0xMFers)
 

Overview

Max Total Supply

1,079 0xMFers

Holders

117

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
dumbfoundead.eth
Balance
5 0xMFers
0x43c574ae20e577fcc4346c0469d596ce5c6464c6
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:
MFers

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 800 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**128 - 1 (max value of uint128).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
    }

    // Compiler will pack the following 
    // _currentIndex and _burnCounter into a single 256bit word.
    
    // The tokenId of the next token to be minted.
    uint128 internal _currentIndex;

    // The number of tokens burned.
    uint128 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

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

        // Execution should never reach this point.
        revert();
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant: 
                    // There will always be an ownership that has an address and is not burned 
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _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 {
        _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 {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex + 1;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

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

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

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

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

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

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

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @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 {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked { 
            _burnCounter++;
        }
    }

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

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

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

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}
// File: contracts/0xMFers.sol



pragma solidity ^0.8.4;




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

    string private _baseTokenURI;

    uint256 public constant PRICE = 10000000000000000;
    uint256 public constant MAX_SUPPLY = 10000;
    uint256 public constant FREE_SUPPLY = 1000;
    uint256 public constant FREE_MINT_LIMIT_PER_WALLET = 10;
    uint256 public constant MAX_MINT_AMOUNT_PER_TX = 10;
    bool public IS_SALE_ACTIVE = false;

    mapping(address => uint256) private MintCountMap;

    constructor() 
    ERC721A("0xMFers", "0xMFers") 
    { 
        _baseTokenURI = "https://ipfs.io/ipfs/QmQFMY628ToPFGLFUhZJPavDXmaHV7exhtoFeyvDKG6XW7/";
    }

    /** FREE MINT **/

    function updateMintCount(address minter, uint256 count) private {
        MintCountMap[minter] += count;
    }

    /** SETTERS **/

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

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

    function setSaleActive(bool saleIsActive) external onlyOwner {
        IS_SALE_ACTIVE = saleIsActive;
    }

    /** MINT **/

    modifier mintCompliance(uint256 _mintAmount) {
        require(_mintAmount > 0 && _mintAmount <= MAX_MINT_AMOUNT_PER_TX, "Invalid mint amount!");
        require(_currentIndex + _mintAmount <= MAX_SUPPLY, "Max supply exceeded!");
        require(msg.sender == tx.origin, "Contract minting not allowed!");
        _;
    }

    function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
        require(IS_SALE_ACTIVE, "Sale is not active!");

        uint256 price = PRICE * _mintAmount;

        if (_currentIndex < FREE_SUPPLY) {
            uint256 remainingFreeMint = FREE_MINT_LIMIT_PER_WALLET - MintCountMap[msg.sender];
            if (remainingFreeMint > 0) {
                if (_mintAmount >= remainingFreeMint) {
                    price -= remainingFreeMint * PRICE;
                    updateMintCount(msg.sender, remainingFreeMint);
                } else {
                    price -= _mintAmount * PRICE;
                    updateMintCount(msg.sender, _mintAmount);
                }
            }
        }

        require(msg.value >= price, "Insufficient funds!");

        _safeMint(msg.sender, _mintAmount);
    }

    function mintOwner(address _to, uint256 _mintAmount) public mintCompliance(_mintAmount) onlyOwner {
        _safeMint(_to, _mintAmount);
    }

    /** PAYOUT **/

    function withdraw(address _to) public onlyOwner nonReentrant {
        uint256 balance = address(this).balance;

        Address.sendValue(payable(_to), balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":"FREE_MINT_LIMIT_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IS_SALE_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_AMOUNT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","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":"bool","name":"saleIsActive","type":"bool"}],"name":"setSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600a805460ff191690553480156200001b57600080fd5b5060408051808201825260078082526630784d4665727360c81b6020808401828152855180870190965292855284015281519192916200005e9160019162000122565b5080516200007490600290602084019062000122565b505050620000916200008b620000cc60201b60201c565b620000d0565b6001600855604080516080810190915260448082526200237b60208301398051620000c59160099160209091019062000122565b5062000205565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013090620001c8565b90600052602060002090601f0160209004810192826200015457600085556200019f565b82601f106200016f57805160ff19168380011785556200019f565b828001600101855582156200019f579182015b828111156200019f57825182559160200191906001019062000182565b50620001ad929150620001b1565b5090565b5b80821115620001ad5760008155600101620001b2565b600181811c90821680620001dd57607f821691505b60208210811415620001ff57634e487b7160e01b600052602260045260246000fd5b50919050565b61216680620002156000396000f3fe6080604052600436106101cd5760003560e01c80636352211e116100f757806395d89b4111610095578063b88d4fde11610064578063b88d4fde146104fe578063c87b56dd1461051e578063e985e9c51461053e578063f2fde38b1461058757600080fd5b806395d89b41146104a05780639858cf19146104b5578063a0712d68146104cb578063a22cb465146104de57600080fd5b806376d02b71116100d157806376d02b711461042d578063841718a6146104475780638d859f3e146104675780638da5cb5b1461048257600080fd5b80636352211e146103d857806370a08231146103f8578063715018a61461041857600080fd5b806323b872dd1161016f57806342842e0e1161013e57806342842e0e146103585780634f6ccce71461037857806351cff8d91461039857806355f804b3146103b857600080fd5b806323b872dd146102e25780632f745c591461030257806332cb6b0c14610322578063408cbf941461033857600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806309ef65271461028357806310b0c0521461028357806318160ddd146102a657600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611e08565b6105a7565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c610614565b6040516101fe9190611f8c565b34801561023557600080fd5b50610249610244366004611eb4565b6106a6565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611dc3565b6106ea565b005b34801561028f57600080fd5b50610298600a81565b6040519081526020016101fe565b3480156102b257600080fd5b506102986000546001600160801b0370010000000000000000000000000000000082048116918116919091031690565b3480156102ee57600080fd5b506102816102fd366004611c81565b610778565b34801561030e57600080fd5b5061029861031d366004611dc3565b610783565b34801561032e57600080fd5b5061029861271081565b34801561034457600080fd5b50610281610353366004611dc3565b610880565b34801561036457600080fd5b50610281610373366004611c81565b6109ff565b34801561038457600080fd5b50610298610393366004611eb4565b610a1a565b3480156103a457600080fd5b506102816103b3366004611c33565b610ac5565b3480156103c457600080fd5b506102816103d3366004611e42565b610b8b565b3480156103e457600080fd5b506102496103f3366004611eb4565b610bf1565b34801561040457600080fd5b50610298610413366004611c33565b610c03565b34801561042457600080fd5b50610281610c52565b34801561043957600080fd5b50600a546101f29060ff1681565b34801561045357600080fd5b50610281610462366004611ded565b610cb8565b34801561047357600080fd5b50610298662386f26fc1000081565b34801561048e57600080fd5b506007546001600160a01b0316610249565b3480156104ac57600080fd5b5061021c610d25565b3480156104c157600080fd5b506102986103e881565b6102816104d9366004611eb4565b610d34565b3480156104ea57600080fd5b506102816104f9366004611d99565b610fa2565b34801561050a57600080fd5b50610281610519366004611cbd565b611038565b34801561052a57600080fd5b5061021c610539366004611eb4565b611072565b34801561054a57600080fd5b506101f2610559366004611c4e565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561059357600080fd5b506102816105a2366004611c33565b6110f7565b60006001600160e01b031982166380ac58cd60e01b14806105d857506001600160e01b03198216635b5e139f60e01b145b806105f357506001600160e01b0319821663780e9d6360e01b145b8061060e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461062390612058565b80601f016020809104026020016040519081016040528092919081815260200182805461064f90612058565b801561069c5780601f106106715761010080835404028352916020019161069c565b820191906000526020600020905b81548152906001019060200180831161067f57829003601f168201915b5050505050905090565b60006106b1826111d9565b6106ce576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106f582610bf1565b9050806001600160a01b0316836001600160a01b0316141561072a5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061074a57506107488133610559565b155b15610768576040516367d9dca160e11b815260040160405180910390fd5b61077383838361120d565b505050565b610773838383611276565b600061078e83610c03565b82106107ad576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b8381101561087a57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615801592820192909252906108265750610872565b80516001600160a01b03161561083b57805192505b876001600160a01b0316836001600160a01b0316141561087057868414156108695750935061060e92505050565b6001909301925b505b6001016107be565b50600080fd5b806000811180156108925750600a8111155b6108e35760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e742100000000000000000000000060448201526064015b60405180910390fd5b600054612710906108fe9083906001600160801b0316611fca565b111561094c5760405162461bcd60e51b815260206004820152601460248201527f4d617820737570706c792065786365656465642100000000000000000000000060448201526064016108da565b33321461099b5760405162461bcd60e51b815260206004820152601d60248201527f436f6e7472616374206d696e74696e67206e6f7420616c6c6f7765642100000060448201526064016108da565b6007546001600160a01b031633146109f55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108da565b6107738383611495565b61077383838360405180602001604052806000815250611038565b600080546001600160801b031681805b82811015610aab57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290610aa25785831415610a9b5750949350505050565b6001909201915b50600101610a2a565b506040516329c8c00760e21b815260040160405180910390fd5b6007546001600160a01b03163314610b1f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108da565b60026008541415610b725760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108da565b600260085547610b8282826114b3565b50506001600855565b6007546001600160a01b03163314610be55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108da565b61077360098383611b6e565b6000610bfc826115cc565b5192915050565b60006001600160a01b038216610c2c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526004602052604090205467ffffffffffffffff1690565b6007546001600160a01b03163314610cac5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108da565b610cb660006116f0565b565b6007546001600160a01b03163314610d125760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108da565b600a805460ff1916911515919091179055565b60606002805461062390612058565b80600081118015610d465750600a8111155b610d925760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e742100000000000000000000000060448201526064016108da565b60005461271090610dad9083906001600160801b0316611fca565b1115610dfb5760405162461bcd60e51b815260206004820152601460248201527f4d617820737570706c792065786365656465642100000000000000000000000060448201526064016108da565b333214610e4a5760405162461bcd60e51b815260206004820152601d60248201527f436f6e7472616374206d696e74696e67206e6f7420616c6c6f7765642100000060448201526064016108da565b600a5460ff16610e9c5760405162461bcd60e51b815260206004820152601360248201527f53616c65206973206e6f7420616374697665210000000000000000000000000060448201526064016108da565b6000610eaf83662386f26fc10000611ff6565b6000549091506103e86001600160801b039091161015610f4857336000908152600b6020526040812054610ee490600a612015565b90508015610f4657808410610f1f57610f04662386f26fc1000082611ff6565b610f0e9083612015565b9150610f1a338261174f565b610f46565b610f30662386f26fc1000085611ff6565b610f3a9083612015565b9150610f46338561174f565b505b80341015610f985760405162461bcd60e51b815260206004820152601360248201527f496e73756666696369656e742066756e6473210000000000000000000000000060448201526064016108da565b6107733384611495565b6001600160a01b038216331415610fcc5760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611043848484611276565b61104f84848484611780565b61106c576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061107d826111d9565b61109a57604051630a14c4b560e41b815260040160405180910390fd5b60006110a461188f565b90508051600014156110c557604051806020016040528060008152506110f0565b806110cf8461189e565b6040516020016110e0929190611ef9565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146111515760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108da565b6001600160a01b0381166111cd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016108da565b6111d6816116f0565b50565b600080546001600160801b03168210801561060e575050600090815260036020526040902054600160e01b900460ff161590565b600082815260056020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611281826115cc565b80519091506000906001600160a01b0316336001600160a01b031614806112af575081516112af9033610559565b806112ca5750336112bf846106a6565b6001600160a01b0316145b9050806112ea57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b03161461131f5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661134657604051633a954ecd60e21b815260040160405180910390fd5b611356600084846000015161120d565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661144b576000546001600160801b031681101561144b578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6114af8282604051806020016040528060008152506119b4565b5050565b804710156115035760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016108da565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611550576040519150601f19603f3d011682016040523d82523d6000602084013e611555565b606091505b50509050806107735760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016108da565b60408051606081018252600080825260208201819052918101829052905482906001600160801b03168110156116d757600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906116d55780516001600160a01b03161561166b579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156116d0579392505050565b61166b565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152600b602052604081208054839290611777908490611fca565b90915550505050565b60006001600160a01b0384163b1561188357604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117c4903390899088908890600401611f50565b602060405180830381600087803b1580156117de57600080fd5b505af192505050801561180e575060408051601f3d908101601f1916820190925261180b91810190611e25565b60015b611869573d80801561183c576040519150601f19603f3d011682016040523d82523d6000602084013e611841565b606091505b508051611861576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611887565b5060015b949350505050565b60606009805461062390612058565b6060816118c25750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118ec57806118d681612093565b91506118e59050600a83611fe2565b91506118c6565b60008167ffffffffffffffff81111561190757611907612104565b6040519080825280601f01601f191660200182016040528015611931576020820181803683370190505b5090505b841561188757611946600183612015565b9150611953600a866120ae565b61195e906030611fca565b60f81b818381518110611973576119736120ee565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506119ad600a86611fe2565b9450611935565b6107738383836001600080546119d4906001600160801b03166001611f9f565b6001600160801b031690506001600160a01b038516611a0557604051622e076360e81b815260040160405180910390fd5b83611a235760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015611b3f5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611b155750611b136000888488611780565b155b15611b33576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611abe565b50600080546fffffffffffffffffffffffffffffffff19166001600160801b039290921691909117905561148e565b828054611b7a90612058565b90600052602060002090601f016020900481019282611b9c5760008555611be2565b82601f10611bb55782800160ff19823516178555611be2565b82800160010185558215611be2579182015b82811115611be2578235825591602001919060010190611bc7565b50611bee929150611bf2565b5090565b5b80821115611bee5760008155600101611bf3565b80356001600160a01b0381168114611c1e57600080fd5b919050565b80358015158114611c1e57600080fd5b600060208284031215611c4557600080fd5b6110f082611c07565b60008060408385031215611c6157600080fd5b611c6a83611c07565b9150611c7860208401611c07565b90509250929050565b600080600060608486031215611c9657600080fd5b611c9f84611c07565b9250611cad60208501611c07565b9150604084013590509250925092565b60008060008060808587031215611cd357600080fd5b611cdc85611c07565b9350611cea60208601611c07565b925060408501359150606085013567ffffffffffffffff80821115611d0e57600080fd5b818701915087601f830112611d2257600080fd5b813581811115611d3457611d34612104565b604051601f8201601f19908116603f01168101908382118183101715611d5c57611d5c612104565b816040528281528a6020848701011115611d7557600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611dac57600080fd5b611db583611c07565b9150611c7860208401611c23565b60008060408385031215611dd657600080fd5b611ddf83611c07565b946020939093013593505050565b600060208284031215611dff57600080fd5b6110f082611c23565b600060208284031215611e1a57600080fd5b81356110f08161211a565b600060208284031215611e3757600080fd5b81516110f08161211a565b60008060208385031215611e5557600080fd5b823567ffffffffffffffff80821115611e6d57600080fd5b818501915085601f830112611e8157600080fd5b813581811115611e9057600080fd5b866020828501011115611ea257600080fd5b60209290920196919550909350505050565b600060208284031215611ec657600080fd5b5035919050565b60008151808452611ee581602086016020860161202c565b601f01601f19169290920160200192915050565b60008351611f0b81846020880161202c565b835190830190611f1f81836020880161202c565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611f826080830184611ecd565b9695505050505050565b6020815260006110f06020830184611ecd565b60006001600160801b03808316818516808303821115611fc157611fc16120c2565b01949350505050565b60008219821115611fdd57611fdd6120c2565b500190565b600082611ff157611ff16120d8565b500490565b6000816000190483118215151615612010576120106120c2565b500290565b600082821015612027576120276120c2565b500390565b60005b8381101561204757818101518382015260200161202f565b8381111561106c5750506000910152565b600181811c9082168061206c57607f821691505b6020821081141561208d57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120a7576120a76120c2565b5060010190565b6000826120bd576120bd6120d8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146111d657600080fdfea26469706673582212200198552df91833d1cd7fdf516d5ad71c9eebfc3c57b1753eb4d119b0b8432e7a64736f6c6343000807003368747470733a2f2f697066732e696f2f697066732f516d51464d59363238546f5046474c4655685a4a50617644586d61485637657868746f46657976444b47365857372f

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80636352211e116100f757806395d89b4111610095578063b88d4fde11610064578063b88d4fde146104fe578063c87b56dd1461051e578063e985e9c51461053e578063f2fde38b1461058757600080fd5b806395d89b41146104a05780639858cf19146104b5578063a0712d68146104cb578063a22cb465146104de57600080fd5b806376d02b71116100d157806376d02b711461042d578063841718a6146104475780638d859f3e146104675780638da5cb5b1461048257600080fd5b80636352211e146103d857806370a08231146103f8578063715018a61461041857600080fd5b806323b872dd1161016f57806342842e0e1161013e57806342842e0e146103585780634f6ccce71461037857806351cff8d91461039857806355f804b3146103b857600080fd5b806323b872dd146102e25780632f745c591461030257806332cb6b0c14610322578063408cbf941461033857600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806309ef65271461028357806310b0c0521461028357806318160ddd146102a657600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611e08565b6105a7565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c610614565b6040516101fe9190611f8c565b34801561023557600080fd5b50610249610244366004611eb4565b6106a6565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611dc3565b6106ea565b005b34801561028f57600080fd5b50610298600a81565b6040519081526020016101fe565b3480156102b257600080fd5b506102986000546001600160801b0370010000000000000000000000000000000082048116918116919091031690565b3480156102ee57600080fd5b506102816102fd366004611c81565b610778565b34801561030e57600080fd5b5061029861031d366004611dc3565b610783565b34801561032e57600080fd5b5061029861271081565b34801561034457600080fd5b50610281610353366004611dc3565b610880565b34801561036457600080fd5b50610281610373366004611c81565b6109ff565b34801561038457600080fd5b50610298610393366004611eb4565b610a1a565b3480156103a457600080fd5b506102816103b3366004611c33565b610ac5565b3480156103c457600080fd5b506102816103d3366004611e42565b610b8b565b3480156103e457600080fd5b506102496103f3366004611eb4565b610bf1565b34801561040457600080fd5b50610298610413366004611c33565b610c03565b34801561042457600080fd5b50610281610c52565b34801561043957600080fd5b50600a546101f29060ff1681565b34801561045357600080fd5b50610281610462366004611ded565b610cb8565b34801561047357600080fd5b50610298662386f26fc1000081565b34801561048e57600080fd5b506007546001600160a01b0316610249565b3480156104ac57600080fd5b5061021c610d25565b3480156104c157600080fd5b506102986103e881565b6102816104d9366004611eb4565b610d34565b3480156104ea57600080fd5b506102816104f9366004611d99565b610fa2565b34801561050a57600080fd5b50610281610519366004611cbd565b611038565b34801561052a57600080fd5b5061021c610539366004611eb4565b611072565b34801561054a57600080fd5b506101f2610559366004611c4e565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561059357600080fd5b506102816105a2366004611c33565b6110f7565b60006001600160e01b031982166380ac58cd60e01b14806105d857506001600160e01b03198216635b5e139f60e01b145b806105f357506001600160e01b0319821663780e9d6360e01b145b8061060e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461062390612058565b80601f016020809104026020016040519081016040528092919081815260200182805461064f90612058565b801561069c5780601f106106715761010080835404028352916020019161069c565b820191906000526020600020905b81548152906001019060200180831161067f57829003601f168201915b5050505050905090565b60006106b1826111d9565b6106ce576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106f582610bf1565b9050806001600160a01b0316836001600160a01b0316141561072a5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061074a57506107488133610559565b155b15610768576040516367d9dca160e11b815260040160405180910390fd5b61077383838361120d565b505050565b610773838383611276565b600061078e83610c03565b82106107ad576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b8381101561087a57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615801592820192909252906108265750610872565b80516001600160a01b03161561083b57805192505b876001600160a01b0316836001600160a01b0316141561087057868414156108695750935061060e92505050565b6001909301925b505b6001016107be565b50600080fd5b806000811180156108925750600a8111155b6108e35760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e742100000000000000000000000060448201526064015b60405180910390fd5b600054612710906108fe9083906001600160801b0316611fca565b111561094c5760405162461bcd60e51b815260206004820152601460248201527f4d617820737570706c792065786365656465642100000000000000000000000060448201526064016108da565b33321461099b5760405162461bcd60e51b815260206004820152601d60248201527f436f6e7472616374206d696e74696e67206e6f7420616c6c6f7765642100000060448201526064016108da565b6007546001600160a01b031633146109f55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108da565b6107738383611495565b61077383838360405180602001604052806000815250611038565b600080546001600160801b031681805b82811015610aab57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290610aa25785831415610a9b5750949350505050565b6001909201915b50600101610a2a565b506040516329c8c00760e21b815260040160405180910390fd5b6007546001600160a01b03163314610b1f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108da565b60026008541415610b725760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108da565b600260085547610b8282826114b3565b50506001600855565b6007546001600160a01b03163314610be55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108da565b61077360098383611b6e565b6000610bfc826115cc565b5192915050565b60006001600160a01b038216610c2c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526004602052604090205467ffffffffffffffff1690565b6007546001600160a01b03163314610cac5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108da565b610cb660006116f0565b565b6007546001600160a01b03163314610d125760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108da565b600a805460ff1916911515919091179055565b60606002805461062390612058565b80600081118015610d465750600a8111155b610d925760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e742100000000000000000000000060448201526064016108da565b60005461271090610dad9083906001600160801b0316611fca565b1115610dfb5760405162461bcd60e51b815260206004820152601460248201527f4d617820737570706c792065786365656465642100000000000000000000000060448201526064016108da565b333214610e4a5760405162461bcd60e51b815260206004820152601d60248201527f436f6e7472616374206d696e74696e67206e6f7420616c6c6f7765642100000060448201526064016108da565b600a5460ff16610e9c5760405162461bcd60e51b815260206004820152601360248201527f53616c65206973206e6f7420616374697665210000000000000000000000000060448201526064016108da565b6000610eaf83662386f26fc10000611ff6565b6000549091506103e86001600160801b039091161015610f4857336000908152600b6020526040812054610ee490600a612015565b90508015610f4657808410610f1f57610f04662386f26fc1000082611ff6565b610f0e9083612015565b9150610f1a338261174f565b610f46565b610f30662386f26fc1000085611ff6565b610f3a9083612015565b9150610f46338561174f565b505b80341015610f985760405162461bcd60e51b815260206004820152601360248201527f496e73756666696369656e742066756e6473210000000000000000000000000060448201526064016108da565b6107733384611495565b6001600160a01b038216331415610fcc5760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611043848484611276565b61104f84848484611780565b61106c576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061107d826111d9565b61109a57604051630a14c4b560e41b815260040160405180910390fd5b60006110a461188f565b90508051600014156110c557604051806020016040528060008152506110f0565b806110cf8461189e565b6040516020016110e0929190611ef9565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146111515760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108da565b6001600160a01b0381166111cd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016108da565b6111d6816116f0565b50565b600080546001600160801b03168210801561060e575050600090815260036020526040902054600160e01b900460ff161590565b600082815260056020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611281826115cc565b80519091506000906001600160a01b0316336001600160a01b031614806112af575081516112af9033610559565b806112ca5750336112bf846106a6565b6001600160a01b0316145b9050806112ea57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b03161461131f5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661134657604051633a954ecd60e21b815260040160405180910390fd5b611356600084846000015161120d565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661144b576000546001600160801b031681101561144b578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6114af8282604051806020016040528060008152506119b4565b5050565b804710156115035760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016108da565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611550576040519150601f19603f3d011682016040523d82523d6000602084013e611555565b606091505b50509050806107735760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016108da565b60408051606081018252600080825260208201819052918101829052905482906001600160801b03168110156116d757600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906116d55780516001600160a01b03161561166b579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156116d0579392505050565b61166b565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152600b602052604081208054839290611777908490611fca565b90915550505050565b60006001600160a01b0384163b1561188357604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117c4903390899088908890600401611f50565b602060405180830381600087803b1580156117de57600080fd5b505af192505050801561180e575060408051601f3d908101601f1916820190925261180b91810190611e25565b60015b611869573d80801561183c576040519150601f19603f3d011682016040523d82523d6000602084013e611841565b606091505b508051611861576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611887565b5060015b949350505050565b60606009805461062390612058565b6060816118c25750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118ec57806118d681612093565b91506118e59050600a83611fe2565b91506118c6565b60008167ffffffffffffffff81111561190757611907612104565b6040519080825280601f01601f191660200182016040528015611931576020820181803683370190505b5090505b841561188757611946600183612015565b9150611953600a866120ae565b61195e906030611fca565b60f81b818381518110611973576119736120ee565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506119ad600a86611fe2565b9450611935565b6107738383836001600080546119d4906001600160801b03166001611f9f565b6001600160801b031690506001600160a01b038516611a0557604051622e076360e81b815260040160405180910390fd5b83611a235760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015611b3f5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611b155750611b136000888488611780565b155b15611b33576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611abe565b50600080546fffffffffffffffffffffffffffffffff19166001600160801b039290921691909117905561148e565b828054611b7a90612058565b90600052602060002090601f016020900481019282611b9c5760008555611be2565b82601f10611bb55782800160ff19823516178555611be2565b82800160010185558215611be2579182015b82811115611be2578235825591602001919060010190611bc7565b50611bee929150611bf2565b5090565b5b80821115611bee5760008155600101611bf3565b80356001600160a01b0381168114611c1e57600080fd5b919050565b80358015158114611c1e57600080fd5b600060208284031215611c4557600080fd5b6110f082611c07565b60008060408385031215611c6157600080fd5b611c6a83611c07565b9150611c7860208401611c07565b90509250929050565b600080600060608486031215611c9657600080fd5b611c9f84611c07565b9250611cad60208501611c07565b9150604084013590509250925092565b60008060008060808587031215611cd357600080fd5b611cdc85611c07565b9350611cea60208601611c07565b925060408501359150606085013567ffffffffffffffff80821115611d0e57600080fd5b818701915087601f830112611d2257600080fd5b813581811115611d3457611d34612104565b604051601f8201601f19908116603f01168101908382118183101715611d5c57611d5c612104565b816040528281528a6020848701011115611d7557600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611dac57600080fd5b611db583611c07565b9150611c7860208401611c23565b60008060408385031215611dd657600080fd5b611ddf83611c07565b946020939093013593505050565b600060208284031215611dff57600080fd5b6110f082611c23565b600060208284031215611e1a57600080fd5b81356110f08161211a565b600060208284031215611e3757600080fd5b81516110f08161211a565b60008060208385031215611e5557600080fd5b823567ffffffffffffffff80821115611e6d57600080fd5b818501915085601f830112611e8157600080fd5b813581811115611e9057600080fd5b866020828501011115611ea257600080fd5b60209290920196919550909350505050565b600060208284031215611ec657600080fd5b5035919050565b60008151808452611ee581602086016020860161202c565b601f01601f19169290920160200192915050565b60008351611f0b81846020880161202c565b835190830190611f1f81836020880161202c565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611f826080830184611ecd565b9695505050505050565b6020815260006110f06020830184611ecd565b60006001600160801b03808316818516808303821115611fc157611fc16120c2565b01949350505050565b60008219821115611fdd57611fdd6120c2565b500190565b600082611ff157611ff16120d8565b500490565b6000816000190483118215151615612010576120106120c2565b500290565b600082821015612027576120276120c2565b500390565b60005b8381101561204757818101518382015260200161202f565b8381111561106c5750506000910152565b600181811c9082168061206c57607f821691505b6020821081141561208d57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120a7576120a76120c2565b5060010190565b6000826120bd576120bd6120d8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146111d657600080fdfea26469706673582212200198552df91833d1cd7fdf516d5ad71c9eebfc3c57b1753eb4d119b0b8432e7a64736f6c63430008070033

Deployed Bytecode Sourcemap

49137:2759:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32593:372;;;;;;;;;;-1:-1:-1;32593:372:0;;;;;:::i;:::-;;:::i;:::-;;;6327:14:1;;6320:22;6302:41;;6290:2;6275:18;32593:372:0;;;;;;;;35203:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;36715:204::-;;;;;;;;;;-1:-1:-1;36715:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5579:55:1;;;5561:74;;5549:2;5534:18;36715:204:0;5415:226:1;36278:371:0;;;;;;;;;;-1:-1:-1;36278:371:0;;;;;:::i;:::-;;:::i;:::-;;49483:51;;;;;;;;;;;;49532:2;49483:51;;;;;10389:25:1;;;10377:2;10362:18;49483:51:0;10243:177:1;29830:280:0;;;;;;;;;;;;29883:7;30075:12;-1:-1:-1;;;;;30075:12:0;;;;;30059:13;;;:28;;;;30052:35;;29830:280;37572:170;;;;;;;;;;-1:-1:-1;37572:170:0;;;;;:::i;:::-;;:::i;31416:1105::-;;;;;;;;;;-1:-1:-1;31416:1105:0;;;;;:::i;:::-;;:::i;49323:42::-;;;;;;;;;;;;49360:5;49323:42;;51547:144;;;;;;;;;;-1:-1:-1;51547:144:0;;;;;:::i;:::-;;:::i;37813:185::-;;;;;;;;;;-1:-1:-1;37813:185:0;;;;;:::i;:::-;;:::i;30403:713::-;;;;;;;;;;-1:-1:-1;30403:713:0;;;;;:::i;:::-;;:::i;51721:172::-;;;;;;;;;;-1:-1:-1;51721:172:0;;;;;:::i;:::-;;:::i;50101:106::-;;;;;;;;;;-1:-1:-1;50101:106:0;;;;;:::i;:::-;;:::i;35012:124::-;;;;;;;;;;-1:-1:-1;35012:124:0;;;;;:::i;:::-;;:::i;33029:206::-;;;;;;;;;;-1:-1:-1;33029:206:0;;;;;:::i;:::-;;:::i;7522:103::-;;;;;;;;;;;;;:::i;49541:34::-;;;;;;;;;;-1:-1:-1;49541:34:0;;;;;;;;50215:109;;;;;;;;;;-1:-1:-1;50215:109:0;;;;;:::i;:::-;;:::i;49267:49::-;;;;;;;;;;;;49299:17;49267:49;;6871:87;;;;;;;;;;-1:-1:-1;6944:6:0;;-1:-1:-1;;;;;6944:6:0;6871:87;;35372:104;;;;;;;;;;;;;:::i;49372:42::-;;;;;;;;;;;;49410:4;49372:42;;50686:853;;;;;;:::i;:::-;;:::i;36991:279::-;;;;;;;;;;-1:-1:-1;36991:279:0;;;;;:::i;:::-;;:::i;38069:342::-;;;;;;;;;;-1:-1:-1;38069:342:0;;;;;:::i;:::-;;:::i;35547:327::-;;;;;;;;;;-1:-1:-1;35547:327:0;;;;;:::i;:::-;;:::i;37341:164::-;;;;;;;;;;-1:-1:-1;37341:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;37462:25:0;;;37438:4;37462:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;37341:164;7780:201;;;;;;;;;;-1:-1:-1;7780:201:0;;;;;:::i;:::-;;:::i;32593:372::-;32695:4;-1:-1:-1;;;;;;32732:40:0;;-1:-1:-1;;;32732:40:0;;:105;;-1:-1:-1;;;;;;;32789:48:0;;-1:-1:-1;;;32789:48:0;32732:105;:172;;;-1:-1:-1;;;;;;;32854:50:0;;-1:-1:-1;;;32854:50:0;32732:172;:225;;;-1:-1:-1;;;;;;;;;;19764:40:0;;;32921:36;32712:245;32593:372;-1:-1:-1;;32593:372:0:o;35203:100::-;35257:13;35290:5;35283:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35203:100;:::o;36715:204::-;36783:7;36808:16;36816:7;36808;:16::i;:::-;36803:64;;36833:34;;-1:-1:-1;;;36833:34:0;;;;;;;;;;;36803:64;-1:-1:-1;36887:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;36887:24:0;;36715:204::o;36278:371::-;36351:13;36367:24;36383:7;36367:15;:24::i;:::-;36351:40;;36412:5;-1:-1:-1;;;;;36406:11:0;:2;-1:-1:-1;;;;;36406:11:0;;36402:48;;;36426:24;;-1:-1:-1;;;36426:24:0;;;;;;;;;;;36402:48;5675:10;-1:-1:-1;;;;;36467:21:0;;;;;;:63;;-1:-1:-1;36493:37:0;36510:5;5675:10;37341:164;:::i;36493:37::-;36492:38;36467:63;36463:138;;;36554:35;;-1:-1:-1;;;36554:35:0;;;;;;;;;;;36463:138;36613:28;36622:2;36626:7;36635:5;36613:8;:28::i;:::-;36340:309;36278:371;;:::o;37572:170::-;37706:28;37716:4;37722:2;37726:7;37706:9;:28::i;31416:1105::-;31505:7;31538:16;31548:5;31538:9;:16::i;:::-;31529:5;:25;31525:61;;31563:23;;-1:-1:-1;;;31563:23:0;;;;;;;;;;;31525:61;31597:22;31622:13;;-1:-1:-1;;;;;31622:13:0;;31597:22;;31872:557;31892:14;31888:1;:18;31872:557;;;31932:31;31966:14;;;:11;:14;;;;;;;;;31932:48;;;;;;;;;-1:-1:-1;;;;;31932:48:0;;;;-1:-1:-1;;;31932:48:0;;;;;;;;;;;-1:-1:-1;;;31932:48:0;;;;;;;;;;;;;;;;31999:73;;32044:8;;;31999:73;32094:14;;-1:-1:-1;;;;;32094:28:0;;32090:111;;32167:14;;;-1:-1:-1;32090:111:0;32244:5;-1:-1:-1;;;;;32223:26:0;:17;-1:-1:-1;;;;;32223:26:0;;32219:195;;;32293:5;32278:11;:20;32274:85;;;-1:-1:-1;32334:1:0;-1:-1:-1;32327:8:0;;-1:-1:-1;;;32327:8:0;32274:85;32381:13;;;;;32219:195;31913:516;31872:557;31908:3;;31872:557;;;;32505:8;;;51547:144;51622:11;50430:1;50416:11;:15;:56;;;;;49532:2;50435:11;:37;;50416:56;50408:89;;;;-1:-1:-1;;;50408:89:0;;7187:2:1;50408:89:0;;;7169:21:1;7226:2;7206:18;;;7199:30;7265:22;7245:18;;;7238:50;7305:18;;50408:89:0;;;;;;;;;50516:13;;49360:5;;50516:27;;50532:11;;-1:-1:-1;;;;;50516:13:0;:27;:::i;:::-;:41;;50508:74;;;;-1:-1:-1;;;50508:74:0;;9388:2:1;50508:74:0;;;9370:21:1;9427:2;9407:18;;;9400:30;9466:22;9446:18;;;9439:50;9506:18;;50508:74:0;9186:344:1;50508:74:0;50601:10;50615:9;50601:23;50593:65;;;;-1:-1:-1;;;50593:65:0;;7963:2:1;50593:65:0;;;7945:21:1;8002:2;7982:18;;;7975:30;8041:31;8021:18;;;8014:59;8090:18;;50593:65:0;7761:353:1;50593:65:0;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23:::1;7083:68;;;::::0;-1:-1:-1;;;7083:68:0;;8679:2:1;7083:68:0::1;::::0;::::1;8661:21:1::0;;;8698:18;;;8691:30;8757:34;8737:18;;;8730:62;8809:18;;7083:68:0::1;8477:356:1::0;7083:68:0::1;51656:27:::2;51666:3;51671:11;51656:9;:27::i;37813:185::-:0;37951:39;37968:4;37974:2;37978:7;37951:39;;;;;;;;;;;;:16;:39::i;30403:713::-;30470:7;30515:13;;-1:-1:-1;;;;;30515:13:0;30470:7;;30729:328;30749:14;30745:1;:18;30729:328;;;30789:31;30823:14;;;:11;:14;;;;;;;;;30789:48;;;;;;;;;-1:-1:-1;;;;;30789:48:0;;;;-1:-1:-1;;;30789:48:0;;;;;;;;;;;-1:-1:-1;;;30789:48:0;;;;;;;;;;;;;;30856:186;;30921:5;30906:11;:20;30902:85;;;-1:-1:-1;30962:1:0;30403:713;-1:-1:-1;;;;30403:713:0:o;30902:85::-;31009:13;;;;;30856:186;-1:-1:-1;30765:3:0;;30729:328;;;;31085:23;;-1:-1:-1;;;31085:23:0;;;;;;;;;;;51721:172;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;8679:2:1;7083:68:0;;;8661:21:1;;;8698:18;;;8691:30;8757:34;8737:18;;;8730:62;8809:18;;7083:68:0;8477:356:1;7083:68:0;1845:1:::1;2443:7;;:19;;2435:63;;;::::0;-1:-1:-1;;;2435:63:0;;9737:2:1;2435:63:0::1;::::0;::::1;9719:21:1::0;9776:2;9756:18;;;9749:30;9815:33;9795:18;;;9788:61;9866:18;;2435:63:0::1;9535:355:1::0;2435:63:0::1;1845:1;2576:7;:18:::0;51811:21:::2;51845:40;51871:3:::0;51811:21;51845:17:::2;:40::i;:::-;-1:-1:-1::0;;1801:1:0::1;2755:7;:22:::0;51721:172::o;50101:106::-;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;8679:2:1;7083:68:0;;;8661:21:1;;;8698:18;;;8691:30;8757:34;8737:18;;;8730:62;8809:18;;7083:68:0;8477:356:1;7083:68:0;50176:23:::1;:13;50192:7:::0;;50176:23:::1;:::i;35012:124::-:0;35076:7;35103:20;35115:7;35103:11;:20::i;:::-;:25;;35012:124;-1:-1:-1;;35012:124:0:o;33029:206::-;33093:7;-1:-1:-1;;;;;33117:19:0;;33113:60;;33145:28;;-1:-1:-1;;;33145:28:0;;;;;;;;;;;33113:60;-1:-1:-1;;;;;;33199:19:0;;;;;:12;:19;;;;;:27;;;;33029:206::o;7522:103::-;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;8679:2:1;7083:68:0;;;8661:21:1;;;8698:18;;;8691:30;8757:34;8737:18;;;8730:62;8809:18;;7083:68:0;8477:356:1;7083:68:0;7587:30:::1;7614:1;7587:18;:30::i;:::-;7522:103::o:0;50215:109::-;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;8679:2:1;7083:68:0;;;8661:21:1;;;8698:18;;;8691:30;8757:34;8737:18;;;8730:62;8809:18;;7083:68:0;8477:356:1;7083:68:0;50287:14:::1;:29:::0;;-1:-1:-1;;50287:29:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50215:109::o;35372:104::-;35428:13;35461:7;35454:14;;;;;:::i;50686:853::-;50751:11;50430:1;50416:11;:15;:56;;;;;49532:2;50435:11;:37;;50416:56;50408:89;;;;-1:-1:-1;;;50408:89:0;;7187:2:1;50408:89:0;;;7169:21:1;7226:2;7206:18;;;7199:30;7265:22;7245:18;;;7238:50;7305:18;;50408:89:0;6985:344:1;50408:89:0;50516:13;;49360:5;;50516:27;;50532:11;;-1:-1:-1;;;;;50516:13:0;:27;:::i;:::-;:41;;50508:74;;;;-1:-1:-1;;;50508:74:0;;9388:2:1;50508:74:0;;;9370:21:1;9427:2;9407:18;;;9400:30;9466:22;9446:18;;;9439:50;9506:18;;50508:74:0;9186:344:1;50508:74:0;50601:10;50615:9;50601:23;50593:65;;;;-1:-1:-1;;;50593:65:0;;7963:2:1;50593:65:0;;;7945:21:1;8002:2;7982:18;;;7975:30;8041:31;8021:18;;;8014:59;8090:18;;50593:65:0;7761:353:1;50593:65:0;50783:14:::1;::::0;::::1;;50775:46;;;::::0;-1:-1:-1;;;50775:46:0;;9040:2:1;50775:46:0::1;::::0;::::1;9022:21:1::0;9079:2;9059:18;;;9052:30;9118:21;9098:18;;;9091:49;9157:18;;50775:46:0::1;8838:343:1::0;50775:46:0::1;50834:13;50850:19;50858:11:::0;49299:17:::1;50850:19;:::i;:::-;50886:13;::::0;50834:35;;-1:-1:-1;49410:4:0::1;-1:-1:-1::0;;;;;50886:13:0;;::::1;:27;50882:540;;;51000:10;50930:25;50987:24:::0;;;:12:::1;:24;::::0;;;;;50958:53:::1;::::0;49474:2:::1;50958:53;:::i;:::-;50930:81:::0;-1:-1:-1;51030:21:0;;51026:385:::1;;51091:17;51076:11;:32;51072:324;;51142:25;49299:17;51142::::0;:25:::1;:::i;:::-;51133:34;::::0;;::::1;:::i;:::-;;;51190:46;51206:10;51218:17;51190:15;:46::i;:::-;51072:324;;;51294:19;49299:17;51294:11:::0;:19:::1;:::i;:::-;51285:28;::::0;;::::1;:::i;:::-;;;51336:40;51352:10;51364:11;51336:15;:40::i;:::-;50915:507;50882:540;51455:5;51442:9;:18;;51434:50;;;::::0;-1:-1:-1;;;51434:50:0;;10097:2:1;51434:50:0::1;::::0;::::1;10079:21:1::0;10136:2;10116:18;;;10109:30;10175:21;10155:18;;;10148:49;10214:18;;51434:50:0::1;9895:343:1::0;51434:50:0::1;51497:34;51507:10;51519:11;51497:9;:34::i;36991:279::-:0;-1:-1:-1;;;;;37082:24:0;;5675:10;37082:24;37078:54;;;37115:17;;-1:-1:-1;;;37115:17:0;;;;;;;;;;;37078:54;5675:10;37145:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;37145:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;37145:53:0;;;;;;;;;;37214:48;;6302:41:1;;;37145:42:0;;5675:10;37214:48;;6275:18:1;37214:48:0;;;;;;;36991:279;;:::o;38069:342::-;38236:28;38246:4;38252:2;38256:7;38236:9;:28::i;:::-;38280:48;38303:4;38309:2;38313:7;38322:5;38280:22;:48::i;:::-;38275:129;;38352:40;;-1:-1:-1;;;38352:40:0;;;;;;;;;;;38275:129;38069:342;;;;:::o;35547:327::-;35620:13;35651:16;35659:7;35651;:16::i;:::-;35646:59;;35676:29;;-1:-1:-1;;;35676:29:0;;;;;;;;;;;35646:59;35718:21;35742:10;:8;:10::i;:::-;35718:34;;35776:7;35770:21;35795:1;35770:26;;:96;;;;;;;;;;;;;;;;;35823:7;35832:18;:7;:16;:18::i;:::-;35806:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;35770:96;35763:103;35547:327;-1:-1:-1;;;35547:327:0:o;7780:201::-;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;8679:2:1;7083:68:0;;;8661:21:1;;;8698:18;;;8691:30;8757:34;8737:18;;;8730:62;8809:18;;7083:68:0;8477:356:1;7083:68:0;-1:-1:-1;;;;;7869:22:0;::::1;7861:73;;;::::0;-1:-1:-1;;;7861:73:0;;6780:2:1;7861:73:0::1;::::0;::::1;6762:21:1::0;6819:2;6799:18;;;6792:30;6858:34;6838:18;;;6831:62;6929:8;6909:18;;;6902:36;6955:19;;7861:73:0::1;6578:402:1::0;7861:73:0::1;7945:28;7964:8;7945:18;:28::i;:::-;7780:201:::0;:::o;38666:144::-;38723:4;38757:13;;-1:-1:-1;;;;;38757:13:0;38747:23;;:55;;;;-1:-1:-1;;38775:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;38775:27:0;;;;38774:28;;38666:144::o;45886:196::-;46001:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;46001:29:0;-1:-1:-1;;;;;46001:29:0;;;;;;;;;46046:28;;46001:24;;46046:28;;;;;;;45886:196;;;:::o;41387:2112::-;41502:35;41540:20;41552:7;41540:11;:20::i;:::-;41615:18;;41502:58;;-1:-1:-1;41573:22:0;;-1:-1:-1;;;;;41599:34:0;5675:10;-1:-1:-1;;;;;41599:34:0;;:101;;;-1:-1:-1;41667:18:0;;41650:50;;5675:10;37341:164;:::i;41650:50::-;41599:154;;;-1:-1:-1;5675:10:0;41717:20;41729:7;41717:11;:20::i;:::-;-1:-1:-1;;;;;41717:36:0;;41599:154;41573:181;;41772:17;41767:66;;41798:35;;-1:-1:-1;;;41798:35:0;;;;;;;;;;;41767:66;41870:4;-1:-1:-1;;;;;41848:26:0;:13;:18;;;-1:-1:-1;;;;;41848:26:0;;41844:67;;41883:28;;-1:-1:-1;;;41883:28:0;;;;;;;;;;;41844:67;-1:-1:-1;;;;;41926:16:0;;41922:52;;41951:23;;-1:-1:-1;;;41951:23:0;;;;;;;;;;;41922:52;42095:49;42112:1;42116:7;42125:13;:18;;;42095:8;:49::i;:::-;-1:-1:-1;;;;;42440:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;42440:31:0;;;;;;;-1:-1:-1;;42440:31:0;;;;;;;42486:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;42486:29:0;;;;;;;;;;;42532:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;42577:61:0;;;;-1:-1:-1;;;42622:15:0;42577:61;;;;;;;;;;;42912:11;;;42942:24;;;;;:29;42912:11;;42942:29;42938:445;;43167:13;;-1:-1:-1;;;;;43167:13:0;43153:27;;43149:219;;;43237:18;;;43205:24;;;:11;:24;;;;;;;;:50;;43320:28;;;;43278:70;;-1:-1:-1;;;43278:70:0;-1:-1:-1;;;;;;43278:70:0;;;-1:-1:-1;;;;;43205:50:0;;;43278:70;;;;;;;43149:219;42415:979;43430:7;43426:2;-1:-1:-1;;;;;43411:27:0;43420:4;-1:-1:-1;;;;;43411:27:0;;;;;;;;;;;43449:42;41491:2008;;41387:2112;;;:::o;38818:104::-;38887:27;38897:2;38901:8;38887:27;;;;;;;;;;;;:9;:27::i;:::-;38818:104;;:::o;10833:317::-;10948:6;10923:21;:31;;10915:73;;;;-1:-1:-1;;;10915:73:0;;8321:2:1;10915:73:0;;;8303:21:1;8360:2;8340:18;;;8333:30;8399:31;8379:18;;;8372:59;8448:18;;10915:73:0;8119:353:1;10915:73:0;11002:12;11020:9;-1:-1:-1;;;;;11020:14:0;11042:6;11020:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11001:52;;;11072:7;11064:78;;;;-1:-1:-1;;;11064:78:0;;7536:2:1;11064:78:0;;;7518:21:1;7575:2;7555:18;;;7548:30;7614:34;7594:18;;;7587:62;7685:28;7665:18;;;7658:56;7731:19;;11064:78:0;7334:422:1;33867:1083:0;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;34033:13:0;;33977:7;;-1:-1:-1;;;;;34033:13:0;34026:20;;34022:861;;;34067:31;34101:17;;;:11;:17;;;;;;;;;34067:51;;;;;;;;;-1:-1:-1;;;;;34067:51:0;;;;-1:-1:-1;;;34067:51:0;;;;;;;;;;;-1:-1:-1;;;34067:51:0;;;;;;;;;;;;;;34137:731;;34187:14;;-1:-1:-1;;;;;34187:28:0;;34183:101;;34251:9;33867:1083;-1:-1:-1;;;33867:1083:0:o;34183:101::-;-1:-1:-1;;;34628:6:0;34673:17;;;;:11;:17;;;;;;;;;34661:29;;;;;;;;;-1:-1:-1;;;;;34661:29:0;;;;;-1:-1:-1;;;34661:29:0;;;;;;;;;;;-1:-1:-1;;;34661:29:0;;;;;;;;;;;;;34721:28;34717:109;;34789:9;33867:1083;-1:-1:-1;;;33867:1083:0:o;34717:109::-;34588:261;;;34048:835;34022:861;34911:31;;-1:-1:-1;;;34911:31:0;;;;;;;;;;;8141:191;8234:6;;;-1:-1:-1;;;;;8251:17:0;;;-1:-1:-1;;8251:17:0;;;;;;;8284:40;;8234:6;;;8251:17;8234:6;;8284:40;;8215:16;;8284:40;8204:128;8141:191;:::o;49836:112::-;-1:-1:-1;;;;;49911:20:0;;;;;;:12;:20;;;;;:29;;49935:5;;49911:20;:29;;49935:5;;49911:29;:::i;:::-;;;;-1:-1:-1;;;;49836:112:0:o;46647:790::-;46802:4;-1:-1:-1;;;;;46823:13:0;;9867:19;:23;46819:611;;46859:72;;-1:-1:-1;;;46859:72:0;;-1:-1:-1;;;;;46859:36:0;;;;;:72;;5675:10;;46910:4;;46916:7;;46925:5;;46859:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46859:72:0;;;;;;;;-1:-1:-1;;46859:72:0;;;;;;;;;;;;:::i;:::-;;;46855:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47105:13:0;;47101:259;;47155:40;;-1:-1:-1;;;47155:40:0;;;;;;;;;;;47101:259;47310:6;47304:13;47295:6;47291:2;47287:15;47280:38;46855:520;-1:-1:-1;;;;;;46982:55:0;-1:-1:-1;;;46982:55:0;;-1:-1:-1;46975:62:0;;46819:611;-1:-1:-1;47414:4:0;46819:611;46647:790;;;;;;:::o;49979:114::-;50039:13;50072;50065:20;;;;;:::i;3157:723::-;3213:13;3434:10;3430:53;;-1:-1:-1;;3461:10:0;;;;;;;;;;;;-1:-1:-1;;;3461:10:0;;;;;3157:723::o;3430:53::-;3508:5;3493:12;3549:78;3556:9;;3549:78;;3582:8;;;;:::i;:::-;;-1:-1:-1;3605:10:0;;-1:-1:-1;3613:2:0;3605:10;;:::i;:::-;;;3549:78;;;3637:19;3669:6;3659:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3659:17:0;;3637:39;;3687:154;3694:10;;3687:154;;3721:11;3731:1;3721:11;;:::i;:::-;;-1:-1:-1;3790:10:0;3798:2;3790:5;:10;:::i;:::-;3777:24;;:2;:24;:::i;:::-;3764:39;;3747:6;3754;3747:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;3818:11:0;3827:2;3818:11;;:::i;:::-;;;3687:154;;39285:163;39408:32;39414:2;39418:8;39428:5;39435:4;39846:20;39869:13;;:17;;-1:-1:-1;;;;;39869:13:0;;:17;:::i;:::-;-1:-1:-1;;;;;39846:40:0;;-1:-1:-1;;;;;;39901:16:0;;39897:48;;39926:19;;-1:-1:-1;;;39926:19:0;;;;;;;;;;;39897:48;39960:13;39956:44;;39982:18;;-1:-1:-1;;;39982:18:0;;;;;;;;;;;39956:44;-1:-1:-1;;;;;40352:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;40411:49:0;;40352:44;;;;;;;;40411:49;;;;-1:-1:-1;;40352:44:0;;;;;;40411:49;;;;;;;;;;;;;;;;40477:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;40527:66:0;;;;-1:-1:-1;;;40577:15:0;40527:66;;;;;;;;;;;40477:25;;40662:328;40682:8;40678:1;:12;40662:328;;;40721:38;;40746:12;;-1:-1:-1;;;;;40721:38:0;;;40738:1;;40721:38;;40738:1;;40721:38;40782:4;:68;;;;;40791:59;40822:1;40826:2;40830:12;40844:5;40791:22;:59::i;:::-;40790:60;40782:68;40778:164;;;40882:40;;-1:-1:-1;;;40882:40:0;;;;;;;;;;;40778:164;40960:14;;;;;40692:3;40662:328;;;-1:-1:-1;41006:13:0;:37;;-1:-1:-1;;41006:37:0;-1:-1:-1;;;;;41006:37:0;;;;;;;;;;41065:60;38069:342;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:196:1;82:20;;-1:-1:-1;;;;;131:54:1;;121:65;;111:93;;200:1;197;190:12;111:93;14:196;;;:::o;215:160::-;280:20;;336:13;;329:21;319:32;;309:60;;365:1;362;355:12;380:186;439:6;492:2;480:9;471:7;467:23;463:32;460:52;;;508:1;505;498:12;460:52;531:29;550:9;531:29;:::i;571:260::-;639:6;647;700:2;688:9;679:7;675:23;671:32;668:52;;;716:1;713;706:12;668:52;739:29;758:9;739:29;:::i;:::-;729:39;;787:38;821:2;810:9;806:18;787:38;:::i;:::-;777:48;;571:260;;;;;:::o;836:328::-;913:6;921;929;982:2;970:9;961:7;957:23;953:32;950:52;;;998:1;995;988:12;950:52;1021:29;1040:9;1021:29;:::i;:::-;1011:39;;1069:38;1103:2;1092:9;1088:18;1069:38;:::i;:::-;1059:48;;1154:2;1143:9;1139:18;1126:32;1116:42;;836:328;;;;;:::o;1169:1138::-;1264:6;1272;1280;1288;1341:3;1329:9;1320:7;1316:23;1312:33;1309:53;;;1358:1;1355;1348:12;1309:53;1381:29;1400:9;1381:29;:::i;:::-;1371:39;;1429:38;1463:2;1452:9;1448:18;1429:38;:::i;:::-;1419:48;;1514:2;1503:9;1499:18;1486:32;1476:42;;1569:2;1558:9;1554:18;1541:32;1592:18;1633:2;1625:6;1622:14;1619:34;;;1649:1;1646;1639:12;1619:34;1687:6;1676:9;1672:22;1662:32;;1732:7;1725:4;1721:2;1717:13;1713:27;1703:55;;1754:1;1751;1744:12;1703:55;1790:2;1777:16;1812:2;1808;1805:10;1802:36;;;1818:18;;:::i;:::-;1893:2;1887:9;1861:2;1947:13;;-1:-1:-1;;1943:22:1;;;1967:2;1939:31;1935:40;1923:53;;;1991:18;;;2011:22;;;1988:46;1985:72;;;2037:18;;:::i;:::-;2077:10;2073:2;2066:22;2112:2;2104:6;2097:18;2152:7;2147:2;2142;2138;2134:11;2130:20;2127:33;2124:53;;;2173:1;2170;2163:12;2124:53;2229:2;2224;2220;2216:11;2211:2;2203:6;2199:15;2186:46;2274:1;2269:2;2264;2256:6;2252:15;2248:24;2241:35;2295:6;2285:16;;;;;;;1169:1138;;;;;;;:::o;2312:254::-;2377:6;2385;2438:2;2426:9;2417:7;2413:23;2409:32;2406:52;;;2454:1;2451;2444:12;2406:52;2477:29;2496:9;2477:29;:::i;:::-;2467:39;;2525:35;2556:2;2545:9;2541:18;2525:35;:::i;2571:254::-;2639:6;2647;2700:2;2688:9;2679:7;2675:23;2671:32;2668:52;;;2716:1;2713;2706:12;2668:52;2739:29;2758:9;2739:29;:::i;:::-;2729:39;2815:2;2800:18;;;;2787:32;;-1:-1:-1;;;2571:254:1:o;2830:180::-;2886:6;2939:2;2927:9;2918:7;2914:23;2910:32;2907:52;;;2955:1;2952;2945:12;2907:52;2978:26;2994:9;2978:26;:::i;3015:245::-;3073:6;3126:2;3114:9;3105:7;3101:23;3097:32;3094:52;;;3142:1;3139;3132:12;3094:52;3181:9;3168:23;3200:30;3224:5;3200:30;:::i;3265:249::-;3334:6;3387:2;3375:9;3366:7;3362:23;3358:32;3355:52;;;3403:1;3400;3393:12;3355:52;3435:9;3429:16;3454:30;3478:5;3454:30;:::i;3519:592::-;3590:6;3598;3651:2;3639:9;3630:7;3626:23;3622:32;3619:52;;;3667:1;3664;3657:12;3619:52;3707:9;3694:23;3736:18;3777:2;3769:6;3766:14;3763:34;;;3793:1;3790;3783:12;3763:34;3831:6;3820:9;3816:22;3806:32;;3876:7;3869:4;3865:2;3861:13;3857:27;3847:55;;3898:1;3895;3888:12;3847:55;3938:2;3925:16;3964:2;3956:6;3953:14;3950:34;;;3980:1;3977;3970:12;3950:34;4025:7;4020:2;4011:6;4007:2;4003:15;3999:24;3996:37;3993:57;;;4046:1;4043;4036:12;3993:57;4077:2;4069:11;;;;;4099:6;;-1:-1:-1;3519:592:1;;-1:-1:-1;;;;3519:592:1:o;4116:180::-;4175:6;4228:2;4216:9;4207:7;4203:23;4199:32;4196:52;;;4244:1;4241;4234:12;4196:52;-1:-1:-1;4267:23:1;;4116:180;-1:-1:-1;4116:180:1:o;4301:257::-;4342:3;4380:5;4374:12;4407:6;4402:3;4395:19;4423:63;4479:6;4472:4;4467:3;4463:14;4456:4;4449:5;4445:16;4423:63;:::i;:::-;4540:2;4519:15;-1:-1:-1;;4515:29:1;4506:39;;;;4547:4;4502:50;;4301:257;-1:-1:-1;;4301:257:1:o;4563:637::-;4843:3;4881:6;4875:13;4897:53;4943:6;4938:3;4931:4;4923:6;4919:17;4897:53;:::i;:::-;5013:13;;4972:16;;;;5035:57;5013:13;4972:16;5069:4;5057:17;;5035:57;:::i;:::-;5157:7;5114:20;;5143:22;;;5192:1;5181:13;;4563:637;-1:-1:-1;;;;4563:637:1:o;5646:511::-;5840:4;-1:-1:-1;;;;;5950:2:1;5942:6;5938:15;5927:9;5920:34;6002:2;5994:6;5990:15;5985:2;5974:9;5970:18;5963:43;;6042:6;6037:2;6026:9;6022:18;6015:34;6085:3;6080:2;6069:9;6065:18;6058:31;6106:45;6146:3;6135:9;6131:19;6123:6;6106:45;:::i;:::-;6098:53;5646:511;-1:-1:-1;;;;;;5646:511:1:o;6354:219::-;6503:2;6492:9;6485:21;6466:4;6523:44;6563:2;6552:9;6548:18;6540:6;6523:44;:::i;10425:253::-;10465:3;-1:-1:-1;;;;;10554:2:1;10551:1;10547:10;10584:2;10581:1;10577:10;10615:3;10611:2;10607:12;10602:3;10599:21;10596:47;;;10623:18;;:::i;:::-;10659:13;;10425:253;-1:-1:-1;;;;10425:253:1:o;10683:128::-;10723:3;10754:1;10750:6;10747:1;10744:13;10741:39;;;10760:18;;:::i;:::-;-1:-1:-1;10796:9:1;;10683:128::o;10816:120::-;10856:1;10882;10872:35;;10887:18;;:::i;:::-;-1:-1:-1;10921:9:1;;10816:120::o;10941:168::-;10981:7;11047:1;11043;11039:6;11035:14;11032:1;11029:21;11024:1;11017:9;11010:17;11006:45;11003:71;;;11054:18;;:::i;:::-;-1:-1:-1;11094:9:1;;10941:168::o;11114:125::-;11154:4;11182:1;11179;11176:8;11173:34;;;11187:18;;:::i;:::-;-1:-1:-1;11224:9:1;;11114:125::o;11244:258::-;11316:1;11326:113;11340:6;11337:1;11334:13;11326:113;;;11416:11;;;11410:18;11397:11;;;11390:39;11362:2;11355:10;11326:113;;;11457:6;11454:1;11451:13;11448:48;;;-1:-1:-1;;11492:1:1;11474:16;;11467:27;11244:258::o;11507:380::-;11586:1;11582:12;;;;11629;;;11650:61;;11704:4;11696:6;11692:17;11682:27;;11650:61;11757:2;11749:6;11746:14;11726:18;11723:38;11720:161;;;11803:10;11798:3;11794:20;11791:1;11784:31;11838:4;11835:1;11828:15;11866:4;11863:1;11856:15;11720:161;;11507:380;;;:::o;11892:135::-;11931:3;-1:-1:-1;;11952:17:1;;11949:43;;;11972:18;;:::i;:::-;-1:-1:-1;12019:1:1;12008:13;;11892:135::o;12032:112::-;12064:1;12090;12080:35;;12095:18;;:::i;:::-;-1:-1:-1;12129:9:1;;12032:112::o;12149:127::-;12210:10;12205:3;12201:20;12198:1;12191:31;12241:4;12238:1;12231:15;12265:4;12262:1;12255:15;12281:127;12342:10;12337:3;12333:20;12330:1;12323:31;12373:4;12370:1;12363:15;12397:4;12394:1;12387:15;12413:127;12474:10;12469:3;12465:20;12462:1;12455:31;12505:4;12502:1;12495:15;12529:4;12526:1;12519:15;12545:127;12606:10;12601:3;12597:20;12594:1;12587:31;12637:4;12634:1;12627:15;12661:4;12658:1;12651:15;12677:131;-1:-1:-1;;;;;;12751:32:1;;12741:43;;12731:71;;12798:1;12795;12788:12

Swarm Source

ipfs://0198552df91833d1cd7fdf516d5ad71c9eebfc3c57b1753eb4d119b0b8432e7a
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.