ETH Price: $3,408.05 (+2.90%)

Token

Vee (VEE)
 

Overview

Max Total Supply

100,000,000 VEE

Holders

437

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
Vee

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion
File 1 of 11 : Vee.sol
// SPDX-License-Identifier: MIT
/*
 /$$    /$$ /$$$$$$$$ /$$$$$$$$
| $$   | $$| $$_____/| $$_____/
| $$   | $$| $$      | $$      
|  $$ / $$/| $$$$$   | $$$$$   
 \  $$ $$/ | $$__/   | $$__/   
  \  $$$/  | $$      | $$      
   \  $/   | $$$$$$$$| $$$$$$$$
    \_/    |________/|________/
                               
                               
The purpose-built Web3 GenAI engine for the privacy conscious individual or business.

Website: https://heyvee.io/
Telegram: https://t.me/veeoneth

*/
pragma solidity ^0.8.0;

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

contract Vee is ERC20, Ownable {
    using Address for address;

    IUniswapV2Router02 public immutable uniswapRouter;
    address public uniswapPair;

    address public protocolWallet;

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

    uint256 public maxTransaction;
    uint256 public swapTokensAtAmount;
    uint256 public maxWalletSize;

    uint256 public protocolBuyFee;
    uint256 public protocolSellFee;

    uint256 public tokensForProtocol;

    bool private swapping;

    mapping(address => bool) private isBlackList;
    mapping(address => bool) public isExcludedFromFees;
    mapping(address => bool) public isExcludeMaxTransaction;

    mapping(address => bool) public ammPairs;

    constructor() ERC20("Vee", "VEE") {
        uniswapRouter = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapPair = IUniswapV2Factory(uniswapRouter.factory()).createPair(address(this), uniswapRouter.WETH());
        
        protocolWallet = address(0x3C8f039603E90f18FB2A7fF75b37FDA3ACe2A08c);

        isExcludeMaxTransaction[address(uniswapRouter)] = true;
        isExcludeMaxTransaction[address(uniswapPair)] = true;
        isExcludeMaxTransaction[owner()] = true;
        isExcludeMaxTransaction[address(this)] = true;
        isExcludeMaxTransaction[protocolWallet] = true;
        isExcludeMaxTransaction[address(0xdead)] = true;

        isExcludedFromFees[owner()] = true;
        isExcludedFromFees[protocolWallet] = true;
        isExcludedFromFees[address(this)] = true;
        isExcludedFromFees[address(0xdead)] = true;

        ammPairs[address(uniswapPair)] = true;

        uint256 totalSupply = 100_000_000 * 1e18;
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet

        maxTransaction = 2_000_000 * 1e18; // 1.3% from total supply maxTransactionTxn
        maxWalletSize = 2_000_000 * 1e18; // 1.3% from total supply maxWalletSize

        protocolBuyFee = 5;
        protocolSellFee = 5;

        _mint(owner(), 100_000_000 * 1e18);  // Remaining in liq pool
    }

    receive() external payable {}

    // Tansfer eth to protocol
    function transferEth(uint256 amount) external onlyOwner {
        require(amount > 0, "Invalid amount of eth");
        require(amount <= address(this).balance, "Not enough eth");
        
        bool success;
    
        (success, ) = address(protocolWallet).call{value: amount}("");
    }

    function setProtocolWallet(address protocolWallet_) external onlyOwner {
        protocolWallet = protocolWallet_;
    }

    function openTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

    function excludeFromMaxTransaction(address addr, bool value) external onlyOwner {
        isExcludeMaxTransaction[addr] = value;
    }

    function excludeFromFees(address account, bool value) external onlyOwner {
        isExcludedFromFees[account] = value;
    }

    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateMaxWalletSize(uint256 newNum) external onlyOwner {
        require(newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxWalletSize lower than 0.5%");
        maxWalletSize = newNum * (10**18);
    }

    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) {
        require(newAmount >= (totalSupply() * 1) / 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;
    }

    function updateMaxTransaction(uint256 newNum) external onlyOwner {
        require(newNum >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set maxTransaction lower than 0.1%");
        maxTransaction = newNum * (10**18);
    }

    function updateBuyFee(uint256 newBuyFee) external onlyOwner {
        require(newBuyFee <= 25, "Must keep fees at 25% or less");
        protocolBuyFee = newBuyFee;
    }

    function updateSellFee(uint256 newSellFee) external onlyOwner {
        require(newSellFee <= 25, "Must keep fees at 25% or less");
        protocolSellFee = newSellFee;
    }

    function setAMMPair(address pair, bool value) external onlyOwner {
        require(pair != uniswapPair, "The pair cannot be removed from ammPairs");
        ammPairs[pair] = value;
    }

    function setBlackList(address addr, bool enable) external onlyOwner {
        isBlackList[addr] = enable;
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        bool success;

        if (contractBalance == 0) {
            return;
        }

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

        uint256 initialETHBalance = address(this).balance;
        swapTokensForEth(contractBalance);

        uint256 ethBalance = address(this).balance - initialETHBalance;

        tokensForProtocol = 0;

        (success, ) = address(protocolWallet).call{value: ethBalance}("");
    }

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

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

        // make the swap
        uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    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");
        require(!isBlackList[from], "[from] black list");
        require(!isBlackList[to], "[to] black list");

        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 (ammPairs[from] && !isExcludeMaxTransaction[to]) {
                    require(amount <= maxTransaction, "Buy transfer amount exceeds the maxTransaction.");
                    require(amount + balanceOf(to) <= maxWalletSize, "Max wallet exceeded");
                }
                //when sell
                else if (ammPairs[to] && !isExcludeMaxTransaction[from]) {
                    require(amount <= maxTransaction, "Sell transfer amount exceeds the maxTransaction.");
                }
                else if (!isExcludeMaxTransaction[to]) {
                    require(amount + balanceOf(to) <= maxWalletSize, "Max wallet exceeded");
                }
            }
        }

        uint256 contractBalance = balanceOf(address(this));
        bool canSwap = contractBalance >= swapTokensAtAmount;
        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !ammPairs[from] &&
            !isExcludedFromFees[from] &&
            !isExcludedFromFees[to]
        ) {

            swapping = true;
            swapBack();
            swapping = false;
        }

        bool takeFee = !swapping;
        if (isExcludedFromFees[from] || isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fee = 0;
        if (takeFee) {
            // on sell
            if (ammPairs[to] && protocolSellFee > 0) {
                fee = amount * protocolSellFee / 100;
                tokensForProtocol += fee;
            }
            // on buy
            else if (ammPairs[from] && protocolBuyFee > 0) {
                fee = amount * protocolBuyFee / 100;
                tokensForProtocol += fee;
            }

            if (fee > 0) {
                super._transfer(from, address(this), fee);
            }

            amount -= fee;
        }

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

    function min(uint256 a, uint256 b) private pure returns (uint256) {
        return (a > b) ? b : a;
    }
}

