ETH Price: $2,981.27 (+2.10%)
Gas: 2 Gwei

Token

PUPSonETH (PUPS)
 

Overview

Max Total Supply

100,000,000 PUPS

Holders

282

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000004245258262 PUPS

Value
$0.00
0x89c656268eabb4c5e180130495d1e0f1b6c9d936
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:
PUPSonETH

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion
File 1 of 9 : PUPSonETH.sol
/*
 /$$$$$$$  /$$   /$$ /$$$$$$$   /$$$$$$                      /$$$$$$$$ /$$$$$$$$ /$$   /$$
| $$__  $$| $$  | $$| $$__  $$ /$$__  $$                    | $$_____/|__  $$__/| $$  | $$
| $$  \ $$| $$  | $$| $$  \ $$| $$  \__/  /$$$$$$  /$$$$$$$ | $$         | $$   | $$  | $$
| $$$$$$$/| $$  | $$| $$$$$$$/|  $$$$$$  /$$__  $$| $$__  $$| $$$$$      | $$   | $$$$$$$$
| $$____/ | $$  | $$| $$____/  \____  $$| $$  \ $$| $$  \ $$| $$__/      | $$   | $$__  $$
| $$      | $$  | $$| $$       /$$  \ $$| $$  | $$| $$  | $$| $$         | $$   | $$  | $$
| $$      |  $$$$$$/| $$      |  $$$$$$/|  $$$$$$/| $$  | $$| $$$$$$$$   | $$   | $$  | $$
|__/       \______/ |__/       \______/  \______/ |__/  |__/|________/   |__/   |__/  |__/
                                                                                                                                                                         
Website: https://PUPSonETH.com/
Twitter: https://twitter.com/PUPSonETH
Telegram: https://t.me/PUPSonETH
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.23;

import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import {ERC20Burnable} from "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {IUniswapV2Router} from "./interfaces/IUniswapV2Router.sol";
import {IUniswapV2Factory} from "./interfaces/IUniswapV2Factory.sol";

contract PUPSonETH is ERC20, ERC20Burnable, Ownable {
    address public marketingWallet;
    uint16 public buyFee = 0;
    uint16 public sellFee = 0;
    uint256 public swapTokensAtAmount = 50_000 * 1e18; // 0.05% of TS
    bool private _distributingFees;

    mapping(address => bool) private _excludedFromFees;

    bool public limitsInEffect = true;
    uint256 public maxWalletBalance = 2_000_000 * 1e18; // 2% of TS
    mapping(address => bool) private _excludedFromMaxWalletBalance;

    address public immutable uniV2Pair;
    IUniswapV2Router public constant uniV2Router = IUniswapV2Router(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

    bool public tradingEnabled;

    event LimitsRemoved();
    event TradingEnabled();
    event BuyFeeSet(uint16 newBuyFee);
    event SellFeeSet(uint16 newSellFee);
    event MarketingWalletUpdated(address newAddress);
    event SwapTokensAtAmountSet(uint256 newSwapTokensAtAmount);
    event FeesDistributed(uint256 totalTokensDistributed);

    /**
     * @notice Constructor function for the PUPSonETH contract.
     * It initializes the contract by setting the token name and symbol,
     * creates a Uniswap V2 pair for the token, sets initial values for marketing and operations wallets and
     * mints total token supply.
     * It also approves the Uniswap V2 router to spend an unlimited amount of tokens on behalf of the contract.
     */
    constructor() ERC20("PUPSonETH", "PUPS") {
        uniV2Pair = IUniswapV2Factory(uniV2Router.factory()).createPair(address(this), uniV2Router.WETH());
        _excludedFromMaxWalletBalance[uniV2Pair] = true;

        _excludedFromFees[owner()] = true;
        marketingWallet = owner();

        _mint(owner(), 100_000_000 * 1e18);

        _approve(address(this), address(uniV2Router), type(uint256).max);
    }

    receive() external payable {}

    /**
     * @notice This function is used to transfer tokens internally within the contract.
     * It performs various checks such as trading enablement, maximum transaction and balance limits,
     * fee distribution, and fee deduction.
     * It then calls the _transfer function from the parent contract to perform the actual token transfer.
     * @param from The address to transfer tokens from.
     * @param to The address to transfer tokens to.
     * @param amount The amount of tokens to transfer.
     */
    function _transfer(address from, address to, uint256 amount) internal override {
        require(amount > 0, "PUPSonETH: transfer amount must be greater than 0");

        // Check if trading has been enabled
        if (!tradingEnabled) {
            require(from == owner() || to == owner(), "PUPSonETH: trading has not been enabled yet");
        }

        // Max TX and Max Balance Limits
        if (limitsInEffect) {
            if (from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !_distributingFees) {
                // On Buys
                if (from == uniV2Pair && !_excludedFromMaxWalletBalance[to]) {
                    require(
                        amount + balanceOf(to) <= maxWalletBalance, "PUPSonETH: balance would exceed max wallet balance"
                    );
                }
                // On Transfers to non-excluded "to" address
                else if (!_excludedFromMaxWalletBalance[to]) {
                    require(
                        amount + balanceOf(to) <= maxWalletBalance, "PUPSonETH: balance would exceed max wallet balance"
                    );
                }
            }
        }

        // Swap any tokens held as fees for ETH and distribute
        bool shouldSwap = balanceOf(address(this)) >= swapTokensAtAmount;
        if (shouldSwap && !_distributingFees && from != uniV2Pair && !_excludedFromFees[from] && !_excludedFromFees[to])
        {
            _distributingFees = true;
            _distributeFees();
            _distributingFees = false;
        }

        // Determine if we should take fees
        bool takeFees = !_distributingFees;
        if (_excludedFromFees[from] || _excludedFromFees[to]) {
            takeFees = false;
        }

        uint256 fees = 0;
        // Take Fees if necessary
        if (takeFees) {
            // Fees on buys
            if (from == uniV2Pair && buyFee > 0) {
                fees = (amount * buyFee) / 1_000;
            }
            // Fees on sells
            else if (to == uniV2Pair && sellFee > 0) {
                fees = (amount * sellFee) / 1_000;
            }

            // If there are fees to be taken, transfer and substract from amount
            if (fees > 0) {
                super._transfer(from, address(this), fees);
                amount -= fees;
            }
        }

        // Make final transfer
        super._transfer(from, to, amount);
    }

    /**
     * @notice Distributes fees collected by the contract.
     * The function calculates the amount of fees to distribute based on the
     * balance of the contract and a max threshold of 20 times the swapTokensAtAmount.
     * @dev Emits a `FeesDistributed` event with the amount distributed.
     */
    function _distributeFees() private {
        // Determine amount of held fees to distribute
        uint256 tokensToDistribute = balanceOf(address(this));
        if (tokensToDistribute > swapTokensAtAmount * 20) {
            tokensToDistribute = swapTokensAtAmount * 20;
        }

        // Swap tokens for ETH
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniV2Router.WETH();
        try uniV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokensToDistribute, 0, path, address(this), block.timestamp
        ) {} catch {}

        // Send ETH to Marketing
        uint256 ethBalance = address(this).balance;
        if (ethBalance > 0) {
            (bool success,) = marketingWallet.call{value: ethBalance}("");
            if (success) {
                emit FeesDistributed(tokensToDistribute);
            }
        }
    }

    /**
     * @notice Returns whether the specified account is excluded from fees.
     * @param account The address to check.
     * @return A boolean indicating whether the account is excluded from fees.
     */
    function isExcludedFromFees(address account) public view returns (bool) {
        return _excludedFromFees[account];
    }

    /**
     * @notice Returns whether the specified account is excluded from the maximum wallet balance limit.
     * @param account The address to check.
     * @return A boolean indicating whether the account is excluded from the maximum wallet balance limit.
     */
    function isExcludedFromMaxWalletBalance(address account) public view returns (bool) {
        return _excludedFromMaxWalletBalance[account];
    }

    /**
     * @notice Enables trading of the token.
     * @dev Can only be called by the contract owner.
     * @dev Emits a `TradingEnabled` event.
     */
    function enableTrading() external onlyOwner {
        tradingEnabled = true;
        emit TradingEnabled();
    }

    /**
     * @notice Updates the marketing wallet address.
     * @param newAddress The new address for the marketing wallet.
     * @dev Can only be called by the contract owner.
     * @dev `newAddress` cannot be the zero address.
     * @dev Emits a `MarketingWalletUpdated` event.
     */
    function updateMarketingWallet(address newAddress) external onlyOwner {
        require(newAddress != address(0), "PUPSonETH: address cannot be 0 address");
        marketingWallet = newAddress;
        emit MarketingWalletUpdated(newAddress);
    }

    /**
     * @notice Removes the max transcation and max wallet balance limits on the token.
     * @dev Can only be called by the contract owner.
     * @dev Once turned off, the limits cannot be turned back on.
     * @dev Emits a `LimitsRemoved` event.
     */
    function removeLimits() external onlyOwner {
        limitsInEffect = false;
        emit LimitsRemoved();
    }

    /**
     * @notice Sets the amount of tokens required for a fee tokens swap.
     * @param newSwapTokensAtAmount The new amount of tokens required for a swap.
     * @dev Can only be called by the contract owner.
     * @dev The newSwapTokensAtAmount must be greater than or equal to 0.001% of the total supply,
     * and less than or equal to 0.5% of the total supply.
     * @dev Emits a `SwapTokensAtAmountSet` event.
     */
    function setSwapTokensAtAmount(uint256 newSwapTokensAtAmount) external onlyOwner {
        require(
            newSwapTokensAtAmount >= totalSupply() / 100_000,
            "PUPSonETH: swap tokens at amount cannot be lower than 0.001% of total supply"
        );
        require(
            newSwapTokensAtAmount <= (totalSupply() * 5) / 1_000,
            "PUPSonETH: swap tokens at amount cannot be higher than 0.5% of total supply"
        );
        swapTokensAtAmount = newSwapTokensAtAmount;
        emit SwapTokensAtAmountSet(newSwapTokensAtAmount);
    }

    /**
     * @notice Sets the buy fee for PUPSonETH.
     * @param newBuyFee The new buy fee to be set.
     * @dev Can only be called by the contract owner.
     * @dev The new buy fee cannot be greater than 400 (40%).
     * @dev Emits a `BuyFeeSet` event.
     */
    function setBuyFee(uint16 newBuyFee) external onlyOwner {
        require(newBuyFee <= 400, "PUPSonETH: fee cannot be greater than 40%");
        buyFee = newBuyFee;
        emit BuyFeeSet(newBuyFee);
    }

    /**
     * @notice Sets the sell fee for PUPSonETH.
     * @param newSellFee The new sell fee to be set.
     * @dev Can only be called by the contract owner.
     * @dev The new sell fee cannot be greater than 400 (40%).
     * @dev Emits a `SellFeeSet` event.
     */
    function setSellFee(uint16 newSellFee) external onlyOwner {
        require(newSellFee <= 400, "PUPSonETH: fee cannot be greater than 40%");
        sellFee = newSellFee;
        emit SellFeeSet(newSellFee);
    }

    /**
     * @notice Sets the excluded status of an account from fees.
     * @param account The address of the account.
     * @param excluded The excluded status to be set.
     * @dev Only the contract owner can call this function.
     */
    function setExcludedFromFees(address account, bool excluded) external onlyOwner {
        _excludedFromFees[account] = excluded;
    }

    /**
     * @notice Sets whether an account is excluded from the maximum wallet balance limit.
     * @param account The address of the account to be excluded or included.
     * @param excluded A boolean indicating whether the account should be excluded or included.
     * @dev Only the contract owner can call this function.
     */
    function setExcludedFromMaxWalletBalance(address account, bool excluded) external onlyOwner {
        _excludedFromMaxWalletBalance[account] = excluded;
    }
}

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 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

