ETH Price: $3,949.08 (-1.09%)

Token

Vox Finance 2.0 (VOX2.0)

Overview

Max Total Supply

45,000 VOX2.0

Holders

545 (0.00%)

Total Transfers

-

Market

Price

$2.08 @ 0.000527 ETH

Onchain Market Cap

$93,600.00

Circulating Supply Market Cap

$4,253.60

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Vox Finance is an innovative yield-farming protocol on Arbitrum with a focus on long-term sustainability using revolutionary token mechanics.

Contract Source Code Verified (Exact Match)

Contract Name:
VoxToken

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : VoxToken.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

import "./interfaces/IUniswapV2Factory.sol";
import "./interfaces/IUniswapV2Router02.sol";
import "./interfaces/ISwapManager.sol";

/*
    VOX FINANCE 2.0

    Website: https://vox.finance
    Twitter: https://twitter.com/RealVoxFinance
    Telegram: https://t.me/VoxFinance
 */

contract VoxToken is ERC20, Ownable {
    using SafeMath for uint;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public immutable weth;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    address public marketingWallet;

    ISwapManager public swapManager;
    uint public maxTransactionAmount;
    uint public swapTokensAtAmount;
    uint public maxWallet;

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

    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = true;

    uint public buyTotalFees;
    uint public buyMarketingFee;
    uint public buyLiquidityFee;
    uint public buyBurnFee;

    uint public sellTotalFees;
    uint public sellMarketingFee;
    uint public sellLiquidityFee;
    uint public sellBurnFee;

    uint public tokensForMarketing;
    uint public tokensForLiquidity;
    uint public tokensForBurn;

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

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event SwapManagerUpdated(
        address indexed newManager,
        address indexed oldManager
    );

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

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

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

    event SwapAndLiquify(
        uint tokensSwapped,
        uint usdcReceived,
        uint tokensIntoLiquidity
    );

    constructor() ERC20("Vox Finance 2.0", "VOX2.0") {
        // BSC TESTNET ROUTER: 0x9Ac64Cc6e4415144C455BD8E4837Fea55603e5c3
        // FANTOM TESTNET ROUTER: 0xa6AD18C2aC47803E193F75c3677b14BF19B94883
        // ARBITRUM GOERLI ROUTER: 0x81cD91B6BD7D275a7AeebBA15929AE0f0751d18C
        // ARBITRUM MAINNET SUSHI ROUTER: 0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506);

        // ARBITRUM GOERLI WETH: 0xEe01c0CD76354C383B8c7B4e65EA88D00B06f36f
        // ARBITRUM MAINNET WETH: 0x82aF49447D8a07e3bd95BD0d56f35241523fBab1
        weth = address(0x82aF49447D8a07e3bd95BD0d56f35241523fBab1);

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

        address pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), weth);
            
        uniswapV2Pair = pair;
        excludeFromMaxTransaction(pair, true);
        _setAutomatedMarketMakerPair(pair, true);

        uint totalSupply = 45_000 * 1e18;

        maxTransactionAmount = totalSupply * 5 / 1000;
        maxWallet = totalSupply / 100;
        swapTokensAtAmount = totalSupply / 2000;

        buyMarketingFee = 2;
        buyLiquidityFee = 1;
        buyBurnFee = 1;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyBurnFee;

        sellMarketingFee = 2;
        sellLiquidityFee = 1;
        sellBurnFee = 1;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellBurnFee;

        marketingWallet = address(0xB565A72868A70da734DA10e3750196Dd82Cb7f16);

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

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(deadAddress, true);
        excludeFromMaxTransaction(marketingWallet, true);

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

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        require (
            address(swapManager) != address(0), 
            "Need to set swap manager"
        );
        tradingActive = true;
        swapEnabled = true;
    }

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

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

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

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

    function updateSwapManager(address newManager) external onlyOwner {
        emit SwapManagerUpdated(newManager, address(swapManager));
        swapManager = ISwapManager(newManager);
        excludeFromFees(newManager, true);
        excludeFromMaxTransaction(newManager, true);
    }

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

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

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit MarketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

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

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

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

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                } else {
                    // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                    if (transferDelayEnabled) {
                        if (
                            to != owner() &&
                            to != address(uniswapV2Router) &&
                            to != address(uniswapV2Pair) &&
                            !_isExcludedFromFees[from]
                        ) {
                            require(
                                _holderLastTransferTimestamp[tx.origin] <
                                    block.number,
                                "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                            );
                            _holderLastTransferTimestamp[tx.origin] = block.number;
                        }
                    }

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

        uint contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForBurn += (fees * sellBurnFee) / sellTotalFees;
                
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForBurn += (fees * buyBurnFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

    function swapBack() private {
        uint contractBalance = balanceOf(address(this));
        uint totalTokensToSwap = tokensForMarketing +
            tokensForLiquidity +
            tokensForBurn;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

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

        // Halve the amount of liquidity tokens
        uint liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap / 2;
        uint amountToSwapForEth = contractBalance.sub(liquidityTokens);

        uint initialEthBalance = IERC20(weth).balanceOf(address(this));

        _approve(address(this), address(swapManager), amountToSwapForEth);
        swapManager.swapToWeth(amountToSwapForEth);

        uint wethBalance = IERC20(weth).balanceOf(address(this)).sub(initialEthBalance);

        uint ethForMarketing = wethBalance.mul(tokensForMarketing).div(totalTokensToSwap);
        uint ethForLiquidity = wethBalance.mul(tokensForLiquidity).div(totalTokensToSwap);
        uint ethForBurn = wethBalance - ethForMarketing - ethForLiquidity;

        tokensForMarketing = 0;
        tokensForLiquidity = 0;
        tokensForBurn = 0;

        IERC20(weth).transfer(marketingWallet, ethForMarketing);

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            _approve(address(this), address(swapManager), liquidityTokens);
            IERC20(weth).approve(address(swapManager), ethForLiquidity);

            swapManager.addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForEth,
                ethForLiquidity,
                tokensForLiquidity
            );
        }

        IERC20(weth).approve(address(swapManager), ethForBurn);
        swapManager.buyAndBurn(ethForBurn);
    }

    function recover(address _token) external onlyOwner {
        require(_token != address(this), "Can not recover base token");
        uint balance = IERC20(_token).balanceOf(address(this));
        if (balance > 0) {
            IERC20(_token).transfer(owner(), balance);
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 4 of 10 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 5 of 10 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 7 of 10 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 10 : ISwapManager.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface ISwapManager {
    function addLiquidity(uint voxAmount, uint wethAmount) external;
    function swapToWeth(uint voxAmount) external;
    function buyAndBurn(uint wethAmount) external;
}

File 9 of 10 : IUniswapV2Factory.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

    function allPairs(uint) external view returns (address pair);

    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

File 10 of 10 : IUniswapV2Router02.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface IUniswapV2Router02 {
    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 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
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"MarketingWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"OperationsWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"usdcReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newManager","type":"address"},{"indexed":true,"internalType":"address","name":"oldManager","type":"address"}],"name":"SwapManagerUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"TeamWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"recover","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapManager","outputs":[{"internalType":"contract ISwapManager","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newManager","type":"address"}],"name":"updateSwapManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"weth","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60e06040526001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055506001600d60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600f81526020017f566f782046696e616e636520322e3000000000000000000000000000000000008152506040518060400160405280600681526020017f564f58322e3000000000000000000000000000000000000000000000000000008152508160039081620000fb919062000cb7565b5080600490816200010d919062000cb7565b50505062000130620001246200057660201b60201c565b6200057e60201b60201c565b6000731b02da8cb0d097eb8d57a175b88c7d8b4799750690507382af49447d8a07e3bd95bd0d56f35241523fbab173ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff1681525050620001a48160016200064460201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000226573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200024c919062000e08565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060c0516040518363ffffffff1660e01b81526004016200028a92919062000e4b565b6020604051808303816000875af1158015620002aa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002d0919062000e08565b90508073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050620003198160016200064460201b60201c565b6200032c816001620006af60201b60201c565b600069098774738bc82220000090506103e86005826200034d919062000ea7565b62000359919062000f21565b6008819055506064816200036e919062000f21565b600a819055506107d08162000384919062000f21565b6009819055506002600f8190555060016010819055506001601181905550601154601054600f54620003b7919062000f59565b620003c3919062000f59565b600e81905550600260138190555060016014819055506001601581905550601554601454601354620003f6919062000f59565b62000402919062000f59565b60128190555073b565a72868a70da734da10e3750196dd82cb7f16600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200047f620004716200075060201b60201c565b60016200077a60201b60201c565b620004923060016200077a60201b60201c565b620004a761dead60016200077a60201b60201c565b620004dc600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200077a60201b60201c565b620004fe620004f06200075060201b60201c565b60016200064460201b60201c565b620005113060016200064460201b60201c565b6200052661dead60016200064460201b60201c565b6200055b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200064460201b60201c565b6200056d33826200083560201b60201c565b505050620010f1565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000654620009a260201b60201c565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200078a620009a260201b60201c565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000829919062000fb1565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620008a7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200089e906200102f565b60405180910390fd5b620008bb6000838362000a3360201b60201c565b8060026000828254620008cf919062000f59565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000982919062001062565b60405180910390a36200099e6000838362000a3860201b60201c565b5050565b620009b26200057660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620009d86200075060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000a31576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a2890620010cf565b60405180910390fd5b565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000abf57607f821691505b60208210810362000ad55762000ad462000a77565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000b3f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b00565b62000b4b868362000b00565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000b9862000b9262000b8c8462000b63565b62000b6d565b62000b63565b9050919050565b6000819050919050565b62000bb48362000b77565b62000bcc62000bc38262000b9f565b84845462000b0d565b825550505050565b600090565b62000be362000bd4565b62000bf081848462000ba9565b505050565b5b8181101562000c185762000c0c60008262000bd9565b60018101905062000bf6565b5050565b601f82111562000c675762000c318162000adb565b62000c3c8462000af0565b8101602085101562000c4c578190505b62000c6462000c5b8562000af0565b83018262000bf5565b50505b505050565b600082821c905092915050565b600062000c8c6000198460080262000c6c565b1980831691505092915050565b600062000ca7838362000c79565b9150826002028217905092915050565b62000cc28262000a3d565b67ffffffffffffffff81111562000cde5762000cdd62000a48565b5b62000cea825462000aa6565b62000cf782828562000c1c565b600060209050601f83116001811462000d2f576000841562000d1a578287015190505b62000d26858262000c99565b86555062000d96565b601f19841662000d3f8662000adb565b60005b8281101562000d695784890151825560018201915060208501945060208101905062000d42565b8683101562000d89578489015162000d85601f89168262000c79565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000dd08262000da3565b9050919050565b62000de28162000dc3565b811462000dee57600080fd5b50565b60008151905062000e028162000dd7565b92915050565b60006020828403121562000e215762000e2062000d9e565b5b600062000e318482850162000df1565b91505092915050565b62000e458162000dc3565b82525050565b600060408201905062000e62600083018562000e3a565b62000e71602083018462000e3a565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000eb48262000b63565b915062000ec18362000b63565b925082820262000ed18162000b63565b9150828204841483151762000eeb5762000eea62000e78565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000f2e8262000b63565b915062000f3b8362000b63565b92508262000f4e5762000f4d62000ef2565b5b828204905092915050565b600062000f668262000b63565b915062000f738362000b63565b925082820190508082111562000f8e5762000f8d62000e78565b5b92915050565b60008115159050919050565b62000fab8162000f94565b82525050565b600060208201905062000fc8600083018462000fa0565b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001017601f8362000fce565b9150620010248262000fdf565b602082019050919050565b600060208201905081810360008301526200104a8162001008565b9050919050565b6200105c8162000b63565b82525050565b600060208201905062001079600083018462001051565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620010b760208362000fce565b9150620010c4826200107f565b602082019050919050565b60006020820190508181036000830152620010ea81620010a8565b9050919050565b60805160a05160c0516143496200115960003960008181610ccb01528181612b0901528181612c6501528181612d9801528181612e9b0152613029015260008181610cef015281816111700152611d3e015260008181610c160152611ce601526143496000f3fe608060405234801561001057600080fd5b506004361061030c5760003560e01c80637bce5a041161019d578063c0246668116100e9578063e2f45605116100a2578063f11a24d31161007c578063f11a24d314610941578063f2fde38b1461095f578063f63743421461097b578063f8b45b05146109995761030c565b8063e2f45605146108e7578063e71dc3f514610905578063e884f260146109235761030c565b8063c024666814610811578063c876d0b91461082d578063c8c8ebe41461084b578063d257b34f14610869578063d85ba06314610899578063dd62ed3e146108b75761030c565b80639a7a23d611610156578063aacebbe311610130578063aacebbe314610789578063adb873bd146107a5578063b62496f5146107c3578063bbc0c742146107f35761030c565b80639a7a23d61461070d578063a457c2d714610729578063a9059cbb146107595761030c565b80637bce5a041461066f5780638a8c523c1461068d5780638da5cb5b1461069757806392136913146106b5578063924de9b7146106d357806395d89b41146106ef5761030c565b80633fc8cef31161025c5780636ddd171311610215578063715018a6116101ef578063715018a61461060d578063751039fc146106175780637571336a1461063557806375f0a874146106515761030c565b80636ddd1713146105a1578063709d039d146105bf57806370a08231146105dd5761030c565b80633fc8cef3146104dd57806349bd5a5e146104fb5780634a62bb65146105195780634c36fad7146105375780634fbee193146105535780636a486a8e146105835761030c565b80631a8145bb116102c957806323b872dd116102a357806323b872dd1461044157806327c8f83514610471578063313ce5671461048f57806339509351146104ad5761030c565b80631a8145bb146103e75780631d777856146104055780631f3fed8f146104235761030c565b806306fdde0314610311578063095ea7b31461032f5780630cd865ec1461035f57806310d5de531461037b5780631694505e146103ab57806318160ddd146103c9575b600080fd5b6103196109b7565b604051610326919061325d565b60405180910390f35b61034960048036038101906103449190613318565b610a49565b6040516103569190613373565b60405180910390f35b6103796004803603810190610374919061338e565b610a6c565b005b6103956004803603810190610390919061338e565b610bf4565b6040516103a29190613373565b60405180910390f35b6103b3610c14565b6040516103c0919061341a565b60405180910390f35b6103d1610c38565b6040516103de9190613444565b60405180910390f35b6103ef610c42565b6040516103fc9190613444565b60405180910390f35b61040d610c48565b60405161041a9190613444565b60405180910390f35b61042b610c4e565b6040516104389190613444565b60405180910390f35b61045b6004803603810190610456919061345f565b610c54565b6040516104689190613373565b60405180910390f35b610479610c83565b60405161048691906134c1565b60405180910390f35b610497610c89565b6040516104a491906134f8565b60405180910390f35b6104c760048036038101906104c29190613318565b610c92565b6040516104d49190613373565b60405180910390f35b6104e5610cc9565b6040516104f291906134c1565b60405180910390f35b610503610ced565b60405161051091906134c1565b60405180910390f35b610521610d11565b60405161052e9190613373565b60405180910390f35b610551600480360381019061054c919061338e565b610d24565b005b61056d6004803603810190610568919061338e565b610e02565b60405161057a9190613373565b60405180910390f35b61058b610e58565b6040516105989190613444565b60405180910390f35b6105a9610e5e565b6040516105b69190613373565b60405180910390f35b6105c7610e71565b6040516105d49190613534565b60405180910390f35b6105f760048036038101906105f2919061338e565b610e97565b6040516106049190613444565b60405180910390f35b610615610edf565b005b61061f610ef3565b60405161062c9190613373565b60405180910390f35b61064f600480360381019061064a919061357b565b610f1f565b005b610659610f82565b60405161066691906134c1565b60405180910390f35b610677610fa8565b6040516106849190613444565b60405180910390f35b610695610fae565b005b61069f61107f565b6040516106ac91906134c1565b60405180910390f35b6106bd6110a9565b6040516106ca9190613444565b60405180910390f35b6106ed60048036038101906106e891906135bb565b6110af565b005b6106f76110d4565b604051610704919061325d565b60405180910390f35b6107276004803603810190610722919061357b565b611166565b005b610743600480360381019061073e9190613318565b61120a565b6040516107509190613373565b60405180910390f35b610773600480360381019061076e9190613318565b611281565b6040516107809190613373565b60405180910390f35b6107a3600480360381019061079e919061338e565b6112a4565b005b6107ad61136c565b6040516107ba9190613444565b60405180910390f35b6107dd60048036038101906107d8919061338e565b611372565b6040516107ea9190613373565b60405180910390f35b6107fb611392565b6040516108089190613373565b60405180910390f35b61082b6004803603810190610826919061357b565b6113a5565b005b610835611456565b6040516108429190613373565b60405180910390f35b610853611469565b6040516108609190613444565b60405180910390f35b610883600480360381019061087e91906135e8565b61146f565b6040516108909190613373565b60405180910390f35b6108a1611550565b6040516108ae9190613444565b60405180910390f35b6108d160048036038101906108cc9190613615565b611556565b6040516108de9190613444565b60405180910390f35b6108ef6115dd565b6040516108fc9190613444565b60405180910390f35b61090d6115e3565b60405161091a9190613444565b60405180910390f35b61092b6115e9565b6040516109389190613373565b60405180910390f35b610949611615565b6040516109569190613444565b60405180910390f35b6109796004803603810190610974919061338e565b61161b565b005b61098361169e565b6040516109909190613444565b60405180910390f35b6109a16116a4565b6040516109ae9190613444565b60405180910390f35b6060600380546109c690613684565b80601f01602080910402602001604051908101604052809291908181526020018280546109f290613684565b8015610a3f5780601f10610a1457610100808354040283529160200191610a3f565b820191906000526020600020905b815481529060010190602001808311610a2257829003601f168201915b5050505050905090565b600080610a546116aa565b9050610a618185856116b2565b600191505092915050565b610a7461187b565b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad990613701565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610b1d91906134c1565b602060405180830381865afa158015610b3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b5e9190613736565b90506000811115610bf0578173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610b8d61107f565b836040518363ffffffff1660e01b8152600401610bab929190613763565b6020604051808303816000875af1158015610bca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bee91906137a1565b505b5050565b601a6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b60175481565b60185481565b60165481565b600080610c5f6116aa565b9050610c6c8582856118f9565b610c77858585611985565b60019150509392505050565b61dead81565b60006012905090565b600080610c9d6116aa565b9050610cbe818585610caf8589611556565b610cb991906137fd565b6116b2565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b610d2c61187b565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fb3fd0123f0059326c0d3771de6b52f7cc07866caff01a05b16473ae87d382bf960405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610df48160016113a5565b610dff816001610f1f565b50565b6000601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60125481565b600b60029054906101000a900460ff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ee761187b565b610ef16000612677565b565b6000610efd61187b565b6000600b60006101000a81548160ff0219169083151502179055506001905090565b610f2761187b565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f5481565b610fb661187b565b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611047576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103e9061387d565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60135481565b6110b761187b565b80600b60026101000a81548160ff02191690831515021790555050565b6060600480546110e390613684565b80601f016020809104026020016040519081016040528092919081815260200182805461110f90613684565b801561115c5780601f106111315761010080835404028352916020019161115c565b820191906000526020600020905b81548152906001019060200180831161113f57829003601f168201915b5050505050905090565b61116e61187b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f39061390f565b60405180910390fd5b611206828261273d565b5050565b6000806112156116aa565b905060006112238286611556565b905083811015611268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125f906139a1565b60405180910390fd5b61127582868684036116b2565b60019250505092915050565b60008061128c6116aa565b9050611299818585611985565b600191505092915050565b6112ac61187b565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6760405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60155481565b601b6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b6113ad61187b565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161144a9190613373565b60405180910390a25050565b600d60009054906101000a900460ff1681565b60085481565b600061147961187b565b620186a06001611487610c38565b61149191906139c1565b61149b9190613a32565b8210156114dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d490613ad5565b60405180910390fd5b6103e860056114ea610c38565b6114f491906139c1565b6114fe9190613a32565b821115611540576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153790613b67565b60405180910390fd5b8160098190555060019050919050565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60115481565b60006115f361187b565b6000600d60006101000a81548160ff0219169083151502179055506001905090565b60105481565b61162361187b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168990613bf9565b60405180910390fd5b61169b81612677565b50565b60145481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611721576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171890613c8b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611790576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178790613d1d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161186e9190613444565b60405180910390a3505050565b6118836116aa565b73ffffffffffffffffffffffffffffffffffffffff166118a161107f565b73ffffffffffffffffffffffffffffffffffffffff16146118f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ee90613d89565b60405180910390fd5b565b60006119058484611556565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461197f5781811015611971576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196890613df5565b60405180910390fd5b61197e84848484036116b2565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119eb90613e87565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5a90613f19565b60405180910390fd5b60008103611a7c57611a77838360006127de565b612672565b600b60009054906101000a900460ff161561219a57611a9961107f565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611b075750611ad761107f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611b405750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611b7a575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611b935750600560149054906101000a900460ff16155b1561219957600b60019054906101000a900460ff16611c9157601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611c4d5750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8390613f85565b60405180910390fd5b612198565b600d60009054906101000a900460ff1615611eaf57611cae61107f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611d3557507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611d8d57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611de35750601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611eae5743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611e69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e609061403d565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611f525750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611ff957600854811115611f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f93906140cf565b60405180910390fd5b600a54611fa883610e97565b82611fb391906137fd565b1115611ff4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611feb9061413b565b60405180910390fd5b612197565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561209c5750601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156120eb576008548111156120e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120dd906141cd565b60405180910390fd5b612196565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661219557600a5461214883610e97565b8261215391906137fd565b1115612194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218b9061413b565b60405180910390fd5b5b5b5b5b5b5b60006121a530610e97565b9050600060095482101590508080156121ca5750600b60029054906101000a900460ff165b80156121e35750600560149054906101000a900460ff16155b80156122395750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561228f5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156122e55750601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612329576001600560146101000a81548160ff02191690831515021790555061230d612a54565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806123df5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156123e957600090505b6000811561266257601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561244c57506000601254115b1561251957612479606461246b6012548861318190919063ffffffff16565b61319790919063ffffffff16565b90506012546013548261248c91906139c1565b6124969190613a32565b601660008282546124a791906137fd565b92505081905550601254601454826124bf91906139c1565b6124c99190613a32565b601760008282546124da91906137fd565b92505081905550601254601554826124f291906139c1565b6124fc9190613a32565b6018600082825461250d91906137fd565b9250508190555061263e565b601b60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561257457506000600e54115b1561263d576125a16064612593600e548861318190919063ffffffff16565b61319790919063ffffffff16565b9050600e54600f54826125b491906139c1565b6125be9190613a32565b601660008282546125cf91906137fd565b92505081905550600e54601054826125e791906139c1565b6125f19190613a32565b6017600082825461260291906137fd565b92505081905550600e546011548261261a91906139c1565b6126249190613a32565b6018600082825461263591906137fd565b925050819055505b5b6000811115612653576126528730836127de565b5b808561265f91906141ed565b94505b61266d8787876127de565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361284d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284490613e87565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036128bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b390613f19565b60405180910390fd5b6128c78383836131ad565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561294d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294490614293565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612a3b9190613444565b60405180910390a3612a4e8484846131b2565b50505050565b6000612a5f30610e97565b90506000601854601754601654612a7691906137fd565b612a8091906137fd565b90506000821480612a915750600081145b15612a9d57505061317f565b6014600954612aac91906139c1565b821115612ac5576014600954612ac291906139c1565b91505b600060028260175485612ad891906139c1565b612ae29190613a32565b612aec9190613a32565b90506000612b0382856131b790919063ffffffff16565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401612b6091906134c1565b602060405180830381865afa158015612b7d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ba19190613736565b9050612bd030600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846116b2565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fb6a4c2c836040518263ffffffff1660e01b8152600401612c2b9190613444565b600060405180830381600087803b158015612c4557600080fd5b505af1158015612c59573d6000803e3d6000fd5b505050506000612d0b827f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401612cbc91906134c1565b602060405180830381865afa158015612cd9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cfd9190613736565b6131b790919063ffffffff16565b90506000612d3686612d286016548561318190919063ffffffff16565b61319790919063ffffffff16565b90506000612d6187612d536017548661318190919063ffffffff16565b61319790919063ffffffff16565b90506000818385612d7291906141ed565b612d7c91906141ed565b90506000601681905550600060178190555060006018819055507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518363ffffffff1660e01b8152600401612e13929190613763565b6020604051808303816000875af1158015612e32573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e5691906137a1565b50600087118015612e675750600082115b1561302757612e9930600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16896116b2565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b8152600401612f16929190613763565b6020604051808303816000875af1158015612f35573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f5991906137a1565b50600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639cd441da88846040518363ffffffff1660e01b8152600401612fb79291906142b3565b600060405180830381600087803b158015612fd157600080fd5b505af1158015612fe5573d6000803e3d6000fd5b505050507f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868360175460405161301e939291906142dc565b60405180910390a15b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b81526004016130a4929190613763565b6020604051808303816000875af11580156130c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130e791906137a1565b50600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166334e6436c826040518263ffffffff1660e01b81526004016131439190613444565b600060405180830381600087803b15801561315d57600080fd5b505af1158015613171573d6000803e3d6000fd5b505050505050505050505050505b565b6000818361318f91906139c1565b905092915050565b600081836131a59190613a32565b905092915050565b505050565b505050565b600081836131c591906141ed565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156132075780820151818401526020810190506131ec565b60008484015250505050565b6000601f19601f8301169050919050565b600061322f826131cd565b61323981856131d8565b93506132498185602086016131e9565b61325281613213565b840191505092915050565b600060208201905081810360008301526132778184613224565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006132af82613284565b9050919050565b6132bf816132a4565b81146132ca57600080fd5b50565b6000813590506132dc816132b6565b92915050565b6000819050919050565b6132f5816132e2565b811461330057600080fd5b50565b600081359050613312816132ec565b92915050565b6000806040838503121561332f5761332e61327f565b5b600061333d858286016132cd565b925050602061334e85828601613303565b9150509250929050565b60008115159050919050565b61336d81613358565b82525050565b60006020820190506133886000830184613364565b92915050565b6000602082840312156133a4576133a361327f565b5b60006133b2848285016132cd565b91505092915050565b6000819050919050565b60006133e06133db6133d684613284565b6133bb565b613284565b9050919050565b60006133f2826133c5565b9050919050565b6000613404826133e7565b9050919050565b613414816133f9565b82525050565b600060208201905061342f600083018461340b565b92915050565b61343e816132e2565b82525050565b60006020820190506134596000830184613435565b92915050565b6000806000606084860312156134785761347761327f565b5b6000613486868287016132cd565b9350506020613497868287016132cd565b92505060406134a886828701613303565b9150509250925092565b6134bb816132a4565b82525050565b60006020820190506134d660008301846134b2565b92915050565b600060ff82169050919050565b6134f2816134dc565b82525050565b600060208201905061350d60008301846134e9565b92915050565b600061351e826133e7565b9050919050565b61352e81613513565b82525050565b60006020820190506135496000830184613525565b92915050565b61355881613358565b811461356357600080fd5b50565b6000813590506135758161354f565b92915050565b600080604083850312156135925761359161327f565b5b60006135a0858286016132cd565b92505060206135b185828601613566565b9150509250929050565b6000602082840312156135d1576135d061327f565b5b60006135df84828501613566565b91505092915050565b6000602082840312156135fe576135fd61327f565b5b600061360c84828501613303565b91505092915050565b6000806040838503121561362c5761362b61327f565b5b600061363a858286016132cd565b925050602061364b858286016132cd565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061369c57607f821691505b6020821081036136af576136ae613655565b5b50919050565b7f43616e206e6f74207265636f766572206261736520746f6b656e000000000000600082015250565b60006136eb601a836131d8565b91506136f6826136b5565b602082019050919050565b6000602082019050818103600083015261371a816136de565b9050919050565b600081519050613730816132ec565b92915050565b60006020828403121561374c5761374b61327f565b5b600061375a84828501613721565b91505092915050565b600060408201905061377860008301856134b2565b6137856020830184613435565b9392505050565b60008151905061379b8161354f565b92915050565b6000602082840312156137b7576137b661327f565b5b60006137c58482850161378c565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613808826132e2565b9150613813836132e2565b925082820190508082111561382b5761382a6137ce565b5b92915050565b7f4e65656420746f207365742073776170206d616e616765720000000000000000600082015250565b60006138676018836131d8565b915061387282613831565b602082019050919050565b600060208201905081810360008301526138968161385a565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006138f96039836131d8565b91506139048261389d565b604082019050919050565b60006020820190508181036000830152613928816138ec565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061398b6025836131d8565b91506139968261392f565b604082019050919050565b600060208201905081810360008301526139ba8161397e565b9050919050565b60006139cc826132e2565b91506139d7836132e2565b92508282026139e5816132e2565b915082820484148315176139fc576139fb6137ce565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613a3d826132e2565b9150613a48836132e2565b925082613a5857613a57613a03565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613abf6035836131d8565b9150613aca82613a63565b604082019050919050565b60006020820190508181036000830152613aee81613ab2565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000613b516034836131d8565b9150613b5c82613af5565b604082019050919050565b60006020820190508181036000830152613b8081613b44565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613be36026836131d8565b9150613bee82613b87565b604082019050919050565b60006020820190508181036000830152613c1281613bd6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613c756024836131d8565b9150613c8082613c19565b604082019050919050565b60006020820190508181036000830152613ca481613c68565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d076022836131d8565b9150613d1282613cab565b604082019050919050565b60006020820190508181036000830152613d3681613cfa565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613d736020836131d8565b9150613d7e82613d3d565b602082019050919050565b60006020820190508181036000830152613da281613d66565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613ddf601d836131d8565b9150613dea82613da9565b602082019050919050565b60006020820190508181036000830152613e0e81613dd2565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613e716025836131d8565b9150613e7c82613e15565b604082019050919050565b60006020820190508181036000830152613ea081613e64565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613f036023836131d8565b9150613f0e82613ea7565b604082019050919050565b60006020820190508181036000830152613f3281613ef6565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613f6f6016836131d8565b9150613f7a82613f39565b602082019050919050565b60006020820190508181036000830152613f9e81613f62565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006140276049836131d8565b915061403282613fa5565b606082019050919050565b600060208201905081810360008301526140568161401a565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006140b96035836131d8565b91506140c48261405d565b604082019050919050565b600060208201905081810360008301526140e8816140ac565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006141256013836131d8565b9150614130826140ef565b602082019050919050565b6000602082019050818103600083015261415481614118565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006141b76036836131d8565b91506141c28261415b565b604082019050919050565b600060208201905081810360008301526141e6816141aa565b9050919050565b60006141f8826132e2565b9150614203836132e2565b925082820390508181111561421b5761421a6137ce565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061427d6026836131d8565b915061428882614221565b604082019050919050565b600060208201905081810360008301526142ac81614270565b9050919050565b60006040820190506142c86000830185613435565b6142d56020830184613435565b9392505050565b60006060820190506142f16000830186613435565b6142fe6020830185613435565b61430b6040830184613435565b94935050505056fea2646970667358221220fdf36796d3fb4ec8381932841b556fd3c0b3e9f17726ee304430c1118be3bf3164736f6c63430008130033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061030c5760003560e01c80637bce5a041161019d578063c0246668116100e9578063e2f45605116100a2578063f11a24d31161007c578063f11a24d314610941578063f2fde38b1461095f578063f63743421461097b578063f8b45b05146109995761030c565b8063e2f45605146108e7578063e71dc3f514610905578063e884f260146109235761030c565b8063c024666814610811578063c876d0b91461082d578063c8c8ebe41461084b578063d257b34f14610869578063d85ba06314610899578063dd62ed3e146108b75761030c565b80639a7a23d611610156578063aacebbe311610130578063aacebbe314610789578063adb873bd146107a5578063b62496f5146107c3578063bbc0c742146107f35761030c565b80639a7a23d61461070d578063a457c2d714610729578063a9059cbb146107595761030c565b80637bce5a041461066f5780638a8c523c1461068d5780638da5cb5b1461069757806392136913146106b5578063924de9b7146106d357806395d89b41146106ef5761030c565b80633fc8cef31161025c5780636ddd171311610215578063715018a6116101ef578063715018a61461060d578063751039fc146106175780637571336a1461063557806375f0a874146106515761030c565b80636ddd1713146105a1578063709d039d146105bf57806370a08231146105dd5761030c565b80633fc8cef3146104dd57806349bd5a5e146104fb5780634a62bb65146105195780634c36fad7146105375780634fbee193146105535780636a486a8e146105835761030c565b80631a8145bb116102c957806323b872dd116102a357806323b872dd1461044157806327c8f83514610471578063313ce5671461048f57806339509351146104ad5761030c565b80631a8145bb146103e75780631d777856146104055780631f3fed8f146104235761030c565b806306fdde0314610311578063095ea7b31461032f5780630cd865ec1461035f57806310d5de531461037b5780631694505e146103ab57806318160ddd146103c9575b600080fd5b6103196109b7565b604051610326919061325d565b60405180910390f35b61034960048036038101906103449190613318565b610a49565b6040516103569190613373565b60405180910390f35b6103796004803603810190610374919061338e565b610a6c565b005b6103956004803603810190610390919061338e565b610bf4565b6040516103a29190613373565b60405180910390f35b6103b3610c14565b6040516103c0919061341a565b60405180910390f35b6103d1610c38565b6040516103de9190613444565b60405180910390f35b6103ef610c42565b6040516103fc9190613444565b60405180910390f35b61040d610c48565b60405161041a9190613444565b60405180910390f35b61042b610c4e565b6040516104389190613444565b60405180910390f35b61045b6004803603810190610456919061345f565b610c54565b6040516104689190613373565b60405180910390f35b610479610c83565b60405161048691906134c1565b60405180910390f35b610497610c89565b6040516104a491906134f8565b60405180910390f35b6104c760048036038101906104c29190613318565b610c92565b6040516104d49190613373565b60405180910390f35b6104e5610cc9565b6040516104f291906134c1565b60405180910390f35b610503610ced565b60405161051091906134c1565b60405180910390f35b610521610d11565b60405161052e9190613373565b60405180910390f35b610551600480360381019061054c919061338e565b610d24565b005b61056d6004803603810190610568919061338e565b610e02565b60405161057a9190613373565b60405180910390f35b61058b610e58565b6040516105989190613444565b60405180910390f35b6105a9610e5e565b6040516105b69190613373565b60405180910390f35b6105c7610e71565b6040516105d49190613534565b60405180910390f35b6105f760048036038101906105f2919061338e565b610e97565b6040516106049190613444565b60405180910390f35b610615610edf565b005b61061f610ef3565b60405161062c9190613373565b60405180910390f35b61064f600480360381019061064a919061357b565b610f1f565b005b610659610f82565b60405161066691906134c1565b60405180910390f35b610677610fa8565b6040516106849190613444565b60405180910390f35b610695610fae565b005b61069f61107f565b6040516106ac91906134c1565b60405180910390f35b6106bd6110a9565b6040516106ca9190613444565b60405180910390f35b6106ed60048036038101906106e891906135bb565b6110af565b005b6106f76110d4565b604051610704919061325d565b60405180910390f35b6107276004803603810190610722919061357b565b611166565b005b610743600480360381019061073e9190613318565b61120a565b6040516107509190613373565b60405180910390f35b610773600480360381019061076e9190613318565b611281565b6040516107809190613373565b60405180910390f35b6107a3600480360381019061079e919061338e565b6112a4565b005b6107ad61136c565b6040516107ba9190613444565b60405180910390f35b6107dd60048036038101906107d8919061338e565b611372565b6040516107ea9190613373565b60405180910390f35b6107fb611392565b6040516108089190613373565b60405180910390f35b61082b6004803603810190610826919061357b565b6113a5565b005b610835611456565b6040516108429190613373565b60405180910390f35b610853611469565b6040516108609190613444565b60405180910390f35b610883600480360381019061087e91906135e8565b61146f565b6040516108909190613373565b60405180910390f35b6108a1611550565b6040516108ae9190613444565b60405180910390f35b6108d160048036038101906108cc9190613615565b611556565b6040516108de9190613444565b60405180910390f35b6108ef6115dd565b6040516108fc9190613444565b60405180910390f35b61090d6115e3565b60405161091a9190613444565b60405180910390f35b61092b6115e9565b6040516109389190613373565b60405180910390f35b610949611615565b6040516109569190613444565b60405180910390f35b6109796004803603810190610974919061338e565b61161b565b005b61098361169e565b6040516109909190613444565b60405180910390f35b6109a16116a4565b6040516109ae9190613444565b60405180910390f35b6060600380546109c690613684565b80601f01602080910402602001604051908101604052809291908181526020018280546109f290613684565b8015610a3f5780601f10610a1457610100808354040283529160200191610a3f565b820191906000526020600020905b815481529060010190602001808311610a2257829003601f168201915b5050505050905090565b600080610a546116aa565b9050610a618185856116b2565b600191505092915050565b610a7461187b565b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad990613701565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610b1d91906134c1565b602060405180830381865afa158015610b3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b5e9190613736565b90506000811115610bf0578173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610b8d61107f565b836040518363ffffffff1660e01b8152600401610bab929190613763565b6020604051808303816000875af1158015610bca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bee91906137a1565b505b5050565b601a6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000001b02da8cb0d097eb8d57a175b88c7d8b4799750681565b6000600254905090565b60175481565b60185481565b60165481565b600080610c5f6116aa565b9050610c6c8582856118f9565b610c77858585611985565b60019150509392505050565b61dead81565b60006012905090565b600080610c9d6116aa565b9050610cbe818585610caf8589611556565b610cb991906137fd565b6116b2565b600191505092915050565b7f00000000000000000000000082af49447d8a07e3bd95bd0d56f35241523fbab181565b7f0000000000000000000000007a9d295fd786a89119e2f9f41cd5f183671b9b3f81565b600b60009054906101000a900460ff1681565b610d2c61187b565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fb3fd0123f0059326c0d3771de6b52f7cc07866caff01a05b16473ae87d382bf960405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610df48160016113a5565b610dff816001610f1f565b50565b6000601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60125481565b600b60029054906101000a900460ff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ee761187b565b610ef16000612677565b565b6000610efd61187b565b6000600b60006101000a81548160ff0219169083151502179055506001905090565b610f2761187b565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f5481565b610fb661187b565b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611047576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103e9061387d565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60135481565b6110b761187b565b80600b60026101000a81548160ff02191690831515021790555050565b6060600480546110e390613684565b80601f016020809104026020016040519081016040528092919081815260200182805461110f90613684565b801561115c5780601f106111315761010080835404028352916020019161115c565b820191906000526020600020905b81548152906001019060200180831161113f57829003601f168201915b5050505050905090565b61116e61187b565b7f0000000000000000000000007a9d295fd786a89119e2f9f41cd5f183671b9b3f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f39061390f565b60405180910390fd5b611206828261273d565b5050565b6000806112156116aa565b905060006112238286611556565b905083811015611268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125f906139a1565b60405180910390fd5b61127582868684036116b2565b60019250505092915050565b60008061128c6116aa565b9050611299818585611985565b600191505092915050565b6112ac61187b565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6760405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60155481565b601b6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b6113ad61187b565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161144a9190613373565b60405180910390a25050565b600d60009054906101000a900460ff1681565b60085481565b600061147961187b565b620186a06001611487610c38565b61149191906139c1565b61149b9190613a32565b8210156114dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d490613ad5565b60405180910390fd5b6103e860056114ea610c38565b6114f491906139c1565b6114fe9190613a32565b821115611540576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153790613b67565b60405180910390fd5b8160098190555060019050919050565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60115481565b60006115f361187b565b6000600d60006101000a81548160ff0219169083151502179055506001905090565b60105481565b61162361187b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168990613bf9565b60405180910390fd5b61169b81612677565b50565b60145481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611721576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171890613c8b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611790576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178790613d1d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161186e9190613444565b60405180910390a3505050565b6118836116aa565b73ffffffffffffffffffffffffffffffffffffffff166118a161107f565b73ffffffffffffffffffffffffffffffffffffffff16146118f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ee90613d89565b60405180910390fd5b565b60006119058484611556565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461197f5781811015611971576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196890613df5565b60405180910390fd5b61197e84848484036116b2565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119eb90613e87565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5a90613f19565b60405180910390fd5b60008103611a7c57611a77838360006127de565b612672565b600b60009054906101000a900460ff161561219a57611a9961107f565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611b075750611ad761107f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611b405750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611b7a575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611b935750600560149054906101000a900460ff16155b1561219957600b60019054906101000a900460ff16611c9157601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611c4d5750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8390613f85565b60405180910390fd5b612198565b600d60009054906101000a900460ff1615611eaf57611cae61107f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611d3557507f0000000000000000000000001b02da8cb0d097eb8d57a175b88c7d8b4799750673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611d8d57507f0000000000000000000000007a9d295fd786a89119e2f9f41cd5f183671b9b3f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611de35750601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611eae5743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611e69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e609061403d565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611f525750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611ff957600854811115611f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f93906140cf565b60405180910390fd5b600a54611fa883610e97565b82611fb391906137fd565b1115611ff4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611feb9061413b565b60405180910390fd5b612197565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561209c5750601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156120eb576008548111156120e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120dd906141cd565b60405180910390fd5b612196565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661219557600a5461214883610e97565b8261215391906137fd565b1115612194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218b9061413b565b60405180910390fd5b5b5b5b5b5b5b60006121a530610e97565b9050600060095482101590508080156121ca5750600b60029054906101000a900460ff165b80156121e35750600560149054906101000a900460ff16155b80156122395750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561228f5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156122e55750601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612329576001600560146101000a81548160ff02191690831515021790555061230d612a54565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806123df5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156123e957600090505b6000811561266257601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561244c57506000601254115b1561251957612479606461246b6012548861318190919063ffffffff16565b61319790919063ffffffff16565b90506012546013548261248c91906139c1565b6124969190613a32565b601660008282546124a791906137fd565b92505081905550601254601454826124bf91906139c1565b6124c99190613a32565b601760008282546124da91906137fd565b92505081905550601254601554826124f291906139c1565b6124fc9190613a32565b6018600082825461250d91906137fd565b9250508190555061263e565b601b60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561257457506000600e54115b1561263d576125a16064612593600e548861318190919063ffffffff16565b61319790919063ffffffff16565b9050600e54600f54826125b491906139c1565b6125be9190613a32565b601660008282546125cf91906137fd565b92505081905550600e54601054826125e791906139c1565b6125f19190613a32565b6017600082825461260291906137fd565b92505081905550600e546011548261261a91906139c1565b6126249190613a32565b6018600082825461263591906137fd565b925050819055505b5b6000811115612653576126528730836127de565b5b808561265f91906141ed565b94505b61266d8787876127de565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361284d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284490613e87565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036128bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b390613f19565b60405180910390fd5b6128c78383836131ad565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561294d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294490614293565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612a3b9190613444565b60405180910390a3612a4e8484846131b2565b50505050565b6000612a5f30610e97565b90506000601854601754601654612a7691906137fd565b612a8091906137fd565b90506000821480612a915750600081145b15612a9d57505061317f565b6014600954612aac91906139c1565b821115612ac5576014600954612ac291906139c1565b91505b600060028260175485612ad891906139c1565b612ae29190613a32565b612aec9190613a32565b90506000612b0382856131b790919063ffffffff16565b905060007f00000000000000000000000082af49447d8a07e3bd95bd0d56f35241523fbab173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401612b6091906134c1565b602060405180830381865afa158015612b7d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ba19190613736565b9050612bd030600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846116b2565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fb6a4c2c836040518263ffffffff1660e01b8152600401612c2b9190613444565b600060405180830381600087803b158015612c4557600080fd5b505af1158015612c59573d6000803e3d6000fd5b505050506000612d0b827f00000000000000000000000082af49447d8a07e3bd95bd0d56f35241523fbab173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401612cbc91906134c1565b602060405180830381865afa158015612cd9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cfd9190613736565b6131b790919063ffffffff16565b90506000612d3686612d286016548561318190919063ffffffff16565b61319790919063ffffffff16565b90506000612d6187612d536017548661318190919063ffffffff16565b61319790919063ffffffff16565b90506000818385612d7291906141ed565b612d7c91906141ed565b90506000601681905550600060178190555060006018819055507f00000000000000000000000082af49447d8a07e3bd95bd0d56f35241523fbab173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518363ffffffff1660e01b8152600401612e13929190613763565b6020604051808303816000875af1158015612e32573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e5691906137a1565b50600087118015612e675750600082115b1561302757612e9930600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16896116b2565b7f00000000000000000000000082af49447d8a07e3bd95bd0d56f35241523fbab173ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b8152600401612f16929190613763565b6020604051808303816000875af1158015612f35573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f5991906137a1565b50600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639cd441da88846040518363ffffffff1660e01b8152600401612fb79291906142b3565b600060405180830381600087803b158015612fd157600080fd5b505af1158015612fe5573d6000803e3d6000fd5b505050507f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868360175460405161301e939291906142dc565b60405180910390a15b7f00000000000000000000000082af49447d8a07e3bd95bd0d56f35241523fbab173ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b81526004016130a4929190613763565b6020604051808303816000875af11580156130c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130e791906137a1565b50600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166334e6436c826040518263ffffffff1660e01b81526004016131439190613444565b600060405180830381600087803b15801561315d57600080fd5b505af1158015613171573d6000803e3d6000fd5b505050505050505050505050505b565b6000818361318f91906139c1565b905092915050565b600081836131a59190613a32565b905092915050565b505050565b505050565b600081836131c591906141ed565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156132075780820151818401526020810190506131ec565b60008484015250505050565b6000601f19601f8301169050919050565b600061322f826131cd565b61323981856131d8565b93506132498185602086016131e9565b61325281613213565b840191505092915050565b600060208201905081810360008301526132778184613224565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006132af82613284565b9050919050565b6132bf816132a4565b81146132ca57600080fd5b50565b6000813590506132dc816132b6565b92915050565b6000819050919050565b6132f5816132e2565b811461330057600080fd5b50565b600081359050613312816132ec565b92915050565b6000806040838503121561332f5761332e61327f565b5b600061333d858286016132cd565b925050602061334e85828601613303565b9150509250929050565b60008115159050919050565b61336d81613358565b82525050565b60006020820190506133886000830184613364565b92915050565b6000602082840312156133a4576133a361327f565b5b60006133b2848285016132cd565b91505092915050565b6000819050919050565b60006133e06133db6133d684613284565b6133bb565b613284565b9050919050565b60006133f2826133c5565b9050919050565b6000613404826133e7565b9050919050565b613414816133f9565b82525050565b600060208201905061342f600083018461340b565b92915050565b61343e816132e2565b82525050565b60006020820190506134596000830184613435565b92915050565b6000806000606084860312156134785761347761327f565b5b6000613486868287016132cd565b9350506020613497868287016132cd565b92505060406134a886828701613303565b9150509250925092565b6134bb816132a4565b82525050565b60006020820190506134d660008301846134b2565b92915050565b600060ff82169050919050565b6134f2816134dc565b82525050565b600060208201905061350d60008301846134e9565b92915050565b600061351e826133e7565b9050919050565b61352e81613513565b82525050565b60006020820190506135496000830184613525565b92915050565b61355881613358565b811461356357600080fd5b50565b6000813590506135758161354f565b92915050565b600080604083850312156135925761359161327f565b5b60006135a0858286016132cd565b92505060206135b185828601613566565b9150509250929050565b6000602082840312156135d1576135d061327f565b5b60006135df84828501613566565b91505092915050565b6000602082840312156135fe576135fd61327f565b5b600061360c84828501613303565b91505092915050565b6000806040838503121561362c5761362b61327f565b5b600061363a858286016132cd565b925050602061364b858286016132cd565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061369c57607f821691505b6020821081036136af576136ae613655565b5b50919050565b7f43616e206e6f74207265636f766572206261736520746f6b656e000000000000600082015250565b60006136eb601a836131d8565b91506136f6826136b5565b602082019050919050565b6000602082019050818103600083015261371a816136de565b9050919050565b600081519050613730816132ec565b92915050565b60006020828403121561374c5761374b61327f565b5b600061375a84828501613721565b91505092915050565b600060408201905061377860008301856134b2565b6137856020830184613435565b9392505050565b60008151905061379b8161354f565b92915050565b6000602082840312156137b7576137b661327f565b5b60006137c58482850161378c565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613808826132e2565b9150613813836132e2565b925082820190508082111561382b5761382a6137ce565b5b92915050565b7f4e65656420746f207365742073776170206d616e616765720000000000000000600082015250565b60006138676018836131d8565b915061387282613831565b602082019050919050565b600060208201905081810360008301526138968161385a565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006138f96039836131d8565b91506139048261389d565b604082019050919050565b60006020820190508181036000830152613928816138ec565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061398b6025836131d8565b91506139968261392f565b604082019050919050565b600060208201905081810360008301526139ba8161397e565b9050919050565b60006139cc826132e2565b91506139d7836132e2565b92508282026139e5816132e2565b915082820484148315176139fc576139fb6137ce565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613a3d826132e2565b9150613a48836132e2565b925082613a5857613a57613a03565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613abf6035836131d8565b9150613aca82613a63565b604082019050919050565b60006020820190508181036000830152613aee81613ab2565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000613b516034836131d8565b9150613b5c82613af5565b604082019050919050565b60006020820190508181036000830152613b8081613b44565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613be36026836131d8565b9150613bee82613b87565b604082019050919050565b60006020820190508181036000830152613c1281613bd6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613c756024836131d8565b9150613c8082613c19565b604082019050919050565b60006020820190508181036000830152613ca481613c68565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d076022836131d8565b9150613d1282613cab565b604082019050919050565b60006020820190508181036000830152613d3681613cfa565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613d736020836131d8565b9150613d7e82613d3d565b602082019050919050565b60006020820190508181036000830152613da281613d66565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613ddf601d836131d8565b9150613dea82613da9565b602082019050919050565b60006020820190508181036000830152613e0e81613dd2565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613e716025836131d8565b9150613e7c82613e15565b604082019050919050565b60006020820190508181036000830152613ea081613e64565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613f036023836131d8565b9150613f0e82613ea7565b604082019050919050565b60006020820190508181036000830152613f3281613ef6565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613f6f6016836131d8565b9150613f7a82613f39565b602082019050919050565b60006020820190508181036000830152613f9e81613f62565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006140276049836131d8565b915061403282613fa5565b606082019050919050565b600060208201905081810360008301526140568161401a565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006140b96035836131d8565b91506140c48261405d565b604082019050919050565b600060208201905081810360008301526140e8816140ac565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006141256013836131d8565b9150614130826140ef565b602082019050919050565b6000602082019050818103600083015261415481614118565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006141b76036836131d8565b91506141c28261415b565b604082019050919050565b600060208201905081810360008301526141e6816141aa565b9050919050565b60006141f8826132e2565b9150614203836132e2565b925082820390508181111561421b5761421a6137ce565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061427d6026836131d8565b915061428882614221565b604082019050919050565b600060208201905081810360008301526142ac81614270565b9050919050565b60006040820190506142c86000830185613435565b6142d56020830184613435565b9392505050565b60006060820190506142f16000830186613435565b6142fe6020830185613435565b61430b6040830184613435565b94935050505056fea2646970667358221220fdf36796d3fb4ec8381932841b556fd3c0b3e9f17726ee304430c1118be3bf3164736f6c63430008130033

[ 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.