ETH Price: $2,667.12 (+2.14%)

Token

LANDWOLF (LANDWOLF)
 

Overview

Max Total Supply

420,690,000,000,000 LANDWOLF

Holders

13

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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

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

Contract Source Code Verified (Exact Match)

Contract Name:
LANDWOLF

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : LANDWOLF.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.16;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function allPairsLength() external view returns (uint256);

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

    function allPairs(uint256) external view returns (address pair);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);
    event Burn(
        address indexed sender,
        uint256 amount0,
        uint256 amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETH(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountToken, uint256 amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

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

/**
 * @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 decimals places of the token.
     */
    function decimals() external view returns (uint8);

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

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * 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 anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing 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);
    }
}

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

    /**
     * @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 value {ERC20} uses, unless this function is
     * 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() external view virtual override returns (uint256) {
        return _totalSupply;
    }

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

    /**
     * @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)
        external
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @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)
        external
        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
    ) external virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        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)
        external
        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 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)
        external
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

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

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

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

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

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

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

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

contract LANDWOLF is ERC20, Ownable {
    address public immutable uniswapV2Pair;
    IUniswapV2Router02 public immutable uniswapV2Router;

    mapping(address => bool) private _isExcludedFromFee;

    string private _name = "LANDWOLF";
    string private _symbol = "LANDWOLF";
    uint8 private _decimals = 18;
    uint256 private _supply = 420_690_000_000_000;
    uint256 public maxTxAmount = 21_000_000_000_000 * 10**_decimals;
    uint256 public maxWalletAmount = 21_000_000_000_000 * 10**_decimals;

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor() ERC20(_name, _symbol) {
        _mint(msg.sender, (_supply * 10**_decimals));

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;

        _isExcludedFromFee[address(uniswapV2Router)] = true;
        _isExcludedFromFee[msg.sender] = 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 override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(balanceOf(from) >= amount, "ERC20: transfer amount exceeds balance");
        uint256 transferAmount;
        if (from == uniswapV2Pair || to == uniswapV2Pair) {
            if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
                transferAmount = amount;
            } 
            else {
                require(amount <= maxTxAmount, "ERC20: transfer amount exceeds the max transaction amount");
                if(from == uniswapV2Pair){
                    require((amount + balanceOf(to)) <= maxWalletAmount, "ERC20: balance amount exceeded max wallet amount limit");
                }
                transferAmount = amount;
            }
            super._transfer(from, to, transferAmount);
        } 
        else {
            super._transfer(from, to, amount);
        }
    }

    function changeMaxTxAmount(uint256 _maxTxAmount)
        public
        onlyOwner
        returns (bool)
    {
        maxTxAmount = _maxTxAmount * 10**_decimals;

        return true;
    }

    function changeMaxWalletAmount(uint256 _maxWalletAmount)
        public
        onlyOwner
        returns (bool)
    {
        maxWalletAmount = _maxWalletAmount * 10**_decimals;

        return true;
    }

    receive() external payable {}
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","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":"_maxTxAmount","type":"uint256"}],"name":"changeMaxTxAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"}],"name":"changeMaxWalletAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"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":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526040518060400160405280600881526020017f4c414e44574f4c46000000000000000000000000000000000000000000000000815250600790816200004a919062000a04565b506040518060400160405280600881526020017f4c414e44574f4c460000000000000000000000000000000000000000000000008152506008908162000091919062000a04565b506012600960006101000a81548160ff021916908360ff16021790555066017e9d8602b400600a55600960009054906101000a900460ff16600a620000d7919062000c7b565b651319718a5000620000ea919062000ccc565b600b55600960009054906101000a900460ff16600a6200010b919062000c7b565b651319718a50006200011e919062000ccc565b600c553480156200012e57600080fd5b50600780546200013e90620007f3565b80601f01602080910402602001604051908101604052809291908181526020018280546200016c90620007f3565b8015620001bd5780601f106200019157610100808354040283529160200191620001bd565b820191906000526020600020905b8154815290600101906020018083116200019f57829003601f168201915b505050505060088054620001d190620007f3565b80601f0160208091040260200160405190810160405280929190818152602001828054620001ff90620007f3565b8015620002505780601f10620002245761010080835404028352916020019162000250565b820191906000526020600020905b8154815290600101906020018083116200023257829003601f168201915b5050505050816003908162000266919062000a04565b50806004908162000278919062000a04565b5050506200029b6200028f6200057760201b60201c565b6200057f60201b60201c565b620002d933600960009054906101000a900460ff16600a620002be919062000c7b565b600a54620002cd919062000ccc565b6200064560201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200033e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000364919062000d97565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003cc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003f2919062000d97565b6040518363ffffffff1660e01b81526004016200041192919062000dda565b6020604051808303816000875af115801562000431573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000457919062000d97565b73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff168152505060016006600060a05173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505062000ef3565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620006b7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006ae9062000e68565b60405180910390fd5b8060026000828254620006cb919062000e8a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200077e919062000ed6565b60405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200080c57607f821691505b602082108103620008225762000821620007c4565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200088c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200084d565b6200089886836200084d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620008e5620008df620008d984620008b0565b620008ba565b620008b0565b9050919050565b6000819050919050565b6200090183620008c4565b620009196200091082620008ec565b8484546200085a565b825550505050565b600090565b6200093062000921565b6200093d818484620008f6565b505050565b5b8181101562000965576200095960008262000926565b60018101905062000943565b5050565b601f821115620009b4576200097e8162000828565b62000989846200083d565b8101602085101562000999578190505b620009b1620009a8856200083d565b83018262000942565b50505b505050565b600082821c905092915050565b6000620009d960001984600802620009b9565b1980831691505092915050565b6000620009f48383620009c6565b9150826002028217905092915050565b62000a0f826200078a565b67ffffffffffffffff81111562000a2b5762000a2a62000795565b5b62000a378254620007f3565b62000a4482828562000969565b600060209050601f83116001811462000a7c576000841562000a67578287015190505b62000a738582620009e6565b86555062000ae3565b601f19841662000a8c8662000828565b60005b8281101562000ab65784890151825560018201915060208501945060208101905062000a8f565b8683101562000ad6578489015162000ad2601f891682620009c6565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000b795780860481111562000b515762000b5062000aeb565b5b600185161562000b615780820291505b808102905062000b718562000b1a565b945062000b31565b94509492505050565b60008262000b94576001905062000c67565b8162000ba4576000905062000c67565b816001811462000bbd576002811462000bc85762000bfe565b600191505062000c67565b60ff84111562000bdd5762000bdc62000aeb565b5b8360020a91508482111562000bf75762000bf662000aeb565b5b5062000c67565b5060208310610133831016604e8410600b841016171562000c385782820a90508381111562000c325762000c3162000aeb565b5b62000c67565b62000c47848484600162000b27565b9250905081840481111562000c615762000c6062000aeb565b5b81810290505b9392505050565b600060ff82169050919050565b600062000c8882620008b0565b915062000c958362000c6e565b925062000cc47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000b82565b905092915050565b600062000cd982620008b0565b915062000ce683620008b0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d225762000d2162000aeb565b5b828202905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000d5f8262000d32565b9050919050565b62000d718162000d52565b811462000d7d57600080fd5b50565b60008151905062000d918162000d66565b92915050565b60006020828403121562000db05762000daf62000d2d565b5b600062000dc08482850162000d80565b91505092915050565b62000dd48162000d52565b82525050565b600060408201905062000df1600083018562000dc9565b62000e00602083018462000dc9565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000e50601f8362000e07565b915062000e5d8262000e18565b602082019050919050565b6000602082019050818103600083015262000e838162000e41565b9050919050565b600062000e9782620008b0565b915062000ea483620008b0565b925082820190508082111562000ebf5762000ebe62000aeb565b5b92915050565b62000ed081620008b0565b82525050565b600060208201905062000eed600083018462000ec5565b92915050565b60805160a051611fee62000f2e60003960006105ce01526000818161066b01528181610d5f01528181610db40152610efc0152611fee6000f3fe6080604052600436106101235760003560e01c8063715018a6116100a0578063a457c2d711610064578063a457c2d71461040c578063a9059cbb14610449578063aa4bde2814610486578063dd62ed3e146104b1578063f2fde38b146104ee5761012a565b8063715018a61461033757806381bfdcca1461034e5780638c0b5e221461038b5780638da5cb5b146103b657806395d89b41146103e15761012a565b8063313ce567116100e7578063313ce5671461022a578063395093511461025557806349bd5a5e14610292578063677daa57146102bd57806370a08231146102fa5761012a565b806306fdde031461012f578063095ea7b31461015a5780631694505e1461019757806318160ddd146101c257806323b872dd146101ed5761012a565b3661012a57005b600080fd5b34801561013b57600080fd5b50610144610517565b6040516101519190611400565b60405180910390f35b34801561016657600080fd5b50610181600480360381019061017c91906114bb565b6105a9565b60405161018e9190611516565b60405180910390f35b3480156101a357600080fd5b506101ac6105cc565b6040516101b99190611590565b60405180910390f35b3480156101ce57600080fd5b506101d76105f0565b6040516101e491906115ba565b60405180910390f35b3480156101f957600080fd5b50610214600480360381019061020f91906115d5565b6105fa565b6040516102219190611516565b60405180910390f35b34801561023657600080fd5b5061023f610629565b60405161024c9190611644565b60405180910390f35b34801561026157600080fd5b5061027c600480360381019061027791906114bb565b610632565b6040516102899190611516565b60405180910390f35b34801561029e57600080fd5b506102a7610669565b6040516102b4919061166e565b60405180910390f35b3480156102c957600080fd5b506102e460048036038101906102df9190611689565b61068d565b6040516102f19190611516565b60405180910390f35b34801561030657600080fd5b50610321600480360381019061031c91906116b6565b6106cd565b60405161032e91906115ba565b60405180910390f35b34801561034357600080fd5b5061034c610715565b005b34801561035a57600080fd5b5061037560048036038101906103709190611689565b610729565b6040516103829190611516565b60405180910390f35b34801561039757600080fd5b506103a0610769565b6040516103ad91906115ba565b60405180910390f35b3480156103c257600080fd5b506103cb61076f565b6040516103d8919061166e565b60405180910390f35b3480156103ed57600080fd5b506103f6610799565b6040516104039190611400565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e91906114bb565b61082b565b6040516104409190611516565b60405180910390f35b34801561045557600080fd5b50610470600480360381019061046b91906114bb565b6108a2565b60405161047d9190611516565b60405180910390f35b34801561049257600080fd5b5061049b6108c5565b6040516104a891906115ba565b60405180910390f35b3480156104bd57600080fd5b506104d860048036038101906104d391906116e3565b6108cb565b6040516104e591906115ba565b60405180910390f35b3480156104fa57600080fd5b50610515600480360381019061051091906116b6565b610952565b005b60606003805461052690611752565b80601f016020809104026020016040519081016040528092919081815260200182805461055290611752565b801561059f5780601f106105745761010080835404028352916020019161059f565b820191906000526020600020905b81548152906001019060200180831161058257829003601f168201915b5050505050905090565b6000806105b46109d5565b90506105c18185856109dd565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b6000806106056109d5565b9050610612858285610ba6565b61061d858585610c32565b60019150509392505050565b60006012905090565b60008061063d6109d5565b905061065e81858561064f85896108cb565b61065991906117b2565b6109dd565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000610697610fcc565b600960009054906101000a900460ff16600a6106b39190611919565b826106be9190611964565b600b8190555060019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61071d610fcc565b610727600061104a565b565b6000610733610fcc565b600960009054906101000a900460ff16600a61074f9190611919565b8261075a9190611964565b600c8190555060019050919050565b600b5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107a890611752565b80601f01602080910402602001604051908101604052809291908181526020018280546107d490611752565b80156108215780601f106107f657610100808354040283529160200191610821565b820191906000526020600020905b81548152906001019060200180831161080457829003601f168201915b5050505050905090565b6000806108366109d5565b9050600061084482866108cb565b905083811015610889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088090611a30565b60405180910390fd5b61089682868684036109dd565b60019250505092915050565b6000806108ad6109d5565b90506108ba818585610c32565b600191505092915050565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61095a610fcc565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c090611ac2565b60405180910390fd5b6109d28161104a565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4390611b54565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab290611be6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b9991906115ba565b60405180910390a3505050565b6000610bb284846108cb565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c2c5781811015610c1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1590611c52565b60405180910390fd5b610c2b84848484036109dd565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9890611ce4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0790611d76565b60405180910390fd5b80610d1a846106cd565b1015610d5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5290611e08565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610e0257507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15610fba57600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610ea85750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610eb557819050610faa565b600b54821115610efa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef190611e9a565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610fa657600c54610f59846106cd565b83610f6491906117b2565b1115610fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9c90611f2c565b60405180910390fd5b5b8190505b610fb5848483611110565b610fc6565b610fc5848484611110565b5b50505050565b610fd46109d5565b73ffffffffffffffffffffffffffffffffffffffff16610ff261076f565b73ffffffffffffffffffffffffffffffffffffffff1614611048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103f90611f98565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361117f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117690611ce4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e590611d76565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126b90611e08565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161136291906115ba565b60405180910390a350505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156113aa57808201518184015260208101905061138f565b60008484015250505050565b6000601f19601f8301169050919050565b60006113d282611370565b6113dc818561137b565b93506113ec81856020860161138c565b6113f5816113b6565b840191505092915050565b6000602082019050818103600083015261141a81846113c7565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061145282611427565b9050919050565b61146281611447565b811461146d57600080fd5b50565b60008135905061147f81611459565b92915050565b6000819050919050565b61149881611485565b81146114a357600080fd5b50565b6000813590506114b58161148f565b92915050565b600080604083850312156114d2576114d1611422565b5b60006114e085828601611470565b92505060206114f1858286016114a6565b9150509250929050565b60008115159050919050565b611510816114fb565b82525050565b600060208201905061152b6000830184611507565b92915050565b6000819050919050565b600061155661155161154c84611427565b611531565b611427565b9050919050565b60006115688261153b565b9050919050565b600061157a8261155d565b9050919050565b61158a8161156f565b82525050565b60006020820190506115a56000830184611581565b92915050565b6115b481611485565b82525050565b60006020820190506115cf60008301846115ab565b92915050565b6000806000606084860312156115ee576115ed611422565b5b60006115fc86828701611470565b935050602061160d86828701611470565b925050604061161e868287016114a6565b9150509250925092565b600060ff82169050919050565b61163e81611628565b82525050565b60006020820190506116596000830184611635565b92915050565b61166881611447565b82525050565b6000602082019050611683600083018461165f565b92915050565b60006020828403121561169f5761169e611422565b5b60006116ad848285016114a6565b91505092915050565b6000602082840312156116cc576116cb611422565b5b60006116da84828501611470565b91505092915050565b600080604083850312156116fa576116f9611422565b5b600061170885828601611470565b925050602061171985828601611470565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061176a57607f821691505b60208210810361177d5761177c611723565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006117bd82611485565b91506117c883611485565b92508282019050808211156117e0576117df611783565b5b92915050565b60008160011c9050919050565b6000808291508390505b600185111561183d5780860481111561181957611818611783565b5b60018516156118285780820291505b8081029050611836856117e6565b94506117fd565b94509492505050565b6000826118565760019050611912565b816118645760009050611912565b816001811461187a5760028114611884576118b3565b6001915050611912565b60ff84111561189657611895611783565b5b8360020a9150848211156118ad576118ac611783565b5b50611912565b5060208310610133831016604e8410600b84101617156118e85782820a9050838111156118e3576118e2611783565b5b611912565b6118f584848460016117f3565b9250905081840481111561190c5761190b611783565b5b81810290505b9392505050565b600061192482611485565b915061192f83611628565b925061195c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611846565b905092915050565b600061196f82611485565b915061197a83611485565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156119b3576119b2611783565b5b828202905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611a1a60258361137b565b9150611a25826119be565b604082019050919050565b60006020820190508181036000830152611a4981611a0d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611aac60268361137b565b9150611ab782611a50565b604082019050919050565b60006020820190508181036000830152611adb81611a9f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611b3e60248361137b565b9150611b4982611ae2565b604082019050919050565b60006020820190508181036000830152611b6d81611b31565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611bd060228361137b565b9150611bdb82611b74565b604082019050919050565b60006020820190508181036000830152611bff81611bc3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611c3c601d8361137b565b9150611c4782611c06565b602082019050919050565b60006020820190508181036000830152611c6b81611c2f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611cce60258361137b565b9150611cd982611c72565b604082019050919050565b60006020820190508181036000830152611cfd81611cc1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d6060238361137b565b9150611d6b82611d04565b604082019050919050565b60006020820190508181036000830152611d8f81611d53565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611df260268361137b565b9150611dfd82611d96565b604082019050919050565b60006020820190508181036000830152611e2181611de5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b6000611e8460398361137b565b9150611e8f82611e28565b604082019050919050565b60006020820190508181036000830152611eb381611e77565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b6000611f1660368361137b565b9150611f2182611eba565b604082019050919050565b60006020820190508181036000830152611f4581611f09565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611f8260208361137b565b9150611f8d82611f4c565b602082019050919050565b60006020820190508181036000830152611fb181611f75565b905091905056fea26469706673582212208178bf4498ef9c0e2e4bbc8d6ab33687c4a48ff99df5f8ef0c46eee21771d94264736f6c63430008100033

Deployed Bytecode

0x6080604052600436106101235760003560e01c8063715018a6116100a0578063a457c2d711610064578063a457c2d71461040c578063a9059cbb14610449578063aa4bde2814610486578063dd62ed3e146104b1578063f2fde38b146104ee5761012a565b8063715018a61461033757806381bfdcca1461034e5780638c0b5e221461038b5780638da5cb5b146103b657806395d89b41146103e15761012a565b8063313ce567116100e7578063313ce5671461022a578063395093511461025557806349bd5a5e14610292578063677daa57146102bd57806370a08231146102fa5761012a565b806306fdde031461012f578063095ea7b31461015a5780631694505e1461019757806318160ddd146101c257806323b872dd146101ed5761012a565b3661012a57005b600080fd5b34801561013b57600080fd5b50610144610517565b6040516101519190611400565b60405180910390f35b34801561016657600080fd5b50610181600480360381019061017c91906114bb565b6105a9565b60405161018e9190611516565b60405180910390f35b3480156101a357600080fd5b506101ac6105cc565b6040516101b99190611590565b60405180910390f35b3480156101ce57600080fd5b506101d76105f0565b6040516101e491906115ba565b60405180910390f35b3480156101f957600080fd5b50610214600480360381019061020f91906115d5565b6105fa565b6040516102219190611516565b60405180910390f35b34801561023657600080fd5b5061023f610629565b60405161024c9190611644565b60405180910390f35b34801561026157600080fd5b5061027c600480360381019061027791906114bb565b610632565b6040516102899190611516565b60405180910390f35b34801561029e57600080fd5b506102a7610669565b6040516102b4919061166e565b60405180910390f35b3480156102c957600080fd5b506102e460048036038101906102df9190611689565b61068d565b6040516102f19190611516565b60405180910390f35b34801561030657600080fd5b50610321600480360381019061031c91906116b6565b6106cd565b60405161032e91906115ba565b60405180910390f35b34801561034357600080fd5b5061034c610715565b005b34801561035a57600080fd5b5061037560048036038101906103709190611689565b610729565b6040516103829190611516565b60405180910390f35b34801561039757600080fd5b506103a0610769565b6040516103ad91906115ba565b60405180910390f35b3480156103c257600080fd5b506103cb61076f565b6040516103d8919061166e565b60405180910390f35b3480156103ed57600080fd5b506103f6610799565b6040516104039190611400565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e91906114bb565b61082b565b6040516104409190611516565b60405180910390f35b34801561045557600080fd5b50610470600480360381019061046b91906114bb565b6108a2565b60405161047d9190611516565b60405180910390f35b34801561049257600080fd5b5061049b6108c5565b6040516104a891906115ba565b60405180910390f35b3480156104bd57600080fd5b506104d860048036038101906104d391906116e3565b6108cb565b6040516104e591906115ba565b60405180910390f35b3480156104fa57600080fd5b50610515600480360381019061051091906116b6565b610952565b005b60606003805461052690611752565b80601f016020809104026020016040519081016040528092919081815260200182805461055290611752565b801561059f5780601f106105745761010080835404028352916020019161059f565b820191906000526020600020905b81548152906001019060200180831161058257829003601f168201915b5050505050905090565b6000806105b46109d5565b90506105c18185856109dd565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b6000806106056109d5565b9050610612858285610ba6565b61061d858585610c32565b60019150509392505050565b60006012905090565b60008061063d6109d5565b905061065e81858561064f85896108cb565b61065991906117b2565b6109dd565b600191505092915050565b7f000000000000000000000000ce819a805da3cca11e9e215ea8236e185d750d3c81565b6000610697610fcc565b600960009054906101000a900460ff16600a6106b39190611919565b826106be9190611964565b600b8190555060019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61071d610fcc565b610727600061104a565b565b6000610733610fcc565b600960009054906101000a900460ff16600a61074f9190611919565b8261075a9190611964565b600c8190555060019050919050565b600b5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107a890611752565b80601f01602080910402602001604051908101604052809291908181526020018280546107d490611752565b80156108215780601f106107f657610100808354040283529160200191610821565b820191906000526020600020905b81548152906001019060200180831161080457829003601f168201915b5050505050905090565b6000806108366109d5565b9050600061084482866108cb565b905083811015610889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088090611a30565b60405180910390fd5b61089682868684036109dd565b60019250505092915050565b6000806108ad6109d5565b90506108ba818585610c32565b600191505092915050565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61095a610fcc565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c090611ac2565b60405180910390fd5b6109d28161104a565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4390611b54565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab290611be6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b9991906115ba565b60405180910390a3505050565b6000610bb284846108cb565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c2c5781811015610c1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1590611c52565b60405180910390fd5b610c2b84848484036109dd565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9890611ce4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0790611d76565b60405180910390fd5b80610d1a846106cd565b1015610d5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5290611e08565b60405180910390fd5b60007f000000000000000000000000ce819a805da3cca11e9e215ea8236e185d750d3c73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610e0257507f000000000000000000000000ce819a805da3cca11e9e215ea8236e185d750d3c73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15610fba57600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610ea85750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610eb557819050610faa565b600b54821115610efa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef190611e9a565b60405180910390fd5b7f000000000000000000000000ce819a805da3cca11e9e215ea8236e185d750d3c73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610fa657600c54610f59846106cd565b83610f6491906117b2565b1115610fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9c90611f2c565b60405180910390fd5b5b8190505b610fb5848483611110565b610fc6565b610fc5848484611110565b5b50505050565b610fd46109d5565b73ffffffffffffffffffffffffffffffffffffffff16610ff261076f565b73ffffffffffffffffffffffffffffffffffffffff1614611048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103f90611f98565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361117f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117690611ce4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e590611d76565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126b90611e08565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161136291906115ba565b60405180910390a350505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156113aa57808201518184015260208101905061138f565b60008484015250505050565b6000601f19601f8301169050919050565b60006113d282611370565b6113dc818561137b565b93506113ec81856020860161138c565b6113f5816113b6565b840191505092915050565b6000602082019050818103600083015261141a81846113c7565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061145282611427565b9050919050565b61146281611447565b811461146d57600080fd5b50565b60008135905061147f81611459565b92915050565b6000819050919050565b61149881611485565b81146114a357600080fd5b50565b6000813590506114b58161148f565b92915050565b600080604083850312156114d2576114d1611422565b5b60006114e085828601611470565b92505060206114f1858286016114a6565b9150509250929050565b60008115159050919050565b611510816114fb565b82525050565b600060208201905061152b6000830184611507565b92915050565b6000819050919050565b600061155661155161154c84611427565b611531565b611427565b9050919050565b60006115688261153b565b9050919050565b600061157a8261155d565b9050919050565b61158a8161156f565b82525050565b60006020820190506115a56000830184611581565b92915050565b6115b481611485565b82525050565b60006020820190506115cf60008301846115ab565b92915050565b6000806000606084860312156115ee576115ed611422565b5b60006115fc86828701611470565b935050602061160d86828701611470565b925050604061161e868287016114a6565b9150509250925092565b600060ff82169050919050565b61163e81611628565b82525050565b60006020820190506116596000830184611635565b92915050565b61166881611447565b82525050565b6000602082019050611683600083018461165f565b92915050565b60006020828403121561169f5761169e611422565b5b60006116ad848285016114a6565b91505092915050565b6000602082840312156116cc576116cb611422565b5b60006116da84828501611470565b91505092915050565b600080604083850312156116fa576116f9611422565b5b600061170885828601611470565b925050602061171985828601611470565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061176a57607f821691505b60208210810361177d5761177c611723565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006117bd82611485565b91506117c883611485565b92508282019050808211156117e0576117df611783565b5b92915050565b60008160011c9050919050565b6000808291508390505b600185111561183d5780860481111561181957611818611783565b5b60018516156118285780820291505b8081029050611836856117e6565b94506117fd565b94509492505050565b6000826118565760019050611912565b816118645760009050611912565b816001811461187a5760028114611884576118b3565b6001915050611912565b60ff84111561189657611895611783565b5b8360020a9150848211156118ad576118ac611783565b5b50611912565b5060208310610133831016604e8410600b84101617156118e85782820a9050838111156118e3576118e2611783565b5b611912565b6118f584848460016117f3565b9250905081840481111561190c5761190b611783565b5b81810290505b9392505050565b600061192482611485565b915061192f83611628565b925061195c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611846565b905092915050565b600061196f82611485565b915061197a83611485565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156119b3576119b2611783565b5b828202905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611a1a60258361137b565b9150611a25826119be565b604082019050919050565b60006020820190508181036000830152611a4981611a0d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611aac60268361137b565b9150611ab782611a50565b604082019050919050565b60006020820190508181036000830152611adb81611a9f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611b3e60248361137b565b9150611b4982611ae2565b604082019050919050565b60006020820190508181036000830152611b6d81611b31565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611bd060228361137b565b9150611bdb82611b74565b604082019050919050565b60006020820190508181036000830152611bff81611bc3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611c3c601d8361137b565b9150611c4782611c06565b602082019050919050565b60006020820190508181036000830152611c6b81611c2f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611cce60258361137b565b9150611cd982611c72565b604082019050919050565b60006020820190508181036000830152611cfd81611cc1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d6060238361137b565b9150611d6b82611d04565b604082019050919050565b60006020820190508181036000830152611d8f81611d53565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611df260268361137b565b9150611dfd82611d96565b604082019050919050565b60006020820190508181036000830152611e2181611de5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b6000611e8460398361137b565b9150611e8f82611e28565b604082019050919050565b60006020820190508181036000830152611eb381611e77565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b6000611f1660368361137b565b9150611f2182611eba565b604082019050919050565b60006020820190508181036000830152611f4581611f09565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611f8260208361137b565b9150611f8d82611f4c565b602082019050919050565b60006020820190508181036000830152611fb181611f75565b905091905056fea26469706673582212208178bf4498ef9c0e2e4bbc8d6ab33687c4a48ff99df5f8ef0c46eee21771d94264736f6c63430008100033

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.