import "../ERC20.sol";
import "../../../utils/Context.sol";

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

File 4 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 5 of 9 : IUniswapV2Router.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.23;

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

    function WETH() external pure returns (address);

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

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

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

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

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

File 6 of 9 : IUniswapV2Factory.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.23;

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

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

File 7 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 8 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 9 of 9 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (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;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

Settings
{
  "remappings": [
    "@openzeppelin/=lib/openzeppelin-contracts/",
    "ds-test/=lib/openzeppelin-contracts/lib/forge-std/lib/ds-test/src/",
    "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/",
    "forge-std/=lib/forge-std/src/",
    "openzeppelin-contracts/=lib/openzeppelin-contracts/",
    "openzeppelin/=lib/openzeppelin-contracts/contracts/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "metadata": {
    "useLiteralContent": false,
    "bytecodeHash": "ipfs",
    "appendCBOR": true
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "paris",
  "viaIR": false,
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"newBuyFee","type":"uint16"}],"name":"BuyFeeSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalTokensDistributed","type":"uint256"}],"name":"FeesDistributed","type":"event"},{"anonymous":false,"inputs":[],"name":"LimitsRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newAddress","type":"address"}],"name":"MarketingWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"newSellFee","type":"uint16"}],"name":"SellFeeSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newSwapTokensAtAmount","type":"uint256"}],"name":"SwapTokensAtAmountSet","type":"event"},{"anonymous":false,"inputs":[],"name":"TradingEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromMaxWalletBalance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"newBuyFee","type":"uint16"}],"name":"setBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setExcludedFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setExcludedFromMaxWalletBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"newSellFee","type":"uint16"}],"name":"setSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSwapTokensAtAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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"},{"inputs":[],"name":"uniV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniV2Router","outputs":[{"internalType":"contract IUniswapV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526006805463ffffffff60a01b19169055690a968163f0a57b400000600755600a805460ff191660011790556a01a784379d99db42000000600b553480156200004b57600080fd5b50604051806040016040528060098152602001680a0aaa0a6dedc8aa8960bb1b815250604051806040016040528060048152602001635055505360e01b81525081600390816200009c919062000609565b506004620000ab828262000609565b505050620000c8620000c26200031960201b60201c565b6200031d565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200011b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001419190620006d5565b6001600160a01b031663c9c6539630737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001a3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c99190620006d5565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000217573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023d9190620006d5565b6001600160a01b031660808190526000908152600c60205260408120805460ff19166001908117909155906009906200027e6005546001600160a01b031690565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055620002b96005546001600160a01b031690565b600680546001600160a01b0319166001600160a01b03928316179055600554620002f091166a52b7d2dcc80cd2e40000006200036f565b6200031330737a250d5630b4cf539739df2c5dacb4c659f2488d60001962000436565b6200072f565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620003cb5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060026000828254620003df919062000707565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0383166200049a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401620003c2565b6001600160a01b038216620004fd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401620003c2565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200058e57607f821691505b602082108103620005af57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200055e576000816000526020600020601f850160051c81016020861015620005e05750805b601f850160051c820191505b818110156200060157828155600101620005ec565b505050505050565b81516001600160401b0381111562000625576200062562000563565b6200063d8162000636845462000579565b84620005b5565b602080601f8311600181146200067557600084156200065c5750858301515b600019600386901b1c1916600185901b17855562000601565b600085815260208120601f198616915b82811015620006a65788860151825594840194600190910190840162000685565b5085821015620006c55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620006e857600080fd5b81516001600160a01b03811681146200070057600080fd5b9392505050565b808201808211156200072957634e487b7160e01b600052601160045260246000fd5b92915050565b608051611d5362000767600039600081816105280152818161107c015281816111b5015281816112b301526113320152611d536000f3fe6080604052600436106102085760003560e01c8063751039fc11610118578063a457c2d7116100a0578063bbde77c11161006f578063bbde77c114610645578063dd62ed3e1461065b578063e064648a1461067b578063e2f456051461069b578063f2fde38b146106b157600080fd5b8063a457c2d7146105c5578063a9059cbb146105e5578063aacebbe314610605578063afa4f3b21461062557600080fd5b80638bcea939116100e75780638bcea939146105165780638da5cb5b1461054a57806394a9839014610568578063958c2e521461058857806395d89b41146105b057600080fd5b8063751039fc1461049457806375f0a874146104a957806379cc6790146104e15780638a8c523c1461050157600080fd5b8063470624021161019b578063590ffdce1161016a578063590ffdce146103d0578063686d83c3146103f057806370a082311461042957806370c476711461045f578063715018a61461047f57600080fd5b806347062402146103415780634a62bb65146103635780634ada218b1461037d5780634fbee1931461039757600080fd5b80632b14ca56116101d75780632b14ca56146102ae578063313ce567146102e357806339509351146102ff57806342966c681461031f57600080fd5b806306fdde0314610214578063095ea7b31461023f57806318160ddd1461026f57806323b872dd1461028e57600080fd5b3661020f57005b600080fd5b34801561022057600080fd5b506102296106d1565b604051610236919061198f565b60405180910390f35b34801561024b57600080fd5b5061025f61025a3660046119f3565b610763565b6040519015158152602001610236565b34801561027b57600080fd5b506002545b604051908152602001610236565b34801561029a57600080fd5b5061025f6102a9366004611a1f565b61077d565b3480156102ba57600080fd5b506006546102d090600160b01b900461ffff1681565b60405161ffff9091168152602001610236565b3480156102ef57600080fd5b5060405160128152602001610236565b34801561030b57600080fd5b5061025f61031a3660046119f3565b6107a1565b34801561032b57600080fd5b5061033f61033a366004611a60565b6107c3565b005b34801561034d57600080fd5b506006546102d090600160a01b900461ffff1681565b34801561036f57600080fd5b50600a5461025f9060ff1681565b34801561038957600080fd5b50600d5461025f9060ff1681565b3480156103a357600080fd5b5061025f6103b2366004611a79565b6001600160a01b031660009081526009602052604090205460ff1690565b3480156103dc57600080fd5b5061033f6103eb366004611a9d565b6107d0565b3480156103fc57600080fd5b5061025f61040b366004611a79565b6001600160a01b03166000908152600c602052604090205460ff1690565b34801561043557600080fd5b50610280610444366004611a79565b6001600160a01b031660009081526020819052604090205490565b34801561046b57600080fd5b5061033f61047a366004611adb565b610803565b34801561048b57600080fd5b5061033f610891565b3480156104a057600080fd5b5061033f6108a5565b3480156104b557600080fd5b506006546104c9906001600160a01b031681565b6040516001600160a01b039091168152602001610236565b3480156104ed57600080fd5b5061033f6104fc3660046119f3565b6108e2565b34801561050d57600080fd5b5061033f6108fb565b34801561052257600080fd5b506104c97f000000000000000000000000000000000000000000000000000000000000000081565b34801561055657600080fd5b506005546001600160a01b03166104c9565b34801561057457600080fd5b5061033f610583366004611a9d565b61093b565b34801561059457600080fd5b506104c9737a250d5630b4cf539739df2c5dacb4c659f2488d81565b3480156105bc57600080fd5b5061022961096e565b3480156105d157600080fd5b5061025f6105e03660046119f3565b61097d565b3480156105f157600080fd5b5061025f6106003660046119f3565b6109f8565b34801561061157600080fd5b5061033f610620366004611a79565b610a06565b34801561063157600080fd5b5061033f610640366004611a60565b610ac1565b34801561065157600080fd5b50610280600b5481565b34801561066757600080fd5b50610280610676366004611aff565b610c49565b34801561068757600080fd5b5061033f610696366004611adb565b610c74565b3480156106a757600080fd5b5061028060075481565b3480156106bd57600080fd5b5061033f6106cc366004611a79565b610cf2565b6060600380546106e090611b2d565b80601f016020809104026020016040519081016040528092919081815260200182805461070c90611b2d565b80156107595780601f1061072e57610100808354040283529160200191610759565b820191906000526020600020905b81548152906001019060200180831161073c57829003601f168201915b5050505050905090565b600033610771818585610d68565b60019150505b92915050565b60003361078b858285610e8d565b610796858585610f07565b506001949350505050565b6000336107718185856107b48383610c49565b6107be9190611b7d565b610d68565b6107cd33826113dc565b50565b6107d861150b565b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b61080b61150b565b6101908161ffff16111561083a5760405162461bcd60e51b815260040161083190611b90565b60405180910390fd5b6006805461ffff60a01b1916600160a01b61ffff8416908102919091179091556040519081527f36fa651f7bdbb8a6a7289ed4df5a6e3efb1fdcaef87c1f88dfd66b08d2007dc2906020015b60405180910390a150565b61089961150b565b6108a36000611565565b565b6108ad61150b565b600a805460ff191690556040517f7bfa7bacf025baa75e5308bf15bcf2948f406c7ebe3eb1a8bb611862b9d647ef90600090a1565b6108ed823383610e8d565b6108f782826113dc565b5050565b61090361150b565b600d805460ff191660011790556040517f799663458a5ef2936f7fa0c99b3336c69c25890f82974f04e811e5bb359186c790600090a1565b61094361150b565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b6060600480546106e090611b2d565b6000338161098b8286610c49565b9050838110156109eb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610831565b6107968286868403610d68565b600033610771818585610f07565b610a0e61150b565b6001600160a01b038116610a735760405162461bcd60e51b815260206004820152602660248201527f505550536f6e4554483a20616464726573732063616e6e6f742062652030206160448201526564647265737360d01b6064820152608401610831565b600680546001600160a01b0319166001600160a01b0383169081179091556040519081527fbf86feedee5b30c30a8243bd21deebb704d141478d39b1be04fe5ee739f214e790602001610886565b610ac961150b565b620186a0610ad660025490565b610ae09190611bd9565b811015610b6a5760405162461bcd60e51b815260206004820152604c60248201527f505550536f6e4554483a207377617020746f6b656e7320617420616d6f756e7460448201527f2063616e6e6f74206265206c6f776572207468616e20302e30303125206f662060648201526b746f74616c20737570706c7960a01b608482015260a401610831565b6103e8610b7660025490565b610b81906005611bfb565b610b8b9190611bd9565b811115610c145760405162461bcd60e51b815260206004820152604b60248201527f505550536f6e4554483a207377617020746f6b656e7320617420616d6f756e7460448201527f2063616e6e6f7420626520686967686572207468616e20302e3525206f66207460648201526a6f74616c20737570706c7960a81b608482015260a401610831565b60078190556040518181527f9efd5e66ee602c629f311865749d9af922866664ad3ff96bbfaf8035f5d24b2690602001610886565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610c7c61150b565b6101908161ffff161115610ca25760405162461bcd60e51b815260040161083190611b90565b6006805461ffff60b01b1916600160b01b61ffff8416908102919091179091556040519081527f625428ca3cfddf32cf909a4d7ae5a8b942d838319ae2a8055f271ad78033c2f690602001610886565b610cfa61150b565b6001600160a01b038116610d5f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610831565b6107cd81611565565b6001600160a01b038316610dca5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610831565b6001600160a01b038216610e2b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610831565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000610e998484610c49565b90506000198114610f015781811015610ef45760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610831565b610f018484848403610d68565b50505050565b60008111610f715760405162461bcd60e51b815260206004820152603160248201527f505550536f6e4554483a207472616e7366657220616d6f756e74206d75737420604482015270062652067726561746572207468616e203607c1b6064820152608401610831565b600d5460ff16611004576005546001600160a01b0384811691161480610fa457506005546001600160a01b038381169116145b6110045760405162461bcd60e51b815260206004820152602b60248201527f505550536f6e4554483a2074726164696e6720686173206e6f74206265656e2060448201526a195b98589b1959081e595d60aa1b6064820152608401610831565b600a5460ff1615611186576005546001600160a01b0384811691161480159061103b57506005546001600160a01b03838116911614155b801561104f57506001600160a01b03821615155b801561106657506001600160a01b03821661dead14155b8015611075575060085460ff16155b15611186577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161480156110d457506001600160a01b0382166000908152600c602052604090205460ff16155b1561112257600b546001600160a01b0383166000908152602081905260409020546110ff9083611b7d565b111561111d5760405162461bcd60e51b815260040161083190611c12565b611186565b6001600160a01b0382166000908152600c602052604090205460ff1661118657600b546001600160a01b0383166000908152602081905260409020546111689083611b7d565b11156111865760405162461bcd60e51b815260040161083190611c12565b600754306000908152602081905260409020541080159081906111ac575060085460ff16155b80156111ea57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b031614155b801561120f57506001600160a01b03841660009081526009602052604090205460ff16155b801561123457506001600160a01b03831660009081526009602052604090205460ff16155b15611259576008805460ff1916600117905561124e6115b7565b6008805460ff191690555b6008546001600160a01b03851660009081526009602052604090205460ff918216159116806112a057506001600160a01b03841660009081526009602052604090205460ff165b156112a9575060005b600081156113c9577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b03161480156112fe5750600654600160a01b900461ffff1615155b15611330576006546103e89061131f90600160a01b900461ffff1686611bfb565b6113299190611bd9565b90506113ab565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614801561137d5750600654600160b01b900461ffff1615155b156113ab576006546103e89061139e90600160b01b900461ffff1686611bfb565b6113a89190611bd9565b90505b80156113c9576113bc8630836117eb565b6113c68185611c64565b93505b6113d48686866117eb565b505050505050565b6001600160a01b03821661143c5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610831565b6001600160a01b038216600090815260208190526040902054818110156114b05760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610831565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610e80565b505050565b6005546001600160a01b031633146108a35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610831565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b306000908152602081905260409020546007546115d5906014611bfb565b8111156115ed576007546115ea906014611bfb565b90505b604080516002808252606082018352600092602083019080368337019050509050308160008151811061162257611622611c77565b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611694573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116b89190611c8d565b816001815181106116cb576116cb611c77565b6001600160a01b039092166020928302919091019091015260405163791ac94760e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d9063791ac94790611723908590600090869030904290600401611caa565b600060405180830381600087803b15801561173d57600080fd5b505af192505050801561174e575060015b50478015611506576006546040516000916001600160a01b03169083908381818185875af1925050503d80600081146117a3576040519150601f19603f3d011682016040523d82523d6000602084013e6117a8565b606091505b505090508015610f01576040518481527f8959421a1320789a49eeec01a4750caf8a30733c3db14f000d84484df89300f99060200160405180910390a150505050565b6001600160a01b03831661184f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610831565b6001600160a01b0382166118b15760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610831565b6001600160a01b038316600090815260208190526040902054818110156119295760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610831565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610f01565b60006020808352835180602085015260005b818110156119bd578581018301518582016040015282016119a1565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146107cd57600080fd5b60008060408385031215611a0657600080fd5b8235611a11816119de565b946020939093013593505050565b600080600060608486031215611a3457600080fd5b8335611a3f816119de565b92506020840135611a4f816119de565b929592945050506040919091013590565b600060208284031215611a7257600080fd5b5035919050565b600060208284031215611a8b57600080fd5b8135611a96816119de565b9392505050565b60008060408385031215611ab057600080fd5b8235611abb816119de565b915060208301358015158114611ad057600080fd5b809150509250929050565b600060208284031215611aed57600080fd5b813561ffff81168114611a9657600080fd5b60008060408385031215611b1257600080fd5b8235611b1d816119de565b91506020830135611ad0816119de565b600181811c90821680611b4157607f821691505b602082108103611b6157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561077757610777611b67565b60208082526029908201527f505550536f6e4554483a206665652063616e6e6f742062652067726561746572604082015268207468616e2034302560b81b606082015260800190565b600082611bf657634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761077757610777611b67565b60208082526032908201527f505550536f6e4554483a2062616c616e636520776f756c6420657863656564206040820152716d61782077616c6c65742062616c616e636560701b606082015260800190565b8181038181111561077757610777611b67565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611c9f57600080fd5b8151611a96816119de565b600060a08201878352602087602085015260a0604085015281875180845260c08601915060208901935060005b81811015611cfc5784516001600160a01b031683529383019391830191600101611cd7565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212206273037ece943901dcb150145f71d8420682d8d696b14082980076a5107ea4d864736f6c63430008170033

