ETH Price: $3,232.62 (+1.57%)

Token

KimJongUn6900 (KJX)
 

Overview

Max Total Supply

1,000,000,000 KJX

Holders

50

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
KimJongUn6900

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-18
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

// https://t.me/KimJongUn6900
// https://twitter.com/KimJongUn6900
// https://KimJongUn6900.io

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

// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

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

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

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

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

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

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

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

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

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

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

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

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

// pragma solidity ^0.8.0;

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount);
        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);
    }

    function _mint(address to, uint256 amount) internal virtual {
        _totalSupply += amount;

        // Cannot overflow because the sum of all user
        // balances can't exceed the max uint256 value.
        unchecked {
            _balances[to] += amount;
        }

        emit Transfer(address(0), to, amount);
    }

    function _burn(address from, uint256 amount) internal virtual {
        _balances[from] -= amount;

        // Cannot underflow because a user's balance
        // will never be larger than the total supply.
        unchecked {
            _totalSupply -= amount;
        }

        emit Transfer(from, 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 {
        _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);
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }
}

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);
}

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

    function WETH() external pure returns (address);

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

contract KimJongUn6900 is ERC20, Ownable {

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

    bool private swapping;

    address public marketingWallet;
    address public liquidityWallet;

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

    bool public tradingActive = false;
    bool public swapEnabled = false;

    uint256 public buyTotalFees;
    uint256 private buyMarketingFee;
    uint256 private buyLiquidityFee;

    uint256 public sellTotalFees;
    uint256 private sellMarketingFee;
    uint256 private sellLiquidityFee;

    uint256 private tokensForMarketing;
    uint256 private tokensForLiquidity;
    uint256 private previousFee;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedMaxTransactionAmount;
    mapping(address => bool) private automatedMarketMakerPairs;

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

    constructor() payable ERC20("KimJongUn6900", "KJX") {
        uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        _approve(address(this), address(uniswapV2Router), type(uint256).max);

        uint256 totalSupply = 1_000_000_000 ether;

        maxTransactionAmount = totalSupply;
        maxWallet = totalSupply;
        swapTokensAtAmount = (totalSupply * 1) / 1000;

        buyMarketingFee = 0;
        buyLiquidityFee = 0;
        buyTotalFees = buyMarketingFee + buyLiquidityFee;

        sellMarketingFee = 25;
        sellLiquidityFee = 0;
        sellTotalFees =
            sellMarketingFee +
            sellLiquidityFee;

        previousFee = sellTotalFees;

        marketingWallet = _msgSender();
        liquidityWallet = _msgSender();

        excludeFromFees(_msgSender(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(deadAddress, true);
        excludeFromFees(marketingWallet, true);
        excludeFromFees(liquidityWallet, true);

        excludeFromMaxTransaction(_msgSender(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(deadAddress, true);
        excludeFromMaxTransaction(address(uniswapV2Router), true);
        excludeFromMaxTransaction(marketingWallet, true);
        excludeFromMaxTransaction(liquidityWallet, true);

        _mint(msg.sender, (totalSupply * 100) / 100);
        _createPair();
    }

    receive() external payable {}

    function burn(uint256 amount) external {
        _burn(msg.sender, amount);
    }

    function _createPair() internal {
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this),
            uniswapV2Router.WETH()
        );
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
    }

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

    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(newAmount >= (totalSupply() * 1) / 100000);
        require(newAmount <= (totalSupply() * 5) / 1000);
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxWalletAndTxnAmount(
        uint256 newTxnNum,
        uint256 newMaxWalletNum
    ) external onlyOwner {
        require(newTxnNum >= ((totalSupply() * 5) / 1000));
        require(newMaxWalletNum >= ((totalSupply() * 5) / 1000));
        maxWallet = newMaxWalletNum;
        maxTransactionAmount = newTxnNum;
    }

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

    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee;
        require(buyTotalFees <= 25);
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee;
        previousFee = sellTotalFees;
        require(sellTotalFees <= 25);
    }

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

    function withdrawStuckETH() public onlyOwner {
        bool success;
        (success, ) = address(msg.sender).call{value: address(this).balance}(
            ""
        );
    }

    function withdrawStuckTokens(address tkn) public onlyOwner {
        require(IERC20(tkn).balanceOf(address(this)) > 0);
        uint256 amount = IERC20(tkn).balanceOf(address(this));
        IERC20(tkn).transfer(msg.sender, amount);
    }

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

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

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0));
        require(to != address(0));

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

        if (
            from != owner() &&
            to != owner() &&
            to != address(0) &&
            to != deadAddress &&
            !swapping
        ) {
            if (!tradingActive) {
                require(_isExcludedFromFees[from] || _isExcludedFromFees[to]);
            }

            //when buy
            if (
                automatedMarketMakerPairs[from] &&
                !_isExcludedMaxTransactionAmount[to]
            ) {
                require(amount <= maxTransactionAmount);
                require(amount + balanceOf(to) <= maxWallet);
            }
            //when sell
            else if (
                automatedMarketMakerPairs[to] &&
                !_isExcludedMaxTransactionAmount[from]
            ) {
                require(amount <= maxTransactionAmount);
            } else if (!_isExcludedMaxTransactionAmount[to]) {
                require(amount + balanceOf(to) <= maxWallet);
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;

        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount * sellTotalFees / 100;
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount * buyTotalFees / 100;
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

        super._transfer(from, to, amount);
        sellTotalFees = previousFee;
    }

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

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            liquidityWallet,
            block.timestamp
        );
    }

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

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

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

        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance - liquidityTokens;

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

        uint256 ethForMarketing = ethBalance * tokensForMarketing / totalTokensToSwap;

        uint256 ethForLiquidity = ethBalance - ethForMarketing;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":[{"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":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"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":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTxnNum","type":"uint256"},{"internalType":"uint256","name":"newMaxWalletNum","type":"uint256"}],"name":"updateMaxWalletAndTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tkn","type":"address"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526000600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff0219169083151502179055506040518060400160405280600d81526020017f4b696d4a6f6e67556e36393030000000000000000000000000000000000000008152506040518060400160405280600381526020017f4b4a5800000000000000000000000000000000000000000000000000000000008152508160039081620000b7919062000d6f565b508060049081620000c9919062000d6f565b505050620000ec620000e06200046660201b60201c565b6200046e60201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505062000169306080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200053460201b60201c565b60006b033b2e3c9fd0803ce800000090508060098190555080600b819055506103e86001826200019a919062000e85565b620001a6919062000eff565b600a819055506000600e819055506000600f81905550600f54600e54620001ce919062000f37565b600d8190555060196011819055506000601281905550601254601154620001f6919062000f37565b601081905550601054601581905550620002156200046660201b60201c565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620002656200046660201b60201c565b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620002c7620002b96200046660201b60201c565b60016200062160201b60201c565b620002da3060016200062160201b60201c565b620002ef61dead60016200062160201b60201c565b62000324600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200062160201b60201c565b62000359600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200062160201b60201c565b6200037b6200036d6200046660201b60201c565b60016200068c60201b60201c565b6200038e3060016200068c60201b60201c565b620003a361dead60016200068c60201b60201c565b620003b860805160016200068c60201b60201c565b620003ed600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200068c60201b60201c565b62000422600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200068c60201b60201c565b6200044f336064808462000437919062000e85565b62000443919062000eff565b620006f760201b60201c565b6200045f620007ca60201b60201c565b50620010fd565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000614919062000f83565b60405180910390a3505050565b62000631620009df60201b60201c565b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6200069c620009df60201b60201c565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80600260008282546200070b919062000f37565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620007be919062000f83565b60405180910390a35050565b60805173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000818573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200083e91906200100a565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620008a8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620008ce91906200100a565b6040518363ffffffff1660e01b8152600401620008ed9291906200104d565b6020604051808303816000875af11580156200090d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200093391906200100a565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620009a8600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600162000a7060201b60201c565b620009dd600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200068c60201b60201c565b565b620009ef6200046660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000a1562000acb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000a6e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a6590620010db565b60405180910390fd5b565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b7757607f821691505b60208210810362000b8d5762000b8c62000b2f565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000bf77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000bb8565b62000c03868362000bb8565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000c5062000c4a62000c448462000c1b565b62000c25565b62000c1b565b9050919050565b6000819050919050565b62000c6c8362000c2f565b62000c8462000c7b8262000c57565b84845462000bc5565b825550505050565b600090565b62000c9b62000c8c565b62000ca881848462000c61565b505050565b5b8181101562000cd05762000cc460008262000c91565b60018101905062000cae565b5050565b601f82111562000d1f5762000ce98162000b93565b62000cf48462000ba8565b8101602085101562000d04578190505b62000d1c62000d138562000ba8565b83018262000cad565b50505b505050565b600082821c905092915050565b600062000d446000198460080262000d24565b1980831691505092915050565b600062000d5f838362000d31565b9150826002028217905092915050565b62000d7a8262000af5565b67ffffffffffffffff81111562000d965762000d9562000b00565b5b62000da2825462000b5e565b62000daf82828562000cd4565b600060209050601f83116001811462000de7576000841562000dd2578287015190505b62000dde858262000d51565b86555062000e4e565b601f19841662000df78662000b93565b60005b8281101562000e215784890151825560018201915060208501945060208101905062000dfa565b8683101562000e41578489015162000e3d601f89168262000d31565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000e928262000c1b565b915062000e9f8362000c1b565b925082820262000eaf8162000c1b565b9150828204841483151762000ec95762000ec862000e56565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000f0c8262000c1b565b915062000f198362000c1b565b92508262000f2c5762000f2b62000ed0565b5b828204905092915050565b600062000f448262000c1b565b915062000f518362000c1b565b925082820190508082111562000f6c5762000f6b62000e56565b5b92915050565b62000f7d8162000c1b565b82525050565b600060208201905062000f9a600083018462000f72565b92915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000fd28262000fa5565b9050919050565b62000fe48162000fc5565b811462000ff057600080fd5b50565b600081519050620010048162000fd9565b92915050565b60006020828403121562001023576200102262000fa0565b5b6000620010338482850162000ff3565b91505092915050565b620010478162000fc5565b82525050565b60006040820190506200106460008301856200103c565b6200107360208301846200103c565b9392505050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620010c36020836200107a565b9150620010d0826200108b565b602082019050919050565b60006020820190508181036000830152620010f681620010b4565b9050919050565b6080516131176200113c600039600081816109b7015281816122ee015281816123cf015281816123f60152818161249201526124b901526131176000f3fe60806040526004361061021e5760003560e01c806375f0a87411610123578063c9567bf9116100ab578063dd62ed3e1161006f578063dd62ed3e146107e4578063e2f4560514610821578063f2fde38b1461084c578063f5648a4f14610875578063f8b45b051461088c57610225565b8063c9567bf914610711578063cb96372814610728578063d257b34f14610751578063d46980161461078e578063d85ba063146107b957610225565b8063a457c2d7116100f2578063a457c2d714610618578063a9059cbb14610655578063bbc0c74214610692578063c0246668146106bd578063c8c8ebe4146106e657610225565b806375f0a8741461056e5780638da5cb5b1461059957806395d89b41146105c457806396188399146105ef57610225565b806342966c68116101a65780636a486a8e116101755780636a486a8e1461049b5780636ddd1713146104c657806370a08231146104f1578063715018a61461052e5780637571336a1461054557610225565b806342966c68146103e157806349bd5a5e1461040a5780634fbee1931461043557806366ca9b831461047257610225565b806318160ddd116101ed57806318160ddd146102e657806323b872dd1461031157806327c8f8351461034e578063313ce5671461037957806339509351146103a457610225565b806302dbd8f81461022a57806306fdde0314610253578063095ea7b31461027e5780631694505e146102bb57610225565b3661022557005b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906125c3565b6108b7565b005b34801561025f57600080fd5b50610268610900565b6040516102759190612693565b60405180910390f35b34801561028a57600080fd5b506102a560048036038101906102a09190612713565b610992565b6040516102b2919061276e565b60405180910390f35b3480156102c757600080fd5b506102d06109b5565b6040516102dd91906127e8565b60405180910390f35b3480156102f257600080fd5b506102fb6109d9565b6040516103089190612812565b60405180910390f35b34801561031d57600080fd5b506103386004803603810190610333919061282d565b6109e3565b604051610345919061276e565b60405180910390f35b34801561035a57600080fd5b50610363610a12565b604051610370919061288f565b60405180910390f35b34801561038557600080fd5b5061038e610a18565b60405161039b91906128c6565b60405180910390f35b3480156103b057600080fd5b506103cb60048036038101906103c69190612713565b610a21565b6040516103d8919061276e565b60405180910390f35b3480156103ed57600080fd5b50610408600480360381019061040391906128e1565b610a58565b005b34801561041657600080fd5b5061041f610a65565b60405161042c919061288f565b60405180910390f35b34801561044157600080fd5b5061045c6004803603810190610457919061290e565b610a8b565b604051610469919061276e565b60405180910390f35b34801561047e57600080fd5b50610499600480360381019061049491906125c3565b610ae1565b005b3480156104a757600080fd5b506104b0610b21565b6040516104bd9190612812565b60405180910390f35b3480156104d257600080fd5b506104db610b27565b6040516104e8919061276e565b60405180910390f35b3480156104fd57600080fd5b506105186004803603810190610513919061290e565b610b3a565b6040516105259190612812565b60405180910390f35b34801561053a57600080fd5b50610543610b82565b005b34801561055157600080fd5b5061056c60048036038101906105679190612967565b610b96565b005b34801561057a57600080fd5b50610583610bf9565b604051610590919061288f565b60405180910390f35b3480156105a557600080fd5b506105ae610c1f565b6040516105bb919061288f565b60405180910390f35b3480156105d057600080fd5b506105d9610c49565b6040516105e69190612693565b60405180910390f35b3480156105fb57600080fd5b50610616600480360381019061061191906125c3565b610cdb565b005b34801561062457600080fd5b5061063f600480360381019061063a9190612713565b610d4f565b60405161064c919061276e565b60405180910390f35b34801561066157600080fd5b5061067c60048036038101906106779190612713565b610dc6565b604051610689919061276e565b60405180910390f35b34801561069e57600080fd5b506106a7610de9565b6040516106b4919061276e565b60405180910390f35b3480156106c957600080fd5b506106e460048036038101906106df9190612967565b610dfc565b005b3480156106f257600080fd5b506106fb610e5f565b6040516107089190612812565b60405180910390f35b34801561071d57600080fd5b50610726610e65565b005b34801561073457600080fd5b5061074f600480360381019061074a919061290e565b610ebf565b005b34801561075d57600080fd5b50610778600480360381019061077391906128e1565b61104e565b604051610785919061276e565b60405180910390f35b34801561079a57600080fd5b506107a36110c3565b6040516107b0919061288f565b60405180910390f35b3480156107c557600080fd5b506107ce6110e9565b6040516107db9190612812565b60405180910390f35b3480156107f057600080fd5b5061080b600480360381019061080691906129a7565b6110ef565b6040516108189190612812565b60405180910390f35b34801561082d57600080fd5b50610836611176565b6040516108439190612812565b60405180910390f35b34801561085857600080fd5b50610873600480360381019061086e919061290e565b61117c565b005b34801561088157600080fd5b5061088a6111ff565b005b34801561089857600080fd5b506108a1611278565b6040516108ae9190612812565b60405180910390f35b6108bf61127e565b81601181905550806012819055506012546011546108dd9190612a16565b601081905550601054601581905550601960105411156108fc57600080fd5b5050565b60606003805461090f90612a79565b80601f016020809104026020016040519081016040528092919081815260200182805461093b90612a79565b80156109885780601f1061095d57610100808354040283529160200191610988565b820191906000526020600020905b81548152906001019060200180831161096b57829003601f168201915b5050505050905090565b60008061099d6112fc565b90506109aa818585611304565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b6000806109ee6112fc565b90506109fb8582856113ef565b610a06858585611445565b60019150509392505050565b61dead81565b60006012905090565b600080610a2c6112fc565b9050610a4d818585610a3e85896110ef565b610a489190612a16565b611304565b600191505092915050565b610a623382611d0b565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610ae961127e565b81600e8190555080600f81905550600f54600e54610b079190612a16565b600d819055506019600d541115610b1d57600080fd5b5050565b60105481565b600c60019054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b8a61127e565b610b946000611dda565b565b610b9e61127e565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610c5890612a79565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8490612a79565b8015610cd15780601f10610ca657610100808354040283529160200191610cd1565b820191906000526020600020905b815481529060010190602001808311610cb457829003601f168201915b5050505050905090565b610ce361127e565b6103e86005610cf06109d9565b610cfa9190612aaa565b610d049190612b1b565b821015610d1057600080fd5b6103e86005610d1d6109d9565b610d279190612aaa565b610d319190612b1b565b811015610d3d57600080fd5b80600b81905550816009819055505050565b600080610d5a6112fc565b90506000610d6882866110ef565b905083811015610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da490612bbe565b60405180910390fd5b610dba8286868403611304565b60019250505092915050565b600080610dd16112fc565b9050610dde818585611445565b600191505092915050565b600c60009054906101000a900460ff1681565b610e0461127e565b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60095481565b610e6d61127e565b600c60009054906101000a900460ff1615610e8757600080fd5b6001600c60006101000a81548160ff0219169083151502179055506001600c60016101000a81548160ff021916908315150217905550565b610ec761127e565b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610f02919061288f565b602060405180830381865afa158015610f1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f439190612bf3565b11610f4d57600080fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610f88919061288f565b602060405180830381865afa158015610fa5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fc99190612bf3565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401611006929190612c20565b6020604051808303816000875af1158015611025573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110499190612c5e565b505050565b600061105861127e565b620186a060016110666109d9565b6110709190612aaa565b61107a9190612b1b565b82101561108657600080fd5b6103e860056110936109d9565b61109d9190612aaa565b6110a79190612b1b565b8211156110b357600080fd5b81600a8190555060019050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b61118461127e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ea90612cfd565b60405180910390fd5b6111fc81611dda565b50565b61120761127e565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161122d90612d4e565b60006040518083038185875af1925050503d806000811461126a576040519150601f19603f3d011682016040523d82523d6000602084013e61126f565b606091505b50508091505050565b600b5481565b6112866112fc565b73ffffffffffffffffffffffffffffffffffffffff166112a4610c1f565b73ffffffffffffffffffffffffffffffffffffffff16146112fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f190612daf565b60405180910390fd5b565b600033905090565b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516113e29190612812565b60405180910390a3505050565b60006113fb84846110ef565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461143f578181101561143157600080fd5b61143e8484848403611304565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361147e57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114b757600080fd5b600081036114d0576114cb83836000611ea0565b611d06565b6114d8610c1f565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156115465750611516610c1f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561157f5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156115b9575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156115d25750600660149054906101000a900460ff16155b156118a757600c60009054906101000a900460ff1661169657601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061168c5750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61169557600080fd5b5b601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156117395750601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156117745760095481111561174d57600080fd5b600b5461175983610b3a565b826117649190612a16565b111561176f57600080fd5b6118a6565b601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156118175750601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156118305760095481111561182b57600080fd5b6118a5565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166118a457600b5461188d83610b3a565b826118989190612a16565b11156118a357600080fd5b5b5b5b5b60006118b230610b3a565b90506000600a5482101590508080156118d75750600c60019054906101000a900460ff165b80156118f05750600660149054906101000a900460ff16155b80156119465750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561199c5750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156119f25750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611a36576001600660146101000a81548160ff021916908315150217905550611a1a61205e565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611aec5750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611af657600090505b60008115611ced57601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611b5957506000601054115b15611be557606460105486611b6e9190612aaa565b611b789190612b1b565b905060105460125482611b8b9190612aaa565b611b959190612b1b565b60146000828254611ba69190612a16565b9250508190555060105460115482611bbe9190612aaa565b611bc89190612b1b565b60136000828254611bd99190612a16565b92505081905550611cc9565b601860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611c4057506000600d54115b15611cc8576064600d5486611c559190612aaa565b611c5f9190612b1b565b9050600d54600f5482611c729190612aaa565b611c7c9190612b1b565b60146000828254611c8d9190612a16565b92505081905550600d54600e5482611ca59190612aaa565b611caf9190612b1b565b60136000828254611cc09190612a16565b925050819055505b5b6000811115611cde57611cdd873083611ea0565b5b8085611cea9190612dcf565b94505b611cf8878787611ea0565b601554601081905550505050505b505050565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d599190612dcf565b9250508190555080600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611dce9190612812565b60405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ed957600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f1257600080fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611f6257600080fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516120509190612812565b60405180910390a350505050565b600061206930610b3a565b9050600060135460145461207d9190612a16565b905060008083148061208f5750600082145b1561209c5750505061224d565b6014600a546120ab9190612aaa565b8311156120c4576014600a546120c19190612aaa565b92505b6000600283601454866120d79190612aaa565b6120e19190612b1b565b6120eb9190612b1b565b9050600081856120fb9190612dcf565b9050600047905061210b8261224f565b600081476121199190612dcf565b90506000866013548361212c9190612aaa565b6121369190612b1b565b9050600081836121469190612dcf565b9050600060148190555060006013819055506000861180156121685750600081115b156121b557612177868261248c565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56185826014546040516121ac93929190612e03565b60405180910390a15b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516121fb90612d4e565b60006040518083038185875af1925050503d8060008114612238576040519150601f19603f3d011682016040523d82523d6000602084013e61223d565b606091505b5050809750505050505050505050505b565b6000600267ffffffffffffffff81111561226c5761226b612e3a565b5b60405190808252806020026020018201604052801561229a5781602001602082028036833780820191505090505b50905030816000815181106122b2576122b1612e69565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612357573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061237b9190612ead565b8160018151811061238f5761238e612e69565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506123f4307f000000000000000000000000000000000000000000000000000000000000000084611304565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612456959493929190612fd3565b600060405180830381600087803b15801561247057600080fd5b505af1158015612484573d6000803e3d6000fd5b505050505050565b6124b7307f000000000000000000000000000000000000000000000000000000000000000084611304565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161253e9695949392919061302d565b60606040518083038185885af115801561255c573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612581919061308e565b5050505050565b600080fd5b6000819050919050565b6125a08161258d565b81146125ab57600080fd5b50565b6000813590506125bd81612597565b92915050565b600080604083850312156125da576125d9612588565b5b60006125e8858286016125ae565b92505060206125f9858286016125ae565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561263d578082015181840152602081019050612622565b60008484015250505050565b6000601f19601f8301169050919050565b600061266582612603565b61266f818561260e565b935061267f81856020860161261f565b61268881612649565b840191505092915050565b600060208201905081810360008301526126ad818461265a565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126e0826126b5565b9050919050565b6126f0816126d5565b81146126fb57600080fd5b50565b60008135905061270d816126e7565b92915050565b6000806040838503121561272a57612729612588565b5b6000612738858286016126fe565b9250506020612749858286016125ae565b9150509250929050565b60008115159050919050565b61276881612753565b82525050565b6000602082019050612783600083018461275f565b92915050565b6000819050919050565b60006127ae6127a96127a4846126b5565b612789565b6126b5565b9050919050565b60006127c082612793565b9050919050565b60006127d2826127b5565b9050919050565b6127e2816127c7565b82525050565b60006020820190506127fd60008301846127d9565b92915050565b61280c8161258d565b82525050565b60006020820190506128276000830184612803565b92915050565b60008060006060848603121561284657612845612588565b5b6000612854868287016126fe565b9350506020612865868287016126fe565b9250506040612876868287016125ae565b9150509250925092565b612889816126d5565b82525050565b60006020820190506128a46000830184612880565b92915050565b600060ff82169050919050565b6128c0816128aa565b82525050565b60006020820190506128db60008301846128b7565b92915050565b6000602082840312156128f7576128f6612588565b5b6000612905848285016125ae565b91505092915050565b60006020828403121561292457612923612588565b5b6000612932848285016126fe565b91505092915050565b61294481612753565b811461294f57600080fd5b50565b6000813590506129618161293b565b92915050565b6000806040838503121561297e5761297d612588565b5b600061298c858286016126fe565b925050602061299d85828601612952565b9150509250929050565b600080604083850312156129be576129bd612588565b5b60006129cc858286016126fe565b92505060206129dd858286016126fe565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612a218261258d565b9150612a2c8361258d565b9250828201905080821115612a4457612a436129e7565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612a9157607f821691505b602082108103612aa457612aa3612a4a565b5b50919050565b6000612ab58261258d565b9150612ac08361258d565b9250828202612ace8161258d565b91508282048414831517612ae557612ae46129e7565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612b268261258d565b9150612b318361258d565b925082612b4157612b40612aec565b5b828204905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612ba860258361260e565b9150612bb382612b4c565b604082019050919050565b60006020820190508181036000830152612bd781612b9b565b9050919050565b600081519050612bed81612597565b92915050565b600060208284031215612c0957612c08612588565b5b6000612c1784828501612bde565b91505092915050565b6000604082019050612c356000830185612880565b612c426020830184612803565b9392505050565b600081519050612c588161293b565b92915050565b600060208284031215612c7457612c73612588565b5b6000612c8284828501612c49565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612ce760268361260e565b9150612cf282612c8b565b604082019050919050565b60006020820190508181036000830152612d1681612cda565b9050919050565b600081905092915050565b50565b6000612d38600083612d1d565b9150612d4382612d28565b600082019050919050565b6000612d5982612d2b565b9150819050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612d9960208361260e565b9150612da482612d63565b602082019050919050565b60006020820190508181036000830152612dc881612d8c565b9050919050565b6000612dda8261258d565b9150612de58361258d565b9250828203905081811115612dfd57612dfc6129e7565b5b92915050565b6000606082019050612e186000830186612803565b612e256020830185612803565b612e326040830184612803565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612ea7816126e7565b92915050565b600060208284031215612ec357612ec2612588565b5b6000612ed184828501612e98565b91505092915050565b6000819050919050565b6000612eff612efa612ef584612eda565b612789565b61258d565b9050919050565b612f0f81612ee4565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612f4a816126d5565b82525050565b6000612f5c8383612f41565b60208301905092915050565b6000602082019050919050565b6000612f8082612f15565b612f8a8185612f20565b9350612f9583612f31565b8060005b83811015612fc6578151612fad8882612f50565b9750612fb883612f68565b925050600181019050612f99565b5085935050505092915050565b600060a082019050612fe86000830188612803565b612ff56020830187612f06565b81810360408301526130078186612f75565b90506130166060830185612880565b6130236080830184612803565b9695505050505050565b600060c0820190506130426000830189612880565b61304f6020830188612803565b61305c6040830187612f06565b6130696060830186612f06565b6130766080830185612880565b61308360a0830184612803565b979650505050505050565b6000806000606084860312156130a7576130a6612588565b5b60006130b586828701612bde565b93505060206130c686828701612bde565b92505060406130d786828701612bde565b915050925092509256fea2646970667358221220dcded0293ebb3baee10e3d1ab4cd736f02b6a1ac44f83f1de95cc633a101ebb564736f6c63430008110033

