ETH Price: $2,994.57 (+4.66%)
Gas: 2 Gwei

Token

M3TAPASS (M3TA)
 

Overview

Max Total Supply

10,000 M3TA

Holders

0

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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

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

Contract Source Code Verified (Exact Match)

Contract Name:
M3TA

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

//SPDX-License-Identifier: UNLICENSED


pragma solidity ^0.8.0;
// File: @openzeppelin/contracts/utils/ReentrancyGuard.sol


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

pragma solidity ^0.8.20;

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

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

    uint256 private _status;

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

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

        // 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 _reentrancyGuardEntered() internal view returns (bool) {
        return _status == ENTERED;
    }
}

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


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

pragma solidity ^0.8.20;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @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);
        }
    }
}

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


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

pragma solidity ^0.8.20;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @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 addition of two unsigned integers, with an overflow flag.
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

    /**
     * @dev Returns the 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 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 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 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @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 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0);
        }
    }

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

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


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

pragma solidity ^0.8.20;



/**
 * @dev String operations.
 */
library Strings {
    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 = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), 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(SignedMath.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, Math.log256(value) + 1);
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        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));
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

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

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

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


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

pragma solidity ^0.8.20;


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

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


// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;


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

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


// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable2Step.sol)

pragma solidity ^0.8.20;


/**
 * @dev Contract module which provides access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * The initial owner is specified at deployment time in the constructor for `Ownable`. This
 * can later be changed with {transferOwnership} and {acceptOwnership}.
 *
 * This module is used through inheritance. It will make available all functions
 * from parent (Ownable).
 */
abstract contract Ownable2Step is Ownable {
    address private _pendingOwner;

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

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

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

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

    /**
     * @dev The new owner accepts the ownership transfer.
     */
    function acceptOwnership() public virtual {
        address sender = _msgSender();
        if (pendingOwner() != sender) {
            revert OwnableUnauthorizedAccount(sender);
        }
        _transferOwnership(sender);
    }
}

// File: contracts/ERC404.sol

pragma solidity ^0.8.0;


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

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

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

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

    /// @dev Token symbol
    string public symbol;

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

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

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

    // 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(_owner) {
        name = _name;
        symbol = _symbol;
        decimals = _decimals;
        totalSupply = _totalNativeSupply * (10 ** decimals);
    }

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

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

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

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

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

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

            getApproved[amountOrId] = spender;

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

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

        return true;
    }

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

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

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

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

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

            balanceOf[from] -= _getUnit();

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

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

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

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

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

            _transfer(from, to, amountOrId);
        }
    }

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

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

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

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

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

    /// @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];

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







contract M3TA is ERC404, Pausable, ReentrancyGuard {
    string public baseTokenURI;
    uint256 public buyLimit;
    uint256 public sellLimit;
    uint256 public txLimit;
    mapping (address => uint256) public userBuylimit;
    mapping (address => uint256) public userSelllimit;
    using Strings for uint256;
    bool public applyTxLimit;

    constructor(
        address _owner,
        uint256 _initialSupply,
        uint8 _decimal,
        uint256 _buylimit,
        uint256 _selllimit
    ) ERC404("M3TAPASS", "M3TA", _decimal, _initialSupply, _owner) {
        balanceOf[_owner] = _initialSupply * 10 ** _decimal;
        buyLimit = _buylimit * 10 ** _decimal;
        sellLimit = _selllimit * 10 ** _decimal;
        txLimit = 10 * 10 ** _decimal;
    }

    function setLimit(uint256 _buylimit, uint256 _selllimit) public onlyOwner{
        buyLimit = _buylimit;
        sellLimit = _selllimit;
    }

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

    function startApplyingLimit() external onlyOwner{
        applyTxLimit = true;
    }

    function stopApplyingLimit() external onlyOwner{
        applyTxLimit = false;
    }

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

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

    function setNameSymbol(
        string memory _name,
        string memory _symbol
    ) public onlyOwner {
        _setNameSymbol(_name, _symbol);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"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":"ReentrancyGuardReentrantCall","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":[],"name":"applyTxLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"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":"uint256","name":"_buylimit","type":"uint256"},{"internalType":"uint256","name":"_selllimit","type":"uint256"}],"name":"setLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"name":"setNameSymbol","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":"startApplyingLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopApplyingLimit","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":[],"name":"txLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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"}]

