ETH Price: $3,391.77 (-1.60%)
Gas: 1 Gwei

Token

Snowman (SNOW)
 

Overview

Max Total Supply

888,888,888,888,888 SNOW

Holders

3,966

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000000000001 SNOW

Value
$0.00
0x4dfbb14040c6840884a3acf135c5ff6976a46406
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:
ICEToken

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-01-24
*/

// Sources flattened with hardhat v2.19.1 https://hardhat.org

// SPDX-License-Identifier: MIT AND UNLICENSED

// File @openzeppelin/contracts/utils/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (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;
    }
}


// File @openzeppelin/contracts/access/[email protected]

// Original license: SPDX_License_Identifier: MIT
// 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/token/ERC20/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Permit.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 *
 * ==== Security Considerations
 *
 * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature
 * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be
 * considered as an intention to spend the allowance in any specific way. The second is that because permits have
 * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should
 * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be
 * generally recommended is:
 *
 * ```solidity
 * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {
 *     try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}
 *     doThing(..., value);
 * }
 *
 * function doThing(..., uint256 value) public {
 *     token.safeTransferFrom(msg.sender, address(this), value);
 *     ...
 * }
 * ```
 *
 * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of
 * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also
 * {SafeERC20-safeTransferFrom}).
 *
 * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so
 * contracts should have entry points that don't rely on permit.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     *
     * CAUTION: See Security Considerations above.
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}


// File @openzeppelin/contracts/utils/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol)

pragma solidity ^0.8.20;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev The ETH balance of the account is not enough to perform the operation.
     */
    error AddressInsufficientBalance(address account);

    /**
     * @dev There's no code at `target` (it is not a contract).
     */
    error AddressEmptyCode(address target);

    /**
     * @dev A call to an address target failed. The target may have reverted.
     */
    error FailedInnerCall();

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        if (address(this).balance < amount) {
            revert AddressInsufficientBalance(address(this));
        }

        (bool success, ) = recipient.call{value: amount}("");
        if (!success) {
            revert FailedInnerCall();
        }
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason or custom error, it is bubbled
     * up by this function (like regular Solidity function calls). However, if
     * the call reverted with no returned reason, this function reverts with a
     * {FailedInnerCall} error.
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        if (address(this).balance < value) {
            revert AddressInsufficientBalance(address(this));
        }
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
     * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an
     * unsuccessful call.
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata
    ) internal view returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            // only check if target is a contract if the call was successful and the return data is empty
            // otherwise we already know that it was a contract
            if (returndata.length == 0 && target.code.length == 0) {
                revert AddressEmptyCode(target);
            }
            return returndata;
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
     * revert reason or with a default {FailedInnerCall} error.
     */
    function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            return returndata;
        }
    }

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


// File @openzeppelin/contracts/token/ERC20/utils/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.20;



/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    /**
     * @dev An operation with an ERC20 token failed.
     */
    error SafeERC20FailedOperation(address token);

    /**
     * @dev Indicates a failed `decreaseAllowance` request.
     */
    error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease);

    /**
     * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value)));
    }

    /**
     * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
     * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
     */
    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value)));
    }

    /**
     * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 oldAllowance = token.allowance(address(this), spender);
        forceApprove(token, spender, oldAllowance + value);
    }

    /**
     * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no
     * value, non-reverting calls are assumed to be successful.
     */
    function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal {
        unchecked {
            uint256 currentAllowance = token.allowance(address(this), spender);
            if (currentAllowance < requestedDecrease) {
                revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease);
            }
            forceApprove(token, spender, currentAllowance - requestedDecrease);
        }
    }

    /**
     * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
     * to be set to zero before setting it to a non-zero value, such as USDT.
     */
    function forceApprove(IERC20 token, address spender, uint256 value) internal {
        bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value));

        if (!_callOptionalReturnBool(token, approvalCall)) {
            _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0)));
            _callOptionalReturn(token, approvalCall);
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data);
        if (returndata.length != 0 && !abi.decode(returndata, (bool))) {
            revert SafeERC20FailedOperation(address(token));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     *
     * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
     */
    function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false
        // and not revert is the subcall reverts.

        (bool success, bytes memory returndata) = address(token).call(data);
        return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && address(token).code.length > 0;
    }
}


// File @openzeppelin/contracts/interfaces/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}


