ETH Price: $3,394.96 (+1.10%)
Gas: 5 Gwei

Token

MonsterFriends (MONSTER)
 

Overview

Max Total Supply

500 MONSTER

Holders

221

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 MONSTER
0xBfb7cb31004F2506Fa63048B62Db21dAC8781Ae8
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:
MonsterFriends

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-30
*/

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/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/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: contracts/MonsterFriends.sol



pragma solidity 0.8.7;





contract MonsterFriends is ERC721, Ownable {

    using SafeMath for uint256;
    using Counters for Counters.Counter;

    Counters.Counter private supply;

    string public baseTokenURI;

    uint256 public price = 0.044 ether;
    uint256 public saleState = 0;  // 0 = paused, 1 = live
    uint256 public max_monsters = 5555;
    uint256 public purchase_limit = 50;
    uint256 public reserved_amount = 700;

    // withdraw address
    address public a1 = 0xA24237b3702A7E98878a71d0C018511AcA61E1a1;

    // doxxd withdraw address - immutable
    address public a2_immutable = 0xC1FDc68dc63d3316F32420d4d2c3DeA43091bCDD;

    //constructor
    constructor(string memory _baseTokenURI) ERC721("MonsterFriends","MONSTER") {
        baseTokenURI = _baseTokenURI;
    }    

    //mint functions
    function mintMonsters(uint256 num) public payable {

        require( msg.value >= price * num,  "Ether sent is insufficient" );

        _mintMonsters(num);
    }

    //private function
    function _mintMonsters(uint256 num) private {
        
        require( saleState > 0,             "Main sale is not active" );
        require( num <= purchase_limit,     "Requested mints exceed maximum" );
        require(supply.current() + num <= (max_monsters - reserved_amount), "Requested mints exceed remaining supply");
            for(uint256 i; i < num; i++){
                unchecked {
                    supply.increment();
                }
                _safeMint( msg.sender, supply.current());
            }

    }

    //views

    //override so openzeppelin tokenURI() can utilize the baseTokenURI we set
    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }

    function totalSupply() public view returns (uint256) {
        return supply.current();
    }

    function walletOfOwner(address _owner) public view returns (uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](tokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;

        while (ownedTokenIndex < tokenCount && currentTokenId <= max_monsters) 
        {
            address currentTokenOwner = ownerOf(currentTokenId);

            if (currentTokenOwner == _owner) 
            {
                tokenIds[ownedTokenIndex] = currentTokenId;
                ownedTokenIndex++;
            }

            currentTokenId++;
        }

        return tokenIds;
    }


    //setters

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

    function setPrice(uint256 _newPrice) public onlyOwner() {
        price = _newPrice;
    }

    function setMaxMonsters(uint256 _newMax) public onlyOwner{
        max_monsters = _newMax;
    }    
    // 0 = paused, 1 = live 
    function setSaleState(uint256 _saleState) public onlyOwner {
        saleState = _saleState;
    }

    function setPurchaseLimit(uint256 _newLimit) public onlyOwner{
        purchase_limit = _newLimit;
    }

    function setWithdrawAddress(address _a) public onlyOwner {
        a1 = _a;
    }

    function setReservedAmount(uint256 _reservedAmount) public onlyOwner {
        reserved_amount = _reservedAmount;
    }

    //utils
    
    function giveAway(address _to, uint256 _count) external onlyOwner() {

        require(supply.current() + _count <= max_monsters, "Requested mints exceed remaining supply");
        
            for(uint256 i; i < _count; i++){
                unchecked {
                    supply.increment();
                }
                _safeMint( _to, supply.current());
            }
    }

    function withdrawBalance() public payable onlyOwner {
        uint256 _tenth = address(this).balance / 10;
        uint256 _payment = _tenth * 7;
        uint256 _doxxdPayment = _tenth * 3;
        
        (bool success, ) = payable(a1).call{value: _payment}("");
        require(success, "Transfer failed to a1.");
        (bool success2, ) = payable(a2_immutable).call{value: _doxxdPayment}("");
        require(success2, "Transfer failed to a2.");
    }


}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"a1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"a2_immutable","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_monsters","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"mintMonsters","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"purchase_limit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserved_amount","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":"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":[],"name":"saleState","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"_baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMax","type":"uint256"}],"name":"setMaxMonsters","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newLimit","type":"uint256"}],"name":"setPurchaseLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_reservedAmount","type":"uint256"}],"name":"setReservedAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleState","type":"uint256"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_a","type":"address"}],"name":"setWithdrawAddress","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":"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":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawBalance","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052669c51c4521e00006009556000600a556115b3600b556032600c556102bc600d55600e80546001600160a01b031990811673a24237b3702a7e98878a71d0c018511aca61e1a117909155600f805490911673c1fdc68dc63d3316f32420d4d2c3dea43091bcdd1790553480156200007a57600080fd5b5060405162002568380380620025688339810160408190526200009d916200023e565b604080518082018252600e81526d4d6f6e73746572467269656e647360901b60208083019182528351808501909452600784526626a7a729aa22a960c91b908401528151919291620000f29160009162000198565b5080516200010890600190602084019062000198565b505050620001256200011f6200014260201b60201c565b62000146565b80516200013a90600890602084019062000198565b50506200036d565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001a6906200031a565b90600052602060002090601f016020900481019282620001ca576000855562000215565b82601f10620001e557805160ff191683800117855562000215565b8280016001018555821562000215579182015b8281111562000215578251825591602001919060010190620001f8565b506200022392915062000227565b5090565b5b8082111562000223576000815560010162000228565b600060208083850312156200025257600080fd5b82516001600160401b03808211156200026a57600080fd5b818501915085601f8301126200027f57600080fd5b81518181111562000294576200029462000357565b604051601f8201601f19908116603f01168101908382118183101715620002bf57620002bf62000357565b816040528281528886848701011115620002d857600080fd5b600093505b82841015620002fc5784840186015181850187015292850192620002dd565b828411156200030e5760008684830101525b98975050505050505050565b600181811c908216806200032f57607f821691505b602082108114156200035157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6121eb806200037d6000396000f3fe60806040526004361061020f5760003560e01c80635fd8c71011610118578063a035b1fe116100a0578063ca8001441161006f578063ca800144146105d0578063d547cfb7146105f0578063d694e95014610605578063e985e9c51461061b578063f2fde38b1461066457600080fd5b8063a035b1fe1461055a578063a22cb46514610570578063b88d4fde14610590578063c87b56dd146105b057600080fd5b806370a08231116100e757806370a08231146104d2578063715018a6146104f25780638da5cb5b1461050757806391b7f5ed1461052557806395d89b411461054557600080fd5b80635fd8c71014610474578063603f4d521461047c5780636352211e146104925780636edc4388146104b257600080fd5b806323b872dd1161019b5780633cfceaf01161016a5780633cfceaf0146103d157806342842e0e146103f1578063438b63001461041157806355f804b31461043e5780635a9f48b91461045e57600080fd5b806323b872dd1461035e5780632e89f2d01461037e57806332cc8f2c146103915780633ab1a494146103b157600080fd5b8063095ea7b3116101e2578063095ea7b3146102c5578063119552a1146102e5578063170e17361461030557806318160ddd14610325578063200909281461034857600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063084c4088146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004611da5565b610684565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106d6565b6040516102409190611f1d565b34801561027757600080fd5b5061028b610286366004611e28565b610768565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004611e28565b610802565b005b3480156102d157600080fd5b506102c36102e0366004611d7b565b610831565b3480156102f157600080fd5b50600e5461028b906001600160a01b031681565b34801561031157600080fd5b506102c3610320366004611e28565b610947565b34801561033157600080fd5b5061033a610976565b604051908152602001610240565b34801561035457600080fd5b5061033a600d5481565b34801561036a57600080fd5b506102c3610379366004611c87565b610986565b6102c361038c366004611e28565b6109b7565b34801561039d57600080fd5b50600f5461028b906001600160a01b031681565b3480156103bd57600080fd5b506102c36103cc366004611c39565b610a20565b3480156103dd57600080fd5b506102c36103ec366004611e28565b610a6c565b3480156103fd57600080fd5b506102c361040c366004611c87565b610a9b565b34801561041d57600080fd5b5061043161042c366004611c39565b610ab6565b6040516102409190611ed9565b34801561044a57600080fd5b506102c3610459366004611ddf565b610b97565b34801561046a57600080fd5b5061033a600b5481565b6102c3610bd8565b34801561048857600080fd5b5061033a600a5481565b34801561049e57600080fd5b5061028b6104ad366004611e28565b610d71565b3480156104be57600080fd5b506102c36104cd366004611e28565b610de8565b3480156104de57600080fd5b5061033a6104ed366004611c39565b610e17565b3480156104fe57600080fd5b506102c3610e9e565b34801561051357600080fd5b506006546001600160a01b031661028b565b34801561053157600080fd5b506102c3610540366004611e28565b610ed4565b34801561055157600080fd5b5061025e610f03565b34801561056657600080fd5b5061033a60095481565b34801561057c57600080fd5b506102c361058b366004611d3f565b610f12565b34801561059c57600080fd5b506102c36105ab366004611cc3565b610f1d565b3480156105bc57600080fd5b5061025e6105cb366004611e28565b610f55565b3480156105dc57600080fd5b506102c36105eb366004611d7b565b611030565b3480156105fc57600080fd5b5061025e6110cc565b34801561061157600080fd5b5061033a600c5481565b34801561062757600080fd5b50610234610636366004611c54565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561067057600080fd5b506102c361067f366004611c39565b61115a565b60006001600160e01b031982166380ac58cd60e01b14806106b557506001600160e01b03198216635b5e139f60e01b145b806106d057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546106e5906120dd565b80601f0160208091040260200160405190810160405280929190818152602001828054610711906120dd565b801561075e5780601f106107335761010080835404028352916020019161075e565b820191906000526020600020905b81548152906001019060200180831161074157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107e65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6006546001600160a01b0316331461082c5760405162461bcd60e51b81526004016107dd90611fc9565b600a55565b600061083c82610d71565b9050806001600160a01b0316836001600160a01b031614156108aa5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107dd565b336001600160a01b03821614806108c657506108c68133610636565b6109385760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107dd565b61094283836111f2565b505050565b6006546001600160a01b031633146109715760405162461bcd60e51b81526004016107dd90611fc9565b600d55565b600061098160075490565b905090565b6109903382611260565b6109ac5760405162461bcd60e51b81526004016107dd90611ffe565b610942838383611357565b806009546109c5919061207b565b341015610a145760405162461bcd60e51b815260206004820152601a60248201527f45746865722073656e7420697320696e73756666696369656e7400000000000060448201526064016107dd565b610a1d816114f3565b50565b6006546001600160a01b03163314610a4a5760405162461bcd60e51b81526004016107dd90611fc9565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b03163314610a965760405162461bcd60e51b81526004016107dd90611fc9565b600b55565b61094283838360405180602001604052806000815250610f1d565b60606000610ac383610e17565b905060008167ffffffffffffffff811115610ae057610ae0612189565b604051908082528060200260200182016040528015610b09578160200160208202803683370190505b509050600160005b8381108015610b225750600b548211155b15610b8d576000610b3283610d71565b9050866001600160a01b0316816001600160a01b03161415610b7a5782848381518110610b6157610b61612173565b602090810291909101015281610b7681612118565b9250505b82610b8481612118565b93505050610b11565b5090949350505050565b6006546001600160a01b03163314610bc15760405162461bcd60e51b81526004016107dd90611fc9565b8051610bd4906008906020840190611b0e565b5050565b6006546001600160a01b03163314610c025760405162461bcd60e51b81526004016107dd90611fc9565b6000610c0f600a47612067565b90506000610c1e82600761207b565b90506000610c2d83600361207b565b600e546040519192506000916001600160a01b039091169084908381818185875af1925050503d8060008114610c7f576040519150601f19603f3d011682016040523d82523d6000602084013e610c84565b606091505b5050905080610cce5760405162461bcd60e51b81526020600482015260166024820152752a3930b739b332b9103330b4b632b2103a379030989760511b60448201526064016107dd565b600f546040516000916001600160a01b03169084908381818185875af1925050503d8060008114610d1b576040519150601f19603f3d011682016040523d82523d6000602084013e610d20565b606091505b5050905080610d6a5760405162461bcd60e51b81526020600482015260166024820152752a3930b739b332b9103330b4b632b2103a379030991760511b60448201526064016107dd565b5050505050565b6000818152600260205260408120546001600160a01b0316806106d05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107dd565b6006546001600160a01b03163314610e125760405162461bcd60e51b81526004016107dd90611fc9565b600c55565b60006001600160a01b038216610e825760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107dd565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610ec85760405162461bcd60e51b81526004016107dd90611fc9565b610ed26000611611565b565b6006546001600160a01b03163314610efe5760405162461bcd60e51b81526004016107dd90611fc9565b600955565b6060600180546106e5906120dd565b610bd4338383611663565b610f273383611260565b610f435760405162461bcd60e51b81526004016107dd90611ffe565b610f4f84848484611732565b50505050565b6000818152600260205260409020546060906001600160a01b0316610fd45760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107dd565b6000610fde611765565b90506000815111610ffe5760405180602001604052806000815250611029565b8061100884611774565b604051602001611019929190611e6d565b6040516020818303038152906040525b9392505050565b6006546001600160a01b0316331461105a5760405162461bcd60e51b81526004016107dd90611fc9565b600b548161106760075490565b611071919061204f565b111561108f5760405162461bcd60e51b81526004016107dd90611f82565b60005b81811015610942576110a8600780546001019055565b6110ba836110b560075490565b611872565b806110c481612118565b915050611092565b600880546110d9906120dd565b80601f0160208091040260200160405190810160405280929190818152602001828054611105906120dd565b80156111525780601f1061112757610100808354040283529160200191611152565b820191906000526020600020905b81548152906001019060200180831161113557829003601f168201915b505050505081565b6006546001600160a01b031633146111845760405162461bcd60e51b81526004016107dd90611fc9565b6001600160a01b0381166111e95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107dd565b610a1d81611611565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061122782610d71565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166112d95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107dd565b60006112e483610d71565b9050806001600160a01b0316846001600160a01b0316148061131f5750836001600160a01b031661131484610768565b6001600160a01b0316145b8061134f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661136a82610d71565b6001600160a01b0316146113ce5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016107dd565b6001600160a01b0382166114305760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107dd565b61143b6000826111f2565b6001600160a01b038316600090815260036020526040812080546001929061146490849061209a565b90915550506001600160a01b038216600090815260036020526040812080546001929061149290849061204f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000600a54116115455760405162461bcd60e51b815260206004820152601760248201527f4d61696e2073616c65206973206e6f742061637469766500000000000000000060448201526064016107dd565b600c548111156115975760405162461bcd60e51b815260206004820152601e60248201527f526571756573746564206d696e747320657863656564206d6178696d756d000060448201526064016107dd565b600d54600b546115a7919061209a565b816115b160075490565b6115bb919061204f565b11156115d95760405162461bcd60e51b81526004016107dd90611f82565b60005b81811015610bd4576115f2600780546001019055565b6115ff336110b560075490565b8061160981612118565b9150506115dc565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156116c55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107dd565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61173d848484611357565b6117498484848461188c565b610f4f5760405162461bcd60e51b81526004016107dd90611f30565b6060600880546106e5906120dd565b6060816117985750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117c257806117ac81612118565b91506117bb9050600a83612067565b915061179c565b60008167ffffffffffffffff8111156117dd576117dd612189565b6040519080825280601f01601f191660200182016040528015611807576020820181803683370190505b5090505b841561134f5761181c60018361209a565b9150611829600a86612133565b61183490603061204f565b60f81b81838151811061184957611849612173565b60200101906001600160f81b031916908160001a90535061186b600a86612067565b945061180b565b610bd4828260405180602001604052806000815250611999565b60006001600160a01b0384163b1561198e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906118d0903390899088908890600401611e9c565b602060405180830381600087803b1580156118ea57600080fd5b505af192505050801561191a575060408051601f3d908101601f1916820190925261191791810190611dc2565b60015b611974573d808015611948576040519150601f19603f3d011682016040523d82523d6000602084013e61194d565b606091505b50805161196c5760405162461bcd60e51b81526004016107dd90611f30565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061134f565b506001949350505050565b6119a383836119cc565b6119b0600084848461188c565b6109425760405162461bcd60e51b81526004016107dd90611f30565b6001600160a01b038216611a225760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107dd565b6000818152600260205260409020546001600160a01b031615611a875760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107dd565b6001600160a01b0382166000908152600360205260408120805460019290611ab090849061204f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611b1a906120dd565b90600052602060002090601f016020900481019282611b3c5760008555611b82565b82601f10611b5557805160ff1916838001178555611b82565b82800160010185558215611b82579182015b82811115611b82578251825591602001919060010190611b67565b50611b8e929150611b92565b5090565b5b80821115611b8e5760008155600101611b93565b600067ffffffffffffffff80841115611bc257611bc2612189565b604051601f8501601f19908116603f01168101908282118183101715611bea57611bea612189565b81604052809350858152868686011115611c0357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611c3457600080fd5b919050565b600060208284031215611c4b57600080fd5b61102982611c1d565b60008060408385031215611c6757600080fd5b611c7083611c1d565b9150611c7e60208401611c1d565b90509250929050565b600080600060608486031215611c9c57600080fd5b611ca584611c1d565b9250611cb360208501611c1d565b9150604084013590509250925092565b60008060008060808587031215611cd957600080fd5b611ce285611c1d565b9350611cf060208601611c1d565b925060408501359150606085013567ffffffffffffffff811115611d1357600080fd5b8501601f81018713611d2457600080fd5b611d3387823560208401611ba7565b91505092959194509250565b60008060408385031215611d5257600080fd5b611d5b83611c1d565b915060208301358015158114611d7057600080fd5b809150509250929050565b60008060408385031215611d8e57600080fd5b611d9783611c1d565b946020939093013593505050565b600060208284031215611db757600080fd5b81356110298161219f565b600060208284031215611dd457600080fd5b81516110298161219f565b600060208284031215611df157600080fd5b813567ffffffffffffffff811115611e0857600080fd5b8201601f81018413611e1957600080fd5b61134f84823560208401611ba7565b600060208284031215611e3a57600080fd5b5035919050565b60008151808452611e598160208601602086016120b1565b601f01601f19169290920160200192915050565b60008351611e7f8184602088016120b1565b835190830190611e938183602088016120b1565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ecf90830184611e41565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611f1157835183529284019291840191600101611ef5565b50909695505050505050565b6020815260006110296020830184611e41565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526027908201527f526571756573746564206d696e7473206578636565642072656d61696e696e6760408201526620737570706c7960c81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561206257612062612147565b500190565b6000826120765761207661215d565b500490565b600081600019048311821515161561209557612095612147565b500290565b6000828210156120ac576120ac612147565b500390565b60005b838110156120cc5781810151838201526020016120b4565b83811115610f4f5750506000910152565b600181811c908216806120f157607f821691505b6020821081141561211257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561212c5761212c612147565b5060010190565b6000826121425761214261215d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a1d57600080fdfea26469706673582212208673ada24c4892648e085c3faef92864f01a9388007dea4fe40d9ccd06f63e0064736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5831774c70715951565768396a377964653463696f7254623647687079706a5776613646617665645a4555692f00000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80635fd8c71011610118578063a035b1fe116100a0578063ca8001441161006f578063ca800144146105d0578063d547cfb7146105f0578063d694e95014610605578063e985e9c51461061b578063f2fde38b1461066457600080fd5b8063a035b1fe1461055a578063a22cb46514610570578063b88d4fde14610590578063c87b56dd146105b057600080fd5b806370a08231116100e757806370a08231146104d2578063715018a6146104f25780638da5cb5b1461050757806391b7f5ed1461052557806395d89b411461054557600080fd5b80635fd8c71014610474578063603f4d521461047c5780636352211e146104925780636edc4388146104b257600080fd5b806323b872dd1161019b5780633cfceaf01161016a5780633cfceaf0146103d157806342842e0e146103f1578063438b63001461041157806355f804b31461043e5780635a9f48b91461045e57600080fd5b806323b872dd1461035e5780632e89f2d01461037e57806332cc8f2c146103915780633ab1a494146103b157600080fd5b8063095ea7b3116101e2578063095ea7b3146102c5578063119552a1146102e5578063170e17361461030557806318160ddd14610325578063200909281461034857600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063084c4088146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004611da5565b610684565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106d6565b6040516102409190611f1d565b34801561027757600080fd5b5061028b610286366004611e28565b610768565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004611e28565b610802565b005b3480156102d157600080fd5b506102c36102e0366004611d7b565b610831565b3480156102f157600080fd5b50600e5461028b906001600160a01b031681565b34801561031157600080fd5b506102c3610320366004611e28565b610947565b34801561033157600080fd5b5061033a610976565b604051908152602001610240565b34801561035457600080fd5b5061033a600d5481565b34801561036a57600080fd5b506102c3610379366004611c87565b610986565b6102c361038c366004611e28565b6109b7565b34801561039d57600080fd5b50600f5461028b906001600160a01b031681565b3480156103bd57600080fd5b506102c36103cc366004611c39565b610a20565b3480156103dd57600080fd5b506102c36103ec366004611e28565b610a6c565b3480156103fd57600080fd5b506102c361040c366004611c87565b610a9b565b34801561041d57600080fd5b5061043161042c366004611c39565b610ab6565b6040516102409190611ed9565b34801561044a57600080fd5b506102c3610459366004611ddf565b610b97565b34801561046a57600080fd5b5061033a600b5481565b6102c3610bd8565b34801561048857600080fd5b5061033a600a5481565b34801561049e57600080fd5b5061028b6104ad366004611e28565b610d71565b3480156104be57600080fd5b506102c36104cd366004611e28565b610de8565b3480156104de57600080fd5b5061033a6104ed366004611c39565b610e17565b3480156104fe57600080fd5b506102c3610e9e565b34801561051357600080fd5b506006546001600160a01b031661028b565b34801561053157600080fd5b506102c3610540366004611e28565b610ed4565b34801561055157600080fd5b5061025e610f03565b34801561056657600080fd5b5061033a60095481565b34801561057c57600080fd5b506102c361058b366004611d3f565b610f12565b34801561059c57600080fd5b506102c36105ab366004611cc3565b610f1d565b3480156105bc57600080fd5b5061025e6105cb366004611e28565b610f55565b3480156105dc57600080fd5b506102c36105eb366004611d7b565b611030565b3480156105fc57600080fd5b5061025e6110cc565b34801561061157600080fd5b5061033a600c5481565b34801561062757600080fd5b50610234610636366004611c54565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561067057600080fd5b506102c361067f366004611c39565b61115a565b60006001600160e01b031982166380ac58cd60e01b14806106b557506001600160e01b03198216635b5e139f60e01b145b806106d057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546106e5906120dd565b80601f0160208091040260200160405190810160405280929190818152602001828054610711906120dd565b801561075e5780601f106107335761010080835404028352916020019161075e565b820191906000526020600020905b81548152906001019060200180831161074157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107e65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6006546001600160a01b0316331461082c5760405162461bcd60e51b81526004016107dd90611fc9565b600a55565b600061083c82610d71565b9050806001600160a01b0316836001600160a01b031614156108aa5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107dd565b336001600160a01b03821614806108c657506108c68133610636565b6109385760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107dd565b61094283836111f2565b505050565b6006546001600160a01b031633146109715760405162461bcd60e51b81526004016107dd90611fc9565b600d55565b600061098160075490565b905090565b6109903382611260565b6109ac5760405162461bcd60e51b81526004016107dd90611ffe565b610942838383611357565b806009546109c5919061207b565b341015610a145760405162461bcd60e51b815260206004820152601a60248201527f45746865722073656e7420697320696e73756666696369656e7400000000000060448201526064016107dd565b610a1d816114f3565b50565b6006546001600160a01b03163314610a4a5760405162461bcd60e51b81526004016107dd90611fc9565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b03163314610a965760405162461bcd60e51b81526004016107dd90611fc9565b600b55565b61094283838360405180602001604052806000815250610f1d565b60606000610ac383610e17565b905060008167ffffffffffffffff811115610ae057610ae0612189565b604051908082528060200260200182016040528015610b09578160200160208202803683370190505b509050600160005b8381108015610b225750600b548211155b15610b8d576000610b3283610d71565b9050866001600160a01b0316816001600160a01b03161415610b7a5782848381518110610b6157610b61612173565b602090810291909101015281610b7681612118565b9250505b82610b8481612118565b93505050610b11565b5090949350505050565b6006546001600160a01b03163314610bc15760405162461bcd60e51b81526004016107dd90611fc9565b8051610bd4906008906020840190611b0e565b5050565b6006546001600160a01b03163314610c025760405162461bcd60e51b81526004016107dd90611fc9565b6000610c0f600a47612067565b90506000610c1e82600761207b565b90506000610c2d83600361207b565b600e546040519192506000916001600160a01b039091169084908381818185875af1925050503d8060008114610c7f576040519150601f19603f3d011682016040523d82523d6000602084013e610c84565b606091505b5050905080610cce5760405162461bcd60e51b81526020600482015260166024820152752a3930b739b332b9103330b4b632b2103a379030989760511b60448201526064016107dd565b600f546040516000916001600160a01b03169084908381818185875af1925050503d8060008114610d1b576040519150601f19603f3d011682016040523d82523d6000602084013e610d20565b606091505b5050905080610d6a5760405162461bcd60e51b81526020600482015260166024820152752a3930b739b332b9103330b4b632b2103a379030991760511b60448201526064016107dd565b5050505050565b6000818152600260205260408120546001600160a01b0316806106d05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107dd565b6006546001600160a01b03163314610e125760405162461bcd60e51b81526004016107dd90611fc9565b600c55565b60006001600160a01b038216610e825760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107dd565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610ec85760405162461bcd60e51b81526004016107dd90611fc9565b610ed26000611611565b565b6006546001600160a01b03163314610efe5760405162461bcd60e51b81526004016107dd90611fc9565b600955565b6060600180546106e5906120dd565b610bd4338383611663565b610f273383611260565b610f435760405162461bcd60e51b81526004016107dd90611ffe565b610f4f84848484611732565b50505050565b6000818152600260205260409020546060906001600160a01b0316610fd45760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107dd565b6000610fde611765565b90506000815111610ffe5760405180602001604052806000815250611029565b8061100884611774565b604051602001611019929190611e6d565b6040516020818303038152906040525b9392505050565b6006546001600160a01b0316331461105a5760405162461bcd60e51b81526004016107dd90611fc9565b600b548161106760075490565b611071919061204f565b111561108f5760405162461bcd60e51b81526004016107dd90611f82565b60005b81811015610942576110a8600780546001019055565b6110ba836110b560075490565b611872565b806110c481612118565b915050611092565b600880546110d9906120dd565b80601f0160208091040260200160405190810160405280929190818152602001828054611105906120dd565b80156111525780601f1061112757610100808354040283529160200191611152565b820191906000526020600020905b81548152906001019060200180831161113557829003601f168201915b505050505081565b6006546001600160a01b031633146111845760405162461bcd60e51b81526004016107dd90611fc9565b6001600160a01b0381166111e95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107dd565b610a1d81611611565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061122782610d71565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166112d95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107dd565b60006112e483610d71565b9050806001600160a01b0316846001600160a01b0316148061131f5750836001600160a01b031661131484610768565b6001600160a01b0316145b8061134f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661136a82610d71565b6001600160a01b0316146113ce5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016107dd565b6001600160a01b0382166114305760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107dd565b61143b6000826111f2565b6001600160a01b038316600090815260036020526040812080546001929061146490849061209a565b90915550506001600160a01b038216600090815260036020526040812080546001929061149290849061204f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000600a54116115455760405162461bcd60e51b815260206004820152601760248201527f4d61696e2073616c65206973206e6f742061637469766500000000000000000060448201526064016107dd565b600c548111156115975760405162461bcd60e51b815260206004820152601e60248201527f526571756573746564206d696e747320657863656564206d6178696d756d000060448201526064016107dd565b600d54600b546115a7919061209a565b816115b160075490565b6115bb919061204f565b11156115d95760405162461bcd60e51b81526004016107dd90611f82565b60005b81811015610bd4576115f2600780546001019055565b6115ff336110b560075490565b8061160981612118565b9150506115dc565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156116c55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107dd565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61173d848484611357565b6117498484848461188c565b610f4f5760405162461bcd60e51b81526004016107dd90611f30565b6060600880546106e5906120dd565b6060816117985750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117c257806117ac81612118565b91506117bb9050600a83612067565b915061179c565b60008167ffffffffffffffff8111156117dd576117dd612189565b6040519080825280601f01601f191660200182016040528015611807576020820181803683370190505b5090505b841561134f5761181c60018361209a565b9150611829600a86612133565b61183490603061204f565b60f81b81838151811061184957611849612173565b60200101906001600160f81b031916908160001a90535061186b600a86612067565b945061180b565b610bd4828260405180602001604052806000815250611999565b60006001600160a01b0384163b1561198e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906118d0903390899088908890600401611e9c565b602060405180830381600087803b1580156118ea57600080fd5b505af192505050801561191a575060408051601f3d908101601f1916820190925261191791810190611dc2565b60015b611974573d808015611948576040519150601f19603f3d011682016040523d82523d6000602084013e61194d565b606091505b50805161196c5760405162461bcd60e51b81526004016107dd90611f30565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061134f565b506001949350505050565b6119a383836119cc565b6119b0600084848461188c565b6109425760405162461bcd60e51b81526004016107dd90611f30565b6001600160a01b038216611a225760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107dd565b6000818152600260205260409020546001600160a01b031615611a875760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107dd565b6001600160a01b0382166000908152600360205260408120805460019290611ab090849061204f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611b1a906120dd565b90600052602060002090601f016020900481019282611b3c5760008555611b82565b82601f10611b5557805160ff1916838001178555611b82565b82800160010185558215611b82579182015b82811115611b82578251825591602001919060010190611b67565b50611b8e929150611b92565b5090565b5b80821115611b8e5760008155600101611b93565b600067ffffffffffffffff80841115611bc257611bc2612189565b604051601f8501601f19908116603f01168101908282118183101715611bea57611bea612189565b81604052809350858152868686011115611c0357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611c3457600080fd5b919050565b600060208284031215611c4b57600080fd5b61102982611c1d565b60008060408385031215611c6757600080fd5b611c7083611c1d565b9150611c7e60208401611c1d565b90509250929050565b600080600060608486031215611c9c57600080fd5b611ca584611c1d565b9250611cb360208501611c1d565b9150604084013590509250925092565b60008060008060808587031215611cd957600080fd5b611ce285611c1d565b9350611cf060208601611c1d565b925060408501359150606085013567ffffffffffffffff811115611d1357600080fd5b8501601f81018713611d2457600080fd5b611d3387823560208401611ba7565b91505092959194509250565b60008060408385031215611d5257600080fd5b611d5b83611c1d565b915060208301358015158114611d7057600080fd5b809150509250929050565b60008060408385031215611d8e57600080fd5b611d9783611c1d565b946020939093013593505050565b600060208284031215611db757600080fd5b81356110298161219f565b600060208284031215611dd457600080fd5b81516110298161219f565b600060208284031215611df157600080fd5b813567ffffffffffffffff811115611e0857600080fd5b8201601f81018413611e1957600080fd5b61134f84823560208401611ba7565b600060208284031215611e3a57600080fd5b5035919050565b60008151808452611e598160208601602086016120b1565b601f01601f19169290920160200192915050565b60008351611e7f8184602088016120b1565b835190830190611e938183602088016120b1565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ecf90830184611e41565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611f1157835183529284019291840191600101611ef5565b50909695505050505050565b6020815260006110296020830184611e41565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526027908201527f526571756573746564206d696e7473206578636565642072656d61696e696e6760408201526620737570706c7960c81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561206257612062612147565b500190565b6000826120765761207661215d565b500490565b600081600019048311821515161561209557612095612147565b500290565b6000828210156120ac576120ac612147565b500390565b60005b838110156120cc5781810151838201526020016120b4565b83811115610f4f5750506000910152565b600181811c908216806120f157607f821691505b6020821081141561211257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561212c5761212c612147565b5060010190565b6000826121425761214261215d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a1d57600080fdfea26469706673582212208673ada24c4892648e085c3faef92864f01a9388007dea4fe40d9ccd06f63e0064736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5831774c70715951565768396a377964653463696f7254623647687079706a5776613646617665645a4555692f00000000000000000000

