ETH Price: $1,917.27 (+1.28%)

Token

zkFloki ($ZFLOKI)

Overview

Max Total Supply

1,000,000,000 $ZFLOKI

Holders

1,693

Total Transfers

-

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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

Click here to update the token information / general information
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
ZkFloki

Compiler Version
v0.8.17+commit.8df45f5f

ZkSolc Version
v1.3.5

Optimization Enabled:
Yes with Mode 3

Other Settings:
default evmVersion, MIT license
File 1 of 14 : ZkFloki.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.16;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";

import "./interfaces/IMuteSwitchRouterDynamic.sol";
import "./interfaces/IMuteSwitchFactory.sol";
import "./interfaces/IMuteSwitchPairDynamic.sol";

contract ZkFloki is ERC20, Ownable {
    using SafeMath for uint256;

    uint private constant feeType = 30; // mute.io fee type, 0.3%

    IMuteSwitchRouterDynamic public router;
    address public pairAddress;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    address public marketingWallet;
    address public devWallet;

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

    uint256 public percentForLPBurn = 25; // 25 = .25%
    bool public lpBurnEnabled = true;
    uint256 public lpBurnFrequency = 3600 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

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

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

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

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

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

    /******************/

    // 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 marketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

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

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    event AutoNukeLP();

    event ManualNukeLP();

    constructor(
        address _marketingAddress,
        address _devWallet
    ) ERC20("zkFloki", "$ZFLOKI") {
        uint256 _buyMarketingFee = 75;
        uint256 _buyLiquidityFee = 150;
        uint256 _buyDevFee = 75;
        uint256 _sellMarketingFee = 75;
        uint256 _sellLiquidityFee = 150;
        uint256 _sellDevFee = 75;
        uint256 totalSupply = 1_000_000_000 * 1e18;
        maxTransactionAmount = totalSupply.div(100); // 1% from total supply maxTransactionAmountTxn
        maxWallet = totalSupply.div(100); // 1% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet
        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        marketingWallet = _marketingAddress; // set as marketing wallet
        devWallet = _devWallet; // set as dev wallet
        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    function setupPool(address _routerAddress) public onlyOwner {
        router = IMuteSwitchRouterDynamic(_routerAddress);
        pairAddress = IMuteSwitchFactory(router.factory()).createPair(
            address(this),
            router.WETH(),
            feeType,
            false
        );
        excludeFromMaxTransaction(address(router), true);
        excludeFromMaxTransaction(address(pairAddress), true);
        _setAutomatedMarketMakerPair(address(pairAddress), true);
    }

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

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

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(
        uint256 newAmount
    ) external onlyOwner returns (bool) {
        require(
            newAmount >= (totalSupply() * 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 updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNum * (10 ** 18);
    }

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

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

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

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

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

    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 != pair,
            "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 updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }

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

    event BoughtEarly(address indexed sniper);

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

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

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

                //when buy
                if (
                    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"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        if (
            !swapping &&
            automatedMarketMakerPairs[to] &&
            lpBurnEnabled &&
            block.timestamp >= lastLpBurnTime + lpBurnFrequency &&
            !_isExcludedFromFees[from]
        ) {
            autoBurnLiquidityPairTokens();
        }

        bool takeFee = !swapping;

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

        uint256 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(10000);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(10000);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

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

        bool[] memory stable = new bool[](1);
        stable[0] = false;

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

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

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(router), tokenAmount);

        // add the liquidity
        router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            deadAddress,
            block.timestamp,
            feeType,
            false
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForMarketing +
            tokensForDev;
        bool success;

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

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

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForEth);

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

        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
            totalTokensToSwap
        );
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;

        (success, ) = address(devWallet).call{value: ethForDev}("");

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForEth,
                ethForLiquidity,
                tokensForLiquidity
            );
        }

        (success, ) = address(marketingWallet).call{
            value: address(this).balance
        }("");
    }

    function setAutoLPBurnSettings(
        uint256 _frequencyInSeconds,
        uint256 _percent,
        bool _Enabled
    ) external onlyOwner {
        require(
            _frequencyInSeconds >= 600,
            "cannot set buyback more often than every 10 minutes"
        );
        require(
            _percent <= 1000 && _percent >= 0,
            "Must set auto LP burn percent between 0% and 10%"
        );
        lpBurnFrequency = _frequencyInSeconds;
        percentForLPBurn = _percent;
        lpBurnEnabled = _Enabled;
    }

    function autoBurnLiquidityPairTokens() internal returns (bool) {
        lastLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(pairAddress);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(
            10000
        );

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(pairAddress, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IMuteSwitchPairDynamic pair = IMuteSwitchPairDynamic(pairAddress);
        pair.sync();
        emit AutoNukeLP();
        return true;
    }

    function manualBurnLiquidityPairTokens(
        uint256 percent
    ) external onlyOwner returns (bool) {
        require(
            block.timestamp > lastManualLpBurnTime + manualBurnFrequency,
            "Must wait for cooldown to finish"
        );
        require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
        lastManualLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(pairAddress);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000);

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(pairAddress, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IMuteSwitchPairDynamic pair = IMuteSwitchPairDynamic(pairAddress);
        pair.sync();
        emit ManualNukeLP();
        return true;
    }
}

File 2 of 14 : 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 14 : 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 14 : 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 5 of 14 : 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 6 of 14 : draft-IERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

File 7 of 14 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../extensions/draft-IERC20Permit.sol";
import "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

File 8 of 14 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 12 of 14 : IMuteSwitchFactory.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

    function feeTo() external view returns (address);

    function protocolFeeFixed() external view returns (uint256);

    function protocolFeeDynamic() external view returns (uint256);

    function getPair(
        address tokenA,
        address tokenB,
        bool stable
    ) 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,
        uint feeType,
        bool stable
    ) external returns (address pair);

    function setFeeTo(address) external;

    function pairCodeHash() external pure returns (bytes32);
}

File 13 of 14 : IMuteSwitchPairDynamic.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint);

    function stable() external pure returns (bool);

    function balanceOf(address owner) external view returns (uint);

    function allowance(
        address owner,
        address spender
    ) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);

    function transfer(address to, uint value) external returns (bool);

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint);

    function permit(
        address owner,
        address spender,
        uint value,
        uint deadline,
        bytes memory sig
    ) external;

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);

    function price0CumulativeLast() external view returns (uint);

    function price1CumulativeLast() external view returns (uint);

    function kLast() external view returns (uint);

    function pairFee() external view returns (uint);

    function mint(address to) external returns (uint liquidity);

    function burn(address to) external returns (uint amount0, uint amount1);

    function swap(
        uint amount0Out,
        uint amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function claimFees() external returns (uint claimed0, uint claimed1);

    function claimFeesView(
        address recipient
    ) external view returns (uint claimed0, uint claimed1);

    function initialize(address, address, uint, bool) external;

    function getAmountOut(uint, address) external view returns (uint);
}

File 14 of 14 : IMuteSwitchRouterDynamic.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

interface IMuteSwitchRouterDynamic {
    function WETH() external view returns (address);

    function factory() external view returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        uint feeType,
        bool stable
    ) external returns (uint amountA, uint amountB, uint liquidity);

    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        uint feeType,
        bool stable
    )
        external
        payable
        returns (uint amountToken, uint amountETH, uint liquidity);

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool stable
    ) external returns (uint amountA, uint amountB);

    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool stable
    ) external returns (uint amountToken, uint amountETH);

    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool stable
    ) external returns (uint amountETH);

    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline,
        bool[] calldata stable
    ) external returns (uint[] memory amounts);

    function swapExactETHForTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline,
        bool[] calldata stable
    ) external payable returns (uint[] memory amounts);

    function swapExactTokensForETH(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline,
        bool[] calldata stable
    ) external returns (uint[] memory amounts);

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline,
        bool[] calldata stable
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline,
        bool[] calldata stable
    ) external;

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline,
        bool[] calldata stable
    ) external;

    function quote(
        uint amountA,
        uint reserveA,
        uint reserveB
    ) external pure returns (uint amountB);

    function getAmountOut(
        uint amountIn,
        address tokenIn,
        address tokenOut
    ) external view returns (uint amountOut, bool stable, uint fee);

    function getAmountsOutExpanded(
        uint amountIn,
        address[] calldata path
    )
        external
        view
        returns (
            uint[] memory amounts,
            bool[] memory stable,
            uint[] memory fees
        );

    function getAmountsOut(
        uint amountIn,
        address[] calldata path,
        bool[] calldata stable
    )
        external
        view
        returns (
            uint[] memory amounts,
            bool[] memory _stable,
            uint[] memory fees
        );

    function getPairInfo(
        address[] calldata path,
        bool stable
    )
        external
        view
        returns (
            address tokenA,
            address tokenB,
            address pair,
            uint reserveA,
            uint reserveB,
            uint fee
        );
}

