ETH Price: $2,960.36 (-1.73%)
Gas: 3 Gwei

Token

Butters (BUTTRS)
 

Overview

Max Total Supply

1,000,000,000 BUTTRS

Holders

191

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
autom8ed.eth
Balance
1,295,907.104041764846492251 BUTTRS

Value
$0.00
0x2ba34c711fbd3ab880f32c87889191a663152400
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:
Butters

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
Yes with 1000000 runs

Other Settings:
default evmVersion
File 1 of 9 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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

File 2 of 9 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

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

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

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

File 3 of 9 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.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 4 of 9 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 5 of 9 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 6 of 9 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

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

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

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

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

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

File 7 of 9 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

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

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

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

File 8 of 9 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

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

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

File 9 of 9 : Butters.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.21;

import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {IUniswapV2Factory} from "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";
import {IUniswapV2Router02} from "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";

contract Butters is ERC20, Ownable {

    address constant DEAD_ADDRESS = 0x000000000000000000000000000000000000dEaD;
    address constant ZERO_ADDRESS = address(0);
    address constant MARKETING_ADDRESS = 0xfdcb0c8dDbb318E756152874146c36D1EC43d13E;
    address constant ROUTER_ADDRESS = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
    IUniswapV2Router02 constant ROUTER = IUniswapV2Router02(ROUTER_ADDRESS);

    address immutable CONTRACT_ADDRESS;
    address immutable WETH_ADDRESS;
    address immutable PAIR_ADDRESS;

    constructor() payable ERC20("Butters", "BUTTRS") {
        _mint(msg.sender, 1_000_000_000 * 1e18);
        CONTRACT_ADDRESS = address(this);
        WETH_ADDRESS = ROUTER.WETH();
        PAIR_ADDRESS = IUniswapV2Factory(ROUTER.factory()).createPair(CONTRACT_ADDRESS, WETH_ADDRESS);

        isExcludedFromTaxes[msg.sender] = true;
        isExcludedFromTaxes[CONTRACT_ADDRESS] = true;
        isExcludedFromTaxes[MARKETING_ADDRESS] = true;
    }

    uint256 public buyTax = 4;
    uint256 public sellTax = 20;
    uint256 public marketingBalance;
    bool public tradingEnabled;
    mapping(address => bool) isExcludedFromTaxes;

    error Blocked();

    function _beforeTokenTransfer(address from, address to, uint256 amount) internal pure override {
        if (amount == 0 || to == ZERO_ADDRESS || to == DEAD_ADDRESS) {
            revert Blocked();
        }
    }

    function _transfer(address from, address to, uint256 amount) internal override {
        bool isBuy = from == PAIR_ADDRESS;
        bool isSell = to == PAIR_ADDRESS;
        bool isTransfer = !isBuy && !isSell;
        bool isExcluded = isExcludedFromTaxes[from] || isExcludedFromTaxes[to];
        bool taxFree = isExcluded || isTransfer;

        if (!tradingEnabled) {
            if (!taxFree) {
                revert Blocked();
            }
        }

        if (!taxFree) {
            uint256 tax = isSell ? sellTax : buyTax;
            uint256 taxedTokensAmount = (amount * tax) / 100;
            amount -= taxedTokensAmount;
            marketingBalance += taxedTokensAmount;
            super._transfer(from, CONTRACT_ADDRESS, taxedTokensAmount);

            if (isSell) {
                if (marketingBalance > 0) {
                    swapTokensForReward(MARKETING_ADDRESS, marketingBalance);
                    marketingBalance = 0;
                }
            }
        }

        super._transfer(from, to, amount);
    }

    function swapTokensForReward(address to, uint256 tokenAmount) internal {
        address[] memory path = new address[](2);
        path[0] = CONTRACT_ADDRESS;
        path[1] = WETH_ADDRESS;
        _approve(CONTRACT_ADDRESS, ROUTER_ADDRESS, tokenAmount);
        ROUTER.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount, 0, path, to, block.timestamp);
    }

    function butters() external onlyOwner {
        tradingEnabled = true;
    }

    function setTaxes(uint256 buy, uint256 sell) external onlyOwner {
        buyTax = buy;
        sellTax = sell;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"inputs":[],"name":"Blocked","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"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":"butters","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyTax","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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingBalance","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":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"buy","type":"uint256"},{"internalType":"uint256","name":"sell","type":"uint256"}],"name":"setTaxes","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":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e06040908082526200001281620005ca565b60078152602090664275747465727360c81b8282015282516200003581620005ca565b600681526542555454525360d01b838201528151926001600160401b03808511620004d55760038054956001958688811c98168015620005bf575b85891014620005ab578190601f9889811162000558575b508590898311600114620004f5575f92620004e9575b50505f1982841b1c191690861b1781555b8351918211620004d55760049384548681811c91168015620004ca575b85821014620004b7579081888594931162000462575b508490888411600114620003fb575f93620003ef575b505082861b925f19911b1c19161782555b60058054336001600160a01b03198216811790925586516001600160a01b039692909187167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05f80a383600655601460075533159182620003b05750505f9015620003a4575b62000395576002546b033b2e3c9fd0803ce8000000908181018091116200038257600255335f525f8252855f2081815401905585519081525f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef833393a33060805284516315ab88c960e31b8152737a250d5630b4cf539739df2c5dacb4c659f2488d9082818581855afa9182156200037857849284925f9162000356575b5060a052875163c45a015560e01b815294859182905afa9283156200034c575f9362000326575b50819060448660805116915f888060a05116978b5198899687956364e329cb60e11b87528601526024850152165af180156200031c57600a925f91620002e8575b5060c052335f5252825f209160ff19928284825416179055608051165f52825f20818382541617905573fdcb0c8ddbb318e756152874146c36d1ec43d13e5f52825f20918254161790555161166b908162000630823960805181611025015260a051816110a7015260c05181610f640152f35b6200030d9150823d841162000314575b620003048183620005e6565b8101906200060a565b5f62000275565b503d620002f8565b85513d5f823e3d90fd5b829193506200034490823d84116200031457620003048183620005e6565b929062000234565b86513d5f823e3d90fd5b620003719150833d85116200031457620003048183620005e6565b5f6200020d565b87513d5f823e3d90fd5b601184634e487b7160e01b5f525260245ffd5b50835163a5baf15160e01b8152fd5b5061dead33146200016e565b91509160649362461bcd60e51b845283015260248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152fd5b015191505f80620000f7565b9190879450601f19841692875f52865f20935f5b888282106200044b575050851162000431575b50505050811b01825562000108565b01519060f8845f19921b161c191690555f80808062000422565b8385015187558b989096019593840193016200040f565b90919250855f52845f208880860160051c820192878710620004ad575b91899187969594930160051c01915b8281106200049e575050620000e1565b5f81558695508991016200048e565b925081926200047f565b602286634e487b7160e01b5f525260245ffd5b90607f1690620000cb565b634e487b7160e01b5f52604160045260245ffd5b015190505f806200009d565b90889350601f19831691855f52875f20925f5b8982821062000541575050841162000529575b505050811b018155620000ae565b01515f1983861b60f8161c191690555f80806200051b565b8385015186558c9790950194938401930162000508565b909150835f52855f208980850160051c820192888610620005a1575b918a91869594930160051c01915b8281106200059257505062000087565b5f81558594508a910162000582565b9250819262000574565b634e487b7160e01b5f52602260045260245ffd5b97607f169762000070565b604081019081106001600160401b03821117620004d557604052565b601f909101601f19168101906001600160401b03821190821017620004d557604052565b908160209103126200062b57516001600160a01b03811681036200062b5790565b5f80fdfe60806040818152600480361015610014575f80fd5b5f92833560e01c90816306fdde0314610ab757508063095ea7b314610a6f57806318160ddd14610a3257806323b872dd14610904578063313ce567146108ca57806339509351146108505780634ada218b1461080e5780634f7041a5146107d157806358e553651461079457806370a0823114610733578063715018a6146106955780637b1c8fdb146106305780638da5cb5b146105dd57806395d89b4114610484578063a457c2d71461037f578063a9059cbb14610330578063c647b20e146102ec578063cc1776d3146102af578063dd62ed3e146102375763f2fde38b146100fc575f80fd5b346102335760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261023357610133610c66565b9061013c610cb0565b73ffffffffffffffffffffffffffffffffffffffff8092169283156101b0575050600554827fffffffffffffffffffffffff0000000000000000000000000000000000000000821617600555167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08380a380f35b90602060849251917f08c379a0000000000000000000000000000000000000000000000000000000008352820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152fd5b8280fd5b5050346102ab57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102ab5780602092610273610c66565b61027b610c8d565b73ffffffffffffffffffffffffffffffffffffffff91821683526001865283832091168252845220549051908152f35b5080fd5b5050346102ab57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102ab576020906007549051908152f35b509034610233577ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102ab57610323610cb0565b3560065560243560075580f35b5050346102ab57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102ab5760209061037861036e610c66565b6024359033610f48565b5160018152f35b50823461048157827ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610481576103b7610c66565b918360243592338152600160205281812073ffffffffffffffffffffffffffffffffffffffff861682526020522054908282106103fe576020856103788585038733610dd7565b60849060208651917f08c379a0000000000000000000000000000000000000000000000000000000008352820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152fd5b80fd5b509190346102ab57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102ab57805191809380549160019083821c928285169485156105d3575b60209586861081146105a757858952908115610565575060011461050d575b61050987876104ff828c0383610d2f565b5191829182610c02565b0390f35b81529295507f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b8284106105525750505082610509946104ff92820101945f806104ee565b8054868501880152928601928101610534565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168887015250505050151560051b83010192506104ff826105095f806104ee565b6024846022857f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b93607f16936104cf565b5050346102ab57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102ab5760209073ffffffffffffffffffffffffffffffffffffffff600554169051908152f35b833461048157807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261048157610667610cb0565b60017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00600954161760095580f35b833461048157807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610481576106cc610cb0565b8073ffffffffffffffffffffffffffffffffffffffff6005547fffffffffffffffffffffffff00000000000000000000000000000000000000008116600555167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b5050346102ab5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102ab578060209273ffffffffffffffffffffffffffffffffffffffff610785610c66565b16815280845220549051908152f35b5050346102ab57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102ab576020906008549051908152f35b5050346102ab57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102ab576020906006549051908152f35b5050346102ab57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102ab5760209060ff6009541690519015158152f35b5050346102ab57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102ab576103786020926108c3610891610c66565b913381526001865284812073ffffffffffffffffffffffffffffffffffffffff84168252865284602435912054610d9d565b9033610dd7565b5050346102ab57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102ab576020905160128152f35b508290346102ab5760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102ab5761093e610c66565b610946610c8d565b91846044359473ffffffffffffffffffffffffffffffffffffffff8416815260016020528181203382526020522054907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036109ac575b602086610378878787610f48565b8482106109d557509183916109ca6020969561037895033383610dd7565b91939481935061099e565b60649060208751917f08c379a0000000000000000000000000000000000000000000000000000000008352820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152fd5b5050346102ab57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102ab576020906002549051908152f35b5050346102ab57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102ab57602090610378610aad610c66565b6024359033610dd7565b9291905034610bfe57837ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610bfe57600354600181811c9186908281168015610bf4575b6020958686108214610bc85750848852908115610b885750600114610b2f575b61050986866104ff828b0383610d2f565b929550600383527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b828410610b755750505082610509946104ff92820101945f610b1e565b8054868501880152928601928101610b58565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001687860152505050151560051b83010192506104ff826105095f610b1e565b8360226024927f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b93607f1693610afe565b8380fd5b6020808252825181830181905293925f5b858110610c52575050507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f845f6040809697860101520116010190565b818101830151848201604001528201610c13565b6004359073ffffffffffffffffffffffffffffffffffffffff82168203610c8957565b5f80fd5b6024359073ffffffffffffffffffffffffffffffffffffffff82168203610c8957565b73ffffffffffffffffffffffffffffffffffffffff600554163303610cd157565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff821117610d7057604052565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b91908201809211610daa57565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b73ffffffffffffffffffffffffffffffffffffffff809116918215610ec55716918215610e415760207f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591835f526001825260405f20855f5282528060405f2055604051908152a3565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152fd5b60846040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152fd5b92919073ffffffffffffffffffffffffffffffffffffffff93847f000000000000000000000000000000000000000000000000000000000000000016858216868416968288149282141597886113ce575b5f928352602090600a825260409960ff8b862054169182156113bd575b5081156113b5575b5060ff6009541615611387575b15610fe2575b50505050610fe09394506113d7565b565b90919295865f1461137f576007545b808202908282041482151715611352576064900490818103908111611352579661101d82600854610d9d565b60085561104c7f00000000000000000000000000000000000000000000000000000000000000009283886113d7565b15610fd1576008549283611061575b50610fd1565b89519367ffffffffffffffff936060860185811187821017611325578c5260028652808601938c3686378651156112f8578316928385528651936001948510156112cb577f00000000000000000000000000000000000000000000000000000000000000008216888f0152801561124957908d828a979695949388528584527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584838a20938781737a250d5630b4cf539739df2c5dacb4c659f2488d9c8d978882528552205551878152a3853b156112455790969391928895938e519889967f791ac94700000000000000000000000000000000000000000000000000000000885260a4880192600489015288602489015260a060448901525180925260c48701949388905b838210611228575050505050508383809273fdcb0c8ddbb318e756152874146c36d1ec43d13e606483015242608483015203925af1801561121e576111dd575b5050610fe094955060085584935f80808061105b565b81116111f157610fe095965285945f6111c7565b6024827f4e487b710000000000000000000000000000000000000000000000000000000081526041600452fd5b88513d85823e3d90fd5b8551811687528c99508b9850958201959482019490840190611187565b8880fd5b6084838f51907f08c379a000000000000000000000000000000000000000000000000000000000825260048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152fd5b6024897f4e487b710000000000000000000000000000000000000000000000000000000081526032600452fd5b6024887f4e487b710000000000000000000000000000000000000000000000000000000081526032600452fd5b6024887f4e487b710000000000000000000000000000000000000000000000000000000081526041600452fd5b6024857f4e487b710000000000000000000000000000000000000000000000000000000081526011600452fd5b600654610ff1565b80610fcb5760048a517fa5baf151000000000000000000000000000000000000000000000000000000008152fd5b90505f610fbe565b85528a85205460ff1691505f610fb6565b83159850610f99565b73ffffffffffffffffffffffffffffffffffffffff8091169182156115b1571691821561152d5780158015611526575b801561151b575b6114f1575f8281528060205260408120549180831061146d57604082827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef958760209652828652038282205586815220818154019055604051908152a3565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152fd5b60046040517fa5baf151000000000000000000000000000000000000000000000000000000008152fd5b5061dead831461140e565b505f611407565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152fd5b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152fdfea26469706673582212204731e1b66fcc28c93a0aa228e24c8d9b3d50aa12b6af7e2e2cabc5849b4d4e0c64736f6c63430008150033

Deployed Bytecode

0x60806040818152600480361015610014575f80fd5b5f92833560e01c90816306fdde0314610ab757508063095ea7b314610a6f57806318160ddd14610a3257806323b872dd14610904578063313ce567146108ca57806339509351146108505780634ada218b1461080e5780634f7041a5146107d157806358e553651461079457806370a0823114610733578063715018a6146106955780637b1c8fdb146106305780638da5cb5b146105dd57806395d89b4114610484578063a457c2d71461037f578063a9059cbb14610330578063c647b20e146102ec578063cc1776d3146102af578063dd62ed3e146102375763f2fde38b146100fc575f80fd5b346102335760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261023357610133610c66565b9061013c610cb0565b73ffffffffffffffffffffffffffffffffffffffff8092169283156101b0575050600554827fffffffffffffffffffffffff0000000000000000000000000000000000000000821617600555167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08380a380f35b90602060849251917f08c379a0000000000000000000000000000000000000000000000000000000008352820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152fd5b8280fd5b5050346102ab57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102ab5780602092610273610c66565b61027b610c8d565b73ffffffffffffffffffffffffffffffffffffffff91821683526001865283832091168252845220549051908152f35b5080fd5b5050346102ab57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102ab576020906007549051908152f35b509034610233577ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102ab57610323610cb0565b3560065560243560075580f35b5050346102ab57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102ab5760209061037861036e610c66565b6024359033610f48565b5160018152f35b50823461048157827ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610481576103b7610c66565b918360243592338152600160205281812073ffffffffffffffffffffffffffffffffffffffff861682526020522054908282106103fe576020856103788585038733610dd7565b60849060208651917f08c379a0000000000000000000000000000000000000000000000000000000008352820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152fd5b80fd5b509190346102ab57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102ab57805191809380549160019083821c928285169485156105d3575b60209586861081146105a757858952908115610565575060011461050d575b61050987876104ff828c0383610d2f565b5191829182610c02565b0390f35b81529295507f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b8284106105525750505082610509946104ff92820101945f806104ee565b8054868501880152928601928101610534565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168887015250505050151560051b83010192506104ff826105095f806104ee565b6024846022857f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b93607f16936104cf565b5050346102ab57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102ab5760209073ffffffffffffffffffffffffffffffffffffffff600554169051908152f35b833461048157807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261048157610667610cb0565b60017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00600954161760095580f35b833461048157807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610481576106cc610cb0565b8073ffffffffffffffffffffffffffffffffffffffff6005547fffffffffffffffffffffffff00000000000000000000000000000000000000008116600555167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b5050346102ab5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102ab578060209273ffffffffffffffffffffffffffffffffffffffff610785610c66565b16815280845220549051908152f35b5050346102ab57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102ab576020906008549051908152f35b5050346102ab57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102ab576020906006549051908152f35b5050346102ab57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102ab5760209060ff6009541690519015158152f35b5050346102ab57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102ab576103786020926108c3610891610c66565b913381526001865284812073ffffffffffffffffffffffffffffffffffffffff84168252865284602435912054610d9d565b9033610dd7565b5050346102ab57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102ab576020905160128152f35b508290346102ab5760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102ab5761093e610c66565b610946610c8d565b91846044359473ffffffffffffffffffffffffffffffffffffffff8416815260016020528181203382526020522054907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036109ac575b602086610378878787610f48565b8482106109d557509183916109ca6020969561037895033383610dd7565b91939481935061099e565b60649060208751917f08c379a0000000000000000000000000000000000000000000000000000000008352820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152fd5b5050346102ab57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102ab576020906002549051908152f35b5050346102ab57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102ab57602090610378610aad610c66565b6024359033610dd7565b9291905034610bfe57837ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610bfe57600354600181811c9186908281168015610bf4575b6020958686108214610bc85750848852908115610b885750600114610b2f575b61050986866104ff828b0383610d2f565b929550600383527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b828410610b755750505082610509946104ff92820101945f610b1e565b8054868501880152928601928101610b58565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001687860152505050151560051b83010192506104ff826105095f610b1e565b8360226024927f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b93607f1693610afe565b8380fd5b6020808252825181830181905293925f5b858110610c52575050507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f845f6040809697860101520116010190565b818101830151848201604001528201610c13565b6004359073ffffffffffffffffffffffffffffffffffffffff82168203610c8957565b5f80fd5b6024359073ffffffffffffffffffffffffffffffffffffffff82168203610c8957565b73ffffffffffffffffffffffffffffffffffffffff600554163303610cd157565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff821117610d7057604052565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b91908201809211610daa57565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b73ffffffffffffffffffffffffffffffffffffffff809116918215610ec55716918215610e415760207f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591835f526001825260405f20855f5282528060405f2055604051908152a3565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152fd5b60846040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152fd5b92919073ffffffffffffffffffffffffffffffffffffffff93847f0000000000000000000000006580b884f13290ec6800bd08299220a0b50b27f216858216868416968288149282141597886113ce575b5f928352602090600a825260409960ff8b862054169182156113bd575b5081156113b5575b5060ff6009541615611387575b15610fe2575b50505050610fe09394506113d7565b565b90919295865f1461137f576007545b808202908282041482151715611352576064900490818103908111611352579661101d82600854610d9d565b60085561104c7f000000000000000000000000ab73e989ae6d86c6dbd2acc44ddec8b62a6d73429283886113d7565b15610fd1576008549283611061575b50610fd1565b89519367ffffffffffffffff936060860185811187821017611325578c5260028652808601938c3686378651156112f8578316928385528651936001948510156112cb577f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc28216888f0152801561124957908d828a979695949388528584527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584838a20938781737a250d5630b4cf539739df2c5dacb4c659f2488d9c8d978882528552205551878152a3853b156112455790969391928895938e519889967f791ac94700000000000000000000000000000000000000000000000000000000885260a4880192600489015288602489015260a060448901525180925260c48701949388905b838210611228575050505050508383809273fdcb0c8ddbb318e756152874146c36d1ec43d13e606483015242608483015203925af1801561121e576111dd575b5050610fe094955060085584935f80808061105b565b81116111f157610fe095965285945f6111c7565b6024827f4e487b710000000000000000000000000000000000000000000000000000000081526041600452fd5b88513d85823e3d90fd5b8551811687528c99508b9850958201959482019490840190611187565b8880fd5b6084838f51907f08c379a000000000000000000000000000000000000000000000000000000000825260048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152fd5b6024897f4e487b710000000000000000000000000000000000000000000000000000000081526032600452fd5b6024887f4e487b710000000000000000000000000000000000000000000000000000000081526032600452fd5b6024887f4e487b710000000000000000000000000000000000000000000000000000000081526041600452fd5b6024857f4e487b710000000000000000000000000000000000000000000000000000000081526011600452fd5b600654610ff1565b80610fcb5760048a517fa5baf151000000000000000000000000000000000000000000000000000000008152fd5b90505f610fbe565b85528a85205460ff1691505f610fb6565b83159850610f99565b73ffffffffffffffffffffffffffffffffffffffff8091169182156115b1571691821561152d5780158015611526575b801561151b575b6114f1575f8281528060205260408120549180831061146d57604082827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef958760209652828652038282205586815220818154019055604051908152a3565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152fd5b60046040517fa5baf151000000000000000000000000000000000000000000000000000000008152fd5b5061dead831461140e565b505f611407565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152fd5b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152fdfea26469706673582212204731e1b66fcc28c93a0aa228e24c8d9b3d50aa12b6af7e2e2cabc5849b4d4e0c64736f6c63430008150033

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.