Deployed Bytecode

0x60806040526004361061021e5760003560e01c806375f0a87411610123578063c9567bf9116100ab578063dd62ed3e1161006f578063dd62ed3e146107e4578063e2f4560514610821578063f2fde38b1461084c578063f5648a4f14610875578063f8b45b051461088c57610225565b8063c9567bf914610711578063cb96372814610728578063d257b34f14610751578063d46980161461078e578063d85ba063146107b957610225565b8063a457c2d7116100f2578063a457c2d714610618578063a9059cbb14610655578063bbc0c74214610692578063c0246668146106bd578063c8c8ebe4146106e657610225565b806375f0a8741461056e5780638da5cb5b1461059957806395d89b41146105c457806396188399146105ef57610225565b806342966c68116101a65780636a486a8e116101755780636a486a8e1461049b5780636ddd1713146104c657806370a08231146104f1578063715018a61461052e5780637571336a1461054557610225565b806342966c68146103e157806349bd5a5e1461040a5780634fbee1931461043557806366ca9b831461047257610225565b806318160ddd116101ed57806318160ddd146102e657806323b872dd1461031157806327c8f8351461034e578063313ce5671461037957806339509351146103a457610225565b806302dbd8f81461022a57806306fdde0314610253578063095ea7b31461027e5780631694505e146102bb57610225565b3661022557005b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906125c3565b6108b7565b005b34801561025f57600080fd5b50610268610900565b6040516102759190612693565b60405180910390f35b34801561028a57600080fd5b506102a560048036038101906102a09190612713565b610992565b6040516102b2919061276e565b60405180910390f35b3480156102c757600080fd5b506102d06109b5565b6040516102dd91906127e8565b60405180910390f35b3480156102f257600080fd5b506102fb6109d9565b6040516103089190612812565b60405180910390f35b34801561031d57600080fd5b506103386004803603810190610333919061282d565b6109e3565b604051610345919061276e565b60405180910390f35b34801561035a57600080fd5b50610363610a12565b604051610370919061288f565b60405180910390f35b34801561038557600080fd5b5061038e610a18565b60405161039b91906128c6565b60405180910390f35b3480156103b057600080fd5b506103cb60048036038101906103c69190612713565b610a21565b6040516103d8919061276e565b60405180910390f35b3480156103ed57600080fd5b50610408600480360381019061040391906128e1565b610a58565b005b34801561041657600080fd5b5061041f610a65565b60405161042c919061288f565b60405180910390f35b34801561044157600080fd5b5061045c6004803603810190610457919061290e565b610a8b565b604051610469919061276e565b60405180910390f35b34801561047e57600080fd5b50610499600480360381019061049491906125c3565b610ae1565b005b3480156104a757600080fd5b506104b0610b21565b6040516104bd9190612812565b60405180910390f35b3480156104d257600080fd5b506104db610b27565b6040516104e8919061276e565b60405180910390f35b3480156104fd57600080fd5b506105186004803603810190610513919061290e565b610b3a565b6040516105259190612812565b60405180910390f35b34801561053a57600080fd5b50610543610b82565b005b34801561055157600080fd5b5061056c60048036038101906105679190612967565b610b96565b005b34801561057a57600080fd5b50610583610bf9565b604051610590919061288f565b60405180910390f35b3480156105a557600080fd5b506105ae610c1f565b6040516105bb919061288f565b60405180910390f35b3480156105d057600080fd5b506105d9610c49565b6040516105e69190612693565b60405180910390f35b3480156105fb57600080fd5b50610616600480360381019061061191906125c3565b610cdb565b005b34801561062457600080fd5b5061063f600480360381019061063a9190612713565b610d4f565b60405161064c919061276e565b60405180910390f35b34801561066157600080fd5b5061067c60048036038101906106779190612713565b610dc6565b604051610689919061276e565b60405180910390f35b34801561069e57600080fd5b506106a7610de9565b6040516106b4919061276e565b60405180910390f35b3480156106c957600080fd5b506106e460048036038101906106df9190612967565b610dfc565b005b3480156106f257600080fd5b506106fb610e5f565b6040516107089190612812565b60405180910390f35b34801561071d57600080fd5b50610726610e65565b005b34801561073457600080fd5b5061074f600480360381019061074a919061290e565b610ebf565b005b34801561075d57600080fd5b50610778600480360381019061077391906128e1565b61104e565b604051610785919061276e565b60405180910390f35b34801561079a57600080fd5b506107a36110c3565b6040516107b0919061288f565b60405180910390f35b3480156107c557600080fd5b506107ce6110e9565b6040516107db9190612812565b60405180910390f35b3480156107f057600080fd5b5061080b600480360381019061080691906129a7565b6110ef565b6040516108189190612812565b60405180910390f35b34801561082d57600080fd5b50610836611176565b6040516108439190612812565b60405180910390f35b34801561085857600080fd5b50610873600480360381019061086e919061290e565b61117c565b005b34801561088157600080fd5b5061088a6111ff565b005b34801561089857600080fd5b506108a1611278565b6040516108ae9190612812565b60405180910390f35b6108bf61127e565b81601181905550806012819055506012546011546108dd9190612a16565b601081905550601054601581905550601960105411156108fc57600080fd5b5050565b60606003805461090f90612a79565b80601f016020809104026020016040519081016040528092919081815260200182805461093b90612a79565b80156109885780601f1061095d57610100808354040283529160200191610988565b820191906000526020600020905b81548152906001019060200180831161096b57829003601f168201915b5050505050905090565b60008061099d6112fc565b90506109aa818585611304565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b6000806109ee6112fc565b90506109fb8582856113ef565b610a06858585611445565b60019150509392505050565b61dead81565b60006012905090565b600080610a2c6112fc565b9050610a4d818585610a3e85896110ef565b610a489190612a16565b611304565b600191505092915050565b610a623382611d0b565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610ae961127e565b81600e8190555080600f81905550600f54600e54610b079190612a16565b600d819055506019600d541115610b1d57600080fd5b5050565b60105481565b600c60019054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b8a61127e565b610b946000611dda565b565b610b9e61127e565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610c5890612a79565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8490612a79565b8015610cd15780601f10610ca657610100808354040283529160200191610cd1565b820191906000526020600020905b815481529060010190602001808311610cb457829003601f168201915b5050505050905090565b610ce361127e565b6103e86005610cf06109d9565b610cfa9190612aaa565b610d049190612b1b565b821015610d1057600080fd5b6103e86005610d1d6109d9565b610d279190612aaa565b610d319190612b1b565b811015610d3d57600080fd5b80600b81905550816009819055505050565b600080610d5a6112fc565b90506000610d6882866110ef565b905083811015610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da490612bbe565b60405180910390fd5b610dba8286868403611304565b60019250505092915050565b600080610dd16112fc565b9050610dde818585611445565b600191505092915050565b600c60009054906101000a900460ff1681565b610e0461127e565b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60095481565b610e6d61127e565b600c60009054906101000a900460ff1615610e8757600080fd5b6001600c60006101000a81548160ff0219169083151502179055506001600c60016101000a81548160ff021916908315150217905550565b610ec761127e565b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610f02919061288f565b602060405180830381865afa158015610f1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f439190612bf3565b11610f4d57600080fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610f88919061288f565b602060405180830381865afa158015610fa5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fc99190612bf3565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401611006929190612c20565b6020604051808303816000875af1158015611025573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110499190612c5e565b505050565b600061105861127e565b620186a060016110666109d9565b6110709190612aaa565b61107a9190612b1b565b82101561108657600080fd5b6103e860056110936109d9565b61109d9190612aaa565b6110a79190612b1b565b8211156110b357600080fd5b81600a8190555060019050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b61118461127e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ea90612cfd565b60405180910390fd5b6111fc81611dda565b50565b61120761127e565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161122d90612d4e565b60006040518083038185875af1925050503d806000811461126a576040519150601f19603f3d011682016040523d82523d6000602084013e61126f565b606091505b50508091505050565b600b5481565b6112866112fc565b73ffffffffffffffffffffffffffffffffffffffff166112a4610c1f565b73ffffffffffffffffffffffffffffffffffffffff16146112fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f190612daf565b60405180910390fd5b565b600033905090565b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516113e29190612812565b60405180910390a3505050565b60006113fb84846110ef565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461143f578181101561143157600080fd5b61143e8484848403611304565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361147e57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114b757600080fd5b600081036114d0576114cb83836000611ea0565b611d06565b6114d8610c1f565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156115465750611516610c1f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561157f5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156115b9575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156115d25750600660149054906101000a900460ff16155b156118a757600c60009054906101000a900460ff1661169657601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061168c5750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61169557600080fd5b5b601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156117395750601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156117745760095481111561174d57600080fd5b600b5461175983610b3a565b826117649190612a16565b111561176f57600080fd5b6118a6565b601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156118175750601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156118305760095481111561182b57600080fd5b6118a5565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166118a457600b5461188d83610b3a565b826118989190612a16565b11156118a357600080fd5b5b5b5b5b60006118b230610b3a565b90506000600a5482101590508080156118d75750600c60019054906101000a900460ff165b80156118f05750600660149054906101000a900460ff16155b80156119465750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561199c5750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156119f25750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611a36576001600660146101000a81548160ff021916908315150217905550611a1a61205e565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611aec5750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611af657600090505b60008115611ced57601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611b5957506000601054115b15611be557606460105486611b6e9190612aaa565b611b789190612b1b565b905060105460125482611b8b9190612aaa565b611b959190612b1b565b60146000828254611ba69190612a16565b9250508190555060105460115482611bbe9190612aaa565b611bc89190612b1b565b60136000828254611bd99190612a16565b92505081905550611cc9565b601860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611c4057506000600d54115b15611cc8576064600d5486611c559190612aaa565b611c5f9190612b1b565b9050600d54600f5482611c729190612aaa565b611c7c9190612b1b565b60146000828254611c8d9190612a16565b92505081905550600d54600e5482611ca59190612aaa565b611caf9190612b1b565b60136000828254611cc09190612a16565b925050819055505b5b6000811115611cde57611cdd873083611ea0565b5b8085611cea9190612dcf565b94505b611cf8878787611ea0565b601554601081905550505050505b505050565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d599190612dcf565b9250508190555080600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611dce9190612812565b60405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ed957600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f1257600080fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611f6257600080fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516120509190612812565b60405180910390a350505050565b600061206930610b3a565b9050600060135460145461207d9190612a16565b905060008083148061208f5750600082145b1561209c5750505061224d565b6014600a546120ab9190612aaa565b8311156120c4576014600a546120c19190612aaa565b92505b6000600283601454866120d79190612aaa565b6120e19190612b1b565b6120eb9190612b1b565b9050600081856120fb9190612dcf565b9050600047905061210b8261224f565b600081476121199190612dcf565b90506000866013548361212c9190612aaa565b6121369190612b1b565b9050600081836121469190612dcf565b9050600060148190555060006013819055506000861180156121685750600081115b156121b557612177868261248c565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56185826014546040516121ac93929190612e03565b60405180910390a15b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516121fb90612d4e565b60006040518083038185875af1925050503d8060008114612238576040519150601f19603f3d011682016040523d82523d6000602084013e61223d565b606091505b5050809750505050505050505050505b565b6000600267ffffffffffffffff81111561226c5761226b612e3a565b5b60405190808252806020026020018201604052801561229a5781602001602082028036833780820191505090505b50905030816000815181106122b2576122b1612e69565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612357573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061237b9190612ead565b8160018151811061238f5761238e612e69565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506123f4307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611304565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612456959493929190612fd3565b600060405180830381600087803b15801561247057600080fd5b505af1158015612484573d6000803e3d6000fd5b505050505050565b6124b7307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611304565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161253e9695949392919061302d565b60606040518083038185885af115801561255c573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612581919061308e565b5050505050565b600080fd5b6000819050919050565b6125a08161258d565b81146125ab57600080fd5b50565b6000813590506125bd81612597565b92915050565b600080604083850312156125da576125d9612588565b5b60006125e8858286016125ae565b92505060206125f9858286016125ae565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561263d578082015181840152602081019050612622565b60008484015250505050565b6000601f19601f8301169050919050565b600061266582612603565b61266f818561260e565b935061267f81856020860161261f565b61268881612649565b840191505092915050565b600060208201905081810360008301526126ad818461265a565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126e0826126b5565b9050919050565b6126f0816126d5565b81146126fb57600080fd5b50565b60008135905061270d816126e7565b92915050565b6000806040838503121561272a57612729612588565b5b6000612738858286016126fe565b9250506020612749858286016125ae565b9150509250929050565b60008115159050919050565b61276881612753565b82525050565b6000602082019050612783600083018461275f565b92915050565b6000819050919050565b60006127ae6127a96127a4846126b5565b612789565b6126b5565b9050919050565b60006127c082612793565b9050919050565b60006127d2826127b5565b9050919050565b6127e2816127c7565b82525050565b60006020820190506127fd60008301846127d9565b92915050565b61280c8161258d565b82525050565b60006020820190506128276000830184612803565b92915050565b60008060006060848603121561284657612845612588565b5b6000612854868287016126fe565b9350506020612865868287016126fe565b9250506040612876868287016125ae565b9150509250925092565b612889816126d5565b82525050565b60006020820190506128a46000830184612880565b92915050565b600060ff82169050919050565b6128c0816128aa565b82525050565b60006020820190506128db60008301846128b7565b92915050565b6000602082840312156128f7576128f6612588565b5b6000612905848285016125ae565b91505092915050565b60006020828403121561292457612923612588565b5b6000612932848285016126fe565b91505092915050565b61294481612753565b811461294f57600080fd5b50565b6000813590506129618161293b565b92915050565b6000806040838503121561297e5761297d612588565b5b600061298c858286016126fe565b925050602061299d85828601612952565b9150509250929050565b600080604083850312156129be576129bd612588565b5b60006129cc858286016126fe565b92505060206129dd858286016126fe565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612a218261258d565b9150612a2c8361258d565b9250828201905080821115612a4457612a436129e7565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612a9157607f821691505b602082108103612aa457612aa3612a4a565b5b50919050565b6000612ab58261258d565b9150612ac08361258d565b9250828202612ace8161258d565b91508282048414831517612ae557612ae46129e7565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612b268261258d565b9150612b318361258d565b925082612b4157612b40612aec565b5b828204905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612ba860258361260e565b9150612bb382612b4c565b604082019050919050565b60006020820190508181036000830152612bd781612b9b565b9050919050565b600081519050612bed81612597565b92915050565b600060208284031215612c0957612c08612588565b5b6000612c1784828501612bde565b91505092915050565b6000604082019050612c356000830185612880565b612c426020830184612803565b9392505050565b600081519050612c588161293b565b92915050565b600060208284031215612c7457612c73612588565b5b6000612c8284828501612c49565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612ce760268361260e565b9150612cf282612c8b565b604082019050919050565b60006020820190508181036000830152612d1681612cda565b9050919050565b600081905092915050565b50565b6000612d38600083612d1d565b9150612d4382612d28565b600082019050919050565b6000612d5982612d2b565b9150819050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612d9960208361260e565b9150612da482612d63565b602082019050919050565b60006020820190508181036000830152612dc881612d8c565b9050919050565b6000612dda8261258d565b9150612de58361258d565b9250828203905081811115612dfd57612dfc6129e7565b5b92915050565b6000606082019050612e186000830186612803565b612e256020830185612803565b612e326040830184612803565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612ea7816126e7565b92915050565b600060208284031215612ec357612ec2612588565b5b6000612ed184828501612e98565b91505092915050565b6000819050919050565b6000612eff612efa612ef584612eda565b612789565b61258d565b9050919050565b612f0f81612ee4565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612f4a816126d5565b82525050565b6000612f5c8383612f41565b60208301905092915050565b6000602082019050919050565b6000612f8082612f15565b612f8a8185612f20565b9350612f9583612f31565b8060005b83811015612fc6578151612fad8882612f50565b9750612fb883612f68565b925050600181019050612f99565b5085935050505092915050565b600060a082019050612fe86000830188612803565b612ff56020830187612f06565b81810360408301526130078186612f75565b90506130166060830185612880565b6130236080830184612803565b9695505050505050565b600060c0820190506130426000830189612880565b61304f6020830188612803565b61305c6040830187612f06565b6130696060830186612f06565b6130766080830185612880565b61308360a0830184612803565b979650505050505050565b6000806000606084860312156130a7576130a6612588565b5b60006130b586828701612bde565b93505060206130c686828701612bde565b92505060406130d786828701612bde565b915050925092509256fea2646970667358221220dcded0293ebb3baee10e3d1ab4cd736f02b6a1ac44f83f1de95cc633a101ebb564736f6c63430008110033

