ETH Price: $2,781.07 (+5.95%)

Token

AshButHesRetarded (ASH)
 

Overview

Max Total Supply

42,439,430,359 ASH

Holders

54

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
209,519,557.049911505260444321 ASH

Value
$0.00
0xfc0ff387af4a60d95d63cee964a62251dfc000e9
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:
ASHButHesRetarded

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-12-05
*/

/**
                         Website: https://www.ashbuthesretarded.wtf/
                         Twitter: https://twitter.com/Ashbuthesretard
                         Tg:   https://t.me/AshRetardPortal

*/
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.19;

/**
 * @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 v4.4.0 (access/Ownable.sol)



/**
 * @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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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);
    }
}


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


// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)



/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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


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


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



/**
 * @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 v4.4.0 (token/ERC20/ERC20.sol)




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

    /**
     * @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(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 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() 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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, 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;
        _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;
        }
        _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 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 {}
}


////ASHButHesRetarded.sol

contract ASHButHesRetarded is Ownable, ERC20 {
   
    
        uint256 public maxTransactionAmount;
        bool public limitsInEffect = true;
  
    uint256 public maxWallet;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;
   address public uniswapV2Pair;

    constructor() ERC20("AshButHesRetarded", "ASH") {
         
        uint256 _totalSupply = 42439430359 * 1e18;
        maxTransactionAmount = _totalSupply * 2 /100; // 2% maxTx
        maxWallet = _totalSupply * 2 /100; // 2% maxWallet
          excludeFromMaxTransaction(owner(), true);
          excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _mint(msg.sender, _totalSupply);
        
    }


 
        function updateMaxWalletAndTxnAmount(uint256 newTxnNum, uint256 newMaxWalletNum) external onlyOwner {
     
        maxWallet = newMaxWalletNum * (10**18);
        maxTransactionAmount = newTxnNum * (10**18);
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {

      



       if (limitsInEffect){


         if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) 
             
            ){
                  if(uniswapV2Pair==address(0)){
            require(from == owner() && to == owner(),"Trade not open");
            return ;
        }

    //when buy
                if (
                    from== uniswapV2Pair&&
                    !_isExcludedMaxTransactionAmount[to]
                ){
            require(super.balanceOf(to) + amount <= maxWallet , "Forbid");
             require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
        }

        //when sell
                else if (
                   to==uniswapV2Pair &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
                } 
                  else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
            }

       }


    }

    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    function setPair(address pair)
        public onlyOwner
        
    {
        uniswapV2Pair=pair;
    }
    
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

}

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":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":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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":[],"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":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"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":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","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":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"setPair","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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":[{"internalType":"uint256","name":"newTxnNum","type":"uint256"},{"internalType":"uint256","name":"newMaxWalletNum","type":"uint256"}],"name":"updateMaxWalletAndTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526007805460ff191660011790553480156200001e57600080fd5b5060405180604001604052806011815260200170105cda109d5d12195cd4995d185c991959607a1b81525060405180604001604052806003815260200162082a6960eb1b8152506200007f620000796200013560201b60201c565b62000139565b60046200008d838262000707565b5060056200009c828262000707565b506b892112f1b6b88dc8d4fc0000915060649050620000bd826002620007e9565b620000c9919062000809565b6006556064620000db826002620007e9565b620000e7919062000809565b60085562000109620001016000546001600160a01b031690565b600162000189565b600a5462000122906001600160a01b0316600162000189565b6200012e338262000214565b5062000842565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000546001600160a01b03163314620001e95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b6001600160a01b0382166200026c5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620001e0565b6200027a6000838362000307565b80600360008282546200028e91906200082c565b90915550506001600160a01b03821660009081526001602052604081208054839290620002bd9084906200082c565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60075460ff1615620003ee576000546001600160a01b038481169116148015906200034057506000546001600160a01b03838116911614155b80156200035557506001600160a01b03821615155b80156200036d57506001600160a01b03821661dead14155b15620003ee57600a546001600160a01b0316620003f3576000546001600160a01b038481169116148015620003af57506000546001600160a01b038381169116145b620003ee5760405162461bcd60e51b815260206004820152600e60248201526d2a3930b232903737ba1037b832b760911b6044820152606401620001e0565b505050565b600a546001600160a01b0384811691161480156200042a57506001600160a01b03821660009081526009602052604090205460ff16155b1562000513576008548162000454846001600160a01b031660009081526001602052604090205490565b6200046091906200082c565b1115620004995760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b6044820152606401620001e0565b600654811115620003ee5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006064820152608401620001e0565b600a546001600160a01b0383811691161480156200054a57506001600160a01b03831660009081526009602052604090205460ff16155b15620005ca57600654811115620003ee5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006064820152608401620001e0565b6001600160a01b03821660009081526009602052604090205460ff16620003ee576008546001600160a01b0383166000908152600160205260409020546200061390836200082c565b1115620003ee5760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401620001e0565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200068e57607f821691505b602082108103620006af57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003ee57600081815260208120601f850160051c81016020861015620006de5750805b601f850160051c820191505b81811015620006ff57828155600101620006ea565b505050505050565b81516001600160401b0381111562000723576200072362000663565b6200073b8162000734845462000679565b84620006b5565b602080601f8311600181146200077357600084156200075a5750858301515b600019600386901b1c1916600185901b178555620006ff565b600085815260208120601f198616915b82811015620007a45788860151825594840194600190910190840162000783565b5085821015620007c35787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620008035762000803620007d3565b92915050565b6000826200082757634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620008035762000803620007d3565b61107280620008526000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c8063751039fc116100c3578063a457c2d71161007c578063a457c2d7146102c2578063a9059cbb146102d5578063c8c8ebe4146102e8578063dd62ed3e146102f1578063f2fde38b1461032a578063f8b45b051461033d57600080fd5b8063751039fc146102685780637571336a146102705780638187f516146102835780638da5cb5b1461029657806395d89b41146102a757806396188399146102af57600080fd5b8063313ce56711610115578063313ce567146101db57806339509351146101ea57806349bd5a5e146101fd5780634a62bb651461022857806370a0823114610235578063715018a61461025e57600080fd5b806306fdde0314610152578063095ea7b31461017057806310d5de531461019357806318160ddd146101b657806323b872dd146101c8575b600080fd5b61015a610346565b6040516101679190610e0a565b60405180910390f35b61018361017e366004610e74565b6103d8565b6040519015158152602001610167565b6101836101a1366004610e9e565b60096020526000908152604090205460ff1681565b6003545b604051908152602001610167565b6101836101d6366004610ec0565b6103ef565b60405160128152602001610167565b6101836101f8366004610e74565b61049e565b600a54610210906001600160a01b031681565b6040516001600160a01b039091168152602001610167565b6007546101839060ff1681565b6101ba610243366004610e9e565b6001600160a01b031660009081526001602052604090205490565b6102666104da565b005b610183610510565b61026661027e366004610efc565b61054b565b610266610291366004610e9e565b6105a0565b6000546001600160a01b0316610210565b61015a6105ec565b6102666102bd366004610f38565b6105fb565b6101836102d0366004610e74565b610653565b6101836102e3366004610e74565b6106ec565b6101ba60065481565b6101ba6102ff366004610f5a565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610266610338366004610e9e565b6106f9565b6101ba60085481565b60606004805461035590610f8d565b80601f016020809104026020016040519081016040528092919081815260200182805461038190610f8d565b80156103ce5780601f106103a3576101008083540402835291602001916103ce565b820191906000526020600020905b8154815290600101906020018083116103b157829003601f168201915b5050505050905090565b60006103e5338484610794565b5060015b92915050565b60006103fc8484846108b8565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156104865760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6104938533858403610794565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103e59185906104d5908690610fdd565b610794565b6000546001600160a01b031633146105045760405162461bcd60e51b815260040161047d90610ff0565b61050e6000610a92565b565b600080546001600160a01b0316331461053b5760405162461bcd60e51b815260040161047d90610ff0565b506007805460ff19169055600190565b6000546001600160a01b031633146105755760405162461bcd60e51b815260040161047d90610ff0565b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b6000546001600160a01b031633146105ca5760405162461bcd60e51b815260040161047d90610ff0565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60606005805461035590610f8d565b6000546001600160a01b031633146106255760405162461bcd60e51b815260040161047d90610ff0565b61063781670de0b6b3a7640000611025565b60085561064c82670de0b6b3a7640000611025565b6006555050565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156106d55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161047d565b6106e23385858403610794565b5060019392505050565b60006103e53384846108b8565b6000546001600160a01b031633146107235760405162461bcd60e51b815260040161047d90610ff0565b6001600160a01b0381166107885760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161047d565b61079181610a92565b50565b6001600160a01b0383166107f65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161047d565b6001600160a01b0382166108575760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161047d565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661091c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161047d565b6001600160a01b03821661097e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161047d565b610989838383610ae2565b6001600160a01b03831660009081526001602052604090205481811015610a015760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161047d565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610a38908490610fdd565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a8491815260200190565b60405180910390a350505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60075460ff1615610bc0576000546001600160a01b03848116911614801590610b1957506000546001600160a01b03838116911614155b8015610b2d57506001600160a01b03821615155b8015610b4457506001600160a01b03821661dead14155b15610bc057600a546001600160a01b0316610bc5576000546001600160a01b038481169116148015610b8357506000546001600160a01b038381169116145b610bc05760405162461bcd60e51b815260206004820152600e60248201526d2a3930b232903737ba1037b832b760911b604482015260640161047d565b505050565b600a546001600160a01b038481169116148015610bfb57506001600160a01b03821660009081526009602052604090205460ff16155b15610cd45760085481610c23846001600160a01b031660009081526001602052604090205490565b610c2d9190610fdd565b1115610c645760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b604482015260640161047d565b600654811115610bc05760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161047d565b600a546001600160a01b038381169116148015610d0a57506001600160a01b03831660009081526009602052604090205460ff16155b15610d8057600654811115610bc05760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b606482015260840161047d565b6001600160a01b03821660009081526009602052604090205460ff16610bc0576008546001600160a01b038316600090815260016020526040902054610dc69083610fdd565b1115610bc05760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161047d565b600060208083528351808285015260005b81811015610e3757858101830151858201604001528201610e1b565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610e6f57600080fd5b919050565b60008060408385031215610e8757600080fd5b610e9083610e58565b946020939093013593505050565b600060208284031215610eb057600080fd5b610eb982610e58565b9392505050565b600080600060608486031215610ed557600080fd5b610ede84610e58565b9250610eec60208501610e58565b9150604084013590509250925092565b60008060408385031215610f0f57600080fd5b610f1883610e58565b915060208301358015158114610f2d57600080fd5b809150509250929050565b60008060408385031215610f4b57600080fd5b50508035926020909101359150565b60008060408385031215610f6d57600080fd5b610f7683610e58565b9150610f8460208401610e58565b90509250929050565b600181811c90821680610fa157607f821691505b602082108103610fc157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156103e9576103e9610fc7565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b80820281158282048414176103e9576103e9610fc756fea2646970667358221220cc054c72aa0a5abb00ba70a9c2ba78677d2c2b8a72c42c64b3db01818a20589464736f6c63430008130033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c8063751039fc116100c3578063a457c2d71161007c578063a457c2d7146102c2578063a9059cbb146102d5578063c8c8ebe4146102e8578063dd62ed3e146102f1578063f2fde38b1461032a578063f8b45b051461033d57600080fd5b8063751039fc146102685780637571336a146102705780638187f516146102835780638da5cb5b1461029657806395d89b41146102a757806396188399146102af57600080fd5b8063313ce56711610115578063313ce567146101db57806339509351146101ea57806349bd5a5e146101fd5780634a62bb651461022857806370a0823114610235578063715018a61461025e57600080fd5b806306fdde0314610152578063095ea7b31461017057806310d5de531461019357806318160ddd146101b657806323b872dd146101c8575b600080fd5b61015a610346565b6040516101679190610e0a565b60405180910390f35b61018361017e366004610e74565b6103d8565b6040519015158152602001610167565b6101836101a1366004610e9e565b60096020526000908152604090205460ff1681565b6003545b604051908152602001610167565b6101836101d6366004610ec0565b6103ef565b60405160128152602001610167565b6101836101f8366004610e74565b61049e565b600a54610210906001600160a01b031681565b6040516001600160a01b039091168152602001610167565b6007546101839060ff1681565b6101ba610243366004610e9e565b6001600160a01b031660009081526001602052604090205490565b6102666104da565b005b610183610510565b61026661027e366004610efc565b61054b565b610266610291366004610e9e565b6105a0565b6000546001600160a01b0316610210565b61015a6105ec565b6102666102bd366004610f38565b6105fb565b6101836102d0366004610e74565b610653565b6101836102e3366004610e74565b6106ec565b6101ba60065481565b6101ba6102ff366004610f5a565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610266610338366004610e9e565b6106f9565b6101ba60085481565b60606004805461035590610f8d565b80601f016020809104026020016040519081016040528092919081815260200182805461038190610f8d565b80156103ce5780601f106103a3576101008083540402835291602001916103ce565b820191906000526020600020905b8154815290600101906020018083116103b157829003601f168201915b5050505050905090565b60006103e5338484610794565b5060015b92915050565b60006103fc8484846108b8565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156104865760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6104938533858403610794565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103e59185906104d5908690610fdd565b610794565b6000546001600160a01b031633146105045760405162461bcd60e51b815260040161047d90610ff0565b61050e6000610a92565b565b600080546001600160a01b0316331461053b5760405162461bcd60e51b815260040161047d90610ff0565b506007805460ff19169055600190565b6000546001600160a01b031633146105755760405162461bcd60e51b815260040161047d90610ff0565b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b6000546001600160a01b031633146105ca5760405162461bcd60e51b815260040161047d90610ff0565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60606005805461035590610f8d565b6000546001600160a01b031633146106255760405162461bcd60e51b815260040161047d90610ff0565b61063781670de0b6b3a7640000611025565b60085561064c82670de0b6b3a7640000611025565b6006555050565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156106d55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161047d565b6106e23385858403610794565b5060019392505050565b60006103e53384846108b8565b6000546001600160a01b031633146107235760405162461bcd60e51b815260040161047d90610ff0565b6001600160a01b0381166107885760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161047d565b61079181610a92565b50565b6001600160a01b0383166107f65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161047d565b6001600160a01b0382166108575760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161047d565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661091c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161047d565b6001600160a01b03821661097e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161047d565b610989838383610ae2565b6001600160a01b03831660009081526001602052604090205481811015610a015760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161047d565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610a38908490610fdd565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a8491815260200190565b60405180910390a350505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60075460ff1615610bc0576000546001600160a01b03848116911614801590610b1957506000546001600160a01b03838116911614155b8015610b2d57506001600160a01b03821615155b8015610b4457506001600160a01b03821661dead14155b15610bc057600a546001600160a01b0316610bc5576000546001600160a01b038481169116148015610b8357506000546001600160a01b038381169116145b610bc05760405162461bcd60e51b815260206004820152600e60248201526d2a3930b232903737ba1037b832b760911b604482015260640161047d565b505050565b600a546001600160a01b038481169116148015610bfb57506001600160a01b03821660009081526009602052604090205460ff16155b15610cd45760085481610c23846001600160a01b031660009081526001602052604090205490565b610c2d9190610fdd565b1115610c645760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b604482015260640161047d565b600654811115610bc05760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161047d565b600a546001600160a01b038381169116148015610d0a57506001600160a01b03831660009081526009602052604090205460ff16155b15610d8057600654811115610bc05760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b606482015260840161047d565b6001600160a01b03821660009081526009602052604090205460ff16610bc0576008546001600160a01b038316600090815260016020526040902054610dc69083610fdd565b1115610bc05760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161047d565b600060208083528351808285015260005b81811015610e3757858101830151858201604001528201610e1b565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610e6f57600080fd5b919050565b60008060408385031215610e8757600080fd5b610e9083610e58565b946020939093013593505050565b600060208284031215610eb057600080fd5b610eb982610e58565b9392505050565b600080600060608486031215610ed557600080fd5b610ede84610e58565b9250610eec60208501610e58565b9150604084013590509250925092565b60008060408385031215610f0f57600080fd5b610f1883610e58565b915060208301358015158114610f2d57600080fd5b809150509250929050565b60008060408385031215610f4b57600080fd5b50508035926020909101359150565b60008060408385031215610f6d57600080fd5b610f7683610e58565b9150610f8460208401610e58565b90509250929050565b600181811c90821680610fa157607f821691505b602082108103610fc157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156103e9576103e9610fc7565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b80820281158282048414176103e9576103e9610fc756fea2646970667358221220cc054c72aa0a5abb00ba70a9c2ba78677d2c2b8a72c42c64b3db01818a20589464736f6c63430008130033

Deployed Bytecode Sourcemap

19300:2878:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9308:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11475:169;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;11475:169:0;1004:187:1;19488:63:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;10428:108;10516:12;;10428:108;;;1533:25:1;;;1521:2;1506:18;10428:108:0;1387:177:1;12126:492:0;;;;;;:::i;:::-;;:::i;10270:93::-;;;10353:2;2044:36:1;;2032:2;2017:18;10270:93:0;1902:184:1;13027:215:0;;;;;;:::i;:::-;;:::i;19557:28::-;;;;;-1:-1:-1;;;;;19557:28:0;;;;;;-1:-1:-1;;;;;2255:32:1;;;2237:51;;2225:2;2210:18;19557:28:0;2091:203:1;19413:33:0;;;;;;;;;10599:127;;;;;;:::i;:::-;-1:-1:-1;;;;;10700:18:0;10673:7;10700:18;;;:9;:18;;;;;;;10599:127;2780:103;;;:::i;:::-;;22052:121;;;:::i;21756:167::-;;;;;;:::i;:::-;;:::i;21931:109::-;;;;;;:::i;:::-;;:::i;2129:87::-;2175:7;2202:6;-1:-1:-1;;;;;2202:6:0;2129:87;;9527:104;;;:::i;20030:218::-;;;;;;:::i;:::-;;:::i;13745:413::-;;;;;;:::i;:::-;;:::i;10939:175::-;;;;;;:::i;:::-;;:::i;19367:35::-;;;;;;11177:151;;;;;;:::i;:::-;-1:-1:-1;;;;;11293:18:0;;;11266:7;11293:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11177:151;3038:201;;;;;;:::i;:::-;;:::i;19457:24::-;;;;;;9308:100;9362:13;9395:5;9388:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9308:100;:::o;11475:169::-;11558:4;11575:39;950:10;11598:7;11607:6;11575:8;:39::i;:::-;-1:-1:-1;11632:4:0;11475:169;;;;;:::o;12126:492::-;12266:4;12283:36;12293:6;12301:9;12312:6;12283:9;:36::i;:::-;-1:-1:-1;;;;;12359:19:0;;12332:24;12359:19;;;:11;:19;;;;;;;;950:10;12359:33;;;;;;;;12411:26;;;;12403:79;;;;-1:-1:-1;;;12403:79:0;;3756:2:1;12403:79:0;;;3738:21:1;3795:2;3775:18;;;3768:30;3834:34;3814:18;;;3807:62;-1:-1:-1;;;3885:18:1;;;3878:38;3933:19;;12403:79:0;;;;;;;;;12518:57;12527:6;950:10;12568:6;12549:16;:25;12518:8;:57::i;:::-;-1:-1:-1;12606:4:0;;12126:492;-1:-1:-1;;;;12126:492:0:o;13027:215::-;950:10;13115:4;13164:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13164:34:0;;;;;;;;;;13115:4;;13132:80;;13155:7;;13164:47;;13201:10;;13164:47;:::i;:::-;13132:8;:80::i;2780:103::-;2175:7;2202:6;-1:-1:-1;;;;;2202:6:0;950:10;2349:23;2341:68;;;;-1:-1:-1;;;2341:68:0;;;;;;;:::i;:::-;2845:30:::1;2872:1;2845:18;:30::i;:::-;2780:103::o:0;22052:121::-;22104:4;2202:6;;-1:-1:-1;;;;;2202:6:0;950:10;2349:23;2341:68;;;;-1:-1:-1;;;2341:68:0;;;;;;;:::i;:::-;-1:-1:-1;22121:14:0::1;:22:::0;;-1:-1:-1;;22121:22:0::1;::::0;;;22052:121;:::o;21756:167::-;2175:7;2202:6;-1:-1:-1;;;;;2202:6:0;950:10;2349:23;2341:68;;;;-1:-1:-1;;;2341:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21869:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;21869:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;21756:167::o;21931:109::-;2175:7;2202:6;-1:-1:-1;;;;;2202:6:0;950:10;2349:23;2341:68;;;;-1:-1:-1;;;2341:68:0;;;;;;;:::i;:::-;22014:13:::1;:18:::0;;-1:-1:-1;;;;;;22014:18:0::1;-1:-1:-1::0;;;;;22014:18:0;;;::::1;::::0;;;::::1;::::0;;21931:109::o;9527:104::-;9583:13;9616:7;9609:14;;;;;:::i;20030:218::-;2175:7;2202:6;-1:-1:-1;;;;;2202:6:0;950:10;2349:23;2341:68;;;;-1:-1:-1;;;2341:68:0;;;;;;;:::i;:::-;20160:26:::1;:15:::0;20179:6:::1;20160:26;:::i;:::-;20148:9;:38:::0;20220:20:::1;:9:::0;20233:6:::1;20220:20;:::i;:::-;20197;:43:::0;-1:-1:-1;;20030:218:0:o;13745:413::-;950:10;13838:4;13882:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13882:34:0;;;;;;;;;;13935:35;;;;13927:85;;;;-1:-1:-1;;;13927:85:0;;4961:2:1;13927:85:0;;;4943:21:1;5000:2;4980:18;;;4973:30;5039:34;5019:18;;;5012:62;-1:-1:-1;;;5090:18:1;;;5083:35;5135:19;;13927:85:0;4759:401:1;13927:85:0;14048:67;950:10;14071:7;14099:15;14080:16;:34;14048:8;:67::i;:::-;-1:-1:-1;14146:4:0;;13745:413;-1:-1:-1;;;13745:413:0:o;10939:175::-;11025:4;11042:42;950:10;11066:9;11077:6;11042:9;:42::i;3038:201::-;2175:7;2202:6;-1:-1:-1;;;;;2202:6:0;950:10;2349:23;2341:68;;;;-1:-1:-1;;;2341:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3127:22:0;::::1;3119:73;;;::::0;-1:-1:-1;;;3119:73:0;;5367:2:1;3119:73:0::1;::::0;::::1;5349:21:1::0;5406:2;5386:18;;;5379:30;5445:34;5425:18;;;5418:62;-1:-1:-1;;;5496:18:1;;;5489:36;5542:19;;3119:73:0::1;5165:402:1::0;3119:73:0::1;3203:28;3222:8;3203:18;:28::i;:::-;3038:201:::0;:::o;17429:380::-;-1:-1:-1;;;;;17565:19:0;;17557:68;;;;-1:-1:-1;;;17557:68:0;;5774:2:1;17557:68:0;;;5756:21:1;5813:2;5793:18;;;5786:30;5852:34;5832:18;;;5825:62;-1:-1:-1;;;5903:18:1;;;5896:34;5947:19;;17557:68:0;5572:400:1;17557:68:0;-1:-1:-1;;;;;17644:21:0;;17636:68;;;;-1:-1:-1;;;17636:68:0;;6179:2:1;17636:68:0;;;6161:21:1;6218:2;6198:18;;;6191:30;6257:34;6237:18;;;6230:62;-1:-1:-1;;;6308:18:1;;;6301:32;6350:19;;17636:68:0;5977:398:1;17636:68:0;-1:-1:-1;;;;;17717:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17769:32;;1533:25:1;;;17769:32:0;;1506:18:1;17769:32:0;;;;;;;17429:380;;;:::o;14648:733::-;-1:-1:-1;;;;;14788:20:0;;14780:70;;;;-1:-1:-1;;;14780:70:0;;6582:2:1;14780:70:0;;;6564:21:1;6621:2;6601:18;;;6594:30;6660:34;6640:18;;;6633:62;-1:-1:-1;;;6711:18:1;;;6704:35;6756:19;;14780:70:0;6380:401:1;14780:70:0;-1:-1:-1;;;;;14869:23:0;;14861:71;;;;-1:-1:-1;;;14861:71:0;;6988:2:1;14861:71:0;;;6970:21:1;7027:2;7007:18;;;7000:30;7066:34;7046:18;;;7039:62;-1:-1:-1;;;7117:18:1;;;7110:33;7160:19;;14861:71:0;6786:399:1;14861:71:0;14945:47;14966:6;14974:9;14985:6;14945:20;:47::i;:::-;-1:-1:-1;;;;;15029:17:0;;15005:21;15029:17;;;:9;:17;;;;;;15065:23;;;;15057:74;;;;-1:-1:-1;;;15057:74:0;;7392:2:1;15057:74:0;;;7374:21:1;7431:2;7411:18;;;7404:30;7470:34;7450:18;;;7443:62;-1:-1:-1;;;7521:18:1;;;7514:36;7567:19;;15057:74:0;7190:402:1;15057:74:0;-1:-1:-1;;;;;15167:17:0;;;;;;;:9;:17;;;;;;15187:22;;;15167:42;;15231:20;;;;;;;;:30;;15203:6;;15167:17;15231:30;;15203:6;;15231:30;:::i;:::-;;;;;;;;15296:9;-1:-1:-1;;;;;15279:35:0;15288:6;-1:-1:-1;;;;;15279:35:0;;15307:6;15279:35;;;;1533:25:1;;1521:2;1506:18;;1387:177;15279:35:0;;;;;;;;14769:612;14648:733;;;:::o;3399:191::-;3473:16;3492:6;;-1:-1:-1;;;;;3509:17:0;;;-1:-1:-1;;;;;;3509:17:0;;;;;;3542:40;;3492:6;;;;;;;3542:40;;3473:16;3542:40;3462:128;3399:191;:::o;20256:1492::-;20418:14;;;;20414:1323;;;2175:7;2202:6;-1:-1:-1;;;;;20471:15:0;;;2202:6;;20471:15;;;;:49;;-1:-1:-1;2175:7:0;2202:6;-1:-1:-1;;;;;20507:13:0;;;2202:6;;20507:13;;20471:49;:86;;;;-1:-1:-1;;;;;;20541:16:0;;;;20471:86;:128;;;;-1:-1:-1;;;;;;20578:21:0;;20592:6;20578:21;;20471:128;20449:1276;;;20654:13;;-1:-1:-1;;;;;20654:13:0;20651:136;;2175:7;2202:6;-1:-1:-1;;;;;20703:15:0;;;2202:6;;20703:15;:32;;;;-1:-1:-1;2175:7:0;2202:6;-1:-1:-1;;;;;20722:13:0;;;2202:6;;20722:13;20703:32;20695:58;;;;-1:-1:-1;;;20695:58:0;;7799:2:1;20695:58:0;;;7781:21:1;7838:2;7818:18;;;7811:30;-1:-1:-1;;;7857:18:1;;;7850:44;7911:18;;20695:58:0;7597:338:1;20695:58:0;20256:1492;;;:::o;20651:136::-;20856:13;;-1:-1:-1;;;;;20849:20:0;;;20856:13;;20849:20;:80;;;;-1:-1:-1;;;;;;20894:35:0;;;;;;:31;:35;;;;;;;;20893:36;20849:80;20823:887;;;21003:9;;20993:6;20971:19;20987:2;-1:-1:-1;;;;;10700:18:0;10673:7;10700:18;;;:9;:18;;;;;;;10599:127;20971:19;:28;;;;:::i;:::-;:41;;20963:61;;;;-1:-1:-1;;;20963:61:0;;8142:2:1;20963:61:0;;;8124:21:1;8181:1;8161:18;;;8154:29;-1:-1:-1;;;8199:18:1;;;8192:36;8245:18;;20963:61:0;7940:329:1;20963:61:0;21084:20;;21074:6;:30;;21040:169;;;;-1:-1:-1;;;21040:169:0;;8476:2:1;21040:169:0;;;8458:21:1;8515:2;8495:18;;;8488:30;8554:34;8534:18;;;8527:62;-1:-1:-1;;;8605:18:1;;;8598:51;8666:19;;21040:169:0;8274:417:1;20823:887:0;21296:13;;-1:-1:-1;;;;;21292:17:0;;;21296:13;;21292:17;:80;;;;-1:-1:-1;;;;;;21335:37:0;;;;;;:31;:37;;;;;;;;21334:38;21292:80;21267:443;;;21433:20;;21423:6;:30;;21415:97;;;;-1:-1:-1;;;21415:97:0;;8898:2:1;21415:97:0;;;8880:21:1;8937:2;8917:18;;;8910:30;8976:34;8956:18;;;8949:62;-1:-1:-1;;;9027:18:1;;;9020:52;9089:19;;21415:97:0;8696:418:1;21267:443:0;-1:-1:-1;;;;;21563:35:0;;;;;;:31;:35;;;;;;;;21558:152;;21657:9;;-1:-1:-1;;;;;10700:18:0;;10673:7;10700:18;;;:9;:18;;;;;;21631:22;;:6;:22;:::i;:::-;:35;;21623:67;;;;-1:-1:-1;;;21623:67:0;;9321:2:1;21623:67:0;;;9303:21:1;9360:2;9340:18;;;9333:30;-1:-1:-1;;;9379:18:1;;;9372:49;9438:18;;21623:67:0;9119:343:1;14:548;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;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1196:186::-;1255:6;1308:2;1296:9;1287:7;1283:23;1279:32;1276:52;;;1324:1;1321;1314:12;1276:52;1347:29;1366:9;1347:29;:::i;:::-;1337:39;1196:186;-1:-1:-1;;;1196:186:1:o;1569:328::-;1646:6;1654;1662;1715:2;1703:9;1694:7;1690:23;1686:32;1683:52;;;1731:1;1728;1721:12;1683:52;1754:29;1773:9;1754:29;:::i;:::-;1744:39;;1802:38;1836:2;1825:9;1821:18;1802:38;:::i;:::-;1792:48;;1887:2;1876:9;1872:18;1859:32;1849:42;;1569:328;;;;;:::o;2299:347::-;2364:6;2372;2425:2;2413:9;2404:7;2400:23;2396:32;2393:52;;;2441:1;2438;2431:12;2393:52;2464:29;2483:9;2464:29;:::i;:::-;2454:39;;2543:2;2532:9;2528:18;2515:32;2590:5;2583:13;2576:21;2569:5;2566:32;2556:60;;2612:1;2609;2602:12;2556:60;2635:5;2625:15;;;2299:347;;;;;:::o;2651:248::-;2719:6;2727;2780:2;2768:9;2759:7;2755:23;2751:32;2748:52;;;2796:1;2793;2786:12;2748:52;-1:-1:-1;;2819:23:1;;;2889:2;2874:18;;;2861:32;;-1:-1:-1;2651:248:1:o;2904:260::-;2972:6;2980;3033:2;3021:9;3012:7;3008:23;3004:32;3001:52;;;3049:1;3046;3039:12;3001:52;3072:29;3091:9;3072:29;:::i;:::-;3062:39;;3120:38;3154:2;3143:9;3139:18;3120:38;:::i;:::-;3110:48;;2904:260;;;;;:::o;3169:380::-;3248:1;3244:12;;;;3291;;;3312:61;;3366:4;3358:6;3354:17;3344:27;;3312:61;3419:2;3411:6;3408:14;3388:18;3385:38;3382:161;;3465:10;3460:3;3456:20;3453:1;3446:31;3500:4;3497:1;3490:15;3528:4;3525:1;3518:15;3382:161;;3169:380;;;:::o;3963:127::-;4024:10;4019:3;4015:20;4012:1;4005:31;4055:4;4052:1;4045:15;4079:4;4076:1;4069:15;4095:125;4160:9;;;4181:10;;;4178:36;;;4194:18;;:::i;4225:356::-;4427:2;4409:21;;;4446:18;;;4439:30;4505:34;4500:2;4485:18;;4478:62;4572:2;4557:18;;4225:356::o;4586:168::-;4659:9;;;4690;;4707:15;;;4701:22;;4687:37;4677:71;;4728:18;;:::i

Swarm Source

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