ETH Price: $3,316.48 (+1.69%)
 

Overview

Max Total Supply

1,000,000,000 ATAI

Holders

2,001

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.00000000000005679 ATAI

Value
$0.00
0x47a2cbde64e2d671d9cfde2bee8b68645b4e10f7
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:
ArtemisAI

Compiler Version
v0.8.28+commit.7893614a

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion
File 1 of 9 : ArtemisAI.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.28;

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

contract ArtemisAI is ERC20, Ownable {
    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;
    
    address public marketingWallet;
    address public devWallet;
    address public buybackWallet;
    
    uint256 public maxTransactionAmount;
    uint256 public maxWallet;
    uint256 public swapTokensAtAmount;
    
    bool private swapping;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedFromLimits;

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress);
    event SwapAndDistributeTaxes(uint256 tokensSwapped, uint256 ethReceived, uint256 devPortion, uint256 marketingPortion, uint256 buybackPortion);
    event TaxesUpdated(uint256 buyDevTax, uint256 buyMarketingTax, uint256 buyBuybackTax, uint256 sellDevTax, uint256 sellMarketingTax, uint256 sellBuybackTax);
    event ManualSwap(uint256 tokensSwapped, uint256 ethReceived, uint256 devPortion, uint256 marketingPortion, uint256 buybackPortion);
    event LimitsRemoved();
    event MarketingWalletUpdated(address indexed newWallet);
    event DevWalletUpdated(address indexed newWallet);
    event BuybackWalletUpdated(address indexed newWallet);
    event MaxTransactionAmountUpdated(uint256 newAmount);
    event MaxWalletUpdated(uint256 newAmount);
    event SwapTokensAtAmountUpdated(uint256 newAmount);
    event ExcludedFromLimits(address indexed account, bool isExcluded);
    
    uint256 public buyDevTax;
    uint256 public buyMarketingTax;
    uint256 public buyBuybackTax;
    uint256 public sellDevTax;
    uint256 public sellMarketingTax;
    uint256 public sellBuybackTax;

    constructor() ERC20("Artemis AI", "ATAI") {
        uint256 totalSupply = 1000000000 * 10**decimals();
        
        marketingWallet = 0xd7AaE624c4621f7CE95f64aBf6cb59fCbF6A55ac;
        devWallet = 0x57a43DCD1E4455fb75E9278A0922Ddc93Fd7ebC3;
        buybackWallet = 0x166D8fF67CD60679d0e89DAD19a191553Bf0c06f;
        
        maxTransactionAmount = totalSupply * 1 / 100; 
        maxWallet = totalSupply * 2 / 100;            
        swapTokensAtAmount = 1000000 * 10**decimals();
        
        buyDevTax = 2;
        buyMarketingTax = 2;
        buyBuybackTax = 1;
        sellDevTax = 2;
        sellMarketingTax = 2;
        sellBuybackTax = 1;

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;

        _approve(address(this), address(uniswapV2Router), type(uint256).max);

        _isExcludedFromFees[owner()] = true;
        _isExcludedFromFees[address(this)] = true;
        _isExcludedFromFees[marketingWallet] = true;
        _isExcludedFromFees[devWallet] = true;
        _isExcludedFromFees[buybackWallet] = true;

        _isExcludedFromLimits[owner()] = true;
        _isExcludedFromLimits[address(this)] = true;
        _isExcludedFromLimits[marketingWallet] = true;
        _isExcludedFromLimits[devWallet] = true;
        _isExcludedFromLimits[buybackWallet] = true;
        _isExcludedFromLimits[_uniswapV2Pair] = true; 

        _mint(owner(), totalSupply);
    }

    receive() external payable {}

    function updateUniswapV2Pair(address newPair) external onlyOwner {
        require(newPair != address(0), "Pair address cannot be zero");
        uniswapV2Pair = newPair;
        _isExcludedFromLimits[newPair] = true;

        emit SetAutomatedMarketMakerPair(newPair, true);
    }

    function setMarketingWallet(address _marketingWallet) external onlyOwner {
        require(_marketingWallet != address(0), "Marketing wallet cannot be zero address");
        marketingWallet = _marketingWallet;
        emit MarketingWalletUpdated(_marketingWallet);
    }

    function setDevWallet(address _devWallet) external onlyOwner {
        require(_devWallet != address(0), "Dev wallet cannot be zero address");
        devWallet = _devWallet;
        emit DevWalletUpdated(_devWallet);
    }

    function setBuybackWallet(address _buybackWallet) external onlyOwner {
        require(_buybackWallet != address(0), "Buyback wallet cannot be zero address");
        buybackWallet = _buybackWallet;
        emit BuybackWalletUpdated(_buybackWallet);
    }

    function setOwnerWallet(address _newOwner) external onlyOwner {
        transferOwnership(_newOwner);
    }

    function setTaxes(
        uint256 _buyDevTax,
        uint256 _buyMarketingTax,
        uint256 _buyBuybackTax,
        uint256 _sellDevTax,
        uint256 _sellMarketingTax,
        uint256 _sellBuybackTax
    ) external onlyOwner {
        require(_buyDevTax + _buyMarketingTax + _buyBuybackTax <= 50, "Buy taxes cannot exceed 50%");
        require(_sellDevTax + _sellMarketingTax + _sellBuybackTax <= 50, "Sell taxes cannot exceed 50%");

        buyDevTax = _buyDevTax;
        buyMarketingTax = _buyMarketingTax;
        buyBuybackTax = _buyBuybackTax;
        sellDevTax = _sellDevTax;
        sellMarketingTax = _sellMarketingTax;
        sellBuybackTax = _sellBuybackTax;

        emit TaxesUpdated(
            _buyDevTax, 
            _buyMarketingTax, 
            _buyBuybackTax, 
            _sellDevTax, 
            _sellMarketingTax, 
            _sellBuybackTax
        );
    }

    function setMaxTransactionAmount(uint256 _maxTxAmount) external onlyOwner {
        maxTransactionAmount = _maxTxAmount;
        emit MaxTransactionAmountUpdated(_maxTxAmount);
    }

    function setMaxWallet(uint256 _maxWallet) external onlyOwner {
        maxWallet = _maxWallet;
        emit MaxWalletUpdated(_maxWallet);
    }

    function removeMaxTransactionLimit() external onlyOwner {
        maxTransactionAmount = totalSupply();
        emit MaxTransactionAmountUpdated(totalSupply());
    }

    function removeMaxWalletLimit() external onlyOwner {
        maxWallet = totalSupply();
        emit MaxWalletUpdated(totalSupply());
    }

    function removeLimits() external onlyOwner {
        maxTransactionAmount = totalSupply();
        maxWallet = totalSupply();
        emit LimitsRemoved();
    }

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

    function includeInFees(address account) external onlyOwner {
        _isExcludedFromFees[account] = false;
    }

    function setSwapTokensAtAmount(uint256 _swapTokensAtAmount) external onlyOwner {
        swapTokensAtAmount = _swapTokensAtAmount;
        emit SwapTokensAtAmountUpdated(_swapTokensAtAmount);
    }

    function excludeFromLimits(address account, bool excluded) external onlyOwner {
        _isExcludedFromLimits[account] = excluded;
        emit ExcludedFromLimits(account, excluded);
    }

    function manualSwap() external onlyOwner {
        uint256 contractTokenBalance = balanceOf(address(this));
        require(contractTokenBalance > 0, "No tokens to swap");
        this.swapAndDistributeTaxes(contractTokenBalance);
    }

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

        if (amount == 0) {
            super._transfer(sender, recipient, 0);
            return;
        }

        if (!_isExcludedFromLimits[sender] && !_isExcludedFromLimits[recipient]) {
            require(amount <= maxTransactionAmount, "Transfer amount exceeds the maxTxAmount.");
        }

        uint256 contractTokenBalance = balanceOf(address(this)); 
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            !swapping &&
            sender != uniswapV2Pair &&  
            !_isExcludedFromFees[sender] &&
            !_isExcludedFromFees[recipient]
        ) {
            try this.swapAndDistributeTaxes(swapTokensAtAmount) {
            } catch {
            }
        }

        bool takeFee = !swapping;

        if (_isExcludedFromFees[sender] || _isExcludedFromFees[recipient]) {
            takeFee = false;
        }

        uint256 fees = 0;
        if (takeFee) {
            if (sender == uniswapV2Pair) {
                fees = amount * (buyDevTax + buyMarketingTax + buyBuybackTax) / 100;
            } else if (recipient == uniswapV2Pair) {
                fees = amount * (sellDevTax + sellMarketingTax + sellBuybackTax) / 100;
            }
            if (fees > 0) {
                super._transfer(sender, address(this), fees);
                amount -= fees;
            }
        }

        super._transfer(sender, recipient, amount);

        if (!_isExcludedFromLimits[recipient]) {
            require(balanceOf(recipient) <= maxWallet, "Exceeds maximum wallet token amount");
        }
    }

    function swapAndDistributeTaxes(uint256 tokens) public {
        require(msg.sender == address(this), "Only contract can call");
        swapping = true;
        
        uint256 contractTokenBalance = balanceOf(address(this));
        uint256 tokensToSwap = contractTokenBalance >= tokens ? contractTokenBalance : tokens;
       
        uint256 initialBalance = address(this).balance;
        swapTokensForEth(tokensToSwap);
        uint256 newBalance = address(this).balance - initialBalance;

        uint256 totalTax = sellDevTax + sellMarketingTax + sellBuybackTax;
        if (totalTax == 0) {
            swapping = false;
            return;
        }

        uint256 devPortion = newBalance * sellDevTax / totalTax;
        uint256 marketingPortion = newBalance * sellMarketingTax / totalTax;
        uint256 buybackPortion = newBalance - devPortion - marketingPortion;

        payable(devWallet).transfer(devPortion);
        payable(marketingWallet).transfer(marketingPortion);
        payable(buybackWallet).transfer(buybackPortion);

        emit SwapAndDistributeTaxes(tokensToSwap, newBalance, devPortion, marketingPortion, buybackPortion);
        
        swapping = false;
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }
}