// File contracts/openzeppelin/ERC20.sol

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {

    mapping(address account => mapping(address spender => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

    /**
     * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
        unchecked {
            _approve(owner, spender, currentAllowance - value, false);
        }
        }
    }
}


// File contracts/ICEToken.sol

// Original license: SPDX_License_Identifier: UNLICENSED

pragma solidity =0.8.20;



contract ICEToken is ERC20, Ownable {

    /**
     * The address, responsible for doing air-drops.
     **/
    address private _airDropper;

    mapping(address account => uint256) private _balances;

    uint256 private _totalSupply;

    mapping(address => bool) public bots;

    bool public swapEnabled = false;
    bool public limitsInEffect = true;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = true;

    /**
     * @dev Addresses, excluded from limits.
     **/
    mapping(address => bool) private _limitExclusions;

    /**
     * @dev The block number, when the trading was enabled for this contract.
     *
     * 0 means trading is not enabled.
     **/
    uint256 private _tradingEnabledBlock = 0;

    /**
     * Known Uniswap router addresses.
     **/
    mapping(address => bool) private _uniswapRouters;

    /**
     * Triggered, when the trading is enabled once again.
     **/
    error TradingAlreadyEnabled();

    /**
     * Triggered, when arguments mismatch.
     **/
    error Mismatch();

    /**
     * Triggered, when the zero address was specified.
     **/
    error ZeroAddress();

    /**
     * Triggered, when the zero token address was specified.
     **/
    error ERC20ZeroToken();

    /**
     * Triggered, when the owner tries to take-away this token, needed for liquidity.
     **/
    error ForeignTokenSelfTransfer();

    /**
     * Triggered, when the bot is detected;
     */
    error NoBots();

    /**
     * Triggered, when a zero-amount operation is requested.
     */
    error ZeroAmount();

    /**
     * Triggered, when the low-level call fails while withdrawing ETH from the contract address.
     **/
    error WithdrawStuckETH();

    /**
     * Triggered, when the caller is not the air-dropper.
     **/
    error NotAirDropper();

    /**
     * @dev Checks, whether the sender is the allowed air-dropper.
     */
    modifier onlyAirDropper() {
        if (_airDropper != msg.sender) {
            revert NotAirDropper();
        }
        _;
    }

    /**
     * Triggered, when an address is marked to be / not to be a Uniswap router.
     **/
    event SetUniswapRouter(
        address indexed theAddress,
        bool indexed flag
    );

    /**
     * Called, when trading is enabled.
     **/
    event EnableTrading();

    event RemovedLimits();

    event ExcludeFromLimits(address indexed account, bool isExcluded);

    event TransferForeignToken(
        address token,
        address to,
        uint256 amount
    );

    constructor() ERC20("Snowman", "SNOW") Ownable(msg.sender) {
        _airDropper = msg.sender;
        excludeFromLimits(msg.sender, true);
        excludeFromLimits(address(this), true);
        setKnownBNBUniswapRouters(true);
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

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

    /**
     * @dev Enables receiving Ether.
     **/
    fallback() external payable {}

    /**
     * @dev Enables receiving Ether.
     **/
    receive() external payable {}

    /**
     * @return The trading enabled block number.
     **/
    function getTradingEnabledBlock() public view returns (uint256) {
        return _tradingEnabledBlock;
    }

    /**
     * @dev Enables trading for this contract.
     **/
    function enableTrading() external onlyOwner {

        if (0 != _tradingEnabledBlock) {
            revert TradingAlreadyEnabled();
        }

        swapEnabled = true;
        _tradingEnabledBlock = block.number;

        emit EnableTrading();
    }

    // Remove limits after token is stable
    function removeLimits() external onlyOwner {
        limitsInEffect = false;
        transferDelayEnabled = false;
        emit RemovedLimits();
    }

    function manageBoughtEarly(address wallet, bool flag) external onlyOwner {
        bots[wallet] = flag;
    }

    function massManageBoughtEarly(address[] calldata wallets, bool flag) external onlyOwner {
        for (uint256 i = 0; i < wallets.length; i++) {
            bots[wallets[i]] = flag;
        }
    }

    // Disable Transfer delay - cannot be re-enabled
    function disableTransferDelay() external onlyOwner {
        transferDelayEnabled = false;
    }

    // @dev Sets a new address allowed to air-drop tokens
    function setAirDropper(address newAirDropper) external onlyOwner {
        _airDropper = newAirDropper;
    }

    function getAirDropper() public view returns (address) {
        return _airDropper;
    }

    function renounceOwnership() public virtual override onlyOwner {

        super.renounceOwnership();

        // Reset the air-dropper
        _airDropper = address(0);
    }

    /**
     * @dev Distributes tokens the the given list of wallets.
     * @param recipients Addresses, to which the distribution should occur.
     * @param amounts Corresponding amounts to be distributed.
     **/
    function airdropToWallets(address[] calldata recipients, uint256[] calldata amounts) external onlyAirDropper {

        if (recipients.length != amounts.length) {
            revert Mismatch();
        }

        uint256 length = recipients.length;
        uint256 totalSupplyDelta;

        // Start of the loop
        assembly {

            // Temporary memory to save the recipient selector
            let ptr := mload(0x40)
            let ptr2 := add(ptr, 0x20)

            // Skip the 4-bytes function signature hash to load the first dynamic variable offset
            let recipientsDataOffset := calldataload(0x4)

            // Skip the 4-bytes function signature hash and the 32-bytes first dynamic variable offset to load
            // the second dynamic variable offset
            let amountsDataOffset := calldataload(0x24)

            // Loop counter
            for { let i := 0 } lt(i, length) { i := add(i, 1) } {

                // Load recipient and amount
                let offset := add(mul(i, 0x20), 0x24)
                let amount := calldataload(add(amountsDataOffset, offset))

                // Calculate the recipient slot
                mstore(ptr, calldataload(add(recipientsDataOffset, offset)))
                mstore(ptr2, _balances.slot)
                let recipientSlot := keccak256(ptr, 0x40)

                // Update stored values
                sstore(recipientSlot, add(sload(recipientSlot), amount))
                totalSupplyDelta := add(totalSupplyDelta, amount)
            }
        }

        // Update the total supply after the loop
        unchecked {
            _totalSupply += totalSupplyDelta;
        }
    }

    /**
     * @dev Excludes / includes the given address from / to limits.
     *
     * @param account The account to be included / excluded.
     * @param excluded Whether to exclude or include.
     **/
    function excludeFromLimits(address account, bool excluded) public onlyOwner {

        _limitExclusions[account] = excluded;

        emit ExcludeFromLimits(account, excluded);
    }

    function transferForeignToken(address _token, address _to) external onlyOwner {

        if (_token == address(0)) {
            revert ERC20ZeroToken();
        }

        if (_token == address(this)) {
            revert ForeignTokenSelfTransfer();
        }

        uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
        SafeERC20.safeTransfer(IERC20(_token), _to, _contractBalance);

        emit TransferForeignToken(_token, _to, _contractBalance);
    }

    /**
     * Withdraw ETH, which is stuck on this contract
     * or if someone sends it to the contract address.
     **/
    function withdrawStuckETH() external onlyOwner {

        uint256 amount = address(this).balance;
        if (0 == amount) {
            revert ZeroAmount();
        }

        bool success;
        (success,) = address(msg.sender).call{value: amount}("");
        if (!success) {
            revert WithdrawStuckETH();
        }
    }

    /**
     * Mark an address as a known Uniswap router.
     *
     * @param theAddress The address to be marked.
     * @param flag Whether this address is the Uniswap router.
     **/
    function setUniswapRouter(address theAddress, bool flag) public onlyOwner {

        // Check for zero addresses
        if (theAddress == address(0x0)) {
            revert ZeroAddress();
        }

        _uniswapRouters[theAddress] = flag;

        emit SetUniswapRouter(theAddress, flag);
    }

    /**
     * Mark all known BNB Chain Uniswap router addresses.
     *
     * @param flag Whether all these addresses should be treated as Uniswap routers.
     **/
    function setKnownBNBUniswapRouters(bool flag) public onlyOwner {

        // Uniswap V2 - not available from the official Uniswap on BNB

        // Uniswap V3 (as per https://docs.uniswap.org/contracts/v3/reference/deployments)
        // SwapRouter - not available from the official Uniswap on BNB
        // NonfungiblePositionManager:
        setUniswapRouter(0x7b8A01B39D58278b5DE7e48c8449c9f4F5170613, flag);
        // SwapRouter02:
        setUniswapRouter(0xB971eF87ede563556b2ED4b1C0b0019111Dd85d2, flag);

        // PancakeSwap
        // According to: https://docs.pancakeswap.finance/developers/smart-contracts/pancakeswap-exchange/v2-contracts/router-v2
        setUniswapRouter(0x10ED43C718714eb63d5aA57B78B54704E256024E, flag);
        // According to: https://docs.pancakeswap.finance/developers/smart-contracts/pancakeswap-exchange/v3-contracts
        setUniswapRouter(0x1b81D678ffb9C0263b24A97847620C99d213eB14, flag);
        setUniswapRouter(0x13f4EA83D0bd40E75C8222255bc855a974568Dd4, flag);

        // SushiSwap
        // According to: https://docs.sushi.com/docs/Products/Classic%20AMM/Deployment%20Addresses
        setUniswapRouter(0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506, flag);
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function __transfer(address from, address to, uint256 value) internal virtual {

        uint256 fromBalance = _balances[from];
        if (fromBalance < value) {
            revert ERC20InsufficientBalance(from, fromBalance, value);
        }

    unchecked {
        // Overflow not possible: value <= fromBalance <= totalSupply.
        _balances[from] = fromBalance - value;
    }

    unchecked {
        // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
        _balances[to] += value;
    }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Returns, whether the trading is currently enabled.
     *
     * @return Whether trading is enabled for this contract.
     */
    function _isTradingEnabled() private view returns (bool) {
        return 0 != _tradingEnabledBlock;
    }

    function _transfer(address from, address to, uint256 amount) internal {

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

        require(amount > 0, "amount must be greater than 0");

        if (!_isTradingEnabled() && _uniswapRouters[msg.sender]) {
            require(_limitExclusions[from] || _limitExclusions[to], "Trading is not active.");
        }

        if (bots[from] || bots[to]) {
            revert NoBots();
        }

        if (limitsInEffect) {
            if (from != owner() && to != owner() && to != address(0) && !_limitExclusions[from] && !_limitExclusions[to]) {

                // At launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    require(_holderLastTransferTimestamp[tx.origin] < block.number - 2 && _holderLastTransferTimestamp[to] < block.number - 2, "_transfer:: Transfer Delay enabled.  Try again later.");
                    _holderLastTransferTimestamp[tx.origin] = block.number;
                    _holderLastTransferTimestamp[to] = block.number;
                }
            }
        }

        __transfer(from, to, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"ERC20ZeroToken","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[],"name":"ForeignTokenSelfTransfer","type":"error"},{"inputs":[],"name":"Mismatch","type":"error"},{"inputs":[],"name":"NoBots","type":"error"},{"inputs":[],"name":"NotAirDropper","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":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"inputs":[],"name":"TradingAlreadyEnabled","type":"error"},{"inputs":[],"name":"WithdrawStuckETH","type":"error"},{"inputs":[],"name":"ZeroAddress","type":"error"},{"inputs":[],"name":"ZeroAmount","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":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"EnableTrading","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","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":[],"name":"RemovedLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"theAddress","type":"address"},{"indexed":true,"internalType":"bool","name":"flag","type":"bool"}],"name":"SetUniswapRouter","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":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TransferForeignToken","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airdropToWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"bots","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAirDropper","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTradingEnabledBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"bool","name":"flag","type":"bool"}],"name":"manageBoughtEarly","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"wallets","type":"address[]"},{"internalType":"bool","name":"flag","type":"bool"}],"name":"massManageBoughtEarly","outputs":[],"stateMutability":"nonpayable","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":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAirDropper","type":"address"}],"name":"setAirDropper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"flag","type":"bool"}],"name":"setKnownBNBUniswapRouters","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"theAddress","type":"address"},{"internalType":"bool","name":"flag","type":"bool"}],"name":"setUniswapRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","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":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"transferForeignToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526009805461ffff1916610100179055600b805460ff191660011790555f600d5534801562000030575f80fd5b50336040518060400160405280600781526020016629b737bbb6b0b760c91b81525060405180604001604052806004815260200163534e4f5760e01b8152508160029081620000809190620003ea565b5060036200008f8282620003ea565b5050506001600160a01b038116620000c157604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b620000cc816200010e565b50600580546001600160a01b03191633908117909155620000ef9060016200015f565b620000fc3060016200015f565b620001086001620001c7565b620004b2565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6200016962000294565b6001600160a01b0382165f818152600c6020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc92910160405180910390a25050565b620001d162000294565b620001f1737b8a01b39d58278b5de7e48c8449c9f4f517061382620002c5565b6200021173b971ef87ede563556b2ed4b1c0b0019111dd85d282620002c5565b620002317310ed43c718714eb63d5aa57b78b54704e256024e82620002c5565b62000251731b81d678ffb9c0263b24a97847620c99d213eb1482620002c5565b620002717313f4ea83d0bd40e75c8222255bc855a974568dd482620002c5565b62000291731b02da8cb0d097eb8d57a175b88c7d8b4799750682620002c5565b50565b6004546001600160a01b03163314620002c35760405163118cdaa760e01b8152336004820152602401620000b8565b565b620002cf62000294565b6001600160a01b038216620002f75760405163d92e233d60e01b815260040160405180910390fd5b6001600160a01b0382165f818152600e6020526040808220805460ff191685151590811790915590519092917f15ec7ce7d0b7216e21edf93fa0a2e776016f033369f3b69f1074f5cff69769ee91a35050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200037357607f821691505b6020821081036200039257634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620003e5575f81815260208120601f850160051c81016020861015620003c05750805b601f850160051c820191505b81811015620003e157828155600101620003cc565b5050505b505050565b81516001600160401b038111156200040657620004066200034a565b6200041e816200041784546200035e565b8462000398565b602080601f83116001811462000454575f84156200043c5750858301515b5f19600386901b1c1916600185901b178555620003e1565b5f85815260208120601f198616915b82811015620004845788860151825594840194600190910190840162000463565b5085821015620004a257878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b61173b80620004c05f395ff3fe6080604052600436106101b8575f3560e01c8063751039fc116100ea578063bfd792841161008e578063e800dff711610060578063e800dff714610510578063e884f2601461052f578063f2fde38b14610543578063f5648a4f1461056257005b8063bfd7928414610468578063c0a904a214610496578063c876d0b9146104b5578063dd62ed3e146104ce57005b80638da5cb5b116100c75780638da5cb5b146103f957806395d89b4114610416578063a9059cbb1461042a578063aea5e59d1461044957005b8063751039fc146103b25780638366e79a146103c65780638a8c523c146103e557005b8063313ce5671161015c5780635de998ef1161012e5780635de998ef146103325780636ddd17131461035157806370a082311461036a578063715018a61461039e57005b8063313ce567146102b45780634a62bb65146102cf578063588b655f146102ed5780635db7548b1461030157005b8063130a2c3c11610195578063130a2c3c1461023957806318160ddd146102585780632307b4411461027657806323b872dd1461029557005b806306fdde03146101c1578063072280c3146101eb578063095ea7b31461020a57005b366101bf57005b005b3480156101cc575f80fd5b506101d5610576565b6040516101e291906113d6565b60405180910390f35b3480156101f6575f80fd5b506101bf610205366004611430565b610606565b348015610215575f80fd5b50610229610224366004611465565b610688565b60405190151581526020016101e2565b348015610244575f80fd5b506101bf6102533660046114d5565b6106a1565b348015610263575f80fd5b506007545b6040519081526020016101e2565b348015610281575f80fd5b506101bf610290366004611528565b61071d565b3480156102a0575f80fd5b506102296102af36600461158f565b6107cb565b3480156102bf575f80fd5b50604051601281526020016101e2565b3480156102da575f80fd5b5060095461022990610100900460ff1681565b3480156102f8575f80fd5b50600d54610268565b34801561030c575f80fd5b506005546001600160a01b03165b6040516001600160a01b0390911681526020016101e2565b34801561033d575f80fd5b506101bf61034c3660046115c8565b6107f0565b34801561035c575f80fd5b506009546102299060ff1681565b348015610375575f80fd5b506102686103843660046115c8565b6001600160a01b03165f9081526006602052604090205490565b3480156103a9575f80fd5b506101bf61081a565b3480156103bd575f80fd5b506101bf61083c565b3480156103d1575f80fd5b506101bf6103e03660046115e1565b610883565b3480156103f0575f80fd5b506101bf6109a0565b348015610404575f80fd5b506004546001600160a01b031661031a565b348015610421575f80fd5b506101d5610a04565b348015610435575f80fd5b50610229610444366004611465565b610a13565b348015610454575f80fd5b506101bf610463366004611612565b610a20565b348015610473575f80fd5b506102296104823660046115c8565b60086020525f908152604090205460ff1681565b3480156104a1575f80fd5b506101bf6104b0366004611430565b610adf565b3480156104c0575f80fd5b50600b546102299060ff1681565b3480156104d9575f80fd5b506102686104e83660046115e1565b6001600160a01b039182165f9081526020818152604080832093909416825291909152205490565b34801561051b575f80fd5b506101bf61052a366004611430565b610b45565b34801561053a575f80fd5b506101bf610b77565b34801561054e575f80fd5b506101bf61055d3660046115c8565b610b8b565b34801561056d575f80fd5b506101bf610bca565b6060600280546105859061162d565b80601f01602080910402602001604051908101604052809291908181526020018280546105b19061162d565b80156105fc5780601f106105d3576101008083540402835291602001916105fc565b820191905f5260205f20905b8154815290600101906020018083116105df57829003601f168201915b5050505050905090565b61060e610c60565b6001600160a01b0382166106355760405163d92e233d60e01b815260040160405180910390fd5b6001600160a01b0382165f818152600e6020526040808220805460ff191685151590811790915590519092917f15ec7ce7d0b7216e21edf93fa0a2e776016f033369f3b69f1074f5cff69769ee91a35050565b5f33610695818585610c8f565b60019150505b92915050565b6106a9610c60565b5f5b82811015610717578160085f8686858181106106c9576106c9611665565b90506020020160208101906106de91906115c8565b6001600160a01b0316815260208101919091526040015f20805460ff19169115159190911790558061070f8161168d565b9150506106ab565b50505050565b6005546001600160a01b03163314610748576040516316ad4feb60e01b815260040160405180910390fd5b828114610768576040516377a93d8d60e01b815260040160405180910390fd5b60405183905f9060208101600435602435845b868110156107b55760208102838101602490810135875260068652604087208054928501909101359182019055959095019460010161077b565b5050600780549094019093555050505050505050565b5f336107d8858285610ca1565b6107e3858585610d14565b60019150505b9392505050565b6107f8610c60565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b610822610c60565b61082a61101c565b600580546001600160a01b0319169055565b610844610c60565b6009805461ff0019169055600b805460ff191690556040517fa4ffae85e880608d5d4365c2b682786545d136145537788e7e0940dff9f0b98c905f90a1565b61088b610c60565b6001600160a01b0382166108b25760405163dad1a1b360e01b815260040160405180910390fd5b306001600160a01b038316036108db576040516374fc211360e01b815260040160405180910390fd5b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa15801561091f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061094391906116a5565b905061095083838361102d565b604080516001600160a01b038086168252841660208201529081018290527f5661684995ab94d684bfe57a43c4141578f52d3e7374e8cd3250e2f062e13ac19060600160405180910390a1505050565b6109a8610c60565b600d54156109c957604051636b91f55d60e11b815260040160405180910390fd5b6009805460ff1916600117905543600d556040517f1d97b7cdf6b6f3405cbe398b69512e5419a0ce78232b6e9c6ffbf1466774bd8d905f90a1565b6060600380546105859061162d565b5f33610695818585610d14565b610a28610c60565b610a46737b8a01b39d58278b5de7e48c8449c9f4f517061382610606565b610a6473b971ef87ede563556b2ed4b1c0b0019111dd85d282610606565b610a827310ed43c718714eb63d5aa57b78b54704e256024e82610606565b610aa0731b81d678ffb9c0263b24a97847620c99d213eb1482610606565b610abe7313f4ea83d0bd40e75c8222255bc855a974568dd482610606565b610adc731b02da8cb0d097eb8d57a175b88c7d8b4799750682610606565b50565b610ae7610c60565b6001600160a01b0382165f818152600c6020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc92910160405180910390a25050565b610b4d610c60565b6001600160a01b03919091165f908152600860205260409020805460ff1916911515919091179055565b610b7f610c60565b600b805460ff19169055565b610b93610c60565b6001600160a01b038116610bc157604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b610adc8161107f565b610bd2610c60565b475f819003610bf457604051631f2a200560e01b815260040160405180910390fd5b6040515f90339083908381818185875af1925050503d805f8114610c33576040519150601f19603f3d011682016040523d82523d5f602084013e610c38565b606091505b50508091505080610c5c57604051633132169560e01b815260040160405180910390fd5b5050565b6004546001600160a01b03163314610c8d5760405163118cdaa760e01b8152336004820152602401610bb8565b565b610c9c83838360016110d0565b505050565b6001600160a01b038381165f90815260208181526040808320938616835292905220545f1981146107175781811015610d0657604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610bb8565b61071784848484035f6110d0565b6001600160a01b038216610d465760405163ec442f0560e01b81526001600160a01b0383166004820152602401610bb8565b5f8111610d955760405162461bcd60e51b815260206004820152601d60248201527f616d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610bb8565b600d54158015610db35750335f908152600e602052604090205460ff165b15610e3a576001600160a01b0383165f908152600c602052604090205460ff1680610df557506001600160a01b0382165f908152600c602052604090205460ff165b610e3a5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610bb8565b6001600160a01b0383165f9081526008602052604090205460ff1680610e7757506001600160a01b0382165f9081526008602052604090205460ff165b15610e94576040516230e10760e11b815260040160405180910390fd5b600954610100900460ff1615611011576004546001600160a01b03848116911614801590610ed057506004546001600160a01b03838116911614155b8015610ee457506001600160a01b03821615155b8015610f0857506001600160a01b0383165f908152600c602052604090205460ff16155b8015610f2c57506001600160a01b0382165f908152600c602052604090205460ff16155b1561101157600b5460ff161561101157610f476002436116bc565b325f908152600a6020526040902054108015610f835750610f696002436116bc565b6001600160a01b0383165f908152600a6020526040902054105b610fed5760405162461bcd60e51b815260206004820152603560248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527432b21710102a393c9030b3b0b4b7103630ba32b91760591b6064820152608401610bb8565b325f908152600a602052604080822043908190556001600160a01b03851683529120555b610c9c8383836111a0565b611024610c60565b610c8d5f61107f565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610c9c908490611251565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0384166110f95760405163e602df0560e01b81525f6004820152602401610bb8565b6001600160a01b03831661112257604051634a1406b160e11b81525f6004820152602401610bb8565b6001600160a01b038085165f90815260208181526040808320938716835292905220829055801561071757826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161119291815260200190565b60405180910390a350505050565b6001600160a01b0383165f90815260066020526040902054818110156111f25760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610bb8565b6001600160a01b038085165f8181526006602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906111929086815260200190565b5f6112656001600160a01b038416836112b2565b905080515f1415801561128957508080602001905181019061128791906116cf565b155b15610c9c57604051635274afe760e01b81526001600160a01b0384166004820152602401610bb8565b60606107e983835f845f80856001600160a01b031684866040516112d691906116ea565b5f6040518083038185875af1925050503d805f8114611310576040519150601f19603f3d011682016040523d82523d5f602084013e611315565b606091505b509150915061132586838361132f565b9695505050505050565b6060826113445761133f8261138b565b6107e9565b815115801561135b57506001600160a01b0384163b155b1561138457604051639996b31560e01b81526001600160a01b0385166004820152602401610bb8565b50806107e9565b80511561139b5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b5f5b838110156113ce5781810151838201526020016113b6565b50505f910152565b602081525f82518060208401526113f48160408501602087016113b4565b601f01601f19169190910160400192915050565b80356001600160a01b038116811461141e575f80fd5b919050565b8015158114610adc575f80fd5b5f8060408385031215611441575f80fd5b61144a83611408565b9150602083013561145a81611423565b809150509250929050565b5f8060408385031215611476575f80fd5b61147f83611408565b946020939093013593505050565b5f8083601f84011261149d575f80fd5b50813567ffffffffffffffff8111156114b4575f80fd5b6020830191508360208260051b85010111156114ce575f80fd5b9250929050565b5f805f604084860312156114e7575f80fd5b833567ffffffffffffffff8111156114fd575f80fd5b6115098682870161148d565b909450925050602084013561151d81611423565b809150509250925092565b5f805f806040858703121561153b575f80fd5b843567ffffffffffffffff80821115611552575f80fd5b61155e8883890161148d565b90965094506020870135915080821115611576575f80fd5b506115838782880161148d565b95989497509550505050565b5f805f606084860312156115a1575f80fd5b6115aa84611408565b92506115b860208501611408565b9150604084013590509250925092565b5f602082840312156115d8575f80fd5b6107e982611408565b5f80604083850312156115f2575f80fd5b6115fb83611408565b915061160960208401611408565b90509250929050565b5f60208284031215611622575f80fd5b81356107e981611423565b600181811c9082168061164157607f821691505b60208210810361165f57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b5f6001820161169e5761169e611679565b5060010190565b5f602082840312156116b5575f80fd5b5051919050565b8181038181111561069b5761069b611679565b5f602082840312156116df575f80fd5b81516107e981611423565b5f82516116fb8184602087016113b4565b919091019291505056fea26469706673582212201e01c9ed9c8dd4edeb7033d4a5741618eca583e98c11e8e4273d964f07db59ad64736f6c63430008140033

Deployed Bytecode

0x6080604052600436106101b8575f3560e01c8063751039fc116100ea578063bfd792841161008e578063e800dff711610060578063e800dff714610510578063e884f2601461052f578063f2fde38b14610543578063f5648a4f1461056257005b8063bfd7928414610468578063c0a904a214610496578063c876d0b9146104b5578063dd62ed3e146104ce57005b80638da5cb5b116100c75780638da5cb5b146103f957806395d89b4114610416578063a9059cbb1461042a578063aea5e59d1461044957005b8063751039fc146103b25780638366e79a146103c65780638a8c523c146103e557005b8063313ce5671161015c5780635de998ef1161012e5780635de998ef146103325780636ddd17131461035157806370a082311461036a578063715018a61461039e57005b8063313ce567146102b45780634a62bb65146102cf578063588b655f146102ed5780635db7548b1461030157005b8063130a2c3c11610195578063130a2c3c1461023957806318160ddd146102585780632307b4411461027657806323b872dd1461029557005b806306fdde03146101c1578063072280c3146101eb578063095ea7b31461020a57005b366101bf57005b005b3480156101cc575f80fd5b506101d5610576565b6040516101e291906113d6565b60405180910390f35b3480156101f6575f80fd5b506101bf610205366004611430565b610606565b348015610215575f80fd5b50610229610224366004611465565b610688565b60405190151581526020016101e2565b348015610244575f80fd5b506101bf6102533660046114d5565b6106a1565b348015610263575f80fd5b506007545b6040519081526020016101e2565b348015610281575f80fd5b506101bf610290366004611528565b61071d565b3480156102a0575f80fd5b506102296102af36600461158f565b6107cb565b3480156102bf575f80fd5b50604051601281526020016101e2565b3480156102da575f80fd5b5060095461022990610100900460ff1681565b3480156102f8575f80fd5b50600d54610268565b34801561030c575f80fd5b506005546001600160a01b03165b6040516001600160a01b0390911681526020016101e2565b34801561033d575f80fd5b506101bf61034c3660046115c8565b6107f0565b34801561035c575f80fd5b506009546102299060ff1681565b348015610375575f80fd5b506102686103843660046115c8565b6001600160a01b03165f9081526006602052604090205490565b3480156103a9575f80fd5b506101bf61081a565b3480156103bd575f80fd5b506101bf61083c565b3480156103d1575f80fd5b506101bf6103e03660046115e1565b610883565b3480156103f0575f80fd5b506101bf6109a0565b348015610404575f80fd5b506004546001600160a01b031661031a565b348015610421575f80fd5b506101d5610a04565b348015610435575f80fd5b50610229610444366004611465565b610a13565b348015610454575f80fd5b506101bf610463366004611612565b610a20565b348015610473575f80fd5b506102296104823660046115c8565b60086020525f908152604090205460ff1681565b3480156104a1575f80fd5b506101bf6104b0366004611430565b610adf565b3480156104c0575f80fd5b50600b546102299060ff1681565b3480156104d9575f80fd5b506102686104e83660046115e1565b6001600160a01b039182165f9081526020818152604080832093909416825291909152205490565b34801561051b575f80fd5b506101bf61052a366004611430565b610b45565b34801561053a575f80fd5b506101bf610b77565b34801561054e575f80fd5b506101bf61055d3660046115c8565b610b8b565b34801561056d575f80fd5b506101bf610bca565b6060600280546105859061162d565b80601f01602080910402602001604051908101604052809291908181526020018280546105b19061162d565b80156105fc5780601f106105d3576101008083540402835291602001916105fc565b820191905f5260205f20905b8154815290600101906020018083116105df57829003601f168201915b5050505050905090565b61060e610c60565b6001600160a01b0382166106355760405163d92e233d60e01b815260040160405180910390fd5b6001600160a01b0382165f818152600e6020526040808220805460ff191685151590811790915590519092917f15ec7ce7d0b7216e21edf93fa0a2e776016f033369f3b69f1074f5cff69769ee91a35050565b5f33610695818585610c8f565b60019150505b92915050565b6106a9610c60565b5f5b82811015610717578160085f8686858181106106c9576106c9611665565b90506020020160208101906106de91906115c8565b6001600160a01b0316815260208101919091526040015f20805460ff19169115159190911790558061070f8161168d565b9150506106ab565b50505050565b6005546001600160a01b03163314610748576040516316ad4feb60e01b815260040160405180910390fd5b828114610768576040516377a93d8d60e01b815260040160405180910390fd5b60405183905f9060208101600435602435845b868110156107b55760208102838101602490810135875260068652604087208054928501909101359182019055959095019460010161077b565b5050600780549094019093555050505050505050565b5f336107d8858285610ca1565b6107e3858585610d14565b60019150505b9392505050565b6107f8610c60565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b610822610c60565b61082a61101c565b600580546001600160a01b0319169055565b610844610c60565b6009805461ff0019169055600b805460ff191690556040517fa4ffae85e880608d5d4365c2b682786545d136145537788e7e0940dff9f0b98c905f90a1565b61088b610c60565b6001600160a01b0382166108b25760405163dad1a1b360e01b815260040160405180910390fd5b306001600160a01b038316036108db576040516374fc211360e01b815260040160405180910390fd5b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa15801561091f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061094391906116a5565b905061095083838361102d565b604080516001600160a01b038086168252841660208201529081018290527f5661684995ab94d684bfe57a43c4141578f52d3e7374e8cd3250e2f062e13ac19060600160405180910390a1505050565b6109a8610c60565b600d54156109c957604051636b91f55d60e11b815260040160405180910390fd5b6009805460ff1916600117905543600d556040517f1d97b7cdf6b6f3405cbe398b69512e5419a0ce78232b6e9c6ffbf1466774bd8d905f90a1565b6060600380546105859061162d565b5f33610695818585610d14565b610a28610c60565b610a46737b8a01b39d58278b5de7e48c8449c9f4f517061382610606565b610a6473b971ef87ede563556b2ed4b1c0b0019111dd85d282610606565b610a827310ed43c718714eb63d5aa57b78b54704e256024e82610606565b610aa0731b81d678ffb9c0263b24a97847620c99d213eb1482610606565b610abe7313f4ea83d0bd40e75c8222255bc855a974568dd482610606565b610adc731b02da8cb0d097eb8d57a175b88c7d8b4799750682610606565b50565b610ae7610c60565b6001600160a01b0382165f818152600c6020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc92910160405180910390a25050565b610b4d610c60565b6001600160a01b03919091165f908152600860205260409020805460ff1916911515919091179055565b610b7f610c60565b600b805460ff19169055565b610b93610c60565b6001600160a01b038116610bc157604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b610adc8161107f565b610bd2610c60565b475f819003610bf457604051631f2a200560e01b815260040160405180910390fd5b6040515f90339083908381818185875af1925050503d805f8114610c33576040519150601f19603f3d011682016040523d82523d5f602084013e610c38565b606091505b50508091505080610c5c57604051633132169560e01b815260040160405180910390fd5b5050565b6004546001600160a01b03163314610c8d5760405163118cdaa760e01b8152336004820152602401610bb8565b565b610c9c83838360016110d0565b505050565b6001600160a01b038381165f90815260208181526040808320938616835292905220545f1981146107175781811015610d0657604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610bb8565b61071784848484035f6110d0565b6001600160a01b038216610d465760405163ec442f0560e01b81526001600160a01b0383166004820152602401610bb8565b5f8111610d955760405162461bcd60e51b815260206004820152601d60248201527f616d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610bb8565b600d54158015610db35750335f908152600e602052604090205460ff165b15610e3a576001600160a01b0383165f908152600c602052604090205460ff1680610df557506001600160a01b0382165f908152600c602052604090205460ff165b610e3a5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610bb8565b6001600160a01b0383165f9081526008602052604090205460ff1680610e7757506001600160a01b0382165f9081526008602052604090205460ff165b15610e94576040516230e10760e11b815260040160405180910390fd5b600954610100900460ff1615611011576004546001600160a01b03848116911614801590610ed057506004546001600160a01b03838116911614155b8015610ee457506001600160a01b03821615155b8015610f0857506001600160a01b0383165f908152600c602052604090205460ff16155b8015610f2c57506001600160a01b0382165f908152600c602052604090205460ff16155b1561101157600b5460ff161561101157610f476002436116bc565b325f908152600a6020526040902054108015610f835750610f696002436116bc565b6001600160a01b0383165f908152600a6020526040902054105b610fed5760405162461bcd60e51b815260206004820152603560248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527432b21710102a393c9030b3b0b4b7103630ba32b91760591b6064820152608401610bb8565b325f908152600a602052604080822043908190556001600160a01b03851683529120555b610c9c8383836111a0565b611024610c60565b610c8d5f61107f565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610c9c908490611251565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0384166110f95760405163e602df0560e01b81525f6004820152602401610bb8565b6001600160a01b03831661112257604051634a1406b160e11b81525f6004820152602401610bb8565b6001600160a01b038085165f90815260208181526040808320938716835292905220829055801561071757826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161119291815260200190565b60405180910390a350505050565b6001600160a01b0383165f90815260066020526040902054818110156111f25760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610bb8565b6001600160a01b038085165f8181526006602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906111929086815260200190565b5f6112656001600160a01b038416836112b2565b905080515f1415801561128957508080602001905181019061128791906116cf565b155b15610c9c57604051635274afe760e01b81526001600160a01b0384166004820152602401610bb8565b60606107e983835f845f80856001600160a01b031684866040516112d691906116ea565b5f6040518083038185875af1925050503d805f8114611310576040519150601f19603f3d011682016040523d82523d5f602084013e611315565b606091505b509150915061132586838361132f565b9695505050505050565b6060826113445761133f8261138b565b6107e9565b815115801561135b57506001600160a01b0384163b155b1561138457604051639996b31560e01b81526001600160a01b0385166004820152602401610bb8565b50806107e9565b80511561139b5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b5f5b838110156113ce5781810151838201526020016113b6565b50505f910152565b602081525f82518060208401526113f48160408501602087016113b4565b601f01601f19169190910160400192915050565b80356001600160a01b038116811461141e575f80fd5b919050565b8015158114610adc575f80fd5b5f8060408385031215611441575f80fd5b61144a83611408565b9150602083013561145a81611423565b809150509250929050565b5f8060408385031215611476575f80fd5b61147f83611408565b946020939093013593505050565b5f8083601f84011261149d575f80fd5b50813567ffffffffffffffff8111156114b4575f80fd5b6020830191508360208260051b85010111156114ce575f80fd5b9250929050565b5f805f604084860312156114e7575f80fd5b833567ffffffffffffffff8111156114fd575f80fd5b6115098682870161148d565b909450925050602084013561151d81611423565b809150509250925092565b5f805f806040858703121561153b575f80fd5b843567ffffffffffffffff80821115611552575f80fd5b61155e8883890161148d565b90965094506020870135915080821115611576575f80fd5b506115838782880161148d565b95989497509550505050565b5f805f606084860312156115a1575f80fd5b6115aa84611408565b92506115b860208501611408565b9150604084013590509250925092565b5f602082840312156115d8575f80fd5b6107e982611408565b5f80604083850312156115f2575f80fd5b6115fb83611408565b915061160960208401611408565b90509250929050565b5f60208284031215611622575f80fd5b81356107e981611423565b600181811c9082168061164157607f821691505b60208210810361165f57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b5f6001820161169e5761169e611679565b5060010190565b5f602082840312156116b5575f80fd5b5051919050565b8181038181111561069b5761069b611679565b5f602082840312156116df575f80fd5b81516107e981611423565b5f82516116fb8184602087016113b4565b919091019291505056fea26469706673582212201e01c9ed9c8dd4edeb7033d4a5741618eca583e98c11e8e4273d964f07db59ad64736f6c63430008140033

Deployed Bytecode Sourcemap

37866:14308:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33072:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46689:309;;;;;;;;;;-1:-1:-1;46689:309:0;;;;;:::i;:::-;;:::i;34797:190::-;;;;;;;;;;-1:-1:-1;34797:190:0;;;;;:::i;:::-;;:::i;:::-;;;1715:14:1;;1708:22;1690:41;;1678:2;1663:18;34797:190:0;1550:187:1;42308:202:0;;;;;;;;;;-1:-1:-1;42308:202:0;;;;;:::i;:::-;;:::i;41154:108::-;;;;;;;;;;-1:-1:-1;41242:12:0;;41154:108;;;2831:25:1;;;2819:2;2804:18;41154:108:0;2685:177:1;43367:1725:0;;;;;;;;;;-1:-1:-1;43367:1725:0;;;;;:::i;:::-;;:::i;49382:249::-;;;;;;;;;;-1:-1:-1;49382:249:0;;;;;:::i;:::-;;:::i;34025:84::-;;;;;;;;;;-1:-1:-1;34025:84:0;;34099:2;4120:36:1;;4108:2;4093:18;34025:84:0;3978:184:1;38202:33:0;;;;;;;;;;-1:-1:-1;38202:33:0;;;;;;;;;;;41528:110;;;;;;;;;;-1:-1:-1;41610:20:0;;41528:110;;42856:92;;;;;;;;;;-1:-1:-1;42929:11:0;;-1:-1:-1;;;;;42929:11:0;42856:92;;;-1:-1:-1;;;;;4331:32:1;;;4313:51;;4301:2;4286:18;42856:92:0;4167:203:1;42737:111:0;;;;;;;;;;-1:-1:-1;42737:111:0;;;;;:::i;:::-;;:::i;38164:31::-;;;;;;;;;;-1:-1:-1;38164:31:0;;;;;;;;40962:127;;;;;;;;;;-1:-1:-1;40962:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;41063:18:0;41036:7;41063:18;;;:9;:18;;;;;;;40962:127;42956:180;;;;;;;;;;;;;:::i;42027:154::-;;;;;;;;;;;;;:::i;45508:495::-;;;;;;;;;;-1:-1:-1;45508:495:0;;;;;:::i;:::-;;:::i;41713:262::-;;;;;;;;;;;;;:::i;2804:87::-;;;;;;;;;;-1:-1:-1;2877:6:0;;-1:-1:-1;;;;;2877:6:0;2804:87;;33282:95;;;;;;;;;;;;;:::i;48622:182::-;;;;;;;;;;-1:-1:-1;48622:182:0;;;;;:::i;:::-;;:::i;47178:1239::-;;;;;;;;;;-1:-1:-1;47178:1239:0;;;;;:::i;:::-;;:::i;38119:36::-;;;;;;;;;;-1:-1:-1;38119:36:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;45313:187;;;;;;;;;;-1:-1:-1;45313:187:0;;;;;:::i;:::-;;:::i;38422:39::-;;;;;;;;;;-1:-1:-1;38422:39:0;;;;;;;;34336:142;;;;;;;;;;-1:-1:-1;34336:142:0;;;;;:::i;:::-;-1:-1:-1;;;;;34443:18:0;;;34416:7;34443:18;;;;;;;;;;;:27;;;;;;;;;;;;;34336:142;42189:111;;;;;;;;;;-1:-1:-1;42189:111:0;;;;;:::i;:::-;;:::i;42572:98::-;;;;;;;;;;;;;:::i;3737:220::-;;;;;;;;;;-1:-1:-1;3737:220:0;;;;;:::i;:::-;;:::i;46140:347::-;;;;;;;;;;;;;:::i;33072:91::-;33117:13;33150:5;33143:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33072:91;:::o;46689:309::-;2690:13;:11;:13::i;:::-;-1:-1:-1;;;;;46817:26:0;::::1;46813:79;;46867:13;;-1:-1:-1::0;;;46867:13:0::1;;;;;;;;;;;46813:79;-1:-1:-1::0;;;;;46904:27:0;::::1;;::::0;;;:15:::1;:27;::::0;;;;;:34;;-1:-1:-1;;46904:34:0::1;::::0;::::1;;::::0;;::::1;::::0;;;46956;;46904;;:27;46956:34:::1;::::0;::::1;46689:309:::0;;:::o;34797:190::-;34870:4;945:10;34926:31;945:10;34942:7;34951:5;34926:8;:31::i;:::-;34975:4;34968:11;;;34797:190;;;;;:::o;42308:202::-;2690:13;:11;:13::i;:::-;42413:9:::1;42408:95;42428:18:::0;;::::1;42408:95;;;42487:4;42468;:16;42473:7;;42481:1;42473:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;42468:16:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;42468:16:0;:23;;-1:-1:-1;;42468:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42448:3;::::1;::::0;::::1;:::i;:::-;;;;42408:95;;;;42308:202:::0;;;:::o;43367:1725::-;40048:11;;-1:-1:-1;;;;;40048:11:0;40063:10;40048:25;40044:80;;40097:15;;-1:-1:-1;;;40097:15:0;;;;;;;;;;;40044:80;43493:35;;::::1;43489:85;;43552:10;;-1:-1:-1::0;;;43552:10:0::1;;;;;;;;;;;43489:85;43805:4;43799:11:::0;43603:10;;43586:14:::1;::::0;43845:4:::1;43836:14:::0;::::1;44006:3;43993:17;44227:4;44214:18;43586:14:::0;44277:665:::1;44302:6;44299:1;44296:13;44277:665;;;44421:4;44414:12:::0;::::1;44603:33:::0;;;44428:4:::1;44603:33:::0;;;44590:47:::1;44578:60:::0;;44669:14:::1;44656:28:::0;;44738:4:::1;44723:20:::0;;44830;;44478:30;;;;;;44465:44:::1;44826:33:::0;;::::1;44804:56:::0;;44898:29;;;::::1;::::0;-1:-1:-1;44317:9:0::1;44277:665;;;-1:-1:-1::0;;45041:12:0::1;:32:::0;;;;::::1;::::0;;;-1:-1:-1;;;;;;;;43367:1725:0:o;49382:249::-;49469:4;945:10;49527:37;49543:4;945:10;49558:5;49527:15;:37::i;:::-;49575:26;49585:4;49591:2;49595:5;49575:9;:26::i;:::-;49619:4;49612:11;;;49382:249;;;;;;:::o;42737:111::-;2690:13;:11;:13::i;:::-;42813:11:::1;:27:::0;;-1:-1:-1;;;;;;42813:27:0::1;-1:-1:-1::0;;;;;42813:27:0;;;::::1;::::0;;;::::1;::::0;;42737:111::o;42956:180::-;2690:13;:11;:13::i;:::-;43032:25:::1;:23;:25::i;:::-;43104:11;:24:::0;;-1:-1:-1;;;;;;43104:24:0::1;::::0;;42956:180::o;42027:154::-;2690:13;:11;:13::i;:::-;42081:14:::1;:22:::0;;-1:-1:-1;;42081:22:0::1;::::0;;42114:20:::1;:28:::0;;-1:-1:-1;;42114:28:0::1;::::0;;42158:15:::1;::::0;::::1;::::0;42098:5:::1;::::0;42158:15:::1;42027:154::o:0;45508:495::-;2690:13;:11;:13::i;:::-;-1:-1:-1;;;;;45603:20:0;::::1;45599:76;;45647:16;;-1:-1:-1::0;;;45647:16:0::1;;;;;;;;;;;45599:76;45709:4;-1:-1:-1::0;;;;;45691:23:0;::::1;::::0;45687:89:::1;;45738:26;;-1:-1:-1::0;;;45738:26:0::1;;;;;;;;;;;45687:89;45815:39;::::0;-1:-1:-1;;;45815:39:0;;45848:4:::1;45815:39;::::0;::::1;4313:51:1::0;45788:24:0::1;::::0;-1:-1:-1;;;;;45815:24:0;::::1;::::0;::::1;::::0;4286:18:1;;45815:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45788:66;;45865:61;45895:6;45904:3;45909:16;45865:22;:61::i;:::-;45944:51;::::0;;-1:-1:-1;;;;;6313:15:1;;;6295:34;;6365:15;;6360:2;6345:18;;6338:43;6397:18;;;6390:34;;;45944:51:0::1;::::0;6245:2:1;6230:18;45944:51:0::1;;;;;;;45586:417;45508:495:::0;;:::o;41713:262::-;2690:13;:11;:13::i;:::-;41779:20:::1;::::0;41774:25;41770:88:::1;;41823:23;;-1:-1:-1::0;;;41823:23:0::1;;;;;;;;;;;41770:88;41870:11;:18:::0;;-1:-1:-1;;41870:18:0::1;41884:4;41870:18;::::0;;41922:12:::1;41899:20;:35:::0;41952:15:::1;::::0;::::1;::::0;41870:11:::1;::::0;41952:15:::1;41713:262::o:0;33282:95::-;33329:13;33362:7;33355:14;;;;;:::i;48622:182::-;48691:4;945:10;48747:27;945:10;48764:2;48768:5;48747:9;:27::i;47178:1239::-;2690:13;:11;:13::i;:::-;47532:66:::1;47549:42;47593:4;47532:16;:66::i;:::-;47635;47652:42;47696:4;47635:16;:66::i;:::-;47868;47885:42;47929:4;47868:16;:66::i;:::-;48065;48082:42;48126:4;48065:16;:66::i;:::-;48142;48159:42;48203:4;48142:16;:66::i;:::-;48343;48360:42;48404:4;48343:16;:66::i;:::-;47178:1239:::0;:::o;45313:187::-;2690:13;:11;:13::i;:::-;-1:-1:-1;;;;;45402:25:0;::::1;;::::0;;;:16:::1;:25;::::0;;;;;;;;:36;;-1:-1:-1;;45402:36:0::1;::::0;::::1;;::::0;;::::1;::::0;;;45456;;1690:41:1;;;45456:36:0::1;::::0;1663:18:1;45456:36:0::1;;;;;;;45313:187:::0;;:::o;42189:111::-;2690:13;:11;:13::i;:::-;-1:-1:-1;;;;;42273:12:0;;;::::1;;::::0;;;:4:::1;:12;::::0;;;;:19;;-1:-1:-1;;42273:19:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42189:111::o;42572:98::-;2690:13;:11;:13::i;:::-;42634:20:::1;:28:::0;;-1:-1:-1;;42634:28:0::1;::::0;;42572:98::o;3737:220::-;2690:13;:11;:13::i;:::-;-1:-1:-1;;;;;3822:22:0;::::1;3818:93;;3868:31;::::0;-1:-1:-1;;;3868:31:0;;3896:1:::1;3868:31;::::0;::::1;4313:51:1::0;4286:18;;3868:31:0::1;;;;;;;;3818:93;3921:28;3940:8;3921:18;:28::i;46140:347::-:0;2690:13;:11;:13::i;:::-;46217:21:::1;46200:14;46253:11:::0;;;46249:63:::1;;46288:12;;-1:-1:-1::0;;;46288:12:0::1;;;;;;;;;;;46249:63;46360:43;::::0;46324:12:::1;::::0;46368:10:::1;::::0;46392:6;;46324:12;46360:43;46324:12;46360:43;46392:6;46368:10;46360:43:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46347:56;;;;;46419:7;46414:66;;46450:18;;-1:-1:-1::0;;;46450:18:0::1;;;;;;;;;;;46414:66;46187:300;;46140:347::o:0;2969:166::-;2877:6;;-1:-1:-1;;;;;2877:6:0;945:10;3029:23;3025:103;;3076:40;;-1:-1:-1;;;3076:40:0;;945:10;3076:40;;;4313:51:1;4286:18;;3076:40:0;4167:203:1;3025:103:0;2969:166::o;35540:130::-;35625:37;35634:5;35641:7;35650:5;35657:4;35625:8;:37::i;:::-;35540:130;;;:::o;37256:475::-;-1:-1:-1;;;;;34443:18:0;;;37356:24;34443:18;;;;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;37423:37:0;;37419:305;;37500:5;37481:16;:24;37477:132;;;37533:60;;-1:-1:-1;;;37533:60:0;;-1:-1:-1;;;;;6865:32:1;;37533:60:0;;;6847:51:1;6914:18;;;6907:34;;;6957:18;;;6950:34;;;6820:18;;37533:60:0;6645:345:1;37477:132:0;37644:57;37653:5;37660:7;37688:5;37669:16;:24;37695:5;37644:8;:57::i;50905:1266::-;-1:-1:-1;;;;;50992:16:0;;50988:80;;51032:24;;-1:-1:-1;;;51032:24:0;;-1:-1:-1;;;;;4331:32:1;;51032:24:0;;;4313:51:1;4286:18;;51032:24:0;4167:203:1;50988:80:0;51097:1;51088:6;:10;51080:52;;;;-1:-1:-1;;;51080:52:0;;7197:2:1;51080:52:0;;;7179:21:1;7236:2;7216:18;;;7209:30;7275:31;7255:18;;;7248:59;7324:18;;51080:52:0;6995:353:1;51080:52:0;50869:20;;50864:25;;;51149:51;;-1:-1:-1;51189:10:0;51173:27;;;;:15;:27;;;;;;;;51149:51;51145:165;;;-1:-1:-1;;;;;51225:22:0;;;;;;:16;:22;;;;;;;;;:46;;-1:-1:-1;;;;;;51251:20:0;;;;;;:16;:20;;;;;;;;51225:46;51217:81;;;;-1:-1:-1;;;51217:81:0;;7555:2:1;51217:81:0;;;7537:21:1;7594:2;7574:18;;;7567:30;-1:-1:-1;;;7613:18:1;;;7606:52;7675:18;;51217:81:0;7353:346:1;51217:81:0;-1:-1:-1;;;;;51326:10:0;;;;;;:4;:10;;;;;;;;;:22;;-1:-1:-1;;;;;;51340:8:0;;;;;;:4;:8;;;;;;;;51326:22;51322:70;;;51372:8;;-1:-1:-1;;;51372:8:0;;;;;;;;;;;51322:70;51408:14;;;;;;;51404:719;;;2877:6;;-1:-1:-1;;;;;51443:15:0;;;2877:6;;51443:15;;;;:32;;-1:-1:-1;2877:6:0;;-1:-1:-1;;;;;51462:13:0;;;2877:6;;51462:13;;51443:32;:52;;;;-1:-1:-1;;;;;;51479:16:0;;;;51443:52;:79;;;;-1:-1:-1;;;;;;51500:22:0;;;;;;:16;:22;;;;;;;;51499:23;51443:79;:104;;;;-1:-1:-1;;;;;;51527:20:0;;;;;;:16;:20;;;;;;;;51526:21;51443:104;51439:673;;;51706:20;;;;51702:395;;;51801:16;51816:1;51801:12;:16;:::i;:::-;51788:9;51759:39;;;;:28;:39;;;;;;:58;:113;;;;-1:-1:-1;51856:16:0;51871:1;51856:12;:16;:::i;:::-;-1:-1:-1;;;;;51821:32:0;;;;;;:28;:32;;;;;;:51;51759:113;51751:179;;;;-1:-1:-1;;;51751:179:0;;8039:2:1;51751:179:0;;;8021:21:1;8078:2;8058:18;;;8051:30;8117:34;8097:18;;;8090:62;-1:-1:-1;;;8168:18:1;;;8161:51;8229:19;;51751:179:0;7837:417:1;51751:179:0;51982:9;51953:39;;;;:28;:39;;;;;;51995:12;51953:54;;;;-1:-1:-1;;;;;52030:32:0;;;;;;:47;51702:395;52135:28;52146:4;52152:2;52156:6;52135:10;:28::i;3479:103::-;2690:13;:11;:13::i;:::-;3544:30:::1;3571:1;3544:18;:30::i;19814:162::-:0;19924:43;;;-1:-1:-1;;;;;8451:32:1;;19924:43:0;;;8433:51:1;8500:18;;;;8493:34;;;19924:43:0;;;;;;;;;;8406:18:1;;;;19924:43:0;;;;;;;;-1:-1:-1;;;;;19924:43:0;-1:-1:-1;;;19924:43:0;;;19897:71;;19917:5;;19897:19;:71::i;4117:191::-;4210:6;;;-1:-1:-1;;;;;4227:17:0;;;-1:-1:-1;;;;;;4227:17:0;;;;;;;4260:40;;4210:6;;;4227:17;4210:6;;4260:40;;4191:16;;4260:40;4180:128;4117:191;:::o;36521:443::-;-1:-1:-1;;;;;36634:19:0;;36630:91;;36677:32;;-1:-1:-1;;;36677:32:0;;36706:1;36677:32;;;4313:51:1;4286:18;;36677:32:0;4167:203:1;36630:91:0;-1:-1:-1;;;;;36735:21:0;;36731:92;;36780:31;;-1:-1:-1;;;36780:31:0;;36808:1;36780:31;;;4313:51:1;4286:18;;36780:31:0;4167:203:1;36731:92:0;-1:-1:-1;;;;;36833:18:0;;;:11;:18;;;;;;;;;;;:27;;;;;;;;;:35;;;36879:78;;;;36930:7;-1:-1:-1;;;;;36914:31:0;36923:5;-1:-1:-1;;;;;36914:31:0;;36939:5;36914:31;;;;2831:25:1;;2819:2;2804:18;;2685:177;36914:31:0;;;;;;;;36521:443;;;;:::o;50016:613::-;-1:-1:-1;;;;;50129:15:0;;50107:19;50129:15;;;:9;:15;;;;;;50159:19;;;50155:109;;;50202:50;;-1:-1:-1;;;50202:50:0;;-1:-1:-1;;;;;6865:32:1;;50202:50:0;;;6847:51:1;6914:18;;;6907:34;;;6957:18;;;6950:34;;;6820:18;;50202:50:0;6645:345:1;50155:109:0;-1:-1:-1;;;;;50365:15:0;;;;;;;:9;:15;;;;;;50383:19;;;50365:37;;50549:13;;;;;;;;;;:22;;;;;;50596:25;;;;;;50397:5;2831:25:1;;2819:2;2804:18;;2685:177;22625:638:0;23049:23;23075:33;-1:-1:-1;;;;;23075:27:0;;23103:4;23075:27;:33::i;:::-;23049:59;;23123:10;:17;23144:1;23123:22;;:57;;;;;23161:10;23150:30;;;;;;;;;;;;:::i;:::-;23149:31;23123:57;23119:137;;;23204:40;;-1:-1:-1;;;23204:40:0;;-1:-1:-1;;;;;4331:32:1;;23204:40:0;;;4313:51:1;4286:18;;23204:40:0;4167:203:1;14885:153:0;14960:12;14992:38;15014:6;15022:4;15028:1;14960:12;15618;15632:23;15659:6;-1:-1:-1;;;;;15659:11:0;15678:5;15685:4;15659:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15617:73;;;;15708:55;15735:6;15743:7;15752:10;15708:26;:55::i;:::-;15701:62;15373:398;-1:-1:-1;;;;;;15373:398:0:o;16849:597::-;16997:12;17027:7;17022:417;;17051:19;17059:10;17051:7;:19::i;:::-;17022:417;;;17279:17;;:22;:49;;;;-1:-1:-1;;;;;;17305:18:0;;;:23;17279:49;17275:121;;;17356:24;;-1:-1:-1;;;17356:24:0;;-1:-1:-1;;;;;4331:32:1;;17356:24:0;;;4313:51:1;4286:18;;17356:24:0;4167:203:1;17275:121:0;-1:-1:-1;17417:10:0;17410:17;;17999:528;18132:17;;:21;18128:392;;18364:10;18358:17;18421:15;18408:10;18404:2;18400:19;18393:44;18128:392;18491:17;;-1:-1:-1;;;18491:17:0;;;;;;;;;;;14:250:1;99:1;109:113;123:6;120:1;117:13;109:113;;;199:11;;;193:18;180:11;;;173:39;145:2;138:10;109:113;;;-1:-1:-1;;256:1:1;238:16;;231:27;14:250::o;269:396::-;418:2;407:9;400:21;381:4;450:6;444:13;493:6;488:2;477:9;473:18;466:34;509:79;581:6;576:2;565:9;561:18;556:2;548:6;544:15;509:79;:::i;:::-;649:2;628:15;-1:-1:-1;;624:29:1;609:45;;;;656:2;605:54;;269:396;-1:-1:-1;;269:396:1:o;670:173::-;738:20;;-1:-1:-1;;;;;787:31:1;;777:42;;767:70;;833:1;830;823:12;767:70;670:173;;;:::o;848:118::-;934:5;927:13;920:21;913:5;910:32;900:60;;956:1;953;946:12;971:315;1036:6;1044;1097:2;1085:9;1076:7;1072:23;1068:32;1065:52;;;1113:1;1110;1103:12;1065:52;1136:29;1155:9;1136:29;:::i;:::-;1126:39;;1215:2;1204:9;1200:18;1187:32;1228:28;1250:5;1228:28;:::i;:::-;1275:5;1265:15;;;971:315;;;;;:::o;1291:254::-;1359:6;1367;1420:2;1408:9;1399:7;1395:23;1391:32;1388:52;;;1436:1;1433;1426:12;1388:52;1459:29;1478:9;1459:29;:::i;:::-;1449:39;1535:2;1520:18;;;;1507:32;;-1:-1:-1;;;1291:254:1:o;1742:367::-;1805:8;1815:6;1869:3;1862:4;1854:6;1850:17;1846:27;1836:55;;1887:1;1884;1877:12;1836:55;-1:-1:-1;1910:20:1;;1953:18;1942:30;;1939:50;;;1985:1;1982;1975:12;1939:50;2022:4;2014:6;2010:17;1998:29;;2082:3;2075:4;2065:6;2062:1;2058:14;2050:6;2046:27;2042:38;2039:47;2036:67;;;2099:1;2096;2089:12;2036:67;1742:367;;;;;:::o;2114:566::-;2206:6;2214;2222;2275:2;2263:9;2254:7;2250:23;2246:32;2243:52;;;2291:1;2288;2281:12;2243:52;2331:9;2318:23;2364:18;2356:6;2353:30;2350:50;;;2396:1;2393;2386:12;2350:50;2435:70;2497:7;2488:6;2477:9;2473:22;2435:70;:::i;:::-;2524:8;;-1:-1:-1;2409:96:1;-1:-1:-1;;2609:2:1;2594:18;;2581:32;2622:28;2581:32;2622:28;:::i;:::-;2669:5;2659:15;;;2114:566;;;;;:::o;2867:773::-;2989:6;2997;3005;3013;3066:2;3054:9;3045:7;3041:23;3037:32;3034:52;;;3082:1;3079;3072:12;3034:52;3122:9;3109:23;3151:18;3192:2;3184:6;3181:14;3178:34;;;3208:1;3205;3198:12;3178:34;3247:70;3309:7;3300:6;3289:9;3285:22;3247:70;:::i;:::-;3336:8;;-1:-1:-1;3221:96:1;-1:-1:-1;3424:2:1;3409:18;;3396:32;;-1:-1:-1;3440:16:1;;;3437:36;;;3469:1;3466;3459:12;3437:36;;3508:72;3572:7;3561:8;3550:9;3546:24;3508:72;:::i;:::-;2867:773;;;;-1:-1:-1;3599:8:1;-1:-1:-1;;;;2867:773:1:o;3645:328::-;3722:6;3730;3738;3791:2;3779:9;3770:7;3766:23;3762:32;3759:52;;;3807:1;3804;3797:12;3759:52;3830:29;3849:9;3830:29;:::i;:::-;3820:39;;3878:38;3912:2;3901:9;3897:18;3878:38;:::i;:::-;3868:48;;3963:2;3952:9;3948:18;3935:32;3925:42;;3645:328;;;;;:::o;4375:186::-;4434:6;4487:2;4475:9;4466:7;4462:23;4458:32;4455:52;;;4503:1;4500;4493:12;4455:52;4526:29;4545:9;4526:29;:::i;4566:260::-;4634:6;4642;4695:2;4683:9;4674:7;4670:23;4666:32;4663:52;;;4711:1;4708;4701:12;4663:52;4734:29;4753:9;4734:29;:::i;:::-;4724:39;;4782:38;4816:2;4805:9;4801:18;4782:38;:::i;:::-;4772:48;;4566:260;;;;;:::o;4831:241::-;4887:6;4940:2;4928:9;4919:7;4915:23;4911:32;4908:52;;;4956:1;4953;4946:12;4908:52;4995:9;4982:23;5014:28;5036:5;5014:28;:::i;5077:380::-;5156:1;5152:12;;;;5199;;;5220:61;;5274:4;5266:6;5262:17;5252:27;;5220:61;5327:2;5319:6;5316:14;5296:18;5293:38;5290:161;;5373:10;5368:3;5364:20;5361:1;5354:31;5408:4;5405:1;5398:15;5436:4;5433:1;5426:15;5290:161;;5077:380;;;:::o;5462:127::-;5523:10;5518:3;5514:20;5511:1;5504:31;5554:4;5551:1;5544:15;5578:4;5575:1;5568:15;5594:127;5655:10;5650:3;5646:20;5643:1;5636:31;5686:4;5683:1;5676:15;5710:4;5707:1;5700:15;5726:135;5765:3;5786:17;;;5783:43;;5806:18;;:::i;:::-;-1:-1:-1;5853:1:1;5842:13;;5726:135::o;5866:184::-;5936:6;5989:2;5977:9;5968:7;5964:23;5960:32;5957:52;;;6005:1;6002;5995:12;5957:52;-1:-1:-1;6028:16:1;;5866:184;-1:-1:-1;5866:184:1:o;7704:128::-;7771:9;;;7792:11;;;7789:37;;;7806:18;;:::i;8538:245::-;8605:6;8658:2;8646:9;8637:7;8633:23;8629:32;8626:52;;;8674:1;8671;8664:12;8626:52;8706:9;8700:16;8725:28;8747:5;8725:28;:::i;8788:287::-;8917:3;8955:6;8949:13;8971:66;9030:6;9025:3;9018:4;9010:6;9006:17;8971:66;:::i;:::-;9053:16;;;;;8788:287;-1:-1:-1;;8788:287:1:o

Swarm Source

ipfs://1e01c9ed9c8dd4edeb7033d4a5741618eca583e98c11e8e4273d964f07db59ad
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.