60c060405234801562000010575f80fd5b50604051620045a5380380620045a5833981810160405281019062000036919062000448565b6040518060400160405280600881526020017f4d335441504153530000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d33544100000000000000000000000000000000000000000000000000000000815250848688805f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000119575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620001109190620004dd565b60405180910390fd5b6200012a816200027760201b60201c565b5084600290816200013c919062000753565b5083600390816200014e919062000753565b508260ff1660808160ff1681525050608051600a6200016e9190620009b4565b826200017b919062000a04565b60a0818152505050505050505f600d5f6101000a81548160ff0219169083151502179055506001600e8190555082600a620001b79190620009b4565b84620001c4919062000a04565b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555082600a620002149190620009b4565b8262000221919062000a04565b60108190555082600a620002369190620009b4565b8162000243919062000a04565b60118190555082600a620002589190620009b4565b600a62000266919062000a04565b601281905550505050505062000a4e565b60015f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055620002ac81620002af60201b60201c565b50565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200039f8262000374565b9050919050565b620003b18162000393565b8114620003bc575f80fd5b50565b5f81519050620003cf81620003a6565b92915050565b5f819050919050565b620003e981620003d5565b8114620003f4575f80fd5b50565b5f815190506200040781620003de565b92915050565b5f60ff82169050919050565b62000424816200040d565b81146200042f575f80fd5b50565b5f81519050620004428162000419565b92915050565b5f805f805f60a0868803121562000464576200046362000370565b5b5f6200047388828901620003bf565b95505060206200048688828901620003f7565b9450506040620004998882890162000432565b9350506060620004ac88828901620003f7565b9250506080620004bf88828901620003f7565b9150509295509295909350565b620004d78162000393565b82525050565b5f602082019050620004f25f830184620004cc565b92915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200057457607f821691505b6020821081036200058a57620005896200052f565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620005ee7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620005b1565b620005fa8683620005b1565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6200063b620006356200062f84620003d5565b62000612565b620003d5565b9050919050565b5f819050919050565b62000656836200061b565b6200066e620006658262000642565b848454620005bd565b825550505050565b5f90565b6200068462000676565b620006918184846200064b565b505050565b5b81811015620006b857620006ac5f826200067a565b60018101905062000697565b5050565b601f8211156200070757620006d18162000590565b620006dc84620005a2565b81016020851015620006ec578190505b62000704620006fb85620005a2565b83018262000696565b50505b505050565b5f82821c905092915050565b5f620007295f19846008026200070c565b1980831691505092915050565b5f62000743838362000718565b9150826002028217905092915050565b6200075e82620004f8565b67ffffffffffffffff8111156200077a576200077962000502565b5b6200078682546200055c565b62000793828285620006bc565b5f60209050601f831160018114620007c9575f8415620007b4578287015190505b620007c0858262000736565b8655506200082f565b601f198416620007d98662000590565b5f5b828110156200080257848901518255600182019150602085019450602081019050620007db565b868310156200082257848901516200081e601f89168262000718565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115620008c15780860481111562000899576200089862000837565b5b6001851615620008a95780820291505b8081029050620008b98562000864565b945062000879565b94509492505050565b5f82620008db5760019050620009ad565b81620008ea575f9050620009ad565b81600181146200090357600281146200090e5762000944565b6001915050620009ad565b60ff84111562000923576200092262000837565b5b8360020a9150848211156200093d576200093c62000837565b5b50620009ad565b5060208310610133831016604e8410600b84101617156200097e5782820a90508381111562000978576200097762000837565b5b620009ad565b6200098d848484600162000870565b92509050818404811115620009a757620009a662000837565b5b81810290505b9392505050565b5f620009c082620003d5565b9150620009cd836200040d565b9250620009fc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620008ca565b905092915050565b5f62000a1082620003d5565b915062000a1d83620003d5565b925082820262000a2d81620003d5565b9150828204841483151762000a475762000a4662000837565b5b5092915050565b60805160a051613b2e62000a775f395f610a8801525f81816112cf0152611c460152613b2e5ff3fe608060405234801561000f575f80fd5b5060043610610225575f3560e01c8063715018a61161012e578063c87b56dd116100b6578063e30c39781161007a578063e30c39781461063f578063e985e9c51461065d578063f0306ea41461068d578063f2fde38b14610697578063f349b173146106b357610225565b8063c87b56dd14610575578063d547cfb7146105a5578063dd62ed3e146105c3578063e0df5b6f146105f3578063e2d6f33a1461060f57610225565b80639b19251a116100fd5780639b19251a146104d3578063a22cb46514610503578063a9059cbb1461051f578063b88d4fde1461054f578063c6a6035a1461056b57610225565b8063715018a61461048357806379ba50971461048d5780638da5cb5b1461049757806395d89b41146104b557610225565b80634f02c420116101b1578063589210d911610180578063589210d9146103c95780635c975abb146103e75780636352211e146104055780636caae8321461043557806370a082311461045357610225565b80634f02c420146103555780634f91e48c14610373578063504334c21461039157806353d6fd59146103ad57610225565b80631e70b6df116101f85780631e70b6df146102c5578063207add91146102e357806323b872dd146102ff578063313ce5671461031b57806342842e0e1461033957610225565b806306fdde0314610229578063081812fc14610247578063095ea7b31461027757806318160ddd146102a7575b5f80fd5b6102316106e3565b60405161023e9190612b61565b60405180910390f35b610261600480360381019061025c9190612bc5565b61076f565b60405161026e9190612c2f565b60405180910390f35b610291600480360381019061028c9190612c72565b61079f565b60405161029e9190612cca565b60405180910390f35b6102af610a86565b6040516102bc9190612cf2565b60405180910390f35b6102cd610aaa565b6040516102da9190612cca565b60405180910390f35b6102fd60048036038101906102f89190612d0b565b610abc565b005b61031960048036038101906103149190612d49565b610ad6565b005b6103236112cd565b6040516103309190612db4565b60405180910390f35b610353600480360381019061034e9190612d49565b6112f1565b005b61035d611420565b60405161036a9190612cf2565b60405180910390f35b61037b611426565b6040516103889190612cf2565b60405180910390f35b6103ab60048036038101906103a69190612ef9565b61142c565b005b6103c760048036038101906103c29190612f99565b611442565b005b6103d16114a2565b6040516103de9190612cf2565b60405180910390f35b6103ef6114a8565b6040516103fc9190612cca565b60405180910390f35b61041f600480360381019061041a9190612bc5565b6114bd565b60405161042c9190612c2f565b60405180910390f35b61043d61155b565b60405161044a9190612cf2565b60405180910390f35b61046d60048036038101906104689190612fd7565b611561565b60405161047a9190612cf2565b60405180910390f35b61048b611576565b005b610495611589565b005b61049f611617565b6040516104ac9190612c2f565b60405180910390f35b6104bd61163e565b6040516104ca9190612b61565b60405180910390f35b6104ed60048036038101906104e89190612fd7565b6116ca565b6040516104fa9190612cca565b60405180910390f35b61051d60048036038101906105189190612f99565b6116e7565b005b61053960048036038101906105349190612c72565b6117df565b6040516105469190612cca565b60405180910390f35b6105696004803603810190610564919061305f565b6117f3565b005b610573611928565b005b61058f600480360381019061058a9190612bc5565b61194c565b60405161059c9190612b61565b60405180910390f35b6105ad6119aa565b6040516105ba9190612b61565b60405180910390f35b6105dd60048036038101906105d891906130e3565b611a36565b6040516105ea9190612cf2565b60405180910390f35b61060d60048036038101906106089190613121565b611a56565b005b61062960048036038101906106249190612fd7565b611a71565b6040516106369190612cf2565b60405180910390f35b610647611a86565b6040516106549190612c2f565b60405180910390f35b610677600480360381019061067291906130e3565b611aae565b6040516106849190612cca565b60405180910390f35b610695611ad8565b005b6106b160048036038101906106ac9190612fd7565b611afb565b005b6106cd60048036038101906106c89190612fd7565b611ba7565b6040516106da9190612cf2565b60405180910390f35b600280546106f090613195565b80601f016020809104026020016040519081016040528092919081815260200182805461071c90613195565b80156107675780601f1061073e57610100808354040283529160200191610767565b820191905f5260205f20905b81548152906001019060200180831161074a57829003601f168201915b505050505081565b6007602052805f5260405f205f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60045482111580156107b157505f82115b15610999575f60095f8481526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141580156108a8575060085f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156108df576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8360075f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258560405161098b9190612cf2565b60405180910390a350610a7c565b8160065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610a739190612cf2565b60405180910390a35b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60155f9054906101000a900460ff1681565b610ac4611bbc565b81601081905550806011819055505050565b600454811161118e5760095f8281526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610b74576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bd9576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610c97575060085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015610cff575060075f8281526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15610d36576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d3e611c43565b60055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610d8991906131f2565b92505081905550610d98611c43565b60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508160095f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060075f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555f600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206001600a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080549050610eee91906131f2565b81548110610eff57610efe613225565b5b905f5260205f200154905080600a5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600b5f8581526020019081526020015f205481548110610f6b57610f6a613225565b5b905f5260205f200181905550600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805480610fc457610fc3613252565b5b600190038181905f5260205f20015f90559055600b5f8381526020019081526020015f2054600b5f8381526020019081526020015f2081905550600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2082908060018154018082558091505060019003905f5260205f20015f90919091909150556001600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805490506110ac91906131f2565b600b5f8481526020019081526020015f2081905550818373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e031487611173611c43565b6040516111809190612cf2565b60405180910390a3506112c8565b5f60065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112ba57818161123d91906131f2565b60065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b6112c5848484611c76565b50505b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6112fc838383610ad6565b5f8273ffffffffffffffffffffffffffffffffffffffff163b141580156113e4575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168273ffffffffffffffffffffffffffffffffffffffff1663150b7a023386856040518463ffffffff1660e01b8152600401611382939291906132b2565b6020604051808303815f875af115801561139e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113c2919061334f565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b1561141b576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b60045481565b60115481565b611434611bbc565b61143e8282611f34565b5050565b61144a611bbc565b80600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60105481565b5f600d5f9054906101000a900460ff16905090565b5f60095f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611556576040517fc5723b5100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60125481565b6005602052805f5260405f205f915090505481565b61157e611bbc565b6115875f611f58565b565b5f611592611f88565b90508073ffffffffffffffffffffffffffffffffffffffff166115b3611a86565b73ffffffffffffffffffffffffffffffffffffffff161461160b57806040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016116029190612c2f565b60405180910390fd5b61161481611f58565b50565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6003805461164b90613195565b80601f016020809104026020016040519081016040528092919081815260200182805461167790613195565b80156116c25780601f10611699576101008083540402835291602001916116c2565b820191905f5260205f20905b8154815290600101906020018083116116a557829003601f168201915b505050505081565b600c602052805f5260405f205f915054906101000a900460ff1681565b8060085f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117d39190612cca565b60405180910390a35050565b5f6117eb338484611c76565b905092915050565b6117fe858585610ad6565b5f8473ffffffffffffffffffffffffffffffffffffffff163b141580156118ea575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168473ffffffffffffffffffffffffffffffffffffffff1663150b7a0233888787876040518663ffffffff1660e01b81526004016118889594939291906133a6565b6020604051808303815f875af11580156118a4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118c8919061334f565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15611921576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050505050565b611930611bbc565b600160155f6101000a81548160ff021916908315150217905550565b60605f600f805461195c90613195565b9050116119775760405180602001604052805f8152506119a3565b600f61198283611f8f565b6040516020016119939291906134e4565b6040516020818303038152906040525b9050919050565b600f80546119b790613195565b80601f01602080910402602001604051908101604052809291908181526020018280546119e390613195565b8015611a2e5780601f10611a0557610100808354040283529160200191611a2e565b820191905f5260205f20905b815481529060010190602001808311611a1157829003601f168201915b505050505081565b6006602052815f5260405f20602052805f5260405f205f91509150505481565b611a5e611bbc565b80600f9081611a6d91906136a1565b5050565b6013602052805f5260405f205f915090505481565b5f60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6008602052815f5260405f20602052805f5260405f205f915091509054906101000a900460ff1681565b611ae0611bbc565b5f60155f6101000a81548160ff021916908315150217905550565b611b03611bbc565b8060015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16611b62611617565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6014602052805f5260405f205f915090505481565b611bc4611f88565b73ffffffffffffffffffffffffffffffffffffffff16611be2611617565b73ffffffffffffffffffffffffffffffffffffffff1614611c4157611c05611f88565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611c389190612c2f565b60405180910390fd5b565b5f7f0000000000000000000000000000000000000000000000000000000000000000600a611c71919061389f565b905090565b5f611c7f612059565b60155f9054906101000a900460ff1615611cd8576012548210611cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cce90613933565b60405180910390fd5b5b600c5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16611dfc578160145f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611d729190613951565b9250508190555060115460145f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20541115611dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df2906139ce565b60405180910390fd5b5b600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16611f20578160135f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611e969190613951565b9250508190555060105460135f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20541115611f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1690613a36565b60405180910390fd5b5b611f2b84848461209a565b90509392505050565b8160029081611f4391906136a1565b508060039081611f5391906136a1565b505050565b60015f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055611f85816123ea565b50565b5f33905090565b60605f6001611f9d846124ab565b0190505f8167ffffffffffffffff811115611fbb57611fba612dd5565b5b6040519080825280601f01601f191660200182016040528015611fed5781602001600182028036833780820191505090505b5090505f82602001820190505b60011561204e578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161204357612042613a54565b5b0494505f8503611ffa575b819350505050919050565b6120616114a8565b15612098576040517fd93c066500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b5f806120a4611c43565b90505f60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508460055f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461217491906131f2565b925050819055508460055f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550600c5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661229e575f8360055f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461225d9190613a81565b84846122699190613a81565b61227391906131f2565b90505f5b8181101561229b57612288896125fc565b808061229390613ab1565b915050612277565b50505b600c5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16612377575f83826122f99190613a81565b8460055f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546123429190613a81565b61234c91906131f2565b90505f5b818110156123745761236188612841565b808061236c90613ab1565b915050612350565b50505b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e031487876040516123d49190612cf2565b60405180910390a3600193505050509392505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612507577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816124fd576124fc613a54565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612544576d04ee2d6d415b85acef8100000000838161253a57612539613a54565b5b0492506020810190505b662386f26fc10000831061257357662386f26fc10000838161256957612568613a54565b5b0492506010810190505b6305f5e100831061259c576305f5e100838161259257612591613a54565b5b0492506008810190505b61271083106125c15761271083816125b7576125b6613a54565b5b0492506004810190505b606483106125e457606483816125da576125d9613a54565b5b0492506002810190505b600a83106125f3576001810190505b80915050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612661576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206001600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805490506126ec91906131f2565b815481106126fd576126fc613225565b5b905f5260205f2001549050600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080548061275557612754613252565b5b600190038181905f5260205f20015f90559055600b5f8281526020019081526020015f205f905560095f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905560075f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055805f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b612849612059565b61285281612855565b50565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036128ba576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60045f81548092919060010191905055505f60045490505f73ffffffffffffffffffffffffffffffffffffffff1660095f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612966576040517f23369fa600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8160095f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081908060018154018082558091505060019003905f5260205f20015f90919091909150556001600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080549050612a6391906131f2565b600b5f8381526020019081526020015f2081905550808273ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612b0e578082015181840152602081019050612af3565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612b3382612ad7565b612b3d8185612ae1565b9350612b4d818560208601612af1565b612b5681612b19565b840191505092915050565b5f6020820190508181035f830152612b798184612b29565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f819050919050565b612ba481612b92565b8114612bae575f80fd5b50565b5f81359050612bbf81612b9b565b92915050565b5f60208284031215612bda57612bd9612b8a565b5b5f612be784828501612bb1565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612c1982612bf0565b9050919050565b612c2981612c0f565b82525050565b5f602082019050612c425f830184612c20565b92915050565b612c5181612c0f565b8114612c5b575f80fd5b50565b5f81359050612c6c81612c48565b92915050565b5f8060408385031215612c8857612c87612b8a565b5b5f612c9585828601612c5e565b9250506020612ca685828601612bb1565b9150509250929050565b5f8115159050919050565b612cc481612cb0565b82525050565b5f602082019050612cdd5f830184612cbb565b92915050565b612cec81612b92565b82525050565b5f602082019050612d055f830184612ce3565b92915050565b5f8060408385031215612d2157612d20612b8a565b5b5f612d2e85828601612bb1565b9250506020612d3f85828601612bb1565b9150509250929050565b5f805f60608486031215612d6057612d5f612b8a565b5b5f612d6d86828701612c5e565b9350506020612d7e86828701612c5e565b9250506040612d8f86828701612bb1565b9150509250925092565b5f60ff82169050919050565b612dae81612d99565b82525050565b5f602082019050612dc75f830184612da5565b92915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b612e0b82612b19565b810181811067ffffffffffffffff82111715612e2a57612e29612dd5565b5b80604052505050565b5f612e3c612b81565b9050612e488282612e02565b919050565b5f67ffffffffffffffff821115612e6757612e66612dd5565b5b612e7082612b19565b9050602081019050919050565b828183375f83830152505050565b5f612e9d612e9884612e4d565b612e33565b905082815260208101848484011115612eb957612eb8612dd1565b5b612ec4848285612e7d565b509392505050565b5f82601f830112612ee057612edf612dcd565b5b8135612ef0848260208601612e8b565b91505092915050565b5f8060408385031215612f0f57612f0e612b8a565b5b5f83013567ffffffffffffffff811115612f2c57612f2b612b8e565b5b612f3885828601612ecc565b925050602083013567ffffffffffffffff811115612f5957612f58612b8e565b5b612f6585828601612ecc565b9150509250929050565b612f7881612cb0565b8114612f82575f80fd5b50565b5f81359050612f9381612f6f565b92915050565b5f8060408385031215612faf57612fae612b8a565b5b5f612fbc85828601612c5e565b9250506020612fcd85828601612f85565b9150509250929050565b5f60208284031215612fec57612feb612b8a565b5b5f612ff984828501612c5e565b91505092915050565b5f80fd5b5f80fd5b5f8083601f84011261301f5761301e612dcd565b5b8235905067ffffffffffffffff81111561303c5761303b613002565b5b60208301915083600182028301111561305857613057613006565b5b9250929050565b5f805f805f6080868803121561307857613077612b8a565b5b5f61308588828901612c5e565b955050602061309688828901612c5e565b94505060406130a788828901612bb1565b935050606086013567ffffffffffffffff8111156130c8576130c7612b8e565b5b6130d48882890161300a565b92509250509295509295909350565b5f80604083850312156130f9576130f8612b8a565b5b5f61310685828601612c5e565b925050602061311785828601612c5e565b9150509250929050565b5f6020828403121561313657613135612b8a565b5b5f82013567ffffffffffffffff81111561315357613152612b8e565b5b61315f84828501612ecc565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806131ac57607f821691505b6020821081036131bf576131be613168565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6131fc82612b92565b915061320783612b92565b925082820390508181111561321f5761321e6131c5565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffd5b5f82825260208201905092915050565b50565b5f61329d5f8361327f565b91506132a88261328f565b5f82019050919050565b5f6080820190506132c55f830186612c20565b6132d26020830185612c20565b6132df6040830184612ce3565b81810360608301526132f081613292565b9050949350505050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61332e816132fa565b8114613338575f80fd5b50565b5f8151905061334981613325565b92915050565b5f6020828403121561336457613363612b8a565b5b5f6133718482850161333b565b91505092915050565b5f613385838561327f565b9350613392838584612e7d565b61339b83612b19565b840190509392505050565b5f6080820190506133b95f830188612c20565b6133c66020830187612c20565b6133d36040830186612ce3565b81810360608301526133e681848661337a565b90509695505050505050565b5f81905092915050565b5f819050815f5260205f209050919050565b5f815461341a81613195565b61342481866133f2565b9450600182165f811461343e576001811461345357613485565b60ff1983168652811515820286019350613485565b61345c856133fc565b5f5b8381101561347d5781548189015260018201915060208101905061345e565b838801955050505b50505092915050565b5f61349882612ad7565b6134a281856133f2565b93506134b2818560208601612af1565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000815250565b5f6134ef828561340e565b91506134fb828461348e565b9150613506826134be565b6005820191508190509392505050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026135607fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613525565b61356a8683613525565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6135a56135a061359b84612b92565b613582565b612b92565b9050919050565b5f819050919050565b6135be8361358b565b6135d26135ca826135ac565b848454613531565b825550505050565b5f90565b6135e66135da565b6135f18184846135b5565b505050565b5b81811015613614576136095f826135de565b6001810190506135f7565b5050565b601f8211156136595761362a816133fc565b61363384613516565b81016020851015613642578190505b61365661364e85613516565b8301826135f6565b50505b505050565b5f82821c905092915050565b5f6136795f198460080261365e565b1980831691505092915050565b5f613691838361366a565b9150826002028217905092915050565b6136aa82612ad7565b67ffffffffffffffff8111156136c3576136c2612dd5565b5b6136cd8254613195565b6136d8828285613618565b5f60209050601f831160018114613709575f84156136f7578287015190505b6137018582613686565b865550613768565b601f198416613717866133fc565b5f5b8281101561373e57848901518255600182019150602085019450602081019050613719565b8683101561375b5784890151613757601f89168261366a565b8355505b6001600288020188555050505b505050505050565b5f8160011c9050919050565b5f808291508390505b60018511156137c5578086048111156137a1576137a06131c5565b5b60018516156137b05780820291505b80810290506137be85613770565b9450613785565b94509492505050565b5f826137dd5760019050613898565b816137ea575f9050613898565b8160018114613800576002811461380a57613839565b6001915050613898565b60ff84111561381c5761381b6131c5565b5b8360020a915084821115613833576138326131c5565b5b50613898565b5060208310610133831016604e8410600b841016171561386e5782820a905083811115613869576138686131c5565b5b613898565b61387b848484600161377c565b92509050818404811115613892576138916131c5565b5b81810290505b9392505050565b5f6138a982612b92565b91506138b483612d99565b92506138e17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846137ce565b905092915050565b7f657863656564207478206c696d697400000000000000000000000000000000005f82015250565b5f61391d600f83612ae1565b9150613928826138e9565b602082019050919050565b5f6020820190508181035f83015261394a81613911565b9050919050565b5f61395b82612b92565b915061396683612b92565b925082820190508082111561397e5761397d6131c5565b5b92915050565b7f6e6f7420616c6c6f77656420616e796d6f726520746f2073656c6c00000000005f82015250565b5f6139b8601b83612ae1565b91506139c382613984565b602082019050919050565b5f6020820190508181035f8301526139e5816139ac565b9050919050565b7f6e6f7420616c6c6f77656420616e796d6f726520746f206275790000000000005f82015250565b5f613a20601a83612ae1565b9150613a2b826139ec565b602082019050919050565b5f6020820190508181035f830152613a4d81613a14565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613a8b82612b92565b9150613a9683612b92565b925082613aa657613aa5613a54565b5b828204905092915050565b5f613abb82612b92565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613aed57613aec6131c5565b5b60018201905091905056fea26469706673582212203184a02c127786de85550a192025ca993aced144554ab2f6ac6e25927915a11a64736f6c63430008140033000000000000000000000000319e9b8abdb29d1e5e5d43764e691c7e8c701de600000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610225575f3560e01c8063715018a61161012e578063c87b56dd116100b6578063e30c39781161007a578063e30c39781461063f578063e985e9c51461065d578063f0306ea41461068d578063f2fde38b14610697578063f349b173146106b357610225565b8063c87b56dd14610575578063d547cfb7146105a5578063dd62ed3e146105c3578063e0df5b6f146105f3578063e2d6f33a1461060f57610225565b80639b19251a116100fd5780639b19251a146104d3578063a22cb46514610503578063a9059cbb1461051f578063b88d4fde1461054f578063c6a6035a1461056b57610225565b8063715018a61461048357806379ba50971461048d5780638da5cb5b1461049757806395d89b41146104b557610225565b80634f02c420116101b1578063589210d911610180578063589210d9146103c95780635c975abb146103e75780636352211e146104055780636caae8321461043557806370a082311461045357610225565b80634f02c420146103555780634f91e48c14610373578063504334c21461039157806353d6fd59146103ad57610225565b80631e70b6df116101f85780631e70b6df146102c5578063207add91146102e357806323b872dd146102ff578063313ce5671461031b57806342842e0e1461033957610225565b806306fdde0314610229578063081812fc14610247578063095ea7b31461027757806318160ddd146102a7575b5f80fd5b6102316106e3565b60405161023e9190612b61565b60405180910390f35b610261600480360381019061025c9190612bc5565b61076f565b60405161026e9190612c2f565b60405180910390f35b610291600480360381019061028c9190612c72565b61079f565b60405161029e9190612cca565b60405180910390f35b6102af610a86565b6040516102bc9190612cf2565b60405180910390f35b6102cd610aaa565b6040516102da9190612cca565b60405180910390f35b6102fd60048036038101906102f89190612d0b565b610abc565b005b61031960048036038101906103149190612d49565b610ad6565b005b6103236112cd565b6040516103309190612db4565b60405180910390f35b610353600480360381019061034e9190612d49565b6112f1565b005b61035d611420565b60405161036a9190612cf2565b60405180910390f35b61037b611426565b6040516103889190612cf2565b60405180910390f35b6103ab60048036038101906103a69190612ef9565b61142c565b005b6103c760048036038101906103c29190612f99565b611442565b005b6103d16114a2565b6040516103de9190612cf2565b60405180910390f35b6103ef6114a8565b6040516103fc9190612cca565b60405180910390f35b61041f600480360381019061041a9190612bc5565b6114bd565b60405161042c9190612c2f565b60405180910390f35b61043d61155b565b60405161044a9190612cf2565b60405180910390f35b61046d60048036038101906104689190612fd7565b611561565b60405161047a9190612cf2565b60405180910390f35b61048b611576565b005b610495611589565b005b61049f611617565b6040516104ac9190612c2f565b60405180910390f35b6104bd61163e565b6040516104ca9190612b61565b60405180910390f35b6104ed60048036038101906104e89190612fd7565b6116ca565b6040516104fa9190612cca565b60405180910390f35b61051d60048036038101906105189190612f99565b6116e7565b005b61053960048036038101906105349190612c72565b6117df565b6040516105469190612cca565b60405180910390f35b6105696004803603810190610564919061305f565b6117f3565b005b610573611928565b005b61058f600480360381019061058a9190612bc5565b61194c565b60405161059c9190612b61565b60405180910390f35b6105ad6119aa565b6040516105ba9190612b61565b60405180910390f35b6105dd60048036038101906105d891906130e3565b611a36565b6040516105ea9190612cf2565b60405180910390f35b61060d60048036038101906106089190613121565b611a56565b005b61062960048036038101906106249190612fd7565b611a71565b6040516106369190612cf2565b60405180910390f35b610647611a86565b6040516106549190612c2f565b60405180910390f35b610677600480360381019061067291906130e3565b611aae565b6040516106849190612cca565b60405180910390f35b610695611ad8565b005b6106b160048036038101906106ac9190612fd7565b611afb565b005b6106cd60048036038101906106c89190612fd7565b611ba7565b6040516106da9190612cf2565b60405180910390f35b600280546106f090613195565b80601f016020809104026020016040519081016040528092919081815260200182805461071c90613195565b80156107675780601f1061073e57610100808354040283529160200191610767565b820191905f5260205f20905b81548152906001019060200180831161074a57829003601f168201915b505050505081565b6007602052805f5260405f205f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60045482111580156107b157505f82115b15610999575f60095f8481526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141580156108a8575060085f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156108df576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8360075f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258560405161098b9190612cf2565b60405180910390a350610a7c565b8160065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610a739190612cf2565b60405180910390a35b6001905092915050565b7f00000000000000000000000000000000000000000000021e19e0c9bab240000081565b60155f9054906101000a900460ff1681565b610ac4611bbc565b81601081905550806011819055505050565b600454811161118e5760095f8281526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610b74576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bd9576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610c97575060085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015610cff575060075f8281526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15610d36576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d3e611c43565b60055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610d8991906131f2565b92505081905550610d98611c43565b60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508160095f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060075f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555f600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206001600a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080549050610eee91906131f2565b81548110610eff57610efe613225565b5b905f5260205f200154905080600a5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600b5f8581526020019081526020015f205481548110610f6b57610f6a613225565b5b905f5260205f200181905550600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805480610fc457610fc3613252565b5b600190038181905f5260205f20015f90559055600b5f8381526020019081526020015f2054600b5f8381526020019081526020015f2081905550600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2082908060018154018082558091505060019003905f5260205f20015f90919091909150556001600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805490506110ac91906131f2565b600b5f8481526020019081526020015f2081905550818373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e031487611173611c43565b6040516111809190612cf2565b60405180910390a3506112c8565b5f60065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112ba57818161123d91906131f2565b60065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b6112c5848484611c76565b50505b505050565b7f000000000000000000000000000000000000000000000000000000000000001281565b6112fc838383610ad6565b5f8273ffffffffffffffffffffffffffffffffffffffff163b141580156113e4575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168273ffffffffffffffffffffffffffffffffffffffff1663150b7a023386856040518463ffffffff1660e01b8152600401611382939291906132b2565b6020604051808303815f875af115801561139e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113c2919061334f565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b1561141b576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b60045481565b60115481565b611434611bbc565b61143e8282611f34565b5050565b61144a611bbc565b80600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60105481565b5f600d5f9054906101000a900460ff16905090565b5f60095f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611556576040517fc5723b5100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60125481565b6005602052805f5260405f205f915090505481565b61157e611bbc565b6115875f611f58565b565b5f611592611f88565b90508073ffffffffffffffffffffffffffffffffffffffff166115b3611a86565b73ffffffffffffffffffffffffffffffffffffffff161461160b57806040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016116029190612c2f565b60405180910390fd5b61161481611f58565b50565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6003805461164b90613195565b80601f016020809104026020016040519081016040528092919081815260200182805461167790613195565b80156116c25780601f10611699576101008083540402835291602001916116c2565b820191905f5260205f20905b8154815290600101906020018083116116a557829003601f168201915b505050505081565b600c602052805f5260405f205f915054906101000a900460ff1681565b8060085f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117d39190612cca565b60405180910390a35050565b5f6117eb338484611c76565b905092915050565b6117fe858585610ad6565b5f8473ffffffffffffffffffffffffffffffffffffffff163b141580156118ea575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168473ffffffffffffffffffffffffffffffffffffffff1663150b7a0233888787876040518663ffffffff1660e01b81526004016118889594939291906133a6565b6020604051808303815f875af11580156118a4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118c8919061334f565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15611921576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050505050565b611930611bbc565b600160155f6101000a81548160ff021916908315150217905550565b60605f600f805461195c90613195565b9050116119775760405180602001604052805f8152506119a3565b600f61198283611f8f565b6040516020016119939291906134e4565b6040516020818303038152906040525b9050919050565b600f80546119b790613195565b80601f01602080910402602001604051908101604052809291908181526020018280546119e390613195565b8015611a2e5780601f10611a0557610100808354040283529160200191611a2e565b820191905f5260205f20905b815481529060010190602001808311611a1157829003601f168201915b505050505081565b6006602052815f5260405f20602052805f5260405f205f91509150505481565b611a5e611bbc565b80600f9081611a6d91906136a1565b5050565b6013602052805f5260405f205f915090505481565b5f60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6008602052815f5260405f20602052805f5260405f205f915091509054906101000a900460ff1681565b611ae0611bbc565b5f60155f6101000a81548160ff021916908315150217905550565b611b03611bbc565b8060015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16611b62611617565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6014602052805f5260405f205f915090505481565b611bc4611f88565b73ffffffffffffffffffffffffffffffffffffffff16611be2611617565b73ffffffffffffffffffffffffffffffffffffffff1614611c4157611c05611f88565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611c389190612c2f565b60405180910390fd5b565b5f7f0000000000000000000000000000000000000000000000000000000000000012600a611c71919061389f565b905090565b5f611c7f612059565b60155f9054906101000a900460ff1615611cd8576012548210611cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cce90613933565b60405180910390fd5b5b600c5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16611dfc578160145f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611d729190613951565b9250508190555060115460145f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20541115611dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df2906139ce565b60405180910390fd5b5b600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16611f20578160135f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611e969190613951565b9250508190555060105460135f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20541115611f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1690613a36565b60405180910390fd5b5b611f2b84848461209a565b90509392505050565b8160029081611f4391906136a1565b508060039081611f5391906136a1565b505050565b60015f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055611f85816123ea565b50565b5f33905090565b60605f6001611f9d846124ab565b0190505f8167ffffffffffffffff811115611fbb57611fba612dd5565b5b6040519080825280601f01601f191660200182016040528015611fed5781602001600182028036833780820191505090505b5090505f82602001820190505b60011561204e578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161204357612042613a54565b5b0494505f8503611ffa575b819350505050919050565b6120616114a8565b15612098576040517fd93c066500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b5f806120a4611c43565b90505f60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508460055f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461217491906131f2565b925050819055508460055f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550600c5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661229e575f8360055f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461225d9190613a81565b84846122699190613a81565b61227391906131f2565b90505f5b8181101561229b57612288896125fc565b808061229390613ab1565b915050612277565b50505b600c5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16612377575f83826122f99190613a81565b8460055f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546123429190613a81565b61234c91906131f2565b90505f5b818110156123745761236188612841565b808061236c90613ab1565b915050612350565b50505b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e031487876040516123d49190612cf2565b60405180910390a3600193505050509392505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612507577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816124fd576124fc613a54565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612544576d04ee2d6d415b85acef8100000000838161253a57612539613a54565b5b0492506020810190505b662386f26fc10000831061257357662386f26fc10000838161256957612568613a54565b5b0492506010810190505b6305f5e100831061259c576305f5e100838161259257612591613a54565b5b0492506008810190505b61271083106125c15761271083816125b7576125b6613a54565b5b0492506004810190505b606483106125e457606483816125da576125d9613a54565b5b0492506002810190505b600a83106125f3576001810190505b80915050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612661576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206001600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805490506126ec91906131f2565b815481106126fd576126fc613225565b5b905f5260205f2001549050600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080548061275557612754613252565b5b600190038181905f5260205f20015f90559055600b5f8281526020019081526020015f205f905560095f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905560075f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055805f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b612849612059565b61285281612855565b50565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036128ba576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60045f81548092919060010191905055505f60045490505f73ffffffffffffffffffffffffffffffffffffffff1660095f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612966576040517f23369fa600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8160095f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081908060018154018082558091505060019003905f5260205f20015f90919091909150556001600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080549050612a6391906131f2565b600b5f8381526020019081526020015f2081905550808273ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612b0e578082015181840152602081019050612af3565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612b3382612ad7565b612b3d8185612ae1565b9350612b4d818560208601612af1565b612b5681612b19565b840191505092915050565b5f6020820190508181035f830152612b798184612b29565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f819050919050565b612ba481612b92565b8114612bae575f80fd5b50565b5f81359050612bbf81612b9b565b92915050565b5f60208284031215612bda57612bd9612b8a565b5b5f612be784828501612bb1565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612c1982612bf0565b9050919050565b612c2981612c0f565b82525050565b5f602082019050612c425f830184612c20565b92915050565b612c5181612c0f565b8114612c5b575f80fd5b50565b5f81359050612c6c81612c48565b92915050565b5f8060408385031215612c8857612c87612b8a565b5b5f612c9585828601612c5e565b9250506020612ca685828601612bb1565b9150509250929050565b5f8115159050919050565b612cc481612cb0565b82525050565b5f602082019050612cdd5f830184612cbb565b92915050565b612cec81612b92565b82525050565b5f602082019050612d055f830184612ce3565b92915050565b5f8060408385031215612d2157612d20612b8a565b5b5f612d2e85828601612bb1565b9250506020612d3f85828601612bb1565b9150509250929050565b5f805f60608486031215612d6057612d5f612b8a565b5b5f612d6d86828701612c5e565b9350506020612d7e86828701612c5e565b9250506040612d8f86828701612bb1565b9150509250925092565b5f60ff82169050919050565b612dae81612d99565b82525050565b5f602082019050612dc75f830184612da5565b92915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b612e0b82612b19565b810181811067ffffffffffffffff82111715612e2a57612e29612dd5565b5b80604052505050565b5f612e3c612b81565b9050612e488282612e02565b919050565b5f67ffffffffffffffff821115612e6757612e66612dd5565b5b612e7082612b19565b9050602081019050919050565b828183375f83830152505050565b5f612e9d612e9884612e4d565b612e33565b905082815260208101848484011115612eb957612eb8612dd1565b5b612ec4848285612e7d565b509392505050565b5f82601f830112612ee057612edf612dcd565b5b8135612ef0848260208601612e8b565b91505092915050565b5f8060408385031215612f0f57612f0e612b8a565b5b5f83013567ffffffffffffffff811115612f2c57612f2b612b8e565b5b612f3885828601612ecc565b925050602083013567ffffffffffffffff811115612f5957612f58612b8e565b5b612f6585828601612ecc565b9150509250929050565b612f7881612cb0565b8114612f82575f80fd5b50565b5f81359050612f9381612f6f565b92915050565b5f8060408385031215612faf57612fae612b8a565b5b5f612fbc85828601612c5e565b9250506020612fcd85828601612f85565b9150509250929050565b5f60208284031215612fec57612feb612b8a565b5b5f612ff984828501612c5e565b91505092915050565b5f80fd5b5f80fd5b5f8083601f84011261301f5761301e612dcd565b5b8235905067ffffffffffffffff81111561303c5761303b613002565b5b60208301915083600182028301111561305857613057613006565b5b9250929050565b5f805f805f6080868803121561307857613077612b8a565b5b5f61308588828901612c5e565b955050602061309688828901612c5e565b94505060406130a788828901612bb1565b935050606086013567ffffffffffffffff8111156130c8576130c7612b8e565b5b6130d48882890161300a565b92509250509295509295909350565b5f80604083850312156130f9576130f8612b8a565b5b5f61310685828601612c5e565b925050602061311785828601612c5e565b9150509250929050565b5f6020828403121561313657613135612b8a565b5b5f82013567ffffffffffffffff81111561315357613152612b8e565b5b61315f84828501612ecc565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806131ac57607f821691505b6020821081036131bf576131be613168565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6131fc82612b92565b915061320783612b92565b925082820390508181111561321f5761321e6131c5565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffd5b5f82825260208201905092915050565b50565b5f61329d5f8361327f565b91506132a88261328f565b5f82019050919050565b5f6080820190506132c55f830186612c20565b6132d26020830185612c20565b6132df6040830184612ce3565b81810360608301526132f081613292565b9050949350505050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61332e816132fa565b8114613338575f80fd5b50565b5f8151905061334981613325565b92915050565b5f6020828403121561336457613363612b8a565b5b5f6133718482850161333b565b91505092915050565b5f613385838561327f565b9350613392838584612e7d565b61339b83612b19565b840190509392505050565b5f6080820190506133b95f830188612c20565b6133c66020830187612c20565b6133d36040830186612ce3565b81810360608301526133e681848661337a565b90509695505050505050565b5f81905092915050565b5f819050815f5260205f209050919050565b5f815461341a81613195565b61342481866133f2565b9450600182165f811461343e576001811461345357613485565b60ff1983168652811515820286019350613485565b61345c856133fc565b5f5b8381101561347d5781548189015260018201915060208101905061345e565b838801955050505b50505092915050565b5f61349882612ad7565b6134a281856133f2565b93506134b2818560208601612af1565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000815250565b5f6134ef828561340e565b91506134fb828461348e565b9150613506826134be565b6005820191508190509392505050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026135607fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613525565b61356a8683613525565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6135a56135a061359b84612b92565b613582565b612b92565b9050919050565b5f819050919050565b6135be8361358b565b6135d26135ca826135ac565b848454613531565b825550505050565b5f90565b6135e66135da565b6135f18184846135b5565b505050565b5b81811015613614576136095f826135de565b6001810190506135f7565b5050565b601f8211156136595761362a816133fc565b61363384613516565b81016020851015613642578190505b61365661364e85613516565b8301826135f6565b50505b505050565b5f82821c905092915050565b5f6136795f198460080261365e565b1980831691505092915050565b5f613691838361366a565b9150826002028217905092915050565b6136aa82612ad7565b67ffffffffffffffff8111156136c3576136c2612dd5565b5b6136cd8254613195565b6136d8828285613618565b5f60209050601f831160018114613709575f84156136f7578287015190505b6137018582613686565b865550613768565b601f198416613717866133fc565b5f5b8281101561373e57848901518255600182019150602085019450602081019050613719565b8683101561375b5784890151613757601f89168261366a565b8355505b6001600288020188555050505b505050505050565b5f8160011c9050919050565b5f808291508390505b60018511156137c5578086048111156137a1576137a06131c5565b5b60018516156137b05780820291505b80810290506137be85613770565b9450613785565b94509492505050565b5f826137dd5760019050613898565b816137ea575f9050613898565b8160018114613800576002811461380a57613839565b6001915050613898565b60ff84111561381c5761381b6131c5565b5b8360020a915084821115613833576138326131c5565b5b50613898565b5060208310610133831016604e8410600b841016171561386e5782820a905083811115613869576138686131c5565b5b613898565b61387b848484600161377c565b92509050818404811115613892576138916131c5565b5b81810290505b9392505050565b5f6138a982612b92565b91506138b483612d99565b92506138e17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846137ce565b905092915050565b7f657863656564207478206c696d697400000000000000000000000000000000005f82015250565b5f61391d600f83612ae1565b9150613928826138e9565b602082019050919050565b5f6020820190508181035f83015261394a81613911565b9050919050565b5f61395b82612b92565b915061396683612b92565b925082820190508082111561397e5761397d6131c5565b5b92915050565b7f6e6f7420616c6c6f77656420616e796d6f726520746f2073656c6c00000000005f82015250565b5f6139b8601b83612ae1565b91506139c382613984565b602082019050919050565b5f6020820190508181035f8301526139e5816139ac565b9050919050565b7f6e6f7420616c6c6f77656420616e796d6f726520746f206275790000000000005f82015250565b5f613a20601a83612ae1565b9150613a2b826139ec565b602082019050919050565b5f6020820190508181035f830152613a4d81613a14565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613a8b82612b92565b9150613a9683612b92565b925082613aa657613aa5613a54565b5b828204905092915050565b5f613abb82612b92565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613aed57613aec6131c5565b5b60018201905091905056fea26469706673582212203184a02c127786de85550a192025ca993aced144554ab2f6ac6e25927915a11a64736f6c63430008140033

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