File 2 of 9 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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].
 *
 * 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;
            // 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 : 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 4 of 9 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

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

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

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

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

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

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

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

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

File 6 of 9 : 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 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 8 of 9 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

Settings
{
  "remappings": [
    "@openzeppelin/=lib/openzeppelin-contracts/",
    "@uniswap/v2-core/=lib/v2-core/",
    "@uniswap/v2-periphery/=lib/v2-periphery/",
    "@uniswap/v3-core/=lib/v3-core/",
    "@uniswap/v3-periphery/=lib/v3-periphery/",
    "ds-test/=lib/openzeppelin-contracts/lib/forge-std/lib/ds-test/src/",
    "forge-std/=lib/forge-std/src/",
    "openzeppelin-contracts/=lib/openzeppelin-contracts/",
    "v2-core/=lib/v2-core/contracts/",
    "v2-periphery/=lib/v2-periphery/contracts/",
    "v3-core/=lib/v3-core/",
    "v3-periphery/=lib/v3-periphery/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":true,"internalType":"address","name":"newWallet","type":"address"}],"name":"BuybackWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludedFromLimits","type":"event"},{"anonymous":false,"inputs":[],"name":"LimitsRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"devPortion","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"marketingPortion","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buybackPortion","type":"uint256"}],"name":"ManualSwap","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"}],"name":"MarketingWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"MaxTransactionAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"MaxWalletUpdated","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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"devPortion","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"marketingPortion","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buybackPortion","type":"uint256"}],"name":"SwapAndDistributeTaxes","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"SwapTokensAtAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"buyDevTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyMarketingTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyBuybackTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellDevTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellMarketingTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellBuybackTax","type":"uint256"}],"name":"TaxesUpdated","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyBuybackTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buybackWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeMaxTransactionLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeMaxWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellBuybackTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_buybackWallet","type":"address"}],"name":"setBuybackWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_devWallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"setMaxTransactionAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWallet","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"}],"name":"setOwnerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_swapTokensAtAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyDevTax","type":"uint256"},{"internalType":"uint256","name":"_buyMarketingTax","type":"uint256"},{"internalType":"uint256","name":"_buyBuybackTax","type":"uint256"},{"internalType":"uint256","name":"_sellDevTax","type":"uint256"},{"internalType":"uint256","name":"_sellMarketingTax","type":"uint256"},{"internalType":"uint256","name":"_sellBuybackTax","type":"uint256"}],"name":"setTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"swapAndDistributeTaxes","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":[{"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":"address","name":"newPair","type":"address"}],"name":"updateUniswapV2Pair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405234801561001057600080fd5b506040518060400160405280600a815260200169417274656d697320414960b01b815250604051806040016040528060048152602001634154414960e01b8152508160039081610060919061074e565b50600461006d828261074e565b50505061008661008161046d60201b60201c565b610471565b60006100946012600a61090b565b6100a290633b9aca00610921565b600880546001600160a01b031990811673d7aae624c4621f7ce95f64abf6cb59fcbf6a55ac179091556009805482167357a43dcd1e4455fb75e9278a0922ddc93fd7ebc3179055600a805490911673166d8ff67cd60679d0e89dad19a191553bf0c06f17905590506064610117826001610921565b6101219190610938565b600b556064610131826002610921565b61013b9190610938565b600c5561014a6012600a61090b565b61015790620f4240610921565b600d556002601181905560128190556001601381905560148290556015919091556016556040805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d91600091839163c45a01559160048083019260209291908290030181865afa1580156101d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101f4919061095a565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610241573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610265919061095a565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156102b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102d6919061095a565b600680546001600160a01b038086166001600160a01b0319928316811790935560078054918516919092161790559091506103159030906000196104c3565b6001600f600061032d6005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152600f909352818320805485166001908117909155600854821684528284208054861682179055600954821684528284208054861682179055600a549091168352908220805490931681179092556010906103c06005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790553081526010909352818320805485166001908117909155600854821684528284208054861682179055600954821684528284208054861682179055600a5482168452828420805486168217905590851683529120805490921617905561046561045f6005546001600160a01b031690565b846105ec565b505050610996565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831661052a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b6001600160a01b03821661058b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610521565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0382166106425760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610521565b80600260008282546106549190610983565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806106da57607f821691505b6020821081036106fa57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156106ab57806000526020600020601f840160051c810160208510156107275750805b601f840160051c820191505b818110156107475760008155600101610733565b5050505050565b81516001600160401b03811115610767576107676106b0565b61077b8161077584546106c6565b84610700565b6020601f8211600181146107af57600083156107975750848201515b600019600385901b1c1916600184901b178455610747565b600084815260208120601f198516915b828110156107df57878501518255602094850194600190920191016107bf565b50848210156107fd5786840151600019600387901b60f8161c191681555b50505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b6001815b600184111561085d578085048111156108415761084161080c565b600184161561084f57908102905b60019390931c928002610826565b935093915050565b60008261087457506001610905565b8161088157506000610905565b816001811461089757600281146108a1576108bd565b6001915050610905565b60ff8411156108b2576108b261080c565b50506001821b610905565b5060208310610133831016604e8410600b84101617156108e0575081810a610905565b6108ed6000198484610822565b80600019048211156109015761090161080c565b0290505b92915050565b600061091a60ff841683610865565b9392505050565b80820281158282048414176109055761090561080c565b60008261095557634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561096c57600080fd5b81516001600160a01b038116811461091a57600080fd5b808201808211156109055761090561080c565b611fee806109a56000396000f3fe6080604052600436106102765760003560e01c8063751039fc1161014f578063bb542ef0116100c1578063deab8aea1161007a578063deab8aea14610732578063e2f4560514610752578063e96db1ef14610768578063f2fde38b1461077e578063f8b45b051461079e578063fec432f9146107b457600080fd5b8063bb542ef014610686578063be691883146106a6578063c0246668146106bc578063c0a904a2146106dc578063c8c8ebe4146106fc578063dd62ed3e1461071257600080fd5b806395d89b411161011357806395d89b41146105e657806398e3bc36146105fb578063a457c2d714610610578063a9059cbb14610630578063af8f26e714610650578063afa4f3b21461066657600080fd5b8063751039fc1461055357806375f0a874146105685780638da5cb5b146105885780638ea5220f146105a657806391c1004a146105c657600080fd5b8063313ce567116101e85780635bba96b4116101ac5780635bba96b41461049d5780635d0044ca146104b35780635d098b38146104d35780635d8d3526146104f357806370a0823114610508578063715018a61461053e57600080fd5b8063313ce567146104165780633301241114610432578063395093511461044857806349bd5a5e1461046857806351bc3c851461048857600080fd5b806316a2f82a1161023a57806316a2f82a1461035757806318160ddd146103775780631d0adc07146103965780631e293c10146103b65780631f53ac02146103d657806323b872dd146103f657600080fd5b806304d4c9901461028257806306fdde03146102a4578063095ea7b3146102cf5780631400e636146102ff5780631694505e1461031f57600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b506102a261029d366004611c20565b6107ca565b005b3480156102b057600080fd5b506102b961091d565b6040516102c69190611c63565b60405180910390f35b3480156102db57600080fd5b506102ef6102ea366004611cc6565b6109af565b60405190151581526020016102c6565b34801561030b57600080fd5b506102a261031a366004611cf2565b6109c9565b34801561032b57600080fd5b5060065461033f906001600160a01b031681565b6040516001600160a01b0390911681526020016102c6565b34801561036357600080fd5b506102a2610372366004611d0b565b610bfe565b34801561038357600080fd5b506002545b6040519081526020016102c6565b3480156103a257600080fd5b506102a26103b1366004611d0b565b610c27565b3480156103c257600080fd5b506102a26103d1366004611cf2565b610cdd565b3480156103e257600080fd5b506102a26103f1366004611d0b565b610d21565b34801561040257600080fd5b506102ef610411366004611d2f565b610dd3565b34801561042257600080fd5b50604051601281526020016102c6565b34801561043e57600080fd5b5061038860125481565b34801561045457600080fd5b506102ef610463366004611cc6565b610df7565b34801561047457600080fd5b5060075461033f906001600160a01b031681565b34801561049457600080fd5b506102a2610e19565b3480156104a957600080fd5b5061038860165481565b3480156104bf57600080fd5b506102a26104ce366004611cf2565b610ec6565b3480156104df57600080fd5b506102a26104ee366004611d0b565b610f03565b3480156104ff57600080fd5b506102a2610fbb565b34801561051457600080fd5b50610388610523366004611d0b565b6001600160a01b031660009081526020819052604090205490565b34801561054a57600080fd5b506102a2611006565b34801561055f57600080fd5b506102a261101a565b34801561057457600080fd5b5060085461033f906001600160a01b031681565b34801561059457600080fd5b506005546001600160a01b031661033f565b3480156105b257600080fd5b5060095461033f906001600160a01b031681565b3480156105d257600080fd5b506102a26105e1366004611d0b565b611059565b3480156105f257600080fd5b506102b961111d565b34801561060757600080fd5b506102a261112c565b34801561061c57600080fd5b506102ef61062b366004611cc6565b611164565b34801561063c57600080fd5b506102ef61064b366004611cc6565b6111df565b34801561065c57600080fd5b5061038860115481565b34801561067257600080fd5b506102a2610681366004611cf2565b6111ed565b34801561069257600080fd5b506102a26106a1366004611d0b565b61122a565b3480156106b257600080fd5b5061038860145481565b3480156106c857600080fd5b506102a26106d7366004611d70565b61123e565b3480156106e857600080fd5b506102a26106f7366004611d70565b6112a6565b34801561070857600080fd5b50610388600b5481565b34801561071e57600080fd5b5061038861072d366004611dae565b611306565b34801561073e57600080fd5b50600a5461033f906001600160a01b031681565b34801561075e57600080fd5b50610388600d5481565b34801561077457600080fd5b5061038860155481565b34801561078a57600080fd5b506102a2610799366004611d0b565b611331565b3480156107aa57600080fd5b50610388600c5481565b3480156107c057600080fd5b5061038860135481565b6107d26113a7565b6032846107df8789611df2565b6107e99190611df2565b111561083c5760405162461bcd60e51b815260206004820152601b60248201527f4275792074617865732063616e6e6f742065786365656420353025000000000060448201526064015b60405180910390fd5b6032816108498486611df2565b6108539190611df2565b11156108a15760405162461bcd60e51b815260206004820152601c60248201527f53656c6c2074617865732063616e6e6f742065786365656420353025000000006044820152606401610833565b6011869055601285905560138490556014839055601582905560168190556040805187815260208101879052908101859052606081018490526080810183905260a081018290527ffac3c4deed3c6d7844a0d1af6733cf7bafc2548c45c3042fc834bfb5adca07de9060c00160405180910390a1505050505050565b60606003805461092c90611e05565b80601f016020809104026020016040519081016040528092919081815260200182805461095890611e05565b80156109a55780601f1061097a576101008083540402835291602001916109a5565b820191906000526020600020905b81548152906001019060200180831161098857829003601f168201915b5050505050905090565b6000336109bd818585611401565b60019150505b92915050565b333014610a115760405162461bcd60e51b815260206004820152601660248201527513db9b1e4818dbdb9d1c9858dd0818d85b8818d85b1b60521b6044820152606401610833565b600e805460ff19166001179055306000908152602081905260408120549050600082821015610a405782610a42565b815b905047610a4e82611525565b6000610a5a8247611e3f565b90506000601654601554601454610a719190611df2565b610a7b9190611df2565b905080600003610a97575050600e805460ff1916905550505050565b60008160145484610aa89190611e52565b610ab29190611e69565b905060008260155485610ac59190611e52565b610acf9190611e69565b9050600081610ade8487611e3f565b610ae89190611e3f565b6009546040519192506001600160a01b03169084156108fc029085906000818181858888f19350505050158015610b23573d6000803e3d6000fd5b506008546040516001600160a01b039091169083156108fc029084906000818181858888f19350505050158015610b5e573d6000803e3d6000fd5b50600a546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610b99573d6000803e3d6000fd5b50604080518881526020810187905290810184905260608101839052608081018290527ff7b47ab7dbe15e09daa61add9b4b5ae3e949887c58355416a2826e8d6305da7b9060a00160405180910390a15050600e805460ff1916905550505050505050565b610c066113a7565b6001600160a01b03166000908152600f60205260409020805460ff19169055565b610c2f6113a7565b6001600160a01b038116610c935760405162461bcd60e51b815260206004820152602560248201527f4275796261636b2077616c6c65742063616e6e6f74206265207a65726f206164604482015264647265737360d81b6064820152608401610833565b600a80546001600160a01b0319166001600160a01b0383169081179091556040517f2e5665e81af8928ff3f79e82650b68c9459cde711420effbff19b3ccee749f8190600090a250565b610ce56113a7565b600b8190556040518181527f7c1cb3702d8e1fa6d24b12dd90670ab69c6d66d58233103d37da8b07d6b850ac906020015b60405180910390a150565b610d296113a7565b6001600160a01b038116610d895760405162461bcd60e51b815260206004820152602160248201527f4465762077616c6c65742063616e6e6f74206265207a65726f206164647265736044820152607360f81b6064820152608401610833565b600980546001600160a01b0319166001600160a01b0383169081179091556040517f31bb1993faff4f8409d7baad771f861e093ef4ce2c92c6e0cb10b82d1c7324cb90600090a250565b600033610de185828561167f565b610dec8585856116f9565b506001949350505050565b6000336109bd818585610e0a8383611306565b610e149190611df2565b611401565b610e216113a7565b3060009081526020819052604090205480610e725760405162461bcd60e51b815260206004820152601160248201527004e6f20746f6b656e7320746f207377617607c1b6044820152606401610833565b604051630a00731b60e11b8152600481018290523090631400e63690602401600060405180830381600087803b158015610eab57600080fd5b505af1158015610ebf573d6000803e3d6000fd5b5050505050565b610ece6113a7565b600c8190556040518181527f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace90602001610d16565b610f0b6113a7565b6001600160a01b038116610f715760405162461bcd60e51b815260206004820152602760248201527f4d61726b6574696e672077616c6c65742063616e6e6f74206265207a65726f206044820152666164647265737360c81b6064820152608401610833565b600880546001600160a01b0319166001600160a01b0383169081179091556040517fbf86feedee5b30c30a8243bd21deebb704d141478d39b1be04fe5ee739f214e790600090a250565b610fc36113a7565b600254600b557f7c1cb3702d8e1fa6d24b12dd90670ab69c6d66d58233103d37da8b07d6b850ac610ff360025490565b60405190815260200160405180910390a1565b61100e6113a7565b6110186000611aa4565b565b6110226113a7565b600254600b55600254600c556040517f7bfa7bacf025baa75e5308bf15bcf2948f406c7ebe3eb1a8bb611862b9d647ef90600090a1565b6110616113a7565b6001600160a01b0381166110b75760405162461bcd60e51b815260206004820152601b60248201527f5061697220616464726573732063616e6e6f74206265207a65726f00000000006044820152606401610833565b600780546001600160a01b0319166001600160a01b038316908117909155600081815260106020526040808220805460ff1916600190811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a350565b60606004805461092c90611e05565b6111346113a7565b600254600c557f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace610ff360025490565b600033816111728286611306565b9050838110156111d25760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610833565b610dec8286868403611401565b6000336109bd8185856116f9565b6111f56113a7565b600d8190556040518181527f7c26bfee26f82e8cb57af48f4019cc64582db6fac7bad778433f10572ae8b14590602001610d16565b6112326113a7565b61123b81611331565b50565b6112466113a7565b6001600160a01b0382166000818152600f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b6112ae6113a7565b6001600160a01b038216600081815260106020908152604091829020805460ff191685151590811790915591519182527f74392251b09500cc108c71712e5e7e0392be9075a74a24f1494551cfa8e06870910161129a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6113396113a7565b6001600160a01b03811661139e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610833565b61123b81611aa4565b6005546001600160a01b031633146110185760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610833565b6001600160a01b0383166114635760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610833565b6001600160a01b0382166114c45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610833565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061155a5761155a611e8b565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156115b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115d79190611ea1565b816001815181106115ea576115ea611e8b565b6001600160a01b0392831660209182029290920101526006546116109130911684611401565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790611649908590600090869030904290600401611ebe565b600060405180830381600087803b15801561166357600080fd5b505af1158015611677573d6000803e3d6000fd5b505050505050565b600061168b8484611306565b905060001981146116f357818110156116e65760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610833565b6116f38484848403611401565b50505050565b6001600160a01b03831661171f5760405162461bcd60e51b815260040161083390611f30565b6001600160a01b0382166117455760405162461bcd60e51b815260040161083390611f75565b8060000361175e5761175983836000611af6565b505050565b6001600160a01b03831660009081526010602052604090205460ff161580156117a057506001600160a01b03821660009081526010602052604090205460ff16155b1561180857600b548111156118085760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610833565b30600090815260208190526040902054600d548110801590819061182f5750600e5460ff16155b801561184957506007546001600160a01b03868116911614155b801561186e57506001600160a01b0385166000908152600f602052604090205460ff16155b801561189357506001600160a01b0384166000908152600f602052604090205460ff16155b156118e857600d54604051630a00731b60e11b815260048101919091523090631400e63690602401600060405180830381600087803b1580156118d557600080fd5b505af19250505080156118e6575060015b505b600e546001600160a01b0386166000908152600f602052604090205460ff9182161591168061192f57506001600160a01b0385166000908152600f602052604090205460ff165b15611938575060005b600081156119fa576007546001600160a01b039081169088160361199057606460135460125460115461196b9190611df2565b6119759190611df2565b61197f9087611e52565b6119899190611e69565b90506119dc565b6007546001600160a01b03908116908716036119dc5760646016546015546014546119bb9190611df2565b6119c59190611df2565b6119cf9087611e52565b6119d99190611e69565b90505b80156119fa576119ed873083611af6565b6119f78186611e3f565b94505b611a05878787611af6565b6001600160a01b03861660009081526010602052604090205460ff16611a9b57600c546001600160a01b0387166000908152602081905260409020541115611a9b5760405162461bcd60e51b815260206004820152602360248201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152621d5b9d60ea1b6064820152608401610833565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316611b1c5760405162461bcd60e51b815260040161083390611f30565b6001600160a01b038216611b425760405162461bcd60e51b815260040161083390611f75565b6001600160a01b03831660009081526020819052604090205481811015611bba5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610833565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36116f3565b60008060008060008060c08789031215611c3957600080fd5b505084359660208601359650604086013595606081013595506080810135945060a0013592509050565b602081526000825180602084015260005b81811015611c915760208186018101516040868401015201611c74565b506000604082850101526040601f19601f83011684010191505092915050565b6001600160a01b038116811461123b57600080fd5b60008060408385031215611cd957600080fd5b8235611ce481611cb1565b946020939093013593505050565b600060208284031215611d0457600080fd5b5035919050565b600060208284031215611d1d57600080fd5b8135611d2881611cb1565b9392505050565b600080600060608486031215611d4457600080fd5b8335611d4f81611cb1565b92506020840135611d5f81611cb1565b929592945050506040919091013590565b60008060408385031215611d8357600080fd5b8235611d8e81611cb1565b915060208301358015158114611da357600080fd5b809150509250929050565b60008060408385031215611dc157600080fd5b8235611dcc81611cb1565b91506020830135611da381611cb1565b634e487b7160e01b600052601160045260246000fd5b808201808211156109c3576109c3611ddc565b600181811c90821680611e1957607f821691505b602082108103611e3957634e487b7160e01b600052602260045260246000fd5b50919050565b818103818111156109c3576109c3611ddc565b80820281158282048414176109c3576109c3611ddc565b600082611e8657634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611eb357600080fd5b8151611d2881611cb1565b600060a0820187835286602084015260a0604084015280865180835260c08501915060208801925060005b81811015611f105783516001600160a01b0316835260209384019390920191600101611ee9565b50506001600160a01b039590951660608401525050608001529392505050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b60608201526080019056fea264697066735822122069ac76c46df16629064c626a93d845a55bcde9524a7a5842622c67381830d62964736f6c634300081c0033

