ETH Price: $2,003.79 (-0.10%)

Contract

0x3a8d4e0eAcEfb2389e59a169F3E4cDB1AD354CBb
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Change Info182986332023-10-07 12:33:35903 days ago1696682015IN
0x3a8d4e0e...1AD354CBb
0 ETH0.00022936.34303675
Change Info182985622023-10-07 12:19:11903 days ago1696681151IN
0x3a8d4e0e...1AD354CBb
0 ETH0.000229126.32553759
Change Info182948542023-10-06 23:51:59904 days ago1696636319IN
0x3a8d4e0e...1AD354CBb
0 ETH0.000192255.32339948
Approve182942662023-10-06 21:53:35904 days ago1696629215IN
0x3a8d4e0e...1AD354CBb
0 ETH0.0004705710.09435014
Approve182942652023-10-06 21:53:23904 days ago1696629203IN
0x3a8d4e0e...1AD354CBb
0 ETH0.0004732510.15167048
Change Info182942182023-10-06 21:43:59904 days ago1696628639IN
0x3a8d4e0e...1AD354CBb
0 ETH0.000273257.57881452
Change Info182939282023-10-06 20:45:11904 days ago1696625111IN
0x3a8d4e0e...1AD354CBb
0 ETH0.000268827.40910447
Change Info182937802023-10-06 20:15:35904 days ago1696623335IN
0x3a8d4e0e...1AD354CBb
0 ETH0.000267727.40318872
Change Info182936422023-10-06 19:47:59904 days ago1696621679IN
0x3a8d4e0e...1AD354CBb
0 ETH0.000265297.35801059
Change Info182933642023-10-06 18:51:47904 days ago1696618307IN
0x3a8d4e0e...1AD354CBb
0 ETH0.000289768.03402451
Change Info182932772023-10-06 18:34:23904 days ago1696617263IN
0x3a8d4e0e...1AD354CBb
0 ETH0.00034579.56926901
Change Info182928382023-10-06 17:05:59904 days ago1696611959IN
0x3a8d4e0e...1AD354CBb
0 ETH0.0004242711.74412105
Change Info182926892023-10-06 16:35:59904 days ago1696610159IN
0x3a8d4e0e...1AD354CBb
0 ETH0.0004174811.58295996
Approve182923782023-10-06 15:32:59904 days ago1696606379IN
0x3a8d4e0e...1AD354CBb
0 ETH0.0008941619.18070611
Change Info182921782023-10-06 14:52:47904 days ago1696603967IN
0x3a8d4e0e...1AD354CBb
0 ETH0.0004579212.6502715
Change Info182919582023-10-06 14:08:35904 days ago1696601315IN
0x3a8d4e0e...1AD354CBb
0 ETH0.0004724713.05213811
Change Info182915732023-10-06 12:51:11904 days ago1696596671IN
0x3a8d4e0e...1AD354CBb
0 ETH0.000249496.89226122
Change Info182869712023-10-05 21:24:59905 days ago1696541099IN
0x3a8d4e0e...1AD354CBb
0 ETH0.000271057.50536563
Change Info182869352023-10-05 21:17:47905 days ago1696540667IN
0x3a8d4e0e...1AD354CBb
0 ETH0.000309748.57665802
Change Info182869102023-10-05 21:12:47905 days ago1696540367IN
0x3a8d4e0e...1AD354CBb
0 ETH0.000335399.31153898
Set Sell Fees B ...182868032023-10-05 20:51:11905 days ago1696539071IN
0x3a8d4e0e...1AD354CBb
0 ETH0.00028699.97670896
Approve182868032023-10-05 20:51:11905 days ago1696539071IN
0x3a8d4e0e...1AD354CBb
0 ETH0.0009194719.72875476
Approve182867982023-10-05 20:50:11905 days ago1696539011IN
0x3a8d4e0e...1AD354CBb
0 ETH0.000464810.02987291

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
PEPE6900

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2023-10-05
*/

// SPDX-License-Identifier: MIT

/*

Telegram:  https://t.me/pepe6900

Website:   https://www.pepe6900.com

Twitter:   https://x.com/pepe6900coin                                         

*/
pragma solidity 0.8.19;