000000000000000000000000319e9b8abdb29d1e5e5d43764e691c7e8c701de600000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a

-----Decoded View---------------
Arg [0] : _owner (address): 0x319E9B8ABdB29D1e5E5d43764E691c7e8c701de6
Arg [1] : _initialSupply (uint256): 10000
Arg [2] : _decimal (uint8): 18
Arg [3] : _buylimit (uint256): 10
Arg [4] : _selllimit (uint256): 10

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 000000000000000000000000319e9b8abdb29d1e5e5d43764e691c7e8c701de6
Arg [1] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a


Deployed Bytecode Sourcemap

43479:2379:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34589:18;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35300:46;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37131:642;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34825:36;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43803:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44272:145;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38180:1716;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34725:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40192:405;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34960:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43600:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45499:158;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36460:111;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43570:23;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26371:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36643:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43631:22;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35066:44;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29744:103;;;:::i;:::-;;32381:235;;;:::i;:::-;;29069:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34643:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35911:41;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37824:207;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39955:160;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40692:437;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44548:86;;;:::i;:::-;;45665:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43537:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35180:64;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45385:106;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43660:48;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31469:101;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35411:68;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44642:86;;;:::i;:::-;;31769:181;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43715:49;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34589:18;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35300:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;37131:642::-;37234:4;37269:6;;37255:10;:20;;:38;;;;;37292:1;37279:10;:14;37255:38;37251:491;;;37310:13;37326:8;:20;37335:10;37326:20;;;;;;;;;;;;;;;;;;;;;37310:36;;37381:5;37367:19;;:10;:19;;;;:59;;;;;37391:16;:23;37408:5;37391:23;;;;;;;;;;;;;;;:35;37415:10;37391:35;;;;;;;;;;;;;;;;;;;;;;;;;37390:36;37367:59;37363:121;;;37454:14;;;;;;;;;;;;;;37363:121;37526:7;37500:11;:23;37512:10;37500:23;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;37571:7;37555:36;;37564:5;37555:36;;;37580:10;37555:36;;;;;;:::i;:::-;;;;;;;;37295:308;37251:491;;;37657:10;37624:9;:21;37634:10;37624:21;;;;;;;;;;;;;;;:30;37646:7;37624:30;;;;;;;;;;;;;;;:43;;;;37710:7;37689:41;;37698:10;37689:41;;;37719:10;37689:41;;;;;;:::i;:::-;;;;;;;;37251:491;37761:4;37754:11;;37131:642;;;;:::o;34825:36::-;;;:::o;43803:24::-;;;;;;;;;;;;;:::o;44272:145::-;28955:13;:11;:13::i;:::-;44367:9:::1;44356:8;:20;;;;44399:10;44387:9;:22;;;;44272:145:::0;;:::o;38180:1716::-;38326:6;;38312:10;:20;38308:1581;;38361:8;:20;38370:10;38361:20;;;;;;;;;;;;;;;;;;;;;38353:28;;:4;:28;;;38349:91;;38409:15;;;;;;;;;;;;;;38349:91;38474:1;38460:16;;:2;:16;;;38456:82;;38504:18;;;;;;;;;;;;;;38456:82;38590:4;38576:18;;:10;:18;;;;:74;;;;;38616:16;:22;38633:4;38616:22;;;;;;;;;;;;;;;:34;38639:10;38616:34;;;;;;;;;;;;;;;;;;;;;;;;;38615:35;38576:74;:132;;;;;38685:11;:23;38697:10;38685:23;;;;;;;;;;;;;;;;;;;;;38671:37;;:10;:37;;;;38576:132;38554:226;;;38750:14;;;;;;;;;;;;;;38554:226;38815:10;:8;:10::i;:::-;38796:9;:15;38806:4;38796:15;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;38888:10;:8;:10::i;:::-;38871:9;:13;38881:2;38871:13;;;;;;;;;;;;;;;;:27;;;;;;;;;;;38953:2;38930:8;:20;38939:10;38930:20;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;38977:11;:23;38989:10;38977:23;;;;;;;;;;;;38970:30;;;;;;;;;;;39058:17;39078:6;:12;39085:4;39078:12;;;;;;;;;;;;;;;39113:1;39091:6;:12;39098:4;39091:12;;;;;;;;;;;;;;;:19;;;;:23;;;;:::i;:::-;39078:37;;;;;;;;:::i;:::-;;;;;;;;;;39058:57;;39170:9;39130:6;:12;39137:4;39130:12;;;;;;;;;;;;;;;39143:11;:23;39155:10;39143:23;;;;;;;;;;;;39130:37;;;;;;;;:::i;:::-;;;;;;;;;:49;;;;39214:6;:12;39221:4;39214:12;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39318:11;:23;39330:10;39318:23;;;;;;;;;;;;39293:11;:22;39305:9;39293:22;;;;;;;;;;;:48;;;;39395:6;:10;39402:2;39395:10;;;;;;;;;;;;;;;39411;39395:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39525:1;39505:6;:10;39512:2;39505:10;;;;;;;;;;;;;;;:17;;;;:21;;;;:::i;:::-;39479:11;:23;39491:10;39479:23;;;;;;;;;;;:47;;;;39567:10;39563:2;39548:30;;39557:4;39548:30;;;;;;;;;;;;39618:2;39598:35;;39612:4;39598:35;;;39622:10;:8;:10::i;:::-;39598:35;;;;;;:::i;:::-;;;;;;;;38334:1311;38308:1581;;;39666:15;39684:9;:15;39694:4;39684:15;;;;;;;;;;;;;;;:27;39700:10;39684:27;;;;;;;;;;;;;;;;39666:45;;39743:17;39732:7;:28;39728:101;;39819:10;39809:7;:20;;;;:::i;:::-;39779:9;:15;39789:4;39779:15;;;;;;;;;;;;;;;:27;39795:10;39779:27;;;;;;;;;;;;;;;:50;;;;39728:101;39846:31;39856:4;39862:2;39866:10;39846:9;:31::i;:::-;;39651:238;38308:1581;38180:1716;;;:::o;34725:31::-;;;:::o;40192:405::-;40316:26;40329:4;40335:2;40339;40316:12;:26::i;:::-;40391:1;40373:2;:14;;;:19;;:154;;;;;40487:40;;;40409:118;;;40424:2;40409:35;;;40445:10;40457:4;40463:2;40409:61;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:118;;;;;40373:154;40355:235;;;40561:17;;;;;;;;;;;;;;40355:235;40192:405;;;:::o;34960:21::-;;;;:::o;43600:24::-;;;;:::o;45499:158::-;28955:13;:11;:13::i;:::-;45619:30:::1;45634:5;45641:7;45619:14;:30::i;:::-;45499:158:::0;;:::o;36460:111::-;28955:13;:11;:13::i;:::-;36558:5:::1;36538:9;:17;36548:6;36538:17;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;36460:111:::0;;:::o;43570:23::-;;;;:::o;26371:86::-;26418:4;26442:7;;;;;;;;;;;26435:14;;26371:86;:::o;36643:193::-;36701:13;36735:8;:12;36744:2;36735:12;;;;;;;;;;;;;;;;;;;;;36727:20;;36781:1;36764:19;;:5;:19;;;36760:69;;36807:10;;;;;;;;;;;;;;36760:69;36643:193;;;:::o;43631:22::-;;;;:::o;35066:44::-;;;;;;;;;;;;;;;;;:::o;29744:103::-;28955:13;:11;:13::i;:::-;29809:30:::1;29836:1;29809:18;:30::i;:::-;29744:103::o:0;32381:235::-;32434:14;32451:12;:10;:12::i;:::-;32434:29;;32496:6;32478:24;;:14;:12;:14::i;:::-;:24;;;32474:98;;32553:6;32526:34;;;;;;;;;;;:::i;:::-;;;;;;;;32474:98;32582:26;32601:6;32582:18;:26::i;:::-;32423:193;32381:235::o;29069:87::-;29115:7;29142:6;;;;;;;;;;;29135:13;;29069:87;:::o;34643:20::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35911:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;37824:207::-;37951:8;37910:16;:28;37927:10;37910:28;;;;;;;;;;;;;;;:38;37939:8;37910:38;;;;;;;;;;;;;;;;:49;;;;;;;;;;;;;;;;;;38004:8;37977:46;;37992:10;37977:46;;;38014:8;37977:46;;;;;;:::i;:::-;;;;;;;;37824:207;;:::o;39955:160::-;40050:4;40074:33;40084:10;40096:2;40100:6;40074:9;:33::i;:::-;40067:40;;39955:160;;;;:::o;40692:437::-;40846:26;40859:4;40865:2;40869;40846:12;:26::i;:::-;40921:1;40903:2;:14;;;:19;;:156;;;;;41019:40;;;40939:120;;;40954:2;40939:35;;;40975:10;40987:4;40993:2;40997:4;;40939:63;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:120;;;;;40903:156;40885:237;;;41093:17;;;;;;;;;;;;;;40885:237;40692:437;;;;;:::o;44548:86::-;28955:13;:11;:13::i;:::-;44622:4:::1;44607:12;;:19;;;;;;;;;;;;;;;;;;44548:86::o:0;45665:190::-;45725:13;45787:1;45764:12;45758:26;;;;;:::i;:::-;;;:30;:89;;;;;;;;;;;;;;;;;45805:12;45819:13;:2;:11;:13::i;:::-;45791:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45758:89;45751:96;;45665:190;;;:::o;43537:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35180:64::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45385:106::-;28955:13;:11;:13::i;:::-;45474:9:::1;45459:12;:24;;;;;;:::i;:::-;;45385:106:::0;:::o;43660:48::-;;;;;;;;;;;;;;;;;:::o;31469:101::-;31522:7;31549:13;;;;;;;;;;;31542:20;;31469:101;:::o;35411:68::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44642:86::-;28955:13;:11;:13::i;:::-;44715:5:::1;44700:12;;:20;;;;;;;;;;;;;;;;;;44642:86::o:0;31769:181::-;28955:13;:11;:13::i;:::-;31875:8:::1;31859:13;;:24;;;;;;;;;;;;;;;;;;31933:8;31899:43;;31924:7;:5;:7::i;:::-;31899:43;;;;;;;;;;;;31769:181:::0;:::o;43715:49::-;;;;;;;;;;;;;;;;;:::o;29234:166::-;29305:12;:10;:12::i;:::-;29294:23;;:7;:5;:7::i;:::-;:23;;;29290:103;;29368:12;:10;:12::i;:::-;29341:40;;;;;;;;;;;:::i;:::-;;;;;;;;29290:103;29234:166::o;42337:92::-;42380:7;42413:8;42407:2;:14;;;;:::i;:::-;42400:21;;42337:92;:::o;44736:641::-;44880:4;25976:19;:17;:19::i;:::-;44899:12:::1;;;;;;;;;;;44896:87;;;44944:7;;44935:6;:16;44927:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;44896:87;44997:9;:15;45007:4;44997:15;;;;;;;;;;;;;;;;;;;;;;;;;44993:163;;45051:6;45028:13;:19;45042:4;45028:19;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;45103:9;;45080:13;:19;45094:4;45080:19;;;;;;;;;;;;;;;;:32;;45072:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;44993:163;45170:9;:13;45180:2;45170:13;;;;;;;;;;;;;;;;;;;;;;;;;45166:153;;45219:6;45199:12;:16;45212:2;45199:16;;;;;;;;;;;;;;;;:26;;;;;;;:::i;:::-;;;;;;;;45268:8;;45248:12;:16;45261:2;45248:16;;;;;;;;;;;;;;;;:28;;45240:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;45166:153;45336:33;45352:4;45358:2;45362:6;45336:15;:33::i;:::-;45329:40;;44736:641:::0;;;;;:::o;43300:160::-;43420:5;43413:4;:12;;;;;;:::i;:::-;;43445:7;43436:6;:16;;;;;;:::i;:::-;;43300:160;;:::o;32140:156::-;32230:13;;32223:20;;;;;;;;;;;32254:34;32279:8;32254:24;:34::i;:::-;32140:156;:::o;24150:98::-;24203:7;24230:10;24223:17;;24150:98;:::o;20920:718::-;20976:13;21027:14;21064:1;21044:17;21055:5;21044:10;:17::i;:::-;:21;21027:38;;21080:20;21114:6;21103:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21080:41;;21136:11;21265:6;21261:2;21257:15;21249:6;21245:28;21238:35;;21302:290;21309:4;21302:290;;;21334:5;;;;;;;;21476:10;21471:2;21464:5;21460:14;21455:32;21450:3;21442:46;21534:2;21525:11;;;;;;:::i;:::-;;;;;21568:1;21559:5;:10;21302:290;21555:21;21302:290;21613:6;21606:13;;;;;20920:718;;;:::o;26530:132::-;26596:8;:6;:8::i;:::-;26592:63;;;26628:15;;;;;;;;;;;;;;26592:63;26530:132::o;41197:1101::-;41318:4;41335:12;41350:10;:8;:10::i;:::-;41335:25;;41371:27;41401:9;:15;41411:4;41401:15;;;;;;;;;;;;;;;;41371:45;;41427:29;41459:9;:13;41469:2;41459:13;;;;;;;;;;;;;;;;41427:45;;41504:6;41485:9;:15;41495:4;41485:15;;;;;;;;;;;;;;;;:25;;;;;;;:::i;:::-;;;;;;;;41565:6;41548:9;:13;41558:2;41548:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;41656:9;:15;41666:4;41656:15;;;;;;;;;;;;;;;;;;;;;;;;;41651:251;;41688:22;41780:4;41762:9;:15;41772:4;41762:15;;;;;;;;;;;;;;;;:22;;;;:::i;:::-;41736:4;41714:19;:26;;;;:::i;:::-;41713:72;;;;:::i;:::-;41688:97;;41805:9;41800:91;41824:14;41820:1;:18;41800:91;;;41864:11;41870:4;41864:5;:11::i;:::-;41840:3;;;;;:::i;:::-;;;;41800:91;;;;41673:229;41651:251;41978:9;:13;41988:2;41978:13;;;;;;;;;;;;;;;;;;;;;;;;;41973:247;;42008:22;42100:4;42076:21;:28;;;;:::i;:::-;42050:4;42034:9;:13;42044:2;42034:13;;;;;;;;;;;;;;;;:20;;;;:::i;:::-;42033:72;;;;:::i;:::-;42008:97;;42125:9;42120:89;42144:14;42140:1;:18;42120:89;;;42184:9;42190:2;42184:5;:9::i;:::-;42160:3;;;;;:::i;:::-;;;;42120:89;;;;41993:227;41973:247;42257:2;42237:31;;42251:4;42237:31;;;42261:6;42237:31;;;;;;:::i;:::-;;;;;;;;42286:4;42279:11;;;;;41197:1101;;;;;:::o;30382:191::-;30456:16;30475:6;;;;;;;;;;;30456:25;;30501:8;30492:6;;:17;;;;;;;;;;;;;;;;;;30556:8;30525:40;;30546:8;30525:40;;;;;;;;;;;;30445:128;30382:191;:::o;17324:948::-;17377:7;17397:14;17414:1;17397:18;;17464:8;17455:5;:17;17451:106;;17502:8;17493:17;;;;;;:::i;:::-;;;;;17539:2;17529:12;;;;17451:106;17584:8;17575:5;:17;17571:106;;17622:8;17613:17;;;;;;:::i;:::-;;;;;17659:2;17649:12;;;;17571:106;17704:8;17695:5;:17;17691:106;;17742:8;17733:17;;;;;;:::i;:::-;;;;;17779:2;17769:12;;;;17691:106;17824:7;17815:5;:16;17811:103;;17861:7;17852:16;;;;;;:::i;:::-;;;;;17897:1;17887:11;;;;17811:103;17941:7;17932:5;:16;17928:103;;17978:7;17969:16;;;;;;:::i;:::-;;;;;18014:1;18004:11;;;;17928:103;18058:7;18049:5;:16;18045:103;;18095:7;18086:16;;;;;;:::i;:::-;;;;;18131:1;18121:11;;;;18045:103;18175:7;18166:5;:16;18162:68;;18213:1;18203:11;;;;18162:68;18258:6;18251:13;;;17324:948;;;:::o;42919:373::-;42996:1;42980:18;;:4;:18;;;42976:73;;43022:15;;;;;;;;;;;;;;42976:73;43061:10;43074:6;:12;43081:4;43074:12;;;;;;;;;;;;;;;43109:1;43087:6;:12;43094:4;43087:12;;;;;;;;;;;;;;;:19;;;;:23;;;;:::i;:::-;43074:37;;;;;;;;:::i;:::-;;;;;;;;;;43061:50;;43122:6;:12;43129:4;43122:12;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;43158:11;:15;43170:2;43158:15;;;;;;;;;;;43151:22;;;43191:8;:12;43200:2;43191:12;;;;;;;;;;;;43184:19;;;;;;;;;;;43221:11;:15;43233:2;43221:15;;;;;;;;;;;;43214:22;;;;;;;;;;;43281:2;43277:1;43254:30;;43263:4;43254:30;;;;;;;;;;;;42965:327;42919:373;:::o;44425:115::-;25976:19;:17;:19::i;:::-;44517:15:::1;44529:2;44517:11;:15::i;:::-;44425:115:::0;:::o;42437:474::-;42510:1;42496:16;;:2;:16;;;42492:74;;42536:18;;;;;;;;;;;;;;42492:74;42603:6;;:8;;;;;;;;;;;;;42635:10;42648:6;;42635:19;;42695:1;42671:26;;:8;:12;42680:2;42671:12;;;;;;;;;;;;;;;;;;;;;:26;;;42667:81;;42721:15;;;;;;;;;;;;;;42667:81;42775:2;42760:8;:12;42769:2;42760:12;;;;;;;;;;;;:17;;;;;;;;;;;;;;;;;;42788:6;:10;42795:2;42788:10;;;;;;;;;;;;;;;42804:2;42788:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42856:1;42836:6;:10;42843:2;42836:10;;;;;;;;;;;;;;;:17;;;;:21;;;;:::i;:::-;42818:11;:15;42830:2;42818:15;;;;;;;;;;;:39;;;;42900:2;42896;42875:28;;42892:1;42875:28;;;;;;;;;;;;42481:430;42437:474;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:77;1713:7;1742:5;1731:16;;1676:77;;;:::o;1759:122::-;1832:24;1850:5;1832:24;:::i;:::-;1825:5;1822:35;1812:63;;1871:1;1868;1861:12;1812:63;1759:122;:::o;1887:139::-;1933:5;1971:6;1958:20;1949:29;;1987:33;2014:5;1987:33;:::i;:::-;1887:139;;;;:::o;2032:329::-;2091:6;2140:2;2128:9;2119:7;2115:23;2111:32;2108:119;;;2146:79;;:::i;:::-;2108:119;2266:1;2291:53;2336:7;2327:6;2316:9;2312:22;2291:53;:::i;:::-;2281:63;;2237:117;2032:329;;;;:::o;2367:126::-;2404:7;2444:42;2437:5;2433:54;2422:65;;2367:126;;;:::o;2499:96::-;2536:7;2565:24;2583:5;2565:24;:::i;:::-;2554:35;;2499:96;;;:::o;2601:118::-;2688:24;2706:5;2688:24;:::i;:::-;2683:3;2676:37;2601:118;;:::o;2725:222::-;2818:4;2856:2;2845:9;2841:18;2833:26;;2869:71;2937:1;2926:9;2922:17;2913:6;2869:71;:::i;:::-;2725:222;;;;:::o;2953:122::-;3026:24;3044:5;3026:24;:::i;:::-;3019:5;3016:35;3006:63;;3065:1;3062;3055:12;3006:63;2953:122;:::o;3081:139::-;3127:5;3165:6;3152:20;3143:29;;3181:33;3208:5;3181:33;:::i;:::-;3081:139;;;;:::o;3226:474::-;3294:6;3302;3351:2;3339:9;3330:7;3326:23;3322:32;3319:119;;;3357:79;;:::i;:::-;3319:119;3477:1;3502:53;3547:7;3538:6;3527:9;3523:22;3502:53;:::i;:::-;3492:63;;3448:117;3604:2;3630:53;3675:7;3666:6;3655:9;3651:22;3630:53;:::i;:::-;3620:63;;3575:118;3226:474;;;;;:::o;3706:90::-;3740:7;3783:5;3776:13;3769:21;3758:32;;3706:90;;;:::o;3802:109::-;3883:21;3898:5;3883:21;:::i;:::-;3878:3;3871:34;3802:109;;:::o;3917:210::-;4004:4;4042:2;4031:9;4027:18;4019:26;;4055:65;4117:1;4106:9;4102:17;4093:6;4055:65;:::i;:::-;3917:210;;;;:::o;4133:118::-;4220:24;4238:5;4220:24;:::i;:::-;4215:3;4208:37;4133:118;;:::o;4257:222::-;4350:4;4388:2;4377:9;4373:18;4365:26;;4401:71;4469:1;4458:9;4454:17;4445:6;4401:71;:::i;:::-;4257:222;;;;:::o;4485:474::-;4553:6;4561;4610:2;4598:9;4589:7;4585:23;4581:32;4578:119;;;4616:79;;:::i;:::-;4578:119;4736:1;4761:53;4806:7;4797:6;4786:9;4782:22;4761:53;:::i;:::-;4751:63;;4707:117;4863:2;4889:53;4934:7;4925:6;4914:9;4910:22;4889:53;:::i;:::-;4879:63;;4834:118;4485:474;;;;;:::o;4965:619::-;5042:6;5050;5058;5107:2;5095:9;5086:7;5082:23;5078:32;5075:119;;;5113:79;;:::i;:::-;5075:119;5233:1;5258:53;5303:7;5294:6;5283:9;5279:22;5258:53;:::i;:::-;5248:63;;5204:117;5360:2;5386:53;5431:7;5422:6;5411:9;5407:22;5386:53;:::i;:::-;5376:63;;5331:118;5488:2;5514:53;5559:7;5550:6;5539:9;5535:22;5514:53;:::i;:::-;5504:63;;5459:118;4965:619;;;;;:::o;5590:86::-;5625:7;5665:4;5658:5;5654:16;5643:27;;5590:86;;;:::o;5682:112::-;5765:22;5781:5;5765:22;:::i;:::-;5760:3;5753:35;5682:112;;:::o;5800:214::-;5889:4;5927:2;5916:9;5912:18;5904:26;;5940:67;6004:1;5993:9;5989:17;5980:6;5940:67;:::i;:::-;5800:214;;;;:::o;6020:117::-;6129:1;6126;6119:12;6143:117;6252:1;6249;6242:12;6266:180;6314:77;6311:1;6304:88;6411:4;6408:1;6401:15;6435:4;6432:1;6425:15;6452:281;6535:27;6557:4;6535:27;:::i;:::-;6527:6;6523:40;6665:6;6653:10;6650:22;6629:18;6617:10;6614:34;6611:62;6608:88;;;6676:18;;:::i;:::-;6608:88;6716:10;6712:2;6705:22;6495:238;6452:281;;:::o;6739:129::-;6773:6;6800:20;;:::i;:::-;6790:30;;6829:33;6857:4;6849:6;6829:33;:::i;:::-;6739:129;;;:::o;6874:308::-;6936:4;7026:18;7018:6;7015:30;7012:56;;;7048:18;;:::i;:::-;7012:56;7086:29;7108:6;7086:29;:::i;:::-;7078:37;;7170:4;7164;7160:15;7152:23;;6874:308;;;:::o;7188:146::-;7285:6;7280:3;7275;7262:30;7326:1;7317:6;7312:3;7308:16;7301:27;7188:146;;;:::o;7340:425::-;7418:5;7443:66;7459:49;7501:6;7459:49;:::i;:::-;7443:66;:::i;:::-;7434:75;;7532:6;7525:5;7518:21;7570:4;7563:5;7559:16;7608:3;7599:6;7594:3;7590:16;7587:25;7584:112;;;7615:79;;:::i;:::-;7584:112;7705:54;7752:6;7747:3;7742;7705:54;:::i;:::-;7424:341;7340:425;;;;;:::o;7785:340::-;7841:5;7890:3;7883:4;7875:6;7871:17;7867:27;7857:122;;7898:79;;:::i;:::-;7857:122;8015:6;8002:20;8040:79;8115:3;8107:6;8100:4;8092:6;8088:17;8040:79;:::i;:::-;8031:88;;7847:278;7785:340;;;;:::o;8131:834::-;8219:6;8227;8276:2;8264:9;8255:7;8251:23;8247:32;8244:119;;;8282:79;;:::i;:::-;8244:119;8430:1;8419:9;8415:17;8402:31;8460:18;8452:6;8449:30;8446:117;;;8482:79;;:::i;:::-;8446:117;8587:63;8642:7;8633:6;8622:9;8618:22;8587:63;:::i;:::-;8577:73;;8373:287;8727:2;8716:9;8712:18;8699:32;8758:18;8750:6;8747:30;8744:117;;;8780:79;;:::i;:::-;8744:117;8885:63;8940:7;8931:6;8920:9;8916:22;8885:63;:::i;:::-;8875:73;;8670:288;8131:834;;;;;:::o;8971:116::-;9041:21;9056:5;9041:21;:::i;:::-;9034:5;9031:32;9021:60;;9077:1;9074;9067:12;9021:60;8971:116;:::o;9093:133::-;9136:5;9174:6;9161:20;9152:29;;9190:30;9214:5;9190:30;:::i;:::-;9093:133;;;;:::o;9232:468::-;9297:6;9305;9354:2;9342:9;9333:7;9329:23;9325:32;9322:119;;;9360:79;;:::i;:::-;9322:119;9480:1;9505:53;9550:7;9541:6;9530:9;9526:22;9505:53;:::i;:::-;9495:63;;9451:117;9607:2;9633:50;9675:7;9666:6;9655:9;9651:22;9633:50;:::i;:::-;9623:60;;9578:115;9232:468;;;;;:::o;9706:329::-;9765:6;9814:2;9802:9;9793:7;9789:23;9785:32;9782:119;;;9820:79;;:::i;:::-;9782:119;9940:1;9965:53;10010:7;10001:6;9990:9;9986:22;9965:53;:::i;:::-;9955:63;;9911:117;9706:329;;;;:::o;10041:117::-;10150:1;10147;10140:12;10164:117;10273:1;10270;10263:12;10300:552;10357:8;10367:6;10417:3;10410:4;10402:6;10398:17;10394:27;10384:122;;10425:79;;:::i;:::-;10384:122;10538:6;10525:20;10515:30;;10568:18;10560:6;10557:30;10554:117;;;10590:79;;:::i;:::-;10554:117;10704:4;10696:6;10692:17;10680:29;;10758:3;10750:4;10742:6;10738:17;10728:8;10724:32;10721:41;10718:128;;;10765:79;;:::i;:::-;10718:128;10300:552;;;;;:::o;10858:963::-;10955:6;10963;10971;10979;10987;11036:3;11024:9;11015:7;11011:23;11007:33;11004:120;;;11043:79;;:::i;:::-;11004:120;11163:1;11188:53;11233:7;11224:6;11213:9;11209:22;11188:53;:::i;:::-;11178:63;;11134:117;11290:2;11316:53;11361:7;11352:6;11341:9;11337:22;11316:53;:::i;:::-;11306:63;;11261:118;11418:2;11444:53;11489:7;11480:6;11469:9;11465:22;11444:53;:::i;:::-;11434:63;;11389:118;11574:2;11563:9;11559:18;11546:32;11605:18;11597:6;11594:30;11591:117;;;11627:79;;:::i;:::-;11591:117;11740:64;11796:7;11787:6;11776:9;11772:22;11740:64;:::i;:::-;11722:82;;;;11517:297;10858:963;;;;;;;;:::o;11827:474::-;11895:6;11903;11952:2;11940:9;11931:7;11927:23;11923:32;11920:119;;;11958:79;;:::i;:::-;11920:119;12078:1;12103:53;12148:7;12139:6;12128:9;12124:22;12103:53;:::i;:::-;12093:63;;12049:117;12205:2;12231:53;12276:7;12267:6;12256:9;12252:22;12231:53;:::i;:::-;12221:63;;12176:118;11827:474;;;;;:::o;12307:509::-;12376:6;12425:2;12413:9;12404:7;12400:23;12396:32;12393:119;;;12431:79;;:::i;:::-;12393:119;12579:1;12568:9;12564:17;12551:31;12609:18;12601:6;12598:30;12595:117;;;12631:79;;:::i;:::-;12595:117;12736:63;12791:7;12782:6;12771:9;12767:22;12736:63;:::i;:::-;12726:73;;12522:287;12307:509;;;;:::o;12822:180::-;12870:77;12867:1;12860:88;12967:4;12964:1;12957:15;12991:4;12988:1;12981:15;13008:320;13052:6;13089:1;13083:4;13079:12;13069:22;;13136:1;13130:4;13126:12;13157:18;13147:81;;13213:4;13205:6;13201:17;13191:27;;13147:81;13275:2;13267:6;13264:14;13244:18;13241:38;13238:84;;13294:18;;:::i;:::-;13238:84;13059:269;13008:320;;;:::o;13334:180::-;13382:77;13379:1;13372:88;13479:4;13476:1;13469:15;13503:4;13500:1;13493:15;13520:194;13560:4;13580:20;13598:1;13580:20;:::i;:::-;13575:25;;13614:20;13632:1;13614:20;:::i;:::-;13609:25;;13658:1;13655;13651:9;13643:17;;13682:1;13676:4;13673:11;13670:37;;;13687:18;;:::i;:::-;13670:37;13520:194;;;;:::o;13720:180::-;13768:77;13765:1;13758:88;13865:4;13862:1;13855:15;13889:4;13886:1;13879:15;13906:180;13954:77;13951:1;13944:88;14051:4;14048:1;14041:15;14075:4;14072:1;14065:15;14092:168;14175:11;14209:6;14204:3;14197:19;14249:4;14244:3;14240:14;14225:29;;14092:168;;;;:::o;14266:114::-;;:::o;14386:362::-;14527:3;14548:65;14611:1;14606:3;14548:65;:::i;:::-;14541:72;;14622:93;14711:3;14622:93;:::i;:::-;14740:1;14735:3;14731:11;14724:18;;14386:362;;;:::o;14754:748::-;15003:4;15041:3;15030:9;15026:19;15018:27;;15055:71;15123:1;15112:9;15108:17;15099:6;15055:71;:::i;:::-;15136:72;15204:2;15193:9;15189:18;15180:6;15136:72;:::i;:::-;15218;15286:2;15275:9;15271:18;15262:6;15218:72;:::i;:::-;15337:9;15331:4;15327:20;15322:2;15311:9;15307:18;15300:48;15365:130;15490:4;15365:130;:::i;:::-;15357:138;;14754:748;;;;;;:::o;15508:149::-;15544:7;15584:66;15577:5;15573:78;15562:89;;15508:149;;;:::o;15663:120::-;15735:23;15752:5;15735:23;:::i;:::-;15728:5;15725:34;15715:62;;15773:1;15770;15763:12;15715:62;15663:120;:::o;15789:141::-;15845:5;15876:6;15870:13;15861:22;;15892:32;15918:5;15892:32;:::i;:::-;15789:141;;;;:::o;15936:349::-;16005:6;16054:2;16042:9;16033:7;16029:23;16025:32;16022:119;;;16060:79;;:::i;:::-;16022:119;16180:1;16205:63;16260:7;16251:6;16240:9;16236:22;16205:63;:::i;:::-;16195:73;;16151:127;15936:349;;;;:::o;16313:314::-;16409:3;16430:70;16493:6;16488:3;16430:70;:::i;:::-;16423:77;;16510:56;16559:6;16554:3;16547:5;16510:56;:::i;:::-;16591:29;16613:6;16591:29;:::i;:::-;16586:3;16582:39;16575:46;;16313:314;;;;;:::o;16633:660::-;16838:4;16876:3;16865:9;16861:19;16853:27;;16890:71;16958:1;16947:9;16943:17;16934:6;16890:71;:::i;:::-;16971:72;17039:2;17028:9;17024:18;17015:6;16971:72;:::i;:::-;17053;17121:2;17110:9;17106:18;17097:6;17053:72;:::i;:::-;17172:9;17166:4;17162:20;17157:2;17146:9;17142:18;17135:48;17200:86;17281:4;17272:6;17264;17200:86;:::i;:::-;17192:94;;16633:660;;;;;;;;:::o;17299:148::-;17401:11;17438:3;17423:18;;17299:148;;;;:::o;17453:141::-;17502:4;17525:3;17517:11;;17548:3;17545:1;17538:14;17582:4;17579:1;17569:18;17561:26;;17453:141;;;:::o;17624:874::-;17727:3;17764:5;17758:12;17793:36;17819:9;17793:36;:::i;:::-;17845:89;17927:6;17922:3;17845:89;:::i;:::-;17838:96;;17965:1;17954:9;17950:17;17981:1;17976:166;;;;18156:1;18151:341;;;;17943:549;;17976:166;18060:4;18056:9;18045;18041:25;18036:3;18029:38;18122:6;18115:14;18108:22;18100:6;18096:35;18091:3;18087:45;18080:52;;17976:166;;18151:341;18218:38;18250:5;18218:38;:::i;:::-;18278:1;18292:154;18306:6;18303:1;18300:13;18292:154;;;18380:7;18374:14;18370:1;18365:3;18361:11;18354:35;18430:1;18421:7;18417:15;18406:26;;18328:4;18325:1;18321:12;18316:17;;18292:154;;;18475:6;18470:3;18466:16;18459:23;;18158:334;;17943:549;;17731:767;;17624:874;;;;:::o;18504:390::-;18610:3;18638:39;18671:5;18638:39;:::i;:::-;18693:89;18775:6;18770:3;18693:89;:::i;:::-;18686:96;;18791:65;18849:6;18844:3;18837:4;18830:5;18826:16;18791:65;:::i;:::-;18881:6;18876:3;18872:16;18865:23;;18614:280;18504:390;;;;:::o;18900:182::-;19068:7;19063:3;19056:20;18900:182;:::o;19088:693::-;19355:3;19377:92;19465:3;19456:6;19377:92;:::i;:::-;19370:99;;19486:95;19577:3;19568:6;19486:95;:::i;:::-;19479:102;;19591:137;19724:3;19591:137;:::i;:::-;19753:1;19748:3;19744:11;19737:18;;19772:3;19765:10;;19088:693;;;;;:::o;19787:93::-;19824:6;19871:2;19866;19859:5;19855:14;19851:23;19841:33;;19787:93;;;:::o;19886:107::-;19930:8;19980:5;19974:4;19970:16;19949:37;;19886:107;;;;:::o;19999:393::-;20068:6;20118:1;20106:10;20102:18;20141:97;20171:66;20160:9;20141:97;:::i;:::-;20259:39;20289:8;20278:9;20259:39;:::i;:::-;20247:51;;20331:4;20327:9;20320:5;20316:21;20307:30;;20380:4;20370:8;20366:19;20359:5;20356:30;20346:40;;20075:317;;19999:393;;;;;:::o;20398:60::-;20426:3;20447:5;20440:12;;20398:60;;;:::o;20464:142::-;20514:9;20547:53;20565:34;20574:24;20592:5;20574:24;:::i;:::-;20565:34;:::i;:::-;20547:53;:::i;:::-;20534:66;;20464:142;;;:::o;20612:75::-;20655:3;20676:5;20669:12;;20612:75;;;:::o;20693:269::-;20803:39;20834:7;20803:39;:::i;:::-;20864:91;20913:41;20937:16;20913:41;:::i;:::-;20905:6;20898:4;20892:11;20864:91;:::i;:::-;20858:4;20851:105;20769:193;20693:269;;;:::o;20968:73::-;21013:3;20968:73;:::o;21047:189::-;21124:32;;:::i;:::-;21165:65;21223:6;21215;21209:4;21165:65;:::i;:::-;21100:136;21047:189;;:::o;21242:186::-;21302:120;21319:3;21312:5;21309:14;21302:120;;;21373:39;21410:1;21403:5;21373:39;:::i;:::-;21346:1;21339:5;21335:13;21326:22;;21302:120;;;21242:186;;:::o;21434:543::-;21535:2;21530:3;21527:11;21524:446;;;21569:38;21601:5;21569:38;:::i;:::-;21653:29;21671:10;21653:29;:::i;:::-;21643:8;21639:44;21836:2;21824:10;21821:18;21818:49;;;21857:8;21842:23;;21818:49;21880:80;21936:22;21954:3;21936:22;:::i;:::-;21926:8;21922:37;21909:11;21880:80;:::i;:::-;21539:431;;21524:446;21434:543;;;:::o;21983:117::-;22037:8;22087:5;22081:4;22077:16;22056:37;;21983:117;;;;:::o;22106:169::-;22150:6;22183:51;22231:1;22227:6;22219:5;22216:1;22212:13;22183:51;:::i;:::-;22179:56;22264:4;22258;22254:15;22244:25;;22157:118;22106:169;;;;:::o;22280:295::-;22356:4;22502:29;22527:3;22521:4;22502:29;:::i;:::-;22494:37;;22564:3;22561:1;22557:11;22551:4;22548:21;22540:29;;22280:295;;;;:::o;22580:1395::-;22697:37;22730:3;22697:37;:::i;:::-;22799:18;22791:6;22788:30;22785:56;;;22821:18;;:::i;:::-;22785:56;22865:38;22897:4;22891:11;22865:38;:::i;:::-;22950:67;23010:6;23002;22996:4;22950:67;:::i;:::-;23044:1;23068:4;23055:17;;23100:2;23092:6;23089:14;23117:1;23112:618;;;;23774:1;23791:6;23788:77;;;23840:9;23835:3;23831:19;23825:26;23816:35;;23788:77;23891:67;23951:6;23944:5;23891:67;:::i;:::-;23885:4;23878:81;23747:222;23082:887;;23112:618;23164:4;23160:9;23152:6;23148:22;23198:37;23230:4;23198:37;:::i;:::-;23257:1;23271:208;23285:7;23282:1;23279:14;23271:208;;;23364:9;23359:3;23355:19;23349:26;23341:6;23334:42;23415:1;23407:6;23403:14;23393:24;;23462:2;23451:9;23447:18;23434:31;;23308:4;23305:1;23301:12;23296:17;;23271:208;;;23507:6;23498:7;23495:19;23492:179;;;23565:9;23560:3;23556:19;23550:26;23608:48;23650:4;23642:6;23638:17;23627:9;23608:48;:::i;:::-;23600:6;23593:64;23515:156;23492:179;23717:1;23713;23705:6;23701:14;23697:22;23691:4;23684:36;23119:611;;;23082:887;;22672:1303;;;22580:1395;;:::o;23981:102::-;24023:8;24070:5;24067:1;24063:13;24042:34;;23981:102;;;:::o;24089:848::-;24150:5;24157:4;24181:6;24172:15;;24205:5;24196:14;;24219:712;24240:1;24230:8;24227:15;24219:712;;;24335:4;24330:3;24326:14;24320:4;24317:24;24314:50;;;24344:18;;:::i;:::-;24314:50;24394:1;24384:8;24380:16;24377:451;;;24809:4;24802:5;24798:16;24789:25;;24377:451;24859:4;24853;24849:15;24841:23;;24889:32;24912:8;24889:32;:::i;:::-;24877:44;;24219:712;;;24089:848;;;;;;;:::o;24943:1073::-;24997:5;25188:8;25178:40;;25209:1;25200:10;;25211:5;;25178:40;25237:4;25227:36;;25254:1;25245:10;;25256:5;;25227:36;25323:4;25371:1;25366:27;;;;25407:1;25402:191;;;;25316:277;;25366:27;25384:1;25375:10;;25386:5;;;25402:191;25447:3;25437:8;25434:17;25431:43;;;25454:18;;:::i;:::-;25431:43;25503:8;25500:1;25496:16;25487:25;;25538:3;25531:5;25528:14;25525:40;;;25545:18;;:::i;:::-;25525:40;25578:5;;;25316:277;;25702:2;25692:8;25689:16;25683:3;25677:4;25674:13;25670:36;25652:2;25642:8;25639:16;25634:2;25628:4;25625:12;25621:35;25605:111;25602:246;;;25758:8;25752:4;25748:19;25739:28;;25793:3;25786:5;25783:14;25780:40;;;25800:18;;:::i;:::-;25780:40;25833:5;;25602:246;25873:42;25911:3;25901:8;25895:4;25892:1;25873:42;:::i;:::-;25858:57;;;;25947:4;25942:3;25938:14;25931:5;25928:25;25925:51;;;25956:18;;:::i;:::-;25925:51;26005:4;25998:5;25994:16;25985:25;;24943:1073;;;;;;:::o;26022:281::-;26080:5;26104:23;26122:4;26104:23;:::i;:::-;26096:31;;26148:25;26164:8;26148:25;:::i;:::-;26136:37;;26192:104;26229:66;26219:8;26213:4;26192:104;:::i;:::-;26183:113;;26022:281;;;;:::o;26309:165::-;26449:17;26445:1;26437:6;26433:14;26426:41;26309:165;:::o;26480:366::-;26622:3;26643:67;26707:2;26702:3;26643:67;:::i;:::-;26636:74;;26719:93;26808:3;26719:93;:::i;:::-;26837:2;26832:3;26828:12;26821:19;;26480:366;;;:::o;26852:419::-;27018:4;27056:2;27045:9;27041:18;27033:26;;27105:9;27099:4;27095:20;27091:1;27080:9;27076:17;27069:47;27133:131;27259:4;27133:131;:::i;:::-;27125:139;;26852:419;;;:::o;27277:191::-;27317:3;27336:20;27354:1;27336:20;:::i;:::-;27331:25;;27370:20;27388:1;27370:20;:::i;:::-;27365:25;;27413:1;27410;27406:9;27399:16;;27434:3;27431:1;27428:10;27425:36;;;27441:18;;:::i;:::-;27425:36;27277:191;;;;:::o;27474:177::-;27614:29;27610:1;27602:6;27598:14;27591:53;27474:177;:::o;27657:366::-;27799:3;27820:67;27884:2;27879:3;27820:67;:::i;:::-;27813:74;;27896:93;27985:3;27896:93;:::i;:::-;28014:2;28009:3;28005:12;27998:19;;27657:366;;;:::o;28029:419::-;28195:4;28233:2;28222:9;28218:18;28210:26;;28282:9;28276:4;28272:20;28268:1;28257:9;28253:17;28246:47;28310:131;28436:4;28310:131;:::i;:::-;28302:139;;28029:419;;;:::o;28454:176::-;28594:28;28590:1;28582:6;28578:14;28571:52;28454:176;:::o;28636:366::-;28778:3;28799:67;28863:2;28858:3;28799:67;:::i;:::-;28792:74;;28875:93;28964:3;28875:93;:::i;:::-;28993:2;28988:3;28984:12;28977:19;;28636:366;;;:::o;29008:419::-;29174:4;29212:2;29201:9;29197:18;29189:26;;29261:9;29255:4;29251:20;29247:1;29236:9;29232:17;29225:47;29289:131;29415:4;29289:131;:::i;:::-;29281:139;;29008:419;;;:::o;29433:180::-;29481:77;29478:1;29471:88;29578:4;29575:1;29568:15;29602:4;29599:1;29592:15;29619:185;29659:1;29676:20;29694:1;29676:20;:::i;:::-;29671:25;;29710:20;29728:1;29710:20;:::i;:::-;29705:25;;29749:1;29739:35;;29754:18;;:::i;:::-;29739:35;29796:1;29793;29789:9;29784:14;;29619:185;;;;:::o;29810:233::-;29849:3;29872:24;29890:5;29872:24;:::i;:::-;29863:33;;29918:66;29911:5;29908:77;29905:103;;29988:18;;:::i;:::-;29905:103;30035:1;30028:5;30024:13;30017:20;;29810:233;;;:::o

Swarm Source

ipfs://3184a02c127786de85550a192025ca993aced144554ab2f6ac6e25927915a11a
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.