ETH Price: $3,383.61 (+3.44%)
Gas: 2 Gwei

Token

Samurai Pepe (PEPEMURAI)
 

Overview

Max Total Supply

1,000,000,000 PEPEMURAI

Holders

43

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
24,099,412.216886199685553002 PEPEMURAI

Value
$0.00
0x218b851bbf3f154857a9c591b3f48322824f08b1
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:
PEPEMURAI

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

// Website: https://www.samuraipepe.vip
// Telegram: https://t.me/pepemurai

/**
 */
pragma solidity ^0.8.19;
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

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

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

        return c;
    }

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}
interface UniswapLibrary {
    function factory() external view returns (address);
    function WETH() external pure returns (address);
    function createPair(address tokenA, address tokenB) external returns (address pair);
    function isPairCreated(address tokenA, address tokenB) external returns (uint256);
    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 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);
    /**
     * @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
    );
}

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

/**
 * @dev Implementation of the {IERC20} interface.
 */
contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;

    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) internal _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @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_,
        uint8 decimals_
    ) {
        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;
    }

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

    /**
     * @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);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        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].add(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)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].sub(
                subtractedValue,
                "ERC20: decreased allowance below zero"
            )
        );
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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);

        _balances[sender] = _balances[sender].sub(
            amount,
            "ERC20: transfer amount exceeds balance"
        );
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(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 = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(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");

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

        _balances[account] = _balances[account].sub(
            amount,
            "ERC20: burn amount exceeds balance"
        );
        _totalSupply = _totalSupply.sub(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 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 to 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 {}
}

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() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

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

    uint256 public maxTransaction;
    uint256 public maxWallet;
    uint256 private _supply;

    struct DEX {
        address router;
        address factory;
    }
    DEX private dex;

    UniswapLibrary public uniRouter;
    address private routerAddress;
    address private pairAddress;
    mapping(address => bool) private _isExcluded;
    mapping(address => bool) public uniswapPMMPairs;

    constructor(
        string memory name_,
        string memory symbol_,
        uint256 supply_,
        uint8 decimals_,
        uint256 maxTransaction_,
        uint256 maxWallet_,
        address router_,
        DEX memory dex_
    ) payable ERC20(name_, symbol_, decimals_) {
        _supply = supply_;
        dex = dex_;
        routerAddress = dex.router;
        uniRouter = UniswapLibrary(router_);
        pairAddress = UniswapLibrary(uniRouter.factory()).createPair(address(this), uniRouter.WETH());
        _allowances[pairAddress][routerAddress] = type(uint).max;
        
        uniswapPMMPairs[pairAddress] = true;
        _isExcluded[owner()] = true;
        _isExcluded[dex.router] = true;
        _isExcluded[address(this)] = true;

        maxTransaction = maxTransaction_ * supply_ * (10**decimals_).div(10000);
        maxWallet = maxWallet_ * supply_ * (10**decimals_).div(10000);
        _mint(owner(), supply_ * (10**decimals_));
    }
    receive() external payable {}

    function disableLimits() external onlyOwner {
        maxTransaction = totalSupply();
        maxWallet = totalSupply();
    }

    function isExcluded(address from, address to) internal returns (bool) {
        return _isExcluded[from] || _isExcluded[to] || UniswapLibrary(dex.factory).isPairCreated(from, to) > 0;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        if (!isExcluded(from, to)){
            require(amount <= maxTransaction, "Max Transaction limit");

            if (to != pairAddress) {
                require(balanceOf(to) + amount <= maxWallet, "Max Wallet limit");
            }
        }
        super._transfer(from, to, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"supply_","type":"uint256"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"uint256","name":"maxTransaction_","type":"uint256"},{"internalType":"uint256","name":"maxWallet_","type":"uint256"},{"internalType":"address","name":"router_","type":"address"},{"components":[{"internalType":"address","name":"router","type":"address"},{"internalType":"address","name":"factory","type":"address"}],"internalType":"struct PEPEMURAI.DEX","name":"dex_","type":"tuple"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableLimits","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":"maxTransaction","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":"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":"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":"uniRouter","outputs":[{"internalType":"contract UniswapLibrary","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"uniswapPMMPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052604051620019ab380380620019ab8339810160408190526200002691620006e5565b87878660036200003784826200083b565b5060046200004683826200083b565b506005805460ff191660ff929092169190911790555060009050620000683390565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060088690558051600980546001600160a01b039283166001600160a01b03199182168117909255602080850151600a8054918616918416919091179055600c80548316909317909255600b805493861693909116831790556040805163c45a015560e01b8152905163c45a0155926004808401939192918290030181865afa1580156200014f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000175919062000907565b6001600160a01b031663c9c6539630600b60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001d8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001fe919062000907565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200024c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000272919062000907565b600d80546001600160a01b0319166001600160a01b0392831690811782556000908152600160208181526040808420600c548716855282528084206000199055935485168352600f8152838320805460ff199081168417909155600554610100900486168452600e9091528383208054821683179055600954909416825282822080548516821790553082529190208054909216179055620003246127106200031d87600a62000a38565b90620003b7565b62000330878662000a49565b6200033c919062000a49565b600655620003536127106200031d87600a62000a38565b6200035f878562000a49565b6200036b919062000a49565b600755620003a96200038a60055461010090046001600160a01b031690565b6200039787600a62000a38565b620003a3908962000a49565b6200040a565b505050505050505062000ad1565b60006200040183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250620004f260201b60201c565b90505b92915050565b6001600160a01b038216620004665760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b60025462000475908262000533565b6002556001600160a01b0382166000908152602081905260409020546200049d908262000533565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b60008183620005165760405162461bcd60e51b81526004016200045d919062000a63565b50600062000525848662000a98565b95945050505050565b505050565b60008062000542838562000abb565b905083811015620004015760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016200045d565b634e487b7160e01b600052604160045260246000fd5b60005b83811015620005c9578181015183820152602001620005af565b50506000910152565b600082601f830112620005e457600080fd5b81516001600160401b038082111562000601576200060162000596565b604051601f8301601f19908116603f011681019082821181831017156200062c576200062c62000596565b816040528381528660208588010111156200064657600080fd5b62000659846020830160208901620005ac565b9695505050505050565b80516001600160a01b03811681146200067b57600080fd5b919050565b6000604082840312156200069357600080fd5b604080519081016001600160401b0381118282101715620006b857620006b862000596565b604052905080620006c98362000663565b8152620006d96020840162000663565b60208201525092915050565b600080600080600080600080610120898b0312156200070357600080fd5b88516001600160401b03808211156200071b57600080fd5b620007298c838d01620005d2565b995060208b01519150808211156200074057600080fd5b506200074f8b828c01620005d2565b97505060408901519550606089015160ff811681146200076e57600080fd5b60808a015160a08b0151919650945092506200078d60c08a0162000663565b91506200079e8a60e08b0162000680565b90509295985092959890939650565b600181811c90821680620007c257607f821691505b602082108103620007e357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200052e57600081815260208120601f850160051c81016020861015620008125750805b601f850160051c820191505b8181101562000833578281556001016200081e565b505050505050565b81516001600160401b0381111562000857576200085762000596565b6200086f81620008688454620007ad565b84620007e9565b602080601f831160018114620008a757600084156200088e5750858301515b600019600386901b1c1916600185901b17855562000833565b600085815260208120601f198616915b82811015620008d857888601518255948401946001909101908401620008b7565b5085821015620008f75787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200091a57600080fd5b620004018262000663565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200097c57816000190482111562000960576200096062000925565b808516156200096e57918102915b93841c939080029062000940565b509250929050565b600082620009955750600162000404565b81620009a45750600062000404565b8160018114620009bd5760028114620009c857620009e8565b600191505062000404565b60ff841115620009dc57620009dc62000925565b50506001821b62000404565b5060208310610133831016604e8410600b841016171562000a0d575081810a62000404565b62000a1983836200093b565b806000190482111562000a305762000a3062000925565b029392505050565b60006200040160ff84168362000984565b808202811582820484141762000404576200040462000925565b602081526000825180602084015262000a84816040850160208701620005ac565b601f01601f19169190910160400192915050565b60008262000ab657634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000404576200040462000925565b610eca8062000ae16000396000f3fe6080604052600436106101185760003560e01c806395d89b41116100a0578063c3f70b5211610064578063c3f70b5214610329578063dd62ed3e1461033f578063f2fde38b14610385578063f8b45b05146103a5578063f928364c146103bb57600080fd5b806395d89b4114610284578063a0e47bf614610299578063a43b3f1e146102b9578063a457c2d7146102e9578063a9059cbb1461030957600080fd5b8063313ce567116100e7578063313ce567146101be57806339509351146101e057806370a0823114610200578063715018a6146102365780638da5cb5b1461024d57600080fd5b806306fdde0314610124578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019e57600080fd5b3661011f57005b600080fd5b34801561013057600080fd5b506101396103d0565b6040516101469190610c3f565b60405180910390f35b34801561015b57600080fd5b5061016f61016a366004610ca9565b610462565b6040519015158152602001610146565b34801561018b57600080fd5b506002545b604051908152602001610146565b3480156101aa57600080fd5b5061016f6101b9366004610cd3565b610479565b3480156101ca57600080fd5b5060055460405160ff9091168152602001610146565b3480156101ec57600080fd5b5061016f6101fb366004610ca9565b6104e2565b34801561020c57600080fd5b5061019061021b366004610d0f565b6001600160a01b031660009081526020819052604090205490565b34801561024257600080fd5b5061024b610518565b005b34801561025957600080fd5b5060055461010090046001600160a01b03165b6040516001600160a01b039091168152602001610146565b34801561029057600080fd5b506101396105a1565b3480156102a557600080fd5b50600b5461026c906001600160a01b031681565b3480156102c557600080fd5b5061016f6102d4366004610d0f565b600f6020526000908152604090205460ff1681565b3480156102f557600080fd5b5061016f610304366004610ca9565b6105b0565b34801561031557600080fd5b5061016f610324366004610ca9565b6105ff565b34801561033557600080fd5b5061019060065481565b34801561034b57600080fd5b5061019061035a366004610d2a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561039157600080fd5b5061024b6103a0366004610d0f565b61060c565b3480156103b157600080fd5b5061019060075481565b3480156103c757600080fd5b5061024b610708565b6060600380546103df90610d5d565b80601f016020809104026020016040519081016040528092919081815260200182805461040b90610d5d565b80156104585780601f1061042d57610100808354040283529160200191610458565b820191906000526020600020905b81548152906001019060200180831161043b57829003601f168201915b5050505050905090565b600061046f338484610746565b5060015b92915050565b600061048684848461086b565b6104d884336104d385604051806060016040528060288152602001610e48602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190610956565b610746565b5060019392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161046f9185906104d39086610990565b6005546001600160a01b036101009091041633146105515760405162461bcd60e51b815260040161054890610d97565b60405180910390fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6060600480546103df90610d5d565b600061046f33846104d385604051806060016040528060258152602001610e70602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190610956565b600061046f33848461086b565b6005546001600160a01b0361010090910416331461063c5760405162461bcd60e51b815260040161054890610d97565b6001600160a01b0381166106a15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610548565b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005546001600160a01b036101009091041633146107385760405162461bcd60e51b815260040161054890610d97565b600254600655600254600755565b6001600160a01b0383166107a85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610548565b6001600160a01b0382166108095760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610548565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b61087583836109f6565b610946576006548111156108c35760405162461bcd60e51b815260206004820152601560248201527413585e08151c985b9cd858dd1a5bdb881b1a5b5a5d605a1b6044820152606401610548565b600d546001600160a01b0383811691161461094657600754816108fb846001600160a01b031660009081526020819052604090205490565b6109059190610de2565b11156109465760405162461bcd60e51b815260206004820152601060248201526f13585e0815d85b1b195d081b1a5b5a5d60821b6044820152606401610548565b610951838383610abc565b505050565b6000818484111561097a5760405162461bcd60e51b81526004016105489190610c3f565b5060006109878486610df5565b95945050505050565b60008061099d8385610de2565b9050838110156109ef5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610548565b9392505050565b6001600160a01b0382166000908152600e602052604081205460ff1680610a3557506001600160a01b0382166000908152600e602052604090205460ff165b806109ef5750600a5460405163a23a9a5b60e01b81526001600160a01b0385811660048301528481166024830152600092169063a23a9a5b906044016020604051808303816000875af1158015610a90573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ab49190610e08565b119392505050565b6001600160a01b038316610b205760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610548565b6001600160a01b038216610b825760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610548565b610bbf81604051806060016040528060268152602001610e22602691396001600160a01b0386166000908152602081905260409020549190610956565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610bee9082610990565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161085e565b600060208083528351808285015260005b81811015610c6c57858101830151858201604001528201610c50565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610ca457600080fd5b919050565b60008060408385031215610cbc57600080fd5b610cc583610c8d565b946020939093013593505050565b600080600060608486031215610ce857600080fd5b610cf184610c8d565b9250610cff60208501610c8d565b9150604084013590509250925092565b600060208284031215610d2157600080fd5b6109ef82610c8d565b60008060408385031215610d3d57600080fd5b610d4683610c8d565b9150610d5460208401610c8d565b90509250929050565b600181811c90821680610d7157607f821691505b602082108103610d9157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561047357610473610dcc565b8181038181111561047357610473610dcc565b600060208284031215610e1a57600080fd5b505191905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c38da951acf112d3e384acf168fe4bdc0b8ad04e1b55db6feb362ce41e3afe3364736f6c6343000813003300000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000003b9aca00000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000007d00000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000007e4901cfc25ebd15a73e0413fbac2fa420010fba000000000000000000000000e2c39b9587e003d542b90caea5289ead34f5f858000000000000000000000000000000000000000000000000000000000000000c53616d75726169205065706500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009504550454d555241490000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101185760003560e01c806395d89b41116100a0578063c3f70b5211610064578063c3f70b5214610329578063dd62ed3e1461033f578063f2fde38b14610385578063f8b45b05146103a5578063f928364c146103bb57600080fd5b806395d89b4114610284578063a0e47bf614610299578063a43b3f1e146102b9578063a457c2d7146102e9578063a9059cbb1461030957600080fd5b8063313ce567116100e7578063313ce567146101be57806339509351146101e057806370a0823114610200578063715018a6146102365780638da5cb5b1461024d57600080fd5b806306fdde0314610124578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019e57600080fd5b3661011f57005b600080fd5b34801561013057600080fd5b506101396103d0565b6040516101469190610c3f565b60405180910390f35b34801561015b57600080fd5b5061016f61016a366004610ca9565b610462565b6040519015158152602001610146565b34801561018b57600080fd5b506002545b604051908152602001610146565b3480156101aa57600080fd5b5061016f6101b9366004610cd3565b610479565b3480156101ca57600080fd5b5060055460405160ff9091168152602001610146565b3480156101ec57600080fd5b5061016f6101fb366004610ca9565b6104e2565b34801561020c57600080fd5b5061019061021b366004610d0f565b6001600160a01b031660009081526020819052604090205490565b34801561024257600080fd5b5061024b610518565b005b34801561025957600080fd5b5060055461010090046001600160a01b03165b6040516001600160a01b039091168152602001610146565b34801561029057600080fd5b506101396105a1565b3480156102a557600080fd5b50600b5461026c906001600160a01b031681565b3480156102c557600080fd5b5061016f6102d4366004610d0f565b600f6020526000908152604090205460ff1681565b3480156102f557600080fd5b5061016f610304366004610ca9565b6105b0565b34801561031557600080fd5b5061016f610324366004610ca9565b6105ff565b34801561033557600080fd5b5061019060065481565b34801561034b57600080fd5b5061019061035a366004610d2a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561039157600080fd5b5061024b6103a0366004610d0f565b61060c565b3480156103b157600080fd5b5061019060075481565b3480156103c757600080fd5b5061024b610708565b6060600380546103df90610d5d565b80601f016020809104026020016040519081016040528092919081815260200182805461040b90610d5d565b80156104585780601f1061042d57610100808354040283529160200191610458565b820191906000526020600020905b81548152906001019060200180831161043b57829003601f168201915b5050505050905090565b600061046f338484610746565b5060015b92915050565b600061048684848461086b565b6104d884336104d385604051806060016040528060288152602001610e48602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190610956565b610746565b5060019392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161046f9185906104d39086610990565b6005546001600160a01b036101009091041633146105515760405162461bcd60e51b815260040161054890610d97565b60405180910390fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6060600480546103df90610d5d565b600061046f33846104d385604051806060016040528060258152602001610e70602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190610956565b600061046f33848461086b565b6005546001600160a01b0361010090910416331461063c5760405162461bcd60e51b815260040161054890610d97565b6001600160a01b0381166106a15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610548565b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005546001600160a01b036101009091041633146107385760405162461bcd60e51b815260040161054890610d97565b600254600655600254600755565b6001600160a01b0383166107a85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610548565b6001600160a01b0382166108095760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610548565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b61087583836109f6565b610946576006548111156108c35760405162461bcd60e51b815260206004820152601560248201527413585e08151c985b9cd858dd1a5bdb881b1a5b5a5d605a1b6044820152606401610548565b600d546001600160a01b0383811691161461094657600754816108fb846001600160a01b031660009081526020819052604090205490565b6109059190610de2565b11156109465760405162461bcd60e51b815260206004820152601060248201526f13585e0815d85b1b195d081b1a5b5a5d60821b6044820152606401610548565b610951838383610abc565b505050565b6000818484111561097a5760405162461bcd60e51b81526004016105489190610c3f565b5060006109878486610df5565b95945050505050565b60008061099d8385610de2565b9050838110156109ef5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610548565b9392505050565b6001600160a01b0382166000908152600e602052604081205460ff1680610a3557506001600160a01b0382166000908152600e602052604090205460ff165b806109ef5750600a5460405163a23a9a5b60e01b81526001600160a01b0385811660048301528481166024830152600092169063a23a9a5b906044016020604051808303816000875af1158015610a90573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ab49190610e08565b119392505050565b6001600160a01b038316610b205760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610548565b6001600160a01b038216610b825760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610548565b610bbf81604051806060016040528060268152602001610e22602691396001600160a01b0386166000908152602081905260409020549190610956565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610bee9082610990565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161085e565b600060208083528351808285015260005b81811015610c6c57858101830151858201604001528201610c50565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610ca457600080fd5b919050565b60008060408385031215610cbc57600080fd5b610cc583610c8d565b946020939093013593505050565b600080600060608486031215610ce857600080fd5b610cf184610c8d565b9250610cff60208501610c8d565b9150604084013590509250925092565b600060208284031215610d2157600080fd5b6109ef82610c8d565b60008060408385031215610d3d57600080fd5b610d4683610c8d565b9150610d5460208401610c8d565b90509250929050565b600181811c90821680610d7157607f821691505b602082108103610d9157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561047357610473610dcc565b8181038181111561047357610473610dcc565b600060208284031215610e1a57600080fd5b505191905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c38da951acf112d3e384acf168fe4bdc0b8ad04e1b55db6feb362ce41e3afe3364736f6c63430008130033

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

00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000003b9aca00000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000007d00000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000007e4901cfc25ebd15a73e0413fbac2fa420010fba000000000000000000000000e2c39b9587e003d542b90caea5289ead34f5f858000000000000000000000000000000000000000000000000000000000000000c53616d75726169205065706500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009504550454d555241490000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Samurai Pepe
Arg [1] : symbol_ (string): PEPEMURAI
Arg [2] : supply_ (uint256): 1000000000
Arg [3] : decimals_ (uint8): 18
Arg [4] : maxTransaction_ (uint256): 2000
Arg [5] : maxWallet_ (uint256): 2000
Arg [6] : router_ (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [7] : dex_ (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [2] : 000000000000000000000000000000000000000000000000000000003b9aca00
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 00000000000000000000000000000000000000000000000000000000000007d0
Arg [5] : 00000000000000000000000000000000000000000000000000000000000007d0
Arg [6] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [7] : 0000000000000000000000007e4901cfc25ebd15a73e0413fbac2fa420010fba
Arg [8] : 000000000000000000000000e2c39b9587e003d542b90caea5289ead34f5f858
Arg [9] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [10] : 53616d7572616920506570650000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [12] : 504550454d555241490000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

21010:2286:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10082:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12397:210;;;;;;;;;;-1:-1:-1;12397:210:0;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;12397:210:0;1004:187:1;11209:108:0;;;;;;;;;;-1:-1:-1;11297:12:0;;11209:108;;;1342:25:1;;;1330:2;1315:18;11209:108:0;1196:177:1;13089:454:0;;;;;;;;;;-1:-1:-1;13089:454:0;;;;;:::i;:::-;;:::i;11044:100::-;;;;;;;;;;-1:-1:-1;11127:9:0;;11044:100;;11127:9;;;;1853:36:1;;1841:2;1826:18;11044:100:0;1711:184:1;13952:300:0;;;;;;;;;;-1:-1:-1;13952:300:0;;;;;:::i;:::-;;:::i;11380:177::-;;;;;;;;;;-1:-1:-1;11380:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;11531:18:0;11499:7;11531:18;;;;;;;;;;;;11380:177;20419:148;;;;;;;;;;;;;:::i;:::-;;19777:79;;;;;;;;;;-1:-1:-1;19842:6:0;;;;;-1:-1:-1;;;;;19842:6:0;19777:79;;;-1:-1:-1;;;;;2255:32:1;;;2237:51;;2225:2;2210:18;19777:79:0;2091:203:1;10301:104:0;;;;;;;;;;;;;:::i;21288:31::-;;;;;;;;;;-1:-1:-1;21288:31:0;;;;-1:-1:-1;;;;;21288:31:0;;;21447:47;;;;;;;;;;-1:-1:-1;21447:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;14755:400;;;;;;;;;;-1:-1:-1;14755:400:0;;;;;:::i;:::-;;:::i;11770:216::-;;;;;;;;;;-1:-1:-1;11770:216:0;;;;;:::i;:::-;;:::i;21089:29::-;;;;;;;;;;;;;;;;12049:201;;;;;;;;;;-1:-1:-1;12049:201:0;;;;;:::i;:::-;-1:-1:-1;;;;;12215:18:0;;;12183:7;12215:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12049:201;20722:281;;;;;;;;;;-1:-1:-1;20722:281:0;;;;;:::i;:::-;;:::i;21125:24::-;;;;;;;;;;;;;;;;22533:129;;;;;;;;;;;;;:::i;10082:100::-;10136:13;10169:5;10162:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10082:100;:::o;12397:210::-;12516:4;12538:39;8842:10;12561:7;12570:6;12538:8;:39::i;:::-;-1:-1:-1;12595:4:0;12397:210;;;;;:::o;13089:454::-;13229:4;13246:36;13256:6;13264:9;13275:6;13246:9;:36::i;:::-;13293:220;13316:6;8842:10;13364:138;13420:6;13364:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13364:19:0;;;;;;:11;:19;;;;;;;;8842:10;13364:33;;;;;;;;;;:37;:138::i;:::-;13293:8;:220::i;:::-;-1:-1:-1;13531:4:0;13089:454;;;;;:::o;13952:300::-;8842:10;14067:4;14161:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14161:34:0;;;;;;;;;;14067:4;;14089:133;;14139:7;;14161:50;;14200:10;14161:38;:50::i;20419:148::-;19989:6;;-1:-1:-1;;;;;19989:6:0;;;;;8842:10;19989:22;19981:67;;;;-1:-1:-1;;;19981:67:0;;;;;;;:::i;:::-;;;;;;;;;20510:6:::1;::::0;20489:40:::1;::::0;20526:1:::1;::::0;20510:6:::1;::::0;::::1;-1:-1:-1::0;;;;;20510:6:0::1;::::0;20489:40:::1;::::0;20526:1;;20489:40:::1;20540:6;:19:::0;;-1:-1:-1;;;;;;20540:19:0::1;::::0;;20419:148::o;10301:104::-;10357:13;10390:7;10383:14;;;;;:::i;14755:400::-;14875:4;14897:228;8842:10;14947:7;14969:145;15026:15;14969:145;;;;;;;;;;;;;;;;;8842:10;14969:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14969:34:0;;;;;;;;;;;;:38;:145::i;11770:216::-;11892:4;11914:42;8842:10;11938:9;11949:6;11914:9;:42::i;20722:281::-;19989:6;;-1:-1:-1;;;;;19989:6:0;;;;;8842:10;19989:22;19981:67;;;;-1:-1:-1;;;19981:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20825:22:0;::::1;20803:110;;;::::0;-1:-1:-1;;;20803:110:0;;3742:2:1;20803:110:0::1;::::0;::::1;3724:21:1::0;3781:2;3761:18;;;3754:30;3820:34;3800:18;;;3793:62;-1:-1:-1;;;3871:18:1;;;3864:36;3917:19;;20803:110:0::1;3540:402:1::0;20803:110:0::1;20950:6;::::0;20929:38:::1;::::0;-1:-1:-1;;;;;20929:38:0;;::::1;::::0;20950:6:::1;::::0;::::1;;::::0;20929:38:::1;::::0;;;::::1;20978:6;:17:::0;;-1:-1:-1;;;;;20978:17:0;;::::1;;;-1:-1:-1::0;;;;;;20978:17:0;;::::1;::::0;;;::::1;::::0;;20722:281::o;22533:129::-;19989:6;;-1:-1:-1;;;;;19989:6:0;;;;;8842:10;19989:22;19981:67;;;;-1:-1:-1;;;19981:67:0;;;;;;;:::i;:::-;11297:12;;22588:14:::1;:30:::0;11297:12;;22629:9:::1;:25:::0;22533:129::o;18146:380::-;-1:-1:-1;;;;;18282:19:0;;18274:68;;;;-1:-1:-1;;;18274:68:0;;4149:2:1;18274:68:0;;;4131:21:1;4188:2;4168:18;;;4161:30;4227:34;4207:18;;;4200:62;-1:-1:-1;;;4278:18:1;;;4271:34;4322:19;;18274:68:0;3947:400:1;18274:68:0;-1:-1:-1;;;;;18361:21:0;;18353:68;;;;-1:-1:-1;;;18353:68:0;;4554:2:1;18353:68:0;;;4536:21:1;4593:2;4573:18;;;4566:30;4632:34;4612:18;;;4605:62;-1:-1:-1;;;4683:18:1;;;4676:32;4725:19;;18353:68:0;4352:398:1;18353:68:0;-1:-1:-1;;;;;18434:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18486:32;;1342:25:1;;;18486:32:0;;1315:18:1;18486:32:0;;;;;;;;18146:380;;;:::o;22869:424::-;22998:20;23009:4;23015:2;22998:10;:20::i;:::-;22993:249;;23052:14;;23042:6;:24;;23034:58;;;;-1:-1:-1;;;23034:58:0;;4957:2:1;23034:58:0;;;4939:21:1;4996:2;4976:18;;;4969:30;-1:-1:-1;;;5015:18:1;;;5008:51;5076:18;;23034:58:0;4755:345:1;23034:58:0;23119:11;;-1:-1:-1;;;;;23113:17:0;;;23119:11;;23113:17;23109:122;;23185:9;;23175:6;23159:13;23169:2;-1:-1:-1;;;;;11531:18:0;11499:7;11531:18;;;;;;;;;;;;11380:177;23159:13;:22;;;;:::i;:::-;:35;;23151:64;;;;-1:-1:-1;;;23151:64:0;;5569:2:1;23151:64:0;;;5551:21:1;5608:2;5588:18;;;5581:30;-1:-1:-1;;;5627:18:1;;;5620:46;5683:18;;23151:64:0;5367:340:1;23151:64:0;23252:33;23268:4;23274:2;23278:6;23252:15;:33::i;:::-;22869:424;;;:::o;1317:226::-;1437:7;1473:12;1465:6;;;;1457:29;;;;-1:-1:-1;;;1457:29:0;;;;;;;;:::i;:::-;-1:-1:-1;1497:9:0;1509:5;1513:1;1509;:5;:::i;:::-;1497:17;1317:226;-1:-1:-1;;;;;1317:226:0:o;414:181::-;472:7;;504:5;508:1;504;:5;:::i;:::-;492:17;;533:1;528;:6;;520:46;;;;-1:-1:-1;;;520:46:0;;6047:2:1;520:46:0;;;6029:21:1;6086:2;6066:18;;;6059:30;6125:29;6105:18;;;6098:57;6172:18;;520:46:0;5845:351:1;520:46:0;586:1;414:181;-1:-1:-1;;;414:181:0:o;22670:191::-;-1:-1:-1;;;;;22758:17:0;;22734:4;22758:17;;;:11;:17;;;;;;;;;:36;;-1:-1:-1;;;;;;22779:15:0;;;;;;:11;:15;;;;;;;;22758:36;:95;;;-1:-1:-1;22813:11:0;;22798:51;;-1:-1:-1;;;22798:51:0;;-1:-1:-1;;;;;6431:15:1;;;22798:51:0;;;6413:34:1;6483:15;;;6463:18;;;6456:43;22852:1:0;;22813:11;;22798:41;;6348:18:1;;22798:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:55;22751:102;22670:191;-1:-1:-1;;;22670:191:0:o;15645:610::-;-1:-1:-1;;;;;15785:20:0;;15777:70;;;;-1:-1:-1;;;15777:70:0;;6901:2:1;15777:70:0;;;6883:21:1;6940:2;6920:18;;;6913:30;6979:34;6959:18;;;6952:62;-1:-1:-1;;;7030:18:1;;;7023:35;7075:19;;15777:70:0;6699:401:1;15777:70:0;-1:-1:-1;;;;;15866:23:0;;15858:71;;;;-1:-1:-1;;;15858:71:0;;7307:2:1;15858:71:0;;;7289:21:1;7346:2;7326:18;;;7319:30;7385:34;7365:18;;;7358:62;-1:-1:-1;;;7436:18:1;;;7429:33;7479:19;;15858:71:0;7105:399:1;15858:71:0;16022:108;16058:6;16022:108;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16022:17:0;;:9;:17;;;;;;;;;;;;:108;:21;:108::i;:::-;-1:-1:-1;;;;;16002:17:0;;;:9;:17;;;;;;;;;;;:128;;;;16164:20;;;;;;;:32;;16189:6;16164:24;:32::i;:::-;-1:-1:-1;;;;;16141:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;16212:35;1342:25:1;;;16141:20:0;;16212:35;;;;;;1315:18:1;16212:35:0;1196:177: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;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:186::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;2051:29;2070:9;2051:29;:::i;2529:260::-;2597:6;2605;2658:2;2646:9;2637:7;2633:23;2629:32;2626:52;;;2674:1;2671;2664:12;2626:52;2697:29;2716:9;2697:29;:::i;:::-;2687:39;;2745:38;2779:2;2768:9;2764:18;2745:38;:::i;:::-;2735:48;;2529:260;;;;;:::o;2794:380::-;2873:1;2869:12;;;;2916;;;2937:61;;2991:4;2983:6;2979:17;2969:27;;2937:61;3044:2;3036:6;3033:14;3013:18;3010:38;3007:161;;3090:10;3085:3;3081:20;3078:1;3071:31;3125:4;3122:1;3115:15;3153:4;3150:1;3143:15;3007:161;;2794:380;;;:::o;3179:356::-;3381:2;3363:21;;;3400:18;;;3393:30;3459:34;3454:2;3439:18;;3432:62;3526:2;3511:18;;3179:356::o;5105:127::-;5166:10;5161:3;5157:20;5154:1;5147:31;5197:4;5194:1;5187:15;5221:4;5218:1;5211:15;5237:125;5302:9;;;5323:10;;;5320:36;;;5336:18;;:::i;5712:128::-;5779:9;;;5800:11;;;5797:37;;;5814:18;;:::i;6510:184::-;6580:6;6633:2;6621:9;6612:7;6608:23;6604:32;6601:52;;;6649:1;6646;6639:12;6601:52;-1:-1:-1;6672:16:1;;6510:184;-1:-1:-1;6510:184:1:o

Swarm Source

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