Deployed Bytecode

0x6080604052600436106102085760003560e01c8063751039fc11610118578063a457c2d7116100a0578063bbde77c11161006f578063bbde77c114610645578063dd62ed3e1461065b578063e064648a1461067b578063e2f456051461069b578063f2fde38b146106b157600080fd5b8063a457c2d7146105c5578063a9059cbb146105e5578063aacebbe314610605578063afa4f3b21461062557600080fd5b80638bcea939116100e75780638bcea939146105165780638da5cb5b1461054a57806394a9839014610568578063958c2e521461058857806395d89b41146105b057600080fd5b8063751039fc1461049457806375f0a874146104a957806379cc6790146104e15780638a8c523c1461050157600080fd5b8063470624021161019b578063590ffdce1161016a578063590ffdce146103d0578063686d83c3146103f057806370a082311461042957806370c476711461045f578063715018a61461047f57600080fd5b806347062402146103415780634a62bb65146103635780634ada218b1461037d5780634fbee1931461039757600080fd5b80632b14ca56116101d75780632b14ca56146102ae578063313ce567146102e357806339509351146102ff57806342966c681461031f57600080fd5b806306fdde0314610214578063095ea7b31461023f57806318160ddd1461026f57806323b872dd1461028e57600080fd5b3661020f57005b600080fd5b34801561022057600080fd5b506102296106d1565b604051610236919061198f565b60405180910390f35b34801561024b57600080fd5b5061025f61025a3660046119f3565b610763565b6040519015158152602001610236565b34801561027b57600080fd5b506002545b604051908152602001610236565b34801561029a57600080fd5b5061025f6102a9366004611a1f565b61077d565b3480156102ba57600080fd5b506006546102d090600160b01b900461ffff1681565b60405161ffff9091168152602001610236565b3480156102ef57600080fd5b5060405160128152602001610236565b34801561030b57600080fd5b5061025f61031a3660046119f3565b6107a1565b34801561032b57600080fd5b5061033f61033a366004611a60565b6107c3565b005b34801561034d57600080fd5b506006546102d090600160a01b900461ffff1681565b34801561036f57600080fd5b50600a5461025f9060ff1681565b34801561038957600080fd5b50600d5461025f9060ff1681565b3480156103a357600080fd5b5061025f6103b2366004611a79565b6001600160a01b031660009081526009602052604090205460ff1690565b3480156103dc57600080fd5b5061033f6103eb366004611a9d565b6107d0565b3480156103fc57600080fd5b5061025f61040b366004611a79565b6001600160a01b03166000908152600c602052604090205460ff1690565b34801561043557600080fd5b50610280610444366004611a79565b6001600160a01b031660009081526020819052604090205490565b34801561046b57600080fd5b5061033f61047a366004611adb565b610803565b34801561048b57600080fd5b5061033f610891565b3480156104a057600080fd5b5061033f6108a5565b3480156104b557600080fd5b506006546104c9906001600160a01b031681565b6040516001600160a01b039091168152602001610236565b3480156104ed57600080fd5b5061033f6104fc3660046119f3565b6108e2565b34801561050d57600080fd5b5061033f6108fb565b34801561052257600080fd5b506104c97f000000000000000000000000c037a25cf27a489fa5782dd22b8a73ccba240f2281565b34801561055657600080fd5b506005546001600160a01b03166104c9565b34801561057457600080fd5b5061033f610583366004611a9d565b61093b565b34801561059457600080fd5b506104c9737a250d5630b4cf539739df2c5dacb4c659f2488d81565b3480156105bc57600080fd5b5061022961096e565b3480156105d157600080fd5b5061025f6105e03660046119f3565b61097d565b3480156105f157600080fd5b5061025f6106003660046119f3565b6109f8565b34801561061157600080fd5b5061033f610620366004611a79565b610a06565b34801561063157600080fd5b5061033f610640366004611a60565b610ac1565b34801561065157600080fd5b50610280600b5481565b34801561066757600080fd5b50610280610676366004611aff565b610c49565b34801561068757600080fd5b5061033f610696366004611adb565b610c74565b3480156106a757600080fd5b5061028060075481565b3480156106bd57600080fd5b5061033f6106cc366004611a79565b610cf2565b6060600380546106e090611b2d565b80601f016020809104026020016040519081016040528092919081815260200182805461070c90611b2d565b80156107595780601f1061072e57610100808354040283529160200191610759565b820191906000526020600020905b81548152906001019060200180831161073c57829003601f168201915b5050505050905090565b600033610771818585610d68565b60019150505b92915050565b60003361078b858285610e8d565b610796858585610f07565b506001949350505050565b6000336107718185856107b48383610c49565b6107be9190611b7d565b610d68565b6107cd33826113dc565b50565b6107d861150b565b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b61080b61150b565b6101908161ffff16111561083a5760405162461bcd60e51b815260040161083190611b90565b60405180910390fd5b6006805461ffff60a01b1916600160a01b61ffff8416908102919091179091556040519081527f36fa651f7bdbb8a6a7289ed4df5a6e3efb1fdcaef87c1f88dfd66b08d2007dc2906020015b60405180910390a150565b61089961150b565b6108a36000611565565b565b6108ad61150b565b600a805460ff191690556040517f7bfa7bacf025baa75e5308bf15bcf2948f406c7ebe3eb1a8bb611862b9d647ef90600090a1565b6108ed823383610e8d565b6108f782826113dc565b5050565b61090361150b565b600d805460ff191660011790556040517f799663458a5ef2936f7fa0c99b3336c69c25890f82974f04e811e5bb359186c790600090a1565b61094361150b565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b6060600480546106e090611b2d565b6000338161098b8286610c49565b9050838110156109eb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610831565b6107968286868403610d68565b600033610771818585610f07565b610a0e61150b565b6001600160a01b038116610a735760405162461bcd60e51b815260206004820152602660248201527f505550536f6e4554483a20616464726573732063616e6e6f742062652030206160448201526564647265737360d01b6064820152608401610831565b600680546001600160a01b0319166001600160a01b0383169081179091556040519081527fbf86feedee5b30c30a8243bd21deebb704d141478d39b1be04fe5ee739f214e790602001610886565b610ac961150b565b620186a0610ad660025490565b610ae09190611bd9565b811015610b6a5760405162461bcd60e51b815260206004820152604c60248201527f505550536f6e4554483a207377617020746f6b656e7320617420616d6f756e7460448201527f2063616e6e6f74206265206c6f776572207468616e20302e30303125206f662060648201526b746f74616c20737570706c7960a01b608482015260a401610831565b6103e8610b7660025490565b610b81906005611bfb565b610b8b9190611bd9565b811115610c145760405162461bcd60e51b815260206004820152604b60248201527f505550536f6e4554483a207377617020746f6b656e7320617420616d6f756e7460448201527f2063616e6e6f7420626520686967686572207468616e20302e3525206f66207460648201526a6f74616c20737570706c7960a81b608482015260a401610831565b60078190556040518181527f9efd5e66ee602c629f311865749d9af922866664ad3ff96bbfaf8035f5d24b2690602001610886565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610c7c61150b565b6101908161ffff161115610ca25760405162461bcd60e51b815260040161083190611b90565b6006805461ffff60b01b1916600160b01b61ffff8416908102919091179091556040519081527f625428ca3cfddf32cf909a4d7ae5a8b942d838319ae2a8055f271ad78033c2f690602001610886565b610cfa61150b565b6001600160a01b038116610d5f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610831565b6107cd81611565565b6001600160a01b038316610dca5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610831565b6001600160a01b038216610e2b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610831565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000610e998484610c49565b90506000198114610f015781811015610ef45760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610831565b610f018484848403610d68565b50505050565b60008111610f715760405162461bcd60e51b815260206004820152603160248201527f505550536f6e4554483a207472616e7366657220616d6f756e74206d75737420604482015270062652067726561746572207468616e203607c1b6064820152608401610831565b600d5460ff16611004576005546001600160a01b0384811691161480610fa457506005546001600160a01b038381169116145b6110045760405162461bcd60e51b815260206004820152602b60248201527f505550536f6e4554483a2074726164696e6720686173206e6f74206265656e2060448201526a195b98589b1959081e595d60aa1b6064820152608401610831565b600a5460ff1615611186576005546001600160a01b0384811691161480159061103b57506005546001600160a01b03838116911614155b801561104f57506001600160a01b03821615155b801561106657506001600160a01b03821661dead14155b8015611075575060085460ff16155b15611186577f000000000000000000000000c037a25cf27a489fa5782dd22b8a73ccba240f226001600160a01b0316836001600160a01b03161480156110d457506001600160a01b0382166000908152600c602052604090205460ff16155b1561112257600b546001600160a01b0383166000908152602081905260409020546110ff9083611b7d565b111561111d5760405162461bcd60e51b815260040161083190611c12565b611186565b6001600160a01b0382166000908152600c602052604090205460ff1661118657600b546001600160a01b0383166000908152602081905260409020546111689083611b7d565b11156111865760405162461bcd60e51b815260040161083190611c12565b600754306000908152602081905260409020541080159081906111ac575060085460ff16155b80156111ea57507f000000000000000000000000c037a25cf27a489fa5782dd22b8a73ccba240f226001600160a01b0316846001600160a01b031614155b801561120f57506001600160a01b03841660009081526009602052604090205460ff16155b801561123457506001600160a01b03831660009081526009602052604090205460ff16155b15611259576008805460ff1916600117905561124e6115b7565b6008805460ff191690555b6008546001600160a01b03851660009081526009602052604090205460ff918216159116806112a057506001600160a01b03841660009081526009602052604090205460ff165b156112a9575060005b600081156113c9577f000000000000000000000000c037a25cf27a489fa5782dd22b8a73ccba240f226001600160a01b0316866001600160a01b03161480156112fe5750600654600160a01b900461ffff1615155b15611330576006546103e89061131f90600160a01b900461ffff1686611bfb565b6113299190611bd9565b90506113ab565b7f000000000000000000000000c037a25cf27a489fa5782dd22b8a73ccba240f226001600160a01b0316856001600160a01b031614801561137d5750600654600160b01b900461ffff1615155b156113ab576006546103e89061139e90600160b01b900461ffff1686611bfb565b6113a89190611bd9565b90505b80156113c9576113bc8630836117eb565b6113c68185611c64565b93505b6113d48686866117eb565b505050505050565b6001600160a01b03821661143c5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610831565b6001600160a01b038216600090815260208190526040902054818110156114b05760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610831565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610e80565b505050565b6005546001600160a01b031633146108a35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610831565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b306000908152602081905260409020546007546115d5906014611bfb565b8111156115ed576007546115ea906014611bfb565b90505b604080516002808252606082018352600092602083019080368337019050509050308160008151811061162257611622611c77565b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611694573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116b89190611c8d565b816001815181106116cb576116cb611c77565b6001600160a01b039092166020928302919091019091015260405163791ac94760e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d9063791ac94790611723908590600090869030904290600401611caa565b600060405180830381600087803b15801561173d57600080fd5b505af192505050801561174e575060015b50478015611506576006546040516000916001600160a01b03169083908381818185875af1925050503d80600081146117a3576040519150601f19603f3d011682016040523d82523d6000602084013e6117a8565b606091505b505090508015610f01576040518481527f8959421a1320789a49eeec01a4750caf8a30733c3db14f000d84484df89300f99060200160405180910390a150505050565b6001600160a01b03831661184f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610831565b6001600160a01b0382166118b15760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610831565b6001600160a01b038316600090815260208190526040902054818110156119295760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610831565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610f01565b60006020808352835180602085015260005b818110156119bd578581018301518582016040015282016119a1565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146107cd57600080fd5b60008060408385031215611a0657600080fd5b8235611a11816119de565b946020939093013593505050565b600080600060608486031215611a3457600080fd5b8335611a3f816119de565b92506020840135611a4f816119de565b929592945050506040919091013590565b600060208284031215611a7257600080fd5b5035919050565b600060208284031215611a8b57600080fd5b8135611a96816119de565b9392505050565b60008060408385031215611ab057600080fd5b8235611abb816119de565b915060208301358015158114611ad057600080fd5b809150509250929050565b600060208284031215611aed57600080fd5b813561ffff81168114611a9657600080fd5b60008060408385031215611b1257600080fd5b8235611b1d816119de565b91506020830135611ad0816119de565b600181811c90821680611b4157607f821691505b602082108103611b6157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561077757610777611b67565b60208082526029908201527f505550536f6e4554483a206665652063616e6e6f742062652067726561746572604082015268207468616e2034302560b81b606082015260800190565b600082611bf657634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761077757610777611b67565b60208082526032908201527f505550536f6e4554483a2062616c616e636520776f756c6420657863656564206040820152716d61782077616c6c65742062616c616e636560701b606082015260800190565b8181038181111561077757610777611b67565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611c9f57600080fd5b8151611a96816119de565b600060a08201878352602087602085015260a0604085015281875180845260c08601915060208901935060005b81811015611cfc5784516001600160a01b031683529383019391830191600101611cd7565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212206273037ece943901dcb150145f71d8420682d8d696b14082980076a5107ea4d864736f6c63430008170033

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.