ETH Price: $3,481.09 (+7.24%)
Gas: 6 Gwei

Token

Satsmile (SSMILE)
 

Overview

Max Total Supply

21,000,000 SSMILE

Holders

117

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000008572965 SSMILE

Value
$0.00
0x5abbc66af123319b72ece7ed4ab68de97fb18d7f
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:
SatSmile

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
london EvmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-24
*/

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


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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. 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 {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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


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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


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

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
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/[email protected]

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

pragma solidity ^0.8.0;



/**
 * @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}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * 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.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => 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 override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override 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 override returns (uint8) {
        return 18;
    }

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` 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 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        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 `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `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.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` 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.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}


// File contracts/IUniswapV2Router01.sol

pragma solidity >=0.6.2;

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

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}


// File contracts/IUniswapV2Router02.sol

pragma solidity >=0.6.2;

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}


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

// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}


// File contracts/IUniswapV2Factory.sol

pragma solidity >=0.5.0;

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}


// File contracts/SatSmile.sol

// Original license: SPDX_License_Identifier: UNLICENSED
pragma solidity ^0.8.0;

contract SatSmile is Ownable, ERC20 {
    using SafeMath for uint256;

    uint256 private initToken = 21000000 * 10 ** 18;

    IUniswapV2Router02 public uniswapV2Router;
    IUniswapV2Factory public factory;
    address public pair;
    address public feeAddress;
    uint256 private buyFee = 30;
    uint256 private sellFee = 30;

    uint256 public swapFeeEndTime;
    uint256 public swapFeeInterval = 10 minutes;
    bool inSwap = false;

    mapping(address => bool) public isExcludedFromFee;

    bool public tradingEnabled;
    constructor(address _router) ERC20("Satsmile", "SSMILE") {
        _mint(_msgSender(), initToken);
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(_router);
        uniswapV2Router = _uniswapV2Router;
        factory = IUniswapV2Factory(_uniswapV2Router.factory());
        feeAddress = address(0x32F57cee76be1eD5F75d378fC41E80e20Ba9732c);
        isExcludedFromFee[_msgSender()] = true;
        isExcludedFromFee[feeAddress] = true;
        isExcludedFromFee[address(this)] = true;
        tradingEnabled = false;
        address _pair = factory.createPair(uniswapV2Router.WETH(), address(this));
        pair = _pair;
    }

    modifier lockTheSwap() {
        inSwap = true;
        _;
        inSwap = false;
    }

    function burn(uint256 amount) public {
        _burn(_msgSender(), amount);
    }

    function enableTrading() external onlyOwner {
        require(!tradingEnabled, "Trading already enabled.");
        tradingEnabled = true;
        swapFeeEndTime = block.timestamp + swapFeeInterval;
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual override {

        uint256 taxFee;
        require(tradingEnabled || isExcludedFromFee[sender] || isExcludedFromFee[recipient], "Trading not yet enabled!");
        if (balanceOf(address(this)) > 0 && !inSwap && !isPair(sender)) {
            swapFeeToFee();
        }
        //Take Fee
        if (!isExcludedFromFee[sender] && isPair(recipient)) {
            if(block.timestamp <= swapFeeEndTime) taxFee = buyFee;
        } else if (!isExcludedFromFee[recipient] && isPair(sender)) {
            if(block.timestamp <= swapFeeEndTime) taxFee = sellFee;
        }

        if (taxFee > 0 && sender != address(this) && recipient != address(this)) {
            uint256 _fee = amount.mul(taxFee).div(100);
            super._transfer(sender, address(this), _fee);
            amount = amount.sub(_fee);
        }

        super._transfer(sender, recipient, amount);
    }

    function swapFeeToFee() internal lockTheSwap {
        uint256 numTokenToSell = balanceOf(address(this));
        swapTokensForETH(numTokenToSell);
    }

    function swapTokensForETH(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.swapExactTokensForETH(tokenAmount, 0, path, feeAddress, block.timestamp);
    }

    function setExcludeFromFee(address _address, bool _status) external onlyOwner {
        require(_address != address(0), "0x is not accepted here");
        require(isExcludedFromFee[_address] != _status, "Status was set");
        isExcludedFromFee[_address] = _status;
    }

    function isPair(address _pair) public view returns (bool) {
        return pair==_pair;
    }

    // receive eth
    receive() external payable {}

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_router","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"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":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"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":"amount","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":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"factory","outputs":[{"internalType":"contract IUniswapV2Factory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"}],"name":"isPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setExcludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapFeeEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapFeeInterval","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","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":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526a115eec47f6cf7e35000000600655601e600b819055600c55610258600e55600f805460ff191690553480156200003a57600080fd5b5060405162001baa38038062001baa8339810160408190526200005d9162000450565b60405180604001604052806008815260200167536174736d696c6560c01b8152506040518060400160405280600681526020016553534d494c4560d01b815250620000b7620000b16200032f60201b60201c565b62000333565b6004620000c5838262000526565b506005620000d4828262000526565b505050620000f4620000eb6200032f60201b60201c565b60065462000383565b600780546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b8152905183929163c45a01559160048083019260209291908290030181865afa15801562000150573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000176919062000450565b600880546001600160a01b03929092166001600160a01b0319928316179055600a80549091167332f57cee76be1ed5f75d378fc41e80e20ba9732c179055600160106000620001c23390565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055600a5482168152601084528281208054861660019081179091553082528382208054871690911790556011805490951690945560085460075483516315ab88c960e31b815293519183169463c9c6539694919093169263ad5c4648926004808401938290030181865afa1580156200026c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000292919062000450565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201523060248201526044016020604051808303816000875af1158015620002df573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000305919062000450565b600980546001600160a01b0319166001600160a01b03929092169190911790555062000619915050565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620003de5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060036000828254620003f29190620005f2565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b6000602082840312156200046357600080fd5b81516001600160a01b03811681146200047b57600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620004ad57607f821691505b602082108103620004ce57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200044b57600081815260208120601f850160051c81016020861015620004fd5750805b601f850160051c820191505b818110156200051e5782815560010162000509565b505050505050565b81516001600160401b0381111562000542576200054262000482565b6200055a8162000553845462000498565b84620004d4565b602080601f831160018114620005925760008415620005795750858301515b600019600386901b1c1916600185901b1785556200051e565b600085815260208120601f198616915b82811015620005c357888601518255948401946001909101908401620005a2565b5085821015620005e25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082198211156200061457634e487b7160e01b600052601160045260246000fd5b500190565b61158180620006296000396000f3fe6080604052600436106101855760003560e01c806370a08231116100d1578063a8aa1b311161008a578063c45a015511610064578063c45a01551461046a578063dd62ed3e1461048a578063e5e31b13146104aa578063f2fde38b146104d957600080fd5b8063a8aa1b311461040a578063a9059cbb1461042a578063af9549e01461044a57600080fd5b806370a0823114610357578063715018a61461038d5780638a8c523c146103a25780638da5cb5b146103b757806395d89b41146103d5578063a457c2d7146103ea57600080fd5b8063313ce5671161013e57806342966c681161011857806342966c68146102d557806344dc70b7146102f75780634ada218b1461030d5780635342acb41461032757600080fd5b8063313ce56714610279578063395093511461029557806341275358146102b557600080fd5b806306fdde0314610191578063095ea7b3146101bc5780631694505e146101ec57806318160ddd1461022457806323b872dd14610243578063247e722d1461026357600080fd5b3661018c57005b600080fd5b34801561019d57600080fd5b506101a66104f9565b6040516101b3919061119a565b60405180910390f35b3480156101c857600080fd5b506101dc6101d7366004611204565b61058b565b60405190151581526020016101b3565b3480156101f857600080fd5b5060075461020c906001600160a01b031681565b6040516001600160a01b0390911681526020016101b3565b34801561023057600080fd5b506003545b6040519081526020016101b3565b34801561024f57600080fd5b506101dc61025e366004611230565b6105a3565b34801561026f57600080fd5b50610235600e5481565b34801561028557600080fd5b50604051601281526020016101b3565b3480156102a157600080fd5b506101dc6102b0366004611204565b6105c7565b3480156102c157600080fd5b50600a5461020c906001600160a01b031681565b3480156102e157600080fd5b506102f56102f0366004611271565b6105e9565b005b34801561030357600080fd5b50610235600d5481565b34801561031957600080fd5b506011546101dc9060ff1681565b34801561033357600080fd5b506101dc61034236600461128a565b60106020526000908152604090205460ff1681565b34801561036357600080fd5b5061023561037236600461128a565b6001600160a01b031660009081526001602052604090205490565b34801561039957600080fd5b506102f56105f6565b3480156103ae57600080fd5b506102f561060a565b3480156103c357600080fd5b506000546001600160a01b031661020c565b3480156103e157600080fd5b506101a6610689565b3480156103f657600080fd5b506101dc610405366004611204565b610698565b34801561041657600080fd5b5060095461020c906001600160a01b031681565b34801561043657600080fd5b506101dc610445366004611204565b610713565b34801561045657600080fd5b506102f56104653660046112a7565b610721565b34801561047657600080fd5b5060085461020c906001600160a01b031681565b34801561049657600080fd5b506102356104a53660046112e5565b61080b565b3480156104b657600080fd5b506101dc6104c536600461128a565b6009546001600160a01b0390811691161490565b3480156104e557600080fd5b506102f56104f436600461128a565b610836565b60606004805461050890611313565b80601f016020809104026020016040519081016040528092919081815260200182805461053490611313565b80156105815780601f1061055657610100808354040283529160200191610581565b820191906000526020600020905b81548152906001019060200180831161056457829003601f168201915b5050505050905090565b6000336105998185856108ac565b5060019392505050565b6000336105b18582856109d1565b6105bc858585610a4b565b506001949350505050565b6000336105998185856105da838361080b565b6105e49190611363565b6108ac565b6105f33382610c34565b50565b6105fe610d65565b6106086000610dbf565b565b610612610d65565b60115460ff161561066a5760405162461bcd60e51b815260206004820152601860248201527f54726164696e6720616c726561647920656e61626c65642e000000000000000060448201526064015b60405180910390fd5b6011805460ff19166001179055600e546106849042611363565b600d55565b60606005805461050890611313565b600033816106a6828661080b565b9050838110156107065760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610661565b6105bc82868684036108ac565b600033610599818585610a4b565b610729610d65565b6001600160a01b03821661077f5760405162461bcd60e51b815260206004820152601760248201527f3078206973206e6f7420616363657074656420686572650000000000000000006044820152606401610661565b6001600160a01b03821660009081526010602052604090205481151560ff9091161515036107e05760405162461bcd60e51b815260206004820152600e60248201526d14dd185d1d5cc81dd85cc81cd95d60921b6044820152606401610661565b6001600160a01b03919091166000908152601060205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61083e610d65565b6001600160a01b0381166108a35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610661565b6105f381610dbf565b6001600160a01b03831661090e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610661565b6001600160a01b03821661096f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610661565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006109dd848461080b565b90506000198114610a455781811015610a385760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610661565b610a4584848484036108ac565b50505050565b60115460009060ff1680610a7757506001600160a01b03841660009081526010602052604090205460ff165b80610a9a57506001600160a01b03831660009081526010602052604090205460ff165b610ae65760405162461bcd60e51b815260206004820152601860248201527f54726164696e67206e6f742079657420656e61626c65642100000000000000006044820152606401610661565b30600090815260016020526040812054118015610b065750600f5460ff16155b8015610b2057506009546001600160a01b03808616911614155b15610b2d57610b2d610e0f565b6001600160a01b03841660009081526010602052604090205460ff16158015610b6357506009546001600160a01b038085169116145b15610b7b57600d544211610b765750600b545b610bc4565b6001600160a01b03831660009081526010602052604090205460ff16158015610bb157506009546001600160a01b038086169116145b15610bc457600d544211610bc45750600c545b600081118015610bdd57506001600160a01b0384163014155b8015610bf257506001600160a01b0383163014155b15610c29576000610c0e6064610c088585610e55565b90610e68565b9050610c1b853083610e74565b610c25838261101f565b9250505b610a45848484610e74565b6001600160a01b038216610c945760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610661565b6001600160a01b03821660009081526001602052604090205481811015610d085760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610661565b6001600160a01b03831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016109c4565b505050565b6000546001600160a01b031633146106085760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610661565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600f805460ff191660011790556000610e3d306001600160a01b031660009081526001602052604090205490565b9050610e488161102b565b50600f805460ff19169055565b6000610e61828461137b565b9392505050565b6000610e61828461139a565b6001600160a01b038316610ed85760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610661565b6001600160a01b038216610f3a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610661565b6001600160a01b03831660009081526001602052604090205481811015610fb25760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610661565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906110129086815260200190565b60405180910390a3610a45565b6000610e6182846113bc565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611060576110606113e9565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156110b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110dd91906113ff565b816001815181106110f0576110f06113e9565b6001600160a01b03928316602091820292909201015260075461111691309116846108ac565b600754600a546040516318cbafe560e01b81526001600160a01b03928316926318cbafe5926111539287926000928892911690429060040161141c565b6000604051808303816000875af1158015611172573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610d60919081019061148d565b600060208083528351808285015260005b818110156111c7578581018301518582016040015282016111ab565b818111156111d9576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146105f357600080fd5b6000806040838503121561121757600080fd5b8235611222816111ef565b946020939093013593505050565b60008060006060848603121561124557600080fd5b8335611250816111ef565b92506020840135611260816111ef565b929592945050506040919091013590565b60006020828403121561128357600080fd5b5035919050565b60006020828403121561129c57600080fd5b8135610e61816111ef565b600080604083850312156112ba57600080fd5b82356112c5816111ef565b9150602083013580151581146112da57600080fd5b809150509250929050565b600080604083850312156112f857600080fd5b8235611303816111ef565b915060208301356112da816111ef565b600181811c9082168061132757607f821691505b60208210810361134757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156113765761137661134d565b500190565b60008160001904831182151516156113955761139561134d565b500290565b6000826113b757634e487b7160e01b600052601260045260246000fd5b500490565b6000828210156113ce576113ce61134d565b500390565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60006020828403121561141157600080fd5b8151610e61816111ef565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561146c5784516001600160a01b031683529383019391830191600101611447565b50506001600160a01b03969096166060850152505050608001529392505050565b600060208083850312156114a057600080fd5b825167ffffffffffffffff808211156114b857600080fd5b818501915085601f8301126114cc57600080fd5b8151818111156114de576114de6113d3565b8060051b604051601f19603f83011681018181108582111715611503576115036113d3565b60405291825284820192508381018501918883111561152157600080fd5b938501935b8285101561153f57845184529385019392850192611526565b9897505050505050505056fea2646970667358221220f4a6338f0a5fcf2e058455c9747b925e06a84f26e8912a09be6a05fe670a25cd64736f6c634300080f00330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

Deployed Bytecode

0x6080604052600436106101855760003560e01c806370a08231116100d1578063a8aa1b311161008a578063c45a015511610064578063c45a01551461046a578063dd62ed3e1461048a578063e5e31b13146104aa578063f2fde38b146104d957600080fd5b8063a8aa1b311461040a578063a9059cbb1461042a578063af9549e01461044a57600080fd5b806370a0823114610357578063715018a61461038d5780638a8c523c146103a25780638da5cb5b146103b757806395d89b41146103d5578063a457c2d7146103ea57600080fd5b8063313ce5671161013e57806342966c681161011857806342966c68146102d557806344dc70b7146102f75780634ada218b1461030d5780635342acb41461032757600080fd5b8063313ce56714610279578063395093511461029557806341275358146102b557600080fd5b806306fdde0314610191578063095ea7b3146101bc5780631694505e146101ec57806318160ddd1461022457806323b872dd14610243578063247e722d1461026357600080fd5b3661018c57005b600080fd5b34801561019d57600080fd5b506101a66104f9565b6040516101b3919061119a565b60405180910390f35b3480156101c857600080fd5b506101dc6101d7366004611204565b61058b565b60405190151581526020016101b3565b3480156101f857600080fd5b5060075461020c906001600160a01b031681565b6040516001600160a01b0390911681526020016101b3565b34801561023057600080fd5b506003545b6040519081526020016101b3565b34801561024f57600080fd5b506101dc61025e366004611230565b6105a3565b34801561026f57600080fd5b50610235600e5481565b34801561028557600080fd5b50604051601281526020016101b3565b3480156102a157600080fd5b506101dc6102b0366004611204565b6105c7565b3480156102c157600080fd5b50600a5461020c906001600160a01b031681565b3480156102e157600080fd5b506102f56102f0366004611271565b6105e9565b005b34801561030357600080fd5b50610235600d5481565b34801561031957600080fd5b506011546101dc9060ff1681565b34801561033357600080fd5b506101dc61034236600461128a565b60106020526000908152604090205460ff1681565b34801561036357600080fd5b5061023561037236600461128a565b6001600160a01b031660009081526001602052604090205490565b34801561039957600080fd5b506102f56105f6565b3480156103ae57600080fd5b506102f561060a565b3480156103c357600080fd5b506000546001600160a01b031661020c565b3480156103e157600080fd5b506101a6610689565b3480156103f657600080fd5b506101dc610405366004611204565b610698565b34801561041657600080fd5b5060095461020c906001600160a01b031681565b34801561043657600080fd5b506101dc610445366004611204565b610713565b34801561045657600080fd5b506102f56104653660046112a7565b610721565b34801561047657600080fd5b5060085461020c906001600160a01b031681565b34801561049657600080fd5b506102356104a53660046112e5565b61080b565b3480156104b657600080fd5b506101dc6104c536600461128a565b6009546001600160a01b0390811691161490565b3480156104e557600080fd5b506102f56104f436600461128a565b610836565b60606004805461050890611313565b80601f016020809104026020016040519081016040528092919081815260200182805461053490611313565b80156105815780601f1061055657610100808354040283529160200191610581565b820191906000526020600020905b81548152906001019060200180831161056457829003601f168201915b5050505050905090565b6000336105998185856108ac565b5060019392505050565b6000336105b18582856109d1565b6105bc858585610a4b565b506001949350505050565b6000336105998185856105da838361080b565b6105e49190611363565b6108ac565b6105f33382610c34565b50565b6105fe610d65565b6106086000610dbf565b565b610612610d65565b60115460ff161561066a5760405162461bcd60e51b815260206004820152601860248201527f54726164696e6720616c726561647920656e61626c65642e000000000000000060448201526064015b60405180910390fd5b6011805460ff19166001179055600e546106849042611363565b600d55565b60606005805461050890611313565b600033816106a6828661080b565b9050838110156107065760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610661565b6105bc82868684036108ac565b600033610599818585610a4b565b610729610d65565b6001600160a01b03821661077f5760405162461bcd60e51b815260206004820152601760248201527f3078206973206e6f7420616363657074656420686572650000000000000000006044820152606401610661565b6001600160a01b03821660009081526010602052604090205481151560ff9091161515036107e05760405162461bcd60e51b815260206004820152600e60248201526d14dd185d1d5cc81dd85cc81cd95d60921b6044820152606401610661565b6001600160a01b03919091166000908152601060205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61083e610d65565b6001600160a01b0381166108a35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610661565b6105f381610dbf565b6001600160a01b03831661090e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610661565b6001600160a01b03821661096f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610661565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006109dd848461080b565b90506000198114610a455781811015610a385760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610661565b610a4584848484036108ac565b50505050565b60115460009060ff1680610a7757506001600160a01b03841660009081526010602052604090205460ff165b80610a9a57506001600160a01b03831660009081526010602052604090205460ff165b610ae65760405162461bcd60e51b815260206004820152601860248201527f54726164696e67206e6f742079657420656e61626c65642100000000000000006044820152606401610661565b30600090815260016020526040812054118015610b065750600f5460ff16155b8015610b2057506009546001600160a01b03808616911614155b15610b2d57610b2d610e0f565b6001600160a01b03841660009081526010602052604090205460ff16158015610b6357506009546001600160a01b038085169116145b15610b7b57600d544211610b765750600b545b610bc4565b6001600160a01b03831660009081526010602052604090205460ff16158015610bb157506009546001600160a01b038086169116145b15610bc457600d544211610bc45750600c545b600081118015610bdd57506001600160a01b0384163014155b8015610bf257506001600160a01b0383163014155b15610c29576000610c0e6064610c088585610e55565b90610e68565b9050610c1b853083610e74565b610c25838261101f565b9250505b610a45848484610e74565b6001600160a01b038216610c945760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610661565b6001600160a01b03821660009081526001602052604090205481811015610d085760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610661565b6001600160a01b03831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016109c4565b505050565b6000546001600160a01b031633146106085760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610661565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600f805460ff191660011790556000610e3d306001600160a01b031660009081526001602052604090205490565b9050610e488161102b565b50600f805460ff19169055565b6000610e61828461137b565b9392505050565b6000610e61828461139a565b6001600160a01b038316610ed85760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610661565b6001600160a01b038216610f3a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610661565b6001600160a01b03831660009081526001602052604090205481811015610fb25760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610661565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906110129086815260200190565b60405180910390a3610a45565b6000610e6182846113bc565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611060576110606113e9565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156110b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110dd91906113ff565b816001815181106110f0576110f06113e9565b6001600160a01b03928316602091820292909201015260075461111691309116846108ac565b600754600a546040516318cbafe560e01b81526001600160a01b03928316926318cbafe5926111539287926000928892911690429060040161141c565b6000604051808303816000875af1158015611172573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610d60919081019061148d565b600060208083528351808285015260005b818110156111c7578581018301518582016040015282016111ab565b818111156111d9576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146105f357600080fd5b6000806040838503121561121757600080fd5b8235611222816111ef565b946020939093013593505050565b60008060006060848603121561124557600080fd5b8335611250816111ef565b92506020840135611260816111ef565b929592945050506040919091013590565b60006020828403121561128357600080fd5b5035919050565b60006020828403121561129c57600080fd5b8135610e61816111ef565b600080604083850312156112ba57600080fd5b82356112c5816111ef565b9150602083013580151581146112da57600080fd5b809150509250929050565b600080604083850312156112f857600080fd5b8235611303816111ef565b915060208301356112da816111ef565b600181811c9082168061132757607f821691505b60208210810361134757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156113765761137661134d565b500190565b60008160001904831182151516156113955761139561134d565b500290565b6000826113b757634e487b7160e01b600052601260045260246000fd5b500490565b6000828210156113ce576113ce61134d565b500390565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60006020828403121561141157600080fd5b8151610e61816111ef565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561146c5784516001600160a01b031683529383019391830191600101611447565b50506001600160a01b03969096166060850152505050608001529392505050565b600060208083850312156114a057600080fd5b825167ffffffffffffffff808211156114b857600080fd5b818501915085601f8301126114cc57600080fd5b8151818111156114de576114de6113d3565b8060051b604051601f19603f83011681018181108582111715611503576115036113d3565b60405291825284820192508381018501918883111561152157600080fd5b938501935b8285101561153f57845184529385019392850192611526565b9897505050505050505056fea2646970667358221220f4a6338f0a5fcf2e058455c9747b925e06a84f26e8912a09be6a05fe670a25cd64736f6c634300080f0033

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

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

-----Decoded View---------------
Arg [0] : _router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d


Deployed Bytecode Sourcemap

33196:3629:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9403:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11763:201;;;;;;;;;;-1:-1:-1;11763:201:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;11763:201:0;1072:187:1;33330:41:0;;;;;;;;;;-1:-1:-1;33330:41:0;;;;-1:-1:-1;;;;;33330:41:0;;;;;;-1:-1:-1;;;;;1455:32:1;;;1437:51;;1425:2;1410:18;33330:41:0;1264:230:1;10532:108:0;;;;;;;;;;-1:-1:-1;10620:12:0;;10532:108;;;1645:25:1;;;1633:2;1618:18;10532:108:0;1499:177:1;12544:261:0;;;;;;;;;;-1:-1:-1;12544:261:0;;;;;:::i;:::-;;:::i;33582:43::-;;;;;;;;;;;;;;;;10374:93;;;;;;;;;;-1:-1:-1;10374:93:0;;10457:2;2284:36:1;;2272:2;2257:18;10374:93:0;2142:184:1;13214:238:0;;;;;;;;;;-1:-1:-1;13214:238:0;;;;;:::i;:::-;;:::i;33443:25::-;;;;;;;;;;-1:-1:-1;33443:25:0;;;;-1:-1:-1;;;;;33443:25:0;;;34513:83;;;;;;;;;;-1:-1:-1;34513:83:0;;;;;:::i;:::-;;:::i;:::-;;33546:29;;;;;;;;;;;;;;;;33718:26;;;;;;;;;;-1:-1:-1;33718:26:0;;;;;;;;33660:49;;;;;;;;;;-1:-1:-1;33660:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;10703:127;;;;;;;;;;-1:-1:-1;10703:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10804:18:0;10777:7;10804:18;;;:9;:18;;;;;;;10703:127;2844:103;;;;;;;;;;;;;:::i;34604:208::-;;;;;;;;;;;;;:::i;2203:87::-;;;;;;;;;;-1:-1:-1;2249:7:0;2276:6;-1:-1:-1;;;;;2276:6:0;2203:87;;9622:104;;;;;;;;;;;;;:::i;13955:436::-;;;;;;;;;;-1:-1:-1;13955:436:0;;;;;:::i;:::-;;:::i;33417:19::-;;;;;;;;;;-1:-1:-1;33417:19:0;;;;-1:-1:-1;;;;;33417:19:0;;;11036:193;;;;;;;;;;-1:-1:-1;11036:193:0;;;;;:::i;:::-;;:::i;36381:279::-;;;;;;;;;;-1:-1:-1;36381:279:0;;;;;:::i;:::-;;:::i;33378:32::-;;;;;;;;;;-1:-1:-1;33378:32:0;;;;-1:-1:-1;;;;;33378:32:0;;;11292:151;;;;;;;;;;-1:-1:-1;11292:151:0;;;;;:::i;:::-;;:::i;36668:95::-;;;;;;;;;;-1:-1:-1;36668:95:0;;;;;:::i;:::-;36744:4;;-1:-1:-1;;;;;36744:4:0;;;:11;;;;36668:95;3102:201;;;;;;;;;;-1:-1:-1;3102:201:0;;;;;:::i;:::-;;:::i;9403:100::-;9457:13;9490:5;9483:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9403:100;:::o;11763:201::-;11846:4;830:10;11902:32;830:10;11918:7;11927:6;11902:8;:32::i;:::-;-1:-1:-1;11952:4:0;;11763:201;-1:-1:-1;;;11763:201:0:o;12544:261::-;12641:4;830:10;12699:38;12715:4;830:10;12730:6;12699:15;:38::i;:::-;12748:27;12758:4;12764:2;12768:6;12748:9;:27::i;:::-;-1:-1:-1;12793:4:0;;12544:261;-1:-1:-1;;;;12544:261:0:o;13214:238::-;13302:4;830:10;13358:64;830:10;13374:7;13411:10;13383:25;830:10;13374:7;13383:9;:25::i;:::-;:38;;;;:::i;:::-;13358:8;:64::i;34513:83::-;34561:27;830:10;34581:6;34561:5;:27::i;:::-;34513:83;:::o;2844:103::-;2089:13;:11;:13::i;:::-;2909:30:::1;2936:1;2909:18;:30::i;:::-;2844:103::o:0;34604:208::-;2089:13;:11;:13::i;:::-;34668:14:::1;::::0;::::1;;34667:15;34659:52;;;::::0;-1:-1:-1;;;34659:52:0;;4876:2:1;34659:52:0::1;::::0;::::1;4858:21:1::0;4915:2;4895:18;;;4888:30;4954:26;4934:18;;;4927:54;4998:18;;34659:52:0::1;;;;;;;;;34722:14;:21:::0;;-1:-1:-1;;34722:21:0::1;34739:4;34722:21;::::0;;34789:15:::1;::::0;34771:33:::1;::::0;:15:::1;:33;:::i;:::-;34754:14;:50:::0;34604:208::o;9622:104::-;9678:13;9711:7;9704:14;;;;;:::i;13955:436::-;14048:4;830:10;14048:4;14131:25;830:10;14148:7;14131:9;:25::i;:::-;14104:52;;14195:15;14175:16;:35;;14167:85;;;;-1:-1:-1;;;14167:85:0;;5229:2:1;14167:85:0;;;5211:21:1;5268:2;5248:18;;;5241:30;5307:34;5287:18;;;5280:62;-1:-1:-1;;;5358:18:1;;;5351:35;5403:19;;14167:85:0;5027:401:1;14167:85:0;14288:60;14297:5;14304:7;14332:15;14313:16;:34;14288:8;:60::i;11036:193::-;11115:4;830:10;11171:28;830:10;11188:2;11192:6;11171:9;:28::i;36381:279::-;2089:13;:11;:13::i;:::-;-1:-1:-1;;;;;36478:22:0;::::1;36470:58;;;::::0;-1:-1:-1;;;36470:58:0;;5635:2:1;36470:58:0::1;::::0;::::1;5617:21:1::0;5674:2;5654:18;;;5647:30;5713:25;5693:18;;;5686:53;5756:18;;36470:58:0::1;5433:347:1::0;36470:58:0::1;-1:-1:-1::0;;;;;36547:27:0;::::1;;::::0;;;:17:::1;:27;::::0;;;;;:38;::::1;;:27;::::0;;::::1;:38;;::::0;36539:65:::1;;;::::0;-1:-1:-1;;;36539:65:0;;5987:2:1;36539:65:0::1;::::0;::::1;5969:21:1::0;6026:2;6006:18;;;5999:30;-1:-1:-1;;;6045:18:1;;;6038:44;6099:18;;36539:65:0::1;5785:338:1::0;36539:65:0::1;-1:-1:-1::0;;;;;36615:27:0;;;::::1;;::::0;;;:17:::1;:27;::::0;;;;:37;;-1:-1:-1;;36615:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;36381:279::o;11292:151::-;-1:-1:-1;;;;;11408:18:0;;;11381:7;11408:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11292:151::o;3102:201::-;2089:13;:11;:13::i;:::-;-1:-1:-1;;;;;3191:22:0;::::1;3183:73;;;::::0;-1:-1:-1;;;3183:73:0;;6330:2:1;3183:73:0::1;::::0;::::1;6312:21:1::0;6369:2;6349:18;;;6342:30;6408:34;6388:18;;;6381:62;-1:-1:-1;;;6459:18:1;;;6452:36;6505:19;;3183:73:0::1;6128:402:1::0;3183:73:0::1;3267:28;3286:8;3267:18;:28::i;17948:346::-:0;-1:-1:-1;;;;;18050:19:0;;18042:68;;;;-1:-1:-1;;;18042:68:0;;6737:2:1;18042:68:0;;;6719:21:1;6776:2;6756:18;;;6749:30;6815:34;6795:18;;;6788:62;-1:-1:-1;;;6866:18:1;;;6859:34;6910:19;;18042:68:0;6535:400:1;18042:68:0;-1:-1:-1;;;;;18129:21:0;;18121:68;;;;-1:-1:-1;;;18121:68:0;;7142:2:1;18121:68:0;;;7124:21:1;7181:2;7161:18;;;7154:30;7220:34;7200:18;;;7193:62;-1:-1:-1;;;7271:18:1;;;7264:32;7313:19;;18121:68:0;6940:398:1;18121:68:0;-1:-1:-1;;;;;18202:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18254:32;;1645:25:1;;;18254:32:0;;1618:18:1;18254:32:0;;;;;;;;17948:346;;;:::o;18585:419::-;18686:24;18713:25;18723:5;18730:7;18713:9;:25::i;:::-;18686:52;;-1:-1:-1;;18753:16:0;:37;18749:248;;18835:6;18815:16;:26;;18807:68;;;;-1:-1:-1;;;18807:68:0;;7545:2:1;18807:68:0;;;7527:21:1;7584:2;7564:18;;;7557:30;7623:31;7603:18;;;7596:59;7672:18;;18807:68:0;7343:353:1;18807:68:0;18919:51;18928:5;18935:7;18963:6;18944:16;:25;18919:8;:51::i;:::-;18675:329;18585:419;;;:::o;34820:1014::-;34996:14;;34963;;34996;;;:43;;-1:-1:-1;;;;;;35014:25:0;;;;;;:17;:25;;;;;;;;34996:43;:75;;;-1:-1:-1;;;;;;35043:28:0;;;;;;:17;:28;;;;;;;;34996:75;34988:112;;;;-1:-1:-1;;;34988:112:0;;7903:2:1;34988:112:0;;;7885:21:1;7942:2;7922:18;;;7915:30;7981:26;7961:18;;;7954:54;8025:18;;34988:112:0;7701:348:1;34988:112:0;35133:4;35142:1;10804:18;;;:9;:18;;;;;;35115:28;:39;;;;-1:-1:-1;35148:6:0;;;;35147:7;35115:39;:58;;;;-1:-1:-1;36744:4:0;;-1:-1:-1;;;;;36744:11:0;;;:4;;:11;35158:15;35115:58;35111:105;;;35190:14;:12;:14::i;:::-;-1:-1:-1;;;;;35251:25:0;;;;;;:17;:25;;;;;;;;35250:26;:47;;;;-1:-1:-1;36744:4:0;;-1:-1:-1;;;;;36744:11:0;;;:4;;:11;35280:17;35246:273;;;35336:14;;35317:15;:33;35314:53;;-1:-1:-1;35361:6:0;;35314:53;35246:273;;;-1:-1:-1;;;;;35390:28:0;;;;;;:17;:28;;;;;;;;35389:29;:47;;;;-1:-1:-1;36744:4:0;;-1:-1:-1;;;;;36744:11:0;;;:4;;:11;35422:14;35385:134;;;35475:14;;35456:15;:33;35453:54;;-1:-1:-1;35500:7:0;;35453:54;35544:1;35535:6;:10;:37;;;;-1:-1:-1;;;;;;35549:23:0;;35567:4;35549:23;;35535:37;:67;;;;-1:-1:-1;;;;;;35576:26:0;;35597:4;35576:26;;35535:67;35531:241;;;35619:12;35634:27;35657:3;35634:18;:6;35645;35634:10;:18::i;:::-;:22;;:27::i;:::-;35619:42;;35676:44;35692:6;35708:4;35715;35676:15;:44::i;:::-;35744:16;:6;35755:4;35744:10;:16::i;:::-;35735:25;;35604:168;35531:241;35784:42;35800:6;35808:9;35819:6;35784:15;:42::i;16835:675::-;-1:-1:-1;;;;;16919:21:0;;16911:67;;;;-1:-1:-1;;;16911:67:0;;8256:2:1;16911:67:0;;;8238:21:1;8295:2;8275:18;;;8268:30;8334:34;8314:18;;;8307:62;-1:-1:-1;;;8385:18:1;;;8378:31;8426:19;;16911:67:0;8054:397:1;16911:67:0;-1:-1:-1;;;;;17078:18:0;;17053:22;17078:18;;;:9;:18;;;;;;17115:24;;;;17107:71;;;;-1:-1:-1;;;17107:71:0;;8658:2:1;17107:71:0;;;8640:21:1;8697:2;8677:18;;;8670:30;8736:34;8716:18;;;8709:62;-1:-1:-1;;;8787:18:1;;;8780:32;8829:19;;17107:71:0;8456:398:1;17107:71:0;-1:-1:-1;;;;;17214:18:0;;;;;;:9;:18;;;;;;;;17235:23;;;17214:44;;17353:12;:22;;;;;;;17404:37;1645:25:1;;;17214:18:0;;;17404:37;;1618:18:1;17404:37:0;1499:177:1;17454:48:0;16900:610;16835:675;;:::o;2368:132::-;2249:7;2276:6;-1:-1:-1;;;;;2276:6:0;830:10;2432:23;2424:68;;;;-1:-1:-1;;;2424:68:0;;9061:2:1;2424:68:0;;;9043:21:1;;;9080:18;;;9073:30;9139:34;9119:18;;;9112:62;9191:18;;2424:68:0;8859:356:1;3463:191:0;3537:16;3556:6;;-1:-1:-1;;;;;3573:17:0;;;-1:-1:-1;;;;;;3573:17:0;;;;;;3606:40;;3556:6;;;;;;;3606:40;;3537:16;3606:40;3526:128;3463:191;:::o;35842:156::-;34447:6;:13;;-1:-1:-1;;34447:13:0;34456:4;34447:13;;;:6;35923:24:::1;35941:4;-1:-1:-1::0;;;;;10804:18:0;10777:7;10804:18;;;:9;:18;;;;;;;10703:127;35923:24:::1;35898:49;;35958:32;35975:14;35958:16;:32::i;:::-;-1:-1:-1::0;34483:6:0;:14;;-1:-1:-1;;34483:14:0;;;35842:156::o;29025:98::-;29083:7;29110:5;29114:1;29110;:5;:::i;:::-;29103:12;29025:98;-1:-1:-1;;;29025:98:0:o;29424:::-;29482:7;29509:5;29513:1;29509;:5;:::i;14861:806::-;-1:-1:-1;;;;;14958:18:0;;14950:68;;;;-1:-1:-1;;;14950:68:0;;9817:2:1;14950:68:0;;;9799:21:1;9856:2;9836:18;;;9829:30;9895:34;9875:18;;;9868:62;-1:-1:-1;;;9946:18:1;;;9939:35;9991:19;;14950:68:0;9615:401:1;14950:68:0;-1:-1:-1;;;;;15037:16:0;;15029:64;;;;-1:-1:-1;;;15029:64:0;;10223:2:1;15029:64:0;;;10205:21:1;10262:2;10242:18;;;10235:30;10301:34;10281:18;;;10274:62;-1:-1:-1;;;10352:18:1;;;10345:33;10395:19;;15029:64:0;10021:399:1;15029:64:0;-1:-1:-1;;;;;15179:15:0;;15157:19;15179:15;;;:9;:15;;;;;;15213:21;;;;15205:72;;;;-1:-1:-1;;;15205:72:0;;10627:2:1;15205:72:0;;;10609:21:1;10666:2;10646:18;;;10639:30;10705:34;10685:18;;;10678:62;-1:-1:-1;;;10756:18:1;;;10749:36;10802:19;;15205:72:0;10425:402:1;15205:72:0;-1:-1:-1;;;;;15313:15:0;;;;;;;:9;:15;;;;;;15331:20;;;15313:38;;15531:13;;;;;;;;;;:23;;;;;;15583:26;;;;;;15345:6;1645:25:1;;1633:2;1618:18;;1499:177;15583:26:0;;;;;;;;15622:37;16835:675;28668:98;28726:7;28753:5;28757:1;28753;:5;:::i;36006:367::-;36096:16;;;36110:1;36096:16;;;;;;;;36072:21;;36096:16;;;;;;;;;;-1:-1:-1;36096:16:0;36072:40;;36141:4;36123;36128:1;36123:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;36123:23:0;;;:7;;;;;;;;;;:23;;;;36167:15;;:22;;;-1:-1:-1;;;36167:22:0;;;;:15;;;;;:20;;:22;;;;;36123:7;;36167:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36157:4;36162:1;36157:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;36157:32:0;;;:7;;;;;;;;;:32;36234:15;;36202:62;;36219:4;;36234:15;36252:11;36202:8;:62::i;:::-;36277:15;;36337:10;;36277:88;;-1:-1:-1;;;36277:88:0;;-1:-1:-1;;;;;36277:15:0;;;;:37;;:88;;36315:11;;36277:15;;36331:4;;36337:10;;;36349:15;;36277:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;36277:88:0;;;;;;;;;;;;:::i;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1681:456::-;1758:6;1766;1774;1827:2;1815:9;1806:7;1802:23;1798:32;1795:52;;;1843:1;1840;1833:12;1795:52;1882:9;1869:23;1901:31;1926:5;1901:31;:::i;:::-;1951:5;-1:-1:-1;2008:2:1;1993:18;;1980:32;2021:33;1980:32;2021:33;:::i;:::-;1681:456;;2073:7;;-1:-1:-1;;;2127:2:1;2112:18;;;;2099:32;;1681:456::o;2539:180::-;2598:6;2651:2;2639:9;2630:7;2626:23;2622:32;2619:52;;;2667:1;2664;2657:12;2619:52;-1:-1:-1;2690:23:1;;2539:180;-1:-1:-1;2539:180:1:o;2724:247::-;2783:6;2836:2;2824:9;2815:7;2811:23;2807:32;2804:52;;;2852:1;2849;2842:12;2804:52;2891:9;2878:23;2910:31;2935:5;2910:31;:::i;2976:416::-;3041:6;3049;3102:2;3090:9;3081:7;3077:23;3073:32;3070:52;;;3118:1;3115;3108:12;3070:52;3157:9;3144:23;3176:31;3201:5;3176:31;:::i;:::-;3226:5;-1:-1:-1;3283:2:1;3268:18;;3255:32;3325:15;;3318:23;3306:36;;3296:64;;3356:1;3353;3346:12;3296:64;3379:7;3369:17;;;2976:416;;;;;:::o;3631:388::-;3699:6;3707;3760:2;3748:9;3739:7;3735:23;3731:32;3728:52;;;3776:1;3773;3766:12;3728:52;3815:9;3802:23;3834:31;3859:5;3834:31;:::i;:::-;3884:5;-1:-1:-1;3941:2:1;3926:18;;3913:32;3954:33;3913:32;3954:33;:::i;4024:380::-;4103:1;4099:12;;;;4146;;;4167:61;;4221:4;4213:6;4209:17;4199:27;;4167:61;4274:2;4266:6;4263:14;4243:18;4240:38;4237:161;;4320:10;4315:3;4311:20;4308:1;4301:31;4355:4;4352:1;4345:15;4383:4;4380:1;4373:15;4237:161;;4024:380;;;:::o;4409:127::-;4470:10;4465:3;4461:20;4458:1;4451:31;4501:4;4498:1;4491:15;4525:4;4522:1;4515:15;4541:128;4581:3;4612:1;4608:6;4605:1;4602:13;4599:39;;;4618:18;;:::i;:::-;-1:-1:-1;4654:9:1;;4541:128::o;9220:168::-;9260:7;9326:1;9322;9318:6;9314:14;9311:1;9308:21;9303:1;9296:9;9289:17;9285:45;9282:71;;;9333:18;;:::i;:::-;-1:-1:-1;9373:9:1;;9220:168::o;9393:217::-;9433:1;9459;9449:132;;9503:10;9498:3;9494:20;9491:1;9484:31;9538:4;9535:1;9528:15;9566:4;9563:1;9556:15;9449:132;-1:-1:-1;9595:9:1;;9393:217::o;10832:125::-;10872:4;10900:1;10897;10894:8;10891:34;;;10905:18;;:::i;:::-;-1:-1:-1;10942:9:1;;10832:125::o;10962:127::-;11023:10;11018:3;11014:20;11011:1;11004:31;11054:4;11051:1;11044:15;11078:4;11075:1;11068:15;11094:127;11155:10;11150:3;11146:20;11143:1;11136:31;11186:4;11183:1;11176:15;11210:4;11207:1;11200:15;11226:251;11296:6;11349:2;11337:9;11328:7;11324:23;11320:32;11317:52;;;11365:1;11362;11355:12;11317:52;11397:9;11391:16;11416:31;11441:5;11416:31;:::i;11482:980::-;11744:4;11792:3;11781:9;11777:19;11823:6;11812:9;11805:25;11849:2;11887:6;11882:2;11871:9;11867:18;11860:34;11930:3;11925:2;11914:9;11910:18;11903:31;11954:6;11989;11983:13;12020:6;12012;12005:22;12058:3;12047:9;12043:19;12036:26;;12097:2;12089:6;12085:15;12071:29;;12118:1;12128:195;12142:6;12139:1;12136:13;12128:195;;;12207:13;;-1:-1:-1;;;;;12203:39:1;12191:52;;12298:15;;;;12263:12;;;;12239:1;12157:9;12128:195;;;-1:-1:-1;;;;;;;12379:32:1;;;;12374:2;12359:18;;12352:60;-1:-1:-1;;;12443:3:1;12428:19;12421:35;12340:3;11482:980;-1:-1:-1;;;11482:980:1:o;12467:1105::-;12562:6;12593:2;12636;12624:9;12615:7;12611:23;12607:32;12604:52;;;12652:1;12649;12642:12;12604:52;12685:9;12679:16;12714:18;12755:2;12747:6;12744:14;12741:34;;;12771:1;12768;12761:12;12741:34;12809:6;12798:9;12794:22;12784:32;;12854:7;12847:4;12843:2;12839:13;12835:27;12825:55;;12876:1;12873;12866:12;12825:55;12905:2;12899:9;12927:2;12923;12920:10;12917:36;;;12933:18;;:::i;:::-;12979:2;12976:1;12972:10;13011:2;13005:9;13074:2;13070:7;13065:2;13061;13057:11;13053:25;13045:6;13041:38;13129:6;13117:10;13114:22;13109:2;13097:10;13094:18;13091:46;13088:72;;;13140:18;;:::i;:::-;13176:2;13169:22;13226:18;;;13260:15;;;;-1:-1:-1;13302:11:1;;;13298:20;;;13330:19;;;13327:39;;;13362:1;13359;13352:12;13327:39;13386:11;;;;13406:135;13422:6;13417:3;13414:15;13406:135;;;13488:10;;13476:23;;13439:12;;;;13519;;;;13406:135;;;13560:6;12467:1105;-1:-1:-1;;;;;;;;12467:1105:1:o

Swarm Source

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