S Price: $0.478093 (-1.15%)

Token

Wolf (WOLF)

Overview

Max Total Supply

764 WOLF

Holders

201

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
WOLF

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, BSL 1.1 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at SonicScan.org on 2025-03-24
*/

// SPDX-License-Identifier: MIT
pragma solidity =0.8.13 ^0.8.0 ^0.8.1 ^0.8.13;

// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// lib/openzeppelin-contracts/contracts/token/ERC721/IERC721Receiver.sol

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

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

// lib/openzeppelin-contracts/contracts/utils/Address.sol

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

/**
 * @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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

// lib/openzeppelin-contracts/contracts/utils/Context.sol

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

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

// lib/openzeppelin-contracts/contracts/utils/introspection/IERC165.sol

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

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

// lib/openzeppelin-contracts/contracts/utils/math/Math.sol

// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

// src/interfaces/IPair.sol

interface IPair {
    function sync() external;
}

// src/interfaces/ISheep.sol

interface ISheep {
    function transferOwnership(address newOwner) external;
    function eatSheep(address _victim, uint256 _amount, address _owner, uint256 _mintPercent) external;
    function transferFrom(address from, address to, uint256 amount) external;
    function transfer(address to, uint256 amount) external returns (bool);
    function burnSheep(uint256 balSheepHere) external;
    function owner() external view returns (address);
    function wGasToken() external view returns (address);
}

// lib/openzeppelin-contracts/contracts/access/Ownable.sol

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

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

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

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

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

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

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

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

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

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

// lib/openzeppelin-contracts/contracts/token/ERC721/IERC721.sol

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

// lib/openzeppelin-contracts/contracts/utils/Strings.sol

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

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

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

// lib/openzeppelin-contracts/contracts/utils/introspection/ERC165.sol

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

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

// lib/openzeppelin-contracts/contracts/access/Ownable2Step.sol

// OpenZeppelin Contracts (last updated v4.8.0) (access/Ownable2Step.sol)

/**
 * @dev Contract module which provides 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} and {acceptOwnership}.
 *
 * This module is used through inheritance. It will make available all functions
 * from parent (Ownable).
 */
abstract contract Ownable2Step is Ownable {
    address private _pendingOwner;

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

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

    /**
     * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual override onlyOwner {
        _pendingOwner = newOwner;
        emit OwnershipTransferStarted(owner(), newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual override {
        delete _pendingOwner;
        super._transferOwnership(newOwner);
    }

    /**
     * @dev The new owner accepts the ownership transfer.
     */
    function acceptOwnership() external {
        address sender = _msgSender();
        require(pendingOwner() == sender, "Ownable2Step: caller is not the new owner");
        _transferOwnership(sender);
    }
}

// lib/openzeppelin-contracts/contracts/token/ERC721/extensions/IERC721Enumerable.sol

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

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

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

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

// lib/openzeppelin-contracts/contracts/token/ERC721/extensions/IERC721Metadata.sol

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

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

// lib/openzeppelin-contracts/contracts/token/ERC721/ERC721.sol

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

/**
 * @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: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _ownerOf(tokenId);
        require(owner != address(0), "ERC721: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 overridden 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 token owner or approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        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: caller is not token owner or 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: caller is not token owner or 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 the owner of the `tokenId`. Does NOT revert if token doesn't exist
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @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 _ownerOf(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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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, 1);

        // Check that tokenId was not minted by `_beforeTokenTransfer` hook
        require(!_exists(tokenId), "ERC721: token already minted");

        unchecked {
            // Will not overflow unless all 2**256 token ids are minted to the same owner.
            // Given that tokens are minted one by one, it is impossible in practice that
            // this ever happens. Might change if we allow batch minting.
            // The ERC fails to describe this case.
            _balances[to] += 1;
        }

        _owners[tokenId] = to;

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

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

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
        owner = ERC721.ownerOf(tokenId);

        // Clear approvals
        delete _tokenApprovals[tokenId];

        unchecked {
            // Cannot overflow, as that would require more tokens to be burned/transferred
            // out than the owner initially received through minting and transferring in.
            _balances[owner] -= 1;
        }
        delete _owners[tokenId];

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

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

    /**
     * @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, 1);

        // Check that tokenId was not transferred by `_beforeTokenTransfer` hook
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");

        // Clear approvals from the previous owner
        delete _tokenApprovals[tokenId];

        unchecked {
            // `_balances[from]` cannot overflow for the same reason as described in `_burn`:
            // `from`'s balance is the number of token held, which is at least one before the current
            // transfer.
            // `_balances[to]` could overflow in the conditions described in `_mint`. That would require
            // all 2**256 token ids to be minted, which in practice is impossible.
            _balances[from] -= 1;
            _balances[to] += 1;
        }
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {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 an {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 Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
     * - When `from` is zero, the tokens will be minted for `to`.
     * - When `to` is zero, ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
     * - When `from` is zero, the tokens were minted for `to`.
     * - When `to` is zero, ``from``'s tokens were burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual {}

    /**
     * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
     *
     * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant
     * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such
     * that `ownerOf(tokenId)` is `a`.
     */
    // solhint-disable-next-line func-name-mixedcase
    function __unsafe_increaseBalance(address account, uint256 amount) internal {
        _balances[account] += amount;
    }
}

// lib/openzeppelin-contracts/contracts/token/ERC721/extensions/ERC721Enumerable.sol

// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Enumerable.sol)

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

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

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

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

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

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

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

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

    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, firstTokenId, batchSize);

        if (batchSize > 1) {
            // Will only trigger during construction. Batch transferring (minting) is not available afterwards.
            revert("ERC721Enumerable: consecutive transfers not supported");
        }

        uint256 tokenId = firstTokenId;

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

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

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

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

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

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

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

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

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

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

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

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

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

// src/WolfNFT.sol

// This contract gets to burn SHEEP token in other addresses
// It costs x gasTokens and SHEEP to mint
// It gets hungrier and starves

contract WOLF is ERC721Enumerable, Ownable2Step {
    uint256 public constant ONE = 1 * 1e18;
    uint256 public constant TEN = 10 * 1e18;
    uint256 public constant HUNDRED = 100 * 1e18;
    uint256 public constant DAY = 86400;
    uint256 public constant WEEK = 604800;

    address public sheep;
    uint256 public mating = ONE;
    mapping(uint256 => uint256) public starved; //tokenId => time
    mapping(uint256 => uint256) public hungry; //tokenId => time
    mapping(uint256 => uint256) public hunger; //tokenId => quantity will eat
    mapping(uint256 => uint256) public eatenFromMarket; //tokenId => how many eaten
    mapping(address => uint256) public mints; //owner => tokenId
    uint256 wolfID = 0;

    address public wGasToken;
    address public sheepDog;
    address public sheepMarket;

    mapping(address => bool) public canNotBeEaten;

    event cryWolf(address indexed minter, uint256 amount);
    event sheepEaten(address indexed victim, uint256 amount);

    // Static URI for all tokens - Image does not vary
    string private _staticTokenURI;

    constructor(address _sheep, address _sheepDog,address _sheepMarket ) ERC721 ("Wolf", "WOLF") {
        sheep = _sheep;
        wGasToken = ISheep(sheep).wGasToken();
        sheepDog = _sheepDog;
        canNotBeEaten[sheepDog] = true;
        sheepMarket = _sheepMarket;
    }

    // This function allows caller to pay fee, burn tokens, and mint an NFT
    // The fee is in wGasTokens
    // The burned tokens are SHEEP - User must have bal
    function getWolf() public {
        ISheep(sheep).eatSheep(msg.sender, mating, address(this),0);
        emit sheepEaten(msg.sender, mating);

        mating = mating + ONE;

        IERC20(wGasToken).transferFrom(msg.sender, sheepDog, HUNDRED); // TODO decide the price 

        _safeMint(msg.sender, wolfID);
        emit cryWolf(msg.sender, wolfID);

        starved[wolfID] = block.timestamp + WEEK;
        hungry[wolfID] = block.timestamp + DAY;
        hunger[wolfID] = ONE;

        wolfID = wolfID + 1;
    }

    // Owner of wolfNFT calls this to burn SHEEP
    // Must burn 1/wk can 1/day

    function eatSheep(address _victim, uint256 _wolfID) public {
        require(_isApprovedOrOwner(msg.sender, _wolfID), "you dont own this wolf");
        require(block.timestamp < starved[_wolfID], 'your wolf starved');
        require(block.timestamp > hungry[_wolfID], "your wolf is not hungry yet");
        require(eatenFromMarket[_wolfID] <= 2 || _victim != sheepMarket,"you eat too much from the market");
        uint256 sheepToEat = hunger[_wolfID];

        _burnSheep(_victim, sheepToEat);

        hunger[_wolfID] = hunger[_wolfID] + ONE;
        hungry[_wolfID] = block.timestamp + DAY; // 1 day
        starved[_wolfID] = block.timestamp + WEEK; // 1 week

        if( _victim == sheepMarket) {
            eatenFromMarket[_wolfID] += 1;
        } else {
            eatenFromMarket[_wolfID] = 0;
        }

        emit sheepEaten(_victim, sheepToEat);
    }

    // internal function that actually burns
    function _burnSheep(address _victim,uint256 _sheepToEat) private {
        require(!canNotBeEaten[_victim],"can not eat from this address");

        uint256 mintPercent = 25;
        bool isSheepMarket = _victim == sheepMarket;

        if(isSheepMarket) {
            mintPercent = 0;
        } 

        ISheep(sheep).eatSheep(_victim, _sheepToEat, msg.sender,mintPercent);

        if(isSheepMarket) {
            IPair(sheepMarket).sync();
        }
    }

    ///////////////////////////////////////
    /////ROYALTY FUNCTIONS/////////////////
    ///////////////////////////////////////

    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) external view returns (
            address receiver,
            uint256 royaltyAmount
        ) {
            receiver = ISheep(sheep).owner();
            royaltyAmount = _salePrice * 500 / 10000;
    }

    // Returns the static URI for all tokens
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        return _staticTokenURI;
    }

    // Sets a new static URI (onlyOwner)
    function setTokenURI(string memory newURI) public onlyOwner {
        _staticTokenURI = newURI;
    }

    ///////////////////////////////////////
    /////OWNER FUNCTIONS/////////////////
    ///////////////////////////////////////

    function toggleCanBeEaten(address _victim) public onlyOwner {
        canNotBeEaten[_victim] = !canNotBeEaten[_victim];
    }

}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_sheep","type":"address"},{"internalType":"address","name":"_sheepDog","type":"address"},{"internalType":"address","name":"_sheepMarket","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"cryWolf","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"victim","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"sheepEaten","type":"event"},{"inputs":[],"name":"DAY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"HUNDRED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ONE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WEEK","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"canNotBeEaten","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_victim","type":"address"},{"internalType":"uint256","name":"_wolfID","type":"uint256"}],"name":"eatSheep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"eatenFromMarket","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWolf","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"hunger","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"hungry","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mating","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sheep","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sheepDog","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sheepMarket","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"starved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"address","name":"_victim","type":"address"}],"name":"toggleCanBeEaten","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wGasToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

