ETH Price: $3,031.04 (+4.19%)
 

Overview

Max Total Supply

1,000,000,000 test

Holders

5

Transfers

-
0

Market

Onchain Market Cap

-

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

Compiler Version
v0.8.28+commit.7893614a

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.28;
import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {IUniswapV2Router02} from "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";
import {IUniswapV2Factory} from "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";

contract Token is ERC20, Ownable {
    uint256 public immutable MAX_SUPPLY;
    address public immutable pair;
    address public Tax_1_Wallet;
    address public Tax_2_Wallet;
    address public Admin_Wallet;

    IUniswapV2Router02 private constant _router =
        IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

    address private immutable _weth;

    uint256 public startBlock;
    uint256 public startBlockTime;
    
    uint256 public feeBps;

    event SetFee(uint256 newValue, uint256 oldValue);

    error FeeTooHigh();

    mapping(address account => bool) public isExcludedFromFees;
    mapping(address account => bool) public isExcludedFromMaxWallet;
    mapping(address origin => mapping(uint256 blockNumber => uint256 txCount))
        public maxBuyTxsPerBlockPerOrigin;
    uint256 private _maxBuyTxsPerBlockPerOrigin = 10;
    mapping(uint256 blockNumber => uint256 txCount) public maxBuyTxsPerBlock;
    uint256 private _maxBuyTxsPerBlock = 100;

    constructor() ERC20("TEST", "test") Ownable(msg.sender) {
        MAX_SUPPLY = 1000_000_000 ether;
        _weth = _router.WETH();

        Tax_1_Wallet = 0x492A84Ff94aD19f8D055c945432FdCFaEe340456; //45
        Tax_2_Wallet = 0x492A84Ff94aD19f8D055c945432FdCFaEe340456; //45
        Admin_Wallet = 0x492A84Ff94aD19f8D055c945432FdCFaEe340456; //10

        pair = IUniswapV2Factory(_router.factory()).createPair(
            address(this),
            _weth
        );

        feeBps = 500;

        isExcludedFromFees[msg.sender] = true;
        isExcludedFromFees[address(this)] = true;
        isExcludedFromFees[pair] = true;
        isExcludedFromFees[Tax_1_Wallet] = true;
        isExcludedFromFees[Tax_2_Wallet] = true;
        isExcludedFromFees[Admin_Wallet] = true;
        isExcludedFromMaxWallet[msg.sender] = true;
        isExcludedFromMaxWallet[address(this)] = true;
        isExcludedFromMaxWallet[pair] = true;
        isExcludedFromMaxWallet[Tax_1_Wallet] = true;
        isExcludedFromMaxWallet[Tax_2_Wallet] = true;
        isExcludedFromMaxWallet[Admin_Wallet] = true;

        _mint(msg.sender, MAX_SUPPLY);
        _approve(msg.sender, address(_router), type(uint256).max);
    }

    receive() external payable {}

    fallback() external payable {}

    function enableTrading() external onlyOwner {
        require(startBlock == 0, "trading-already-enabled");
        _approve(address(this), address(_router), type(uint256).max);
        _router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp);
        _approve(pair, address(_router), type(uint).max);
        startBlock = block.number;
        startBlockTime = block.timestamp;
    }

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

    function setExcludedFromMaxWallet(
        address account,
        bool excluded
    ) external onlyOwner {
        isExcludedFromMaxWallet[account] = excluded;
    }

    function feesAndMaxWallet()
        external
        view
        returns (uint256 _feeBps, uint256 _maxWallet)
    {
        return _feesAndMaxWallet();
    }

    function _feesAndMaxWallet()
        internal
        view
        returns (uint256 _feeBps, uint256 _maxWallet)
    {
        if (startBlockTime == 0) {
            return (0, 0);
        }
        uint256 _diffSeconds = block.timestamp - startBlockTime;

        if (_diffSeconds < 3600) {
            // 1 min
            if (_diffSeconds < 60) {
                _feeBps = 4000; // 40%
                _maxWallet = MAX_SUPPLY / 666; // 0.15%
                return (_feeBps, _maxWallet);
            }
            // 2-5 min
            if (_diffSeconds < 300) {
                _feeBps = 3000; // 30%
                _maxWallet = MAX_SUPPLY / 500; // 0.2%
                return (_feeBps, _maxWallet);
            }
            // 6-8 min
            if (_diffSeconds < 480) {
                _feeBps = 2500; // 25%
                _maxWallet = MAX_SUPPLY / 500; // 0.2%
                return (_feeBps, _maxWallet);
            }
            // 9-12 min
            if (_diffSeconds < 720) {
                _feeBps = 2000; // 20%
                _maxWallet = MAX_SUPPLY / 400; // 0.25%
                return (_feeBps, _maxWallet);
            }

            if (_diffSeconds < 900) {
                // 12-15 min
                _feeBps = 1000; // 10%
                _maxWallet = MAX_SUPPLY / 333; // 0.3%
                return (_feeBps, _maxWallet);
            }

            _feeBps = 500; // 5%
            _maxWallet = MAX_SUPPLY / 200; // 0.5%
            return (_feeBps, _maxWallet);
        }

        _maxWallet = MAX_SUPPLY; // no limit
        return (feeBps, _maxWallet);
    }

    function _update(
        address from,
        address to,
        uint256 value
    ) internal override {
        (uint256 _feeBps, uint256 _maxWallet) = _feesAndMaxWallet();

        bool isBuy = from == pair;
        if (isBuy || to == pair) {
            require(
                startBlock > 0 || isExcludedFromFees[to],
                "trading-not-enabled"
            );

            if (_feeBps != 0) {
                if (isBuy && !isExcludedFromFees[to]) {
                    if (
                        startBlockTime > 0 &&
                        block.timestamp - startBlockTime < 180
                    ) {
                        require(
                            maxBuyTxsPerBlockPerOrigin[tx.origin][
                                block.number
                            ] < _maxBuyTxsPerBlockPerOrigin,
                            "max-buy-txs-per-block-per-origin-exceeded"
                        );
                        maxBuyTxsPerBlockPerOrigin[tx.origin][block.number]++;

                        require(
                            maxBuyTxsPerBlock[block.number] <
                                _maxBuyTxsPerBlock,
                            "max-buy-txs-per-block-exceeded"
                        );
                        maxBuyTxsPerBlock[block.number]++;
                    }

                    uint256 fee = (value * _feeBps) / 10000;
                    value -= fee;
                    super._update(from, address(this), fee);
                }

                if (!isBuy && !isExcludedFromFees[from]) {
                    uint256 fee = (value * _feeBps) / 10000;
                    value -= fee;
                    super._update(from, address(this), fee);
                    _swapTokensForEth();
                }
            } else {
                // sell any remaining tokens after cap is reached
                if (!isBuy && !isExcludedFromFees[from]) {
                    _swapTokensForEth();
                }
            }
        }

        require(
            isExcludedFromMaxWallet[to] || value + balanceOf(to) <= _maxWallet,
            "max-wallet-size-exceeded"
        );
        super._update(from, to, value);
    }

    function _swapTokensForEth() internal {
        bool success;
        uint256 startDiff = block.timestamp - startBlockTime;
        if (startDiff < 300) {
            return;
        }

        uint256 _tokenAmount = balanceOf(address(this));

        if (_tokenAmount == 0) {
            return;
        }

        address[] memory _path = new address[](2);
        // _path[0] = _weth;
        // _path[1] = address(this);

        // // sell max 1 eth worth of tokens
        // uint256 _maxTokenAmount = _router.getAmountsOut(1 ether, _path)[1];

        // if (_tokenAmount > _maxTokenAmount) {
        //     _tokenAmount = _maxTokenAmount;
        // }

        _path[0] = address(this);
        _path[1] = _weth;

        _router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            _tokenAmount,
            0,
            _path,
            address(this),
            block.timestamp
        );

        // uint256 ethBalance = address(this).balance;

        // uint256 ethForTax1 = (ethBalance * 45) / 100;
        // uint256 ethForTax2 = (ethBalance * 45) / 100;
        // uint256 ethForAdmin = (ethBalance * 10) / 100;

        // (success, ) = address(Tax_1_Wallet).call{value: ethForTax1}("");
        // (success, ) = address(Tax_2_Wallet).call{value: ethForTax2}("");
        // (success, ) = address(Admin_Wallet).call{value: ethForAdmin}("");
    }

    function manualswap(uint256 _percen) external onlyOwner {
        uint256 balance = balanceOf(address(this));
        uint256 amt = (balance * _percen)/100;
        
        address[] memory _path = new address[](2);
        _path[0] = address(this);
        _path[1] = _weth;

        _router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            amt,
            0,
            _path,
            address(this),
            block.timestamp
        );
    }

    function SetTaxWallets(address _Tax1Wallet, address _Tax2Wallet, address _AdminWallet) external onlyOwner {
        Tax_1_Wallet = _Tax1Wallet;
        Tax_2_Wallet = _Tax2Wallet;
        Admin_Wallet = _AdminWallet;
    }

    function ReduceFee(uint256 _fee) external onlyOwner {
        if (block.number == startBlock){
            feeBps = _fee;
        } else {
            require(_fee <= feeBps, FeeTooHigh());
            uint256 oldValue = feeBps;
            feeBps = _fee;
            emit SetFee(_fee, oldValue);
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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);
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC-20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC-721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC-1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.3.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.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}.
 *
 * 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 ERC-20
 * applications.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * Both 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 returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Skips emitting an {Approval} event indicating an allowance update. This is not
     * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
     *
     * 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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     *
     * ```solidity
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner`'s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance < type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC-20 standard.
 */
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);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC-20 standard as defined in the ERC.
 */
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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

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;
}

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);
}

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"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"FeeTooHigh","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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":false,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"SetFee","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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"Admin_Wallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"ReduceFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_Tax1Wallet","type":"address"},{"internalType":"address","name":"_Tax2Wallet","type":"address"},{"internalType":"address","name":"_AdminWallet","type":"address"}],"name":"SetTaxWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"Tax_1_Wallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Tax_2_Wallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","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":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeBps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feesAndMaxWallet","outputs":[{"internalType":"uint256","name":"_feeBps","type":"uint256"},{"internalType":"uint256","name":"_maxWallet","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromMaxWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_percen","type":"uint256"}],"name":"manualswap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"maxBuyTxsPerBlock","outputs":[{"internalType":"uint256","name":"txCount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"origin","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"maxBuyTxsPerBlockPerOrigin","outputs":[{"internalType":"uint256","name":"txCount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setExcludedFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setExcludedFromMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startBlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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"},{"stateMutability":"payable","type":"receive"}]

60e0604052600a600f55606460115534801561001a57600080fd5b50336040518060400160405280600481526020017f54455354000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f7465737400000000000000000000000000000000000000000000000000000000815250816003908161009791906119a7565b5080600490816100a791906119a7565b505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361011c5760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016101139190611aba565b60405180910390fd5b61012b8161097f60201b60201c565b506b033b2e3c9fd0803ce800000060808181525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561019f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101c39190611b06565b73ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff168152505073492a84ff94ad19f8d055c945432fdcfaee340456600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073492a84ff94ad19f8d055c945432fdcfaee340456600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073492a84ff94ad19f8d055c945432fdcfaee340456600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610354573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103789190611b06565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060c0516040518363ffffffff1660e01b81526004016103b4929190611b33565b6020604051808303816000875af11580156103d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103f79190611b06565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506101f4600b819055506001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c600060a05173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d600060a05173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061093533608051610a4560201b60201c565b61097a33737a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610acd60201b60201c565b6120a7565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ab75760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610aae9190611aba565b60405180910390fd5b610ac960008383610ae560201b60201c565b5050565b610ae0838383600161102c60201b60201c565b505050565b600080610af661120360201b60201c565b91509150600060a05173ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161490508080610b68575060a05173ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b15610f635760006009541180610bc75750600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b610c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfd90611bb9565b60405180910390fd5b60008314610ef557808015610c655750600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15610e47576000600a54118015610c89575060b4600a5442610c879190611c08565b105b15610e0957600f54600e60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060004381526020019081526020016000205410610d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1990611cae565b60405180910390fd5b600e60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060004381526020019081526020016000206000815480929190610d8390611cce565b9190505550601154601060004381526020019081526020016000205410610ddf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd690611d62565b60405180910390fd5b601060004381526020019081526020016000206000815480929190610e0390611cce565b91905055505b60006127108486610e1a9190611d82565b610e249190611df3565b90508085610e329190611c08565b9450610e4587308361132660201b60201c565b505b80158015610e9f5750600c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15610ef05760006127108486610eb59190611d82565b610ebf9190611df3565b90508085610ecd9190611c08565b9450610ee087308361132660201b60201c565b610eee61154b60201b60201c565b505b610f62565b80158015610f4d5750600c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15610f6157610f6061154b60201b60201c565b5b5b5b600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610fd4575081610fc68661170f60201b60201c565b85610fd19190611e24565b11155b611013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100a90611ea4565b60405180910390fd5b61102486868661132660201b60201c565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361109e5760006040517fe602df050000000000000000000000000000000000000000000000000000000081526004016110959190611aba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111105760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016111079190611aba565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080156111fd578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516111f49190611ed3565b60405180910390a35b50505050565b6000806000600a540361121c5760008091509150611322565b6000600a544261122c9190611c08565b9050610e1081101561131657603c81101561125e57610fa0925061029a6080516112569190611df3565b915050611322565b61012c81101561128557610bb892506101f460805161127d9190611df3565b915050611322565b6101e08110156112ac576109c492506101f46080516112a49190611df3565b915050611322565b6102d08110156112d3576107d092506101906080516112cb9190611df3565b915050611322565b6103848110156112fa576103e8925061014d6080516112f29190611df3565b915050611322565b6101f4925060c860805161130e9190611df3565b915050611322565b6080519150600b549250505b9091565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361137857806002600082825461136c9190611e24565b9250508190555061144b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611404578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016113fb93929190611eee565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361149457806002600082825403925050819055506114e1565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161153e9190611ed3565b60405180910390a3505050565b600080600a544261155c9190611c08565b905061012c81101561156f57505061170d565b60006115803061170f60201b60201c565b9050600081036115925750505061170d565b6000600267ffffffffffffffff8111156115af576115ae611762565b5b6040519080825280602002602001820160405280156115dd5781602001602082028036833780820191505090505b50905030816000815181106115f5576115f4611f25565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060c0518160018151811061164657611645611f25565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016116d695949392919061204d565b600060405180830381600087803b1580156116f057600080fd5b505af1158015611704573d6000803e3d6000fd5b50505050505050505b565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806117d857607f821691505b6020821081036117eb576117ea611791565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026118537fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82611816565b61185d8683611816565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006118a461189f61189a84611875565b61187f565b611875565b9050919050565b6000819050919050565b6118be83611889565b6118d26118ca826118ab565b848454611823565b825550505050565b600090565b6118e76118da565b6118f28184846118b5565b505050565b5b818110156119165761190b6000826118df565b6001810190506118f8565b5050565b601f82111561195b5761192c816117f1565b61193584611806565b81016020851015611944578190505b61195861195085611806565b8301826118f7565b50505b505050565b600082821c905092915050565b600061197e60001984600802611960565b1980831691505092915050565b6000611997838361196d565b9150826002028217905092915050565b6119b082611757565b67ffffffffffffffff8111156119c9576119c8611762565b5b6119d382546117c0565b6119de82828561191a565b600060209050601f831160018114611a1157600084156119ff578287015190505b611a09858261198b565b865550611a71565b601f198416611a1f866117f1565b60005b82811015611a4757848901518255600182019150602085019450602081019050611a22565b86831015611a645784890151611a60601f89168261196d565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611aa482611a79565b9050919050565b611ab481611a99565b82525050565b6000602082019050611acf6000830184611aab565b92915050565b600080fd5b611ae381611a99565b8114611aee57600080fd5b50565b600081519050611b0081611ada565b92915050565b600060208284031215611b1c57611b1b611ad5565b5b6000611b2a84828501611af1565b91505092915050565b6000604082019050611b486000830185611aab565b611b556020830184611aab565b9392505050565b600082825260208201905092915050565b7f74726164696e672d6e6f742d656e61626c656400000000000000000000000000600082015250565b6000611ba3601383611b5c565b9150611bae82611b6d565b602082019050919050565b60006020820190508181036000830152611bd281611b96565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611c1382611875565b9150611c1e83611875565b9250828203905081811115611c3657611c35611bd9565b5b92915050565b7f6d61782d6275792d7478732d7065722d626c6f636b2d7065722d6f726967696e60008201527f2d65786365656465640000000000000000000000000000000000000000000000602082015250565b6000611c98602983611b5c565b9150611ca382611c3c565b604082019050919050565b60006020820190508181036000830152611cc781611c8b565b9050919050565b6000611cd982611875565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611d0b57611d0a611bd9565b5b600182019050919050565b7f6d61782d6275792d7478732d7065722d626c6f636b2d65786365656465640000600082015250565b6000611d4c601e83611b5c565b9150611d5782611d16565b602082019050919050565b60006020820190508181036000830152611d7b81611d3f565b9050919050565b6000611d8d82611875565b9150611d9883611875565b9250828202611da681611875565b91508282048414831517611dbd57611dbc611bd9565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611dfe82611875565b9150611e0983611875565b925082611e1957611e18611dc4565b5b828204905092915050565b6000611e2f82611875565b9150611e3a83611875565b9250828201905080821115611e5257611e51611bd9565b5b92915050565b7f6d61782d77616c6c65742d73697a652d65786365656465640000000000000000600082015250565b6000611e8e601883611b5c565b9150611e9982611e58565b602082019050919050565b60006020820190508181036000830152611ebd81611e81565b9050919050565b611ecd81611875565b82525050565b6000602082019050611ee86000830184611ec4565b92915050565b6000606082019050611f036000830186611aab565b611f106020830185611ec4565b611f1d6040830184611ec4565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000611f79611f74611f6f84611f54565b61187f565b611875565b9050919050565b611f8981611f5e565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b611fc481611a99565b82525050565b6000611fd68383611fbb565b60208301905092915050565b6000602082019050919050565b6000611ffa82611f8f565b6120048185611f9a565b935061200f83611fab565b8060005b838110156120405781516120278882611fca565b975061203283611fe2565b925050600181019050612013565b5085935050505092915050565b600060a0820190506120626000830188611ec4565b61206f6020830187611f80565b81810360408301526120818186611fef565b90506120906060830185611aab565b61209d6080830184611ec4565b9695505050505050565b60805160a05160c051612d1861212360003960008181610c1001526120e7015260008181610e4a01528181610f850152818161189c01526118f4015260008181610911015281816115050152818161154a0152818161158f015281816115d4015281816116190152818161165301526116860152612d186000f3fe6080604052600436106101dc5760003560e01c8063590ffdce1161010257806395d89b4111610095578063b3e94ef011610064578063b3e94ef0146106c9578063d9b321b8146106f2578063dd62ed3e1461071d578063f2fde38b1461075a576101dd565b806395d89b411461060a578063a25ba18314610635578063a8aa1b3114610661578063a9059cbb1461068c576101dd565b806376b2fa71116100d157806376b2fa7114610576578063881dce601461059f5780638a8c523c146105c85780638da5cb5b146105df576101dd565b8063590ffdce146104bc5780636dd3d39f146104e557806370a0823114610522578063715018a61461055f576101dd565b806323b872dd1161017a57806332cb6b0c1161014957806332cb6b0c14610400578063412201041461042b57806348cd4cb1146104545780634fbee1931461047f576101dd565b806323b872dd1461034257806324a9d8531461037f5780632fb53e0d146103aa578063313ce567146103d5576101dd565b80630fe3fe7d116101b65780630fe3fe7d1461027257806318160ddd146102af5780631b4ef23c146102da57806321b0248614610305576101dd565b806306fdde03146101df578063095ea7b31461020a5780630c18d4ce14610247576101dd565b5b005b3480156101eb57600080fd5b506101f4610783565b6040516102019190612273565b60405180910390f35b34801561021657600080fd5b50610231600480360381019061022c919061232e565b610815565b60405161023e9190612389565b60405180910390f35b34801561025357600080fd5b5061025c610838565b60405161026991906123b3565b60405180910390f35b34801561027e57600080fd5b506102996004803603810190610294919061232e565b61083e565b6040516102a691906123b3565b60405180910390f35b3480156102bb57600080fd5b506102c4610863565b6040516102d191906123b3565b60405180910390f35b3480156102e657600080fd5b506102ef61086d565b6040516102fc91906123dd565b60405180910390f35b34801561031157600080fd5b5061032c600480360381019061032791906123f8565b610893565b60405161033991906123b3565b60405180910390f35b34801561034e57600080fd5b5061036960048036038101906103649190612425565b6108ab565b6040516103769190612389565b60405180910390f35b34801561038b57600080fd5b506103946108da565b6040516103a191906123b3565b60405180910390f35b3480156103b657600080fd5b506103bf6108e0565b6040516103cc91906123dd565b60405180910390f35b3480156103e157600080fd5b506103ea610906565b6040516103f79190612494565b60405180910390f35b34801561040c57600080fd5b5061041561090f565b60405161042291906123b3565b60405180910390f35b34801561043757600080fd5b50610452600480360381019061044d91906124db565b610933565b005b34801561046057600080fd5b50610469610996565b60405161047691906123b3565b60405180910390f35b34801561048b57600080fd5b506104a660048036038101906104a1919061251b565b61099c565b6040516104b39190612389565b60405180910390f35b3480156104c857600080fd5b506104e360048036038101906104de91906124db565b6109bc565b005b3480156104f157600080fd5b5061050c6004803603810190610507919061251b565b610a1f565b6040516105199190612389565b60405180910390f35b34801561052e57600080fd5b506105496004803603810190610544919061251b565b610a3f565b60405161055691906123b3565b60405180910390f35b34801561056b57600080fd5b50610574610a87565b005b34801561058257600080fd5b5061059d600480360381019061059891906123f8565b610a9b565b005b3480156105ab57600080fd5b506105c660048036038101906105c191906123f8565b610b40565b005b3480156105d457600080fd5b506105dd610d0b565b005b3480156105eb57600080fd5b506105f4610eb4565b60405161060191906123dd565b60405180910390f35b34801561061657600080fd5b5061061f610ede565b60405161062c9190612273565b60405180910390f35b34801561064157600080fd5b5061064a610f70565b604051610658929190612548565b60405180910390f35b34801561066d57600080fd5b50610676610f83565b60405161068391906123dd565b60405180910390f35b34801561069857600080fd5b506106b360048036038101906106ae919061232e565b610fa7565b6040516106c09190612389565b60405180910390f35b3480156106d557600080fd5b506106f060048036038101906106eb9190612571565b610fca565b005b3480156106fe57600080fd5b5061070761109a565b60405161071491906123dd565b60405180910390f35b34801561072957600080fd5b50610744600480360381019061073f91906125c4565b6110c0565b60405161075191906123b3565b60405180910390f35b34801561076657600080fd5b50610781600480360381019061077c919061251b565b611147565b005b60606003805461079290612633565b80601f01602080910402602001604051908101604052809291908181526020018280546107be90612633565b801561080b5780601f106107e05761010080835404028352916020019161080b565b820191906000526020600020905b8154815290600101906020018083116107ee57829003601f168201915b5050505050905090565b6000806108206111cd565b905061082d8185856111d5565b600191505092915050565b600a5481565b600e602052816000526040600020602052806000526040600020600091509150505481565b6000600254905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60106020528060005260406000206000915090505481565b6000806108b66111cd565b90506108c38582856111e7565b6108ce85858561127c565b60019150509392505050565b600b5481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b61093b611370565b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60095481565b600c6020528060005260406000206000915054906101000a900460ff1681565b6109c4611370565b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600d6020528060005260406000206000915054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a8f611370565b610a9960006113f7565b565b610aa3611370565b6009544303610ab85780600b81905550610b3d565b600b54811115610af4576040517fcd4e616700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600b54905081600b819055507f032dc6a2d839eb179729a55633fdf1c41a1fc4739394154117005db2b354b9b58282604051610b33929190612548565b60405180910390a1505b50565b610b48611370565b6000610b5330610a3f565b9050600060648383610b659190612693565b610b6f9190612704565b90506000600267ffffffffffffffff811115610b8e57610b8d612735565b5b604051908082528060200260200182016040528015610bbc5781602001602082028036833780820191505090505b5090503081600081518110610bd457610bd3612764565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000081600181518110610c4357610c42612764565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401610cd3959493929190612896565b600060405180830381600087803b158015610ced57600080fd5b505af1158015610d01573d6000803e3d6000fd5b5050505050505050565b610d13611370565b600060095414610d58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4f9061293c565b60405180910390fd5b610d9730737a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6111d5565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610dd230610a3f565b600080610ddd610eb4565b426040518863ffffffff1660e01b8152600401610dff9695949392919061295c565b60606040518083038185885af1158015610e1d573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610e4291906129d2565b505050610ea47f0000000000000000000000000000000000000000000000000000000000000000737a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6111d5565b4360098190555042600a81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610eed90612633565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1990612633565b8015610f665780601f10610f3b57610100808354040283529160200191610f66565b820191906000526020600020905b815481529060010190602001808311610f4957829003601f168201915b5050505050905090565b600080610f7b6114bd565b915091509091565b7f000000000000000000000000000000000000000000000000000000000000000081565b600080610fb26111cd565b9050610fbf81858561127c565b600191505092915050565b610fd2611370565b82600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61114f611370565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111c15760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016111b891906123dd565b60405180910390fd5b6111ca816113f7565b50565b600033905090565b6111e283838360016116b2565b505050565b60006111f384846110c0565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8110156112765781811015611266578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161125d93929190612a25565b60405180910390fd5b611275848484840360006116b2565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112ee5760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016112e591906123dd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113605760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161135791906123dd565b60405180910390fd5b61136b838383611889565b505050565b6113786111cd565b73ffffffffffffffffffffffffffffffffffffffff16611396610eb4565b73ffffffffffffffffffffffffffffffffffffffff16146113f5576113b96111cd565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016113ec91906123dd565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000806000600a54036114d657600080915091506116ae565b6000600a54426114e69190612a5c565b9050610e1081101561168457603c81101561153657610fa0925061029a7f000000000000000000000000000000000000000000000000000000000000000061152e9190612704565b9150506116ae565b61012c81101561157b57610bb892506101f47f00000000000000000000000000000000000000000000000000000000000000006115739190612704565b9150506116ae565b6101e08110156115c0576109c492506101f47f00000000000000000000000000000000000000000000000000000000000000006115b89190612704565b9150506116ae565b6102d0811015611605576107d092506101907f00000000000000000000000000000000000000000000000000000000000000006115fd9190612704565b9150506116ae565b61038481101561164a576103e8925061014d7f00000000000000000000000000000000000000000000000000000000000000006116429190612704565b9150506116ae565b6101f4925060c87f000000000000000000000000000000000000000000000000000000000000000061167c9190612704565b9150506116ae565b7f00000000000000000000000000000000000000000000000000000000000000009150600b549250505b9091565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036117245760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161171b91906123dd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117965760006040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161178d91906123dd565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015611883578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161187a91906123b3565b60405180910390a35b50505050565b6000806118946114bd565b9150915060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16149050808061194257507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b15611d2557600060095411806119a15750600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6119e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d790612adc565b60405180910390fd5b60008314611cbd57808015611a3f5750600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611c1b576000600a54118015611a63575060b4600a5442611a619190612a5c565b105b15611be357600f54600e60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060004381526020019081526020016000205410611afc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af390612b6e565b60405180910390fd5b600e60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060004381526020019081526020016000206000815480929190611b5d90612b8e565b9190505550601154601060004381526020019081526020016000205410611bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb090612c22565b60405180910390fd5b601060004381526020019081526020016000206000815480929190611bdd90612b8e565b91905055505b60006127108486611bf49190612693565b611bfe9190612704565b90508085611c0c9190612a5c565b9450611c19873083611de2565b505b80158015611c735750600c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611cb85760006127108486611c899190612693565b611c939190612704565b90508085611ca19190612a5c565b9450611cae873083611de2565b611cb6612007565b505b611d24565b80158015611d155750600c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611d2357611d22612007565b5b5b5b600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611d90575081611d8286610a3f565b85611d8d9190612c42565b11155b611dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc690612cc2565b60405180910390fd5b611dda868686611de2565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e34578060026000828254611e289190612c42565b92505081905550611f07565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611ec0578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401611eb793929190612a25565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f505780600260008282540392505081905550611f9d565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611ffa91906123b3565b60405180910390a3505050565b600080600a54426120189190612a5c565b905061012c81101561202b5750506121e1565b600061203630610a3f565b905060008103612048575050506121e1565b6000600267ffffffffffffffff81111561206557612064612735565b5b6040519080825280602002602001820160405280156120935781602001602082028036833780820191505090505b50905030816000815181106120ab576120aa612764565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f00000000000000000000000000000000000000000000000000000000000000008160018151811061211a57612119612764565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016121aa959493929190612896565b600060405180830381600087803b1580156121c457600080fd5b505af11580156121d8573d6000803e3d6000fd5b50505050505050505b565b600081519050919050565b600082825260208201905092915050565b60005b8381101561221d578082015181840152602081019050612202565b60008484015250505050565b6000601f19601f8301169050919050565b6000612245826121e3565b61224f81856121ee565b935061225f8185602086016121ff565b61226881612229565b840191505092915050565b6000602082019050818103600083015261228d818461223a565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122c58261229a565b9050919050565b6122d5816122ba565b81146122e057600080fd5b50565b6000813590506122f2816122cc565b92915050565b6000819050919050565b61230b816122f8565b811461231657600080fd5b50565b60008135905061232881612302565b92915050565b6000806040838503121561234557612344612295565b5b6000612353858286016122e3565b925050602061236485828601612319565b9150509250929050565b60008115159050919050565b6123838161236e565b82525050565b600060208201905061239e600083018461237a565b92915050565b6123ad816122f8565b82525050565b60006020820190506123c860008301846123a4565b92915050565b6123d7816122ba565b82525050565b60006020820190506123f260008301846123ce565b92915050565b60006020828403121561240e5761240d612295565b5b600061241c84828501612319565b91505092915050565b60008060006060848603121561243e5761243d612295565b5b600061244c868287016122e3565b935050602061245d868287016122e3565b925050604061246e86828701612319565b9150509250925092565b600060ff82169050919050565b61248e81612478565b82525050565b60006020820190506124a96000830184612485565b92915050565b6124b88161236e565b81146124c357600080fd5b50565b6000813590506124d5816124af565b92915050565b600080604083850312156124f2576124f1612295565b5b6000612500858286016122e3565b9250506020612511858286016124c6565b9150509250929050565b60006020828403121561253157612530612295565b5b600061253f848285016122e3565b91505092915050565b600060408201905061255d60008301856123a4565b61256a60208301846123a4565b9392505050565b60008060006060848603121561258a57612589612295565b5b6000612598868287016122e3565b93505060206125a9868287016122e3565b92505060406125ba868287016122e3565b9150509250925092565b600080604083850312156125db576125da612295565b5b60006125e9858286016122e3565b92505060206125fa858286016122e3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061264b57607f821691505b60208210810361265e5761265d612604565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061269e826122f8565b91506126a9836122f8565b92508282026126b7816122f8565b915082820484148315176126ce576126cd612664565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061270f826122f8565b915061271a836122f8565b92508261272a576127296126d5565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000819050919050565b60006127c26127bd6127b884612793565b61279d565b6122f8565b9050919050565b6127d2816127a7565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61280d816122ba565b82525050565b600061281f8383612804565b60208301905092915050565b6000602082019050919050565b6000612843826127d8565b61284d81856127e3565b9350612858836127f4565b8060005b838110156128895781516128708882612813565b975061287b8361282b565b92505060018101905061285c565b5085935050505092915050565b600060a0820190506128ab60008301886123a4565b6128b860208301876127c9565b81810360408301526128ca8186612838565b90506128d960608301856123ce565b6128e660808301846123a4565b9695505050505050565b7f74726164696e672d616c72656164792d656e61626c6564000000000000000000600082015250565b60006129266017836121ee565b9150612931826128f0565b602082019050919050565b6000602082019050818103600083015261295581612919565b9050919050565b600060c08201905061297160008301896123ce565b61297e60208301886123a4565b61298b60408301876127c9565b61299860608301866127c9565b6129a560808301856123ce565b6129b260a08301846123a4565b979650505050505050565b6000815190506129cc81612302565b92915050565b6000806000606084860312156129eb576129ea612295565b5b60006129f9868287016129bd565b9350506020612a0a868287016129bd565b9250506040612a1b868287016129bd565b9150509250925092565b6000606082019050612a3a60008301866123ce565b612a4760208301856123a4565b612a5460408301846123a4565b949350505050565b6000612a67826122f8565b9150612a72836122f8565b9250828203905081811115612a8a57612a89612664565b5b92915050565b7f74726164696e672d6e6f742d656e61626c656400000000000000000000000000600082015250565b6000612ac66013836121ee565b9150612ad182612a90565b602082019050919050565b60006020820190508181036000830152612af581612ab9565b9050919050565b7f6d61782d6275792d7478732d7065722d626c6f636b2d7065722d6f726967696e60008201527f2d65786365656465640000000000000000000000000000000000000000000000602082015250565b6000612b586029836121ee565b9150612b6382612afc565b604082019050919050565b60006020820190508181036000830152612b8781612b4b565b9050919050565b6000612b99826122f8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612bcb57612bca612664565b5b600182019050919050565b7f6d61782d6275792d7478732d7065722d626c6f636b2d65786365656465640000600082015250565b6000612c0c601e836121ee565b9150612c1782612bd6565b602082019050919050565b60006020820190508181036000830152612c3b81612bff565b9050919050565b6000612c4d826122f8565b9150612c58836122f8565b9250828201905080821115612c7057612c6f612664565b5b92915050565b7f6d61782d77616c6c65742d73697a652d65786365656465640000000000000000600082015250565b6000612cac6018836121ee565b9150612cb782612c76565b602082019050919050565b60006020820190508181036000830152612cdb81612c9f565b905091905056fea2646970667358221220415ea944f2c2ad6afe55e36a001486c32a6dbc99631e836983c0c1f35c38131764736f6c634300081c0033

Deployed Bytecode

0x6080604052600436106101dc5760003560e01c8063590ffdce1161010257806395d89b4111610095578063b3e94ef011610064578063b3e94ef0146106c9578063d9b321b8146106f2578063dd62ed3e1461071d578063f2fde38b1461075a576101dd565b806395d89b411461060a578063a25ba18314610635578063a8aa1b3114610661578063a9059cbb1461068c576101dd565b806376b2fa71116100d157806376b2fa7114610576578063881dce601461059f5780638a8c523c146105c85780638da5cb5b146105df576101dd565b8063590ffdce146104bc5780636dd3d39f146104e557806370a0823114610522578063715018a61461055f576101dd565b806323b872dd1161017a57806332cb6b0c1161014957806332cb6b0c14610400578063412201041461042b57806348cd4cb1146104545780634fbee1931461047f576101dd565b806323b872dd1461034257806324a9d8531461037f5780632fb53e0d146103aa578063313ce567146103d5576101dd565b80630fe3fe7d116101b65780630fe3fe7d1461027257806318160ddd146102af5780631b4ef23c146102da57806321b0248614610305576101dd565b806306fdde03146101df578063095ea7b31461020a5780630c18d4ce14610247576101dd565b5b005b3480156101eb57600080fd5b506101f4610783565b6040516102019190612273565b60405180910390f35b34801561021657600080fd5b50610231600480360381019061022c919061232e565b610815565b60405161023e9190612389565b60405180910390f35b34801561025357600080fd5b5061025c610838565b60405161026991906123b3565b60405180910390f35b34801561027e57600080fd5b506102996004803603810190610294919061232e565b61083e565b6040516102a691906123b3565b60405180910390f35b3480156102bb57600080fd5b506102c4610863565b6040516102d191906123b3565b60405180910390f35b3480156102e657600080fd5b506102ef61086d565b6040516102fc91906123dd565b60405180910390f35b34801561031157600080fd5b5061032c600480360381019061032791906123f8565b610893565b60405161033991906123b3565b60405180910390f35b34801561034e57600080fd5b5061036960048036038101906103649190612425565b6108ab565b6040516103769190612389565b60405180910390f35b34801561038b57600080fd5b506103946108da565b6040516103a191906123b3565b60405180910390f35b3480156103b657600080fd5b506103bf6108e0565b6040516103cc91906123dd565b60405180910390f35b3480156103e157600080fd5b506103ea610906565b6040516103f79190612494565b60405180910390f35b34801561040c57600080fd5b5061041561090f565b60405161042291906123b3565b60405180910390f35b34801561043757600080fd5b50610452600480360381019061044d91906124db565b610933565b005b34801561046057600080fd5b50610469610996565b60405161047691906123b3565b60405180910390f35b34801561048b57600080fd5b506104a660048036038101906104a1919061251b565b61099c565b6040516104b39190612389565b60405180910390f35b3480156104c857600080fd5b506104e360048036038101906104de91906124db565b6109bc565b005b3480156104f157600080fd5b5061050c6004803603810190610507919061251b565b610a1f565b6040516105199190612389565b60405180910390f35b34801561052e57600080fd5b506105496004803603810190610544919061251b565b610a3f565b60405161055691906123b3565b60405180910390f35b34801561056b57600080fd5b50610574610a87565b005b34801561058257600080fd5b5061059d600480360381019061059891906123f8565b610a9b565b005b3480156105ab57600080fd5b506105c660048036038101906105c191906123f8565b610b40565b005b3480156105d457600080fd5b506105dd610d0b565b005b3480156105eb57600080fd5b506105f4610eb4565b60405161060191906123dd565b60405180910390f35b34801561061657600080fd5b5061061f610ede565b60405161062c9190612273565b60405180910390f35b34801561064157600080fd5b5061064a610f70565b604051610658929190612548565b60405180910390f35b34801561066d57600080fd5b50610676610f83565b60405161068391906123dd565b60405180910390f35b34801561069857600080fd5b506106b360048036038101906106ae919061232e565b610fa7565b6040516106c09190612389565b60405180910390f35b3480156106d557600080fd5b506106f060048036038101906106eb9190612571565b610fca565b005b3480156106fe57600080fd5b5061070761109a565b60405161071491906123dd565b60405180910390f35b34801561072957600080fd5b50610744600480360381019061073f91906125c4565b6110c0565b60405161075191906123b3565b60405180910390f35b34801561076657600080fd5b50610781600480360381019061077c919061251b565b611147565b005b60606003805461079290612633565b80601f01602080910402602001604051908101604052809291908181526020018280546107be90612633565b801561080b5780601f106107e05761010080835404028352916020019161080b565b820191906000526020600020905b8154815290600101906020018083116107ee57829003601f168201915b5050505050905090565b6000806108206111cd565b905061082d8185856111d5565b600191505092915050565b600a5481565b600e602052816000526040600020602052806000526040600020600091509150505481565b6000600254905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60106020528060005260406000206000915090505481565b6000806108b66111cd565b90506108c38582856111e7565b6108ce85858561127c565b60019150509392505050565b600b5481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b7f0000000000000000000000000000000000000000033b2e3c9fd0803ce800000081565b61093b611370565b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60095481565b600c6020528060005260406000206000915054906101000a900460ff1681565b6109c4611370565b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600d6020528060005260406000206000915054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a8f611370565b610a9960006113f7565b565b610aa3611370565b6009544303610ab85780600b81905550610b3d565b600b54811115610af4576040517fcd4e616700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600b54905081600b819055507f032dc6a2d839eb179729a55633fdf1c41a1fc4739394154117005db2b354b9b58282604051610b33929190612548565b60405180910390a1505b50565b610b48611370565b6000610b5330610a3f565b9050600060648383610b659190612693565b610b6f9190612704565b90506000600267ffffffffffffffff811115610b8e57610b8d612735565b5b604051908082528060200260200182016040528015610bbc5781602001602082028036833780820191505090505b5090503081600081518110610bd457610bd3612764565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281600181518110610c4357610c42612764565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401610cd3959493929190612896565b600060405180830381600087803b158015610ced57600080fd5b505af1158015610d01573d6000803e3d6000fd5b5050505050505050565b610d13611370565b600060095414610d58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4f9061293c565b60405180910390fd5b610d9730737a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6111d5565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610dd230610a3f565b600080610ddd610eb4565b426040518863ffffffff1660e01b8152600401610dff9695949392919061295c565b60606040518083038185885af1158015610e1d573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610e4291906129d2565b505050610ea47f0000000000000000000000003e7f2f1616c06dce490cbc9186967a49dd72a4c3737a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6111d5565b4360098190555042600a81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610eed90612633565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1990612633565b8015610f665780601f10610f3b57610100808354040283529160200191610f66565b820191906000526020600020905b815481529060010190602001808311610f4957829003601f168201915b5050505050905090565b600080610f7b6114bd565b915091509091565b7f0000000000000000000000003e7f2f1616c06dce490cbc9186967a49dd72a4c381565b600080610fb26111cd565b9050610fbf81858561127c565b600191505092915050565b610fd2611370565b82600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61114f611370565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111c15760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016111b891906123dd565b60405180910390fd5b6111ca816113f7565b50565b600033905090565b6111e283838360016116b2565b505050565b60006111f384846110c0565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8110156112765781811015611266578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161125d93929190612a25565b60405180910390fd5b611275848484840360006116b2565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112ee5760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016112e591906123dd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113605760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161135791906123dd565b60405180910390fd5b61136b838383611889565b505050565b6113786111cd565b73ffffffffffffffffffffffffffffffffffffffff16611396610eb4565b73ffffffffffffffffffffffffffffffffffffffff16146113f5576113b96111cd565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016113ec91906123dd565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000806000600a54036114d657600080915091506116ae565b6000600a54426114e69190612a5c565b9050610e1081101561168457603c81101561153657610fa0925061029a7f0000000000000000000000000000000000000000033b2e3c9fd0803ce800000061152e9190612704565b9150506116ae565b61012c81101561157b57610bb892506101f47f0000000000000000000000000000000000000000033b2e3c9fd0803ce80000006115739190612704565b9150506116ae565b6101e08110156115c0576109c492506101f47f0000000000000000000000000000000000000000033b2e3c9fd0803ce80000006115b89190612704565b9150506116ae565b6102d0811015611605576107d092506101907f0000000000000000000000000000000000000000033b2e3c9fd0803ce80000006115fd9190612704565b9150506116ae565b61038481101561164a576103e8925061014d7f0000000000000000000000000000000000000000033b2e3c9fd0803ce80000006116429190612704565b9150506116ae565b6101f4925060c87f0000000000000000000000000000000000000000033b2e3c9fd0803ce800000061167c9190612704565b9150506116ae565b7f0000000000000000000000000000000000000000033b2e3c9fd0803ce80000009150600b549250505b9091565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036117245760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161171b91906123dd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117965760006040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161178d91906123dd565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015611883578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161187a91906123b3565b60405180910390a35b50505050565b6000806118946114bd565b9150915060007f0000000000000000000000003e7f2f1616c06dce490cbc9186967a49dd72a4c373ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16149050808061194257507f0000000000000000000000003e7f2f1616c06dce490cbc9186967a49dd72a4c373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b15611d2557600060095411806119a15750600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6119e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d790612adc565b60405180910390fd5b60008314611cbd57808015611a3f5750600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611c1b576000600a54118015611a63575060b4600a5442611a619190612a5c565b105b15611be357600f54600e60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060004381526020019081526020016000205410611afc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af390612b6e565b60405180910390fd5b600e60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060004381526020019081526020016000206000815480929190611b5d90612b8e565b9190505550601154601060004381526020019081526020016000205410611bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb090612c22565b60405180910390fd5b601060004381526020019081526020016000206000815480929190611bdd90612b8e565b91905055505b60006127108486611bf49190612693565b611bfe9190612704565b90508085611c0c9190612a5c565b9450611c19873083611de2565b505b80158015611c735750600c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611cb85760006127108486611c899190612693565b611c939190612704565b90508085611ca19190612a5c565b9450611cae873083611de2565b611cb6612007565b505b611d24565b80158015611d155750600c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611d2357611d22612007565b5b5b5b600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611d90575081611d8286610a3f565b85611d8d9190612c42565b11155b611dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc690612cc2565b60405180910390fd5b611dda868686611de2565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e34578060026000828254611e289190612c42565b92505081905550611f07565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611ec0578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401611eb793929190612a25565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f505780600260008282540392505081905550611f9d565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611ffa91906123b3565b60405180910390a3505050565b600080600a54426120189190612a5c565b905061012c81101561202b5750506121e1565b600061203630610a3f565b905060008103612048575050506121e1565b6000600267ffffffffffffffff81111561206557612064612735565b5b6040519080825280602002602001820160405280156120935781602001602082028036833780820191505090505b50905030816000815181106120ab576120aa612764565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc28160018151811061211a57612119612764565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016121aa959493929190612896565b600060405180830381600087803b1580156121c457600080fd5b505af11580156121d8573d6000803e3d6000fd5b50505050505050505b565b600081519050919050565b600082825260208201905092915050565b60005b8381101561221d578082015181840152602081019050612202565b60008484015250505050565b6000601f19601f8301169050919050565b6000612245826121e3565b61224f81856121ee565b935061225f8185602086016121ff565b61226881612229565b840191505092915050565b6000602082019050818103600083015261228d818461223a565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122c58261229a565b9050919050565b6122d5816122ba565b81146122e057600080fd5b50565b6000813590506122f2816122cc565b92915050565b6000819050919050565b61230b816122f8565b811461231657600080fd5b50565b60008135905061232881612302565b92915050565b6000806040838503121561234557612344612295565b5b6000612353858286016122e3565b925050602061236485828601612319565b9150509250929050565b60008115159050919050565b6123838161236e565b82525050565b600060208201905061239e600083018461237a565b92915050565b6123ad816122f8565b82525050565b60006020820190506123c860008301846123a4565b92915050565b6123d7816122ba565b82525050565b60006020820190506123f260008301846123ce565b92915050565b60006020828403121561240e5761240d612295565b5b600061241c84828501612319565b91505092915050565b60008060006060848603121561243e5761243d612295565b5b600061244c868287016122e3565b935050602061245d868287016122e3565b925050604061246e86828701612319565b9150509250925092565b600060ff82169050919050565b61248e81612478565b82525050565b60006020820190506124a96000830184612485565b92915050565b6124b88161236e565b81146124c357600080fd5b50565b6000813590506124d5816124af565b92915050565b600080604083850312156124f2576124f1612295565b5b6000612500858286016122e3565b9250506020612511858286016124c6565b9150509250929050565b60006020828403121561253157612530612295565b5b600061253f848285016122e3565b91505092915050565b600060408201905061255d60008301856123a4565b61256a60208301846123a4565b9392505050565b60008060006060848603121561258a57612589612295565b5b6000612598868287016122e3565b93505060206125a9868287016122e3565b92505060406125ba868287016122e3565b9150509250925092565b600080604083850312156125db576125da612295565b5b60006125e9858286016122e3565b92505060206125fa858286016122e3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061264b57607f821691505b60208210810361265e5761265d612604565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061269e826122f8565b91506126a9836122f8565b92508282026126b7816122f8565b915082820484148315176126ce576126cd612664565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061270f826122f8565b915061271a836122f8565b92508261272a576127296126d5565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000819050919050565b60006127c26127bd6127b884612793565b61279d565b6122f8565b9050919050565b6127d2816127a7565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61280d816122ba565b82525050565b600061281f8383612804565b60208301905092915050565b6000602082019050919050565b6000612843826127d8565b61284d81856127e3565b9350612858836127f4565b8060005b838110156128895781516128708882612813565b975061287b8361282b565b92505060018101905061285c565b5085935050505092915050565b600060a0820190506128ab60008301886123a4565b6128b860208301876127c9565b81810360408301526128ca8186612838565b90506128d960608301856123ce565b6128e660808301846123a4565b9695505050505050565b7f74726164696e672d616c72656164792d656e61626c6564000000000000000000600082015250565b60006129266017836121ee565b9150612931826128f0565b602082019050919050565b6000602082019050818103600083015261295581612919565b9050919050565b600060c08201905061297160008301896123ce565b61297e60208301886123a4565b61298b60408301876127c9565b61299860608301866127c9565b6129a560808301856123ce565b6129b260a08301846123a4565b979650505050505050565b6000815190506129cc81612302565b92915050565b6000806000606084860312156129eb576129ea612295565b5b60006129f9868287016129bd565b9350506020612a0a868287016129bd565b9250506040612a1b868287016129bd565b9150509250925092565b6000606082019050612a3a60008301866123ce565b612a4760208301856123a4565b612a5460408301846123a4565b949350505050565b6000612a67826122f8565b9150612a72836122f8565b9250828203905081811115612a8a57612a89612664565b5b92915050565b7f74726164696e672d6e6f742d656e61626c656400000000000000000000000000600082015250565b6000612ac66013836121ee565b9150612ad182612a90565b602082019050919050565b60006020820190508181036000830152612af581612ab9565b9050919050565b7f6d61782d6275792d7478732d7065722d626c6f636b2d7065722d6f726967696e60008201527f2d65786365656465640000000000000000000000000000000000000000000000602082015250565b6000612b586029836121ee565b9150612b6382612afc565b604082019050919050565b60006020820190508181036000830152612b8781612b4b565b9050919050565b6000612b99826122f8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612bcb57612bca612664565b5b600182019050919050565b7f6d61782d6275792d7478732d7065722d626c6f636b2d65786365656465640000600082015250565b6000612c0c601e836121ee565b9150612c1782612bd6565b602082019050919050565b60006020820190508181036000830152612c3b81612bff565b9050919050565b6000612c4d826122f8565b9150612c58836122f8565b9250828201905080821115612c7057612c6f612664565b5b92915050565b7f6d61782d77616c6c65742d73697a652d65786365656465640000000000000000600082015250565b6000612cac6018836121ee565b9150612cb782612c76565b602082019050919050565b60006020820190508181036000830152612cdb81612c9f565b905091905056fea2646970667358221220415ea944f2c2ad6afe55e36a001486c32a6dbc99631e836983c0c1f35c38131764736f6c634300081c0033

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.