-----Decoded View---------------
Arg [0] : _baseTokenURI (string): ipfs://QmX1wLpqYQVWh9j7yde4ciorTb6GhpypjWva6FavedZEUi/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d5831774c70715951565768396a377964653463696f7254
Arg [3] : 623647687079706a5776613646617665645a4555692f00000000000000000000


Deployed Bytecode Sourcemap

45794:4304:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32601:305;;;;;;;;;;-1:-1:-1;32601:305:0;;;;;:::i;:::-;;:::i;:::-;;;6493:14:1;;6486:22;6468:41;;6456:2;6441:18;32601:305:0;;;;;;;;33546:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35105:221::-;;;;;;;;;;-1:-1:-1;35105:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5154:32:1;;;5136:51;;5124:2;5109:18;35105:221:0;4990:203:1;48762:100:0;;;;;;;;;;-1:-1:-1;48762:100:0;;;;;:::i;:::-;;:::i;:::-;;34628:411;;;;;;;;;;-1:-1:-1;34628:411:0;;;;;:::i;:::-;;:::i;46251:62::-;;;;;;;;;;-1:-1:-1;46251:62:0;;;;-1:-1:-1;;;;;46251:62:0;;;49075:121;;;;;;;;;;-1:-1:-1;49075:121:0;;;;;:::i;:::-;;:::i;47591:95::-;;;;;;;;;;;;;:::i;:::-;;;15444:25:1;;;15432:2;15417:18;47591:95:0;15298:177:1;46181:36:0;;;;;;;;;;;;;;;;35855:339;;;;;;;;;;-1:-1:-1;35855:339:0;;;;;:::i;:::-;;:::i;46622:168::-;;;;;;:::i;:::-;;:::i;46365:72::-;;;;;;;;;;-1:-1:-1;46365:72:0;;;;-1:-1:-1;;;;;46365:72:0;;;48984:83;;;;;;;;;;-1:-1:-1;48984:83:0;;;;;:::i;:::-;;:::i;48624:98::-;;;;;;;;;;-1:-1:-1;48624:98:0;;;;;:::i;:::-;;:::i;36265:185::-;;;;;;;;;;-1:-1:-1;36265:185:0;;;;;:::i;:::-;;:::i;47694:682::-;;;;;;;;;;-1:-1:-1;47694:682:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;48403:113::-;;;;;;;;;;-1:-1:-1;48403:113:0;;;;;:::i;:::-;;:::i;46099:34::-;;;;;;;;;;;;;;;;49625:466;;;:::i;46039:28::-;;;;;;;;;;;;;;;;33240:239;;;;;;;;;;-1:-1:-1;33240:239:0;;;;;:::i;:::-;;:::i;48870:106::-;;;;;;;;;;-1:-1:-1;48870:106:0;;;;;:::i;:::-;;:::i;32970:208::-;;;;;;;;;;-1:-1:-1;32970:208:0;;;;;:::i;:::-;;:::i;13222:103::-;;;;;;;;;;;;;:::i;12571:87::-;;;;;;;;;;-1:-1:-1;12644:6:0;;-1:-1:-1;;;;;12644:6:0;12571:87;;48524:92;;;;;;;;;;-1:-1:-1;48524:92:0;;;;;:::i;:::-;;:::i;33715:104::-;;;;;;;;;;;;;:::i;45998:34::-;;;;;;;;;;;;;;;;35398:155;;;;;;;;;;-1:-1:-1;35398:155:0;;;;;:::i;:::-;;:::i;36521:328::-;;;;;;;;;;-1:-1:-1;36521:328:0;;;;;:::i;:::-;;:::i;33890:334::-;;;;;;;;;;-1:-1:-1;33890:334:0;;;;;:::i;:::-;;:::i;49223:394::-;;;;;;;;;;-1:-1:-1;49223:394:0;;;;;:::i;:::-;;:::i;45963:26::-;;;;;;;;;;;;;:::i;46140:34::-;;;;;;;;;;;;;;;;35624:164;;;;;;;;;;-1:-1:-1;35624:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;35745:25:0;;;35721:4;35745:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35624:164;13480:201;;;;;;;;;;-1:-1:-1;13480:201:0;;;;;:::i;:::-;;:::i;32601:305::-;32703:4;-1:-1:-1;;;;;;32740:40:0;;-1:-1:-1;;;32740:40:0;;:105;;-1:-1:-1;;;;;;;32797:48:0;;-1:-1:-1;;;32797:48:0;32740:105;:158;;;-1:-1:-1;;;;;;;;;;25464:40:0;;;32862:36;32720:178;32601:305;-1:-1:-1;;32601:305:0:o;33546:100::-;33600:13;33633:5;33626:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33546:100;:::o;35105:221::-;35181:7;38448:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38448:16:0;35201:73;;;;-1:-1:-1;;;35201:73:0;;12780:2:1;35201:73:0;;;12762:21:1;12819:2;12799:18;;;12792:30;12858:34;12838:18;;;12831:62;-1:-1:-1;;;12909:18:1;;;12902:42;12961:19;;35201:73:0;;;;;;;;;-1:-1:-1;35294:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;35294:24:0;;35105:221::o;48762:100::-;12644:6;;-1:-1:-1;;;;;12644:6:0;11375:10;12791:23;12783:68;;;;-1:-1:-1;;;12783:68:0;;;;;;;:::i;:::-;48832:9:::1;:22:::0;48762:100::o;34628:411::-;34709:13;34725:23;34740:7;34725:14;:23::i;:::-;34709:39;;34773:5;-1:-1:-1;;;;;34767:11:0;:2;-1:-1:-1;;;;;34767:11:0;;;34759:57;;;;-1:-1:-1;;;34759:57:0;;14321:2:1;34759:57:0;;;14303:21:1;14360:2;14340:18;;;14333:30;14399:34;14379:18;;;14372:62;-1:-1:-1;;;14450:18:1;;;14443:31;14491:19;;34759:57:0;14119:397:1;34759:57:0;11375:10;-1:-1:-1;;;;;34851:21:0;;;;:62;;-1:-1:-1;34876:37:0;34893:5;11375:10;35624:164;:::i;34876:37::-;34829:168;;;;-1:-1:-1;;;34829:168:0;;10413:2:1;34829:168:0;;;10395:21:1;10452:2;10432:18;;;10425:30;10491:34;10471:18;;;10464:62;10562:26;10542:18;;;10535:54;10606:19;;34829:168:0;10211:420:1;34829:168:0;35010:21;35019:2;35023:7;35010:8;:21::i;:::-;34698:341;34628:411;;:::o;49075:121::-;12644:6;;-1:-1:-1;;;;;12644:6:0;11375:10;12791:23;12783:68;;;;-1:-1:-1;;;12783:68:0;;;;;;;:::i;:::-;49155:15:::1;:33:::0;49075:121::o;47591:95::-;47635:7;47662:16;:6;7991:14;;7899:114;47662:16;47655:23;;47591:95;:::o;35855:339::-;36050:41;11375:10;36083:7;36050:18;:41::i;:::-;36042:103;;;;-1:-1:-1;;;36042:103:0;;;;;;;:::i;:::-;36158:28;36168:4;36174:2;36178:7;36158:9;:28::i;46622:168::-;46715:3;46707:5;;:11;;;;:::i;:::-;46694:9;:24;;46685:66;;;;-1:-1:-1;;;46685:66:0;;10058:2:1;46685:66:0;;;10040:21:1;10097:2;10077:18;;;10070:30;10136:28;10116:18;;;10109:56;10182:18;;46685:66:0;9856:350:1;46685:66:0;46764:18;46778:3;46764:13;:18::i;:::-;46622:168;:::o;48984:83::-;12644:6;;-1:-1:-1;;;;;12644:6:0;11375:10;12791:23;12783:68;;;;-1:-1:-1;;;12783:68:0;;;;;;;:::i;:::-;49052:2:::1;:7:::0;;-1:-1:-1;;;;;;49052:7:0::1;-1:-1:-1::0;;;;;49052:7:0;;;::::1;::::0;;;::::1;::::0;;48984:83::o;48624:98::-;12644:6;;-1:-1:-1;;;;;12644:6:0;11375:10;12791:23;12783:68;;;;-1:-1:-1;;;12783:68:0;;;;;;;:::i;:::-;48692:12:::1;:22:::0;48624:98::o;36265:185::-;36403:39;36420:4;36426:2;36430:7;36403:39;;;;;;;;;;;;:16;:39::i;47694:682::-;47754:16;47783:18;47804:17;47814:6;47804:9;:17::i;:::-;47783:38;;47832:25;47874:10;47860:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47860:25:0;-1:-1:-1;47832:53:0;-1:-1:-1;47921:1:0;47896:22;47973:368;47998:10;47980:15;:28;:62;;;;;48030:12;;48012:14;:30;;47980:62;47973:368;;;48069:25;48097:23;48105:14;48097:7;:23::i;:::-;48069:51;;48162:6;-1:-1:-1;;;;;48141:27:0;:17;-1:-1:-1;;;;;48141:27:0;;48137:160;;;48231:14;48203:8;48212:15;48203:25;;;;;;;;:::i;:::-;;;;;;;;;;:42;48264:17;;;;:::i;:::-;;;;48137:160;48313:16;;;;:::i;:::-;;;;48054:287;47973:368;;;-1:-1:-1;48360:8:0;;47694:682;-1:-1:-1;;;;47694:682:0:o;48403:113::-;12644:6;;-1:-1:-1;;;;;12644:6:0;11375:10;12791:23;12783:68;;;;-1:-1:-1;;;12783:68:0;;;;;;;:::i;:::-;48480:28;;::::1;::::0;:12:::1;::::0;:28:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48403:113:::0;:::o;49625:466::-;12644:6;;-1:-1:-1;;;;;12644:6:0;11375:10;12791:23;12783:68;;;;-1:-1:-1;;;12783:68:0;;;;;;;:::i;:::-;49688:14:::1;49705:26;49729:2;49705:21;:26;:::i;:::-;49688:43:::0;-1:-1:-1;49742:16:0::1;49761:10;49688:43:::0;49770:1:::1;49761:10;:::i;:::-;49742:29:::0;-1:-1:-1;49782:21:0::1;49806:10;:6:::0;49815:1:::1;49806:10;:::i;:::-;49864:2;::::0;49856:37:::1;::::0;49782:34;;-1:-1:-1;49838:12:0::1;::::0;-1:-1:-1;;;;;49864:2:0;;::::1;::::0;49880:8;;49838:12;49856:37;49838:12;49856:37;49880:8;49864:2;49856:37:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49837:56;;;49912:7;49904:42;;;::::0;-1:-1:-1;;;49904:42:0;;8535:2:1;49904:42:0::1;::::0;::::1;8517:21:1::0;8574:2;8554:18;;;8547:30;-1:-1:-1;;;8593:18:1;;;8586:52;8655:18;;49904:42:0::1;8333:346:1::0;49904:42:0::1;49985:12;::::0;49977:52:::1;::::0;49958:13:::1;::::0;-1:-1:-1;;;;;49985:12:0::1;::::0;50011:13;;49958;49977:52;49958:13;49977:52;50011:13;49985:12;49977:52:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49957:72;;;50048:8;50040:43;;;::::0;-1:-1:-1;;;50040:43:0;;13193:2:1;50040:43:0::1;::::0;::::1;13175:21:1::0;13232:2;13212:18;;;13205:30;-1:-1:-1;;;13251:18:1;;;13244:52;13313:18;;50040:43:0::1;12991:346:1::0;50040:43:0::1;49677:414;;;;;49625:466::o:0;33240:239::-;33312:7;33348:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33348:16:0;33383:19;33375:73;;;;-1:-1:-1;;;33375:73:0;;11601:2:1;33375:73:0;;;11583:21:1;11640:2;11620:18;;;11613:30;11679:34;11659:18;;;11652:62;-1:-1:-1;;;11730:18:1;;;11723:39;11779:19;;33375:73:0;11399:405:1;48870:106:0;12644:6;;-1:-1:-1;;;;;12644:6:0;11375:10;12791:23;12783:68;;;;-1:-1:-1;;;12783:68:0;;;;;;;:::i;:::-;48942:14:::1;:26:::0;48870:106::o;32970:208::-;33042:7;-1:-1:-1;;;;;33070:19:0;;33062:74;;;;-1:-1:-1;;;33062:74:0;;11190:2:1;33062:74:0;;;11172:21:1;11229:2;11209:18;;;11202:30;11268:34;11248:18;;;11241:62;-1:-1:-1;;;11319:18:1;;;11312:40;11369:19;;33062:74:0;10988:406:1;33062:74:0;-1:-1:-1;;;;;;33154:16:0;;;;;:9;:16;;;;;;;32970:208::o;13222:103::-;12644:6;;-1:-1:-1;;;;;12644:6:0;11375:10;12791:23;12783:68;;;;-1:-1:-1;;;12783:68:0;;;;;;;:::i;:::-;13287:30:::1;13314:1;13287:18;:30::i;:::-;13222:103::o:0;48524:92::-;12644:6;;-1:-1:-1;;;;;12644:6:0;11375:10;12791:23;12783:68;;;;-1:-1:-1;;;12783:68:0;;;;;;;:::i;:::-;48591:5:::1;:17:::0;48524:92::o;33715:104::-;33771:13;33804:7;33797:14;;;;;:::i;35398:155::-;35493:52;11375:10;35526:8;35536;35493:18;:52::i;36521:328::-;36696:41;11375:10;36729:7;36696:18;:41::i;:::-;36688:103;;;;-1:-1:-1;;;36688:103:0;;;;;;;:::i;:::-;36802:39;36816:4;36822:2;36826:7;36835:5;36802:13;:39::i;:::-;36521:328;;;;:::o;33890:334::-;38424:4;38448:16;;;:7;:16;;;;;;33963:13;;-1:-1:-1;;;;;38448:16:0;33989:76;;;;-1:-1:-1;;;33989:76:0;;13905:2:1;33989:76:0;;;13887:21:1;13944:2;13924:18;;;13917:30;13983:34;13963:18;;;13956:62;-1:-1:-1;;;14034:18:1;;;14027:45;14089:19;;33989:76:0;13703:411:1;33989:76:0;34078:21;34102:10;:8;:10::i;:::-;34078:34;;34154:1;34136:7;34130:21;:25;:86;;;;;;;;;;;;;;;;;34182:7;34191:18;:7;:16;:18::i;:::-;34165:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34130:86;34123:93;33890:334;-1:-1:-1;;;33890:334:0:o;49223:394::-;12644:6;;-1:-1:-1;;;;;12644:6:0;11375:10;12791:23;12783:68;;;;-1:-1:-1;;;12783:68:0;;;;;;;:::i;:::-;49341:12:::1;;49331:6;49312:16;:6;7991:14:::0;;7899:114;49312:16:::1;:25;;;;:::i;:::-;:41;;49304:93;;;;-1:-1:-1::0;;;49304:93:0::1;;;;;;;:::i;:::-;49426:9;49422:188;49441:6;49437:1;:10;49422:188;;;49505:18;:6;8110:19:::0;;8128:1;8110:19;;;8021:127;49505:18:::1;49561:33;49572:3;49577:16;:6;7991:14:::0;;7899:114;49577:16:::1;49561:9;:33::i;:::-;49449:3:::0;::::1;::::0;::::1;:::i;:::-;;;;49422:188;;45963:26:::0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;13480:201::-;12644:6;;-1:-1:-1;;;;;12644:6:0;11375:10;12791:23;12783:68;;;;-1:-1:-1;;;12783:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13569:22:0;::::1;13561:73;;;::::0;-1:-1:-1;;;13561:73:0;;7365:2:1;13561:73:0::1;::::0;::::1;7347:21:1::0;7404:2;7384:18;;;7377:30;7443:34;7423:18;;;7416:62;-1:-1:-1;;;7494:18:1;;;7487:36;7540:19;;13561:73:0::1;7163:402:1::0;13561:73:0::1;13645:28;13664:8;13645:18;:28::i;42505:174::-:0;42580:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;42580:29:0;-1:-1:-1;;;;;42580:29:0;;;;;;;;:24;;42634:23;42580:24;42634:14;:23::i;:::-;-1:-1:-1;;;;;42625:46:0;;;;;;;;;;;42505:174;;:::o;38653:348::-;38746:4;38448:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38448:16:0;38763:73;;;;-1:-1:-1;;;38763:73:0;;9645:2:1;38763:73:0;;;9627:21:1;9684:2;9664:18;;;9657:30;9723:34;9703:18;;;9696:62;-1:-1:-1;;;9774:18:1;;;9767:42;9826:19;;38763:73:0;9443:408:1;38763:73:0;38847:13;38863:23;38878:7;38863:14;:23::i;:::-;38847:39;;38916:5;-1:-1:-1;;;;;38905:16:0;:7;-1:-1:-1;;;;;38905:16:0;;:51;;;;38949:7;-1:-1:-1;;;;;38925:31:0;:20;38937:7;38925:11;:20::i;:::-;-1:-1:-1;;;;;38925:31:0;;38905:51;:87;;;-1:-1:-1;;;;;;35745:25:0;;;35721:4;35745:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;38960:32;38897:96;38653:348;-1:-1:-1;;;;38653:348:0:o;41762:625::-;41921:4;-1:-1:-1;;;;;41894:31:0;:23;41909:7;41894:14;:23::i;:::-;-1:-1:-1;;;;;41894:31:0;;41886:81;;;;-1:-1:-1;;;41886:81:0;;7772:2:1;41886:81:0;;;7754:21:1;7811:2;7791:18;;;7784:30;7850:34;7830:18;;;7823:62;-1:-1:-1;;;7901:18:1;;;7894:35;7946:19;;41886:81:0;7570:401:1;41886:81:0;-1:-1:-1;;;;;41986:16:0;;41978:65;;;;-1:-1:-1;;;41978:65:0;;8886:2:1;41978:65:0;;;8868:21:1;8925:2;8905:18;;;8898:30;8964:34;8944:18;;;8937:62;-1:-1:-1;;;9015:18:1;;;9008:34;9059:19;;41978:65:0;8684:400:1;41978:65:0;42160:29;42177:1;42181:7;42160:8;:29::i;:::-;-1:-1:-1;;;;;42202:15:0;;;;;;:9;:15;;;;;:20;;42221:1;;42202:15;:20;;42221:1;;42202:20;:::i;:::-;;;;-1:-1:-1;;;;;;;42233:13:0;;;;;;:9;:13;;;;;:18;;42250:1;;42233:13;:18;;42250:1;;42233:18;:::i;:::-;;;;-1:-1:-1;;42262:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;42262:21:0;-1:-1:-1;;;;;42262:21:0;;;;;;;;;42301:27;;42262:16;;42301:27;;;;;;;34698:341;34628:411;;:::o;46822:546::-;46908:1;46896:9;;:13;46887:63;;;;-1:-1:-1;;;46887:63:0;;10838:2:1;46887:63:0;;;10820:21:1;10877:2;10857:18;;;10850:30;10916:25;10896:18;;;10889:53;10959:18;;46887:63:0;10636:347:1;46887:63:0;46977:14;;46970:3;:21;;46961:70;;;;-1:-1:-1;;;46961:70:0;;15141:2:1;46961:70:0;;;15123:21:1;15180:2;15160:18;;;15153:30;15219:32;15199:18;;;15192:60;15269:18;;46961:70:0;14939:354:1;46961:70:0;47092:15;;47077:12;;:30;;;;:::i;:::-;47069:3;47050:16;:6;7991:14;;7899:114;47050:16;:22;;;;:::i;:::-;:58;;47042:110;;;;-1:-1:-1;;;47042:110:0;;;;;;;:::i;:::-;47171:9;47167:192;47186:3;47182:1;:7;47167:192;;;47247:18;:6;8110:19;;8128:1;8110:19;;;8021:127;47247:18;47303:40;47314:10;47326:16;:6;7991:14;;7899:114;47303:40;47191:3;;;;:::i;:::-;;;;47167:192;;13841:191;13934:6;;;-1:-1:-1;;;;;13951:17:0;;;-1:-1:-1;;;;;;13951:17:0;;;;;;;13984:40;;13934:6;;;13951:17;13934:6;;13984:40;;13915:16;;13984:40;13904:128;13841:191;:::o;42821:315::-;42976:8;-1:-1:-1;;;;;42967:17:0;:5;-1:-1:-1;;;;;42967:17:0;;;42959:55;;;;-1:-1:-1;;;42959:55:0;;9291:2:1;42959:55:0;;;9273:21:1;9330:2;9310:18;;;9303:30;9369:27;9349:18;;;9342:55;9414:18;;42959:55:0;9089:349:1;42959:55:0;-1:-1:-1;;;;;43025:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;43025:46:0;;;;;;;;;;43087:41;;6468::1;;;43087::0;;6441:18:1;43087:41:0;;;;;;;42821:315;;;:::o;37731:::-;37888:28;37898:4;37904:2;37908:7;37888:9;:28::i;:::-;37935:48;37958:4;37964:2;37968:7;37977:5;37935:22;:48::i;:::-;37927:111;;;;-1:-1:-1;;;37927:111:0;;;;;;;:::i;47470:113::-;47530:13;47563:12;47556:19;;;;;:::i;8857:723::-;8913:13;9134:10;9130:53;;-1:-1:-1;;9161:10:0;;;;;;;;;;;;-1:-1:-1;;;9161:10:0;;;;;8857:723::o;9130:53::-;9208:5;9193:12;9249:78;9256:9;;9249:78;;9282:8;;;;:::i;:::-;;-1:-1:-1;9305:10:0;;-1:-1:-1;9313:2:0;9305:10;;:::i;:::-;;;9249:78;;;9337:19;9369:6;9359:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9359:17:0;;9337:39;;9387:154;9394:10;;9387:154;;9421:11;9431:1;9421:11;;:::i;:::-;;-1:-1:-1;9490:10:0;9498:2;9490:5;:10;:::i;:::-;9477:24;;:2;:24;:::i;:::-;9464:39;;9447:6;9454;9447:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;9447:56:0;;;;;;;;-1:-1:-1;9518:11:0;9527:2;9518:11;;:::i;:::-;;;9387:154;;39343:110;39419:26;39429:2;39433:7;39419:26;;;;;;;;;;;;:9;:26::i;43701:799::-;43856:4;-1:-1:-1;;;;;43877:13:0;;15567:19;:23;43873:620;;43913:72;;-1:-1:-1;;;43913:72:0;;-1:-1:-1;;;;;43913:36:0;;;;;:72;;11375:10;;43964:4;;43970:7;;43979:5;;43913:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43913:72:0;;;;;;;;-1:-1:-1;;43913:72:0;;;;;;;;;;;;:::i;:::-;;;43909:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44155:13:0;;44151:272;;44198:60;;-1:-1:-1;;;44198:60:0;;;;;;;:::i;44151:272::-;44373:6;44367:13;44358:6;44354:2;44350:15;44343:38;43909:529;-1:-1:-1;;;;;;44036:51:0;-1:-1:-1;;;44036:51:0;;-1:-1:-1;44029:58:0;;43873:620;-1:-1:-1;44477:4:0;43701:799;;;;;;:::o;39680:321::-;39810:18;39816:2;39820:7;39810:5;:18::i;:::-;39861:54;39892:1;39896:2;39900:7;39909:5;39861:22;:54::i;:::-;39839:154;;;;-1:-1:-1;;;39839:154:0;;;;;;;:::i;40337:439::-;-1:-1:-1;;;;;40417:16:0;;40409:61;;;;-1:-1:-1;;;40409:61:0;;12011:2:1;40409:61:0;;;11993:21:1;;;12030:18;;;12023:30;12089:34;12069:18;;;12062:62;12141:18;;40409:61:0;11809:356:1;40409:61:0;38424:4;38448:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38448:16:0;:30;40481:58;;;;-1:-1:-1;;;40481:58:0;;8178:2:1;40481:58:0;;;8160:21:1;8217:2;8197:18;;;8190:30;8256;8236:18;;;8229:58;8304:18;;40481:58:0;7976:352:1;40481:58:0;-1:-1:-1;;;;;40610:13:0;;;;;;:9;:13;;;;;:18;;40627:1;;40610:13;:18;;40627:1;;40610:18;:::i;:::-;;;;-1:-1:-1;;40639:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;40639:21:0;-1:-1:-1;;;;;40639:21:0;;;;;;;;40678:33;;40639:16;;;40678:33;;40639:16;;40678:33;48480:28:::1;48403:113:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:470::-;4484:3;4522:6;4516:13;4538:53;4584:6;4579:3;4572:4;4564:6;4560:17;4538:53;:::i;:::-;4654:13;;4613:16;;;;4676:57;4654:13;4613:16;4710:4;4698:17;;4676:57;:::i;:::-;4749:20;;4305:470;-1:-1:-1;;;;4305:470:1:o;5198:488::-;-1:-1:-1;;;;;5467:15:1;;;5449:34;;5519:15;;5514:2;5499:18;;5492:43;5566:2;5551:18;;5544:34;;;5614:3;5609:2;5594:18;;5587:31;;;5392:4;;5635:45;;5660:19;;5652:6;5635:45;:::i;:::-;5627:53;5198:488;-1:-1:-1;;;;;;5198:488:1:o;5691:632::-;5862:2;5914:21;;;5984:13;;5887:18;;;6006:22;;;5833:4;;5862:2;6085:15;;;;6059:2;6044:18;;;5833:4;6128:169;6142:6;6139:1;6136:13;6128:169;;;6203:13;;6191:26;;6272:15;;;;6237:12;;;;6164:1;6157:9;6128:169;;;-1:-1:-1;6314:3:1;;5691:632;-1:-1:-1;;;;;;5691:632:1:o;6520:219::-;6669:2;6658:9;6651:21;6632:4;6689:44;6729:2;6718:9;6714:18;6706:6;6689:44;:::i;6744:414::-;6946:2;6928:21;;;6985:2;6965:18;;;6958:30;7024:34;7019:2;7004:18;;6997:62;-1:-1:-1;;;7090:2:1;7075:18;;7068:48;7148:3;7133:19;;6744:414::o;12170:403::-;12372:2;12354:21;;;12411:2;12391:18;;;12384:30;12450:34;12445:2;12430:18;;12423:62;-1:-1:-1;;;12516:2:1;12501:18;;12494:37;12563:3;12548:19;;12170:403::o;13342:356::-;13544:2;13526:21;;;13563:18;;;13556:30;13622:34;13617:2;13602:18;;13595:62;13689:2;13674:18;;13342:356::o;14521:413::-;14723:2;14705:21;;;14762:2;14742:18;;;14735:30;14801:34;14796:2;14781:18;;14774:62;-1:-1:-1;;;14867:2:1;14852:18;;14845:47;14924:3;14909:19;;14521:413::o;15480:128::-;15520:3;15551:1;15547:6;15544:1;15541:13;15538:39;;;15557:18;;:::i;:::-;-1:-1:-1;15593:9:1;;15480:128::o;15613:120::-;15653:1;15679;15669:35;;15684:18;;:::i;:::-;-1:-1:-1;15718:9:1;;15613:120::o;15738:168::-;15778:7;15844:1;15840;15836:6;15832:14;15829:1;15826:21;15821:1;15814:9;15807:17;15803:45;15800:71;;;15851:18;;:::i;:::-;-1:-1:-1;15891:9:1;;15738:168::o;15911:125::-;15951:4;15979:1;15976;15973:8;15970:34;;;15984:18;;:::i;:::-;-1:-1:-1;16021:9:1;;15911:125::o;16041:258::-;16113:1;16123:113;16137:6;16134:1;16131:13;16123:113;;;16213:11;;;16207:18;16194:11;;;16187:39;16159:2;16152:10;16123:113;;;16254:6;16251:1;16248:13;16245:48;;;-1:-1:-1;;16289:1:1;16271:16;;16264:27;16041:258::o;16304:380::-;16383:1;16379:12;;;;16426;;;16447:61;;16501:4;16493:6;16489:17;16479:27;;16447:61;16554:2;16546:6;16543:14;16523:18;16520:38;16517:161;;;16600:10;16595:3;16591:20;16588:1;16581:31;16635:4;16632:1;16625:15;16663:4;16660:1;16653:15;16517:161;;16304:380;;;:::o;16689:135::-;16728:3;-1:-1:-1;;16749:17:1;;16746:43;;;16769:18;;:::i;:::-;-1:-1:-1;16816:1:1;16805:13;;16689:135::o;16829:112::-;16861:1;16887;16877:35;;16892:18;;:::i;:::-;-1:-1:-1;16926:9:1;;16829:112::o;16946:127::-;17007:10;17002:3;16998:20;16995:1;16988:31;17038:4;17035:1;17028:15;17062:4;17059:1;17052:15;17078:127;17139:10;17134:3;17130:20;17127:1;17120:31;17170:4;17167:1;17160:15;17194:4;17191:1;17184:15;17210:127;17271:10;17266:3;17262:20;17259:1;17252:31;17302:4;17299:1;17292:15;17326:4;17323:1;17316:15;17342:127;17403:10;17398:3;17394:20;17391:1;17384:31;17434:4;17431:1;17424:15;17458:4;17455:1;17448:15;17474:131;-1:-1:-1;;;;;;17548:32:1;;17538:43;;17528:71;;17595:1;17592;17585:12

Swarm Source

ipfs://8673ada24c4892648e085c3faef92864f01a9388007dea4fe40d9ccd06f63e00
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.