File 2 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 6 of 11 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 7 of 11 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

File 8 of 11 : 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 9 of 11 : IUniswapV2Pair.sol
pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

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

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

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

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

File 11 of 11 : 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;
}

Settings
{
  "evmVersion": "paris",
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"ammPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"value","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":"","type":"address"}],"name":"isExcludeMaxTransaction","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","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":"maxTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletSize","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":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"protocolBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"protocolSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"protocolWallet","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":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAMMPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"enable","type":"bool"}],"name":"setBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"protocolWallet_","type":"address"}],"name":"setProtocolWallet","outputs":[],"stateMutability":"nonpayable","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":"tokensForProtocol","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"amount","type":"uint256"}],"name":"transferEth","outputs":[],"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":"uniswapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBuyFee","type":"uint256"}],"name":"updateBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSellFee","type":"uint256"}],"name":"updateSellFee","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"}]

60a06040526000600760146101000a81548160ff0219169083151502179055506000600760156101000a81548160ff0219169083151502179055506001600760166101000a81548160ff0219169083151502179055503480156200006257600080fd5b506040518060400160405280600381526020017f56656500000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f56454500000000000000000000000000000000000000000000000000000000008152508160039081620000e0919062000d53565b508060049081620000f2919062000d53565b50505062000115620001096200086a60201b60201c565b6200087260201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505060805173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d1919062000ea4565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200023b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000261919062000ea4565b6040518363ffffffff1660e01b81526004016200028092919062000ee7565b6020604051808303816000875af1158015620002a0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002c6919062000ea4565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550733c8f039603e90f18fb2a7ff75b37fda3ace2a08c600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060016011600060805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160116000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160116000620004456200093860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160116000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016011600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160106000620005d86200093860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160106000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601060003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016010600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160126000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060006a52b7d2dcc80cd2e40000009050612710600582620007f1919062000f43565b620007fd919062000fbd565b6009819055506a01a784379d99db420000006008819055506a01a784379d99db42000000600a819055506005600b819055506005600c81905550620008636200084b6200093860201b60201c565b6a52b7d2dcc80cd2e40000006200096260201b60201c565b50620010e1565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620009d4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009cb9062001056565b60405180910390fd5b620009e86000838362000acf60201b60201c565b8060026000828254620009fc919062001078565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000aaf9190620010c4565b60405180910390a362000acb6000838362000ad460201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b5b57607f821691505b60208210810362000b715762000b7062000b13565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000bdb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b9c565b62000be7868362000b9c565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000c3462000c2e62000c288462000bff565b62000c09565b62000bff565b9050919050565b6000819050919050565b62000c508362000c13565b62000c6862000c5f8262000c3b565b84845462000ba9565b825550505050565b600090565b62000c7f62000c70565b62000c8c81848462000c45565b505050565b5b8181101562000cb45762000ca860008262000c75565b60018101905062000c92565b5050565b601f82111562000d035762000ccd8162000b77565b62000cd88462000b8c565b8101602085101562000ce8578190505b62000d0062000cf78562000b8c565b83018262000c91565b50505b505050565b600082821c905092915050565b600062000d286000198460080262000d08565b1980831691505092915050565b600062000d43838362000d15565b9150826002028217905092915050565b62000d5e8262000ad9565b67ffffffffffffffff81111562000d7a5762000d7962000ae4565b5b62000d86825462000b42565b62000d9382828562000cb8565b600060209050601f83116001811462000dcb576000841562000db6578287015190505b62000dc2858262000d35565b86555062000e32565b601f19841662000ddb8662000b77565b60005b8281101562000e055784890151825560018201915060208501945060208101905062000dde565b8683101562000e25578489015162000e21601f89168262000d15565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e6c8262000e3f565b9050919050565b62000e7e8162000e5f565b811462000e8a57600080fd5b50565b60008151905062000e9e8162000e73565b92915050565b60006020828403121562000ebd5762000ebc62000e3a565b5b600062000ecd8482850162000e8d565b91505092915050565b62000ee18162000e5f565b82525050565b600060408201905062000efe600083018562000ed6565b62000f0d602083018462000ed6565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000f508262000bff565b915062000f5d8362000bff565b925082820262000f6d8162000bff565b9150828204841483151762000f875762000f8662000f14565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000fca8262000bff565b915062000fd78362000bff565b92508262000fea5762000fe962000f8e565b5b828204905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200103e601f8362000ff5565b91506200104b8262001006565b602082019050919050565b6000602082019050818103600083015262001071816200102f565b9050919050565b6000620010858262000bff565b9150620010928362000bff565b9250828201905080821115620010ad57620010ac62000f14565b5b92915050565b620010be8162000bff565b82525050565b6000602082019050620010db6000830184620010b3565b92915050565b608051613e676200111260003960008181611089015281816128ad0152818161298e01526129b50152613e676000f3fe6080604052600436106102605760003560e01c8063735de9f711610144578063a9059cbb116100b6578063c9567bf91161007a578063c9567bf91461091d578063d257b34f14610934578063dd62ed3e14610971578063e2f45605146109ae578063f01e9a8b146109d9578063f2fde38b14610a0257610267565b8063a9059cbb14610836578063bbc0c74214610873578063c02466681461089e578063c3f70b52146108c7578063c816841b146108f257610267565b8063924de9b711610108578063924de9b714610700578063953e04631461072957806395d89b41146107665780639a6bed2514610791578063a457c2d7146107bc578063a72905a2146107f957610267565b8063735de9f71461062b578063751039fc146106565780637571336a146106815780638da5cb5b146106aa5780638f3fa860146106d557610267565b8063313ce567116101dd5780634e046c21116101a15780634e046c211461051b5780634fbee1931461054657806368092bd9146105835780636ddd1713146105ac57806370a08231146105d7578063715018a61461061457610267565b8063313ce56714610434578063395093511461045f5780633c3a9ee21461049c578063467abe0a146104c75780634a62bb65146104f057610267565b80631d933a4a116102245780631d933a4a146103535780631f57256f1461037c57806323b872dd146103a557806324887e80146103e25780632d99d32e1461040b57610267565b80630517d13d1461026c57806306d6e63f1461029557806306fdde03146102c0578063095ea7b3146102eb57806318160ddd1461032857610267565b3661026757005b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190612a86565b610a2b565b005b3480156102a157600080fd5b506102aa610ac6565b6040516102b79190612af4565b60405180910390f35b3480156102cc57600080fd5b506102d5610aec565b6040516102e29190612b9f565b60405180910390f35b3480156102f757600080fd5b50610312600480360381019061030d9190612bed565b610b7e565b60405161031f9190612c48565b60405180910390f35b34801561033457600080fd5b5061033d610ba1565b60405161034a9190612c72565b60405180910390f35b34801561035f57600080fd5b5061037a60048036038101906103759190612a86565b610bab565b005b34801561038857600080fd5b506103a3600480360381019061039e9190612a86565b610c01565b005b3480156103b157600080fd5b506103cc60048036038101906103c79190612c8d565b610d23565b6040516103d99190612c48565b60405180910390f35b3480156103ee57600080fd5b5061040960048036038101906104049190612a86565b610d52565b005b34801561041757600080fd5b50610432600480360381019061042d9190612d0c565b610ded565b005b34801561044057600080fd5b50610449610ee0565b6040516104569190612d68565b60405180910390f35b34801561046b57600080fd5b5061048660048036038101906104819190612bed565b610ee9565b6040516104939190612c48565b60405180910390f35b3480156104a857600080fd5b506104b1610f20565b6040516104be9190612c72565b60405180910390f35b3480156104d357600080fd5b506104ee60048036038101906104e99190612a86565b610f26565b005b3480156104fc57600080fd5b50610505610f7c565b6040516105129190612c48565b60405180910390f35b34801561052757600080fd5b50610530610f8f565b60405161053d9190612c72565b60405180910390f35b34801561055257600080fd5b5061056d60048036038101906105689190612d83565b610f95565b60405161057a9190612c48565b60405180910390f35b34801561058f57600080fd5b506105aa60048036038101906105a59190612d0c565b610fb5565b005b3480156105b857600080fd5b506105c1611018565b6040516105ce9190612c48565b60405180910390f35b3480156105e357600080fd5b506105fe60048036038101906105f99190612d83565b61102b565b60405161060b9190612c72565b60405180910390f35b34801561062057600080fd5b50610629611073565b005b34801561063757600080fd5b50610640611087565b60405161064d9190612e0f565b60405180910390f35b34801561066257600080fd5b5061066b6110ab565b6040516106789190612c48565b60405180910390f35b34801561068d57600080fd5b506106a860048036038101906106a39190612d0c565b6110d7565b005b3480156106b657600080fd5b506106bf61113a565b6040516106cc9190612af4565b60405180910390f35b3480156106e157600080fd5b506106ea611164565b6040516106f79190612c72565b60405180910390f35b34801561070c57600080fd5b5061072760048036038101906107229190612e2a565b61116a565b005b34801561073557600080fd5b50610750600480360381019061074b9190612d83565b61118f565b60405161075d9190612c48565b60405180910390f35b34801561077257600080fd5b5061077b6111af565b6040516107889190612b9f565b60405180910390f35b34801561079d57600080fd5b506107a6611241565b6040516107b39190612c72565b60405180910390f35b3480156107c857600080fd5b506107e360048036038101906107de9190612bed565b611247565b6040516107f09190612c48565b60405180910390f35b34801561080557600080fd5b50610820600480360381019061081b9190612d83565b6112be565b60405161082d9190612c48565b60405180910390f35b34801561084257600080fd5b5061085d60048036038101906108589190612bed565b6112de565b60405161086a9190612c48565b60405180910390f35b34801561087f57600080fd5b50610888611301565b6040516108959190612c48565b60405180910390f35b3480156108aa57600080fd5b506108c560048036038101906108c09190612d0c565b611314565b005b3480156108d357600080fd5b506108dc611377565b6040516108e99190612c72565b60405180910390f35b3480156108fe57600080fd5b5061090761137d565b6040516109149190612af4565b60405180910390f35b34801561092957600080fd5b506109326113a3565b005b34801561094057600080fd5b5061095b60048036038101906109569190612a86565b6113e3565b6040516109689190612c48565b60405180910390f35b34801561097d57600080fd5b5061099860048036038101906109939190612e57565b6114c4565b6040516109a59190612c72565b60405180910390f35b3480156109ba57600080fd5b506109c361154b565b6040516109d09190612c72565b60405180910390f35b3480156109e557600080fd5b50610a0060048036038101906109fb9190612d83565b611551565b005b348015610a0e57600080fd5b50610a296004803603810190610a249190612d83565b61159d565b005b610a33611620565b670de0b6b3a76400006103e86001610a49610ba1565b610a539190612ec6565b610a5d9190612f37565b610a679190612f37565b811015610aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa090612fda565b60405180910390fd5b670de0b6b3a764000081610abd9190612ec6565b60088190555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610afb90613029565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2790613029565b8015610b745780601f10610b4957610100808354040283529160200191610b74565b820191906000526020600020905b815481529060010190602001808311610b5757829003601f168201915b5050505050905090565b600080610b8961169e565b9050610b968185856116a6565b600191505092915050565b6000600254905090565b610bb3611620565b6019811115610bf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bee906130a6565b60405180910390fd5b80600c8190555050565b610c09611620565b60008111610c4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4390613112565b60405180910390fd5b47811115610c8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c869061317e565b60405180910390fd5b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610cd7906131cf565b60006040518083038185875af1925050503d8060008114610d14576040519150601f19603f3d011682016040523d82523d6000602084013e610d19565b606091505b5050809150505050565b600080610d2e61169e565b9050610d3b85828561186f565b610d468585856118fb565b60019150509392505050565b610d5a611620565b670de0b6b3a76400006103e86005610d70610ba1565b610d7a9190612ec6565b610d849190612f37565b610d8e9190612f37565b811015610dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc790613256565b60405180910390fd5b670de0b6b3a764000081610de49190612ec6565b600a8190555050565b610df5611620565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7c906132e8565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006012905090565b600080610ef461169e565b9050610f15818585610f0685896114c4565b610f109190613308565b6116a6565b600191505092915050565b600b5481565b610f2e611620565b6019811115610f72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f69906130a6565b60405180910390fd5b80600b8190555050565b600760169054906101000a900460ff1681565b600c5481565b60106020528060005260406000206000915054906101000a900460ff1681565b610fbd611620565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61107b611620565b61108560006123c8565b565b7f000000000000000000000000000000000000000000000000000000000000000081565b60006110b5611620565b6000600760166101000a81548160ff0219169083151502179055506001905090565b6110df611620565b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a5481565b611172611620565b80600760156101000a81548160ff02191690831515021790555050565b60116020528060005260406000206000915054906101000a900460ff1681565b6060600480546111be90613029565b80601f01602080910402602001604051908101604052809291908181526020018280546111ea90613029565b80156112375780601f1061120c57610100808354040283529160200191611237565b820191906000526020600020905b81548152906001019060200180831161121a57829003601f168201915b5050505050905090565b600d5481565b60008061125261169e565b9050600061126082866114c4565b9050838110156112a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129c906133ae565b60405180910390fd5b6112b282868684036116a6565b60019250505092915050565b60126020528060005260406000206000915054906101000a900460ff1681565b6000806112e961169e565b90506112f68185856118fb565b600191505092915050565b600760149054906101000a900460ff1681565b61131c611620565b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60085481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6113ab611620565b6001600760146101000a81548160ff0219169083151502179055506001600760156101000a81548160ff021916908315150217905550565b60006113ed611620565b620186a060016113fb610ba1565b6114059190612ec6565b61140f9190612f37565b821015611451576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144890613440565b60405180910390fd5b6103e8600561145e610ba1565b6114689190612ec6565b6114729190612f37565b8211156114b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ab906134d2565b60405180910390fd5b8160098190555060019050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b611559611620565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6115a5611620565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160b90613564565b60405180910390fd5b61161d816123c8565b50565b61162861169e565b73ffffffffffffffffffffffffffffffffffffffff1661164661113a565b73ffffffffffffffffffffffffffffffffffffffff161461169c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611693906135d0565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611715576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170c90613662565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611784576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177b906136f4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516118629190612c72565b60405180910390a3505050565b600061187b84846114c4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146118f557818110156118e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118de90613760565b60405180910390fd5b6118f484848484036116a6565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361196a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611961906137f2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d090613884565b60405180910390fd5b600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5d906138f0565b60405180910390fd5b600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aea9061395c565b60405180910390fd5b60008103611b0c57611b078383600061248e565b6123c3565b600760169054906101000a900460ff161561200757611b2961113a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611b975750611b6761113a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611bd05750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c0a575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c235750600e60009054906101000a900460ff16155b1561200657600760149054906101000a900460ff16611d1d57601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611cdd5750601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d13906139c8565b60405180910390fd5b5b601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611dc05750601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611e6757600854811115611e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0190613a5a565b60405180910390fd5b600a54611e168361102b565b82611e219190613308565b1115611e62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5990613ac6565b60405180910390fd5b612005565b601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611f0a5750601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611f5957600854811115611f54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4b90613b58565b60405180910390fd5b612004565b601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661200357600a54611fb68361102b565b82611fc19190613308565b1115612002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff990613ac6565b60405180910390fd5b5b5b5b5b5b60006120123061102b565b9050600060095482101590508080156120375750600760159054906101000a900460ff165b80156120505750600e60009054906101000a900460ff16155b80156120a65750601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156120fc5750601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156121525750601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612196576001600e60006101000a81548160ff02191690831515021790555061217a612704565b6000600e60006101000a81548160ff0219169083151502179055505b6000600e60009054906101000a900460ff16159050601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061224c5750601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561225657600090505b600081156123b357601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156122b957506000600c54115b156122f8576064600c54866122ce9190612ec6565b6122d89190612f37565b905080600d60008282546122ec9190613308565b9250508190555061238f565b601260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561235357506000600b54115b1561238e576064600b54866123689190612ec6565b6123729190612f37565b905080600d60008282546123869190613308565b925050819055505b5b60008111156123a4576123a387308361248e565b5b80856123b09190613b78565b94505b6123be87878761248e565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036124fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f4906137f2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361256c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256390613884565b60405180910390fd5b612577838383612804565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156125fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f490613c1e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516126eb9190612c72565b60405180910390a36126fe848484612809565b50505050565b600061270f3061102b565b90506000808203612721575050612802565b60146009546127309190612ec6565b8211156127495760146009546127469190612ec6565b91505b60004790506127578361280e565b600081476127659190613b78565b90506000600d81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16816040516127b5906131cf565b60006040518083038185875af1925050503d80600081146127f2576040519150601f19603f3d011682016040523d82523d6000602084013e6127f7565b606091505b505080935050505050505b565b505050565b505050565b6000600267ffffffffffffffff81111561282b5761282a613c3e565b5b6040519080825280602002602001820160405280156128595781602001602082028036833780820191505090505b509050308160008151811061287157612870613c6d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612916573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061293a9190613cb1565b8160018151811061294e5761294d613c6d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506129b3307f0000000000000000000000000000000000000000000000000000000000000000846116a6565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612a15959493929190613dd7565b600060405180830381600087803b158015612a2f57600080fd5b505af1158015612a43573d6000803e3d6000fd5b505050505050565b600080fd5b6000819050919050565b612a6381612a50565b8114612a6e57600080fd5b50565b600081359050612a8081612a5a565b92915050565b600060208284031215612a9c57612a9b612a4b565b5b6000612aaa84828501612a71565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ade82612ab3565b9050919050565b612aee81612ad3565b82525050565b6000602082019050612b096000830184612ae5565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b49578082015181840152602081019050612b2e565b60008484015250505050565b6000601f19601f8301169050919050565b6000612b7182612b0f565b612b7b8185612b1a565b9350612b8b818560208601612b2b565b612b9481612b55565b840191505092915050565b60006020820190508181036000830152612bb98184612b66565b905092915050565b612bca81612ad3565b8114612bd557600080fd5b50565b600081359050612be781612bc1565b92915050565b60008060408385031215612c0457612c03612a4b565b5b6000612c1285828601612bd8565b9250506020612c2385828601612a71565b9150509250929050565b60008115159050919050565b612c4281612c2d565b82525050565b6000602082019050612c5d6000830184612c39565b92915050565b612c6c81612a50565b82525050565b6000602082019050612c876000830184612c63565b92915050565b600080600060608486031215612ca657612ca5612a4b565b5b6000612cb486828701612bd8565b9350506020612cc586828701612bd8565b9250506040612cd686828701612a71565b9150509250925092565b612ce981612c2d565b8114612cf457600080fd5b50565b600081359050612d0681612ce0565b92915050565b60008060408385031215612d2357612d22612a4b565b5b6000612d3185828601612bd8565b9250506020612d4285828601612cf7565b9150509250929050565b600060ff82169050919050565b612d6281612d4c565b82525050565b6000602082019050612d7d6000830184612d59565b92915050565b600060208284031215612d9957612d98612a4b565b5b6000612da784828501612bd8565b91505092915050565b6000819050919050565b6000612dd5612dd0612dcb84612ab3565b612db0565b612ab3565b9050919050565b6000612de782612dba565b9050919050565b6000612df982612ddc565b9050919050565b612e0981612dee565b82525050565b6000602082019050612e246000830184612e00565b92915050565b600060208284031215612e4057612e3f612a4b565b5b6000612e4e84828501612cf7565b91505092915050565b60008060408385031215612e6e57612e6d612a4b565b5b6000612e7c85828601612bd8565b9250506020612e8d85828601612bd8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ed182612a50565b9150612edc83612a50565b9250828202612eea81612a50565b91508282048414831517612f0157612f00612e97565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612f4282612a50565b9150612f4d83612a50565b925082612f5d57612f5c612f08565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e206c6f7765722060008201527f7468616e20302e31250000000000000000000000000000000000000000000000602082015250565b6000612fc4602983612b1a565b9150612fcf82612f68565b604082019050919050565b60006020820190508181036000830152612ff381612fb7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061304157607f821691505b60208210810361305457613053612ffa565b5b50919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000613090601d83612b1a565b915061309b8261305a565b602082019050919050565b600060208201905081810360008301526130bf81613083565b9050919050565b7f496e76616c696420616d6f756e74206f66206574680000000000000000000000600082015250565b60006130fc601583612b1a565b9150613107826130c6565b602082019050919050565b6000602082019050818103600083015261312b816130ef565b9050919050565b7f4e6f7420656e6f75676820657468000000000000000000000000000000000000600082015250565b6000613168600e83612b1a565b915061317382613132565b602082019050919050565b600060208201905081810360008301526131978161315b565b9050919050565b600081905092915050565b50565b60006131b960008361319e565b91506131c4826131a9565b600082019050919050565b60006131da826131ac565b9150819050919050565b7f43616e6e6f7420736574206d617857616c6c657453697a65206c6f776572207460008201527f68616e20302e3525000000000000000000000000000000000000000000000000602082015250565b6000613240602883612b1a565b915061324b826131e4565b604082019050919050565b6000602082019050818103600083015261326f81613233565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f616d6d5061697273000000000000000000000000000000000000000000000000602082015250565b60006132d2602883612b1a565b91506132dd82613276565b604082019050919050565b60006020820190508181036000830152613301816132c5565b9050919050565b600061331382612a50565b915061331e83612a50565b925082820190508082111561333657613335612e97565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613398602583612b1a565b91506133a38261333c565b604082019050919050565b600060208201905081810360008301526133c78161338b565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061342a603583612b1a565b9150613435826133ce565b604082019050919050565b600060208201905081810360008301526134598161341d565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006134bc603483612b1a565b91506134c782613460565b604082019050919050565b600060208201905081810360008301526134eb816134af565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061354e602683612b1a565b9150613559826134f2565b604082019050919050565b6000602082019050818103600083015261357d81613541565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006135ba602083612b1a565b91506135c582613584565b602082019050919050565b600060208201905081810360008301526135e9816135ad565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061364c602483612b1a565b9150613657826135f0565b604082019050919050565b6000602082019050818103600083015261367b8161363f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006136de602283612b1a565b91506136e982613682565b604082019050919050565b6000602082019050818103600083015261370d816136d1565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061374a601d83612b1a565b915061375582613714565b602082019050919050565b600060208201905081810360008301526137798161373d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006137dc602583612b1a565b91506137e782613780565b604082019050919050565b6000602082019050818103600083015261380b816137cf565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061386e602383612b1a565b915061387982613812565b604082019050919050565b6000602082019050818103600083015261389d81613861565b9050919050565b7f5b66726f6d5d20626c61636b206c697374000000000000000000000000000000600082015250565b60006138da601183612b1a565b91506138e5826138a4565b602082019050919050565b60006020820190508181036000830152613909816138cd565b9050919050565b7f5b746f5d20626c61636b206c6973740000000000000000000000000000000000600082015250565b6000613946600f83612b1a565b915061395182613910565b602082019050919050565b6000602082019050818103600083015261397581613939565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006139b2601683612b1a565b91506139bd8261397c565b602082019050919050565b600060208201905081810360008301526139e1816139a5565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e2e0000000000000000000000000000000000602082015250565b6000613a44602f83612b1a565b9150613a4f826139e8565b604082019050919050565b60006020820190508181036000830152613a7381613a37565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613ab0601383612b1a565b9150613abb82613a7a565b602082019050919050565b60006020820190508181036000830152613adf81613aa3565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e2e00000000000000000000000000000000602082015250565b6000613b42603083612b1a565b9150613b4d82613ae6565b604082019050919050565b60006020820190508181036000830152613b7181613b35565b9050919050565b6000613b8382612a50565b9150613b8e83612a50565b9250828203905081811115613ba657613ba5612e97565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613c08602683612b1a565b9150613c1382613bac565b604082019050919050565b60006020820190508181036000830152613c3781613bfb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050613cab81612bc1565b92915050565b600060208284031215613cc757613cc6612a4b565b5b6000613cd584828501613c9c565b91505092915050565b6000819050919050565b6000613d03613cfe613cf984613cde565b612db0565b612a50565b9050919050565b613d1381613ce8565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613d4e81612ad3565b82525050565b6000613d608383613d45565b60208301905092915050565b6000602082019050919050565b6000613d8482613d19565b613d8e8185613d24565b9350613d9983613d35565b8060005b83811015613dca578151613db18882613d54565b9750613dbc83613d6c565b925050600181019050613d9d565b5085935050505092915050565b600060a082019050613dec6000830188612c63565b613df96020830187613d0a565b8181036040830152613e0b8186613d79565b9050613e1a6060830185612ae5565b613e276080830184612c63565b969550505050505056fea264697066735822122017ed8369af68c28553c3bac6ced94588ddeccab753d7083720ea7ea45d65ebd264736f6c63430008180033

