ETH Price: $3,483.11 (+4.48%)

Token

Shifu The Master (SHIFU)
 

Overview

Max Total Supply

100,000,000,000 SHIFU

Holders

52

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.480512224052162587 SHIFU

Value
$0.00
0x68f281d8c273b22022756fe36e6fd3114a800556
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:
Shifu

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : Shifu.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.16;

/**

🆂🅷🅸🅵🆄 🆃🅷🅴 🅼🅰🆂🆃🅴🆁

https://shifuthemaster.com
https://twitter.com/shifuthemaster1
https://shifuthemaster.medium.com


Shifu awaits his new apprentices.

Through the coming days you will learn the craft and when ready - venture on a journey to defeat the darkness.

The best warriors will be invited to fight alongside Shifu.

Only the patient and dedicated students will be rewarded!

 */

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";

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

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

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

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

/* solhint-disable not-rely-on-time */
/* solhint-disable max-states-count */
/* solhint-disable reason-string */
contract Shifu is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    // solhint-disable-next-line var-name-mixedcase
    address public USDC = 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48;

    bool private swapping;

    address public devWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;

    uint256 public buyTotalFees;
    uint256 public buyDevFee;
    uint256 public buyLiquidityFee;

    uint256 public sellTotalFees;
    uint256 public sellDevFee;
    uint256 public sellLiquidityFee;

    // exlcude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event DevWalletUpdated(address indexed newWallet, address indexed oldWallet);

    constructor() ERC20("Shifu The Master", "SHIFU") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), USDC);
        excludeFromMaxTransaction(address(uniswapV2Pair), true);

        uint256 _buyDevFee = 3;
        uint256 _buyLiquidityFee = 2;

        uint256 _sellDevFee = 3;
        uint256 _sellLiquidityFee = 2;

        uint256 totalSupply = 100_000_000_000 * 1e18;

        maxTransactionAmount = totalSupply / 100; // 1% from total supply maxTransactionAmountTxn
        maxWallet = (totalSupply * 2) / 100; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap threshold

        buyDevFee = _buyDevFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyTotalFees = buyDevFee + buyLiquidityFee;

        sellDevFee = _sellDevFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTotalFees = sellDevFee + sellLiquidityFee;

        devWallet = address(0xDca2dBfD85A04925c8D380A5881e07f130372335); // set as dev wallet

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    // solhint-disable-next-line no-empty-blocks
    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) {
        require(newAmount >= totalSupply() / 100000, "Swap amount cannot be lower than 0.001% total supply.");
        require(newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply.");
        swapTokensAtAmount = newAmount;
        return true;
    }

    // newNum in tokens, not wei
    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(newNum * 1e18 >= totalSupply() / 1000, "Cannot set maxTransactionAmount lower than 0.1%");
        maxTransactionAmount = newNum * 1e18;
    }

    // newNum in tokens, not wei
    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(newNum * 1e18 >= (totalSupply() * 5) / 1000, "Cannot set maxWallet lower than 0.5%");
        maxWallet = newNum * 1e18;
    }

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

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateBuyFees(uint256 _devFee, uint256 _liquidityFee) external onlyOwner {
        buyDevFee = _devFee;
        buyLiquidityFee = _liquidityFee;
        buyTotalFees = buyDevFee + buyLiquidityFee;
        require(buyTotalFees <= 10, "Must keep fees at 10% or less");
    }

    function updateSellFees(uint256 _devFee, uint256 _liquidityFee) external onlyOwner {
        sellDevFee = _devFee;
        sellLiquidityFee = _liquidityFee;
        sellTotalFees = sellDevFee + sellLiquidityFee;
        require(sellTotalFees <= 10, "Must keep fees at 10% or less");
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function updateDevWallet(address newDevWallet) external onlyOwner {
        emit DevWalletUpdated(newDevWallet, devWallet);
        devWallet = newDevWallet;
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (limitsInEffect) {
            if (from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping) {
                if (!tradingActive) {
                    require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
                }

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            to == uniswapV2Pair &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        uint256 tokensForLiquidity = 0;
        uint256 tokensForDev = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (to == uniswapV2Pair && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity = (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev = (fees * sellDevFee) / sellTotalFees;
            }
            // on buy
            else if (from == uniswapV2Pair && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity = (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev = (fees * buyDevFee) / buyTotalFees;
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }
            if (tokensForLiquidity > 0) {
                super._transfer(address(this), uniswapV2Pair, tokensForLiquidity);
            }

            amount -= fees;
        }

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

    function swapTokensForUSDC(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = USDC;

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // make the swap
        uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of USDC
            path,
            devWallet,
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        if (contractBalance == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        swapTokensForUSDC(contractBalance);
    }
}

File 2 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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 anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

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

File 3 of 7 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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.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;
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev 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 4 of 7 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

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

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "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":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"DevWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"USDC","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","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":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"tradingActive","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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDevWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600680546001600160a01b03191673a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48179055600b805462ffffff191660011790553480156200004657600080fd5b506040518060400160405280601081526020016f29b434b33a902a34329026b0b9ba32b960811b81525060405180604001604052806005815260200164534849465560d81b81525081600390816200009f91906200061c565b506004620000ae82826200061c565b505050620000cb620000c56200033860201b60201c565b6200033c565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000ed8160016200038e565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000138573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200015e9190620006e8565b6006546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af1158015620001b0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d69190620006e8565b6001600160a01b031660a0819052620001f19060016200038e565b6003600281816c01431e0fae6d7217caa00000006200021260648262000730565b60085560646200022482600262000753565b62000230919062000730565b600a556127106200024382600562000753565b6200024f919062000730565b600955600d859055600e84905562000268848662000775565b600c556010839055601182905562000281828462000775565b600f55600780546001600160a01b03191673dca2dbfd85a04925c8d380a5881e07f130372335179055620002c9620002c16005546001600160a01b031690565b6001620003c3565b620002d6306001620003c3565b620002e561dead6001620003c3565b62000304620002fc6005546001600160a01b031690565b60016200038e565b620003113060016200038e565b6200032061dead60016200038e565b6200032c33826200042c565b50505050505062000791565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200039862000515565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b620003cd62000515565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620004885760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b80600260008282546200049c919062000775565b90915550506001600160a01b03821660009081526020819052604081208054839290620004cb90849062000775565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6005546001600160a01b03163314620005715760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200047f565b565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620005a357607f821691505b602082108103620005c457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200057357600081815260208120601f850160051c81016020861015620005f35750805b601f850160051c820191505b818110156200061457828155600101620005ff565b505050505050565b81516001600160401b0381111562000638576200063862000578565b62000650816200064984546200058e565b84620005ca565b602080601f8311600181146200068857600084156200066f5750858301515b600019600386901b1c1916600185901b17855562000614565b600085815260208120601f198616915b82811015620006b95788860151825594840194600190910190840162000698565b5085821015620006d85787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620006fb57600080fd5b81516001600160a01b03811681146200071357600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000826200074e57634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156200077057620007706200071a565b500290565b808201808211156200078b576200078b6200071a565b92915050565b60805160a051611e0f620007e8600039600081816104320152818161124c0152818161145d0152818161156d0152818161161601526116d001526000818161032b015281816119b301526119f20152611e0f6000f3fe6080604052600436106102605760003560e01c806389a3027111610144578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e1461073c578063e2f456051461075c578063f11a24d314610772578063f2fde38b14610788578063f6374342146107a8578063f8b45b05146107be57600080fd5b8063c0246668146106b0578063c18bc195146106d0578063c8c8ebe4146106f0578063d257b34f14610706578063d85ba0631461072657600080fd5b806395d89b411161010857806395d89b41146106105780639c3b4fdc14610625578063a0d82dc51461063b578063a457c2d714610651578063a9059cbb14610671578063bbc0c7421461069157600080fd5b806389a302711461057d5780638a8c523c1461059d5780638da5cb5b146105b25780638ea5220f146105d0578063924de9b7146105f057600080fd5b806339509351116101dd5780636a486a8e116101a15780636a486a8e146104c75780636ddd1713146104dd57806370a08231146104fd578063715018a614610533578063751039fc146105485780637571336a1461055d57600080fd5b8063395093511461040057806349bd5a5e146104205780634a62bb65146104545780634fbee1931461046e57806366ca9b83146104a757600080fd5b806318160ddd1161022457806318160ddd146103655780631816467f14610384578063203e727e146103a457806323b872dd146103c4578063313ce567146103e457600080fd5b806302dbd8f81461026c57806306fdde031461028e578063095ea7b3146102b957806310d5de53146102e95780631694505e1461031957600080fd5b3661026757005b600080fd5b34801561027857600080fd5b5061028c610287366004611a6a565b6107d4565b005b34801561029a57600080fd5b506102a361084e565b6040516102b09190611a8c565b60405180910390f35b3480156102c557600080fd5b506102d96102d4366004611af1565b6108e0565b60405190151581526020016102b0565b3480156102f557600080fd5b506102d9610304366004611b1b565b60136020526000908152604090205460ff1681565b34801561032557600080fd5b5061034d7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102b0565b34801561037157600080fd5b506002545b6040519081526020016102b0565b34801561039057600080fd5b5061028c61039f366004611b1b565b6108fa565b3480156103b057600080fd5b5061028c6103bf366004611b36565b61095f565b3480156103d057600080fd5b506102d96103df366004611b4f565b610a0d565b3480156103f057600080fd5b50604051601281526020016102b0565b34801561040c57600080fd5b506102d961041b366004611af1565b610a31565b34801561042c57600080fd5b5061034d7f000000000000000000000000000000000000000000000000000000000000000081565b34801561046057600080fd5b50600b546102d99060ff1681565b34801561047a57600080fd5b506102d9610489366004611b1b565b6001600160a01b031660009081526012602052604090205460ff1690565b3480156104b357600080fd5b5061028c6104c2366004611a6a565b610a53565b3480156104d357600080fd5b50610376600f5481565b3480156104e957600080fd5b50600b546102d99062010000900460ff1681565b34801561050957600080fd5b50610376610518366004611b1b565b6001600160a01b031660009081526020819052604090205490565b34801561053f57600080fd5b5061028c610ac4565b34801561055457600080fd5b506102d9610ad8565b34801561056957600080fd5b5061028c610578366004611b9b565b610af2565b34801561058957600080fd5b5060065461034d906001600160a01b031681565b3480156105a957600080fd5b5061028c610b25565b3480156105be57600080fd5b506005546001600160a01b031661034d565b3480156105dc57600080fd5b5060075461034d906001600160a01b031681565b3480156105fc57600080fd5b5061028c61060b366004611bce565b610b40565b34801561061c57600080fd5b506102a3610b64565b34801561063157600080fd5b50610376600d5481565b34801561064757600080fd5b5061037660105481565b34801561065d57600080fd5b506102d961066c366004611af1565b610b73565b34801561067d57600080fd5b506102d961068c366004611af1565b610bee565b34801561069d57600080fd5b50600b546102d990610100900460ff1681565b3480156106bc57600080fd5b5061028c6106cb366004611b9b565b610bfc565b3480156106dc57600080fd5b5061028c6106eb366004611b36565b610c63565b3480156106fc57600080fd5b5061037660085481565b34801561071257600080fd5b506102d9610721366004611b36565b610d10565b34801561073257600080fd5b50610376600c5481565b34801561074857600080fd5b50610376610757366004611be9565b610e39565b34801561076857600080fd5b5061037660095481565b34801561077e57600080fd5b50610376600e5481565b34801561079457600080fd5b5061028c6107a3366004611b1b565b610e64565b3480156107b457600080fd5b5061037660115481565b3480156107ca57600080fd5b50610376600a5481565b6107dc610edd565b601082905560118190556107f08183611c29565b600f819055600a101561084a5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c65737300000060448201526064015b60405180910390fd5b5050565b60606003805461085d90611c3c565b80601f016020809104026020016040519081016040528092919081815260200182805461088990611c3c565b80156108d65780601f106108ab576101008083540402835291602001916108d6565b820191906000526020600020905b8154815290600101906020018083116108b957829003601f168201915b5050505050905090565b6000336108ee818585610f37565b60019150505b92915050565b610902610edd565b6007546040516001600160a01b03918216918316907f0db17895a9d092fb3ca24d626f2150dd80c185b0706b36f1040ee239f56cb87190600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b610967610edd565b6103e861097360025490565b61097d9190611c76565b61098f82670de0b6b3a7640000611c98565b10156109f55760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610841565b610a0781670de0b6b3a7640000611c98565b60085550565b600033610a1b85828561105b565b610a268585856110d5565b506001949350505050565b6000336108ee818585610a448383610e39565b610a4e9190611c29565b610f37565b610a5b610edd565b600d829055600e819055610a6f8183611c29565b600c819055600a101561084a5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610841565b610acc610edd565b610ad66000611718565b565b6000610ae2610edd565b50600b805460ff19169055600190565b610afa610edd565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b610b2d610edd565b600b805462ffff00191662010100179055565b610b48610edd565b600b8054911515620100000262ff000019909216919091179055565b60606004805461085d90611c3c565b60003381610b818286610e39565b905083811015610be15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610841565b610a268286868403610f37565b6000336108ee8185856110d5565b610c04610edd565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610c6b610edd565b6103e8610c7760025490565b610c82906005611c98565b610c8c9190611c76565b610c9e82670de0b6b3a7640000611c98565b1015610cf85760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610841565b610d0a81670de0b6b3a7640000611c98565b600a5550565b6000610d1a610edd565b620186a0610d2760025490565b610d319190611c76565b821015610d9e5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610841565b6103e8610daa60025490565b610db5906005611c98565b610dbf9190611c76565b821115610e2b5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610841565b50600981905560015b919050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610e6c610edd565b6001600160a01b038116610ed15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610841565b610eda81611718565b50565b6005546001600160a01b03163314610ad65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610841565b6001600160a01b038316610f995760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610841565b6001600160a01b038216610ffa5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610841565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006110678484610e39565b905060001981146110cf57818110156110c25760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610841565b6110cf8484848403610f37565b50505050565b6001600160a01b0383166110fb5760405162461bcd60e51b815260040161084190611cb7565b6001600160a01b0382166111215760405162461bcd60e51b815260040161084190611cfc565b8060000361113a576111358383600061176a565b505050565b600b5460ff1615611412576005546001600160a01b0384811691161480159061117157506005546001600160a01b03838116911614155b801561118557506001600160a01b03821615155b801561119c57506001600160a01b03821661dead14155b80156111b25750600654600160a01b900460ff16155b1561141257600b54610100900460ff1661124a576001600160a01b03831660009081526012602052604090205460ff168061120557506001600160a01b03821660009081526012602052604090205460ff165b61124a5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610841565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161480156112a457506001600160a01b03821660009081526013602052604090205460ff16155b15611388576008548111156113195760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610841565b600a546001600160a01b03831660009081526020819052604090205461133f9083611c29565b11156113835760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610841565b611412565b6001600160a01b03821660009081526013602052604090205460ff1661141257600a546001600160a01b0383166000908152602081905260409020546113ce9083611c29565b11156114125760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610841565b306000908152602081905260409020546009548110801590819061143e5750600b5462010000900460ff165b80156114545750600654600160a01b900460ff16155b801561149157507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b80156114b657506001600160a01b03851660009081526012602052604090205460ff16155b80156114db57506001600160a01b03841660009081526012602052604090205460ff16155b15611509576006805460ff60a01b1916600160a01b1790556114fb6118be565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526012602052604090205460ff600160a01b90920482161591168061155757506001600160a01b03851660009081526012602052604090205460ff165b15611560575060005b60008060008315611702577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316886001600160a01b03161480156115ae57506000600f54115b15611614576115d360646115cd600f548a61190890919063ffffffff16565b9061191b565b9250600f54601154846115e69190611c98565b6115f09190611c76565b9150600f54601054846116039190611c98565b61160d9190611c76565b90506116b3565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316896001600160a01b031614801561165757506000600c54115b156116b35761167660646115cd600c548a61190890919063ffffffff16565b9250600c54600e54846116899190611c98565b6116939190611c76565b9150600c54600d54846116a69190611c98565b6116b09190611c76565b90505b82156116c4576116c489308561176a565b81156116f5576116f5307f00000000000000000000000000000000000000000000000000000000000000008461176a565b6116ff8388611d3f565b96505b61170d89898961176a565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166117905760405162461bcd60e51b815260040161084190611cb7565b6001600160a01b0382166117b65760405162461bcd60e51b815260040161084190611cfc565b6001600160a01b0383166000908152602081905260409020548181101561182e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610841565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611865908490611c29565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118b191815260200190565b60405180910390a36110cf565b30600090815260208190526040812054908190036118d95750565b6009546118e7906014611c98565b8111156118ff576009546118fc906014611c98565b90505b610eda81611927565b60006119148284611c98565b9392505050565b60006119148284611c76565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061195c5761195c611d52565b6001600160a01b03928316602091820292909201015260065482519116908290600190811061198d5761198d611d52565b60200260200101906001600160a01b031690816001600160a01b0316815250506119d8307f000000000000000000000000000000000000000000000000000000000000000084610f37565b600754604051635c11d79560e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811692635c11d79592611a34928792600092889291909116904290600401611d68565b600060405180830381600087803b158015611a4e57600080fd5b505af1158015611a62573d6000803e3d6000fd5b505050505050565b60008060408385031215611a7d57600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611ab957858101830151858201604001528201611a9d565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610e3457600080fd5b60008060408385031215611b0457600080fd5b611b0d83611ada565b946020939093013593505050565b600060208284031215611b2d57600080fd5b61191482611ada565b600060208284031215611b4857600080fd5b5035919050565b600080600060608486031215611b6457600080fd5b611b6d84611ada565b9250611b7b60208501611ada565b9150604084013590509250925092565b80358015158114610e3457600080fd5b60008060408385031215611bae57600080fd5b611bb783611ada565b9150611bc560208401611b8b565b90509250929050565b600060208284031215611be057600080fd5b61191482611b8b565b60008060408385031215611bfc57600080fd5b611c0583611ada565b9150611bc560208401611ada565b634e487b7160e01b600052601160045260246000fd5b808201808211156108f4576108f4611c13565b600181811c90821680611c5057607f821691505b602082108103611c7057634e487b7160e01b600052602260045260246000fd5b50919050565b600082611c9357634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615611cb257611cb2611c13565b500290565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156108f4576108f4611c13565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611db85784516001600160a01b031683529383019391830191600101611d93565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220573e4b6fe0554a5f9868f28109fb07860aab47febde00bfd86f0f19f44283eb264736f6c63430008100033

Deployed Bytecode

0x6080604052600436106102605760003560e01c806389a3027111610144578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e1461073c578063e2f456051461075c578063f11a24d314610772578063f2fde38b14610788578063f6374342146107a8578063f8b45b05146107be57600080fd5b8063c0246668146106b0578063c18bc195146106d0578063c8c8ebe4146106f0578063d257b34f14610706578063d85ba0631461072657600080fd5b806395d89b411161010857806395d89b41146106105780639c3b4fdc14610625578063a0d82dc51461063b578063a457c2d714610651578063a9059cbb14610671578063bbc0c7421461069157600080fd5b806389a302711461057d5780638a8c523c1461059d5780638da5cb5b146105b25780638ea5220f146105d0578063924de9b7146105f057600080fd5b806339509351116101dd5780636a486a8e116101a15780636a486a8e146104c75780636ddd1713146104dd57806370a08231146104fd578063715018a614610533578063751039fc146105485780637571336a1461055d57600080fd5b8063395093511461040057806349bd5a5e146104205780634a62bb65146104545780634fbee1931461046e57806366ca9b83146104a757600080fd5b806318160ddd1161022457806318160ddd146103655780631816467f14610384578063203e727e146103a457806323b872dd146103c4578063313ce567146103e457600080fd5b806302dbd8f81461026c57806306fdde031461028e578063095ea7b3146102b957806310d5de53146102e95780631694505e1461031957600080fd5b3661026757005b600080fd5b34801561027857600080fd5b5061028c610287366004611a6a565b6107d4565b005b34801561029a57600080fd5b506102a361084e565b6040516102b09190611a8c565b60405180910390f35b3480156102c557600080fd5b506102d96102d4366004611af1565b6108e0565b60405190151581526020016102b0565b3480156102f557600080fd5b506102d9610304366004611b1b565b60136020526000908152604090205460ff1681565b34801561032557600080fd5b5061034d7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102b0565b34801561037157600080fd5b506002545b6040519081526020016102b0565b34801561039057600080fd5b5061028c61039f366004611b1b565b6108fa565b3480156103b057600080fd5b5061028c6103bf366004611b36565b61095f565b3480156103d057600080fd5b506102d96103df366004611b4f565b610a0d565b3480156103f057600080fd5b50604051601281526020016102b0565b34801561040c57600080fd5b506102d961041b366004611af1565b610a31565b34801561042c57600080fd5b5061034d7f000000000000000000000000cae9bc81c36bf35fdae005c679761bff809a13dc81565b34801561046057600080fd5b50600b546102d99060ff1681565b34801561047a57600080fd5b506102d9610489366004611b1b565b6001600160a01b031660009081526012602052604090205460ff1690565b3480156104b357600080fd5b5061028c6104c2366004611a6a565b610a53565b3480156104d357600080fd5b50610376600f5481565b3480156104e957600080fd5b50600b546102d99062010000900460ff1681565b34801561050957600080fd5b50610376610518366004611b1b565b6001600160a01b031660009081526020819052604090205490565b34801561053f57600080fd5b5061028c610ac4565b34801561055457600080fd5b506102d9610ad8565b34801561056957600080fd5b5061028c610578366004611b9b565b610af2565b34801561058957600080fd5b5060065461034d906001600160a01b031681565b3480156105a957600080fd5b5061028c610b25565b3480156105be57600080fd5b506005546001600160a01b031661034d565b3480156105dc57600080fd5b5060075461034d906001600160a01b031681565b3480156105fc57600080fd5b5061028c61060b366004611bce565b610b40565b34801561061c57600080fd5b506102a3610b64565b34801561063157600080fd5b50610376600d5481565b34801561064757600080fd5b5061037660105481565b34801561065d57600080fd5b506102d961066c366004611af1565b610b73565b34801561067d57600080fd5b506102d961068c366004611af1565b610bee565b34801561069d57600080fd5b50600b546102d990610100900460ff1681565b3480156106bc57600080fd5b5061028c6106cb366004611b9b565b610bfc565b3480156106dc57600080fd5b5061028c6106eb366004611b36565b610c63565b3480156106fc57600080fd5b5061037660085481565b34801561071257600080fd5b506102d9610721366004611b36565b610d10565b34801561073257600080fd5b50610376600c5481565b34801561074857600080fd5b50610376610757366004611be9565b610e39565b34801561076857600080fd5b5061037660095481565b34801561077e57600080fd5b50610376600e5481565b34801561079457600080fd5b5061028c6107a3366004611b1b565b610e64565b3480156107b457600080fd5b5061037660115481565b3480156107ca57600080fd5b50610376600a5481565b6107dc610edd565b601082905560118190556107f08183611c29565b600f819055600a101561084a5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c65737300000060448201526064015b60405180910390fd5b5050565b60606003805461085d90611c3c565b80601f016020809104026020016040519081016040528092919081815260200182805461088990611c3c565b80156108d65780601f106108ab576101008083540402835291602001916108d6565b820191906000526020600020905b8154815290600101906020018083116108b957829003601f168201915b5050505050905090565b6000336108ee818585610f37565b60019150505b92915050565b610902610edd565b6007546040516001600160a01b03918216918316907f0db17895a9d092fb3ca24d626f2150dd80c185b0706b36f1040ee239f56cb87190600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b610967610edd565b6103e861097360025490565b61097d9190611c76565b61098f82670de0b6b3a7640000611c98565b10156109f55760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610841565b610a0781670de0b6b3a7640000611c98565b60085550565b600033610a1b85828561105b565b610a268585856110d5565b506001949350505050565b6000336108ee818585610a448383610e39565b610a4e9190611c29565b610f37565b610a5b610edd565b600d829055600e819055610a6f8183611c29565b600c819055600a101561084a5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610841565b610acc610edd565b610ad66000611718565b565b6000610ae2610edd565b50600b805460ff19169055600190565b610afa610edd565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b610b2d610edd565b600b805462ffff00191662010100179055565b610b48610edd565b600b8054911515620100000262ff000019909216919091179055565b60606004805461085d90611c3c565b60003381610b818286610e39565b905083811015610be15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610841565b610a268286868403610f37565b6000336108ee8185856110d5565b610c04610edd565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610c6b610edd565b6103e8610c7760025490565b610c82906005611c98565b610c8c9190611c76565b610c9e82670de0b6b3a7640000611c98565b1015610cf85760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610841565b610d0a81670de0b6b3a7640000611c98565b600a5550565b6000610d1a610edd565b620186a0610d2760025490565b610d319190611c76565b821015610d9e5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610841565b6103e8610daa60025490565b610db5906005611c98565b610dbf9190611c76565b821115610e2b5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610841565b50600981905560015b919050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610e6c610edd565b6001600160a01b038116610ed15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610841565b610eda81611718565b50565b6005546001600160a01b03163314610ad65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610841565b6001600160a01b038316610f995760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610841565b6001600160a01b038216610ffa5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610841565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006110678484610e39565b905060001981146110cf57818110156110c25760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610841565b6110cf8484848403610f37565b50505050565b6001600160a01b0383166110fb5760405162461bcd60e51b815260040161084190611cb7565b6001600160a01b0382166111215760405162461bcd60e51b815260040161084190611cfc565b8060000361113a576111358383600061176a565b505050565b600b5460ff1615611412576005546001600160a01b0384811691161480159061117157506005546001600160a01b03838116911614155b801561118557506001600160a01b03821615155b801561119c57506001600160a01b03821661dead14155b80156111b25750600654600160a01b900460ff16155b1561141257600b54610100900460ff1661124a576001600160a01b03831660009081526012602052604090205460ff168061120557506001600160a01b03821660009081526012602052604090205460ff165b61124a5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610841565b7f000000000000000000000000cae9bc81c36bf35fdae005c679761bff809a13dc6001600160a01b0316836001600160a01b03161480156112a457506001600160a01b03821660009081526013602052604090205460ff16155b15611388576008548111156113195760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610841565b600a546001600160a01b03831660009081526020819052604090205461133f9083611c29565b11156113835760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610841565b611412565b6001600160a01b03821660009081526013602052604090205460ff1661141257600a546001600160a01b0383166000908152602081905260409020546113ce9083611c29565b11156114125760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610841565b306000908152602081905260409020546009548110801590819061143e5750600b5462010000900460ff165b80156114545750600654600160a01b900460ff16155b801561149157507f000000000000000000000000cae9bc81c36bf35fdae005c679761bff809a13dc6001600160a01b0316846001600160a01b0316145b80156114b657506001600160a01b03851660009081526012602052604090205460ff16155b80156114db57506001600160a01b03841660009081526012602052604090205460ff16155b15611509576006805460ff60a01b1916600160a01b1790556114fb6118be565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526012602052604090205460ff600160a01b90920482161591168061155757506001600160a01b03851660009081526012602052604090205460ff165b15611560575060005b60008060008315611702577f000000000000000000000000cae9bc81c36bf35fdae005c679761bff809a13dc6001600160a01b0316886001600160a01b03161480156115ae57506000600f54115b15611614576115d360646115cd600f548a61190890919063ffffffff16565b9061191b565b9250600f54601154846115e69190611c98565b6115f09190611c76565b9150600f54601054846116039190611c98565b61160d9190611c76565b90506116b3565b7f000000000000000000000000cae9bc81c36bf35fdae005c679761bff809a13dc6001600160a01b0316896001600160a01b031614801561165757506000600c54115b156116b35761167660646115cd600c548a61190890919063ffffffff16565b9250600c54600e54846116899190611c98565b6116939190611c76565b9150600c54600d54846116a69190611c98565b6116b09190611c76565b90505b82156116c4576116c489308561176a565b81156116f5576116f5307f000000000000000000000000cae9bc81c36bf35fdae005c679761bff809a13dc8461176a565b6116ff8388611d3f565b96505b61170d89898961176a565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166117905760405162461bcd60e51b815260040161084190611cb7565b6001600160a01b0382166117b65760405162461bcd60e51b815260040161084190611cfc565b6001600160a01b0383166000908152602081905260409020548181101561182e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610841565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611865908490611c29565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118b191815260200190565b60405180910390a36110cf565b30600090815260208190526040812054908190036118d95750565b6009546118e7906014611c98565b8111156118ff576009546118fc906014611c98565b90505b610eda81611927565b60006119148284611c98565b9392505050565b60006119148284611c76565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061195c5761195c611d52565b6001600160a01b03928316602091820292909201015260065482519116908290600190811061198d5761198d611d52565b60200260200101906001600160a01b031690816001600160a01b0316815250506119d8307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610f37565b600754604051635c11d79560e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d811692635c11d79592611a34928792600092889291909116904290600401611d68565b600060405180830381600087803b158015611a4e57600080fd5b505af1158015611a62573d6000803e3d6000fd5b505050505050565b60008060408385031215611a7d57600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611ab957858101830151858201604001528201611a9d565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610e3457600080fd5b60008060408385031215611b0457600080fd5b611b0d83611ada565b946020939093013593505050565b600060208284031215611b2d57600080fd5b61191482611ada565b600060208284031215611b4857600080fd5b5035919050565b600080600060608486031215611b6457600080fd5b611b6d84611ada565b9250611b7b60208501611ada565b9150604084013590509250925092565b80358015158114610e3457600080fd5b60008060408385031215611bae57600080fd5b611bb783611ada565b9150611bc560208401611b8b565b90509250929050565b600060208284031215611be057600080fd5b61191482611b8b565b60008060408385031215611bfc57600080fd5b611c0583611ada565b9150611bc560208401611ada565b634e487b7160e01b600052601160045260246000fd5b808201808211156108f4576108f4611c13565b600181811c90821680611c5057607f821691505b602082108103611c7057634e487b7160e01b600052602260045260246000fd5b50919050565b600082611c9357634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615611cb257611cb2611c13565b500290565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156108f4576108f4611c13565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611db85784516001600160a01b031683529383019391830191600101611d93565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220573e4b6fe0554a5f9868f28109fb07860aab47febde00bfd86f0f19f44283eb264736f6c63430008100033

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.