Deployed Bytecode

0x6080604052600436106102765760003560e01c8063751039fc1161014f578063bb542ef0116100c1578063deab8aea1161007a578063deab8aea14610732578063e2f4560514610752578063e96db1ef14610768578063f2fde38b1461077e578063f8b45b051461079e578063fec432f9146107b457600080fd5b8063bb542ef014610686578063be691883146106a6578063c0246668146106bc578063c0a904a2146106dc578063c8c8ebe4146106fc578063dd62ed3e1461071257600080fd5b806395d89b411161011357806395d89b41146105e657806398e3bc36146105fb578063a457c2d714610610578063a9059cbb14610630578063af8f26e714610650578063afa4f3b21461066657600080fd5b8063751039fc1461055357806375f0a874146105685780638da5cb5b146105885780638ea5220f146105a657806391c1004a146105c657600080fd5b8063313ce567116101e85780635bba96b4116101ac5780635bba96b41461049d5780635d0044ca146104b35780635d098b38146104d35780635d8d3526146104f357806370a0823114610508578063715018a61461053e57600080fd5b8063313ce567146104165780633301241114610432578063395093511461044857806349bd5a5e1461046857806351bc3c851461048857600080fd5b806316a2f82a1161023a57806316a2f82a1461035757806318160ddd146103775780631d0adc07146103965780631e293c10146103b65780631f53ac02146103d657806323b872dd146103f657600080fd5b806304d4c9901461028257806306fdde03146102a4578063095ea7b3146102cf5780631400e636146102ff5780631694505e1461031f57600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b506102a261029d366004611c20565b6107ca565b005b3480156102b057600080fd5b506102b961091d565b6040516102c69190611c63565b60405180910390f35b3480156102db57600080fd5b506102ef6102ea366004611cc6565b6109af565b60405190151581526020016102c6565b34801561030b57600080fd5b506102a261031a366004611cf2565b6109c9565b34801561032b57600080fd5b5060065461033f906001600160a01b031681565b6040516001600160a01b0390911681526020016102c6565b34801561036357600080fd5b506102a2610372366004611d0b565b610bfe565b34801561038357600080fd5b506002545b6040519081526020016102c6565b3480156103a257600080fd5b506102a26103b1366004611d0b565b610c27565b3480156103c257600080fd5b506102a26103d1366004611cf2565b610cdd565b3480156103e257600080fd5b506102a26103f1366004611d0b565b610d21565b34801561040257600080fd5b506102ef610411366004611d2f565b610dd3565b34801561042257600080fd5b50604051601281526020016102c6565b34801561043e57600080fd5b5061038860125481565b34801561045457600080fd5b506102ef610463366004611cc6565b610df7565b34801561047457600080fd5b5060075461033f906001600160a01b031681565b34801561049457600080fd5b506102a2610e19565b3480156104a957600080fd5b5061038860165481565b3480156104bf57600080fd5b506102a26104ce366004611cf2565b610ec6565b3480156104df57600080fd5b506102a26104ee366004611d0b565b610f03565b3480156104ff57600080fd5b506102a2610fbb565b34801561051457600080fd5b50610388610523366004611d0b565b6001600160a01b031660009081526020819052604090205490565b34801561054a57600080fd5b506102a2611006565b34801561055f57600080fd5b506102a261101a565b34801561057457600080fd5b5060085461033f906001600160a01b031681565b34801561059457600080fd5b506005546001600160a01b031661033f565b3480156105b257600080fd5b5060095461033f906001600160a01b031681565b3480156105d257600080fd5b506102a26105e1366004611d0b565b611059565b3480156105f257600080fd5b506102b961111d565b34801561060757600080fd5b506102a261112c565b34801561061c57600080fd5b506102ef61062b366004611cc6565b611164565b34801561063c57600080fd5b506102ef61064b366004611cc6565b6111df565b34801561065c57600080fd5b5061038860115481565b34801561067257600080fd5b506102a2610681366004611cf2565b6111ed565b34801561069257600080fd5b506102a26106a1366004611d0b565b61122a565b3480156106b257600080fd5b5061038860145481565b3480156106c857600080fd5b506102a26106d7366004611d70565b61123e565b3480156106e857600080fd5b506102a26106f7366004611d70565b6112a6565b34801561070857600080fd5b50610388600b5481565b34801561071e57600080fd5b5061038861072d366004611dae565b611306565b34801561073e57600080fd5b50600a5461033f906001600160a01b031681565b34801561075e57600080fd5b50610388600d5481565b34801561077457600080fd5b5061038860155481565b34801561078a57600080fd5b506102a2610799366004611d0b565b611331565b3480156107aa57600080fd5b50610388600c5481565b3480156107c057600080fd5b5061038860135481565b6107d26113a7565b6032846107df8789611df2565b6107e99190611df2565b111561083c5760405162461bcd60e51b815260206004820152601b60248201527f4275792074617865732063616e6e6f742065786365656420353025000000000060448201526064015b60405180910390fd5b6032816108498486611df2565b6108539190611df2565b11156108a15760405162461bcd60e51b815260206004820152601c60248201527f53656c6c2074617865732063616e6e6f742065786365656420353025000000006044820152606401610833565b6011869055601285905560138490556014839055601582905560168190556040805187815260208101879052908101859052606081018490526080810183905260a081018290527ffac3c4deed3c6d7844a0d1af6733cf7bafc2548c45c3042fc834bfb5adca07de9060c00160405180910390a1505050505050565b60606003805461092c90611e05565b80601f016020809104026020016040519081016040528092919081815260200182805461095890611e05565b80156109a55780601f1061097a576101008083540402835291602001916109a5565b820191906000526020600020905b81548152906001019060200180831161098857829003601f168201915b5050505050905090565b6000336109bd818585611401565b60019150505b92915050565b333014610a115760405162461bcd60e51b815260206004820152601660248201527513db9b1e4818dbdb9d1c9858dd0818d85b8818d85b1b60521b6044820152606401610833565b600e805460ff19166001179055306000908152602081905260408120549050600082821015610a405782610a42565b815b905047610a4e82611525565b6000610a5a8247611e3f565b90506000601654601554601454610a719190611df2565b610a7b9190611df2565b905080600003610a97575050600e805460ff1916905550505050565b60008160145484610aa89190611e52565b610ab29190611e69565b905060008260155485610ac59190611e52565b610acf9190611e69565b9050600081610ade8487611e3f565b610ae89190611e3f565b6009546040519192506001600160a01b03169084156108fc029085906000818181858888f19350505050158015610b23573d6000803e3d6000fd5b506008546040516001600160a01b039091169083156108fc029084906000818181858888f19350505050158015610b5e573d6000803e3d6000fd5b50600a546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610b99573d6000803e3d6000fd5b50604080518881526020810187905290810184905260608101839052608081018290527ff7b47ab7dbe15e09daa61add9b4b5ae3e949887c58355416a2826e8d6305da7b9060a00160405180910390a15050600e805460ff1916905550505050505050565b610c066113a7565b6001600160a01b03166000908152600f60205260409020805460ff19169055565b610c2f6113a7565b6001600160a01b038116610c935760405162461bcd60e51b815260206004820152602560248201527f4275796261636b2077616c6c65742063616e6e6f74206265207a65726f206164604482015264647265737360d81b6064820152608401610833565b600a80546001600160a01b0319166001600160a01b0383169081179091556040517f2e5665e81af8928ff3f79e82650b68c9459cde711420effbff19b3ccee749f8190600090a250565b610ce56113a7565b600b8190556040518181527f7c1cb3702d8e1fa6d24b12dd90670ab69c6d66d58233103d37da8b07d6b850ac906020015b60405180910390a150565b610d296113a7565b6001600160a01b038116610d895760405162461bcd60e51b815260206004820152602160248201527f4465762077616c6c65742063616e6e6f74206265207a65726f206164647265736044820152607360f81b6064820152608401610833565b600980546001600160a01b0319166001600160a01b0383169081179091556040517f31bb1993faff4f8409d7baad771f861e093ef4ce2c92c6e0cb10b82d1c7324cb90600090a250565b600033610de185828561167f565b610dec8585856116f9565b506001949350505050565b6000336109bd818585610e0a8383611306565b610e149190611df2565b611401565b610e216113a7565b3060009081526020819052604090205480610e725760405162461bcd60e51b815260206004820152601160248201527004e6f20746f6b656e7320746f207377617607c1b6044820152606401610833565b604051630a00731b60e11b8152600481018290523090631400e63690602401600060405180830381600087803b158015610eab57600080fd5b505af1158015610ebf573d6000803e3d6000fd5b5050505050565b610ece6113a7565b600c8190556040518181527f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace90602001610d16565b610f0b6113a7565b6001600160a01b038116610f715760405162461bcd60e51b815260206004820152602760248201527f4d61726b6574696e672077616c6c65742063616e6e6f74206265207a65726f206044820152666164647265737360c81b6064820152608401610833565b600880546001600160a01b0319166001600160a01b0383169081179091556040517fbf86feedee5b30c30a8243bd21deebb704d141478d39b1be04fe5ee739f214e790600090a250565b610fc36113a7565b600254600b557f7c1cb3702d8e1fa6d24b12dd90670ab69c6d66d58233103d37da8b07d6b850ac610ff360025490565b60405190815260200160405180910390a1565b61100e6113a7565b6110186000611aa4565b565b6110226113a7565b600254600b55600254600c556040517f7bfa7bacf025baa75e5308bf15bcf2948f406c7ebe3eb1a8bb611862b9d647ef90600090a1565b6110616113a7565b6001600160a01b0381166110b75760405162461bcd60e51b815260206004820152601b60248201527f5061697220616464726573732063616e6e6f74206265207a65726f00000000006044820152606401610833565b600780546001600160a01b0319166001600160a01b038316908117909155600081815260106020526040808220805460ff1916600190811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a350565b60606004805461092c90611e05565b6111346113a7565b600254600c557f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace610ff360025490565b600033816111728286611306565b9050838110156111d25760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610833565b610dec8286868403611401565b6000336109bd8185856116f9565b6111f56113a7565b600d8190556040518181527f7c26bfee26f82e8cb57af48f4019cc64582db6fac7bad778433f10572ae8b14590602001610d16565b6112326113a7565b61123b81611331565b50565b6112466113a7565b6001600160a01b0382166000818152600f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b6112ae6113a7565b6001600160a01b038216600081815260106020908152604091829020805460ff191685151590811790915591519182527f74392251b09500cc108c71712e5e7e0392be9075a74a24f1494551cfa8e06870910161129a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6113396113a7565b6001600160a01b03811661139e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610833565b61123b81611aa4565b6005546001600160a01b031633146110185760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610833565b6001600160a01b0383166114635760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610833565b6001600160a01b0382166114c45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610833565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061155a5761155a611e8b565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156115b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115d79190611ea1565b816001815181106115ea576115ea611e8b565b6001600160a01b0392831660209182029290920101526006546116109130911684611401565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790611649908590600090869030904290600401611ebe565b600060405180830381600087803b15801561166357600080fd5b505af1158015611677573d6000803e3d6000fd5b505050505050565b600061168b8484611306565b905060001981146116f357818110156116e65760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610833565b6116f38484848403611401565b50505050565b6001600160a01b03831661171f5760405162461bcd60e51b815260040161083390611f30565b6001600160a01b0382166117455760405162461bcd60e51b815260040161083390611f75565b8060000361175e5761175983836000611af6565b505050565b6001600160a01b03831660009081526010602052604090205460ff161580156117a057506001600160a01b03821660009081526010602052604090205460ff16155b1561180857600b548111156118085760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610833565b30600090815260208190526040902054600d548110801590819061182f5750600e5460ff16155b801561184957506007546001600160a01b03868116911614155b801561186e57506001600160a01b0385166000908152600f602052604090205460ff16155b801561189357506001600160a01b0384166000908152600f602052604090205460ff16155b156118e857600d54604051630a00731b60e11b815260048101919091523090631400e63690602401600060405180830381600087803b1580156118d557600080fd5b505af19250505080156118e6575060015b505b600e546001600160a01b0386166000908152600f602052604090205460ff9182161591168061192f57506001600160a01b0385166000908152600f602052604090205460ff165b15611938575060005b600081156119fa576007546001600160a01b039081169088160361199057606460135460125460115461196b9190611df2565b6119759190611df2565b61197f9087611e52565b6119899190611e69565b90506119dc565b6007546001600160a01b03908116908716036119dc5760646016546015546014546119bb9190611df2565b6119c59190611df2565b6119cf9087611e52565b6119d99190611e69565b90505b80156119fa576119ed873083611af6565b6119f78186611e3f565b94505b611a05878787611af6565b6001600160a01b03861660009081526010602052604090205460ff16611a9b57600c546001600160a01b0387166000908152602081905260409020541115611a9b5760405162461bcd60e51b815260206004820152602360248201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152621d5b9d60ea1b6064820152608401610833565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316611b1c5760405162461bcd60e51b815260040161083390611f30565b6001600160a01b038216611b425760405162461bcd60e51b815260040161083390611f75565b6001600160a01b03831660009081526020819052604090205481811015611bba5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610833565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36116f3565b60008060008060008060c08789031215611c3957600080fd5b505084359660208601359650604086013595606081013595506080810135945060a0013592509050565b602081526000825180602084015260005b81811015611c915760208186018101516040868401015201611c74565b506000604082850101526040601f19601f83011684010191505092915050565b6001600160a01b038116811461123b57600080fd5b60008060408385031215611cd957600080fd5b8235611ce481611cb1565b946020939093013593505050565b600060208284031215611d0457600080fd5b5035919050565b600060208284031215611d1d57600080fd5b8135611d2881611cb1565b9392505050565b600080600060608486031215611d4457600080fd5b8335611d4f81611cb1565b92506020840135611d5f81611cb1565b929592945050506040919091013590565b60008060408385031215611d8357600080fd5b8235611d8e81611cb1565b915060208301358015158114611da357600080fd5b809150509250929050565b60008060408385031215611dc157600080fd5b8235611dcc81611cb1565b91506020830135611da381611cb1565b634e487b7160e01b600052601160045260246000fd5b808201808211156109c3576109c3611ddc565b600181811c90821680611e1957607f821691505b602082108103611e3957634e487b7160e01b600052602260045260246000fd5b50919050565b818103818111156109c3576109c3611ddc565b80820281158282048414176109c3576109c3611ddc565b600082611e8657634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611eb357600080fd5b8151611d2881611cb1565b600060a0820187835286602084015260a0604084015280865180835260c08501915060208801925060005b81811015611f105783516001600160a01b0316835260209384019390920191600101611ee9565b50506001600160a01b039590951660608401525050608001529392505050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b60608201526080019056fea264697066735822122069ac76c46df16629064c626a93d845a55bcde9524a7a5842622c67381830d62964736f6c634300081c0033

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.