Deployed Bytecode

0x6080604052600436106102605760003560e01c8063735de9f711610144578063a9059cbb116100b6578063c9567bf91161007a578063c9567bf91461091d578063d257b34f14610934578063dd62ed3e14610971578063e2f45605146109ae578063f01e9a8b146109d9578063f2fde38b14610a0257610267565b8063a9059cbb14610836578063bbc0c74214610873578063c02466681461089e578063c3f70b52146108c7578063c816841b146108f257610267565b8063924de9b711610108578063924de9b714610700578063953e04631461072957806395d89b41146107665780639a6bed2514610791578063a457c2d7146107bc578063a72905a2146107f957610267565b8063735de9f71461062b578063751039fc146106565780637571336a146106815780638da5cb5b146106aa5780638f3fa860146106d557610267565b8063313ce567116101dd5780634e046c21116101a15780634e046c211461051b5780634fbee1931461054657806368092bd9146105835780636ddd1713146105ac57806370a08231146105d7578063715018a61461061457610267565b8063313ce56714610434578063395093511461045f5780633c3a9ee21461049c578063467abe0a146104c75780634a62bb65146104f057610267565b80631d933a4a116102245780631d933a4a146103535780631f57256f1461037c57806323b872dd146103a557806324887e80146103e25780632d99d32e1461040b57610267565b80630517d13d1461026c57806306d6e63f1461029557806306fdde03146102c0578063095ea7b3146102eb57806318160ddd1461032857610267565b3661026757005b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190612a86565b610a2b565b005b3480156102a157600080fd5b506102aa610ac6565b6040516102b79190612af4565b60405180910390f35b3480156102cc57600080fd5b506102d5610aec565b6040516102e29190612b9f565b60405180910390f35b3480156102f757600080fd5b50610312600480360381019061030d9190612bed565b610b7e565b60405161031f9190612c48565b60405180910390f35b34801561033457600080fd5b5061033d610ba1565b60405161034a9190612c72565b60405180910390f35b34801561035f57600080fd5b5061037a60048036038101906103759190612a86565b610bab565b005b34801561038857600080fd5b506103a3600480360381019061039e9190612a86565b610c01565b005b3480156103b157600080fd5b506103cc60048036038101906103c79190612c8d565b610d23565b6040516103d99190612c48565b60405180910390f35b3480156103ee57600080fd5b5061040960048036038101906104049190612a86565b610d52565b005b34801561041757600080fd5b50610432600480360381019061042d9190612d0c565b610ded565b005b34801561044057600080fd5b50610449610ee0565b6040516104569190612d68565b60405180910390f35b34801561046b57600080fd5b5061048660048036038101906104819190612bed565b610ee9565b6040516104939190612c48565b60405180910390f35b3480156104a857600080fd5b506104b1610f20565b6040516104be9190612c72565b60405180910390f35b3480156104d357600080fd5b506104ee60048036038101906104e99190612a86565b610f26565b005b3480156104fc57600080fd5b50610505610f7c565b6040516105129190612c48565b60405180910390f35b34801561052757600080fd5b50610530610f8f565b60405161053d9190612c72565b60405180910390f35b34801561055257600080fd5b5061056d60048036038101906105689190612d83565b610f95565b60405161057a9190612c48565b60405180910390f35b34801561058f57600080fd5b506105aa60048036038101906105a59190612d0c565b610fb5565b005b3480156105b857600080fd5b506105c1611018565b6040516105ce9190612c48565b60405180910390f35b3480156105e357600080fd5b506105fe60048036038101906105f99190612d83565b61102b565b60405161060b9190612c72565b60405180910390f35b34801561062057600080fd5b50610629611073565b005b34801561063757600080fd5b50610640611087565b60405161064d9190612e0f565b60405180910390f35b34801561066257600080fd5b5061066b6110ab565b6040516106789190612c48565b60405180910390f35b34801561068d57600080fd5b506106a860048036038101906106a39190612d0c565b6110d7565b005b3480156106b657600080fd5b506106bf61113a565b6040516106cc9190612af4565b60405180910390f35b3480156106e157600080fd5b506106ea611164565b6040516106f79190612c72565b60405180910390f35b34801561070c57600080fd5b5061072760048036038101906107229190612e2a565b61116a565b005b34801561073557600080fd5b50610750600480360381019061074b9190612d83565b61118f565b60405161075d9190612c48565b60405180910390f35b34801561077257600080fd5b5061077b6111af565b6040516107889190612b9f565b60405180910390f35b34801561079d57600080fd5b506107a6611241565b6040516107b39190612c72565b60405180910390f35b3480156107c857600080fd5b506107e360048036038101906107de9190612bed565b611247565b6040516107f09190612c48565b60405180910390f35b34801561080557600080fd5b50610820600480360381019061081b9190612d83565b6112be565b60405161082d9190612c48565b60405180910390f35b34801561084257600080fd5b5061085d60048036038101906108589190612bed565b6112de565b60405161086a9190612c48565b60405180910390f35b34801561087f57600080fd5b50610888611301565b6040516108959190612c48565b60405180910390f35b3480156108aa57600080fd5b506108c560048036038101906108c09190612d0c565b611314565b005b3480156108d357600080fd5b506108dc611377565b6040516108e99190612c72565b60405180910390f35b3480156108fe57600080fd5b5061090761137d565b6040516109149190612af4565b60405180910390f35b34801561092957600080fd5b506109326113a3565b005b34801561094057600080fd5b5061095b60048036038101906109569190612a86565b6113e3565b6040516109689190612c48565b60405180910390f35b34801561097d57600080fd5b5061099860048036038101906109939190612e57565b6114c4565b6040516109a59190612c72565b60405180910390f35b3480156109ba57600080fd5b506109c361154b565b6040516109d09190612c72565b60405180910390f35b3480156109e557600080fd5b50610a0060048036038101906109fb9190612d83565b611551565b005b348015610a0e57600080fd5b50610a296004803603810190610a249190612d83565b61159d565b005b610a33611620565b670de0b6b3a76400006103e86001610a49610ba1565b610a539190612ec6565b610a5d9190612f37565b610a679190612f37565b811015610aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa090612fda565b60405180910390fd5b670de0b6b3a764000081610abd9190612ec6565b60088190555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610afb90613029565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2790613029565b8015610b745780601f10610b4957610100808354040283529160200191610b74565b820191906000526020600020905b815481529060010190602001808311610b5757829003601f168201915b5050505050905090565b600080610b8961169e565b9050610b968185856116a6565b600191505092915050565b6000600254905090565b610bb3611620565b6019811115610bf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bee906130a6565b60405180910390fd5b80600c8190555050565b610c09611620565b60008111610c4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4390613112565b60405180910390fd5b47811115610c8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c869061317e565b60405180910390fd5b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610cd7906131cf565b60006040518083038185875af1925050503d8060008114610d14576040519150601f19603f3d011682016040523d82523d6000602084013e610d19565b606091505b5050809150505050565b600080610d2e61169e565b9050610d3b85828561186f565b610d468585856118fb565b60019150509392505050565b610d5a611620565b670de0b6b3a76400006103e86005610d70610ba1565b610d7a9190612ec6565b610d849190612f37565b610d8e9190612f37565b811015610dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc790613256565b60405180910390fd5b670de0b6b3a764000081610de49190612ec6565b600a8190555050565b610df5611620565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7c906132e8565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006012905090565b600080610ef461169e565b9050610f15818585610f0685896114c4565b610f109190613308565b6116a6565b600191505092915050565b600b5481565b610f2e611620565b6019811115610f72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f69906130a6565b60405180910390fd5b80600b8190555050565b600760169054906101000a900460ff1681565b600c5481565b60106020528060005260406000206000915054906101000a900460ff1681565b610fbd611620565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61107b611620565b61108560006123c8565b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60006110b5611620565b6000600760166101000a81548160ff0219169083151502179055506001905090565b6110df611620565b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a5481565b611172611620565b80600760156101000a81548160ff02191690831515021790555050565b60116020528060005260406000206000915054906101000a900460ff1681565b6060600480546111be90613029565b80601f01602080910402602001604051908101604052809291908181526020018280546111ea90613029565b80156112375780601f1061120c57610100808354040283529160200191611237565b820191906000526020600020905b81548152906001019060200180831161121a57829003601f168201915b5050505050905090565b600d5481565b60008061125261169e565b9050600061126082866114c4565b9050838110156112a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129c906133ae565b60405180910390fd5b6112b282868684036116a6565b60019250505092915050565b60126020528060005260406000206000915054906101000a900460ff1681565b6000806112e961169e565b90506112f68185856118fb565b600191505092915050565b600760149054906101000a900460ff1681565b61131c611620565b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60085481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6113ab611620565b6001600760146101000a81548160ff0219169083151502179055506001600760156101000a81548160ff021916908315150217905550565b60006113ed611620565b620186a060016113fb610ba1565b6114059190612ec6565b61140f9190612f37565b821015611451576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144890613440565b60405180910390fd5b6103e8600561145e610ba1565b6114689190612ec6565b6114729190612f37565b8211156114b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ab906134d2565b60405180910390fd5b8160098190555060019050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b611559611620565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6115a5611620565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160b90613564565b60405180910390fd5b61161d816123c8565b50565b61162861169e565b73ffffffffffffffffffffffffffffffffffffffff1661164661113a565b73ffffffffffffffffffffffffffffffffffffffff161461169c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611693906135d0565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611715576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170c90613662565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611784576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177b906136f4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516118629190612c72565b60405180910390a3505050565b600061187b84846114c4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146118f557818110156118e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118de90613760565b60405180910390fd5b6118f484848484036116a6565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361196a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611961906137f2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d090613884565b60405180910390fd5b600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5d906138f0565b60405180910390fd5b600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aea9061395c565b60405180910390fd5b60008103611b0c57611b078383600061248e565b6123c3565b600760169054906101000a900460ff161561200757611b2961113a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611b975750611b6761113a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611bd05750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c0a575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c235750600e60009054906101000a900460ff16155b1561200657600760149054906101000a900460ff16611d1d57601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611cdd5750601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d13906139c8565b60405180910390fd5b5b601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611dc05750601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611e6757600854811115611e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0190613a5a565b60405180910390fd5b600a54611e168361102b565b82611e219190613308565b1115611e62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5990613ac6565b60405180910390fd5b612005565b601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611f0a5750601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611f5957600854811115611f54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4b90613b58565b60405180910390fd5b612004565b601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661200357600a54611fb68361102b565b82611fc19190613308565b1115612002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff990613ac6565b60405180910390fd5b5b5b5b5b5b60006120123061102b565b9050600060095482101590508080156120375750600760159054906101000a900460ff165b80156120505750600e60009054906101000a900460ff16155b80156120a65750601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156120fc5750601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156121525750601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612196576001600e60006101000a81548160ff02191690831515021790555061217a612704565b6000600e60006101000a81548160ff0219169083151502179055505b6000600e60009054906101000a900460ff16159050601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061224c5750601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561225657600090505b600081156123b357601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156122b957506000600c54115b156122f8576064600c54866122ce9190612ec6565b6122d89190612f37565b905080600d60008282546122ec9190613308565b9250508190555061238f565b601260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561235357506000600b54115b1561238e576064600b54866123689190612ec6565b6123729190612f37565b905080600d60008282546123869190613308565b925050819055505b5b60008111156123a4576123a387308361248e565b5b80856123b09190613b78565b94505b6123be87878761248e565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036124fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f4906137f2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361256c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256390613884565b60405180910390fd5b612577838383612804565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156125fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f490613c1e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516126eb9190612c72565b60405180910390a36126fe848484612809565b50505050565b600061270f3061102b565b90506000808203612721575050612802565b60146009546127309190612ec6565b8211156127495760146009546127469190612ec6565b91505b60004790506127578361280e565b600081476127659190613b78565b90506000600d81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16816040516127b5906131cf565b60006040518083038185875af1925050503d80600081146127f2576040519150601f19603f3d011682016040523d82523d6000602084013e6127f7565b606091505b505080935050505050505b565b505050565b505050565b6000600267ffffffffffffffff81111561282b5761282a613c3e565b5b6040519080825280602002602001820160405280156128595781602001602082028036833780820191505090505b509050308160008151811061287157612870613c6d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612916573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061293a9190613cb1565b8160018151811061294e5761294d613c6d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506129b3307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846116a6565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612a15959493929190613dd7565b600060405180830381600087803b158015612a2f57600080fd5b505af1158015612a43573d6000803e3d6000fd5b505050505050565b600080fd5b6000819050919050565b612a6381612a50565b8114612a6e57600080fd5b50565b600081359050612a8081612a5a565b92915050565b600060208284031215612a9c57612a9b612a4b565b5b6000612aaa84828501612a71565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ade82612ab3565b9050919050565b612aee81612ad3565b82525050565b6000602082019050612b096000830184612ae5565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b49578082015181840152602081019050612b2e565b60008484015250505050565b6000601f19601f8301169050919050565b6000612b7182612b0f565b612b7b8185612b1a565b9350612b8b818560208601612b2b565b612b9481612b55565b840191505092915050565b60006020820190508181036000830152612bb98184612b66565b905092915050565b612bca81612ad3565b8114612bd557600080fd5b50565b600081359050612be781612bc1565b92915050565b60008060408385031215612c0457612c03612a4b565b5b6000612c1285828601612bd8565b9250506020612c2385828601612a71565b9150509250929050565b60008115159050919050565b612c4281612c2d565b82525050565b6000602082019050612c5d6000830184612c39565b92915050565b612c6c81612a50565b82525050565b6000602082019050612c876000830184612c63565b92915050565b600080600060608486031215612ca657612ca5612a4b565b5b6000612cb486828701612bd8565b9350506020612cc586828701612bd8565b9250506040612cd686828701612a71565b9150509250925092565b612ce981612c2d565b8114612cf457600080fd5b50565b600081359050612d0681612ce0565b92915050565b60008060408385031215612d2357612d22612a4b565b5b6000612d3185828601612bd8565b9250506020612d4285828601612cf7565b9150509250929050565b600060ff82169050919050565b612d6281612d4c565b82525050565b6000602082019050612d7d6000830184612d59565b92915050565b600060208284031215612d9957612d98612a4b565b5b6000612da784828501612bd8565b91505092915050565b6000819050919050565b6000612dd5612dd0612dcb84612ab3565b612db0565b612ab3565b9050919050565b6000612de782612dba565b9050919050565b6000612df982612ddc565b9050919050565b612e0981612dee565b82525050565b6000602082019050612e246000830184612e00565b92915050565b600060208284031215612e4057612e3f612a4b565b5b6000612e4e84828501612cf7565b91505092915050565b60008060408385031215612e6e57612e6d612a4b565b5b6000612e7c85828601612bd8565b9250506020612e8d85828601612bd8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ed182612a50565b9150612edc83612a50565b9250828202612eea81612a50565b91508282048414831517612f0157612f00612e97565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612f4282612a50565b9150612f4d83612a50565b925082612f5d57612f5c612f08565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e206c6f7765722060008201527f7468616e20302e31250000000000000000000000000000000000000000000000602082015250565b6000612fc4602983612b1a565b9150612fcf82612f68565b604082019050919050565b60006020820190508181036000830152612ff381612fb7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061304157607f821691505b60208210810361305457613053612ffa565b5b50919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000613090601d83612b1a565b915061309b8261305a565b602082019050919050565b600060208201905081810360008301526130bf81613083565b9050919050565b7f496e76616c696420616d6f756e74206f66206574680000000000000000000000600082015250565b60006130fc601583612b1a565b9150613107826130c6565b602082019050919050565b6000602082019050818103600083015261312b816130ef565b9050919050565b7f4e6f7420656e6f75676820657468000000000000000000000000000000000000600082015250565b6000613168600e83612b1a565b915061317382613132565b602082019050919050565b600060208201905081810360008301526131978161315b565b9050919050565b600081905092915050565b50565b60006131b960008361319e565b91506131c4826131a9565b600082019050919050565b60006131da826131ac565b9150819050919050565b7f43616e6e6f7420736574206d617857616c6c657453697a65206c6f776572207460008201527f68616e20302e3525000000000000000000000000000000000000000000000000602082015250565b6000613240602883612b1a565b915061324b826131e4565b604082019050919050565b6000602082019050818103600083015261326f81613233565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f616d6d5061697273000000000000000000000000000000000000000000000000602082015250565b60006132d2602883612b1a565b91506132dd82613276565b604082019050919050565b60006020820190508181036000830152613301816132c5565b9050919050565b600061331382612a50565b915061331e83612a50565b925082820190508082111561333657613335612e97565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613398602583612b1a565b91506133a38261333c565b604082019050919050565b600060208201905081810360008301526133c78161338b565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061342a603583612b1a565b9150613435826133ce565b604082019050919050565b600060208201905081810360008301526134598161341d565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006134bc603483612b1a565b91506134c782613460565b604082019050919050565b600060208201905081810360008301526134eb816134af565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061354e602683612b1a565b9150613559826134f2565b604082019050919050565b6000602082019050818103600083015261357d81613541565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006135ba602083612b1a565b91506135c582613584565b602082019050919050565b600060208201905081810360008301526135e9816135ad565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061364c602483612b1a565b9150613657826135f0565b604082019050919050565b6000602082019050818103600083015261367b8161363f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006136de602283612b1a565b91506136e982613682565b604082019050919050565b6000602082019050818103600083015261370d816136d1565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061374a601d83612b1a565b915061375582613714565b602082019050919050565b600060208201905081810360008301526137798161373d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006137dc602583612b1a565b91506137e782613780565b604082019050919050565b6000602082019050818103600083015261380b816137cf565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061386e602383612b1a565b915061387982613812565b604082019050919050565b6000602082019050818103600083015261389d81613861565b9050919050565b7f5b66726f6d5d20626c61636b206c697374000000000000000000000000000000600082015250565b60006138da601183612b1a565b91506138e5826138a4565b602082019050919050565b60006020820190508181036000830152613909816138cd565b9050919050565b7f5b746f5d20626c61636b206c6973740000000000000000000000000000000000600082015250565b6000613946600f83612b1a565b915061395182613910565b602082019050919050565b6000602082019050818103600083015261397581613939565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006139b2601683612b1a565b91506139bd8261397c565b602082019050919050565b600060208201905081810360008301526139e1816139a5565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e2e0000000000000000000000000000000000602082015250565b6000613a44602f83612b1a565b9150613a4f826139e8565b604082019050919050565b60006020820190508181036000830152613a7381613a37565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613ab0601383612b1a565b9150613abb82613a7a565b602082019050919050565b60006020820190508181036000830152613adf81613aa3565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e2e00000000000000000000000000000000602082015250565b6000613b42603083612b1a565b9150613b4d82613ae6565b604082019050919050565b60006020820190508181036000830152613b7181613b35565b9050919050565b6000613b8382612a50565b9150613b8e83612a50565b9250828203905081811115613ba657613ba5612e97565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613c08602683612b1a565b9150613c1382613bac565b604082019050919050565b60006020820190508181036000830152613c3781613bfb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050613cab81612bc1565b92915050565b600060208284031215613cc757613cc6612a4b565b5b6000613cd584828501613c9c565b91505092915050565b6000819050919050565b6000613d03613cfe613cf984613cde565b612db0565b612a50565b9050919050565b613d1381613ce8565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613d4e81612ad3565b82525050565b6000613d608383613d45565b60208301905092915050565b6000602082019050919050565b6000613d8482613d19565b613d8e8185613d24565b9350613d9983613d35565b8060005b83811015613dca578151613db18882613d54565b9750613dbc83613d6c565b925050600181019050613d9d565b5085935050505092915050565b600060a082019050613dec6000830188612c63565b613df96020830187613d0a565b8181036040830152613e0b8186613d79565b9050613e1a6060830185612ae5565b613e276080830184612c63565b969550505050505056fea264697066735822122017ed8369af68c28553c3bac6ced94588ddeccab753d7083720ea7ea45d65ebd264736f6c63430008180033

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.