Deployed Bytecode Sourcemap

18607:10863:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23049:347;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9198:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11699:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18657:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10327:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12521:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18750:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10169:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13225:270;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21330:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18715:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24123:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22739:302;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19225:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19073:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10498:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2766:103;;;;;;;;;;;;;:::i;:::-;;22582:149;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18842:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2125:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9417:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22232:342;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13998:505;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10881:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19033:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23404:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18918:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21762:144;;;;;;;;;;;;;:::i;:::-;;23735:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21914:310;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18879:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19113:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11178:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18960:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3024:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23544:183;;;;;;;;;;;;;:::i;:::-;;19000:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23049:347;2011:13;:11;:13::i;:::-;23193::::1;23174:16;:32;;;;23236:13;23217:16;:32;;;;23295:16;;23276;;:35;;;;:::i;:::-;23260:13;:51;;;;23336:13;;23322:11;:27;;;;23385:2;23368:13;;:19;;23360:28;;;::::0;::::1;;23049:347:::0;;:::o;9198:100::-;9252:13;9285:5;9278:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9198:100;:::o;11699:242::-;11818:4;11840:13;11856:12;:10;:12::i;:::-;11840:28;;11879:32;11888:5;11895:7;11904:6;11879:8;:32::i;:::-;11929:4;11922:11;;;11699:242;;;;:::o;18657:51::-;;;:::o;10327:108::-;10388:7;10415:12;;10408:19;;10327:108;:::o;12521:295::-;12652:4;12669:15;12687:12;:10;:12::i;:::-;12669:30;;12710:38;12726:4;12732:7;12741:6;12710:15;:38::i;:::-;12759:27;12769:4;12775:2;12779:6;12759:9;:27::i;:::-;12804:4;12797:11;;;12521:295;;;;;:::o;18750:53::-;18796:6;18750:53;:::o;10169:93::-;10227:5;10252:2;10245:9;;10169:93;:::o;13225:270::-;13340:4;13362:13;13378:12;:10;:12::i;:::-;13362:28;;13401:64;13410:5;13417:7;13454:10;13426:25;13436:5;13443:7;13426:9;:25::i;:::-;:38;;;;:::i;:::-;13401:8;:64::i;:::-;13483:4;13476:11;;;13225:270;;;;:::o;21330:83::-;21380:25;21386:10;21398:6;21380:5;:25::i;:::-;21330:83;:::o;18715:28::-;;;;;;;;;;;;;:::o;24123:126::-;24189:4;24213:19;:28;24233:7;24213:28;;;;;;;;;;;;;;;;;;;;;;;;;24206:35;;24123:126;;;:::o;22739:302::-;2011:13;:11;:13::i;:::-;22881::::1;22863:15;:31;;;;22923:13;22905:15;:31;;;;22980:15;;22962;;:33;;;;:::i;:::-;22947:12;:48;;;;23030:2;23014:12;;:18;;23006:27;;;::::0;::::1;;22739:302:::0;;:::o;19225:28::-;;;;:::o;19073:31::-;;;;;;;;;;;;;:::o;10498:177::-;10617:7;10649:9;:18;10659:7;10649:18;;;;;;;;;;;;;;;;10642:25;;10498:177;;;:::o;2766:103::-;2011:13;:11;:13::i;:::-;2831:30:::1;2858:1;2831:18;:30::i;:::-;2766:103::o:0;22582:149::-;2011:13;:11;:13::i;:::-;22719:4:::1;22677:31;:39;22709:6;22677:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;22582:149:::0;;:::o;18842:30::-;;;;;;;;;;;;;:::o;2125:87::-;2171:7;2198:6;;;;;;;;;;;2191:13;;2125:87;:::o;9417:104::-;9473:13;9506:7;9499:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9417:104;:::o;22232:342::-;2011:13;:11;:13::i;:::-;22412:4:::1;22407:1;22391:13;:11;:13::i;:::-;:17;;;;:::i;:::-;22390:26;;;;:::i;:::-;22376:9;:41;;22368:50;;;::::0;::::1;;22479:4;22474:1;22458:13;:11;:13::i;:::-;:17;;;;:::i;:::-;22457:26;;;;:::i;:::-;22437:15;:47;;22429:56;;;::::0;::::1;;22508:15;22496:9;:27;;;;22557:9;22534:20;:32;;;;22232:342:::0;;:::o;13998:505::-;14118:4;14140:13;14156:12;:10;:12::i;:::-;14140:28;;14179:24;14206:25;14216:5;14223:7;14206:9;:25::i;:::-;14179:52;;14284:15;14264:16;:35;;14242:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;14400:60;14409:5;14416:7;14444:15;14425:16;:34;14400:8;:60::i;:::-;14491:4;14484:11;;;;13998:505;;;;:::o;10881:234::-;10996:4;11018:13;11034:12;:10;:12::i;:::-;11018:28;;11057;11067:5;11074:2;11078:6;11057:9;:28::i;:::-;11103:4;11096:11;;;10881:234;;;;:::o;19033:33::-;;;;;;;;;;;;;:::o;23404:132::-;2011:13;:11;:13::i;:::-;23520:8:::1;23489:19;:28;23509:7;23489:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;23404:132:::0;;:::o;18918:35::-;;;;:::o;21762:144::-;2011:13;:11;:13::i;:::-;21824::::1;;;;;;;;;;;21823:14;21815:23;;;::::0;::::1;;21865:4;21849:13;;:20;;;;;;;;;;;;;;;;;;21894:4;21880:11;;:18;;;;;;;;;;;;;;;;;;21762:144::o:0;23735:242::-;2011:13;:11;:13::i;:::-;23852:1:::1;23820:3;23813:21;;;23843:4;23813:36;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:40;23805:49;;;::::0;::::1;;23865:14;23889:3;23882:21;;;23912:4;23882:36;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;23865:53;;23936:3;23929:20;;;23950:10;23962:6;23929:40;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;23794:183;23735:242:::0;:::o;21914:310::-;22022:4;2011:13;:11;:13::i;:::-;22087:6:::1;22082:1;22066:13;:11;:13::i;:::-;:17;;;;:::i;:::-;22065:28;;;;:::i;:::-;22052:9;:41;;22044:50;;;::::0;::::1;;22148:4;22143:1;22127:13;:11;:13::i;:::-;:17;;;;:::i;:::-;22126:26;;;;:::i;:::-;22113:9;:39;;22105:48;;;::::0;::::1;;22185:9;22164:18;:30;;;;22212:4;22205:11;;21914:310:::0;;;:::o;18879:30::-;;;;;;;;;;;;;:::o;19113:27::-;;;;:::o;11178:201::-;11312:7;11344:11;:18;11356:5;11344:18;;;;;;;;;;;;;;;:27;11363:7;11344:27;;;;;;;;;;;;;;;;11337:34;;11178:201;;;;:::o;18960:33::-;;;;:::o;3024:238::-;2011:13;:11;:13::i;:::-;3147:1:::1;3127:22;;:8;:22;;::::0;3105:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3226:28;3245:8;3226:18;:28::i;:::-;3024:238:::0;:::o;23544:183::-;2011:13;:11;:13::i;:::-;23600:12:::1;23645:10;23637:24;;23669:21;23637:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23623:96;;;;;23589:138;23544:183::o:0;19000:24::-;;;;:::o;2290:132::-;2365:12;:10;:12::i;:::-;2354:23;;:7;:5;:7::i;:::-;:23;;;2346:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2290:132::o;700:98::-;753:7;780:10;773:17;;700:98;:::o;16719:220::-;16877:6;16847:11;:18;16859:5;16847:18;;;;;;;;;;;;;;;:27;16866:7;16847:27;;;;;;;;;;;;;;;:36;;;;16915:7;16899:32;;16908:5;16899:32;;;16924:6;16899:32;;;;;;:::i;:::-;;;;;;;;16719:220;;;:::o;17230:420::-;17365:24;17392:25;17402:5;17409:7;17392:9;:25::i;:::-;17365:52;;17452:17;17432:16;:37;17428:215;;17514:6;17494:16;:26;;17486:35;;;;;;17565:51;17574:5;17581:7;17609:6;17590:16;:25;17565:8;:51::i;:::-;17428:215;17354:296;17230:420;;;:::o;24257:2865::-;24405:1;24389:18;;:4;:18;;;24381:27;;;;;;24441:1;24427:16;;:2;:16;;;24419:25;;;;;;24471:1;24461:6;:11;24457:93;;24489:28;24505:4;24511:2;24515:1;24489:15;:28::i;:::-;24532:7;;24457:93;24588:7;:5;:7::i;:::-;24580:15;;:4;:15;;;;:45;;;;;24618:7;:5;:7::i;:::-;24612:13;;:2;:13;;;;24580:45;:78;;;;;24656:1;24642:16;;:2;:16;;;;24580:78;:112;;;;;18796:6;24675:17;;:2;:17;;;;24580:112;:138;;;;;24710:8;;;;;;;;;;;24709:9;24580:138;24562:984;;;24750:13;;;;;;;;;;;24745:116;;24792:19;:25;24812:4;24792:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;24821:19;:23;24841:2;24821:23;;;;;;;;;;;;;;;;;;;;;;;;;24792:52;24784:61;;;;;;24745:116;24923:25;:31;24949:4;24923:31;;;;;;;;;;;;;;;;;;;;;;;;;:88;;;;;24976:31;:35;25008:2;24976:35;;;;;;;;;;;;;;;;;;;;;;;;;24975:36;24923:88;24901:634;;;25064:20;;25054:6;:30;;25046:39;;;;;;25138:9;;25121:13;25131:2;25121:9;:13::i;:::-;25112:6;:22;;;;:::i;:::-;:35;;25104:44;;;;;;24901:634;;;25230:25;:29;25256:2;25230:29;;;;;;;;;;;;;;;;;;;;;;;;;:88;;;;;25281:31;:37;25313:4;25281:37;;;;;;;;;;;;;;;;;;;;;;;;;25280:38;25230:88;25208:327;;;25371:20;;25361:6;:30;;25353:39;;;;;;25208:327;;;25419:31;:35;25451:2;25419:35;;;;;;;;;;;;;;;;;;;;;;;;;25414:121;;25509:9;;25492:13;25502:2;25492:9;:13::i;:::-;25483:6;:22;;;;:::i;:::-;:35;;25475:44;;;;;;25414:121;25208:327;24901:634;24562:984;25558:28;25589:24;25607:4;25589:9;:24::i;:::-;25558:55;;25626:12;25665:18;;25641:20;:42;;25626:57;;25714:7;:35;;;;;25738:11;;;;;;;;;;;25714:35;:61;;;;;25767:8;;;;;;;;;;;25766:9;25714:61;:110;;;;;25793:25;:31;25819:4;25793:31;;;;;;;;;;;;;;;;;;;;;;;;;25792:32;25714:110;:153;;;;;25842:19;:25;25862:4;25842:25;;;;;;;;;;;;;;;;;;;;;;;;;25841:26;25714:153;:194;;;;;25885:19;:23;25905:2;25885:23;;;;;;;;;;;;;;;;;;;;;;;;;25884:24;25714:194;25696:326;;;25946:4;25935:8;;:15;;;;;;;;;;;;;;;;;;25967:10;:8;:10::i;:::-;26005:5;25994:8;;:16;;;;;;;;;;;;;;;;;;25696:326;26034:12;26050:8;;;;;;;;;;;26049:9;26034:24;;26075:19;:25;26095:4;26075:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;26104:19;:23;26124:2;26104:23;;;;;;;;;;;;;;;;;;;;;;;;;26075:52;26071:100;;;26154:5;26144:15;;26071:100;26183:12;26216:7;26212:819;;;26268:25;:29;26294:2;26268:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;26317:1;26301:13;;:17;26268:50;26264:618;;;26371:3;26355:13;;26346:6;:22;;;;:::i;:::-;:28;;;;:::i;:::-;26339:35;;26443:13;;26423:16;;26416:4;:23;;;;:::i;:::-;26415:41;;;;:::i;:::-;26393:18;;:63;;;;;;;:::i;:::-;;;;;;;;26525:13;;26505:16;;26498:4;:23;;;;:::i;:::-;26497:41;;;;:::i;:::-;26475:18;;:63;;;;;;;:::i;:::-;;;;;;;;26264:618;;;26600:25;:31;26626:4;26600:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;26650:1;26635:12;;:16;26600:51;26596:286;;;26703:3;26688:12;;26679:6;:21;;;;:::i;:::-;:27;;;;:::i;:::-;26672:34;;26774:12;;26755:15;;26748:4;:22;;;;:::i;:::-;26747:39;;;;:::i;:::-;26725:18;;:61;;;;;;;:::i;:::-;;;;;;;;26854:12;;26835:15;;26828:4;:22;;;;:::i;:::-;26827:39;;;;:::i;:::-;26805:18;;:61;;;;;;;:::i;:::-;;;;;;;;26596:286;26264:618;26909:1;26902:4;:8;26898:91;;;26931:42;26947:4;26961;26968;26931:15;:42::i;:::-;26898:91;27015:4;27005:14;;;;;:::i;:::-;;;26212:819;27043:33;27059:4;27065:2;27069:6;27043:15;:33::i;:::-;27103:11;;27087:13;:27;;;;24370:2752;;;;24257:2865;;;;:::o;15942:339::-;16034:6;16015:9;:15;16025:4;16015:15;;;;;;;;;;;;;;;;:25;;;;;;;:::i;:::-;;;;;;;;16204:6;16188:12;;:22;;;;;;;;;;;16262:1;16239:34;;16248:4;16239:34;;;16266:6;16239:34;;;;;;:::i;:::-;;;;;;;;15942:339;;:::o;3422:191::-;3496:16;3515:6;;;;;;;;;;;3496:25;;3541:8;3532:6;;:17;;;;;;;;;;;;;;;;;;3596:8;3565:40;;3586:8;3565:40;;;;;;;;;;;;3485:128;3422:191;:::o;14973:617::-;15120:1;15104:18;;:4;:18;;;15096:27;;;;;;15156:1;15142:16;;:2;:16;;;15134:25;;;;;;15172:19;15194:9;:15;15204:4;15194:15;;;;;;;;;;;;;;;;15172:37;;15243:6;15228:11;:21;;15220:30;;;;;;15318:6;15304:11;:20;15286:9;:15;15296:4;15286:15;;;;;;;;;;;;;;;:38;;;;15521:6;15504:9;:13;15514:2;15504:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15571:2;15556:26;;15565:4;15556:26;;;15575:6;15556:26;;;;;;:::i;:::-;;;;;;;;15085:505;14973:617;;;:::o;28017:1450::-;28056:23;28082:24;28100:4;28082:9;:24::i;:::-;28056:50;;28117:25;28179:18;;28145;;:52;;;;:::i;:::-;28117:80;;28208:12;28256:1;28237:15;:20;:46;;;;28282:1;28261:17;:22;28237:46;28233:85;;;28300:7;;;;;28233:85;28373:2;28352:18;;:23;;;;:::i;:::-;28334:15;:41;28330:115;;;28431:2;28410:18;;:23;;;;:::i;:::-;28392:41;;28330:115;28457:23;28570:1;28537:17;28502:18;;28484:15;:36;;;;:::i;:::-;28483:71;;;;:::i;:::-;:88;;;;:::i;:::-;28457:114;;28582:26;28629:15;28611;:33;;;;:::i;:::-;28582:62;;28657:25;28685:21;28657:49;;28719:36;28736:18;28719:16;:36::i;:::-;28768:18;28813:17;28789:21;:41;;;;:::i;:::-;28768:62;;28843:23;28903:17;28882:18;;28869:10;:31;;;;:::i;:::-;:51;;;;:::i;:::-;28843:77;;28933:23;28972:15;28959:10;:28;;;;:::i;:::-;28933:54;;29021:1;29000:18;:22;;;;29054:1;29033:18;:22;;;;29090:1;29072:15;:19;:42;;;;;29113:1;29095:15;:19;29072:42;29068:278;;;29131:46;29144:15;29161;29131:12;:46::i;:::-;29197:137;29230:18;29267:15;29301:18;;29197:137;;;;;;;;:::i;:::-;;;;;;;;29068:278;29380:15;;;;;;;;;;;29372:29;;29423:21;29372:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29358:101;;;;;28045:1422;;;;;;;;;28017:1450;:::o;27130:501::-;27196:21;27234:1;27220:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27196:40;;27265:4;27247;27252:1;27247:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;27291:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27281:4;27286:1;27281:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;27326:62;27343:4;27358:15;27376:11;27326:8;:62::i;:::-;27427:15;:66;;;27508:11;27534:1;27550:4;27577;27597:15;27427:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27185:446;27130:501;:::o;27639:370::-;27720:62;27737:4;27752:15;27770:11;27720:8;:62::i;:::-;27795:15;:31;;;27834:9;27867:4;27887:11;27913:1;27929;27945:15;;;;;;;;;;;27975;27795:206;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;27639:370;;:::o;88:117:1:-;197:1;194;187:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:474::-;758:6;766;815:2;803:9;794:7;790:23;786:32;783:119;;;821:79;;:::i;:::-;783:119;941:1;966:53;1011:7;1002:6;991:9;987:22;966:53;:::i;:::-;956:63;;912:117;1068:2;1094:53;1139:7;1130:6;1119:9;1115:22;1094:53;:::i;:::-;1084:63;;1039:118;690:474;;;;;:::o;1170:99::-;1222:6;1256:5;1250:12;1240:22;;1170:99;;;:::o;1275:169::-;1359:11;1393:6;1388:3;1381:19;1433:4;1428:3;1424:14;1409:29;;1275:169;;;;:::o;1450:246::-;1531:1;1541:113;1555:6;1552:1;1549:13;1541:113;;;1640:1;1635:3;1631:11;1625:18;1621:1;1616:3;1612:11;1605:39;1577:2;1574:1;1570:10;1565:15;;1541:113;;;1688:1;1679:6;1674:3;1670:16;1663:27;1512:184;1450:246;;;:::o;1702:102::-;1743:6;1794:2;1790:7;1785:2;1778:5;1774:14;1770:28;1760:38;;1702:102;;;:::o;1810:377::-;1898:3;1926:39;1959:5;1926:39;:::i;:::-;1981:71;2045:6;2040:3;1981:71;:::i;:::-;1974:78;;2061:65;2119:6;2114:3;2107:4;2100:5;2096:16;2061:65;:::i;:::-;2151:29;2173:6;2151:29;:::i;:::-;2146:3;2142:39;2135:46;;1902:285;1810:377;;;;:::o;2193:313::-;2306:4;2344:2;2333:9;2329:18;2321:26;;2393:9;2387:4;2383:20;2379:1;2368:9;2364:17;2357:47;2421:78;2494:4;2485:6;2421:78;:::i;:::-;2413:86;;2193:313;;;;:::o;2512:126::-;2549:7;2589:42;2582:5;2578:54;2567:65;;2512:126;;;:::o;2644:96::-;2681:7;2710:24;2728:5;2710:24;:::i;:::-;2699:35;;2644:96;;;:::o;2746:122::-;2819:24;2837:5;2819:24;:::i;:::-;2812:5;2809:35;2799:63;;2858:1;2855;2848:12;2799:63;2746:122;:::o;2874:139::-;2920:5;2958:6;2945:20;2936:29;;2974:33;3001:5;2974:33;:::i;:::-;2874:139;;;;:::o;3019:474::-;3087:6;3095;3144:2;3132:9;3123:7;3119:23;3115:32;3112:119;;;3150:79;;:::i;:::-;3112:119;3270:1;3295:53;3340:7;3331:6;3320:9;3316:22;3295:53;:::i;:::-;3285:63;;3241:117;3397:2;3423:53;3468:7;3459:6;3448:9;3444:22;3423:53;:::i;:::-;3413:63;;3368:118;3019:474;;;;;:::o;3499:90::-;3533:7;3576:5;3569:13;3562:21;3551:32;;3499:90;;;:::o;3595:109::-;3676:21;3691:5;3676:21;:::i;:::-;3671:3;3664:34;3595:109;;:::o;3710:210::-;3797:4;3835:2;3824:9;3820:18;3812:26;;3848:65;3910:1;3899:9;3895:17;3886:6;3848:65;:::i;:::-;3710:210;;;;:::o;3926:60::-;3954:3;3975:5;3968:12;;3926:60;;;:::o;3992:142::-;4042:9;4075:53;4093:34;4102:24;4120:5;4102:24;:::i;:::-;4093:34;:::i;:::-;4075:53;:::i;:::-;4062:66;;3992:142;;;:::o;4140:126::-;4190:9;4223:37;4254:5;4223:37;:::i;:::-;4210:50;;4140:126;;;:::o;4272:152::-;4348:9;4381:37;4412:5;4381:37;:::i;:::-;4368:50;;4272:152;;;:::o;4430:183::-;4543:63;4600:5;4543:63;:::i;:::-;4538:3;4531:76;4430:183;;:::o;4619:274::-;4738:4;4776:2;4765:9;4761:18;4753:26;;4789:97;4883:1;4872:9;4868:17;4859:6;4789:97;:::i;:::-;4619:274;;;;:::o;4899:118::-;4986:24;5004:5;4986:24;:::i;:::-;4981:3;4974:37;4899:118;;:::o;5023:222::-;5116:4;5154:2;5143:9;5139:18;5131:26;;5167:71;5235:1;5224:9;5220:17;5211:6;5167:71;:::i;:::-;5023:222;;;;:::o;5251:619::-;5328:6;5336;5344;5393:2;5381:9;5372:7;5368:23;5364:32;5361:119;;;5399:79;;:::i;:::-;5361:119;5519:1;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5490:117;5646:2;5672:53;5717:7;5708:6;5697:9;5693:22;5672:53;:::i;:::-;5662:63;;5617:118;5774:2;5800:53;5845:7;5836:6;5825:9;5821:22;5800:53;:::i;:::-;5790:63;;5745:118;5251:619;;;;;:::o;5876:118::-;5963:24;5981:5;5963:24;:::i;:::-;5958:3;5951:37;5876:118;;:::o;6000:222::-;6093:4;6131:2;6120:9;6116:18;6108:26;;6144:71;6212:1;6201:9;6197:17;6188:6;6144:71;:::i;:::-;6000:222;;;;:::o;6228:86::-;6263:7;6303:4;6296:5;6292:16;6281:27;;6228:86;;;:::o;6320:112::-;6403:22;6419:5;6403:22;:::i;:::-;6398:3;6391:35;6320:112;;:::o;6438:214::-;6527:4;6565:2;6554:9;6550:18;6542:26;;6578:67;6642:1;6631:9;6627:17;6618:6;6578:67;:::i;:::-;6438:214;;;;:::o;6658:329::-;6717:6;6766:2;6754:9;6745:7;6741:23;6737:32;6734:119;;;6772:79;;:::i;:::-;6734:119;6892:1;6917:53;6962:7;6953:6;6942:9;6938:22;6917:53;:::i;:::-;6907:63;;6863:117;6658:329;;;;:::o;6993:::-;7052:6;7101:2;7089:9;7080:7;7076:23;7072:32;7069:119;;;7107:79;;:::i;:::-;7069:119;7227:1;7252:53;7297:7;7288:6;7277:9;7273:22;7252:53;:::i;:::-;7242:63;;7198:117;6993:329;;;;:::o;7328:116::-;7398:21;7413:5;7398:21;:::i;:::-;7391:5;7388:32;7378:60;;7434:1;7431;7424:12;7378:60;7328:116;:::o;7450:133::-;7493:5;7531:6;7518:20;7509:29;;7547:30;7571:5;7547:30;:::i;:::-;7450:133;;;;:::o;7589:468::-;7654:6;7662;7711:2;7699:9;7690:7;7686:23;7682:32;7679:119;;;7717:79;;:::i;:::-;7679:119;7837:1;7862:53;7907:7;7898:6;7887:9;7883:22;7862:53;:::i;:::-;7852:63;;7808:117;7964:2;7990:50;8032:7;8023:6;8012:9;8008:22;7990:50;:::i;:::-;7980:60;;7935:115;7589:468;;;;;:::o;8063:474::-;8131:6;8139;8188:2;8176:9;8167:7;8163:23;8159:32;8156:119;;;8194:79;;:::i;:::-;8156:119;8314:1;8339:53;8384:7;8375:6;8364:9;8360:22;8339:53;:::i;:::-;8329:63;;8285:117;8441:2;8467:53;8512:7;8503:6;8492:9;8488:22;8467:53;:::i;:::-;8457:63;;8412:118;8063:474;;;;;:::o;8543:180::-;8591:77;8588:1;8581:88;8688:4;8685:1;8678:15;8712:4;8709:1;8702:15;8729:191;8769:3;8788:20;8806:1;8788:20;:::i;:::-;8783:25;;8822:20;8840:1;8822:20;:::i;:::-;8817:25;;8865:1;8862;8858:9;8851:16;;8886:3;8883:1;8880:10;8877:36;;;8893:18;;:::i;:::-;8877:36;8729:191;;;;:::o;8926:180::-;8974:77;8971:1;8964:88;9071:4;9068:1;9061:15;9095:4;9092:1;9085:15;9112:320;9156:6;9193:1;9187:4;9183:12;9173:22;;9240:1;9234:4;9230:12;9261:18;9251:81;;9317:4;9309:6;9305:17;9295:27;;9251:81;9379:2;9371:6;9368:14;9348:18;9345:38;9342:84;;9398:18;;:::i;:::-;9342:84;9163:269;9112:320;;;:::o;9438:410::-;9478:7;9501:20;9519:1;9501:20;:::i;:::-;9496:25;;9535:20;9553:1;9535:20;:::i;:::-;9530:25;;9590:1;9587;9583:9;9612:30;9630:11;9612:30;:::i;:::-;9601:41;;9791:1;9782:7;9778:15;9775:1;9772:22;9752:1;9745:9;9725:83;9702:139;;9821:18;;:::i;:::-;9702:139;9486:362;9438:410;;;;:::o;9854:180::-;9902:77;9899:1;9892:88;9999:4;9996:1;9989:15;10023:4;10020:1;10013:15;10040:185;10080:1;10097:20;10115:1;10097:20;:::i;:::-;10092:25;;10131:20;10149:1;10131:20;:::i;:::-;10126:25;;10170:1;10160:35;;10175:18;;:::i;:::-;10160:35;10217:1;10214;10210:9;10205:14;;10040:185;;;;:::o;10231:224::-;10371:34;10367:1;10359:6;10355:14;10348:58;10440:7;10435:2;10427:6;10423:15;10416:32;10231:224;:::o;10461:366::-;10603:3;10624:67;10688:2;10683:3;10624:67;:::i;:::-;10617:74;;10700:93;10789:3;10700:93;:::i;:::-;10818:2;10813:3;10809:12;10802:19;;10461:366;;;:::o;10833:419::-;10999:4;11037:2;11026:9;11022:18;11014:26;;11086:9;11080:4;11076:20;11072:1;11061:9;11057:17;11050:47;11114:131;11240:4;11114:131;:::i;:::-;11106:139;;10833:419;;;:::o;11258:143::-;11315:5;11346:6;11340:13;11331:22;;11362:33;11389:5;11362:33;:::i;:::-;11258:143;;;;:::o;11407:351::-;11477:6;11526:2;11514:9;11505:7;11501:23;11497:32;11494:119;;;11532:79;;:::i;:::-;11494:119;11652:1;11677:64;11733:7;11724:6;11713:9;11709:22;11677:64;:::i;:::-;11667:74;;11623:128;11407:351;;;;:::o;11764:332::-;11885:4;11923:2;11912:9;11908:18;11900:26;;11936:71;12004:1;11993:9;11989:17;11980:6;11936:71;:::i;:::-;12017:72;12085:2;12074:9;12070:18;12061:6;12017:72;:::i;:::-;11764:332;;;;;:::o;12102:137::-;12156:5;12187:6;12181:13;12172:22;;12203:30;12227:5;12203:30;:::i;:::-;12102:137;;;;:::o;12245:345::-;12312:6;12361:2;12349:9;12340:7;12336:23;12332:32;12329:119;;;12367:79;;:::i;:::-;12329:119;12487:1;12512:61;12565:7;12556:6;12545:9;12541:22;12512:61;:::i;:::-;12502:71;;12458:125;12245:345;;;;:::o;12596:225::-;12736:34;12732:1;12724:6;12720:14;12713:58;12805:8;12800:2;12792:6;12788:15;12781:33;12596:225;:::o;12827:366::-;12969:3;12990:67;13054:2;13049:3;12990:67;:::i;:::-;12983:74;;13066:93;13155:3;13066:93;:::i;:::-;13184:2;13179:3;13175:12;13168:19;;12827:366;;;:::o;13199:419::-;13365:4;13403:2;13392:9;13388:18;13380:26;;13452:9;13446:4;13442:20;13438:1;13427:9;13423:17;13416:47;13480:131;13606:4;13480:131;:::i;:::-;13472:139;;13199:419;;;:::o;13624:147::-;13725:11;13762:3;13747:18;;13624:147;;;;:::o;13777:114::-;;:::o;13897:398::-;14056:3;14077:83;14158:1;14153:3;14077:83;:::i;:::-;14070:90;;14169:93;14258:3;14169:93;:::i;:::-;14287:1;14282:3;14278:11;14271:18;;13897:398;;;:::o;14301:379::-;14485:3;14507:147;14650:3;14507:147;:::i;:::-;14500:154;;14671:3;14664:10;;14301:379;;;:::o;14686:182::-;14826:34;14822:1;14814:6;14810:14;14803:58;14686:182;:::o;14874:366::-;15016:3;15037:67;15101:2;15096:3;15037:67;:::i;:::-;15030:74;;15113:93;15202:3;15113:93;:::i;:::-;15231:2;15226:3;15222:12;15215:19;;14874:366;;;:::o;15246:419::-;15412:4;15450:2;15439:9;15435:18;15427:26;;15499:9;15493:4;15489:20;15485:1;15474:9;15470:17;15463:47;15527:131;15653:4;15527:131;:::i;:::-;15519:139;;15246:419;;;:::o;15671:194::-;15711:4;15731:20;15749:1;15731:20;:::i;:::-;15726:25;;15765:20;15783:1;15765:20;:::i;:::-;15760:25;;15809:1;15806;15802:9;15794:17;;15833:1;15827:4;15824:11;15821:37;;;15838:18;;:::i;:::-;15821:37;15671:194;;;;:::o;15871:442::-;16020:4;16058:2;16047:9;16043:18;16035:26;;16071:71;16139:1;16128:9;16124:17;16115:6;16071:71;:::i;:::-;16152:72;16220:2;16209:9;16205:18;16196:6;16152:72;:::i;:::-;16234;16302:2;16291:9;16287:18;16278:6;16234:72;:::i;:::-;15871:442;;;;;;:::o;16319:180::-;16367:77;16364:1;16357:88;16464:4;16461:1;16454:15;16488:4;16485:1;16478:15;16505:180;16553:77;16550:1;16543:88;16650:4;16647:1;16640:15;16674:4;16671:1;16664:15;16691:143;16748:5;16779:6;16773:13;16764:22;;16795:33;16822:5;16795:33;:::i;:::-;16691:143;;;;:::o;16840:351::-;16910:6;16959:2;16947:9;16938:7;16934:23;16930:32;16927:119;;;16965:79;;:::i;:::-;16927:119;17085:1;17110:64;17166:7;17157:6;17146:9;17142:22;17110:64;:::i;:::-;17100:74;;17056:128;16840:351;;;;:::o;17197:85::-;17242:7;17271:5;17260:16;;17197:85;;;:::o;17288:158::-;17346:9;17379:61;17397:42;17406:32;17432:5;17406:32;:::i;:::-;17397:42;:::i;:::-;17379:61;:::i;:::-;17366:74;;17288:158;;;:::o;17452:147::-;17547:45;17586:5;17547:45;:::i;:::-;17542:3;17535:58;17452:147;;:::o;17605:114::-;17672:6;17706:5;17700:12;17690:22;;17605:114;;;:::o;17725:184::-;17824:11;17858:6;17853:3;17846:19;17898:4;17893:3;17889:14;17874:29;;17725:184;;;;:::o;17915:132::-;17982:4;18005:3;17997:11;;18035:4;18030:3;18026:14;18018:22;;17915:132;;;:::o;18053:108::-;18130:24;18148:5;18130:24;:::i;:::-;18125:3;18118:37;18053:108;;:::o;18167:179::-;18236:10;18257:46;18299:3;18291:6;18257:46;:::i;:::-;18335:4;18330:3;18326:14;18312:28;;18167:179;;;;:::o;18352:113::-;18422:4;18454;18449:3;18445:14;18437:22;;18352:113;;;:::o;18501:732::-;18620:3;18649:54;18697:5;18649:54;:::i;:::-;18719:86;18798:6;18793:3;18719:86;:::i;:::-;18712:93;;18829:56;18879:5;18829:56;:::i;:::-;18908:7;18939:1;18924:284;18949:6;18946:1;18943:13;18924:284;;;19025:6;19019:13;19052:63;19111:3;19096:13;19052:63;:::i;:::-;19045:70;;19138:60;19191:6;19138:60;:::i;:::-;19128:70;;18984:224;18971:1;18968;18964:9;18959:14;;18924:284;;;18928:14;19224:3;19217:10;;18625:608;;;18501:732;;;;:::o;19239:831::-;19502:4;19540:3;19529:9;19525:19;19517:27;;19554:71;19622:1;19611:9;19607:17;19598:6;19554:71;:::i;:::-;19635:80;19711:2;19700:9;19696:18;19687:6;19635:80;:::i;:::-;19762:9;19756:4;19752:20;19747:2;19736:9;19732:18;19725:48;19790:108;19893:4;19884:6;19790:108;:::i;:::-;19782:116;;19908:72;19976:2;19965:9;19961:18;19952:6;19908:72;:::i;:::-;19990:73;20058:3;20047:9;20043:19;20034:6;19990:73;:::i;:::-;19239:831;;;;;;;;:::o;20076:807::-;20325:4;20363:3;20352:9;20348:19;20340:27;;20377:71;20445:1;20434:9;20430:17;20421:6;20377:71;:::i;:::-;20458:72;20526:2;20515:9;20511:18;20502:6;20458:72;:::i;:::-;20540:80;20616:2;20605:9;20601:18;20592:6;20540:80;:::i;:::-;20630;20706:2;20695:9;20691:18;20682:6;20630:80;:::i;:::-;20720:73;20788:3;20777:9;20773:19;20764:6;20720:73;:::i;:::-;20803;20871:3;20860:9;20856:19;20847:6;20803:73;:::i;:::-;20076:807;;;;;;;;;:::o;20889:663::-;20977:6;20985;20993;21042:2;21030:9;21021:7;21017:23;21013:32;21010:119;;;21048:79;;:::i;:::-;21010:119;21168:1;21193:64;21249:7;21240:6;21229:9;21225:22;21193:64;:::i;:::-;21183:74;;21139:128;21306:2;21332:64;21388:7;21379:6;21368:9;21364:22;21332:64;:::i;:::-;21322:74;;21277:129;21445:2;21471:64;21527:7;21518:6;21507:9;21503:22;21471:64;:::i;:::-;21461:74;;21416:129;20889:663;;;;;:::o

Swarm Source

ipfs://dcded0293ebb3baee10e3d1ab4cd736f02b6a1ac44f83f1de95cc633a101ebb5
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.