6080604052670de0b6b3a7640000600d5560006013553480156200002257600080fd5b506040516200282a3803806200282a8339810160408190526200004591620002e7565b604051806040016040528060048152602001632bb7b63360e11b815250604051806040016040528060048152602001632ba7a62360e11b81525081600090805190602001906200009792919062000224565b508051620000ad90600190602084019062000224565b505050620000ca620000c4620001a460201b60201c565b620001a8565b600c80546001600160a01b0319166001600160a01b0385169081179091556040805163e46ba78b60e01b8152905163e46ba78b916004808201926020929091908290030181865afa15801562000124573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200014a919062000331565b601480546001600160a01b03199081166001600160a01b03938416179091556015805482169483169485179055600093845260176020526040909320805460ff191660011790556016805490931691161790555062000392565b3390565b600b80546001600160a01b0319169055620001cf81620001d2602090811b6200122a17901c565b50565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620002329062000356565b90600052602060002090601f016020900481019282620002565760008555620002a1565b82601f106200027157805160ff1916838001178555620002a1565b82800160010185558215620002a1579182015b82811115620002a157825182559160200191906001019062000284565b50620002af929150620002b3565b5090565b5b80821115620002af5760008155600101620002b4565b80516001600160a01b0381168114620002e257600080fd5b919050565b600080600060608486031215620002fd57600080fd5b6200030884620002ca565b92506200031860208501620002ca565b91506200032860408501620002ca565b90509250925092565b6000602082840312156200034457600080fd5b6200034f82620002ca565b9392505050565b600181811c908216806200036b57607f821691505b6020821081036200038c57634e487b7160e01b600052602260045260246000fd5b50919050565b61248880620003a26000396000f3fe608060405234801561001057600080fd5b506004361061025e5760003560e01c80638da5cb5b11610146578063c87b56dd116100c3578063e46ba78b11610087578063e46ba78b14610568578063e985e9c51461057b578063ee2f3a05146105b7578063f2fde38b146105c6578063f4359ce5146105d9578063f85fc0ab146105e357600080fd5b8063c87b56dd146104fe578063d3b136d214610511578063db56da4014610524578063e0df5b6f14610544578063e30c39781461055757600080fd5b8063b71495691161010a578063b714956914610486578063b88d4fde146104a9578063b8f14915146104bc578063c2ee3a08146104dc578063c64a5051146104eb57600080fd5b80638da5cb5b1461044957806395d89b411461045a578063a22cb46514610462578063b3be10e314610475578063b4dac3331461047d57600080fd5b80633ea73d5d116101df5780636352211e116101a35780636352211e146103ed57806370a0823114610400578063715018a61461041357806379ba50971461041b57806383289c821461042357806389f10d901461043657600080fd5b80633ea73d5d1461036757806342842e0e14610387578063486e66da1461039a5780634f6ccce7146103ba5780635660f851146103cd57600080fd5b806323b872dd1161022657806323b872dd146102f257806327cfe856146103055780632a55205a1461030f5780632baa0e97146103415780632f745c591461035457600080fd5b806301ffc9a71461026357806306fdde031461028b578063081812fc146102a0578063095ea7b3146102cb57806318160ddd146102e0575b600080fd5b610276610271366004611ec6565b6105f3565b60405190151581526020015b60405180910390f35b61029361061e565b6040516102829190611f37565b6102b36102ae366004611f4a565b6106b0565b6040516001600160a01b039091168152602001610282565b6102de6102d9366004611f78565b6106d7565b005b6008545b604051908152602001610282565b6102de610300366004611fa4565b6107f1565b6102e46201518081565b61032261031d366004611fe5565b610822565b604080516001600160a01b039093168352602083019190915201610282565b6016546102b3906001600160a01b031681565b6102e4610362366004611f78565b6108c0565b6102e4610375366004611f4a565b600e6020526000908152604090205481565b6102de610395366004611fa4565b610956565b6102e46103a8366004611f4a565b600f6020526000908152604090205481565b6102e46103c8366004611f4a565b610971565b6102e46103db366004612007565b60126020526000908152604090205481565b6102b36103fb366004611f4a565b610a04565b6102e461040e366004612007565b610a64565b6102de610aea565b6102de610afe565b6102de610431366004611f78565b610b78565b600c546102b3906001600160a01b031681565b600a546001600160a01b03166102b3565b610293610e07565b6102de610470366004612032565b610e16565b6102de610e25565b6102e4600d5481565b610276610494366004612007565b60176020526000908152604090205460ff1681565b6102de6104b73660046120f7565b611024565b6102e46104ca366004611f4a565b60116020526000908152604090205481565b6102e4670de0b6b3a764000081565b6102de6104f9366004612007565b61105c565b61029361050c366004611f4a565b61108d565b6015546102b3906001600160a01b031681565b6102e4610532366004611f4a565b60106020526000908152604090205481565b6102de610552366004612177565b61119e565b600b546001600160a01b03166102b3565b6014546102b3906001600160a01b031681565b6102766105893660046121c0565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102e4678ac7230489e8000081565b6102de6105d4366004612007565b6111b9565b6102e462093a8081565b6102e468056bc75e2d6310000081565b60006001600160e01b0319821663780e9d6360e01b148061061857506106188261127c565b92915050565b60606000805461062d906121ee565b80601f0160208091040260200160405190810160405280929190818152602001828054610659906121ee565b80156106a65780601f1061067b576101008083540402835291602001916106a6565b820191906000526020600020905b81548152906001019060200180831161068957829003601f168201915b5050505050905090565b60006106bb826112cc565b506000908152600460205260409020546001600160a01b031690565b60006106e282610a04565b9050806001600160a01b0316836001600160a01b0316036107545760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b038216148061077057506107708133610589565b6107e25760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000606482015260840161074b565b6107ec838361132b565b505050565b6107fb3382611399565b6108175760405162461bcd60e51b815260040161074b90612228565b6107ec838383611418565b600080600c60009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610878573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061089c9190612275565b91506127106108ad846101f46122a8565b6108b791906122c7565b90509250929050565b60006108cb83610a64565b821061092d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161074b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6107ec83838360405180602001604052806000815250611024565b600061097c60085490565b82106109df5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161074b565b600882815481106109f2576109f26122e9565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806106185760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161074b565b60006001600160a01b038216610ace5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161074b565b506001600160a01b031660009081526003602052604090205490565b610af2611589565b610afc60006115e3565b565b600b5433906001600160a01b03168114610b6c5760405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206044820152683732bb9037bbb732b960b91b606482015260840161074b565b610b75816115e3565b50565b610b823382611399565b610bc75760405162461bcd60e51b81526020600482015260166024820152753cb7ba903237b73a1037bbb7103a3434b9903bb7b63360511b604482015260640161074b565b6000818152600e60205260409020544210610c185760405162461bcd60e51b81526020600482015260116024820152701e5bdd5c881ddbdb19881cdd185c9d9959607a1b604482015260640161074b565b6000818152600f60205260409020544211610c755760405162461bcd60e51b815260206004820152601b60248201527f796f757220776f6c66206973206e6f742068756e677279207965740000000000604482015260640161074b565b6000818152601160205260409020546002101580610ca157506016546001600160a01b03838116911614155b610ced5760405162461bcd60e51b815260206004820181905260248201527f796f752065617420746f6f206d7563682066726f6d20746865206d61726b6574604482015260640161074b565b600081815260106020526040902054610d0683826115fc565b600082815260106020526040902054610d2890670de0b6b3a7640000906122ff565b600083815260106020526040902055610d4462015180426122ff565b6000838152600f6020526040902055610d6062093a80426122ff565b6000838152600e60205260409020556016546001600160a01b0390811690841603610daf576000828152601160205260408120805460019290610da49084906122ff565b90915550610dbf9050565b6000828152601160205260408120555b826001600160a01b03167fba481b677f2fba7935dcabd413d044804f9491caee4109873893c4524cfc07d882604051610dfa91815260200190565b60405180910390a2505050565b60606001805461062d906121ee565b610e2133838361176b565b5050565b600c54600d54604051634b3e59c160e11b81523360048201526024810191909152306044820152600060648201526001600160a01b039091169063967cb38290608401600060405180830381600087803b158015610e8257600080fd5b505af1158015610e96573d6000803e3d6000fd5b5050600d546040519081523392507fba481b677f2fba7935dcabd413d044804f9491caee4109873893c4524cfc07d8915060200160405180910390a2670de0b6b3a7640000600d54610ee891906122ff565b600d556014546015546040516323b872dd60e01b81523360048201526001600160a01b03918216602482015268056bc75e2d6310000060448201529116906323b872dd906064016020604051808303816000875af1158015610f4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f729190612317565b50610f7f33601354611839565b60135460405190815233907f802faf56f3a8767918e7d95051fd7c8c30bcabac4bf1bf0a30d4265fb2929a189060200160405180910390a2610fc462093a80426122ff565b6013546000908152600e6020526040902055610fe362015180426122ff565b601380546000908152600f6020908152604080832094909455825482526010905291909120670de0b6b3a764000090555461101f9060016122ff565b601355565b61102e3383611399565b61104a5760405162461bcd60e51b815260040161074b90612228565b61105684848484611853565b50505050565b611064611589565b6001600160a01b03166000908152601760205260409020805460ff19811660ff90911615179055565b6000818152600260205260409020546060906001600160a01b031661110c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161074b565b60188054611119906121ee565b80601f0160208091040260200160405190810160405280929190818152602001828054611145906121ee565b80156111925780601f1061116757610100808354040283529160200191611192565b820191906000526020600020905b81548152906001019060200180831161117557829003601f168201915b50505050509050919050565b6111a6611589565b8051610e21906018906020840190611e17565b6111c1611589565b600b80546001600160a01b0383166001600160a01b031990911681179091556111f2600a546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160e01b031982166380ac58cd60e01b14806112ad57506001600160e01b03198216635b5e139f60e01b145b8061061857506301ffc9a760e01b6001600160e01b0319831614610618565b6000818152600260205260409020546001600160a01b0316610b755760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161074b565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061136082610a04565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806113a583610a04565b9050806001600160a01b0316846001600160a01b031614806113ec57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806114105750836001600160a01b0316611405846106b0565b6001600160a01b0316145b949350505050565b826001600160a01b031661142b82610a04565b6001600160a01b0316146114515760405162461bcd60e51b815260040161074b90612334565b6001600160a01b0382166114b35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161074b565b6114c08383836001611886565b826001600160a01b03166114d382610a04565b6001600160a01b0316146114f95760405162461bcd60e51b815260040161074b90612334565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a546001600160a01b03163314610afc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161074b565b600b80546001600160a01b0319169055610b758161122a565b6001600160a01b03821660009081526017602052604090205460ff16156116655760405162461bcd60e51b815260206004820152601d60248201527f63616e206e6f74206561742066726f6d20746869732061646472657373000000604482015260640161074b565b6016546019906001600160a01b03848116911614801561168457600091505b600c54604051634b3e59c160e11b81526001600160a01b03868116600483015260248201869052336044830152606482018590529091169063967cb38290608401600060405180830381600087803b1580156116df57600080fd5b505af11580156116f3573d6000803e3d6000fd5b50505050801561105657601660009054906101000a90046001600160a01b03166001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561174d57600080fd5b505af1158015611761573d6000803e3d6000fd5b5050505050505050565b816001600160a01b0316836001600160a01b0316036117cc5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161074b565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b610e218282604051806020016040528060008152506119ba565b61185e848484611418565b61186a848484846119ed565b6110565760405162461bcd60e51b815260040161074b90612379565b60018111156118f55760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b606482015260840161074b565b816001600160a01b0385166119515761194c81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611974565b836001600160a01b0316856001600160a01b031614611974576119748582611aee565b6001600160a01b0384166119905761198b81611b8b565b6119b3565b846001600160a01b0316846001600160a01b0316146119b3576119b38482611c3a565b5050505050565b6119c48383611c7e565b6119d160008484846119ed565b6107ec5760405162461bcd60e51b815260040161074b90612379565b60006001600160a01b0384163b15611ae357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a319033908990889088906004016123cb565b6020604051808303816000875af1925050508015611a6c575060408051601f3d908101601f19168201909252611a6991810190612408565b60015b611ac9573d808015611a9a576040519150601f19603f3d011682016040523d82523d6000602084013e611a9f565b606091505b508051600003611ac15760405162461bcd60e51b815260040161074b90612379565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611410565b506001949350505050565b60006001611afb84610a64565b611b059190612425565b600083815260076020526040902054909150808214611b58576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611b9d90600190612425565b60008381526009602052604081205460088054939450909284908110611bc557611bc56122e9565b906000526020600020015490508060088381548110611be657611be66122e9565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611c1e57611c1e61243c565b6001900381819060005260206000200160009055905550505050565b6000611c4583610a64565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611cd45760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161074b565b6000818152600260205260409020546001600160a01b031615611d395760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161074b565b611d47600083836001611886565b6000818152600260205260409020546001600160a01b031615611dac5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161074b565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611e23906121ee565b90600052602060002090601f016020900481019282611e455760008555611e8b565b82601f10611e5e57805160ff1916838001178555611e8b565b82800160010185558215611e8b579182015b82811115611e8b578251825591602001919060010190611e70565b50611e97929150611e9b565b5090565b5b80821115611e975760008155600101611e9c565b6001600160e01b031981168114610b7557600080fd5b600060208284031215611ed857600080fd5b8135611ee381611eb0565b9392505050565b6000815180845260005b81811015611f1057602081850181015186830182015201611ef4565b81811115611f22576000602083870101525b50601f01601f19169290920160200192915050565b602081526000611ee36020830184611eea565b600060208284031215611f5c57600080fd5b5035919050565b6001600160a01b0381168114610b7557600080fd5b60008060408385031215611f8b57600080fd5b8235611f9681611f63565b946020939093013593505050565b600080600060608486031215611fb957600080fd5b8335611fc481611f63565b92506020840135611fd481611f63565b929592945050506040919091013590565b60008060408385031215611ff857600080fd5b50508035926020909101359150565b60006020828403121561201957600080fd5b8135611ee381611f63565b8015158114610b7557600080fd5b6000806040838503121561204557600080fd5b823561205081611f63565b9150602083013561206081612024565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561209c5761209c61206b565b604051601f8501601f19908116603f011681019082821181831017156120c4576120c461206b565b816040528093508581528686860111156120dd57600080fd5b858560208301376000602087830101525050509392505050565b6000806000806080858703121561210d57600080fd5b843561211881611f63565b9350602085013561212881611f63565b925060408501359150606085013567ffffffffffffffff81111561214b57600080fd5b8501601f8101871361215c57600080fd5b61216b87823560208401612081565b91505092959194509250565b60006020828403121561218957600080fd5b813567ffffffffffffffff8111156121a057600080fd5b8201601f810184136121b157600080fd5b61141084823560208401612081565b600080604083850312156121d357600080fd5b82356121de81611f63565b9150602083013561206081611f63565b600181811c9082168061220257607f821691505b60208210810361222257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b60006020828403121561228757600080fd5b8151611ee381611f63565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156122c2576122c2612292565b500290565b6000826122e457634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b6000821982111561231257612312612292565b500190565b60006020828403121561232957600080fd5b8151611ee381612024565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123fe90830184611eea565b9695505050505050565b60006020828403121561241a57600080fd5b8151611ee381611eb0565b60008282101561243757612437612292565b500390565b634e487b7160e01b600052603160045260246000fdfea26469706673582212203b49b3f6b79252c168dbb00625f52604a19d7b78b31042ef52c55ee04c64e20564736f6c634300080d00330000000000000000000000007bf26df0e9db4f70f286c39a9cd3a77cb7407aa4000000000000000000000000a3b5f40a5719208b507f658a11fb314ef5e2c0e2000000000000000000000000e0707bd1e3800067447282ea95ce5b41d7e493d1

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061025e5760003560e01c80638da5cb5b11610146578063c87b56dd116100c3578063e46ba78b11610087578063e46ba78b14610568578063e985e9c51461057b578063ee2f3a05146105b7578063f2fde38b146105c6578063f4359ce5146105d9578063f85fc0ab146105e357600080fd5b8063c87b56dd146104fe578063d3b136d214610511578063db56da4014610524578063e0df5b6f14610544578063e30c39781461055757600080fd5b8063b71495691161010a578063b714956914610486578063b88d4fde146104a9578063b8f14915146104bc578063c2ee3a08146104dc578063c64a5051146104eb57600080fd5b80638da5cb5b1461044957806395d89b411461045a578063a22cb46514610462578063b3be10e314610475578063b4dac3331461047d57600080fd5b80633ea73d5d116101df5780636352211e116101a35780636352211e146103ed57806370a0823114610400578063715018a61461041357806379ba50971461041b57806383289c821461042357806389f10d901461043657600080fd5b80633ea73d5d1461036757806342842e0e14610387578063486e66da1461039a5780634f6ccce7146103ba5780635660f851146103cd57600080fd5b806323b872dd1161022657806323b872dd146102f257806327cfe856146103055780632a55205a1461030f5780632baa0e97146103415780632f745c591461035457600080fd5b806301ffc9a71461026357806306fdde031461028b578063081812fc146102a0578063095ea7b3146102cb57806318160ddd146102e0575b600080fd5b610276610271366004611ec6565b6105f3565b60405190151581526020015b60405180910390f35b61029361061e565b6040516102829190611f37565b6102b36102ae366004611f4a565b6106b0565b6040516001600160a01b039091168152602001610282565b6102de6102d9366004611f78565b6106d7565b005b6008545b604051908152602001610282565b6102de610300366004611fa4565b6107f1565b6102e46201518081565b61032261031d366004611fe5565b610822565b604080516001600160a01b039093168352602083019190915201610282565b6016546102b3906001600160a01b031681565b6102e4610362366004611f78565b6108c0565b6102e4610375366004611f4a565b600e6020526000908152604090205481565b6102de610395366004611fa4565b610956565b6102e46103a8366004611f4a565b600f6020526000908152604090205481565b6102e46103c8366004611f4a565b610971565b6102e46103db366004612007565b60126020526000908152604090205481565b6102b36103fb366004611f4a565b610a04565b6102e461040e366004612007565b610a64565b6102de610aea565b6102de610afe565b6102de610431366004611f78565b610b78565b600c546102b3906001600160a01b031681565b600a546001600160a01b03166102b3565b610293610e07565b6102de610470366004612032565b610e16565b6102de610e25565b6102e4600d5481565b610276610494366004612007565b60176020526000908152604090205460ff1681565b6102de6104b73660046120f7565b611024565b6102e46104ca366004611f4a565b60116020526000908152604090205481565b6102e4670de0b6b3a764000081565b6102de6104f9366004612007565b61105c565b61029361050c366004611f4a565b61108d565b6015546102b3906001600160a01b031681565b6102e4610532366004611f4a565b60106020526000908152604090205481565b6102de610552366004612177565b61119e565b600b546001600160a01b03166102b3565b6014546102b3906001600160a01b031681565b6102766105893660046121c0565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102e4678ac7230489e8000081565b6102de6105d4366004612007565b6111b9565b6102e462093a8081565b6102e468056bc75e2d6310000081565b60006001600160e01b0319821663780e9d6360e01b148061061857506106188261127c565b92915050565b60606000805461062d906121ee565b80601f0160208091040260200160405190810160405280929190818152602001828054610659906121ee565b80156106a65780601f1061067b576101008083540402835291602001916106a6565b820191906000526020600020905b81548152906001019060200180831161068957829003601f168201915b5050505050905090565b60006106bb826112cc565b506000908152600460205260409020546001600160a01b031690565b60006106e282610a04565b9050806001600160a01b0316836001600160a01b0316036107545760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b038216148061077057506107708133610589565b6107e25760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000606482015260840161074b565b6107ec838361132b565b505050565b6107fb3382611399565b6108175760405162461bcd60e51b815260040161074b90612228565b6107ec838383611418565b600080600c60009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610878573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061089c9190612275565b91506127106108ad846101f46122a8565b6108b791906122c7565b90509250929050565b60006108cb83610a64565b821061092d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161074b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6107ec83838360405180602001604052806000815250611024565b600061097c60085490565b82106109df5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161074b565b600882815481106109f2576109f26122e9565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806106185760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161074b565b60006001600160a01b038216610ace5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161074b565b506001600160a01b031660009081526003602052604090205490565b610af2611589565b610afc60006115e3565b565b600b5433906001600160a01b03168114610b6c5760405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206044820152683732bb9037bbb732b960b91b606482015260840161074b565b610b75816115e3565b50565b610b823382611399565b610bc75760405162461bcd60e51b81526020600482015260166024820152753cb7ba903237b73a1037bbb7103a3434b9903bb7b63360511b604482015260640161074b565b6000818152600e60205260409020544210610c185760405162461bcd60e51b81526020600482015260116024820152701e5bdd5c881ddbdb19881cdd185c9d9959607a1b604482015260640161074b565b6000818152600f60205260409020544211610c755760405162461bcd60e51b815260206004820152601b60248201527f796f757220776f6c66206973206e6f742068756e677279207965740000000000604482015260640161074b565b6000818152601160205260409020546002101580610ca157506016546001600160a01b03838116911614155b610ced5760405162461bcd60e51b815260206004820181905260248201527f796f752065617420746f6f206d7563682066726f6d20746865206d61726b6574604482015260640161074b565b600081815260106020526040902054610d0683826115fc565b600082815260106020526040902054610d2890670de0b6b3a7640000906122ff565b600083815260106020526040902055610d4462015180426122ff565b6000838152600f6020526040902055610d6062093a80426122ff565b6000838152600e60205260409020556016546001600160a01b0390811690841603610daf576000828152601160205260408120805460019290610da49084906122ff565b90915550610dbf9050565b6000828152601160205260408120555b826001600160a01b03167fba481b677f2fba7935dcabd413d044804f9491caee4109873893c4524cfc07d882604051610dfa91815260200190565b60405180910390a2505050565b60606001805461062d906121ee565b610e2133838361176b565b5050565b600c54600d54604051634b3e59c160e11b81523360048201526024810191909152306044820152600060648201526001600160a01b039091169063967cb38290608401600060405180830381600087803b158015610e8257600080fd5b505af1158015610e96573d6000803e3d6000fd5b5050600d546040519081523392507fba481b677f2fba7935dcabd413d044804f9491caee4109873893c4524cfc07d8915060200160405180910390a2670de0b6b3a7640000600d54610ee891906122ff565b600d556014546015546040516323b872dd60e01b81523360048201526001600160a01b03918216602482015268056bc75e2d6310000060448201529116906323b872dd906064016020604051808303816000875af1158015610f4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f729190612317565b50610f7f33601354611839565b60135460405190815233907f802faf56f3a8767918e7d95051fd7c8c30bcabac4bf1bf0a30d4265fb2929a189060200160405180910390a2610fc462093a80426122ff565b6013546000908152600e6020526040902055610fe362015180426122ff565b601380546000908152600f6020908152604080832094909455825482526010905291909120670de0b6b3a764000090555461101f9060016122ff565b601355565b61102e3383611399565b61104a5760405162461bcd60e51b815260040161074b90612228565b61105684848484611853565b50505050565b611064611589565b6001600160a01b03166000908152601760205260409020805460ff19811660ff90911615179055565b6000818152600260205260409020546060906001600160a01b031661110c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161074b565b60188054611119906121ee565b80601f0160208091040260200160405190810160405280929190818152602001828054611145906121ee565b80156111925780601f1061116757610100808354040283529160200191611192565b820191906000526020600020905b81548152906001019060200180831161117557829003601f168201915b50505050509050919050565b6111a6611589565b8051610e21906018906020840190611e17565b6111c1611589565b600b80546001600160a01b0383166001600160a01b031990911681179091556111f2600a546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160e01b031982166380ac58cd60e01b14806112ad57506001600160e01b03198216635b5e139f60e01b145b8061061857506301ffc9a760e01b6001600160e01b0319831614610618565b6000818152600260205260409020546001600160a01b0316610b755760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161074b565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061136082610a04565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806113a583610a04565b9050806001600160a01b0316846001600160a01b031614806113ec57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806114105750836001600160a01b0316611405846106b0565b6001600160a01b0316145b949350505050565b826001600160a01b031661142b82610a04565b6001600160a01b0316146114515760405162461bcd60e51b815260040161074b90612334565b6001600160a01b0382166114b35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161074b565b6114c08383836001611886565b826001600160a01b03166114d382610a04565b6001600160a01b0316146114f95760405162461bcd60e51b815260040161074b90612334565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a546001600160a01b03163314610afc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161074b565b600b80546001600160a01b0319169055610b758161122a565b6001600160a01b03821660009081526017602052604090205460ff16156116655760405162461bcd60e51b815260206004820152601d60248201527f63616e206e6f74206561742066726f6d20746869732061646472657373000000604482015260640161074b565b6016546019906001600160a01b03848116911614801561168457600091505b600c54604051634b3e59c160e11b81526001600160a01b03868116600483015260248201869052336044830152606482018590529091169063967cb38290608401600060405180830381600087803b1580156116df57600080fd5b505af11580156116f3573d6000803e3d6000fd5b50505050801561105657601660009054906101000a90046001600160a01b03166001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561174d57600080fd5b505af1158015611761573d6000803e3d6000fd5b5050505050505050565b816001600160a01b0316836001600160a01b0316036117cc5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161074b565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b610e218282604051806020016040528060008152506119ba565b61185e848484611418565b61186a848484846119ed565b6110565760405162461bcd60e51b815260040161074b90612379565b60018111156118f55760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b606482015260840161074b565b816001600160a01b0385166119515761194c81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611974565b836001600160a01b0316856001600160a01b031614611974576119748582611aee565b6001600160a01b0384166119905761198b81611b8b565b6119b3565b846001600160a01b0316846001600160a01b0316146119b3576119b38482611c3a565b5050505050565b6119c48383611c7e565b6119d160008484846119ed565b6107ec5760405162461bcd60e51b815260040161074b90612379565b60006001600160a01b0384163b15611ae357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a319033908990889088906004016123cb565b6020604051808303816000875af1925050508015611a6c575060408051601f3d908101601f19168201909252611a6991810190612408565b60015b611ac9573d808015611a9a576040519150601f19603f3d011682016040523d82523d6000602084013e611a9f565b606091505b508051600003611ac15760405162461bcd60e51b815260040161074b90612379565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611410565b506001949350505050565b60006001611afb84610a64565b611b059190612425565b600083815260076020526040902054909150808214611b58576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611b9d90600190612425565b60008381526009602052604081205460088054939450909284908110611bc557611bc56122e9565b906000526020600020015490508060088381548110611be657611be66122e9565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611c1e57611c1e61243c565b6001900381819060005260206000200160009055905550505050565b6000611c4583610a64565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611cd45760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161074b565b6000818152600260205260409020546001600160a01b031615611d395760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161074b565b611d47600083836001611886565b6000818152600260205260409020546001600160a01b031615611dac5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161074b565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611e23906121ee565b90600052602060002090601f016020900481019282611e455760008555611e8b565b82601f10611e5e57805160ff1916838001178555611e8b565b82800160010185558215611e8b579182015b82811115611e8b578251825591602001919060010190611e70565b50611e97929150611e9b565b5090565b5b80821115611e975760008155600101611e9c565b6001600160e01b031981168114610b7557600080fd5b600060208284031215611ed857600080fd5b8135611ee381611eb0565b9392505050565b6000815180845260005b81811015611f1057602081850181015186830182015201611ef4565b81811115611f22576000602083870101525b50601f01601f19169290920160200192915050565b602081526000611ee36020830184611eea565b600060208284031215611f5c57600080fd5b5035919050565b6001600160a01b0381168114610b7557600080fd5b60008060408385031215611f8b57600080fd5b8235611f9681611f63565b946020939093013593505050565b600080600060608486031215611fb957600080fd5b8335611fc481611f63565b92506020840135611fd481611f63565b929592945050506040919091013590565b60008060408385031215611ff857600080fd5b50508035926020909101359150565b60006020828403121561201957600080fd5b8135611ee381611f63565b8015158114610b7557600080fd5b6000806040838503121561204557600080fd5b823561205081611f63565b9150602083013561206081612024565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561209c5761209c61206b565b604051601f8501601f19908116603f011681019082821181831017156120c4576120c461206b565b816040528093508581528686860111156120dd57600080fd5b858560208301376000602087830101525050509392505050565b6000806000806080858703121561210d57600080fd5b843561211881611f63565b9350602085013561212881611f63565b925060408501359150606085013567ffffffffffffffff81111561214b57600080fd5b8501601f8101871361215c57600080fd5b61216b87823560208401612081565b91505092959194509250565b60006020828403121561218957600080fd5b813567ffffffffffffffff8111156121a057600080fd5b8201601f810184136121b157600080fd5b61141084823560208401612081565b600080604083850312156121d357600080fd5b82356121de81611f63565b9150602083013561206081611f63565b600181811c9082168061220257607f821691505b60208210810361222257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b60006020828403121561228757600080fd5b8151611ee381611f63565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156122c2576122c2612292565b500290565b6000826122e457634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b6000821982111561231257612312612292565b500190565b60006020828403121561232957600080fd5b8151611ee381612024565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123fe90830184611eea565b9695505050505050565b60006020828403121561241a57600080fd5b8151611ee381611eb0565b60008282101561243757612437612292565b500390565b634e487b7160e01b600052603160045260246000fdfea26469706673582212203b49b3f6b79252c168dbb00625f52604a19d7b78b31042ef52c55ee04c64e20564736f6c634300080d0033

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