Settings
{
  "optimizer": {
    "enabled": true
  }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_marketingAddress","type":"address"},{"internalType":"address","name":"_devWallet","type":"address"}],"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":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","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":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","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":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IMuteSwitchRouterDynamic","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_routerAddress","type":"address"}],"name":"setupPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","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":[{"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":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

9c4d535b0000000000000000000000000000000000000000000000000000000000000000010005f96aebaace7eca9782478533348b9742fd52e1eb427eac1e97490fb40600000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000040000000000000000000000000ceff188d6aac51d431dd64af8d1c3a8ac866d97c0000000000000000000000009aa2263ce24401d5dd6c9a47ffc941d2b21ab0ec

Deployed Bytecode

0x0004000000000002000a00000000000200000000030100190000006003300270000005560430019700030000004103550002000000010355000005560030019d000100000000001f00000001012001900000000c0000c13d155103000000040f0000000001000416000000000110004c0000004c0000c13d00000000010000310000009f02100039000000200800008a000000000282016f0000055703200041000005580330009c0000001d0000213d0000056b0100004100000000001004350000004101000039000000040010043f00000024020000390000000001000019155102f70000040f000000400020043f0000001f0210018f000000020300036700000005041002720000002b0000613d00000000050000190000000506500210000000000763034f000000000707043b000000800660003900000000007604350000000105500039000000000645004b000000230000413d000000000520004c0000003a0000613d0000000504400210000000000343034f00000003022002100000008004400039000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f00000000002404350000055902000041000000400310008c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c0000004c0000c13d000000800500043d0000055a0150009c0000004c0000213d000000a00400043d0000055a0140009c0000004f0000a13d00000000010000190000000002000019155102f70000040f000000400b00043d0000055b01b0009c000000160000213d0000004001b00039000000400010043f000000070100003900000000001b0435000000200cb000390000055c0200004100000000002c0435000000400600043d0000055b0260009c000000160000213d0000004002600039000000400020043f000000000016043500000020076000390000055d010000410000000000170435000000000a0b04330000055e01a0009c000000160000213d0000000309000039000000000109041a000000010210019000000001011002700000007f0310018f000000000301c0190000001f0130008c00000000010000190000000101002039000000010110018f000000000112004b000000d80000c13d000000200130008c000400000004001d000300000005001d000900000006001d000800000007001d000a00000008001d000700000009001d00060000000a001d00050000000b001d000000970000413d00000000009004350000002002000039000000000100001900020000000c001d000100000003001d155102c40000040f000000020c000029000000050b000029000000060a0000290000000709000029000000080700002900000009060000290000000a080000290000001f02a0003900000005022002700000002003a0008c0000000003020019000000000300401900000001020000290000001f02200039000000050220027000000000022100190000000001310019000000000321004b000000970000813d000000000001041b0000000101100039000000920000013d0000001f01a0008c000000af0000a13d00000000009004350000002002000039000200000002001d0000000001000019155102c40000040f000000020a00002900000005090000290000000605000029000000080700002900000009060000290000000a08000029000000000285016f0000000003000019000000000423004b00000000049a0019000000ba0000813d0000000004040433000000000041041b0000002003300039000000200aa000390000000101100039000000a60000013d0000000001a0004c0000000001000019000000b30000613d00000000010c04330000000302a00210000000010300008a000000000223022f000000000232013f000000000221016f0000000101a00210000000c70000013d000000000252004b000000c40000813d0000000302500210000000f80220018f000000010300008a000000000223022f000000000232013f0000000003040433000000000223016f000000000021041b000000010100003900000001025002100000000709000029000000000112019f000000000019041b00000000050604330000055e0150009c000000160000213d0000000404000039000000000104041a000000010210019000000001021002700000007f0320018f000000000302c0190000001f0230008c00000000020000190000000102002039000000000121013f0000000101100190000000df0000613d0000056b0100004100000000001004350000002201000039000000040010043f00000024020000390000000001000019155102f70000040f000000200130008c000700000004001d000600000005001d000000fb0000413d000000000040043500000020020000390000000001000019000500000003001d155102c40000040f0000000605000029000000070400002900000008070000290000000a080000290000001f025000390000000502200270000000200350008c0000000003020019000000000300401900000005020000290000001f02200039000000050220027000000000022100190000000001310019000000000321004b000000fb0000813d000000000001041b0000000101100039000000f60000013d0000001f0150008c000001110000a13d00000000004004350000002002000039000800000002001d0000000001000019155102c40000040f0000000807000029000000060600002900000009050000290000000a02000029000000000226016f0000000003000019000000000423004b00000000045700190000011c0000813d0000000004040433000000000041041b000000200330003900000020077000390000000101100039000001080000013d000000000150004c0000000001000019000001150000613d00000000010704330000000302500210000000010300008a000000000223022f000000000232013f000000000221016f0000000101500210000001290000013d000000000262004b000001260000813d0000000302600210000000f80220018f000000010300008a000000000223022f000000000232013f0000000003040433000000000223016f000000000021041b000000010100003900000001026002100000000704000029000000000112019f000000000014041b0000000503000039000000000203041a0000055f012001970000000006000411000000000161019f000800000003001d000000000013041b00000556010000410000000003000414000005560430009c0000000001034019000000c00110021000000560011001c70000055a052001970000800d0200003900000003030000390000056104000041000a00000006001d155115470000040f0000000101200190000000040600002900000003070000290000004c0000613d00000019010000390000000d02000039000000000012041b0000000e02000039000000000302041a000001000400008a000900000004001d000000000343016f00000001033001bf000000000032041b00000e10020000390000000f03000039000000000023041b00000708020000390000001103000039000200000003001d000000000023041b0000001302000039000000000302041a000005620330019700000001033001bf000000000032041b00000563020000410000000a03000039000000000023041b0000000c03000039000000000023041b00000564020000410000000b03000039000000000023041b0000004b020000390000001603000039000000000023041b00000096030000390000001704000039000000000034041b0000001804000039000000000024041b0000012c040000390000001505000039000000000045041b0000001a05000039000000000025041b0000001b05000039000000000035041b0000001c03000039000000000023041b000000000041041b0000055a017001970000000802000039000000000302041a0000055f03300197000000000113019f000000000012041b0000055a016001970000000902000039000000000302041a0000055f03300197000000000113019f000000000012041b15510e480000040f0000000a0100002900000000001004350000002001000039000700000001001d000000200010043f00000040020000390000000001000019155102c40000040f000000000201041a0000000903000029000000000232016f00000001022001bf000000000021041b0000000102000039000000400100043d000600000002001d000000000021043500000556020000410000000003000414000005560430009c0000000003028019000005560410009c00000000010280190000004001100210000000c002300210000000000121019f00000565011001c70000800d02000039000000020300003900000566040000410000000a05000029155115470000040f00000001012001900000004c0000613d15510e480000040f0000000001000410000500000001001d00000000001004350000000701000029000000200010043f00000040020000390000000001000019155102c40000040f000000000201041a0000000903000029000000000232016f00000001022001bf000000000021041b000000400100043d0000000602000029000000000021043500000556020000410000000003000414000005560430009c0000000003028019000005560410009c00000000010280190000004001100210000000c002300210000000000121019f00000565011001c70000800d02000039000000020300003900000566040000410000000505000029155115470000040f00000001012001900000004c0000613d15510e480000040f0000dead01000039000400000001001d00000000001004350000000701000029000000200010043f00000040020000390000000001000019155102c40000040f000000000201041a0000000903000029000000000232016f00000001022001bf000000000021041b000000400100043d0000000602000029000000000021043500000556020000410000000003000414000005560430009c0000000003028019000005560410009c00000000010280190000004001100210000000c002300210000000000121019f00000565011001c70000800d0200003900000002030000390000056604000041000300000003001d0000000405000029155115470000040f00000001012001900000004c0000613d00000007010000290000000801000029000000000101041a0000055a01100197000800000001001d15510e480000040f000000080100002900000000001004350000002101000039000800000001001d000000200010043f0000004002000039000600000002001d0000000001000019155102c40000040f000000000201041a0000000903000029000000000232016f00000001022001bf000000000021041b15510e480000040f000000050100002900000000001004350000000801000029000000200010043f00000000010000190000000602000029155102c40000040f000000000201041a0000000903000029000000000232016f00000001022001bf000000000021041b15510e480000040f000000040100002900000000001004350000000801000029000000200010043f00000000010000190000000602000029155102c40000040f000000000201041a0000000903000029000000000232016f00000001022001bf000000000021041b0000000a010000290000000003010019000000000110004c000002260000c13d000000400100043d00000044021000390000056c03000041000000000032043500000024021000390000001f0300003900000000003204350000056d0200004100000000002104350000000402100039000000070300002900000000003204350000006402000039155102f70000040f0000000301000029000000000101041a000005670210009c000002310000413d0000056b0100004100000000001004350000000201000029000000040010043f00000024020000390000000001000019155102f70000040f00000568011000410000000302000029000000000012041b0000000000300435000000200000043f00000040020000390000000001000019155102c40000040f000000000201041a0000056802200041000000000021041b0000056801000041000000400200043d000000000012043500000556010000410000000003000414000005560430009c0000000003018019000005560420009c00000000010240190000004001100210000000c002300210000000000121019f00000565011001c70000800d020000390000000303000039000005690400004100000000050000190000000a06000029155115470000040f000000010120019000000007010000290000004c0000613d00000100001004430000012000000443000001000100003900000040020000390000056a03000041155102ed0000040f0002000000000002000200000006001d000100000005001d0000055605000041000005560630009c00000000030580190000004003300210000005560640009c00000000040580190000006004400210000000000334019f000005560410009c0000000001058019000000c001100210000000000113019f155115470000040f00000001090000290000000003010019000000600330027000000556033001970000000205000029000000000453004b00000000050340190000001f0450018f00000005055002720000027b0000613d000000000600001900000005076002100000000008790019000000000771034f000000000707043b00000000007804350000000106600039000000000756004b000002730000413d000000010220018f000000000640004c0000028b0000613d0000000505500210000000000651034f00000000055900190000000304400210000000000705043300000000074701cf000000000747022f000000000606043b0000010004400089000000000646022f00000000044601cf000000000474019f0000000000450435000100000003001f00030000000103550000000001020019000000000001042d0002000000000002000200000006001d000100000005001d0000055605000041000005560610009c0000000001058019000000c00110021000000060044002100000000001140019000005560430009c00000000030580190000004003300210000000000131019f1551154c0000040f00000001090000290000000003010019000000600330027000000556033001970000000205000029000000000453004b00000000050340190000001f0450018f0000000505500272000002b00000613d000000000600001900000005076002100000000008790019000000000771034f000000000707043b00000000007804350000000106600039000000000756004b000002a80000413d000000010220018f000000000640004c000002c00000613d0000000505500210000000000651034f00000000055900190000000304400210000000000705043300000000074701cf000000000747022f000000000606043b0000010004400089000000000646022f00000000044601cf000000000474019f0000000000450435000100000003001f00030000000103550000000001020019000000000001042d0000055603000041000005560410009c00000000010380190000004001100210000005560420009c00000000020380190000006002200210000000000112019f0000000002000414000005560420009c0000000002038019000000c002200210000000000112019f00000560011001c700008010020000391551154c0000040f0000000102200190000002d80000613d000000000101043b000000000001042d00000000010000190000000002000019155102f70000040f000000000301001900000556010000410000000004000414000005560540009c0000000001044019000000c001100210000000600220021000000000011200190000056e0110004100000000020300191551154c0000040f0000000102200190000002ea0000613d000000000101043b000000000001042d00000000010000190000000002000019155102f70000040f0000055604000041000005560510009c000000000104801900000040011002100000000001310019000005560320009c000000000204801900000060022002100000000001210019000015520001042e0000055603000041000005560420009c0000000002038019000005560410009c000000000103801900000040011002100000006002200210000000000112019f000015530001043000070000000000020000008001000039000000400010043f0000000001000031000000040210008c000003c50000413d000700000000001d0000000201000367000000000101043b000000e0011002700000056f0210009c000003cb0000613d000005700210009c000003fe0000613d000005710210009c0000041c0000613d000005720210009c0000043e0000613d000005730210009c000004560000613d000005740210009c0000048a0000613d000005750210009c000004a20000613d000005760210009c000004ba0000613d000005770210009c000004d20000613d000005780210009c000004ea0000613d000005790210009c000005170000613d0000057a0210009c0000055c0000613d0000057b0210009c000005730000613d0000057c0210009c0000058b0000613d0000057d0210009c000005a60000613d0000057e0210009c000005bd0000613d0000057f0210009c000005f00000613d000005800210009c0000060b0000613d000005810210009c00000000030004100000062e0000613d000005820210009c0000067c0000613d000005830210009c000006940000613d000005840210009c000006af0000613d000005850210009c000006cd0000613d000005860210009c000006f20000613d000005870210009c000007270000613d000005880210009c000007440000613d000005890210009c0000076f0000613d0000058a0210009c000007880000613d0000058b0210009c000007a00000613d0000058c0210009c000007c00000613d0000058d0210009c000007e20000613d0000058e0210009c000007fb0000613d0000058f0210009c000008140000613d000005900210009c0000082c0000613d000005910210009c000008550000613d000005920210009c0000087a0000613d000005930210009c0000089f0000613d000005940210009c000008b70000613d000005950210009c000008cf0000613d000005960210009c000008e70000613d000005970210009c000008ff0000613d000005980210009c0000093e0000613d000005990210009c000009560000613d0000059a0210009c0000096f0000613d0000059b0210009c0000098d0000613d0000059c0210009c000009c10000613d0000059d0210009c000009e30000613d0000059e0210009c000009fe0000613d0000059f0210009c00000a420000613d000005a00210009c00000a620000613d000005a10210009c00000a950000613d000005a20210009c00000aad0000613d000005a30210009c00000ada0000613d000005a40210009c00000af20000613d000005a50210009c00000b1d0000613d000005a60210009c00000b350000613d000005a70210009c00000b4d0000613d000005a80210009c00000b790000613d000005a90210009c00000b910000613d000005aa0210009c00000baa0000613d000600000003001d000005ab0110009c00000bbb0000c13d0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000200310008c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d0000000401000039000400000001001d0000000201100367000000000101043b000300000001001d15510ea80000040f0000001201000039000200000001001d000000000101041a000500000001001d000005ac0100004100000000001004390000800b010000390000000402000029155102db0000040f0000001102000039000000000302041a00000005020000290000000002230019000000000332004b00000000030000190000000103004039000000010330019000000dab0000c13d000000000121004b00000cb90000a13d0000000301000029000003e90110008c00000d160000413d000000400100043d0000006402100039000005b50300004100000000003204350000004402100039000005b603000041000000000032043500000024021000390000002a0300003900000000003204350000056d0200004100000000002104350000000402100039000000200300003900000000003204350000008402000039155102f70000040f000000000110004c00000bbb0000c13d000000000100001900000000020000190000000003000019155102ed0000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000000310004c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d0000000303000039000000000203041a000000010420019000000001012002700000007f0510018f00000000010560190000001f0510008c00000000050000190000000105002039000000010550018f000000000554004b000008730000c13d000000800010043f000000000440004c00000cc60000c13d000001000300008a000000000232016f000000a00020043f000000000110004c000000c004000039000000a004006039000000800240008a0000008001000039000600000001001d15510ebc0000040f000000400100043d000500000001001d000000060200002915510e5c0000040f0000000503000029000000000231004900000000010300190000000003000019155102ed0000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000400310008c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d15510e720000040f00000024020000390000000202200367000000000302043b0000000002010019000000000100041115510ede0000040f0000000102000039000000400100043d000000000021043500000020020000390000000003000019155102ed0000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000200310008c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d15510e720000040f0000055a0110019700000000001004350000002101000039000000200010043f00000040020000390000000001000019155102c40000040f000000000101041a000000ff011001900000000002000019000000010200c039000000400100043d000000000021043500000020020000390000000003000019155102ed0000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000000310004c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d0000000201000039000000000201041a000000400100043d000000000021043500000020020000390000000003000019155102ed0000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000200310008c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d00000004010000390000000201100367000000000101043b000600000001001d0000055a0110009c00000bbb0000213d15510ea80000040f0000000901000039000500000001001d000000000401041a00000556010000410000000002000414000005560320009c0000000001024019000000c00110021000000560011001c7000400000004001d0000055a064001970000800d020000390000000303000039000005d8040000410000000605000029155115470000040f000000010120019000000bbb0000613d00000004010000290000055f011001970000000602000029000000000121019f0000000502000029000000000012041b000000000100001900000000020000190000000003000019155102ed0000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000000310004c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d0000001101000039000000000201041a000000400100043d000000000021043500000020020000390000000003000019155102ed0000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000000310004c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d0000000d01000039000000000201041a000000400100043d000000000021043500000020020000390000000003000019155102ed0000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000000310004c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d0000001e01000039000000000201041a000000400100043d000000000021043500000020020000390000000003000019155102ed0000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000000310004c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d0000001d01000039000000000201041a000000400100043d000000000021043500000020020000390000000003000019155102ed0000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000200310008c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d00000004010000390000000201100367000000000101043b000600000001001d15510ea80000040f00000006030000290000000201000039000000000101041a000005be2110012a000000000113004b00000bc50000813d000000400100043d0000006402100039000005d60300004100000000003204350000004402100039000005d703000041000000000032043500000024021000390000002f0300003900000000003204350000056d0200004100000000002104350000000402100039000000200300003900000000003204350000008402000039155102f70000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000600310008c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d00000002010003670000000402100370000000000202043b000600000002001d0000055a0220009c00000bbb0000213d0000002402100370000000000202043b000500000002001d0000055a0220009c00000bbb0000213d0000004401100370000000000101043b000300000001001d000000060100002900000000001004350000000101000039000400000001001d000000200010043f0000004002000039000200000002001d0000000001000019155102c40000040f0000000002000411000100000002001d0000000000200435000000200010043f00000000010000190000000202000029155102c40000040f000000000101041a000000010200008a000000000221004b00000d960000613d00000004020000290000000302000029000000000221004b00000d900000813d000000400100043d0000004402100039000005d503000041000000000032043500000024021000390000001d0300003900000000003204350000056d0200004100000000002104350000000402100039000000200300003900000000003204350000006402000039155102f70000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000000310004c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d000000400100043d0000dead02000039000000000021043500000020020000390000000003000019155102ed0000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000000310004c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d0000000f01000039000000000201041a000000400100043d000000000021043500000020020000390000000003000019155102ed0000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000000310004c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d0000000e01000039000000000101041a000000ff011001900000000002000019000000010200c039000000400100043d000000000021043500000020020000390000000003000019155102ed0000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000000310004c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d000000400100043d0000001202000039000000000021043500000020020000390000000003000019155102ed0000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000400310008c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d15510e720000040f0000000002000411000400000002001d00000000002004350000000102000039000500000002001d000000200020043f000600000001001d0000004002000039000300000002001d0000000001000019155102c40000040f00000006020000290000055a022001970000000000200435000000200010043f00000000010000190000000302000029155102c40000040f00000024020000390000000202200367000000000202043b000000000101041a15510ed00000040f00000000030100190000000401000029000000060200002915510ede0000040f000000400100043d0000000502000029000000000021043500000020020000390000000003000019155102ed0000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000000310004c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d0000001301000039000000000101041a000000ff011001900000000002000019000000010200c039000000400100043d000000000021043500000020020000390000000003000019155102ed0000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000200310008c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d15510e720000040f0000055a0110019700000000001004350000002001000039000600000001001d000000200010043f00000040020000390000000001000019155102c40000040f000000000101041a000000ff011001900000000002000019000000010200c039000000400100043d000000000021043500000006020000290000000003000019155102ed0000040f000600000003001d0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000200310008c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d00000004010000390000000201100367000000000101043b000500000001001d0000055a0110009c00000bbb0000213d15510ea80000040f0000000603000039000000000103041a0000055f011001970000000502000029000000000121019f000300000003001d000000000013041b000005d101000041000000400300043d00000000001304350000000001000414000000040420008c00000c040000613d00000004040000390000002006000039000400000003001d00000004050000291551028f0000040f0000000403000029000000000110004c00000c040000c13d0000000302000367000000400100043d00000001040000310000001f0340018f00000005044002720000066b0000613d000000000500001900000005065002100000000007610019000000000662034f000000000606043b00000000006704350000000105500039000000000645004b000006630000413d000000000530004c0000067a0000613d0000000504400210000000000242034f00000000044100190000000303300210000000000504043300000000053501cf000000000535022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000252019f00000000002404350000000102000031155102f70000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000000310004c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d0000001901000039000000000201041a000000400100043d000000000021043500000020020000390000000003000019155102ed0000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000000310004c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d0000001301000039000000000101041a000005d0011001980000000002000019000000010200c039000000400100043d000000000021043500000020020000390000000003000019155102ed0000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000200310008c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d15510e720000040f0000055a011001970000000000100435000000200000043f00000040020000390000000001000019155102c40000040f000000000201041a000000400100043d000000000021043500000020020000390000000003000019155102ed0000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000000310004c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d15510ea80000040f0000000501000039000000000201041a0000055f03200197000000000031041b00000556010000410000000003000414000005560430009c0000000001034019000000c00110021000000560011001c70000055a052001970000800d02000039000000030300003900000561040000410000000006000019155115470000040f0000000101200190000003c70000c13d00000bbb0000013d0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000600310008c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d00000002010003670000002402100370000000000202043b000500000002001d0000000402100370000000000202043b000600000002001d0000004401100370000000000201043b000000000120004c0000000001000019000000010100c039000400000002001d000000000112004b00000bbb0000c13d15510ea80000040f0000000603000029000002570130008c00000cd10000213d000000400100043d0000006402100039000005ce0300004100000000003204350000004402100039000005cf0300004100000000003204350000002402100039000000330300003900000000003204350000056d0200004100000000002104350000000402100039000000200300003900000000003204350000008402000039155102f70000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000000310004c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d15510ea80000040f0000001301000039000000000201041a000001000300008a000000000232016f000000000021041b0000000102000039000000400100043d000000000021043500000020020000390000000003000019155102ed0000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000400310008c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d15510e720000040f000500000001001d15510e840000040f000600000001001d15510ea80000040f00000005010000290000055a0110019700000000001004350000002101000039000000200010043f00000040020000390000000001000019155102c40000040f000001000200008a000000000301041a000000000223016f0000000603000029000000000330004c0000000003000019000000010300c039000000000232019f000000000021041b000000000100001900000000020000190000000003000019155102ed0000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000000310004c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d0000000801000039000000000101041a0000055a02100197000000400100043d000000000021043500000020020000390000000003000019155102ed0000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000000310004c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d0000001601000039000000000201041a000000400100043d000000000021043500000020020000390000000003000019155102ed0000040f0000000001000416000000000110004c00000bbb0000c13d000000000100003115510e900000040f000400000001001d000500000002001d000600000003001d15510ea80000040f00000016020000390000000401000029000000000012041b00000017020000390000000504000029000000000042041b00000018030000390000000602000029000000000023041b000000000204001915510ed00000040f000000060200002915510ed00000040f0000001502000039000000000012041b0000012d0110008c0000000001000019000000010100403915510f2f0000040f000000000100001900000000020000190000000003000019155102ed0000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000000310004c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d15510ea80000040f0000001301000039000000000201041a000005ca02200197000005cb022001c7000000000021041b000005ac0100004100000000001004390000800b010000390000000402000039155102db0000040f0000001002000039000000000012041b000000000100001900000000020000190000000003000019155102ed0000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000000310004c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d0000000501000039000000000101041a0000055a02100197000000400100043d000000000021043500000020020000390000000003000019155102ed0000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000000310004c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d0000000901000039000000000101041a0000055a02100197000000400100043d000000000021043500000020020000390000000003000019155102ed0000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000000310004c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d0000001a01000039000000000201041a000000400100043d000000000021043500000020020000390000000003000019155102ed0000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000200310008c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d00000004010000390000000201100367000000000101043b000000000210004c0000000002000019000000010200c039000000000221004b00000bbb0000c13d000005c802000041000000000110004c0000000001000019000000000102c019000600000001001d15510ea80000040f0000001301000039000000000201041a000005c9022001970000000603000029000000000232019f000000000021041b000000000100001900000000020000190000000003000019155102ed0000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000000310004c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d0000000403000039000000000203041a000000010420019000000001012002700000007f0510018f000000000701001900000000070560190000001f0570008c00000000050000190000000105002039000000000552013f000000010550019000000bd10000613d0000056b0100004100000000001004350000002201000039000000040010043f00000024020000390000000001000019155102f70000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000400310008c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d15510e720000040f15510e840000040f15510ea80000040f000005c502000041000000400100043d00000064031000390000000000230435000005c602000041000000440310003900000000002304350000003902000039000000240310003900000000002304350000056d0200004100000000002104350000002002000039000000040310003900000000002304350000008402000039155102f70000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000000310004c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d0000001801000039000000000201041a000000400100043d000000000021043500000020020000390000000003000019155102ed0000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000000310004c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d0000001201000039000000000201041a000000400100043d000000000021043500000020020000390000000003000019155102ed0000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000000310004c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d0000001f01000039000000000201041a000000400100043d000000000021043500000020020000390000000003000019155102ed0000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000000310004c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d0000001c01000039000000000201041a000000400100043d000000000021043500000020020000390000000003000019155102ed0000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000400310008c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d00000002010003670000000402100370000000000202043b000600000002001d0000055a0220009c00000bbb0000213d0000002401100370000000000101043b000500000001001d0000000001000411000200000001001d00000000001004350000000101000039000300000001001d000000200010043f0000004002000039000400000002001d0000000001000019155102c40000040f00000006020000290000000000200435000000200010043f00000000010000190000000402000029155102c40000040f0000000503000029000000000101041a000000000231004b00000ce50000813d000000400100043d0000006402100039000005c30300004100000000003204350000004402100039000005c40300004100000000003204350000002402100039000000250300003900000000003204350000056d0200004100000000002104350000000402100039000000200300003900000000003204350000008402000039155102f70000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000000310004c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d0000001001000039000000000201041a000000400100043d000000000021043500000020020000390000000003000019155102ed0000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000000310004c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d0000000701000039000000000101041a0000055a02100197000000400100043d000000000021043500000020020000390000000003000019155102ed0000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000400310008c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d15510e720000040f00000024020000390000000202200367000000000302043b0000000002010019000000000100041115510f790000040f0000000102000039000000400100043d000000000021043500000020020000390000000003000019155102ed0000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000200310008c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d00000004010000390000000201100367000000000101043b000600000001001d0000055a0110009c00000bbb0000213d15510ea80000040f0000000801000039000500000001001d000000000401041a00000556010000410000000002000414000005560320009c0000000001024019000000c00110021000000560011001c7000400000004001d0000055a064001970000800d020000390000000303000039000005c2040000410000000605000029155115470000040f000000010120019000000bbb0000613d00000004010000290000055f011001970000000602000029000000000121019f0000000502000029000000000012041b000000000100001900000000020000190000000003000019155102ed0000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000200310008c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d15510e720000040f0000055a0110019700000000001004350000002201000039000000200010043f00000040020000390000000001000019155102c40000040f000000000101041a000000ff011001900000000002000019000000010200c039000000400100043d000000000021043500000020020000390000000003000019155102ed0000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000000310004c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d0000001301000039000000000101041a0000ff00011001900000000002000019000000010200c039000000400100043d000000000021043500000020020000390000000003000019155102ed0000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000400310008c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d00000002010003670000000402100370000000000202043b000600000002001d0000055a0220009c00000bbb0000213d0000002401100370000000000201043b000000000120004c0000000001000019000000010100c039000500000002001d000000000112004b00000bbb0000c13d15510ea80000040f000000060100002900000000001004350000002001000039000000200010043f00000040020000390000000001000019155102c40000040f000001000200008a000000000301041a000000000223016f0000000503000029000000000232019f000000000021041b000000400100043d000000000031043500000556020000410000000003000414000005560430009c0000000003028019000005560410009c00000000010280190000004001100210000000c002300210000000000112019f00000565011001c70000800d02000039000000020300003900000566040000410000000605000029155115470000040f000000010120019000000bbb0000613d000000070100002900000000020100190000000003000019155102ed0000040f0000000001000416000000000110004c00000bbb0000c13d000000000100003115510e900000040f000400000001001d000500000002001d000600000003001d15510ea80000040f0000001a020000390000000401000029000000000012041b0000001b020000390000000504000029000000000042041b0000001c030000390000000602000029000000000023041b000000000204001915510ed00000040f000000060200002915510ed00000040f0000001902000039000000000012041b0000012d0110008c0000000001000019000000010100403915510f2f0000040f000000000100001900000000020000190000000003000019155102ed0000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000200310008c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d00000004010000390000000201100367000000000101043b000600000001001d15510ea80000040f00000006040000290000000201000039000000000201041a00000005312000c9000000000320004c00000a810000613d00000000322100d9000000050220008c00000dab0000c13d000005be2110012a000000000114004b00000cad0000813d000000400100043d0000006402100039000005c00300004100000000003204350000004402100039000005c10300004100000000003204350000002402100039000000240300003900000000003204350000056d0200004100000000002104350000000402100039000000200300003900000000003204350000008402000039155102f70000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000000310004c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d0000000a01000039000000000201041a000000400100043d000000000021043500000020020000390000000003000019155102ed0000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000200310008c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d00000004010000390000000201100367000000000101043b000600000001001d15510ea80000040f00000006040000290000000201000039000000000101041a000005b93210012a000000000224004b00000be80000813d000000400100043d0000006402100039000005bc0300004100000000003204350000004402100039000005bd0300004100000000003204350000002402100039000000350300003900000000003204350000056d0200004100000000002104350000000402100039000000200300003900000000003204350000008402000039155102f70000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000000310004c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d0000001501000039000000000201041a000000400100043d000000000021043500000020020000390000000003000019155102ed0000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000400310008c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d15510e720000040f000600000001001d15510e7b0000040f00000006020000290000055a0220019700000000002004350000000102000039000000200020043f000500000001001d0000004002000039000600000002001d0000000001000019155102c40000040f00000005020000290000055a022001970000000000200435000000200010043f00000000010000190000000602000029155102c40000040f000000000201041a000000400100043d000000000021043500000020020000390000000003000019155102ed0000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000000310004c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d0000000b01000039000000000201041a000000400100043d000000000021043500000020020000390000000003000019155102ed0000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000000310004c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d0000001701000039000000000201041a000000400100043d000000000021043500000020020000390000000003000019155102ed0000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000200310008c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d00000004010000390000000201100367000000000101043b000600000001001d0000055a0110009c00000bbb0000213d15510ea80000040f0000000606000029000000000160004c00000cef0000c13d000000400100043d0000006402100039000005b70300004100000000003204350000004402100039000005b80300004100000000003204350000002402100039000000260300003900000000003204350000056d0200004100000000002104350000000402100039000000200300003900000000003204350000008402000039155102f70000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000000310004c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d0000001b01000039000000000201041a000000400100043d000000000021043500000020020000390000000003000019155102ed0000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000000310004c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbb0000c13d0000000601000039000000000101041a0000055a02100197000000400100043d000000000021043500000020020000390000000003000019155102ed0000040f0000000001000416000000000110004c00000bbb0000c13d000000040100008a00000000011000310000055902000041000000000310004c000000000300001900000000030240190000055901100197000000000410004c000000000200a019000005590110009c00000000010300190000000001026019000000000110004c00000bbe0000613d00000000010000190000000002000019155102f70000040f0000000c01000039000000000201041a000000400100043d000000000021043500000020020000390000000003000019155102ed0000040f000005bf213000d1000000000230004c00000bcb0000613d00000000323100d9000005bf0220009c00000dab0000c13d0000000a02000039000000000012041b000000000100001900000000020000190000000003000019155102ed0000040f000000400100043d0000000000710435000000000440004c00000d020000c13d000001000300008a000000000232016f00000020031000390000000000230435000000000270004c000000200200003900000000020060190000002002200039000600000001001d15510ebc0000040f000000400100043d000500000001001d000000060200002915510e5c0000040f0000000503000029000000000231004900000000010300190000000003000019155102ed0000040f00000005321000c9000000000310004c00000bf00000613d000000000310004c00000bf00000613d00000000311200d9000000050110008c00000dab0000c13d000003e82120011a000000000114004b00000d0e0000a13d000000400100043d0000006402100039000005ba0300004100000000003204350000004402100039000005bb0300004100000000003204350000002402100039000000340300003900000000003204350000056d0200004100000000002104350000000402100039000000200300003900000000003204350000008402000039155102f70000040f0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600220018f0000000004320019000000000224004b000000000200001900000001020040390000055e0540009c00000d890000213d000000010220019000000d890000c13d000400000004001d000000400040043f000000200110008c00000bbb0000413d0000000001030433000200000001001d0000055a0110009c00000bbb0000213d000005d2010000410000000403000029000000000013043500000000010004140000000502000029000000040420008c00000c280000613d0000000404000039000000200600003900000004050000291551028f0000040f0000000403000029000000000110004c0000065c0000613d0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600220018f0000000002320019000500000002001d0000055e0220009c00000d890000213d0000000502000029000000400020043f000000200110008c00000bbb0000413d000000040100002900000000010104330000055a0210009c00000bbb0000213d000000050400002900000044024000390000001e03000039000000000032043500000024024000390000000000120435000005d30100004100000000001404350000000401400039000000060200002900000000002104350000006401400039000000000001043500000000010004140000000202000029000000040220008c00000c530000613d00000084040000390000002006000039000000020200002900000005030000290000000005030019155102580000040f000000000110004c0000065c0000613d0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600220018f000000050300002900000000023200190000055e0320009c00000d890000213d000000400020043f000000200110008c00000bbb0000413d000000050100002900000000010104330000055a0210009c00000bbb0000213d0000000703000039000600000003001d000000000203041a0000055f02200197000000000112019f000000000013041b0000000301000029000000000101041a0000055a01100197000500000001001d15510ea80000040f000000050100002900000000001004350000002101000039000300000001001d000000200010043f0000004002000039000500000002001d0000000001000019155102c40000040f000001000300008a000400000003001d000000000201041a000000000232016f00000001022001bf000000000021041b0000000601000029000000000101041a0000055a01100197000200000001001d15510ea80000040f000000020100002900000000001004350000000301000029000000200010043f00000000010000190000000502000029155102c40000040f000000000201041a0000000403000029000000000232016f00000001022001bf000000000021041b0000000601000029000000000101041a0000055a01100197000600000001001d00000000001004350000002201000039000000200010043f00000000010000190000000502000029155102c40000040f000000000201041a0000000403000029000000000232016f00000001022001bf000000000021041b00000556010000410000000002000414000005560320009c0000000001024019000000c00110021000000560011001c70000800d020000390000000303000039000005d40400004100000001060000390000000605000029155115470000040f000000010120019000000bbb0000613d000003c70000013d000005bf214000d1000000000240004c00000cb30000613d00000000324100d9000005bf0220009c00000dab0000c13d0000000c02000039000000000012041b000000000100001900000000020000190000000003000019155102ed0000040f000000400100043d0000004402100039000005ad0300004100000000003204350000056d020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000006402000039155102f70000040f0000000000300435000005d9020000410000000003000019000000a004300039000000000513004b000003f10000813d000000000502041a00000000005404350000002003300039000000010220003900000cc90000013d0000000502000029000003e90120008c00000d570000413d000000400100043d0000006402100039000005cc0300004100000000003204350000004402100039000005cd0300004100000000003204350000002402100039000000300300003900000000003204350000056d0200004100000000002104350000000402100039000000200300003900000000003204350000008402000039155102f70000040f00000000033100490000000201000029000000060200002915510ede0000040f000000400100043d0000000302000029000000000021043500000020020000390000000003000019155102ed0000040f0000000501000039000000000201041a0000055f03200197000000000363019f000000000031041b00000556010000410000000003000414000005560430009c0000000001034019000000c00110021000000560011001c70000055a052001970000800d0200003900000003030000390000056104000041155115470000040f0000000101200190000003c70000c13d00000bbb0000013d00000007020000290000000000320435000005c7030000410000002004100039000000000572004b00000bdc0000813d0000000005240019000000000603041a00000000006504350000002002200039000000010330003900000d060000013d0000000b01000039000000000041041b0000000102000039000000400100043d000000000021043500000020020000390000000003000019155102ed0000040f000005ac0100004100000000001004390000800b010000390000000402000039155102db0000040f0000000202000029000000000012041b0000000701000039000500000001001d000000000101041a000000400300043d000005ae0200004100000000002304350000055a021001970000000401300039000400000002001d000000000021043500000000010004140000000602000029000000040420008c00000d660000613d00000024040000390000002006000039000600000003001d00000006050000291551028f0000040f0000000603000029000000000110004c00000d660000c13d000000070300002900000001040000310000000001340019000000000141004b00000bbb0000213d000000400100043d0000001f0240018f0000000303300367000000050440027200000d460000613d000000000500001900000005065002100000000007610019000000000663034f000000000606043b00000000006704350000000105500039000000000645004b00000d3e0000413d000000000520004c00000d550000613d0000000504400210000000000343034f00000000044100190000000302200210000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f00000000002404350000000102000031155102f70000040f0000000f01000039000000000031041b0000000d01000039000000000021041b0000000e01000039000000000201041a000001000300008a000000000232016f0000000403000029000000000232019f000000000021041b000000000100001900000000020000190000000003000019155102ed0000040f0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600420018f0000000002340019000000000442004b000000000500001900000001050040390000055e0420009c00000d890000213d000000010450019000000d890000c13d000000400020043f000000200110008c00000d860000413d0000000002030433000000000120004c00000da00000c13d0000000501000029000000000101041a000005af0200004100000000002004390000055a01100197000600000001001d000000040010044300008002010000390000002402000039155102db0000040f000000000110004c00000db20000c13d00000007010000290000000002010019155102f70000040f0000056b0100004100000000001004350000004101000039000000040010043f00000024020000390000000001000019155102f70000040f000000030200002900000000032100490000000601000029000000010200002915510ede0000040f000000040100002900000006010000290000000502000029000000030300002915510f790000040f000000400100043d0000000402000029000000000021043500000020020000390000000003000019155102ed0000040f000000030400002900000000312400a900000000322100d9000000000242004b00000dab0000c13d0000270f0210008c00000d7a0000a13d000027101210011a00000004010000291551146b0000040f00000d7a0000013d0000056b0100004100000000001004350000001101000039000000040010043f00000024020000390000000001000019155102f70000040f000000400200043d000005b001000041000500000002001d000000000012043500000000010004140000000702000029000400000002001d0000000602000029000000040220008c00000e230000613d0000000402000029000000000220004c00000dc70000c13d00000004040000390000000602000029000000050300002900000000050300190000000006000019155102580000040f000000000201001900000dfc0000013d0000055602000041000005560310009c00000000010280190000000504000029000005560340009c00000000020440190000004002200210000000c001100210000000000121019f000005b1011001c70000800902000039000000040300002900000006040000290000000005000019155115470000040f00000005090000290000000003010019000000600330027000000556033001970000000405000029000000000453004b00000000050340190000001f0450018f000000050550027200000de90000613d000000000600001900000005076002100000000008790019000000000771034f000000000707043b00000000007804350000000106600039000000000756004b00000de10000413d000000000640004c00000df90000613d0000000505500210000000000651034f000000050700002900000000055700190000000304400210000000000705043300000000074701cf000000000747022f000000000606043b0000010004400089000000000646022f00000000044601cf000000000474019f0000000000450435000000010220018f000100000003001f0003000000010355000000000120004c00000e230000c13d000000010400003100000004010000290000000001140019000000000141004b00000bbb0000213d000000400100043d0000001f0240018f00000004030000290000000303300367000000050440027200000e120000613d000000000500001900000005065002100000000007610019000000000663034f000000000606043b00000000006704350000000105500039000000000645004b00000e0a0000413d000000000520004c00000e210000613d0000000504400210000000000343034f00000000044100190000000302200210000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f00000000002404350000000102000031155102f70000040f0000000501000029000005b20110009c00000e2e0000413d0000056b01000041000000040200002900000000001204350000004101000039000000040010043f00000007010000290000002402000039155102f70000040f0000000501000029000000400010043f00000556010000410000000002000414000005560320009c00000000020180190000000404000029000005560340009c0000000001044019000005b3311000d1000000c002200210000000000112019f00000560011001c70000800d020000390000000103000039000005b404000041000600000003001d155115470000040f000000010120019000000bbb0000613d00000005010000290000000602000029000000000021043500000020020000390000000003000019155102ed0000040f0000000501000039000000000101041a0000055a011001970000000002000411000000000121004b00000e4f0000c13d000000000001042d000000400100043d0000004402100039000005da0300004100000000003204350000056d020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000006402000039155102f70000040f0000002003000039000000000031043500000000030204330000002004100039000000000034043500000040011000390000000004000019000000000534004b00000e6b0000813d0000000005410019000000200440003900000000062400190000000006060433000000000065043500000e630000013d000000000231001900000000000204350000001f02300039000000200300008a000000000232016f0000000001210019000000000001042d00000004010000390000000201100367000000000101043b000005db0210009c00000e780000813d000000000001042d00000000010000190000000002000019155102f70000040f00000024010000390000000201100367000000000101043b000005db0210009c00000e810000813d000000000001042d00000000010000190000000002000019155102f70000040f00000024010000390000000201100367000000000101043b000000000210004c0000000002000019000000010200c039000000000221004b00000e8d0000c13d000000000001042d00000000010000190000000002000019155102f70000040f000000040110008a00000559020000410000005f0310008c000000000300001900000000030220190000055901100197000000000410004c0000000002008019000005590110009c00000000010300190000000001026019000000000110004c00000ea50000613d00000002030003670000000401300370000000000101043b0000002402300370000000000202043b0000004403300370000000000303043b000000000001042d00000000010000190000000002000019155102f70000040f0000000501000039000000000101041a0000055a011001970000000002000411000000000121004b00000eaf0000c13d000000000001042d000000400100043d0000004402100039000005da0300004100000000003204350000056d020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000006402000039155102f70000040f0000001f02200039000000200300008a000000000232016f0000000001120019000000000221004b000000000200001900000001020040390000055e0310009c00000ec90000213d000000010220019000000ec90000c13d000000400010043f000000000001042d0000056b0100004100000000001004350000004101000039000000040010043f00000024020000390000000001000019155102f70000040f0000000001120019000000000221004b00000000020000190000000102004039000000010220019000000ed70000c13d000000000001042d0000056b0100004100000000001004350000001101000039000000040010043f00000024020000390000000001000019155102f70000040f00040000000000020000055a0410019800000f0a0000613d000300000003001d0000055a01200198000400000001001d00000f1b0000613d00000000004004350000000101000039000000200010043f0000004002000039000100000002001d0000000001000019000200000004001d155102c40000040f00000004020000290000000000200435000000200010043f00000000010000190000000102000029155102c40000040f0000000302000029000000000021041b000000400100043d000000000021043500000556020000410000000003000414000005560430009c0000000003028019000005560410009c00000000010280190000004001100210000000c002300210000000000112019f00000565011001c70000800d020000390000000303000039000005dc0400004100000002050000290000000406000029155115470000040f000000010120019000000f2c0000613d000000000001042d000000400100043d0000006402100039000005df0300004100000000003204350000004402100039000005e00300004100000000003204350000002402100039000000240300003900000000003204350000056d0200004100000000002104350000000402100039000000200300003900000000003204350000008402000039155102f70000040f000000400100043d0000006402100039000005dd0300004100000000003204350000004402100039000005de0300004100000000003204350000002402100039000000220300003900000000003204350000056d0200004100000000002104350000000402100039000000200300003900000000003204350000008402000039155102f70000040f00000000010000190000000002000019155102f70000040f000000000110004c00000f320000613d000000000001042d000000400100043d0000004402100039000005e103000041000000000032043500000024021000390000001c0300003900000000003204350000056d0200004100000000002104350000000402100039000000200300003900000000003204350000006402000039155102f70000040f000000000110004c00000f430000613d000000000001042d000000400100043d0000006402100039000005e20300004100000000003204350000004402100039000005e30300004100000000003204350000002402100039000000250300003900000000003204350000056d0200004100000000002104350000000402100039000000200300003900000000003204350000008402000039155102f70000040f000000000110004c00000f570000613d000000000001042d000000400100043d0000006402100039000005e40300004100000000003204350000004402100039000005e50300004100000000003204350000002402100039000000230300003900000000003204350000056d0200004100000000002104350000000402100039000000200300003900000000003204350000008402000039155102f70000040f000000000110004c00000f6b0000613d000000000001042d000000400100043d0000004402100039000005e60300004100000000003204350000002402100039000000130300003900000000003204350000056d0200004100000000002104350000000402100039000000200300003900000000003204350000006402000039155102f70000040f0015000000000002001400000003001d001200000002001d001100000001001d0000055a01100198001500000001001d0000000001000019000000010100c039001000000001001d15510f400000040f00000012010000290000055a01100198001300000001001d0000000001000019000000010100c039000f00000001001d15510f540000040f0000001402000029000000000120004c00000ffa0000613d00000015010000290000001301000039000000000101041a001000000001001d000000ff011001900000001303000029000010430000613d0000000501000039000000000101041a0000055a011001970000001502000029000000000212004b000010430000613d000000000113004b000010430000613d000000000130004c000010430000613d0000dead0130008c000010430000613d0000000701000039000000000101041a000005e701100198000010430000c13d00000010010000290000ff000110019000000fba0000c13d000000150100002900000000001004350000002001000039000f00000001001d000000200010043f00000040020000390000000001000019155102c40000040f000000000101041a000000ff0110019000000fba0000c13d0000001301000029000000000010043500000040020000390000000001000019155102c40000040f000000000101041a000000ff01100190000014370000613d000000150100002900000000001004350000002201000039000f00000001001d000000200010043f00000040020000390000000001000019155102c40000040f000000000101041a000000ff0110019000000fcf0000613d000000130100002900000000001004350000002101000039000000200010043f00000040020000390000000001000019155102c40000040f000000000101041a000000ff01100190000010240000613d000000130100002900000000001004350000000f01000029000000200010043f00000040020000390000000001000019155102c40000040f000000000101041a000000ff0110019000000fe30000613d000000150100002900000000001004350000002101000039000000200010043f00000040020000390000000001000019155102c40000040f000000000101041a000000ff011001900000103e0000613d000000130100002900000000001004350000002101000039000000200010043f00000040020000390000000001000019155102c40000040f000000000101041a000000ff01100190000010430000c13d000000200000043f00000040020000390000000001000019155102c40000040f000000000201041a00000014010000290000000001120019000000000221004b000000000200001900000001020040390000000102200190000010370000613d000013e70000013d000000100100002915510f400000040f0000000f0100002915510f540000040f00000015010000290000000000100435000000200000043f0000004002000039001200000002001d0000000001000019155102c40000040f001400000001001d00000000010000190000001202000029155102c40000040f000000000101041a0000001402000029000000000012041b00000013060000290000000000600435000000400100043d000000000001043500000556020000410000000003000414000005560430009c0000000003028019000005560410009c00000000010280190000004001100210000000c002300210000000000112019f00000565011001c70000800d02000039000000030300003900000569040000410000001505000029155115470000040f0000000101200190000013e60000c13d00000000010000190000000002000019155102f70000040f0000000a01000039000000000101041a0000001402000029000000000121004b0000001301000029000014150000413d0000000000100435000000200000043f00000040020000390000000001000019155102c40000040f000000000201041a00000014010000290000000001120019000000000221004b000000000200001900000001020040390000000102200190000013e70000c13d0000000c02000039000000000202041a000000000121004b0000000001000019000000010100a03915510f680000040f000010430000013d0000000a01000039000000000101041a0000001402000029000000000121004b000014260000413d0000000001000410000f00000001001d0000000000100435000000200000043f00000040020000390000000001000019155102c40000040f0000001002000029000005d0022001970000000b04000039000000000304041a000000000101041a000000000131004b000012890000413d000000000120004c000012890000613d0000000701000039001000000001001d000000000101041a000005e701100198000012890000c13d000000150100002900000000001004350000002201000039000000200010043f00000040020000390000000001000019000e00000004001d155102c40000040f000000000101041a000000ff01100190000012890000c13d000000150100002900000000001004350000002001000039000d00000001001d000000200010043f00000040020000390000000001000019155102c40000040f000000000101041a000000ff01100190000012890000c13d000000130100002900000000001004350000000d01000029000000200010043f00000040020000390000000001000019155102c40000040f000000000101041a000000ff01100190000012890000c13d0000001002000029000000000102041a000005ed01100197000005db011001c7000000000012041b0000000f010000290000000000100435000000200000043f00000040020000390000000001000019155102c40000040f000000000201041a0000001e01000039000d00000001001d000000000101041a0000001d06000039000000000406041a0000000003140019000000000443004b000000000400001900000001040040390000000104400190000013e70000c13d0000001f08000039000000000408041a0000000007340019000000000347004b000000000300001900000001030040390000000103300190000013e70000c13d000000000320004c000012850000613d000000000370004c000012850000613d0000000e03000029000000000403041a00000014534000c9000000000540004c000010a30000613d00000000544300d9000000140440008c000013e70000c13d000000000432004b0000000005030019000000000502401900000000321500a9000000000350004c000010ac0000613d00000000435200d9000000000113004b000013e70000c13d00000000127200d9000400000002001d0000000101200270000c00000001001d000000000115004b000013e70000413d000e00000005001d000600000008001d000700000007001d000800000006001d000005ee0100004100000000001004390000000f0100002900000004001004430000800a010000390000002402000039155102db0000040f000500000001001d000000400600043d000005ef0160009c000013ee0000813d0000000c010000290000000e020000290000000001120049000e00000001001d0000006001600039000000400010043f00000002010000390000000000160435000000200560003900000000010000310000000201100367000000000200001900000005032002100000000004350019000000000331034f000000000303043b00000000003404350000000102200039000000020320008c000010cd0000413d0000000001060433000000000110004c000014450000613d0000000f0100002900000000001504350000000601000039000b00000001001d000000000201041a000000400300043d000005d201000041000000000013043500000000010004140000055a09200197000000040290008c000a00000005001d000900000006001d000010f30000613d0000000404000039000000200600003900000000020900190000000005030019000300000009001d000200000003001d1551028f0000040f0000000203000029000000030900002900000009060000290000000a05000029000000000110004c000013f50000613d0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600420018f0000000002340019000000000442004b000000000700001900000001070040390000055e0420009c000013ee0000213d0000000104700190000013ee0000c13d000000400020043f000000200110008c000010210000413d00000000010304330000055a0210009c000010210000213d0000000002060433000000020220008c000014450000413d00000040026000390000000000120435000000400800043d0000055b0180009c000013ee0000213d0000004001800039000000400010043f00000001010000390000000000180435000000200780003900000000010000310000000201100367000000000200001900000005032002100000000004370019000000000331034f000000000303043b0000000000340435000000010220003a000000000300001900000001030060390000000103300190000011170000c13d000300000008001d0000000001080433000000000110004c000014450000613d000200000007001d00000000000704350000000f0100002900000000020900190000000e0300002915510ede0000040f0000000b01000029000000000101041a000005af0200004100000000002004390000055a01100197000100000001001d000000040010044300008002010000390000002402000039155102db0000040f00000009030000290000000a04000029000000000110004c000010210000613d000000400500043d0000004401500039000000c0020000390000000000210435000005f001000041000000000015043500000004015000390000000e020000290000000000210435000000240150003900000000000104350000000001030433000000c4025000390000000000120435000000e4065000390000000002000019000000000312004b000011520000813d00000000030404330000055a033001970000000000360435000000010220003900000020044000390000002006600039000011490000013d00000064015000390000000f020000290000000000210435000005ac0100004100000000001004390000800b010000390000000402000039000a00000005001d000900000006001d155102db0000040f00000009060000290000000a030000290000000002360049000000040220008a000000a404300039000000000024043500000084023000390000000000120435000000030100002900000000010104330000000000160435000000000200001900000002040000290000002006600039000000000512004b000011740000813d0000000005040433000000000550004c0000000005000019000000010500c039000000000056043500000001022000390000002004400039000011690000013d00000000010004140000000102000029000000040420008c0000117f0000613d00000000043600490000000a050000290000000006000019155102580000040f0000000a03000029000000000110004c000013f50000613d0000055e0130009c000013ee0000213d000000400030043f000005ee0100004100000000001004390000000f0100002900000004001004430000800a010000390000002402000039155102db0000040f000000050a0000290000000002a1004b000000080700002900000007080000290000000609000029000013e70000413d000000000207041a0000000003a1004900000000543200a90000000005a1004b000011970000613d00000000653400d9000000000225004b000013e70000c13d000000000509041a00000000623500a90000000001a1004b0000119e0000613d00000000613200d9000000000151004b000013e70000c13d00000000418400d9000000000413004b000013e70000413d00000000458200d90000000003130049000000000153004b000013e70000413d000900000003001d000a00000005001d0000000d01000029000000000001041b000000000007041b000000000009041b00000000010004140000000903000039000000000303041a0000055a04300197000000040340008c000011c70000613d000000000228004b000011ba0000a13d00000000020400190000000003000019000000000400001900000000050000190000000006000019155102580000040f000011c70000013d0000055602000041000005560310009c0000000001028019000000c00110021000000560011001c700008009020000390000000a030000290000000005000019155115470000040f00000000020100190000006002200270000105560020019d0003000000010355155115110000040f0000000401000029000000020110008c0000000a0200002900000009030000290000125c0000413d000000000123004b0000125c0000613d0000000001230049000a00000001001d0000000b01000029000000000101041a0000055a021001970000000f010000290000000c0300002915510ede0000040f0000000b01000029000000000101041a000900000001001d000000400300043d000b00000003001d00000084013000390000dead02000039000000000021043500000024013000390000000c020000290000000000210435000005f101000041000000000013043500000004013000390000000f0200002900000000002104350000006401300039000000000001043500000044013000390000000000010435000005ac0100004100000000001004390000800b010000390000000402000039155102db0000040f0000000b0a000029000000c402a000390000000d030000290000000000320435000000a402a000390000000000120435000000e401a000390000000000010435000000000100041400000009020000290000055a04200197000000040240008c000012030000c13d0000000104000031000000600140008c000000600300003900000000030440190000000a05000029000012370000013d0000055602000041000005560310009c00000000010280190000055603a0009c00000000020a40190000004002200210000000c001100210000000000121019f000005f2011001c700008009020000390000000a030000290000000005000019155115470000040f0000000b0a000029000000000301001900000060033002700000055604300197000000600340008c000000600300003900000000030440190000001f0530018f0000000506300272000012230000613d0000000007000019000000050870021000000000098a0019000000000881034f000000000808043b00000000008904350000000107700039000000000867004b0000121b0000413d000000000750004c000012320000613d0000000506600210000000000761034f00000000066a00190000000305500210000000000806043300000000085801cf000000000858022f000000000707043b0000010005500089000000000757022f00000000055701cf000000000585019f0000000000560435000100000004001f000300000001035500000001022001900000000a050000290000144c0000613d0000001f01300039000000e00210018f0000000001a20019000000000221004b000000000200001900000001020040390000055e0310009c000013ee0000213d0000000102200190000013ee0000c13d000000400010043f000000600240008c000010210000413d0000000d02000029000000000202041a00000040031000390000000000230435000000200210003900000000005204350000000e02000029000000000021043500000556020000410000000003000414000005560430009c0000000003028019000005560410009c00000000010280190000004001100210000000c002300210000000000121019f000005f3011001c70000800d020000390000000103000039000005f404000041155115470000040f0000000101200190000010210000613d0000000801000039000000000101041a000e00000001001d0000000001000414000d00000001001d000005ee0100004100000000001004390000000f0100002900000004001004430000800a010000390000002402000039155102db0000040f00000000030100190000000e010000290000055a04100197000000040140008c000012840000613d000000000130004c0000127d0000613d00000556010000410000000d05000029000005560250009c0000000001054019000000c00110021000000560011001c700008009020000390000000005000019155115470000040f00000000020100190000006002200270000105560020019d0003000000010355000012840000013d0000000d0100002900000000020400190000000003000019000000000400001900000000050000190000000006000019155102580000040f155115110000040f0000001002000029000000000102041a000005ed01100197000000000012041b0000000704000039000000000104041a000e00000001001d000005e701100198000012ef0000613d000000000104041a001000000001001d000000150100002900000000001004350000002001000039000000200010043f00000040020000390000000001000019155102c40000040f000000000101041a000000ff01100190000013e20000c13d0000001301000029000000000010043500000040020000390000000001000019155102c40000040f0000001002000029000005e702200197000000000101041a000000ff0110018f00000000012101a0000013e20000c13d000000130100002900000000001004350000002201000039000000200010043f00000040020000390000000001000019155102c40000040f000000000101041a000000ff01100190000013880000613d0000001901000039000000000101041a000000000210004c000013880000613d000000140400002900000000324100a900000000434200d9000000000313004b000013e70000c13d0000001e03000039000000000403041a0000001b05000039000000000605041a000027105920011a00000000759600a9000027100720008c000012c30000413d00000000879500d9000000000667004b000013e70000c13d00000000651500d90000000004450019000000000554004b000000000500001900000001050040390000000105500190000013e70000c13d000000000043041b0000001c03000039000000000603041a00000000349600a90000001f03000039000000000503041a000027100720008c000012d50000413d00000000879400d9000000000667004b000013e70000c13d00000000461400d90000000004560019000000000564004b000000000500001900000001050040390000000105500190000013e70000c13d000000000043041b0000001a03000039000000000503041a00000000439500a90000001d04000039000000000404041a000027100220008c000012e70000413d00000000629300d9000000000252004b000013e70000c13d00000000121300d90000000001420019000000000221004b000000000200001900000001020040390000000102200190000013d10000613d000013e70000013d000000130100002900000000001004350000002201000039000000200010043f00000040020000390000000001000019001000000004001d155102c40000040f0000001004000029000000000101041a000000ff011001900000128e0000613d0000000e01000039000000000101041a000000ff011001900000128e0000613d0000001001000039000c00000001001d000000000101041a000d00000001001d000005ac0100004100000000001004390000800b010000390000000402000039155102db0000040f00000010040000290000000f02000039000000000302041a0000000d020000290000000002230019000000000332004b000000000300001900000001030040390000000103300190000013e70000c13d000000000121004b0000128e0000413d000000150100002900000000001004350000002001000039000000200010043f00000040020000390000000001000019155102c40000040f0000001004000029000000000101041a000000ff011001900000128e0000c13d000005ac0100004100000000001004390000800b010000390000000402000039155102db0000040f0000000c02000029000000000012041b000005ae01000041000000400300043d00000000001304350000000e010000290000055a061001970000000401300039000000000061043500000000010004140000000f02000029000000040220008c0000133c0000613d0000002404000039000e00000006001d00000020060000390000000f020000290000000005030019000d00000003001d1551028f0000040f0000000d030000290000000e06000029000000000110004c000013f50000613d0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600420018f0000000002340019000000000442004b000000000500001900000001050040390000055e0420009c000013ee0000213d0000000104500190000013ee0000c13d000000400020043f000000200110008c0000001005000029000010210000413d0000000d01000039000000000201041a0000000003030433000000000130004c0000135d0000613d00000000413200a900000000433100d9000000000223004b000013e70000c13d000027100210008c0000135d0000413d000027101210011a00000000010600191551146b0000040f0000001005000029000000000105041a000005af0200004100000000002004390000055a01100197000e00000001001d000000040010044300008002010000390000002402000039155102db0000040f000000000110004c000010210000613d000000400300043d000005b001000041000000000013043500000000010004140000000e02000029000000040420008c000013770000613d0000000404000039000e00000003001d0000000e050000290000000006000019155102580000040f0000000e03000029000000000110004c000013f50000613d0000055e0130009c000013ee0000213d000000400030043f00000556010000410000000002000414000005560320009c0000000001024019000000c00110021000000560011001c70000800d020000390000000103000039000005f504000041155115470000040f000000010120019000000010040000290000128e0000c13d000010210000013d0000001501000029000000000010043500000040020000390000000001000019155102c40000040f000000000101041a000000ff011001900000000002000019000013df0000613d0000001501000039000000000101041a000000000210004c0000000002000019000013df0000613d000000140400002900000000324100a900000000434200d9000000000313004b000013e70000c13d0000001e03000039000000000403041a0000001705000039000000000605041a000027105920011a00000000759600a9000027100720008c000013a60000413d00000000879500d9000000000667004b000013e70000c13d00000000651500d90000000004450019000000000554004b000000000500001900000001050040390000000105500190000013e70000c13d000000000043041b0000001803000039000000000603041a00000000349600a90000001f03000039000000000503041a000027100720008c000013b80000413d00000000879400d9000000000667004b000013e70000c13d00000000461400d90000000004560019000000000564004b000000000500001900000001050040390000000105500190000013e70000c13d000000000043041b0000001603000039000000000503041a00000000439500a90000001d04000039000000000404041a000027100220008c000013ca0000413d00000000629300d9000000000252004b000013e70000c13d00000000121300d90000000001420019000000000221004b000000000200001900000001020040390000000102200190000013e70000c13d0000001d02000039000000000012041b000000000190004c0000000002000019000013dc0000613d00000011010000290000000f020000290000000003090019001500000009001d155114bb0000040f00000015020000290000001401000029000000000112004b000013e70000213d00000014010000290000000001210049001400000001001d000000110100002900000012020000290000001403000029155114bb0000040f000000000001042d0000056b0100004100000000001004350000001101000039000000040010043f00000024020000390000000001000019155102f70000040f0000056b0100004100000000001004350000004101000039000000040010043f00000024020000390000000001000019155102f70000040f0000000302000367000000400100043d00000001040000310000001f0340018f0000000504400272000014040000613d000000000500001900000005065002100000000007610019000000000662034f000000000606043b00000000006704350000000105500039000000000645004b000013fc0000413d000000000530004c000014130000613d0000000504400210000000000242034f00000000044100190000000303300210000000000504043300000000053501cf000000000535022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000252019f00000000002404350000000102000031155102f70000040f000000400100043d0000006402100039000005e80300004100000000003204350000004402100039000005e90300004100000000003204350000002402100039000000350300003900000000003204350000056d0200004100000000002104350000000402100039000000200300003900000000003204350000008402000039155102f70000040f000000400100043d0000006402100039000005ea0300004100000000003204350000004402100039000005eb0300004100000000003204350000002402100039000000360300003900000000003204350000056d0200004100000000002104350000000402100039000000200300003900000000003204350000008402000039155102f70000040f000000400100043d0000004402100039000005ec0300004100000000003204350000002402100039000000160300003900000000003204350000056d02000041000000000021043500000004021000390000000f0300002900000000003204350000006402000039155102f70000040f0000056b0100004100000000001004350000003201000039000000040010043f00000024020000390000000001000019155102f70000040f000000400300043d0000001f0240018f0000000504400272000014590000613d000000000500001900000005065002100000000007630019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b000014510000413d000000000520004c000014680000613d0000000504400210000000000141034f00000000044300190000000302200210000000000504043300000000052501cf000000000525022f000000000101043b0000010002200089000000000121022f00000000012101cf000000000151019f000000000014043500000001020000310000000001030019155102f70000040f0004000000000002000300000002001d0000055a01100198000400000001001d0000000001000019000000010100c03915510f400000040f00000004010000290000000000100435000000200000043f00000040020000390000000001000019155102c40000040f000000000201041a0000000301000029000200000002001d000000000112004b000014a70000413d00000004010000290000000000100435000000200000043f0000004002000039000100000002001d0000000001000019155102c40000040f000000030300002900000002020000290000000002320049000000000021041b0000dead01000039000200000001001d000000000010043500000000010000190000000102000029155102c40000040f000000000201041a00000003030000290000000002320019000000000021041b000000400100043d000000000031043500000556020000410000000003000414000005560430009c0000000003028019000005560410009c00000000010280190000004001100210000000c002300210000000000112019f00000565011001c70000800d020000390000000303000039000005690400004100000004050000290000000206000029155115470000040f0000000101200190000014b80000613d000000000001042d000000400100043d0000006402100039000005f60300004100000000003204350000004402100039000005f70300004100000000003204350000002402100039000000260300003900000000003204350000056d0200004100000000002104350000000402100039000000200300003900000000003204350000008402000039155102f70000040f00000000010000190000000002000019155102f70000040f0005000000000002000400000003001d000300000002001d0000055a01100198000500000001001d0000000001000019000000010100c03915510f400000040f00000003010000290000055a01100198000300000001001d0000000001000019000000010100c03915510f540000040f00000005010000290000000000100435000000200000043f00000040020000390000000001000019155102c40000040f000000000201041a0000000401000029000200000002001d000000000112004b000014fd0000413d00000005010000290000000000100435000000200000043f0000004002000039000100000002001d0000000001000019155102c40000040f000000040300002900000002020000290000000002320049000000000021041b0000000301000029000000000010043500000000010000190000000102000029155102c40000040f000000000201041a00000004030000290000000002320019000000000021041b000000400100043d000000000031043500000556020000410000000003000414000005560430009c0000000003028019000005560410009c00000000010280190000004001100210000000c002300210000000000112019f00000565011001c70000800d020000390000000303000039000005690400004100000005050000290000000306000029155115470000040f00000001012001900000150e0000613d000000000001042d000000400100043d0000006402100039000005f60300004100000000003204350000004402100039000005f70300004100000000003204350000002402100039000000260300003900000000003204350000056d0200004100000000002104350000000402100039000000200300003900000000003204350000008402000039155102f70000040f00000000010000190000000002000019155102f70000040f00000001010000320000153f0000613d0000003f02100039000000200300008a000000000332016f000000400200043d0000000003320019000000000423004b000000000400001900000001040040390000055e0530009c000015400000213d0000000104400190000015400000c13d000000400030043f00000000001204350000002001200039000000030200036700000001040000310000001f0340018f0000000504400272000015300000613d000000000500001900000005065002100000000007610019000000000662034f000000000606043b00000000006704350000000105500039000000000645004b000015280000413d000000000530004c0000153f0000613d0000000504400210000000000242034f00000000014100190000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f0000000000210435000000000001042d0000056b0100004100000000001004350000004101000039000000040010043f00000024020000390000000001000019155102f70000040f0000154a002104210000000102000039000000000001042d0000000002000019000015490000013d0000154f002104230000000102000039000000000001042d00000000020000190000154e0000013d0000155100000432000015520001042e0000155300010430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffffffffffff000000000000007f8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffbf7a6b466c6f6b6900000000000000000000000000000000000000000000000000245a464c4f4b4900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000084595161401484a0000000000000000000000000000000000000000000000000069e10de76676d080000002000000000000000000000000000000000000200000000000000000000000009d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7fffffffffffffffffffffffffffffffffffffffffcc4d1c3602f7fc3180000000000000000000000000000000000000000000000033b2e3c9fd0803ce8000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef00000002000000000000000000000000000000000000000000000000000000004e487b710000000000000000000000000000000000000000000000000000000045524332303a206d696e7420746f20746865207a65726f20616464726573730008c379a00000000000000000000000000000000000000000000000000000000002000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000010d5de530000000000000000000000000000000000000000000000000000000018160ddd000000000000000000000000000000000000000000000000000000001816467f00000000000000000000000000000000000000000000000000000000184c16c500000000000000000000000000000000000000000000000000000000199ffc72000000000000000000000000000000000000000000000000000000001a8145bb000000000000000000000000000000000000000000000000000000001f3fed8f00000000000000000000000000000000000000000000000000000000203e727e0000000000000000000000000000000000000000000000000000000023b872dd0000000000000000000000000000000000000000000000000000000027c8f835000000000000000000000000000000000000000000000000000000002c3e486c000000000000000000000000000000000000000000000000000000002e82f1a000000000000000000000000000000000000000000000000000000000313ce5670000000000000000000000000000000000000000000000000000000039509351000000000000000000000000000000000000000000000000000000004a62bb65000000000000000000000000000000000000000000000000000000004fbee19300000000000000000000000000000000000000000000000000000000531aeb66000000000000000000000000000000000000000000000000000000006a486a8e000000000000000000000000000000000000000000000000000000006ddd17130000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a600000000000000000000000000000000000000000000000000000000730c188800000000000000000000000000000000000000000000000000000000751039fc000000000000000000000000000000000000000000000000000000007571336a0000000000000000000000000000000000000000000000000000000075f0a874000000000000000000000000000000000000000000000000000000007bce5a04000000000000000000000000000000000000000000000000000000008095d564000000000000000000000000000000000000000000000000000000008a8c523c000000000000000000000000000000000000000000000000000000008da5cb5b000000000000000000000000000000000000000000000000000000008ea5220f000000000000000000000000000000000000000000000000000000009213691300000000000000000000000000000000000000000000000000000000924de9b70000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000009a7a23d6000000000000000000000000000000000000000000000000000000009c3b4fdc000000000000000000000000000000000000000000000000000000009ec22c0e000000000000000000000000000000000000000000000000000000009fccce3200000000000000000000000000000000000000000000000000000000a0d82dc500000000000000000000000000000000000000000000000000000000a457c2d700000000000000000000000000000000000000000000000000000000a4c82a0000000000000000000000000000000000000000000000000000000000a8b0898200000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000aacebbe300000000000000000000000000000000000000000000000000000000b62496f500000000000000000000000000000000000000000000000000000000bbc0c74200000000000000000000000000000000000000000000000000000000c024666800000000000000000000000000000000000000000000000000000000c17b5b8c00000000000000000000000000000000000000000000000000000000c18bc19500000000000000000000000000000000000000000000000000000000c8c8ebe400000000000000000000000000000000000000000000000000000000d257b34f00000000000000000000000000000000000000000000000000000000d85ba06300000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000e2f4560500000000000000000000000000000000000000000000000000000000f11a24d300000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000f637434200000000000000000000000000000000000000000000000000000000f887ea4000000000000000000000000000000000000000000000000000000000f8b45b0500000000000000000000000000000000000000000000000000000000fe72b27a796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d955391324d757374207761697420666f7220636f6f6c646f776e20746f2066696e69736870a08231000000000000000000000000000000000000000000000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b83fff6cae9000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000010000000100000000000000008462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb6b656e7320696e204c50000000000000000000000000000000000000000000004d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f64647265737300000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f206100000000000000000000000000000000000000000000000000000000000186a06e20302e352520746f74616c20737570706c792e0000000000000000000000005377617020616d6f756e742063616e6e6f74206265206869676865722074686120302e3030312520746f74616c20737570706c792e00000000000000000000005377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e00000000000000000000000000000000000000000000003635c9adc5dea000000000000000000000000000000000000000000000000000000de0b6b3a7640000302e35250000000000000000000000000000000000000000000000000000000043616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20a751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b05674207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f776175746f6d617465644d61726b65744d616b657250616972730000000000000054686520706169722063616e6e6f742062652072656d6f7665642066726f6d208a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b0000000000000000000000000000000000000000000000000000000000010000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ff0000000000000000000000000000000000000000000000000000000000010100747765656e20302520616e6420313025000000000000000000000000000000004d75737420736574206175746f204c50206275726e2070657263656e74206265616e206576657279203130206d696e757465730000000000000000000000000063616e6e6f7420736574206275796261636b206d6f7265206f6674656e2074680000000000000000000000000000000000000000000000000000000000ff0000c45a015500000000000000000000000000000000000000000000000000000000ad5c464800000000000000000000000000000000000000000000000000000000b2e916d600000000000000000000000000000000000000000000000000000000ffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006c6f776572207468616e20302e3125000000000000000000000000000000000043616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742090b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e743c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000100000000000000000000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f206164644d757374206b6565702066656573206174203325206f72206c65737300000000647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f206164657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f20616464724d61782077616c6c6574206578636565646564000000000000000000000000000000000000000000000000ff00000000000000000000000000000000000000006d61785472616e73616374696f6e416d6f756e742e0000000000000000000000427579207472616e7366657220616d6f756e7420657863656564732074686520206d61785472616e73616374696f6e416d6f756e742e0000000000000000000053656c6c207472616e7366657220616d6f756e7420657863656564732074686554726164696e67206973206e6f74206163746976652e00000000000000000000ffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff9cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f39000000000000000000000000000000000000000000000000ffffffffffffffa03f464b16000000000000000000000000000000000000000000000000000000003a8e53ff000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000104000000000000000000000000020000000000000000000000000000000000006000000000000000000000000017bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e74206578636565647320620000000000000000000000000000000000000000000000000000000000000000

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0x000000000000000000000000ceff188d6aac51d431dd64af8d1c3a8ac866d97c0000000000000000000000009aa2263ce24401d5dd6c9a47ffc941d2b21ab0ec

-----Decoded View---------------
Arg [0] : _marketingAddress (address): 0xCEFf188d6AAC51d431DD64aF8d1c3a8Ac866d97C
Arg [1] : _devWallet (address): 0x9aa2263cE24401d5Dd6C9a47fFC941D2b21ab0ec

-----Encoded View---------------


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