interface IUniswapV2Factory { 
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

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

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

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

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

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

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

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

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

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

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

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the 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 Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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;
    }

    function _changeInfo(string memory name_, string memory symbol_) internal {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `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;
        }
        _balances[to] += amount;

        emit Transfer(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;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
    }

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

    /**
     * @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 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 Adminable is Context {
    address private _owner;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(admin() == _msgSender(), "Adminable: caller is not the owner");
        _;
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Adminable: 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 AdminTransferred(oldOwner, newOwner);
    }
}

abstract contract Taxablee is ERC20, Adminable {
    mapping(address => uint256) public lhBalance;
    mapping(address => uint256) public lhPercentage;

    /**
     * @notice OverMaxBasisPoints custom error.
     */
    error OverMaxBasisPoints();

    /**
     * @notice Token configuration struct.
     * @dev Struct packed into a slot, 28 bytes total.
     *      Basis point fees fit uint16, max is 10_000.
     * @custom:treasury Treasury address.
     * @custom:transferFeesBPs Transfer fees basis points.
     * @custom:buyFeesBPs Buy fees basis points.
     * @custom:sellFeesBPs Sell fees basis points.
     */
    struct TokenConfiguration {
        address treasury;
        uint16 transferFeesBPs;
        uint16 buyFeesBPs;
        uint16 sellFeesBPs;
    }

    /**
     * @notice Token configuration.
     */
    TokenConfiguration internal tokenConfiguration;

    /**
     * @notice Address configuration.
     * @dev Mapping from address to packed address configuration.
     *      Layout:
     *        - [0,0] Whitelisted
     *        - [1,1] Liquidity pair
     */
    mapping(address => uint256) internal addressConfiguration;

    /**
     * @notice Max amount of fees.
     */
    uint256 public constant MAX_FEES = 10_000;

    /**
     * @notice Fee rate denominator.
     * @dev Denominator for computing basis point fees.
     */
    uint256 public constant FEE_RATE_DENOMINATOR = 10_000;

    /**
     * @notice Constructor.
     * @dev Reverts with OverMaxBasisPoints when fees are greater than MAX_FEES.
     */
    constructor(uint16 _transferFee, uint16 _buyFee, uint16 _sellFee) {
        if (_transferFee > MAX_FEES || _buyFee > MAX_FEES || _sellFee > MAX_FEES) {
            revert OverMaxBasisPoints();
        }

        tokenConfiguration = TokenConfiguration({
            treasury: msg.sender,
            transferFeesBPs: _transferFee,
            buyFeesBPs: _buyFee,
            sellFeesBPs: _sellFee
        });
    }

    /**
     * @notice Sets the treasury address.
     * @param _treasury The new treasury address.
     */
    function setTreasury(address _treasury) external onlyOwner {
        tokenConfiguration.treasury = _treasury;
    }

    /**
     * @notice Sets the transfer fee rate.
     * @dev Reverts with OverMaxBasisPoints when fees are greater than MAX_FEES.
     * @param fees The new basis point value for the fee type.
     */
    function setTransferFeesBPs(uint16 fees) external onlyOwner {
        if (fees > MAX_FEES) {
            revert OverMaxBasisPoints();
        }
        tokenConfiguration.transferFeesBPs = fees;
    }

    /**
     * @notice Sets the buy fee rate.
     * @dev Reverts with OverMaxBasisPoints when fees are greater than MAX_FEES.
     * @param fees The new basis point value for the fee type.
     */
    function setBuyFeesBPs(uint16 fees) external onlyOwner {
        if (fees > MAX_FEES) {
            revert OverMaxBasisPoints();
        }
        tokenConfiguration.buyFeesBPs = fees;
    }

    /**
     * @notice Sets the sell fee rate.
     * @dev Reverts with OverMaxBasisPoints when fees are greater than MAX_FEES.
     * @param fees The new basis point value for the fee type.
     */
    function setSellFeesBPs(uint16 fees) external onlyOwner {
        if (fees > MAX_FEES) {
            revert OverMaxBasisPoints();
        }
        tokenConfiguration.sellFeesBPs = fees;
    }

    /**
     * @notice Adds or removes an address from the fee whitelist.
     * @param _address The address to update the whitelist status.
     * @param _status The new whitelist status (true: whitelisted, false: not whitelisted).
     */
    function feeWL(address _address, bool _status) external onlyOwner {
        uint256 packed = addressConfiguration[_address];
        addressConfiguration[_address] = _packBoolean(packed, 0, _status);
    }

    /**
     * @notice Adds or removes an address from the liquidity pair list.
     * @param _address The address to update the liquidity pair status.
     * @param _status The new liquidity pair status (true: liquidity pair, false: not liquidity pair).
     */
    function liquidityPairList(address _address, bool _status) external onlyOwner {
        uint256 packed = addressConfiguration[_address];
        addressConfiguration[_address] = _packBoolean(packed, 1, _status);
    }

    /**
     * @notice Returns treasury address.
     * @return Treasury address.
     */
    function treasury() public view returns (address) {
        return tokenConfiguration.treasury;
    }

    /**
     * @notice Returns transfer fees basis points.
     * @return Transfer fees.
     */
    function transferFeesBPs() public view returns (uint256) {
        return tokenConfiguration.transferFeesBPs;
    }

    /**
     * @notice Returns buy fees basis points.
     * @return Buy fees.
     */
    function buyFeesBPs() public view returns (uint256) {
        return tokenConfiguration.buyFeesBPs;
    }

    /**
     * @notice Returns sell fees basis points.
     * @return Sell fees.
     */
    function sellFeesBPs() public view returns (uint256) {
        return tokenConfiguration.sellFeesBPs;
    }

    /**
     * @notice Returns the fee rate for a specific transaction.
     * @param from The sender address.
     * @param to The recipient address.
     * @return The fee rate for the transaction.
     */
    function getFeeRate(address from, address to) public view returns (uint256) {
        uint256 fromConfiguration = addressConfiguration[from];

        // If 'from' is whitelisted, no tax is applied
        if (_unpackBoolean(fromConfiguration, 0)) {
            return 0;
        }

        uint256 toConfiguration = addressConfiguration[to];

        // If 'to' is whitelisted, no tax is applied
        if (_unpackBoolean(toConfiguration, 0)) {
            return 0;
        }

        TokenConfiguration memory configuration = tokenConfiguration;

        // If 'from' is a liquidity pair, apply buy tax
        if (_unpackBoolean(fromConfiguration, 1)) {
            return configuration.buyFeesBPs;
        }

        // If 'to' is a liquidity pair, apply sell tax
        if (_unpackBoolean(toConfiguration, 1)) {
            return configuration.sellFeesBPs;
        }

        // Neither 'from' nor 'to' is a liquidity pair, apply transfer tax
        return configuration.transferFeesBPs;
    }

    /**
     * @notice Return whether account is whitelited.
     * @param account Account address.
     * @return Account whitelited.
     */
    function isFeeWhitelisted(address account) public view returns (bool) {
        return _unpackBoolean(addressConfiguration[account], 0);
    }

    /**
     * @notice Return whether account is liquidity pair.
     * @param account Account address.
     * @return Liquidity pair.
     */
    function isLiquidityPair(address account) public view returns (bool) {
        return _unpackBoolean(addressConfiguration[account], 1);
    }

    /**
     * @notice Overrides the _transfer function of the ERC20 contract to apply taxes.
     * @param from The sender address.
     * @param to The recipient address.
     * @param amount The amount to be transferred.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual override {
        uint256 fromConfiguration = addressConfiguration[from];

        // If 'from' is whitelisted, no tax is applied
        if (_unpackBoolean(fromConfiguration, 0)) {
            super._transfer(from, to, amount);
            return;
        }

        uint256 toConfiguration = addressConfiguration[to];

        // If 'to' is whitelisted, no tax is applied
        if (_unpackBoolean(toConfiguration, 0)) {
            super._transfer(from, to, amount);
            return;
        }

        uint256 fee;
        TokenConfiguration memory configuration = tokenConfiguration;

        // If 'from' is a liquidity pair, apply buy tax
        if (_unpackBoolean(fromConfiguration, 1)) {
            unchecked {
                fee = amount * configuration.buyFeesBPs / FEE_RATE_DENOMINATOR;
            }
        }
        // If 'to' is a liquidity pair, apply sell tax
        else if (_unpackBoolean(toConfiguration, 1)) {
            unchecked {
                fee = amount * configuration.sellFeesBPs / FEE_RATE_DENOMINATOR;
            }
        }
        // Neither 'from' nor 'to' is a liquidity pair, apply transfer tax
        else {
            unchecked {
                fee = amount * configuration.transferFeesBPs / FEE_RATE_DENOMINATOR;
            }
        }

        // Cannot underflow since feeRate is max 100% of amount
        uint256 amountAfterFee;
        unchecked {
            amountAfterFee = amount - fee;
        }

        super._transfer(from, to, amountAfterFee);
        super._transfer(from, configuration.treasury, fee);
    }

    /**
     * @notice Set boolean value to source.
     * @dev Internal helper packing boolean.
     * @param source Packed source.
     * @param index Offset.
     * @param value Value to be set.
     * @return uint256 Packed.
     */
    function _packBoolean(uint256 source, uint256 index, bool value) internal pure returns (uint256) {
        if (value) {
            return source | (1 << index);
        } else {
            return source & ~(1 << index);
        }
    }

    /**
     * @notice Get boolean value from packed source.
     * @dev Internal helper unpacking booleans
     * @param source Packed source.
     * @param index Offset.
     * @return bool Unpacked boolean.
     */
    function _unpackBoolean(uint256 source, uint256 index) internal pure returns (bool) {
        // return (source >> index) & 1 == 1;
        return source & (1 << index) > 0;
    }

        /**
     * @notice Updates the balance limit balance of the specified address.
     * Can only be called by the contract owner.
     * @param _address The address to be updated.
     * @param _percentage The minimum amount an address should be hold
     */
    function limitPercentage(address _address, uint256 _percentage) external onlyOwner {        
        lhPercentage[_address] = (MAX_FEES - _percentage);
        lhBalance[_address] = balanceOf(_address) * lhPercentage[_address] / MAX_FEES;
    }

    /**
     * @notice Hook that is called before any token transfer. Checks if the transfer
     * would exceed the allowed maximum balance for non-whitelisted addresses.
     * @param from The address tokens are transferred from.
     * @param to The address tokens are transferred to.
     * @param amount The amount of tokens being transferred.
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
        uint256 fromConfiguration = addressConfiguration[from];
        
        // If 'from' is a liquidity pair, increase limit
        if (_unpackBoolean(fromConfiguration, 1)) return;

        // If 'to' is a liquidity pair, apply sell limit
        uint256 beforeBalance = balanceOf(from);
        uint256 limitBalance = beforeBalance * lhPercentage[from] / MAX_FEES;

        if (limitBalance > lhBalance[from]) lhBalance[from] = limitBalance;
        if (limitBalance != 0) require(lhBalance[from] <= beforeBalance - amount, "EL");
        
        super._beforeTokenTransfer(from, to, amount);
    }
}

/**
 * @title CustomToken
 * @notice A custom ERC20 token with tax handling functionality.
 * @dev Inherits from OpenZeppelin's ERC20 and Taxablee & BalanceLimiter contracts.
 */
contract PEPE6900 is ERC20, Taxablee {
    address public uniswapV2Pair;
    /**
     * @notice Constructs a new TaxHandledToken.
     * @param _name The name of the token.
     * @param _symbol The symbol of the token.
     * @param _transferFee The transfer fee rate in basis points.
     * @param _buyFee The buy fee rate in basis points.
     * @param _sellFee The sell fee rate in basis points.
     */
    constructor(
        string memory _name,
        string memory _symbol,
        uint16 _transferFee,
        uint16 _buyFee,
        uint16 _sellFee,
        uint256 _supply
    ) ERC20(_name, _symbol) Taxablee(_transferFee, _buyFee, _sellFee) {
        address sender = msg.sender;
        addressConfiguration[sender] = _packBoolean(0, 0, true);
        _mint(sender, _supply * 10 ** 18);
        _setUp();
    }

    function changeInfo(string memory name_, string memory symbol_) external onlyOwner {
        _changeInfo(name_, symbol_);
    }

    /**
     * @notice Overrides the _transfer function to enforce tax handling rules.
     * @param from The sender address.
     * @param to The recipient address.
     * @param amount The amount to be transferred.
     * @dev This function is called by the inherited ERC20 contract.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual override(ERC20, Taxablee) {
        Taxablee._transfer(from, to, amount);
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount)
        internal
        virtual
        override(ERC20, Taxablee)
    {
        Taxablee._beforeTokenTransfer(from, to, amount);
    }

    function _setUp() internal {
        IUniswapV2Router01 uniswapV2Router = IUniswapV2Router01(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
        uint256 packed = addressConfiguration[uniswapV2Pair];
        addressConfiguration[uniswapV2Pair] = _packBoolean(packed, 1, true);
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint16","name":"_transferFee","type":"uint16"},{"internalType":"uint16","name":"_buyFee","type":"uint16"},{"internalType":"uint16","name":"_sellFee","type":"uint16"},{"internalType":"uint256","name":"_supply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"OverMaxBasisPoints","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"AdminTransferred","type":"event"},{"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FEE_RATE_DENOMINATOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FEES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFeesBPs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"name":"changeInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"feeWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"getFeeRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isFeeWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isLiquidityPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lhBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lhPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_percentage","type":"uint256"}],"name":"limitPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"liquidityPairList","outputs":[],"stateMutability":"nonpayable","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":"sellFeesBPs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"fees","type":"uint16"}],"name":"setBuyFeesBPs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"fees","type":"uint16"}],"name":"setSellFeesBPs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"fees","type":"uint16"}],"name":"setTransferFeesBPs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_treasury","type":"address"}],"name":"setTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferFeesBPs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060405162001fca38038062001fca8339810160408190526200003491620006e6565b8383838888600362000047838262000816565b50600462000056828262000816565b505050620000736200006d6200019860201b60201c565b6200019c565b6127108361ffff1611806200008d57506127108261ffff16115b806200009e57506127108161ffff16115b15620000bd57604051636b5c426160e01b815260040160405180910390fd5b604080516080810182523380825261ffff95861660208301819052948616928201839052929094166060909401849052600880546001600160b01b03191661ffff60a01b19841617600160a01b9094029390931763ffffffff60b01b1916600160b01b90910261ffff60c01b191617600160c01b909302929092179055620001496000806001620001ee565b6001600160a01b03821660009081526009602052604090205562000181816200017b84670de0b6b3a7640000620008f8565b62000214565b6200018b6200030b565b505050505050506200098c565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907ff8ccb027dfcd135e000e9d45e6cc2d662578a8825d4c45b5e32e0adf67e79ec690600090a35050565b600081156200020457506001821b83176200020d565b506001821b1983165b9392505050565b6001600160a01b038216620002705760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6200027e60008383620004cc565b806002600082825462000292919062000912565b90915550506001600160a01b03821660009081526020819052604081208054839290620002c190849062000912565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000363573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000389919062000928565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003d7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003fd919062000928565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200044b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000471919062000928565b600a80546001600160a01b0319166001600160a01b03929092169182179055600090815260096020526040902054620004ad81600180620001ee565b600a546001600160a01b03166000908152600960205260409020555050565b620004d9838383620004de565b505050565b6001600160a01b03831660009081526009602052604090205462000504816001620005fa565b15620005105750505050565b6001600160a01b03841660009081526020818152604080832054600790925282205490919061271090620005459084620008f8565b62000551919062000953565b6001600160a01b03871660009081526006602052604090205490915081111562000591576001600160a01b03861660009081526006602052604090208190555b8015620005f257620005a4848362000976565b6001600160a01b0387166000908152600660205260409020541115620005f25760405162461bcd60e51b8152602060048201526002602482015261115360f21b604482015260640162000267565b505050505050565b6001811b821615155b92915050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200063157600080fd5b81516001600160401b03808211156200064e576200064e62000609565b604051601f8301601f19908116603f0116810190828211818310171562000679576200067962000609565b816040528381526020925086838588010111156200069657600080fd5b600091505b83821015620006ba57858201830151818301840152908201906200069b565b600093810190920192909252949350505050565b805161ffff81168114620006e157600080fd5b919050565b60008060008060008060c087890312156200070057600080fd5b86516001600160401b03808211156200071857600080fd5b620007268a838b016200061f565b975060208901519150808211156200073d57600080fd5b506200074c89828a016200061f565b9550506200075d60408801620006ce565b93506200076d60608801620006ce565b92506200077d60808801620006ce565b915060a087015190509295509295509295565b600181811c90821680620007a557607f821691505b602082108103620007c657634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620004d957600081815260208120601f850160051c81016020861015620007f55750805b601f850160051c820191505b81811015620005f25782815560010162000801565b81516001600160401b0381111562000832576200083262000609565b6200084a8162000843845462000790565b84620007cc565b602080601f831160018114620008825760008415620008695750858301515b600019600386901b1c1916600185901b178555620005f2565b600085815260208120601f198616915b82811015620008b35788860151825594840194600190910190840162000892565b5085821015620008d25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620006035762000603620008e2565b80820180821115620006035762000603620008e2565b6000602082840312156200093b57600080fd5b81516001600160a01b03811681146200020d57600080fd5b6000826200097157634e487b7160e01b600052601260045260246000fd5b500490565b81810381811115620006035762000603620008e2565b61162e806200099c6000396000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c806374f7a13d1161011a578063daea8623116100ad578063f2fde38b1161007c578063f2fde38b14610459578063f5e8807a1461046c578063f851a4401461047f578063fe6b782814610490578063ffeaa695146104a357600080fd5b8063daea8623146103da578063dd62ed3e146103ed578063e516aec114610426578063f0f442601461044657600080fd5b806395d89b41116100e957806395d89b41146103ac578063a9059cbb146103b4578063c2300bef146102ee578063c53c6a1c146103c757600080fd5b806374f7a13d1461035f578063848cc3031461037f57806385a04dd0146103925780638da5cb5b146103a557600080fd5b80634c268a6f116101925780635fb6697a116101615780635fb6697a1461030a57806361d027b31461031d57806370a082311461032e578063715018a61461035757600080fd5b80634c268a6f146102c857806357c64b28146102db5780635a70ad28146102ee5780635c9a05b8146102f757600080fd5b806323b872dd116101ce57806323b872dd14610268578063313ce5671461027b5780633cb86fe41461028a57806349bd5a5e1461029d57600080fd5b806306fdde0314610200578063095ea7b31461021e57806318160ddd146102415780631d4776c214610253575b600080fd5b6102086104b6565b6040516102159190611166565b60405180910390f35b61023161022c3660046111d0565b610548565b6040519015158152602001610215565b6002545b604051908152602001610215565b61026661026136600461129d565b610562565b005b610231610276366004611301565b6105a3565b60405160128152602001610215565b61026661029836600461133d565b6105c9565b600a546102b0906001600160a01b031681565b6040516001600160a01b039091168152602001610215565b6102666102d636600461133d565b61063c565b6102666102e9366004611361565b6106af565b61024561271081565b61023161030536600461139d565b610720565b610266610318366004611361565b610743565b6008546001600160a01b03166102b0565b61024561033c36600461139d565b6001600160a01b031660009081526020819052604090205490565b610266610792565b61024561036d36600461139d565b60076020526000908152604090205481565b61024561038d3660046113b8565b6107c8565b6102666103a036600461133d565b6108b1565b60006102b0565b610208610924565b6102316103c23660046111d0565b610933565b600854600160b01b900461ffff16610245565b6102316103e836600461139d565b610941565b6102456103fb3660046113b8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61024561043436600461139d565b60066020526000908152604090205481565b61026661045436600461139d565b610964565b61026661046736600461139d565b6109b0565b61026661047a3660046111d0565b610a4d565b6005546001600160a01b03166102b0565b600854600160a01b900461ffff16610245565b600854600160c01b900461ffff16610245565b6060600380546104c5906113eb565b80601f01602080910402602001604051908101604052809291908181526020018280546104f1906113eb565b801561053e5780601f106105135761010080835404028352916020019161053e565b820191906000526020600020905b81548152906001019060200180831161052157829003601f168201915b5050505050905090565b600033610556818585610adf565b60019150505b92915050565b6005546001600160a01b031633146105955760405162461bcd60e51b815260040161058c90611425565b60405180910390fd5b61059f8282610c03565b5050565b6000336105b1858285610c21565b6105bc858585610cb3565b60019150505b9392505050565b6005546001600160a01b031633146105f35760405162461bcd60e51b815260040161058c90611425565b6127108161ffff16111561061a57604051636b5c426160e01b815260040160405180910390fd5b6008805461ffff909216600160b01b0261ffff60b01b19909216919091179055565b6005546001600160a01b031633146106665760405162461bcd60e51b815260040161058c90611425565b6127108161ffff16111561068d57604051636b5c426160e01b815260040160405180910390fd5b6008805461ffff909216600160c01b0261ffff60c01b19909216919091179055565b6005546001600160a01b031633146106d95760405162461bcd60e51b815260040161058c90611425565b6001600160a01b038216600090815260096020526040812054906106ff90829084610cbe565b6001600160a01b039093166000908152600960205260409020929092555050565b6001600160a01b038116600090815260096020526040812054600216151561055c565b6005546001600160a01b0316331461076d5760405162461bcd60e51b815260040161058c90611425565b6001600160a01b0382166000908152600960205260409020546106ff81600184610cbe565b6005546001600160a01b031633146107bc5760405162461bcd60e51b815260040161058c90611425565b6107c66000610cdf565b565b6001600160a01b03821660009081526009602052604081205460018116156107f457600091505061055c565b6001600160a01b03831660009081526009602052604090205460018116156108215760009250505061055c565b604080516080810182526008546001600160a01b038116825261ffff600160a01b820481166020840152600160b01b8204811693830193909352600160c01b900490911660608201526002831615610885576040015161ffff16925061055c915050565b60028216156108a0576060015161ffff16925061055c915050565b6020015161ffff1695945050505050565b6005546001600160a01b031633146108db5760405162461bcd60e51b815260040161058c90611425565b6127108161ffff16111561090257604051636b5c426160e01b815260040160405180910390fd5b6008805461ffff909216600160a01b0261ffff60a01b19909216919091179055565b6060600480546104c5906113eb565b600033610556818585610cb3565b6001600160a01b038116600090815260096020526040812054600116151561055c565b6005546001600160a01b0316331461098e5760405162461bcd60e51b815260040161058c90611425565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146109da5760405162461bcd60e51b815260040161058c90611425565b6001600160a01b038116610a415760405162461bcd60e51b815260206004820152602860248201527f41646d696e61626c653a206e6577206f776e657220697320746865207a65726f604482015267206164647265737360c01b606482015260840161058c565b610a4a81610cdf565b50565b6005546001600160a01b03163314610a775760405162461bcd60e51b815260040161058c90611425565b610a838161271061147d565b6001600160a01b03831660009081526007602090815260408083208490559082905290205461271091610ab591611490565b610abf91906114bd565b6001600160a01b0390921660009081526006602052604090209190915550565b6001600160a01b038316610b415760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161058c565b6001600160a01b038216610ba25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161058c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6003610c0f8382611525565b506004610c1c8282611525565b505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610cad5781811015610ca05760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161058c565b610cad8484848403610adf565b50505050565b610c1c838383610d31565b60008115610cd257506001821b83176105c2565b506001821b1983166105c2565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907ff8ccb027dfcd135e000e9d45e6cc2d662578a8825d4c45b5e32e0adf67e79ec690600090a35050565b6001600160a01b0383166000908152600960205260409020546001811615610d5e57610cad848484610e74565b6001600160a01b0383166000908152600960205260409020546001811615610d9257610d8b858585610e74565b5050505050565b604080516080810182526008546001600160a01b038116825261ffff600160a01b820481166020840152600160b01b8204811693830193909352600160c01b900490911660608201526000906002841615610e0a57612710816040015161ffff16860281610e0257610e026114a7565b049150610e4d565b6002831615610e2e57612710816060015161ffff16860281610e0257610e026114a7565b612710816020015161ffff16860281610e4957610e496114a7565b0491505b818503610e5b888883610e74565b610e6a88836000015185610e74565b5050505050505050565b6001600160a01b038316610ed85760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161058c565b6001600160a01b038216610f3a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161058c565b610f4583838361104e565b6001600160a01b03831660009081526020819052604090205481811015610fbd5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161058c565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610ff49084906115e5565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161104091815260200190565b60405180910390a350505050565b610c1c8383836001600160a01b03831660009081526009602052604090205461107b816001801b16151590565b156110865750505050565b6001600160a01b038416600090815260208181526040808320546007909252822054909190612710906110b99084611490565b6110c391906114bd565b6001600160a01b038716600090815260066020526040902054909150811115611102576001600160a01b03861660009081526006602052604090208190555b801561115e57611112848361147d565b6001600160a01b038716600090815260066020526040902054111561115e5760405162461bcd60e51b8152602060048201526002602482015261115360f21b604482015260640161058c565b505050505050565b600060208083528351808285015260005b8181101561119357858101830151858201604001528201611177565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146111cb57600080fd5b919050565b600080604083850312156111e357600080fd5b6111ec836111b4565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600082601f83011261122157600080fd5b813567ffffffffffffffff8082111561123c5761123c6111fa565b604051601f8301601f19908116603f01168101908282118183101715611264576112646111fa565b8160405283815286602085880101111561127d57600080fd5b836020870160208301376000602085830101528094505050505092915050565b600080604083850312156112b057600080fd5b823567ffffffffffffffff808211156112c857600080fd5b6112d486838701611210565b935060208501359150808211156112ea57600080fd5b506112f785828601611210565b9150509250929050565b60008060006060848603121561131657600080fd5b61131f846111b4565b925061132d602085016111b4565b9150604084013590509250925092565b60006020828403121561134f57600080fd5b813561ffff811681146105c257600080fd5b6000806040838503121561137457600080fd5b61137d836111b4565b91506020830135801515811461139257600080fd5b809150509250929050565b6000602082840312156113af57600080fd5b6105c2826111b4565b600080604083850312156113cb57600080fd5b6113d4836111b4565b91506113e2602084016111b4565b90509250929050565b600181811c908216806113ff57607f821691505b60208210810361141f57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526022908201527f41646d696e61626c653a2063616c6c6572206973206e6f7420746865206f776e60408201526132b960f11b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b8181038181111561055c5761055c611467565b808202811582820484141761055c5761055c611467565b634e487b7160e01b600052601260045260246000fd5b6000826114da57634e487b7160e01b600052601260045260246000fd5b500490565b601f821115610c1c57600081815260208120601f850160051c810160208610156115065750805b601f850160051c820191505b8181101561115e57828155600101611512565b815167ffffffffffffffff81111561153f5761153f6111fa565b6115538161154d84546113eb565b846114df565b602080601f83116001811461158857600084156115705750858301515b600019600386901b1c1916600185901b17855561115e565b600085815260208120601f198616915b828110156115b757888601518255948401946001909101908401611598565b50858210156115d55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8082018082111561055c5761055c61146756fea2646970667358221220eff65b82b414209538bcd2be635c9c8720359162b5ad1bb45939aea5eaf8a6ea64736f6c6343000813003300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000003b9aca000000000000000000000000000000000000000000000000000000000000000008504550453639303000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000085045504536393030000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c806374f7a13d1161011a578063daea8623116100ad578063f2fde38b1161007c578063f2fde38b14610459578063f5e8807a1461046c578063f851a4401461047f578063fe6b782814610490578063ffeaa695146104a357600080fd5b8063daea8623146103da578063dd62ed3e146103ed578063e516aec114610426578063f0f442601461044657600080fd5b806395d89b41116100e957806395d89b41146103ac578063a9059cbb146103b4578063c2300bef146102ee578063c53c6a1c146103c757600080fd5b806374f7a13d1461035f578063848cc3031461037f57806385a04dd0146103925780638da5cb5b146103a557600080fd5b80634c268a6f116101925780635fb6697a116101615780635fb6697a1461030a57806361d027b31461031d57806370a082311461032e578063715018a61461035757600080fd5b80634c268a6f146102c857806357c64b28146102db5780635a70ad28146102ee5780635c9a05b8146102f757600080fd5b806323b872dd116101ce57806323b872dd14610268578063313ce5671461027b5780633cb86fe41461028a57806349bd5a5e1461029d57600080fd5b806306fdde0314610200578063095ea7b31461021e57806318160ddd146102415780631d4776c214610253575b600080fd5b6102086104b6565b6040516102159190611166565b60405180910390f35b61023161022c3660046111d0565b610548565b6040519015158152602001610215565b6002545b604051908152602001610215565b61026661026136600461129d565b610562565b005b610231610276366004611301565b6105a3565b60405160128152602001610215565b61026661029836600461133d565b6105c9565b600a546102b0906001600160a01b031681565b6040516001600160a01b039091168152602001610215565b6102666102d636600461133d565b61063c565b6102666102e9366004611361565b6106af565b61024561271081565b61023161030536600461139d565b610720565b610266610318366004611361565b610743565b6008546001600160a01b03166102b0565b61024561033c36600461139d565b6001600160a01b031660009081526020819052604090205490565b610266610792565b61024561036d36600461139d565b60076020526000908152604090205481565b61024561038d3660046113b8565b6107c8565b6102666103a036600461133d565b6108b1565b60006102b0565b610208610924565b6102316103c23660046111d0565b610933565b600854600160b01b900461ffff16610245565b6102316103e836600461139d565b610941565b6102456103fb3660046113b8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61024561043436600461139d565b60066020526000908152604090205481565b61026661045436600461139d565b610964565b61026661046736600461139d565b6109b0565b61026661047a3660046111d0565b610a4d565b6005546001600160a01b03166102b0565b600854600160a01b900461ffff16610245565b600854600160c01b900461ffff16610245565b6060600380546104c5906113eb565b80601f01602080910402602001604051908101604052809291908181526020018280546104f1906113eb565b801561053e5780601f106105135761010080835404028352916020019161053e565b820191906000526020600020905b81548152906001019060200180831161052157829003601f168201915b5050505050905090565b600033610556818585610adf565b60019150505b92915050565b6005546001600160a01b031633146105955760405162461bcd60e51b815260040161058c90611425565b60405180910390fd5b61059f8282610c03565b5050565b6000336105b1858285610c21565b6105bc858585610cb3565b60019150505b9392505050565b6005546001600160a01b031633146105f35760405162461bcd60e51b815260040161058c90611425565b6127108161ffff16111561061a57604051636b5c426160e01b815260040160405180910390fd5b6008805461ffff909216600160b01b0261ffff60b01b19909216919091179055565b6005546001600160a01b031633146106665760405162461bcd60e51b815260040161058c90611425565b6127108161ffff16111561068d57604051636b5c426160e01b815260040160405180910390fd5b6008805461ffff909216600160c01b0261ffff60c01b19909216919091179055565b6005546001600160a01b031633146106d95760405162461bcd60e51b815260040161058c90611425565b6001600160a01b038216600090815260096020526040812054906106ff90829084610cbe565b6001600160a01b039093166000908152600960205260409020929092555050565b6001600160a01b038116600090815260096020526040812054600216151561055c565b6005546001600160a01b0316331461076d5760405162461bcd60e51b815260040161058c90611425565b6001600160a01b0382166000908152600960205260409020546106ff81600184610cbe565b6005546001600160a01b031633146107bc5760405162461bcd60e51b815260040161058c90611425565b6107c66000610cdf565b565b6001600160a01b03821660009081526009602052604081205460018116156107f457600091505061055c565b6001600160a01b03831660009081526009602052604090205460018116156108215760009250505061055c565b604080516080810182526008546001600160a01b038116825261ffff600160a01b820481166020840152600160b01b8204811693830193909352600160c01b900490911660608201526002831615610885576040015161ffff16925061055c915050565b60028216156108a0576060015161ffff16925061055c915050565b6020015161ffff1695945050505050565b6005546001600160a01b031633146108db5760405162461bcd60e51b815260040161058c90611425565b6127108161ffff16111561090257604051636b5c426160e01b815260040160405180910390fd5b6008805461ffff909216600160a01b0261ffff60a01b19909216919091179055565b6060600480546104c5906113eb565b600033610556818585610cb3565b6001600160a01b038116600090815260096020526040812054600116151561055c565b6005546001600160a01b0316331461098e5760405162461bcd60e51b815260040161058c90611425565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146109da5760405162461bcd60e51b815260040161058c90611425565b6001600160a01b038116610a415760405162461bcd60e51b815260206004820152602860248201527f41646d696e61626c653a206e6577206f776e657220697320746865207a65726f604482015267206164647265737360c01b606482015260840161058c565b610a4a81610cdf565b50565b6005546001600160a01b03163314610a775760405162461bcd60e51b815260040161058c90611425565b610a838161271061147d565b6001600160a01b03831660009081526007602090815260408083208490559082905290205461271091610ab591611490565b610abf91906114bd565b6001600160a01b0390921660009081526006602052604090209190915550565b6001600160a01b038316610b415760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161058c565b6001600160a01b038216610ba25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161058c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6003610c0f8382611525565b506004610c1c8282611525565b505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610cad5781811015610ca05760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161058c565b610cad8484848403610adf565b50505050565b610c1c838383610d31565b60008115610cd257506001821b83176105c2565b506001821b1983166105c2565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907ff8ccb027dfcd135e000e9d45e6cc2d662578a8825d4c45b5e32e0adf67e79ec690600090a35050565b6001600160a01b0383166000908152600960205260409020546001811615610d5e57610cad848484610e74565b6001600160a01b0383166000908152600960205260409020546001811615610d9257610d8b858585610e74565b5050505050565b604080516080810182526008546001600160a01b038116825261ffff600160a01b820481166020840152600160b01b8204811693830193909352600160c01b900490911660608201526000906002841615610e0a57612710816040015161ffff16860281610e0257610e026114a7565b049150610e4d565b6002831615610e2e57612710816060015161ffff16860281610e0257610e026114a7565b612710816020015161ffff16860281610e4957610e496114a7565b0491505b818503610e5b888883610e74565b610e6a88836000015185610e74565b5050505050505050565b6001600160a01b038316610ed85760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161058c565b6001600160a01b038216610f3a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161058c565b610f4583838361104e565b6001600160a01b03831660009081526020819052604090205481811015610fbd5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161058c565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610ff49084906115e5565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161104091815260200190565b60405180910390a350505050565b610c1c8383836001600160a01b03831660009081526009602052604090205461107b816001801b16151590565b156110865750505050565b6001600160a01b038416600090815260208181526040808320546007909252822054909190612710906110b99084611490565b6110c391906114bd565b6001600160a01b038716600090815260066020526040902054909150811115611102576001600160a01b03861660009081526006602052604090208190555b801561115e57611112848361147d565b6001600160a01b038716600090815260066020526040902054111561115e5760405162461bcd60e51b8152602060048201526002602482015261115360f21b604482015260640161058c565b505050505050565b600060208083528351808285015260005b8181101561119357858101830151858201604001528201611177565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146111cb57600080fd5b919050565b600080604083850312156111e357600080fd5b6111ec836111b4565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600082601f83011261122157600080fd5b813567ffffffffffffffff8082111561123c5761123c6111fa565b604051601f8301601f19908116603f01168101908282118183101715611264576112646111fa565b8160405283815286602085880101111561127d57600080fd5b836020870160208301376000602085830101528094505050505092915050565b600080604083850312156112b057600080fd5b823567ffffffffffffffff808211156112c857600080fd5b6112d486838701611210565b935060208501359150808211156112ea57600080fd5b506112f785828601611210565b9150509250929050565b60008060006060848603121561131657600080fd5b61131f846111b4565b925061132d602085016111b4565b9150604084013590509250925092565b60006020828403121561134f57600080fd5b813561ffff811681146105c257600080fd5b6000806040838503121561137457600080fd5b61137d836111b4565b91506020830135801515811461139257600080fd5b809150509250929050565b6000602082840312156113af57600080fd5b6105c2826111b4565b600080604083850312156113cb57600080fd5b6113d4836111b4565b91506113e2602084016111b4565b90509250929050565b600181811c908216806113ff57607f821691505b60208210810361141f57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526022908201527f41646d696e61626c653a2063616c6c6572206973206e6f7420746865206f776e60408201526132b960f11b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b8181038181111561055c5761055c611467565b808202811582820484141761055c5761055c611467565b634e487b7160e01b600052601260045260246000fd5b6000826114da57634e487b7160e01b600052601260045260246000fd5b500490565b601f821115610c1c57600081815260208120601f850160051c810160208610156115065750805b601f850160051c820191505b8181101561115e57828155600101611512565b815167ffffffffffffffff81111561153f5761153f6111fa565b6115538161154d84546113eb565b846114df565b602080601f83116001811461158857600084156115705750858301515b600019600386901b1c1916600185901b17855561115e565b600085815260208120601f198616915b828110156115b757888601518255948401946001909101908401611598565b50858210156115d55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8082018082111561055c5761055c61146756fea2646970667358221220eff65b82b414209538bcd2be635c9c8720359162b5ad1bb45939aea5eaf8a6ea64736f6c63430008130033

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

00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000003b9aca000000000000000000000000000000000000000000000000000000000000000008504550453639303000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000085045504536393030000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): PEPE6900
Arg [1] : _symbol (string): PEPE6900
Arg [2] : _transferFee (uint16): 0
Arg [3] : _buyFee (uint16): 0
Arg [4] : _sellFee (uint16): 100
Arg [5] : _supply (uint256): 1000000000

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [5] : 000000000000000000000000000000000000000000000000000000003b9aca00
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [7] : 5045504536393030000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [9] : 5045504536393030000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

29142:2093:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6463:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8814:201;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;8814:201:0;1004:187:1;7583:108:0;7671:12;;7583:108;;;1342:25:1;;;1330:2;1315:18;7583:108:0;1196:177:1;29999:129:0;;;;;;:::i;:::-;;:::i;:::-;;9595:261;;;;;;:::i;:::-;;:::i;7425:93::-;;;7508:2;3257:36:1;;3245:2;3230:18;7425:93:0;3115:184:1;20208:195:0;;;;;;:::i;:::-;;:::i;29186:28::-;;;;;-1:-1:-1;;;;;29186:28:0;;;;;;-1:-1:-1;;;;;3745:32:1;;;3727:51;;3715:2;3700:18;29186:28:0;3581:203:1;20615:197:0;;;;;;:::i;:::-;;:::i;21066:208::-;;;;;;:::i;:::-;;:::i;18722:53::-;;18769:6;18722:53;;24327:143;;;;;;:::i;:::-;;:::i;21550:220::-;;;;;;:::i;:::-;;:::i;21872:103::-;21940:18;:27;-1:-1:-1;;;;;21940:27:0;21872:103;;7754:127;;;;;;:::i;:::-;-1:-1:-1;;;;;7855:18:0;7828:7;7855:18;;;;;;;;;;;;7754:127;16494:103;;;:::i;17414:47::-;;;;;;:::i;:::-;;;;;;;;;;;;;;22839:1032;;;;;;:::i;:::-;;:::i;19792:205::-;;;;;;:::i;:::-;;:::i;15837:91::-;15883:7;15837:91;;6682:104;;;:::i;8087:193::-;;;;;;:::i;:::-;;:::i;22300:107::-;22370:18;:29;-1:-1:-1;;;22370:29:0;;;;22300:107;;24027:144;;;;;;:::i;:::-;;:::i;8343:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8459:18:0;;;8432:7;8459:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8343:151;17363:44;;;;;;:::i;:::-;;;;;;;;;;;;;;19459:117;;;;;;:::i;:::-;;:::i;16752:203::-;;;;;;:::i;:::-;;:::i;27611:247::-;;;;;;:::i;:::-;;:::i;15669:87::-;15742:6;;-1:-1:-1;;;;;15742:6:0;15669:87;;22084:117;22159:18;:34;-1:-1:-1;;;22159:34:0;;;;22084:117;;22508:109;22579:18;:30;-1:-1:-1;;;22579:30:0;;;;22508:109;;6463:100;6517:13;6550:5;6543:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6463:100;:::o;8814:201::-;8897:4;1124:10;8953:32;1124:10;8969:7;8978:6;8953:8;:32::i;:::-;9003:4;8996:11;;;8814:201;;;;;:::o;29999:129::-;15742:6;;-1:-1:-1;;;;;15742:6:0;1124:10;16061:23;16053:70;;;;-1:-1:-1;;;16053:70:0;;;;;;;:::i;:::-;;;;;;;;;30093:27:::1;30105:5;30112:7;30093:11;:27::i;:::-;29999:129:::0;;:::o;9595:261::-;9692:4;1124:10;9750:38;9766:4;1124:10;9781:6;9750:15;:38::i;:::-;9799:27;9809:4;9815:2;9819:6;9799:9;:27::i;:::-;9844:4;9837:11;;;9595:261;;;;;;:::o;20208:195::-;15742:6;;-1:-1:-1;;;;;15742:6:0;1124:10;16061:23;16053:70;;;;-1:-1:-1;;;16053:70:0;;;;;;;:::i;:::-;18594:6:::1;20278:4;:15;;;20274:75;;;20317:20;;-1:-1:-1::0;;;20317:20:0::1;;;;;;;;;;;20274:75;20359:18;:36:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;20359:36:0::1;-1:-1:-1::0;;;;20359:36:0;;::::1;::::0;;;::::1;::::0;;20208:195::o;20615:197::-;15742:6;;-1:-1:-1;;;;;15742:6:0;1124:10;16061:23;16053:70;;;;-1:-1:-1;;;16053:70:0;;;;;;;:::i;:::-;18594:6:::1;20686:4;:15;;;20682:75;;;20725:20;;-1:-1:-1::0;;;20725:20:0::1;;;;;;;;;;;20682:75;20767:18;:37:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;20767:37:0::1;-1:-1:-1::0;;;;20767:37:0;;::::1;::::0;;;::::1;::::0;;20615:197::o;21066:208::-;15742:6;;-1:-1:-1;;;;;15742:6:0;1124:10;16061:23;16053:70;;;;-1:-1:-1;;;16053:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21160:30:0;::::1;21143:14;21160:30:::0;;;:20:::1;:30;::::0;;;;;;21234:32:::1;::::0;21160:30;;21258:7;21234:12:::1;:32::i;:::-;-1:-1:-1::0;;;;;21201:30:0;;::::1;;::::0;;;:20:::1;:30;::::0;;;;:65;;;;-1:-1:-1;;21066:208:0:o;24327:143::-;-1:-1:-1;;;;;24429:29:0;;24390:4;24429:29;;;:20;:29;;;;;;27309:10;27299:21;:25;;24414:48;27150:182;21550:220;15742:6;;-1:-1:-1;;;;;15742:6:0;1124:10;16061:23;16053:70;;;;-1:-1:-1;;;16053:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21656:30:0;::::1;21639:14;21656:30:::0;;;:20:::1;:30;::::0;;;;;21730:32:::1;21656:30:::0;21751:1:::1;21754:7:::0;21730:12:::1;:32::i;16494:103::-:0;15742:6;;-1:-1:-1;;;;;15742:6:0;1124:10;16061:23;16053:70;;;;-1:-1:-1;;;16053:70:0;;;;;;;:::i;:::-;16559:30:::1;16586:1;16559:18;:30::i;:::-;16494:103::o:0;22839:1032::-;-1:-1:-1;;;;;22954:26:0;;22906:7;22954:26;;;:20;:26;;;;;;27309:1;27299:21;;:25;23049:77;;23113:1;23106:8;;;;;23049:77;-1:-1:-1;;;;;23164:24:0;;23138:23;23164:24;;;:20;:24;;;;;;27309:1;27299:21;;:25;23255:75;;23317:1;23310:8;;;;;;23255:75;23342:60;;;;;;;;23384:18;23342:60;-1:-1:-1;;;;;23342:60:0;;;;;-1:-1:-1;;;23342:60:0;;;;;;;;-1:-1:-1;;;23342:60:0;;;;;;;;;;;-1:-1:-1;;;23342:60:0;;;;;;;;;27309:10;27299:21;;:25;23472:100;;23536:24;;;23529:31;;;-1:-1:-1;23529:31:0;;-1:-1:-1;;23529:31:0;23472:100;27309:10;27299:21;;:25;23640:99;;23702:25;;;23695:32;;;-1:-1:-1;23695:32:0;;-1:-1:-1;;23695:32:0;23640:99;23834:29;;;23827:36;;;22839:1032;-1:-1:-1;;;;;22839:1032:0:o;19792:205::-;15742:6;;-1:-1:-1;;;;;15742:6:0;1124:10;16061:23;16053:70;;;;-1:-1:-1;;;16053:70:0;;;;;;;:::i;:::-;18594:6:::1;19867:4;:15;;;19863:75;;;19906:20;;-1:-1:-1::0;;;19906:20:0::1;;;;;;;;;;;19863:75;19948:18;:41:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;19948:41:0::1;-1:-1:-1::0;;;;19948:41:0;;::::1;::::0;;;::::1;::::0;;19792:205::o;6682:104::-;6738:13;6771:7;6764:14;;;;;:::i;8087:193::-;8166:4;1124:10;8222:28;1124:10;8239:2;8243:6;8222:9;:28::i;24027:144::-;-1:-1:-1;;;;;24130:29:0;;24091:4;24130:29;;;:20;:29;;;;;;27309:1;27299:21;:25;;24115:48;27150:182;19459:117;15742:6;;-1:-1:-1;;;;;15742:6:0;1124:10;16061:23;16053:70;;;;-1:-1:-1;;;16053:70:0;;;;;;;:::i;:::-;19529:18:::1;:39:::0;;-1:-1:-1;;;;;;19529:39:0::1;-1:-1:-1::0;;;;;19529:39:0;;;::::1;::::0;;;::::1;::::0;;19459:117::o;16752:203::-;15742:6;;-1:-1:-1;;;;;15742:6:0;1124:10;16061:23;16053:70;;;;-1:-1:-1;;;16053:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16841:22:0;::::1;16833:75;;;::::0;-1:-1:-1;;;16833:75:0;;5587:2:1;16833:75:0::1;::::0;::::1;5569:21:1::0;5626:2;5606:18;;;5599:30;5665:34;5645:18;;;5638:62;-1:-1:-1;;;5716:18:1;;;5709:38;5764:19;;16833:75:0::1;5385:404:1::0;16833:75:0::1;16919:28;16938:8;16919:18;:28::i;:::-;16752:203:::0;:::o;27611:247::-;15742:6;;-1:-1:-1;;;;;15742:6:0;1124:10;16061:23;16053:70;;;;-1:-1:-1;;;16053:70:0;;;;;;;:::i;:::-;27739:22:::1;27750:11:::0;18594:6:::1;27739:22;:::i;:::-;-1:-1:-1::0;;;;;27713:22:0;::::1;;::::0;;;:12:::1;:22;::::0;;;;;;;:49;;;7855:18;;;;;;;18594:6:::1;::::0;27795:44:::1;::::0;::::1;:::i;:::-;:55;;;;:::i;:::-;-1:-1:-1::0;;;;;27773:19:0;;::::1;;::::0;;;:9:::1;:19;::::0;;;;:77;;;;-1:-1:-1;27611:247:0:o;12998:346::-;-1:-1:-1;;;;;13100:19:0;;13092:68;;;;-1:-1:-1;;;13092:68:0;;6788:2:1;13092:68:0;;;6770:21:1;6827:2;6807:18;;;6800:30;6866:34;6846:18;;;6839:62;-1:-1:-1;;;6917:18:1;;;6910:34;6961:19;;13092:68:0;6586:400:1;13092:68:0;-1:-1:-1;;;;;13179:21:0;;13171:68;;;;-1:-1:-1;;;13171:68:0;;7193:2:1;13171:68:0;;;7175:21:1;7232:2;7212:18;;;7205:30;7271:34;7251:18;;;7244:62;-1:-1:-1;;;7322:18:1;;;7315:32;7364:19;;13171:68:0;6991:398:1;13171:68:0;-1:-1:-1;;;;;13252:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;13304:32;;1342:25:1;;;13304:32:0;;1315:18:1;13304:32:0;;;;;;;12998:346;;;:::o;9864:134::-;9949:5;:13;9957:5;9949;:13;:::i;:::-;-1:-1:-1;9973:7:0;:17;9983:7;9973;:17;:::i;:::-;;9864:134;;:::o;13635:419::-;-1:-1:-1;;;;;8459:18:0;;;13736:24;8459:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;13803:37:0;;13799:248;;13885:6;13865:16;:26;;13857:68;;;;-1:-1:-1;;;13857:68:0;;9800:2:1;13857:68:0;;;9782:21:1;9839:2;9819:18;;;9812:30;9878:31;9858:18;;;9851:59;9927:18;;13857:68:0;9598:353:1;13857:68:0;13969:51;13978:5;13985:7;14013:6;13994:16;:25;13969:8;:51::i;:::-;13725:329;13635:419;;;:::o;30437:159::-;30552:36;30571:4;30577:2;30581:6;30552:18;:36::i;26674:243::-;26762:7;26786:5;26782:128;;;-1:-1:-1;26825:1:0;:10;;26815:21;;26808:28;;26782:128;-1:-1:-1;26887:1:0;:10;;26885:13;26876:22;;26869:29;;17115:187;17208:6;;;-1:-1:-1;;;;;17225:17:0;;;-1:-1:-1;;;;;;17225:17:0;;;;;;;17258:36;;17208:6;;;17225:17;17208:6;;17258:36;;17189:16;;17258:36;17178:124;17115:187;:::o;24716:1705::-;-1:-1:-1;;;;;24842:26:0;;24814:25;24842:26;;;:20;:26;;;;;;27309:1;27299:21;;:25;24937:123;;24994:33;25010:4;25016:2;25020:6;24994:15;:33::i;24937:123::-;-1:-1:-1;;;;;25098:24:0;;25072:23;25098:24;;;:20;:24;;;;;;27309:1;27299:21;;:25;25189:121;;25244:33;25260:4;25266:2;25270:6;25244:15;:33::i;:::-;25292:7;;24716:1705;;;:::o;25189:121::-;25344:60;;;;;;;;25386:18;25344:60;-1:-1:-1;;;;;25344:60:0;;;;;-1:-1:-1;;;25344:60:0;;;;;;;;-1:-1:-1;;;25344:60:0;;;;;;;;;;;-1:-1:-1;;;25344:60:0;;;;;;;;;-1:-1:-1;;27309:10:0;27299:21;;:25;25474:649;;18769:6;25575:13;:24;;;25566:33;;:6;:33;:56;;;;;:::i;:::-;;25560:62;;25474:649;;;27309:10;27299:21;;:25;25720:403;;18769:6;25819:13;:25;;;25810:34;;:6;:34;:57;;;;;:::i;25720:403::-;18769:6;26044:13;:29;;;26035:38;;:6;:38;:61;;;;;:::i;:::-;;26029:67;;25720:403;26275:12;;;26311:41;26327:4;26333:2;26275:12;26311:15;:41::i;:::-;26363:50;26379:4;26385:13;:22;;;26409:3;26363:15;:50::i;:::-;24803:1618;;;;;24716:1705;;;:::o;10477:587::-;-1:-1:-1;;;;;10574:18:0;;10566:68;;;;-1:-1:-1;;;10566:68:0;;10158:2:1;10566:68:0;;;10140:21:1;10197:2;10177:18;;;10170:30;10236:34;10216:18;;;10209:62;-1:-1:-1;;;10287:18:1;;;10280:35;10332:19;;10566:68:0;9956:401:1;10566:68:0;-1:-1:-1;;;;;10653:16:0;;10645:64;;;;-1:-1:-1;;;10645:64:0;;10564:2:1;10645:64:0;;;10546:21:1;10603:2;10583:18;;;10576:30;10642:34;10622:18;;;10615:62;-1:-1:-1;;;10693:18:1;;;10686:33;10736:19;;10645:64:0;10362:399:1;10645:64:0;10722:38;10743:4;10749:2;10753:6;10722:20;:38::i;:::-;-1:-1:-1;;;;;10795:15:0;;10773:19;10795:15;;;;;;;;;;;10829:21;;;;10821:72;;;;-1:-1:-1;;;10821:72:0;;10968:2:1;10821:72:0;;;10950:21:1;11007:2;10987:18;;;10980:30;11046:34;11026:18;;;11019:62;-1:-1:-1;;;11097:18:1;;;11090:36;11143:19;;10821:72:0;10766:402:1;10821:72:0;-1:-1:-1;;;;;10929:15:0;;;:9;:15;;;;;;;;;;;10947:20;;;10929:38;;10989:13;;;;;;;;:23;;10961:6;;10929:9;10989:23;;10961:6;;10989:23;:::i;:::-;;;;;;;;11045:2;-1:-1:-1;;;;;11030:26:0;11039:4;-1:-1:-1;;;;;11030:26:0;;11049:6;11030:26;;;;1342:25:1;;1330:2;1315:18;;1196:177;11030:26:0;;;;;;;;10555:509;10477:587;;;:::o;30604:213::-;30762:47;30792:4;30798:2;30802:6;-1:-1:-1;;;;;28367:26:0;;28339:25;28367:26;;;:20;:26;;;;;;28476:36;28367:26;28510:1;27309;:10;27299:21;:25;;;27150:182;28476:36;28472:49;;;28514:7;28230:721;;;:::o;28472:49::-;-1:-1:-1;;;;;7855:18:0;;28591:21;7855:18;;;;;;;;;;;;28680:12;:18;;;;;;7855;;28591:21;18594:6;;28664:34;;7855:18;28664:34;:::i;:::-;:45;;;;:::i;:::-;-1:-1:-1;;;;;28741:15:0;;;;;;:9;:15;;;;;;28641:68;;-1:-1:-1;28726:30:0;;28722:66;;;-1:-1:-1;;;;;28758:15:0;;;;;;:9;:15;;;;;:30;;;28722:66;28803:17;;28799:79;;28849:22;28865:6;28849:13;:22;:::i;:::-;-1:-1:-1;;;;;28830:15:0;;;;;;:9;:15;;;;;;:41;;28822:56;;;;-1:-1:-1;;;28822:56:0;;11505:2:1;28822:56:0;;;11487:21:1;11544:1;11524:18;;;11517:29;-1:-1:-1;;;11562:18:1;;;11555:32;11604:18;;28822:56:0;11303:325:1;28822:56:0;28328:623;;;28230:721;;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;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:127::-;1439:10;1434:3;1430:20;1427:1;1420:31;1470:4;1467:1;1460:15;1494:4;1491:1;1484:15;1510:719;1553:5;1606:3;1599:4;1591:6;1587:17;1583:27;1573:55;;1624:1;1621;1614:12;1573:55;1660:6;1647:20;1686:18;1723:2;1719;1716:10;1713:36;;;1729:18;;:::i;:::-;1804:2;1798:9;1772:2;1858:13;;-1:-1:-1;;1854:22:1;;;1878:2;1850:31;1846:40;1834:53;;;1902:18;;;1922:22;;;1899:46;1896:72;;;1948:18;;:::i;:::-;1988:10;1984:2;1977:22;2023:2;2015:6;2008:18;2069:3;2062:4;2057:2;2049:6;2045:15;2041:26;2038:35;2035:55;;;2086:1;2083;2076:12;2035:55;2150:2;2143:4;2135:6;2131:17;2124:4;2116:6;2112:17;2099:54;2197:1;2190:4;2185:2;2177:6;2173:15;2169:26;2162:37;2217:6;2208:15;;;;;;1510:719;;;;:::o;2234:543::-;2322:6;2330;2383:2;2371:9;2362:7;2358:23;2354:32;2351:52;;;2399:1;2396;2389:12;2351:52;2439:9;2426:23;2468:18;2509:2;2501:6;2498:14;2495:34;;;2525:1;2522;2515:12;2495:34;2548:50;2590:7;2581:6;2570:9;2566:22;2548:50;:::i;:::-;2538:60;;2651:2;2640:9;2636:18;2623:32;2607:48;;2680:2;2670:8;2667:16;2664:36;;;2696:1;2693;2686:12;2664:36;;2719:52;2763:7;2752:8;2741:9;2737:24;2719:52;:::i;:::-;2709:62;;;2234:543;;;;;:::o;2782:328::-;2859:6;2867;2875;2928:2;2916:9;2907:7;2903:23;2899:32;2896:52;;;2944:1;2941;2934:12;2896:52;2967:29;2986:9;2967:29;:::i;:::-;2957:39;;3015:38;3049:2;3038:9;3034:18;3015:38;:::i;:::-;3005:48;;3100:2;3089:9;3085:18;3072:32;3062:42;;2782:328;;;;;:::o;3304:272::-;3362:6;3415:2;3403:9;3394:7;3390:23;3386:32;3383:52;;;3431:1;3428;3421:12;3383:52;3470:9;3457:23;3520:6;3513:5;3509:18;3502:5;3499:29;3489:57;;3542:1;3539;3532:12;3789:347;3854:6;3862;3915:2;3903:9;3894:7;3890:23;3886:32;3883:52;;;3931:1;3928;3921:12;3883:52;3954:29;3973:9;3954:29;:::i;:::-;3944:39;;4033:2;4022:9;4018:18;4005:32;4080:5;4073:13;4066:21;4059:5;4056:32;4046:60;;4102:1;4099;4092:12;4046:60;4125:5;4115:15;;;3789:347;;;;;:::o;4141:186::-;4200:6;4253:2;4241:9;4232:7;4228:23;4224:32;4221:52;;;4269:1;4266;4259:12;4221:52;4292:29;4311:9;4292:29;:::i;4332:260::-;4400:6;4408;4461:2;4449:9;4440:7;4436:23;4432:32;4429:52;;;4477:1;4474;4467:12;4429:52;4500:29;4519:9;4500:29;:::i;:::-;4490:39;;4548:38;4582:2;4571:9;4567:18;4548:38;:::i;:::-;4538:48;;4332:260;;;;;:::o;4597:380::-;4676:1;4672:12;;;;4719;;;4740:61;;4794:4;4786:6;4782:17;4772:27;;4740:61;4847:2;4839:6;4836:14;4816:18;4813:38;4810:161;;4893:10;4888:3;4884:20;4881:1;4874:31;4928:4;4925:1;4918:15;4956:4;4953:1;4946:15;4810:161;;4597:380;;;:::o;4982:398::-;5184:2;5166:21;;;5223:2;5203:18;;;5196:30;5262:34;5257:2;5242:18;;5235:62;-1:-1:-1;;;5328:2:1;5313:18;;5306:32;5370:3;5355:19;;4982:398::o;5794:127::-;5855:10;5850:3;5846:20;5843:1;5836:31;5886:4;5883:1;5876:15;5910:4;5907:1;5900:15;5926:128;5993:9;;;6014:11;;;6011:37;;;6028:18;;:::i;6059:168::-;6132:9;;;6163;;6180:15;;;6174:22;;6160:37;6150:71;;6201:18;;:::i;6232:127::-;6293:10;6288:3;6284:20;6281:1;6274:31;6324:4;6321:1;6314:15;6348:4;6345:1;6338:15;6364:217;6404:1;6430;6420:132;;6474:10;6469:3;6465:20;6462:1;6455:31;6509:4;6506:1;6499:15;6537:4;6534:1;6527:15;6420:132;-1:-1:-1;6566:9:1;;6364:217::o;7520:545::-;7622:2;7617:3;7614:11;7611:448;;;7658:1;7683:5;7679:2;7672:17;7728:4;7724:2;7714:19;7798:2;7786:10;7782:19;7779:1;7775:27;7769:4;7765:38;7834:4;7822:10;7819:20;7816:47;;;-1:-1:-1;7857:4:1;7816:47;7912:2;7907:3;7903:12;7900:1;7896:20;7890:4;7886:31;7876:41;;7967:82;7985:2;7978:5;7975:13;7967:82;;;8030:17;;;8011:1;8000:13;7967:82;;8241:1352;8367:3;8361:10;8394:18;8386:6;8383:30;8380:56;;;8416:18;;:::i;:::-;8445:97;8535:6;8495:38;8527:4;8521:11;8495:38;:::i;:::-;8489:4;8445:97;:::i;:::-;8597:4;;8661:2;8650:14;;8678:1;8673:663;;;;9380:1;9397:6;9394:89;;;-1:-1:-1;9449:19:1;;;9443:26;9394:89;-1:-1:-1;;8198:1:1;8194:11;;;8190:24;8186:29;8176:40;8222:1;8218:11;;;8173:57;9496:81;;8643:944;;8673:663;7467:1;7460:14;;;7504:4;7491:18;;-1:-1:-1;;8709:20:1;;;8827:236;8841:7;8838:1;8835:14;8827:236;;;8930:19;;;8924:26;8909:42;;9022:27;;;;8990:1;8978:14;;;;8857:19;;8827:236;;;8831:3;9091:6;9082:7;9079:19;9076:201;;;9152:19;;;9146:26;-1:-1:-1;;9235:1:1;9231:14;;;9247:3;9227:24;9223:37;9219:42;9204:58;9189:74;;9076:201;-1:-1:-1;;;;;9323:1:1;9307:14;;;9303:22;9290:36;;-1:-1:-1;8241:1352:1:o;11173:125::-;11238:9;;;11259:10;;;11256:36;;;11272:18;;:::i

Swarm Source

ipfs://eff65b82b414209538bcd2be635c9c8720359162b5ad1bb45939aea5eaf8a6ea

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.