0000000000000000000000007bf26df0e9db4f70f286c39a9cd3a77cb7407aa4000000000000000000000000a3b5f40a5719208b507f658a11fb314ef5e2c0e2000000000000000000000000e0707bd1e3800067447282ea95ce5b41d7e493d1

-----Decoded View---------------
Arg [0] : _sheep (address): 0x7bf26dF0E9Db4F70f286c39A9cd3A77Cb7407aa4
Arg [1] : _sheepDog (address): 0xa3b5f40a5719208B507F658a11Fb314Ef5e2c0e2
Arg [2] : _sheepMarket (address): 0xe0707Bd1e3800067447282eA95cE5B41D7E493d1

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000007bf26df0e9db4f70f286c39a9cd3a77cb7407aa4
Arg [1] : 000000000000000000000000a3b5f40a5719208b507f658a11fb314ef5e2c0e2
Arg [2] : 000000000000000000000000e0707bd1e3800067447282ea95ce5b41d7e493d1


Deployed Bytecode Sourcemap

68181:4724:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62084:224;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;62084:224:0;;;;;;;;45817:100;;;:::i;:::-;;;;;;;:::i;47329:171::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1643:32:1;;;1625:51;;1613:2;1598:18;47329:171:0;1479:203:1;46847:416:0;;;;;;:::i;:::-;;:::i;:::-;;62724:113;62812:10;:17;62724:113;;;2289:25:1;;;2277:2;2262:18;62724:113:0;2143:177:1;48029:335:0;;;;;;:::i;:::-;;:::i;68378:35::-;;68408:5;68378:35;;71937:270;;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3231:32:1;;;3213:51;;3295:2;3280:18;;3273:34;;;;3186:18;71937:270:0;3039:274:1;68978:26:0;;;;;-1:-1:-1;;;;;68978:26:0;;;62392:256;;;;;;:::i;:::-;;:::i;68527:42::-;;;;;;:::i;:::-;;;;;;;;;;;;;;48435:185;;;;;;:::i;:::-;;:::i;68594:41::-;;;;;;:::i;:::-;;;;;;;;;;;;;;62914:233;;;;;;:::i;:::-;;:::i;68824:40::-;;;;;;:::i;:::-;;;;;;;;;;;;;;45527:223;;;;;;:::i;:::-;;:::i;45258:207::-;;;;;;:::i;:::-;;:::i;30491:103::-;;;:::i;41456:210::-;;;:::i;70372:891::-;;;;;;:::i;:::-;;:::i;68466:20::-;;;;;-1:-1:-1;;;;;68466:20:0;;;29843:87;29916:6;;-1:-1:-1;;;;;29916:6:0;29843:87;;45986:104;;;:::i;47572:155::-;;;;;;:::i;:::-;;:::i;69745:534::-;;;:::i;68493:27::-;;;;;;69013:45;;;;;;:::i;:::-;;;;;;;;;;;;;;;;48691:322;;;;;;:::i;:::-;;:::i;68739:50::-;;;;;;:::i;:::-;;;;;;;;;;;;;;68236:38;;68266:8;68236:38;;72773:127;;;;;;:::i;:::-;;:::i;72261:216::-;;;;;;:::i;:::-;;:::i;68948:23::-;;;;;-1:-1:-1;;;;;68948:23:0;;;68660:41;;;;;;:::i;:::-;;;;;;;;;;;;;;72527:103;;;;;;:::i;:::-;;:::i;40544:101::-;40624:13;;-1:-1:-1;;;;;40624:13:0;40544:101;;68917:24;;;;;-1:-1:-1;;;;;68917:24:0;;;47798:164;;;;;;:::i;:::-;-1:-1:-1;;;;;47919:25:0;;;47895:4;47919:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;47798:164;68281:39;;68311:9;68281:39;;40844:181;;;;;;:::i;:::-;;:::i;68420:37::-;;68451:6;68420:37;;68327:44;;68361:10;68327:44;;62084:224;62186:4;-1:-1:-1;;;;;;62210:50:0;;-1:-1:-1;;;62210:50:0;;:90;;;62264:36;62288:11;62264:23;:36::i;:::-;62203:97;62084:224;-1:-1:-1;;62084:224:0:o;45817:100::-;45871:13;45904:5;45897:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45817:100;:::o;47329:171::-;47405:7;47425:23;47440:7;47425:14;:23::i;:::-;-1:-1:-1;47468:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;47468:24:0;;47329:171::o;46847:416::-;46928:13;46944:23;46959:7;46944:14;:23::i;:::-;46928:39;;46992:5;-1:-1:-1;;;;;46986:11:0;:2;-1:-1:-1;;;;;46986:11:0;;46978:57;;;;-1:-1:-1;;;46978:57:0;;7082:2:1;46978:57:0;;;7064:21:1;7121:2;7101:18;;;7094:30;7160:34;7140:18;;;7133:62;-1:-1:-1;;;7211:18:1;;;7204:31;7252:19;;46978:57:0;;;;;;;;;14115:10;-1:-1:-1;;;;;47070:21:0;;;;:62;;-1:-1:-1;47095:37:0;47112:5;14115:10;47798:164;:::i;47095:37::-;47048:173;;;;-1:-1:-1;;;47048:173:0;;7484:2:1;47048:173:0;;;7466:21:1;7523:2;7503:18;;;7496:30;7562:34;7542:18;;;7535:62;7633:31;7613:18;;;7606:59;7682:19;;47048:173:0;7282:425:1;47048:173:0;47234:21;47243:2;47247:7;47234:8;:21::i;:::-;46917:346;46847:416;;:::o;48029:335::-;48224:41;14115:10;48257:7;48224:18;:41::i;:::-;48216:99;;;;-1:-1:-1;;;48216:99:0;;;;;;;:::i;:::-;48328:28;48338:4;48344:2;48348:7;48328:9;:28::i;71937:270::-;72033:16;72064:21;72130:5;;;;;;;;;-1:-1:-1;;;;;72130:5:0;-1:-1:-1;;;;;72123:19:0;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;72112:32;-1:-1:-1;72194:5:0;72175:16;:10;72188:3;72175:16;:::i;:::-;:24;;;;:::i;:::-;72159:40;;71937:270;;;;;:::o;62392:256::-;62489:7;62525:23;62542:5;62525:16;:23::i;:::-;62517:5;:31;62509:87;;;;-1:-1:-1;;;62509:87:0;;9111:2:1;62509:87:0;;;9093:21:1;9150:2;9130:18;;;9123:30;9189:34;9169:18;;;9162:62;-1:-1:-1;;;9240:18:1;;;9233:41;9291:19;;62509:87:0;8909:407:1;62509:87:0;-1:-1:-1;;;;;;62614:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;62392:256::o;48435:185::-;48573:39;48590:4;48596:2;48600:7;48573:39;;;;;;;;;;;;:16;:39::i;62914:233::-;62989:7;63025:30;62812:10;:17;;62724:113;63025:30;63017:5;:38;63009:95;;;;-1:-1:-1;;;63009:95:0;;9523:2:1;63009:95:0;;;9505:21:1;9562:2;9542:18;;;9535:30;9601:34;9581:18;;;9574:62;-1:-1:-1;;;9652:18:1;;;9645:42;9704:19;;63009:95:0;9321:408:1;63009:95:0;63122:10;63133:5;63122:17;;;;;;;;:::i;:::-;;;;;;;;;63115:24;;62914:233;;;:::o;45527:223::-;45599:7;50414:16;;;:7;:16;;;;;;-1:-1:-1;;;;;50414:16:0;;45663:56;;;;-1:-1:-1;;;45663:56:0;;10068:2:1;45663:56:0;;;10050:21:1;10107:2;10087:18;;;10080:30;-1:-1:-1;;;10126:18:1;;;10119:54;10190:18;;45663:56:0;9866:348:1;45258:207:0;45330:7;-1:-1:-1;;;;;45358:19:0;;45350:73;;;;-1:-1:-1;;;45350:73:0;;10421:2:1;45350:73:0;;;10403:21:1;10460:2;10440:18;;;10433:30;10499:34;10479:18;;;10472:62;-1:-1:-1;;;10550:18:1;;;10543:39;10599:19;;45350:73:0;10219:405:1;45350:73:0;-1:-1:-1;;;;;;45441:16:0;;;;;:9;:16;;;;;;;45258:207::o;30491:103::-;29729:13;:11;:13::i;:::-;30556:30:::1;30583:1;30556:18;:30::i;:::-;30491:103::o:0;41456:210::-;40624:13;;14115:10;;-1:-1:-1;;;;;40624:13:0;41551:24;;41543:78;;;;-1:-1:-1;;;41543:78:0;;10831:2:1;41543:78:0;;;10813:21:1;10870:2;10850:18;;;10843:30;10909:34;10889:18;;;10882:62;-1:-1:-1;;;10960:18:1;;;10953:39;11009:19;;41543:78:0;10629:405:1;41543:78:0;41632:26;41651:6;41632:18;:26::i;:::-;41492:174;41456:210::o;70372:891::-;70450:39;70469:10;70481:7;70450:18;:39::i;:::-;70442:74;;;;-1:-1:-1;;;70442:74:0;;11241:2:1;70442:74:0;;;11223:21:1;11280:2;11260:18;;;11253:30;-1:-1:-1;;;11299:18:1;;;11292:52;11361:18;;70442:74:0;11039:346:1;70442:74:0;70553:16;;;;:7;:16;;;;;;70535:15;:34;70527:64;;;;-1:-1:-1;;;70527:64:0;;11592:2:1;70527:64:0;;;11574:21:1;11631:2;11611:18;;;11604:30;-1:-1:-1;;;11650:18:1;;;11643:47;11707:18;;70527:64:0;11390:341:1;70527:64:0;70628:15;;;;:6;:15;;;;;;70610;:33;70602:73;;;;-1:-1:-1;;;70602:73:0;;11938:2:1;70602:73:0;;;11920:21:1;11977:2;11957:18;;;11950:30;12016:29;11996:18;;;11989:57;12063:18;;70602:73:0;11736:351:1;70602:73:0;70694:24;;;;:15;:24;;;;;;70722:1;-1:-1:-1;70694:29:0;;:55;;-1:-1:-1;70738:11:0;;-1:-1:-1;;;;;70727:22:0;;;70738:11;;70727:22;;70694:55;70686:99;;;;-1:-1:-1;;;70686:99:0;;12294:2:1;70686:99:0;;;12276:21:1;;;12313:18;;;12306:30;12372:34;12352:18;;;12345:62;12424:18;;70686:99:0;12092:356:1;70686:99:0;70796:18;70817:15;;;:6;:15;;;;;;70845:31;70856:7;70817:15;70845:10;:31::i;:::-;70907:15;;;;:6;:15;;;;;;:21;;68266:8;;70907:21;:::i;:::-;70889:15;;;;:6;:15;;;;;:39;70957:21;68408:5;70957:15;:21;:::i;:::-;70939:15;;;;:6;:15;;;;;:39;71017:22;68451:6;71017:15;:22;:::i;:::-;70998:16;;;;:7;:16;;;;;:41;71077:11;;-1:-1:-1;;;;;71077:11:0;;;71066:22;;;;71062:145;;71105:24;;;;:15;:24;;;;;:29;;71133:1;;71105:24;:29;;71133:1;;71105:29;:::i;:::-;;;;-1:-1:-1;71062:145:0;;-1:-1:-1;71062:145:0;;71194:1;71167:24;;;:15;:24;;;;;:28;71062:145;71235:7;-1:-1:-1;;;;;71224:31:0;;71244:10;71224:31;;;;2289:25:1;;2277:2;2262:18;;2143:177;71224:31:0;;;;;;;;70431:832;70372:891;;:::o;45986:104::-;46042:13;46075:7;46068:14;;;;;:::i;47572:155::-;47667:52;14115:10;47700:8;47710;47667:18;:52::i;:::-;47572:155;;:::o;69745:534::-;69789:5;;69817:6;;69782:59;;-1:-1:-1;;;69782:59:0;;69805:10;69782:59;;;12863:34:1;12913:18;;;12906:34;;;;69833:4:0;12956:18:1;;;12949:43;69789:5:0;13008:18:1;;;13001:34;-1:-1:-1;;;;;69789:5:0;;;;69782:22;;12797:19:1;;69782:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;69880:6:0;;69857:30;;2289:25:1;;;69868:10:0;;-1:-1:-1;69857:30:0;;-1:-1:-1;2277:2:1;2262:18;69857:30:0;;;;;;;68266:8;69909:6;;:12;;;;:::i;:::-;69900:6;:21;69941:9;;69977:8;;69934:61;;-1:-1:-1;;;69934:61:0;;69965:10;69934:61;;;13286:34:1;-1:-1:-1;;;;;69977:8:0;;;13336:18:1;;;13329:43;68361:10:0;13388:18:1;;;13381:34;69941:9:0;;;69934:30;;13221:18:1;;69934:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;70034:29;70044:10;70056:6;;70034:9;:29::i;:::-;70099:6;;70079:27;;2289:25:1;;;70087:10:0;;70079:27;;2277:2:1;2262:18;70079:27:0;;;;;;;70137:22;68451:6;70137:15;:22;:::i;:::-;70127:6;;70119:15;;;;:7;:15;;;;;:40;70187:21;68408:5;70187:15;:21;:::i;:::-;70177:6;;;70170:14;;;;:6;:14;;;;;;;;:38;;;;70226:6;;70219:14;;:6;:14;;;;;;68266:8;70219:20;;70261:6;:10;;70270:1;70261:10;:::i;:::-;70252:6;:19;69745:534::o;48691:322::-;48865:41;14115:10;48898:7;48865:18;:41::i;:::-;48857:99;;;;-1:-1:-1;;;48857:99:0;;;;;;;:::i;:::-;48967:38;48981:4;48987:2;48991:7;49000:4;48967:13;:38::i;:::-;48691:322;;;;:::o;72773:127::-;29729:13;:11;:13::i;:::-;-1:-1:-1;;;;;72870:22:0::1;;::::0;;;:13:::1;:22;::::0;;;;;;-1:-1:-1;;72844:48:0;::::1;72870:22;::::0;;::::1;72869:23;72844:48;::::0;;72773:127::o;72261:216::-;50816:4;50414:16;;;:7;:16;;;;;;72334:13;;-1:-1:-1;;;;;50414:16:0;72360:76;;;;-1:-1:-1;;;72360:76:0;;13878:2:1;72360:76:0;;;13860:21:1;13917:2;13897:18;;;13890:30;13956:34;13936:18;;;13929:62;-1:-1:-1;;;14007:18:1;;;14000:45;14062:19;;72360:76:0;13676:411:1;72360:76:0;72454:15;72447:22;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72261:216;;;:::o;72527:103::-;29729:13;:11;:13::i;:::-;72598:24;;::::1;::::0;:15:::1;::::0;:24:::1;::::0;::::1;::::0;::::1;:::i;40844:181::-:0;29729:13;:11;:13::i;:::-;40934::::1;:24:::0;;-1:-1:-1;;;;;40934:24:0;::::1;-1:-1:-1::0;;;;;;40934:24:0;;::::1;::::0;::::1;::::0;;;40999:7:::1;29916:6:::0;;-1:-1:-1;;;;;29916:6:0;;29843:87;40999:7:::1;-1:-1:-1::0;;;;;40974:43:0::1;;;;;;;;;;;40844:181:::0;:::o;31110:191::-;31203:6;;;-1:-1:-1;;;;;31220:17:0;;;-1:-1:-1;;;;;;31220:17:0;;;;;;;31253:40;;31203:6;;;31220:17;31203:6;;31253:40;;31184:16;;31253:40;31173:128;31110:191;:::o;44889:305::-;44991:4;-1:-1:-1;;;;;;45028:40:0;;-1:-1:-1;;;45028:40:0;;:105;;-1:-1:-1;;;;;;;45085:48:0;;-1:-1:-1;;;45085:48:0;45028:105;:158;;;-1:-1:-1;;;;;;;;;;39636:40:0;;;45150:36;39527:157;57148:135;50816:4;50414:16;;;:7;:16;;;;;;-1:-1:-1;;;;;50414:16:0;57222:53;;;;-1:-1:-1;;;57222:53:0;;10068:2:1;57222:53:0;;;10050:21:1;10107:2;10087:18;;;10080:30;-1:-1:-1;;;10126:18:1;;;10119:54;10190:18;;57222:53:0;9866:348:1;56427:174:0;56502:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;56502:29:0;-1:-1:-1;;;;;56502:29:0;;;;;;;;:24;;56556:23;56502:24;56556:14;:23::i;:::-;-1:-1:-1;;;;;56547:46:0;;;;;;;;;;;56427:174;;:::o;51046:264::-;51139:4;51156:13;51172:23;51187:7;51172:14;:23::i;:::-;51156:39;;51225:5;-1:-1:-1;;;;;51214:16:0;:7;-1:-1:-1;;;;;51214:16:0;;:52;;;-1:-1:-1;;;;;;47919:25:0;;;47895:4;47919:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;51234:32;51214:87;;;;51294:7;-1:-1:-1;;;;;51270:31:0;:20;51282:7;51270:11;:20::i;:::-;-1:-1:-1;;;;;51270:31:0;;51214:87;51206:96;51046:264;-1:-1:-1;;;;51046:264:0:o;55045:1263::-;55204:4;-1:-1:-1;;;;;55177:31:0;:23;55192:7;55177:14;:23::i;:::-;-1:-1:-1;;;;;55177:31:0;;55169:81;;;;-1:-1:-1;;;55169:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;55269:16:0;;55261:65;;;;-1:-1:-1;;;55261:65:0;;14700:2:1;55261:65:0;;;14682:21:1;14739:2;14719:18;;;14712:30;14778:34;14758:18;;;14751:62;-1:-1:-1;;;14829:18:1;;;14822:34;14873:19;;55261:65:0;14498:400:1;55261:65:0;55339:42;55360:4;55366:2;55370:7;55379:1;55339:20;:42::i;:::-;55511:4;-1:-1:-1;;;;;55484:31:0;:23;55499:7;55484:14;:23::i;:::-;-1:-1:-1;;;;;55484:31:0;;55476:81;;;;-1:-1:-1;;;55476:81:0;;;;;;;:::i;:::-;55629:24;;;;:15;:24;;;;;;;;55622:31;;-1:-1:-1;;;;;;55622:31:0;;;;;;-1:-1:-1;;;;;56105:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;56105:20:0;;;56140:13;;;;;;;;;:18;;55622:31;56140:18;;;56180:16;;;:7;:16;;;;;;:21;;;;;;;;;;56219:27;;55645:7;;56219:27;;;46917:346;46847:416;;:::o;30008:132::-;29916:6;;-1:-1:-1;;;;;29916:6:0;14115:10;30072:23;30064:68;;;;-1:-1:-1;;;30064:68:0;;15105:2:1;30064:68:0;;;15087:21:1;;;15124:18;;;15117:30;15183:34;15163:18;;;15156:62;15235:18;;30064:68:0;14903:356:1;41215:156:0;41305:13;41298:20;;-1:-1:-1;;;;;;41298:20:0;;;41329:34;41354:8;41329:24;:34::i;71317:475::-;-1:-1:-1;;;;;71402:22:0;;;;;;:13;:22;;;;;;;;71401:23;71393:64;;;;-1:-1:-1;;;71393:64:0;;15466:2:1;71393:64:0;;;15448:21:1;15505:2;15485:18;;;15478:30;15544:31;15524:18;;;15517:59;15593:18;;71393:64:0;15264:353:1;71393:64:0;71537:11;;71492:2;;-1:-1:-1;;;;;71526:22:0;;;71537:11;;71526:22;71561:60;;;;71608:1;71594:15;;71561:60;71641:5;;71634:68;;-1:-1:-1;;;71634:68:0;;-1:-1:-1;;;;;12881:15:1;;;71634:68:0;;;12863:34:1;12913:18;;;12906:34;;;71679:10:0;12956:18:1;;;12949:43;13008:18;;;13001:34;;;71641:5:0;;;;71634:22;;12797:19:1;;71634:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71718:13;71715:70;;;71754:11;;;;;;;;;-1:-1:-1;;;;;71754:11:0;-1:-1:-1;;;;;71748:23:0;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71382:410;;71317:475;;:::o;56744:315::-;56899:8;-1:-1:-1;;;;;56890:17:0;:5;-1:-1:-1;;;;;56890:17:0;;56882:55;;;;-1:-1:-1;;;56882:55:0;;16276:2:1;56882:55:0;;;16258:21:1;16315:2;16295:18;;;16288:30;16354:27;16334:18;;;16327:55;16399:18;;56882:55:0;16074:349:1;56882:55:0;-1:-1:-1;;;;;56948:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;56948:46:0;;;;;;;;;;57010:41;;540::1;;;57010::0;;513:18:1;57010:41:0;;;;;;;56744:315;;;:::o;51652:110::-;51728:26;51738:2;51742:7;51728:26;;;;;;;;;;;;:9;:26::i;49894:313::-;50050:28;50060:4;50066:2;50070:7;50050:9;:28::i;:::-;50097:47;50120:4;50126:2;50130:7;50139:4;50097:22;:47::i;:::-;50089:110;;;;-1:-1:-1;;;50089:110:0;;;;;;;:::i;63221:915::-;63488:1;63476:9;:13;63472:222;;;63619:63;;-1:-1:-1;;;63619:63:0;;17049:2:1;63619:63:0;;;17031:21:1;17088:2;17068:18;;;17061:30;17127:34;17107:18;;;17100:62;-1:-1:-1;;;17178:18:1;;;17171:51;17239:19;;63619:63:0;16847:417:1;63472:222:0;63724:12;-1:-1:-1;;;;;63753:18:0;;63749:187;;63788:40;63820:7;64963:10;:17;;64936:24;;;;:15;:24;;;;;:44;;;64991:24;;;;;;;;;;;;64859:164;63788:40;63749:187;;;63858:2;-1:-1:-1;;;;;63850:10:0;:4;-1:-1:-1;;;;;63850:10:0;;63846:90;;63877:47;63910:4;63916:7;63877:32;:47::i;:::-;-1:-1:-1;;;;;63950:16:0;;63946:183;;63983:45;64020:7;63983:36;:45::i;:::-;63946:183;;;64056:4;-1:-1:-1;;;;;64050:10:0;:2;-1:-1:-1;;;;;64050:10:0;;64046:83;;64077:40;64105:2;64109:7;64077:27;:40::i;:::-;63387:749;63221:915;;;;:::o;51989:319::-;52118:18;52124:2;52128:7;52118:5;:18::i;:::-;52169:53;52200:1;52204:2;52208:7;52217:4;52169:22;:53::i;:::-;52147:153;;;;-1:-1:-1;;;52147:153:0;;;;;;;:::i;57847:853::-;58001:4;-1:-1:-1;;;;;58022:13:0;;5478:19;:23;58018:675;;58058:71;;-1:-1:-1;;;58058:71:0;;-1:-1:-1;;;;;58058:36:0;;;;;:71;;14115:10;;58109:4;;58115:7;;58124:4;;58058:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58058:71:0;;;;;;;;-1:-1:-1;;58058:71:0;;;;;;;;;;;;:::i;:::-;;;58054:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58299:6;:13;58316:1;58299:18;58295:328;;58342:60;;-1:-1:-1;;;58342:60:0;;;;;;;:::i;58295:328::-;58573:6;58567:13;58558:6;58554:2;58550:15;58543:38;58054:584;-1:-1:-1;;;;;;58180:51:0;-1:-1:-1;;;58180:51:0;;-1:-1:-1;58173:58:0;;58018:675;-1:-1:-1;58677:4:0;57847:853;;;;;;:::o;65650:988::-;65916:22;65966:1;65941:22;65958:4;65941:16;:22::i;:::-;:26;;;;:::i;:::-;65978:18;65999:26;;;:17;:26;;;;;;65916:51;;-1:-1:-1;66132:28:0;;;66128:328;;-1:-1:-1;;;;;66199:18:0;;66177:19;66199:18;;;:12;:18;;;;;;;;:34;;;;;;;;;66250:30;;;;;;:44;;;66367:30;;:17;:30;;;;;:43;;;66128:328;-1:-1:-1;66552:26:0;;;;:17;:26;;;;;;;;66545:33;;;-1:-1:-1;;;;;66596:18:0;;;;;:12;:18;;;;;:34;;;;;;;66589:41;65650:988::o;66933:1079::-;67211:10;:17;67186:22;;67211:21;;67231:1;;67211:21;:::i;:::-;67243:18;67264:24;;;:15;:24;;;;;;67637:10;:26;;67186:46;;-1:-1:-1;67264:24:0;;67186:46;;67637:26;;;;;;:::i;:::-;;;;;;;;;67615:48;;67701:11;67676:10;67687;67676:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;67781:28;;;:15;:28;;;;;;;:41;;;67953:24;;;;;67946:31;67988:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;67004:1008;;;66933:1079;:::o;64437:221::-;64522:14;64539:20;64556:2;64539:16;:20::i;:::-;-1:-1:-1;;;;;64570:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;64615:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;64437:221:0:o;52644:942::-;-1:-1:-1;;;;;52724:16:0;;52716:61;;;;-1:-1:-1;;;52716:61:0;;18481:2:1;52716:61:0;;;18463:21:1;;;18500:18;;;18493:30;18559:34;18539:18;;;18532:62;18611:18;;52716:61:0;18279:356:1;52716:61:0;50816:4;50414:16;;;:7;:16;;;;;;-1:-1:-1;;;;;50414:16:0;50840:31;52788:58;;;;-1:-1:-1;;;52788:58:0;;18842:2:1;52788:58:0;;;18824:21:1;18881:2;18861:18;;;18854:30;18920;18900:18;;;18893:58;18968:18;;52788:58:0;18640:352:1;52788:58:0;52859:48;52888:1;52892:2;52896:7;52905:1;52859:20;:48::i;:::-;50816:4;50414:16;;;:7;:16;;;;;;-1:-1:-1;;;;;50414:16:0;50840:31;52997:58;;;;-1:-1:-1;;;52997:58:0;;18842:2:1;52997:58:0;;;18824:21:1;18881:2;18861:18;;;18854:30;18920;18900:18;;;18893:58;18968:18;;52997:58:0;18640:352:1;52997:58:0;-1:-1:-1;;;;;53404:13:0;;;;;;:9;:13;;;;;;;;:18;;53421:1;53404:18;;;53446:16;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;53446:21:0;;;;;53485:33;53454:7;;53404:13;;53485:33;;53404:13;;53485:33;47572:155;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:472::-;634:3;672:5;666:12;699:6;694:3;687:19;724:1;734:162;748:6;745:1;742:13;734:162;;;810:4;866:13;;;862:22;;856:29;838:11;;;834:20;;827:59;763:12;734:162;;;914:6;911:1;908:13;905:87;;;980:1;973:4;964:6;959:3;955:16;951:27;944:38;905:87;-1:-1:-1;1046:2:1;1025:15;-1:-1:-1;;1021:29:1;1012:39;;;;1053:4;1008:50;;592:472;-1:-1:-1;;592:472:1:o;1069:220::-;1218:2;1207:9;1200:21;1181:4;1238:45;1279:2;1268:9;1264:18;1256:6;1238:45;:::i;1294:180::-;1353:6;1406:2;1394:9;1385:7;1381:23;1377:32;1374:52;;;1422:1;1419;1412:12;1374:52;-1:-1:-1;1445:23:1;;1294:180;-1:-1:-1;1294:180:1:o;1687:131::-;-1:-1:-1;;;;;1762:31:1;;1752:42;;1742:70;;1808:1;1805;1798:12;1823:315;1891:6;1899;1952:2;1940:9;1931:7;1927:23;1923:32;1920:52;;;1968:1;1965;1958:12;1920:52;2007:9;1994:23;2026:31;2051:5;2026:31;:::i;:::-;2076:5;2128:2;2113:18;;;;2100:32;;-1:-1:-1;;;1823:315:1:o;2325:456::-;2402:6;2410;2418;2471:2;2459:9;2450:7;2446:23;2442:32;2439:52;;;2487:1;2484;2477:12;2439:52;2526:9;2513:23;2545:31;2570:5;2545:31;:::i;:::-;2595:5;-1:-1:-1;2652:2:1;2637:18;;2624:32;2665:33;2624:32;2665:33;:::i;:::-;2325:456;;2717:7;;-1:-1:-1;;;2771:2:1;2756:18;;;;2743:32;;2325:456::o;2786:248::-;2854:6;2862;2915:2;2903:9;2894:7;2890:23;2886:32;2883:52;;;2931:1;2928;2921:12;2883:52;-1:-1:-1;;2954:23:1;;;3024:2;3009:18;;;2996:32;;-1:-1:-1;2786:248:1:o;3318:247::-;3377:6;3430:2;3418:9;3409:7;3405:23;3401:32;3398:52;;;3446:1;3443;3436:12;3398:52;3485:9;3472:23;3504:31;3529:5;3504:31;:::i;3570:118::-;3656:5;3649:13;3642:21;3635:5;3632:32;3622:60;;3678:1;3675;3668:12;3693:382;3758:6;3766;3819:2;3807:9;3798:7;3794:23;3790:32;3787:52;;;3835:1;3832;3825:12;3787:52;3874:9;3861:23;3893:31;3918:5;3893:31;:::i;:::-;3943:5;-1:-1:-1;4000:2:1;3985:18;;3972:32;4013:30;3972:32;4013:30;:::i;:::-;4062:7;4052:17;;;3693:382;;;;;:::o;4080:127::-;4141:10;4136:3;4132:20;4129:1;4122:31;4172:4;4169:1;4162:15;4196:4;4193:1;4186:15;4212:631;4276:5;4306:18;4347:2;4339:6;4336:14;4333:40;;;4353:18;;:::i;:::-;4428:2;4422:9;4396:2;4482:15;;-1:-1:-1;;4478:24:1;;;4504:2;4474:33;4470:42;4458:55;;;4528:18;;;4548:22;;;4525:46;4522:72;;;4574:18;;:::i;:::-;4614:10;4610:2;4603:22;4643:6;4634:15;;4673:6;4665;4658:22;4713:3;4704:6;4699:3;4695:16;4692:25;4689:45;;;4730:1;4727;4720:12;4689:45;4780:6;4775:3;4768:4;4760:6;4756:17;4743:44;4835:1;4828:4;4819:6;4811;4807:19;4803:30;4796:41;;;;4212:631;;;;;:::o;4848:794::-;4943:6;4951;4959;4967;5020:3;5008:9;4999:7;4995:23;4991:33;4988:53;;;5037:1;5034;5027:12;4988:53;5076:9;5063:23;5095:31;5120:5;5095:31;:::i;:::-;5145:5;-1:-1:-1;5202:2:1;5187:18;;5174:32;5215:33;5174:32;5215:33;:::i;:::-;5267:7;-1:-1:-1;5321:2:1;5306:18;;5293:32;;-1:-1:-1;5376:2:1;5361:18;;5348:32;5403:18;5392:30;;5389:50;;;5435:1;5432;5425:12;5389:50;5458:22;;5511:4;5503:13;;5499:27;-1:-1:-1;5489:55:1;;5540:1;5537;5530:12;5489:55;5563:73;5628:7;5623:2;5610:16;5605:2;5601;5597:11;5563:73;:::i;:::-;5553:83;;;4848:794;;;;;;;:::o;5647:450::-;5716:6;5769:2;5757:9;5748:7;5744:23;5740:32;5737:52;;;5785:1;5782;5775:12;5737:52;5825:9;5812:23;5858:18;5850:6;5847:30;5844:50;;;5890:1;5887;5880:12;5844:50;5913:22;;5966:4;5958:13;;5954:27;-1:-1:-1;5944:55:1;;5995:1;5992;5985:12;5944:55;6018:73;6083:7;6078:2;6065:16;6060:2;6056;6052:11;6018:73;:::i;6102:388::-;6170:6;6178;6231:2;6219:9;6210:7;6206:23;6202:32;6199:52;;;6247:1;6244;6237:12;6199:52;6286:9;6273:23;6305:31;6330:5;6305:31;:::i;:::-;6355:5;-1:-1:-1;6412:2:1;6397:18;;6384:32;6425:33;6384:32;6425:33;:::i;6495:380::-;6574:1;6570:12;;;;6617;;;6638:61;;6692:4;6684:6;6680:17;6670:27;;6638:61;6745:2;6737:6;6734:14;6714:18;6711:38;6708:161;;6791:10;6786:3;6782:20;6779:1;6772:31;6826:4;6823:1;6816:15;6854:4;6851:1;6844:15;6708:161;;6495:380;;;:::o;7712:409::-;7914:2;7896:21;;;7953:2;7933:18;;;7926:30;7992:34;7987:2;7972:18;;7965:62;-1:-1:-1;;;8058:2:1;8043:18;;8036:43;8111:3;8096:19;;7712:409::o;8126:251::-;8196:6;8249:2;8237:9;8228:7;8224:23;8220:32;8217:52;;;8265:1;8262;8255:12;8217:52;8297:9;8291:16;8316:31;8341:5;8316:31;:::i;8382:127::-;8443:10;8438:3;8434:20;8431:1;8424:31;8474:4;8471:1;8464:15;8498:4;8495:1;8488:15;8514:168;8554:7;8620:1;8616;8612:6;8608:14;8605:1;8602:21;8597:1;8590:9;8583:17;8579:45;8576:71;;;8627:18;;:::i;:::-;-1:-1:-1;8667:9:1;;8514:168::o;8687:217::-;8727:1;8753;8743:132;;8797:10;8792:3;8788:20;8785:1;8778:31;8832:4;8829:1;8822:15;8860:4;8857:1;8850:15;8743:132;-1:-1:-1;8889:9:1;;8687:217::o;9734:127::-;9795:10;9790:3;9786:20;9783:1;9776:31;9826:4;9823:1;9816:15;9850:4;9847:1;9840:15;12453:128;12493:3;12524:1;12520:6;12517:1;12514:13;12511:39;;;12530:18;;:::i;:::-;-1:-1:-1;12566:9:1;;12453:128::o;13426:245::-;13493:6;13546:2;13534:9;13525:7;13521:23;13517:32;13514:52;;;13562:1;13559;13552:12;13514:52;13594:9;13588:16;13613:28;13635:5;13613:28;:::i;14092:401::-;14294:2;14276:21;;;14333:2;14313:18;;;14306:30;14372:34;14367:2;14352:18;;14345:62;-1:-1:-1;;;14438:2:1;14423:18;;14416:35;14483:3;14468:19;;14092:401::o;16428:414::-;16630:2;16612:21;;;16669:2;16649:18;;;16642:30;16708:34;16703:2;16688:18;;16681:62;-1:-1:-1;;;16774:2:1;16759:18;;16752:48;16832:3;16817:19;;16428:414::o;17269:489::-;-1:-1:-1;;;;;17538:15:1;;;17520:34;;17590:15;;17585:2;17570:18;;17563:43;17637:2;17622:18;;17615:34;;;17685:3;17680:2;17665:18;;17658:31;;;17463:4;;17706:46;;17732:19;;17724:6;17706:46;:::i;:::-;17698:54;17269:489;-1:-1:-1;;;;;;17269:489:1:o;17763:249::-;17832:6;17885:2;17873:9;17864:7;17860:23;17856:32;17853:52;;;17901:1;17898;17891:12;17853:52;17933:9;17927:16;17952:30;17976:5;17952:30;:::i;18017:125::-;18057:4;18085:1;18082;18079:8;18076:34;;;18090:18;;:::i;:::-;-1:-1:-1;18127:9:1;;18017:125::o;18147:127::-;18208:10;18203:3;18199:20;18196:1;18189:31;18239:4;18236:1;18229:15;18263:4;18260:1;18253:15

Swarm Source

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