ETH Price: $3,453.72 (+1.83%)
Gas: 4 Gwei

Token

KJOL Inmates (KJOL)
 

Overview

Max Total Supply

420,690,000,000,000 KJOL

Holders

122

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
rocketgirlnft.eth
Balance
195,535,000,856.250063904 KJOL

Value
$0.00
0x3e0914fc2b3b67a476142020b7d6990d01ad234e
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:
KJOL

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-02
*/

/**

Key Jailed Opinion Leaders

Twitter: https://twitter.com/kjolcoin

*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.16;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function allPairsLength() external view returns (uint256);

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

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

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

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

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

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

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

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

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

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

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

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

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

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

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

/**
 * @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 decimals places of the token.
     */
    function decimals() external view returns (uint8);

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

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

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

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

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

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

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

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

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

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

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

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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    function symbol() external view virtual override returns (string memory) {
        return _symbol;
    }

    function name() external view virtual override returns (string memory) {
        return _name;
    }

    function balanceOf(address account)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _balances[account];
    }

    function decimals() public view virtual override returns (uint8) {
        return 9;
    }

    function totalSupply() external view virtual override returns (uint256) {
        return _totalSupply;
    }

    function allowance(address owner, address spender)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }

    function transfer(address to, uint256 amount)
        external
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    function approve(address spender, uint256 amount)
        external
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue)
        external
        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;
    }

    function increaseAllowance(address spender, uint256 addedValue)
        external
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

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

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(
                currentAllowance >= amount,
                "ERC20: insufficient allowance"
            );
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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

        emit Transfer(from, to, amount);
    }
}

 contract KJOL is ERC20, Ownable {
    // TOKENOMICS START ==========================================================>
    string private _name = "KJOL Inmates";
    string private _symbol = "KJOL";
    uint8 private _decimals = 9;
    uint256 private _supply = 420690000000000;
    uint256 public taxForLiquidity = 0;
    uint256 public taxForMarketing = 3;
    uint256 public maxTxAmount = 6306900000000 * 10**_decimals;
    uint256 public maxWalletAmount = 6306900000000 * 10**_decimals;
    uint256 public minWalletAmount = 1306900000000 * 10**_decimals;
    address public marketingWallet = 0x2De1295694a6E9B5F4a9AD626e1C3F4127ddd045;
    // TOKENOMICS END ============================================================>

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    uint256 private _marketingReserves = 0;
    mapping(address => bool) private _isExcludedFromFee;
    uint256 private _numTokensSellToAddToLiquidity = 102069000000 * 10**_decimals;
    uint256 private _numTokensSellToAddToETH       = 102069000000 * 10**_decimals;
    bool inSwapAndLiquify;

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

    modifier lockTheSwap() {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    constructor() ERC20(_name, _symbol) {
        _mint(msg.sender, (_supply * 10**_decimals));

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;

        _isExcludedFromFee[address(uniswapV2Router)] = true;
        _isExcludedFromFee[msg.sender] = true;
        _isExcludedFromFee[marketingWallet] = true;
    }

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

        if ((from == uniswapV2Pair || to == uniswapV2Pair) && !inSwapAndLiquify) {
            if (from != uniswapV2Pair) {
                uint256 contractLiquidityBalance = balanceOf(address(this)) - _marketingReserves;
                if (contractLiquidityBalance >= _numTokensSellToAddToLiquidity) {
                    _swapAndLiquify(_numTokensSellToAddToLiquidity);
                }
                if ((_marketingReserves) >= _numTokensSellToAddToETH) {
                    uint256 marketingHalf = (_marketingReserves / 2);
                    _swapTokensForEth(marketingHalf);
                    _marketingReserves -= marketingHalf;
                    bool sent = payable(marketingWallet).send(address(this).balance);
                    require(sent, "Failed to send ETH");
                }
            }

            uint256 transferAmount;
            if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
                transferAmount = amount;
            } 
            else {
                require(amount <= maxTxAmount, "ERC20: transfer amount exceeds the max transaction amount");
                if(from == uniswapV2Pair){
                    require((amount + balanceOf(to)) <= maxWalletAmount, "ERC20: balance limit");
                    require((amount + balanceOf(to)) >= minWalletAmount, "ERC20: balance limit");
                }

                uint256 marketingShare = ((amount * taxForMarketing) / 100);
                uint256 liquidityShare = ((amount * taxForLiquidity) / 100);
                transferAmount = amount - (marketingShare + liquidityShare);
                _marketingReserves += marketingShare;

                super._transfer(from, address(this), (marketingShare + liquidityShare));
            }
            super._transfer(from, to, transferAmount);
        } 
        else {
            super._transfer(from, to, amount);
        }
    }

    function _swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        uint256 half = (contractTokenBalance / 2);
        uint256 otherHalf = (contractTokenBalance - half);

        uint256 initialBalance = address(this).balance;

        _swapTokensForEth(half);

        uint256 newBalance = (address(this).balance - initialBalance);

        _addLiquidity(otherHalf, newBalance);

        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

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

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

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            (block.timestamp + 300)
        );
    }

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

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

    function changeMarketingWallet(address newWallet)
        public
        onlyOwner
        returns (bool)
    {
        marketingWallet = newWallet;
        return true;
    }

    function changeTaxForLiquidityAndMarketing(uint256 _taxForLiquidity, uint256 _taxForMarketing)
        public
        onlyOwner
        returns (bool)
    {
        require((_taxForLiquidity+_taxForMarketing) <= 100, "ERC20: total tax must not be greater than 100");
        taxForLiquidity = _taxForLiquidity;
        taxForMarketing = _taxForMarketing;

        return true;
    }

    function changeMaxTxAmount(uint256 _maxTxAmount)
        public
        onlyOwner
        returns (bool)
    {
        maxTxAmount = _maxTxAmount;

        return true;
    }

    function changeWalletAmount(uint256 _maxWalletAmount, uint256 _minWalletAmount)
        public
        onlyOwner
        returns (bool)
    {
        maxWalletAmount = _maxWalletAmount;
        minWalletAmount = _minWalletAmount;

        return true;
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","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":"address","name":"newWallet","type":"address"}],"name":"changeMarketingWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"changeMaxTxAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxForLiquidity","type":"uint256"},{"internalType":"uint256","name":"_taxForMarketing","type":"uint256"}],"name":"changeTaxForLiquidityAndMarketing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"},{"internalType":"uint256","name":"_minWalletAmount","type":"uint256"}],"name":"changeWalletAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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"},{"stateMutability":"payable","type":"receive"}]

60c06040526040518060400160405280600c81526020017f4b4a4f4c20496e6d617465730000000000000000000000000000000000000000815250600690816200004a919062000b7c565b506040518060400160405280600481526020017f4b4a4f4c000000000000000000000000000000000000000000000000000000008152506007908162000091919062000b7c565b506009600860006101000a81548160ff021916908360ff16021790555066017e9d8602b4006009556000600a556003600b55600860009054906101000a900460ff16600a620000e1919062000df3565b6505bc7088bd00620000f4919062000e44565b600c55600860009054906101000a900460ff16600a62000115919062000df3565b6505bc7088bd0062000128919062000e44565b600d55600860009054906101000a900460ff16600a62000149919062000df3565b650130494f6d006200015c919062000e44565b600e55732de1295694a6e9b5f4a9ad626e1c3f4127ddd045600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000601055600860009054906101000a900460ff16600a620001d7919062000df3565b6417c3c95740620001e9919062000e44565b601255600860009054906101000a900460ff16600a6200020a919062000df3565b6417c3c957406200021c919062000e44565b6013553480156200022c57600080fd5b50600680546200023c906200096b565b80601f01602080910402602001604051908101604052809291908181526020018280546200026a906200096b565b8015620002bb5780601f106200028f57610100808354040283529160200191620002bb565b820191906000526020600020905b8154815290600101906020018083116200029d57829003601f168201915b505050505060078054620002cf906200096b565b80601f0160208091040260200160405190810160405280929190818152602001828054620002fd906200096b565b80156200034e5780601f1062000322576101008083540402835291602001916200034e565b820191906000526020600020905b8154815290600101906020018083116200033057829003601f168201915b5050505050816003908162000364919062000b7c565b50806004908162000376919062000b7c565b505050620003996200038d620006ef60201b60201c565b620006f760201b60201c565b620003d733600860009054906101000a900460ff16600a620003bc919062000df3565b600954620003cb919062000e44565b620007bd60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200043c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000462919062000f0f565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620004ca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004f0919062000f0f565b6040518363ffffffff1660e01b81526004016200050f92919062000f52565b6020604051808303816000875af11580156200052f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000555919062000f0f565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505060016011600060805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160116000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550506200106b565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200082f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008269062000fe0565b60405180910390fd5b806002600082825462000843919062001002565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620008f691906200104e565b60405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200098457607f821691505b6020821081036200099a57620009996200093c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000a047fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620009c5565b62000a108683620009c5565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000a5d62000a5762000a518462000a28565b62000a32565b62000a28565b9050919050565b6000819050919050565b62000a798362000a3c565b62000a9162000a888262000a64565b848454620009d2565b825550505050565b600090565b62000aa862000a99565b62000ab581848462000a6e565b505050565b5b8181101562000add5762000ad160008262000a9e565b60018101905062000abb565b5050565b601f82111562000b2c5762000af681620009a0565b62000b0184620009b5565b8101602085101562000b11578190505b62000b2962000b2085620009b5565b83018262000aba565b50505b505050565b600082821c905092915050565b600062000b516000198460080262000b31565b1980831691505092915050565b600062000b6c838362000b3e565b9150826002028217905092915050565b62000b878262000902565b67ffffffffffffffff81111562000ba35762000ba26200090d565b5b62000baf82546200096b565b62000bbc82828562000ae1565b600060209050601f83116001811462000bf4576000841562000bdf578287015190505b62000beb858262000b5e565b86555062000c5b565b601f19841662000c0486620009a0565b60005b8281101562000c2e5784890151825560018201915060208501945060208101905062000c07565b8683101562000c4e578489015162000c4a601f89168262000b3e565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000cf15780860481111562000cc95762000cc862000c63565b5b600185161562000cd95780820291505b808102905062000ce98562000c92565b945062000ca9565b94509492505050565b60008262000d0c576001905062000ddf565b8162000d1c576000905062000ddf565b816001811462000d35576002811462000d405762000d76565b600191505062000ddf565b60ff84111562000d555762000d5462000c63565b5b8360020a91508482111562000d6f5762000d6e62000c63565b5b5062000ddf565b5060208310610133831016604e8410600b841016171562000db05782820a90508381111562000daa5762000da962000c63565b5b62000ddf565b62000dbf848484600162000c9f565b9250905081840481111562000dd95762000dd862000c63565b5b81810290505b9392505050565b600060ff82169050919050565b600062000e008262000a28565b915062000e0d8362000de6565b925062000e3c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000cfa565b905092915050565b600062000e518262000a28565b915062000e5e8362000a28565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000e9a5762000e9962000c63565b5b828202905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000ed78262000eaa565b9050919050565b62000ee98162000eca565b811462000ef557600080fd5b50565b60008151905062000f098162000ede565b92915050565b60006020828403121562000f285762000f2762000ea5565b5b600062000f388482850162000ef8565b91505092915050565b62000f4c8162000eca565b82525050565b600060408201905062000f69600083018562000f41565b62000f78602083018462000f41565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000fc8601f8362000f7f565b915062000fd58262000f90565b602082019050919050565b6000602082019050818103600083015262000ffb8162000fb9565b9050919050565b60006200100f8262000a28565b91506200101c8362000a28565b925082820190508082111562001037576200103662000c63565b5b92915050565b620010488162000a28565b82525050565b60006020820190506200106560008301846200103d565b92915050565b60805160a051612bfe620010d06000396000818161081b01528181610f9e01528181610ff30152818161106101526112b801526000818161075601528181611722015281816118030152818161182a01528181611b690152611b900152612bfe6000f3fe6080604052600436106101855760003560e01c8063715018a6116100d1578063a9059cbb1161008a578063bb85c6d111610064578063bb85c6d1146105d1578063dd62ed3e1461060e578063f2fde38b1461064b578063f345bd85146106745761018c565b8063a9059cbb1461052c578063aa4bde2814610569578063af8af690146105945761018c565b8063715018a61461042c57806375f0a874146104435780638c0b5e221461046e5780638da5cb5b1461049957806395d89b41146104c4578063a457c2d7146104ef5761018c565b806336ba641d1161013e57806349bd5a5e1161011857806349bd5a5e1461035c578063527ffabd14610387578063677daa57146103b257806370a08231146103ef5761018c565b806336ba641d146102b757806339509351146102f45780633a7ab852146103315761018c565b806306fdde0314610191578063095ea7b3146101bc5780631694505e146101f957806318160ddd1461022457806323b872dd1461024f578063313ce5671461028c5761018c565b3661018c57005b600080fd5b34801561019d57600080fd5b506101a661069f565b6040516101b39190611cef565b60405180910390f35b3480156101c857600080fd5b506101e360048036038101906101de9190611daa565b610731565b6040516101f09190611e05565b60405180910390f35b34801561020557600080fd5b5061020e610754565b60405161021b9190611e7f565b60405180910390f35b34801561023057600080fd5b50610239610778565b6040516102469190611ea9565b60405180910390f35b34801561025b57600080fd5b5061027660048036038101906102719190611ec4565b610782565b6040516102839190611e05565b60405180910390f35b34801561029857600080fd5b506102a16107b1565b6040516102ae9190611f33565b60405180910390f35b3480156102c357600080fd5b506102de60048036038101906102d99190611f4e565b6107ba565b6040516102eb9190611e05565b60405180910390f35b34801561030057600080fd5b5061031b60048036038101906103169190611daa565b6107dc565b6040516103289190611e05565b60405180910390f35b34801561033d57600080fd5b50610346610813565b6040516103539190611ea9565b60405180910390f35b34801561036857600080fd5b50610371610819565b60405161037e9190611f9d565b60405180910390f35b34801561039357600080fd5b5061039c61083d565b6040516103a99190611ea9565b60405180910390f35b3480156103be57600080fd5b506103d960048036038101906103d49190611fb8565b610843565b6040516103e69190611e05565b60405180910390f35b3480156103fb57600080fd5b5061041660048036038101906104119190611fe5565b61085d565b6040516104239190611ea9565b60405180910390f35b34801561043857600080fd5b506104416108a5565b005b34801561044f57600080fd5b506104586108b9565b6040516104659190611f9d565b60405180910390f35b34801561047a57600080fd5b506104836108df565b6040516104909190611ea9565b60405180910390f35b3480156104a557600080fd5b506104ae6108e5565b6040516104bb9190611f9d565b60405180910390f35b3480156104d057600080fd5b506104d961090f565b6040516104e69190611cef565b60405180910390f35b3480156104fb57600080fd5b5061051660048036038101906105119190611daa565b6109a1565b6040516105239190611e05565b60405180910390f35b34801561053857600080fd5b50610553600480360381019061054e9190611daa565b610a18565b6040516105609190611e05565b60405180910390f35b34801561057557600080fd5b5061057e610a3b565b60405161058b9190611ea9565b60405180910390f35b3480156105a057600080fd5b506105bb60048036038101906105b69190611f4e565b610a41565b6040516105c89190611e05565b60405180910390f35b3480156105dd57600080fd5b506105f860048036038101906105f39190611fe5565b610ab2565b6040516106059190611e05565b60405180910390f35b34801561061a57600080fd5b5061063560048036038101906106309190612012565b610b06565b6040516106429190611ea9565b60405180910390f35b34801561065757600080fd5b50610672600480360381019061066d9190611fe5565b610b8d565b005b34801561068057600080fd5b50610689610c10565b6040516106969190611ea9565b60405180910390f35b6060600380546106ae90612081565b80601f01602080910402602001604051908101604052809291908181526020018280546106da90612081565b80156107275780601f106106fc57610100808354040283529160200191610727565b820191906000526020600020905b81548152906001019060200180831161070a57829003601f168201915b5050505050905090565b60008061073c610c16565b9050610749818585610c1e565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b60008061078d610c16565b905061079a858285610de7565b6107a5858585610e73565b60019150509392505050565b60006009905090565b60006107c4611463565b82600d8190555081600e819055506001905092915050565b6000806107e7610c16565b90506108088185856107f98589610b06565b61080391906120e1565b610c1e565b600191505092915050565b600e5481565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b5481565b600061084d611463565b81600c8190555060019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108ad611463565b6108b760006114e1565b565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461091e90612081565b80601f016020809104026020016040519081016040528092919081815260200182805461094a90612081565b80156109975780601f1061096c57610100808354040283529160200191610997565b820191906000526020600020905b81548152906001019060200180831161097a57829003601f168201915b5050505050905090565b6000806109ac610c16565b905060006109ba8286610b06565b9050838110156109ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f690612187565b60405180910390fd5b610a0c8286868403610c1e565b60019250505092915050565b600080610a23610c16565b9050610a30818585610e73565b600191505092915050565b600d5481565b6000610a4b611463565b60648284610a5991906120e1565b1115610a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9190612219565b60405180910390fd5b82600a8190555081600b819055506001905092915050565b6000610abc611463565b81600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b95611463565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfb906122ab565b60405180910390fd5b610c0d816114e1565b50565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c849061233d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf3906123cf565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610dda9190611ea9565b60405180910390a3505050565b6000610df38484610b06565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e6d5781811015610e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e569061243b565b60405180910390fd5b610e6c8484848403610c1e565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed9906124cd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f489061255f565b60405180910390fd5b80610f5b8461085d565b1015610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f93906125f1565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061104157507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b801561105a5750601460009054906101000a900460ff16155b15611452577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146111c15760006010546110c03061085d565b6110ca9190612611565b905060125481106110e1576110e06012546115a7565b5b601354601054106111bf57600060026010546110fd9190612674565b905061110881611668565b806010600082825461111a9190612611565b925050819055506000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050509050806111bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b3906126f1565b60405180910390fd5b50505b505b6000601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806112645750601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561127157819050611441565b600c548211156112b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ad90612783565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036113ba57600d546113158461085d565b8361132091906120e1565b1115611361576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611358906127ef565b60405180910390fd5b600e5461136d8461085d565b8361137891906120e1565b10156113b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b0906127ef565b60405180910390fd5b5b60006064600b54846113cc919061280f565b6113d69190612674565b905060006064600a54856113ea919061280f565b6113f49190612674565b9050808261140291906120e1565b8461140d9190612611565b9250816010600082825461142191906120e1565b9250508190555061143e8630838561143991906120e1565b6118e8565b50505b61144c8484836118e8565b5061145e565b61145d8383836118e8565b5b505050565b61146b610c16565b73ffffffffffffffffffffffffffffffffffffffff166114896108e5565b73ffffffffffffffffffffffffffffffffffffffff16146114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d6906128b5565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001601460006101000a81548160ff02191690831515021790555060006002826115d19190612674565b9050600081836115e19190612611565b905060004790506115f183611668565b600081476115ff9190612611565b905061160b8382611b48565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405161163e939291906128d5565b60405180910390a1505050506000601460006101000a81548160ff02191690831515021790555050565b6001601460006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff8111156116a05761169f61290c565b5b6040519080825280602002602001820160405280156116ce5781602001602082028036833780820191505090505b50905030816000815181106116e6576116e561293b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561178b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117af919061297f565b816001815181106117c3576117c261293b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611828307f000000000000000000000000000000000000000000000000000000000000000084610c1e565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c4261187791906120e1565b6040518663ffffffff1660e01b8152600401611897959493929190612aa5565b600060405180830381600087803b1580156118b157600080fd5b505af11580156118c5573d6000803e3d6000fd5b50505050506000601460006101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194e906124cd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bd9061255f565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a43906125f1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b3a9190611ea9565b60405180910390a350505050565b6001601460006101000a81548160ff021916908315150217905550611b8e307f000000000000000000000000000000000000000000000000000000000000000084610c1e565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080611bd86108e5565b426040518863ffffffff1660e01b8152600401611bfa96959493929190612aff565b60606040518083038185885af1158015611c18573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611c3d9190612b75565b5050506000601460006101000a81548160ff0219169083151502179055505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611c99578082015181840152602081019050611c7e565b60008484015250505050565b6000601f19601f8301169050919050565b6000611cc182611c5f565b611ccb8185611c6a565b9350611cdb818560208601611c7b565b611ce481611ca5565b840191505092915050565b60006020820190508181036000830152611d098184611cb6565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611d4182611d16565b9050919050565b611d5181611d36565b8114611d5c57600080fd5b50565b600081359050611d6e81611d48565b92915050565b6000819050919050565b611d8781611d74565b8114611d9257600080fd5b50565b600081359050611da481611d7e565b92915050565b60008060408385031215611dc157611dc0611d11565b5b6000611dcf85828601611d5f565b9250506020611de085828601611d95565b9150509250929050565b60008115159050919050565b611dff81611dea565b82525050565b6000602082019050611e1a6000830184611df6565b92915050565b6000819050919050565b6000611e45611e40611e3b84611d16565b611e20565b611d16565b9050919050565b6000611e5782611e2a565b9050919050565b6000611e6982611e4c565b9050919050565b611e7981611e5e565b82525050565b6000602082019050611e946000830184611e70565b92915050565b611ea381611d74565b82525050565b6000602082019050611ebe6000830184611e9a565b92915050565b600080600060608486031215611edd57611edc611d11565b5b6000611eeb86828701611d5f565b9350506020611efc86828701611d5f565b9250506040611f0d86828701611d95565b9150509250925092565b600060ff82169050919050565b611f2d81611f17565b82525050565b6000602082019050611f486000830184611f24565b92915050565b60008060408385031215611f6557611f64611d11565b5b6000611f7385828601611d95565b9250506020611f8485828601611d95565b9150509250929050565b611f9781611d36565b82525050565b6000602082019050611fb26000830184611f8e565b92915050565b600060208284031215611fce57611fcd611d11565b5b6000611fdc84828501611d95565b91505092915050565b600060208284031215611ffb57611ffa611d11565b5b600061200984828501611d5f565b91505092915050565b6000806040838503121561202957612028611d11565b5b600061203785828601611d5f565b925050602061204885828601611d5f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061209957607f821691505b6020821081036120ac576120ab612052565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006120ec82611d74565b91506120f783611d74565b925082820190508082111561210f5761210e6120b2565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612171602583611c6a565b915061217c82612115565b604082019050919050565b600060208201905081810360008301526121a081612164565b9050919050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2031303000000000000000000000000000000000000000602082015250565b6000612203602d83611c6a565b915061220e826121a7565b604082019050919050565b60006020820190508181036000830152612232816121f6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612295602683611c6a565b91506122a082612239565b604082019050919050565b600060208201905081810360008301526122c481612288565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612327602483611c6a565b9150612332826122cb565b604082019050919050565b600060208201905081810360008301526123568161231a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006123b9602283611c6a565b91506123c48261235d565b604082019050919050565b600060208201905081810360008301526123e8816123ac565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612425601d83611c6a565b9150612430826123ef565b602082019050919050565b6000602082019050818103600083015261245481612418565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006124b7602583611c6a565b91506124c28261245b565b604082019050919050565b600060208201905081810360008301526124e6816124aa565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612549602383611c6a565b9150612554826124ed565b604082019050919050565b600060208201905081810360008301526125788161253c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006125db602683611c6a565b91506125e68261257f565b604082019050919050565b6000602082019050818103600083015261260a816125ce565b9050919050565b600061261c82611d74565b915061262783611d74565b925082820390508181111561263f5761263e6120b2565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061267f82611d74565b915061268a83611d74565b92508261269a57612699612645565b5b828204905092915050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b60006126db601283611c6a565b91506126e6826126a5565b602082019050919050565b6000602082019050818103600083015261270a816126ce565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b600061276d603983611c6a565b915061277882612711565b604082019050919050565b6000602082019050818103600083015261279c81612760565b9050919050565b7f45524332303a2062616c616e6365206c696d6974000000000000000000000000600082015250565b60006127d9601483611c6a565b91506127e4826127a3565b602082019050919050565b60006020820190508181036000830152612808816127cc565b9050919050565b600061281a82611d74565b915061282583611d74565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561285e5761285d6120b2565b5b828202905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061289f602083611c6a565b91506128aa82612869565b602082019050919050565b600060208201905081810360008301526128ce81612892565b9050919050565b60006060820190506128ea6000830186611e9a565b6128f76020830185611e9a565b6129046040830184611e9a565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061297981611d48565b92915050565b60006020828403121561299557612994611d11565b5b60006129a38482850161296a565b91505092915050565b6000819050919050565b60006129d16129cc6129c7846129ac565b611e20565b611d74565b9050919050565b6129e1816129b6565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612a1c81611d36565b82525050565b6000612a2e8383612a13565b60208301905092915050565b6000602082019050919050565b6000612a52826129e7565b612a5c81856129f2565b9350612a6783612a03565b8060005b83811015612a98578151612a7f8882612a22565b9750612a8a83612a3a565b925050600181019050612a6b565b5085935050505092915050565b600060a082019050612aba6000830188611e9a565b612ac760208301876129d8565b8181036040830152612ad98186612a47565b9050612ae86060830185611f8e565b612af56080830184611e9a565b9695505050505050565b600060c082019050612b146000830189611f8e565b612b216020830188611e9a565b612b2e60408301876129d8565b612b3b60608301866129d8565b612b486080830185611f8e565b612b5560a0830184611e9a565b979650505050505050565b600081519050612b6f81611d7e565b92915050565b600080600060608486031215612b8e57612b8d611d11565b5b6000612b9c86828701612b60565b9350506020612bad86828701612b60565b9250506040612bbe86828701612b60565b915050925092509256fea2646970667358221220d4565d2fb5a308815b68bb24b2ed3d4faccfde1182b955bced62d7162f67d3f164736f6c63430008100033

Deployed Bytecode

0x6080604052600436106101855760003560e01c8063715018a6116100d1578063a9059cbb1161008a578063bb85c6d111610064578063bb85c6d1146105d1578063dd62ed3e1461060e578063f2fde38b1461064b578063f345bd85146106745761018c565b8063a9059cbb1461052c578063aa4bde2814610569578063af8af690146105945761018c565b8063715018a61461042c57806375f0a874146104435780638c0b5e221461046e5780638da5cb5b1461049957806395d89b41146104c4578063a457c2d7146104ef5761018c565b806336ba641d1161013e57806349bd5a5e1161011857806349bd5a5e1461035c578063527ffabd14610387578063677daa57146103b257806370a08231146103ef5761018c565b806336ba641d146102b757806339509351146102f45780633a7ab852146103315761018c565b806306fdde0314610191578063095ea7b3146101bc5780631694505e146101f957806318160ddd1461022457806323b872dd1461024f578063313ce5671461028c5761018c565b3661018c57005b600080fd5b34801561019d57600080fd5b506101a661069f565b6040516101b39190611cef565b60405180910390f35b3480156101c857600080fd5b506101e360048036038101906101de9190611daa565b610731565b6040516101f09190611e05565b60405180910390f35b34801561020557600080fd5b5061020e610754565b60405161021b9190611e7f565b60405180910390f35b34801561023057600080fd5b50610239610778565b6040516102469190611ea9565b60405180910390f35b34801561025b57600080fd5b5061027660048036038101906102719190611ec4565b610782565b6040516102839190611e05565b60405180910390f35b34801561029857600080fd5b506102a16107b1565b6040516102ae9190611f33565b60405180910390f35b3480156102c357600080fd5b506102de60048036038101906102d99190611f4e565b6107ba565b6040516102eb9190611e05565b60405180910390f35b34801561030057600080fd5b5061031b60048036038101906103169190611daa565b6107dc565b6040516103289190611e05565b60405180910390f35b34801561033d57600080fd5b50610346610813565b6040516103539190611ea9565b60405180910390f35b34801561036857600080fd5b50610371610819565b60405161037e9190611f9d565b60405180910390f35b34801561039357600080fd5b5061039c61083d565b6040516103a99190611ea9565b60405180910390f35b3480156103be57600080fd5b506103d960048036038101906103d49190611fb8565b610843565b6040516103e69190611e05565b60405180910390f35b3480156103fb57600080fd5b5061041660048036038101906104119190611fe5565b61085d565b6040516104239190611ea9565b60405180910390f35b34801561043857600080fd5b506104416108a5565b005b34801561044f57600080fd5b506104586108b9565b6040516104659190611f9d565b60405180910390f35b34801561047a57600080fd5b506104836108df565b6040516104909190611ea9565b60405180910390f35b3480156104a557600080fd5b506104ae6108e5565b6040516104bb9190611f9d565b60405180910390f35b3480156104d057600080fd5b506104d961090f565b6040516104e69190611cef565b60405180910390f35b3480156104fb57600080fd5b5061051660048036038101906105119190611daa565b6109a1565b6040516105239190611e05565b60405180910390f35b34801561053857600080fd5b50610553600480360381019061054e9190611daa565b610a18565b6040516105609190611e05565b60405180910390f35b34801561057557600080fd5b5061057e610a3b565b60405161058b9190611ea9565b60405180910390f35b3480156105a057600080fd5b506105bb60048036038101906105b69190611f4e565b610a41565b6040516105c89190611e05565b60405180910390f35b3480156105dd57600080fd5b506105f860048036038101906105f39190611fe5565b610ab2565b6040516106059190611e05565b60405180910390f35b34801561061a57600080fd5b5061063560048036038101906106309190612012565b610b06565b6040516106429190611ea9565b60405180910390f35b34801561065757600080fd5b50610672600480360381019061066d9190611fe5565b610b8d565b005b34801561068057600080fd5b50610689610c10565b6040516106969190611ea9565b60405180910390f35b6060600380546106ae90612081565b80601f01602080910402602001604051908101604052809291908181526020018280546106da90612081565b80156107275780601f106106fc57610100808354040283529160200191610727565b820191906000526020600020905b81548152906001019060200180831161070a57829003601f168201915b5050505050905090565b60008061073c610c16565b9050610749818585610c1e565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b60008061078d610c16565b905061079a858285610de7565b6107a5858585610e73565b60019150509392505050565b60006009905090565b60006107c4611463565b82600d8190555081600e819055506001905092915050565b6000806107e7610c16565b90506108088185856107f98589610b06565b61080391906120e1565b610c1e565b600191505092915050565b600e5481565b7f0000000000000000000000001725fd14df39e570999d470dacce0cb9733ad26581565b600b5481565b600061084d611463565b81600c8190555060019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108ad611463565b6108b760006114e1565b565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461091e90612081565b80601f016020809104026020016040519081016040528092919081815260200182805461094a90612081565b80156109975780601f1061096c57610100808354040283529160200191610997565b820191906000526020600020905b81548152906001019060200180831161097a57829003601f168201915b5050505050905090565b6000806109ac610c16565b905060006109ba8286610b06565b9050838110156109ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f690612187565b60405180910390fd5b610a0c8286868403610c1e565b60019250505092915050565b600080610a23610c16565b9050610a30818585610e73565b600191505092915050565b600d5481565b6000610a4b611463565b60648284610a5991906120e1565b1115610a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9190612219565b60405180910390fd5b82600a8190555081600b819055506001905092915050565b6000610abc611463565b81600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b95611463565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfb906122ab565b60405180910390fd5b610c0d816114e1565b50565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c849061233d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf3906123cf565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610dda9190611ea9565b60405180910390a3505050565b6000610df38484610b06565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e6d5781811015610e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e569061243b565b60405180910390fd5b610e6c8484848403610c1e565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed9906124cd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f489061255f565b60405180910390fd5b80610f5b8461085d565b1015610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f93906125f1565b60405180910390fd5b7f0000000000000000000000001725fd14df39e570999d470dacce0cb9733ad26573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061104157507f0000000000000000000000001725fd14df39e570999d470dacce0cb9733ad26573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b801561105a5750601460009054906101000a900460ff16155b15611452577f0000000000000000000000001725fd14df39e570999d470dacce0cb9733ad26573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146111c15760006010546110c03061085d565b6110ca9190612611565b905060125481106110e1576110e06012546115a7565b5b601354601054106111bf57600060026010546110fd9190612674565b905061110881611668565b806010600082825461111a9190612611565b925050819055506000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050509050806111bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b3906126f1565b60405180910390fd5b50505b505b6000601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806112645750601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561127157819050611441565b600c548211156112b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ad90612783565b60405180910390fd5b7f0000000000000000000000001725fd14df39e570999d470dacce0cb9733ad26573ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036113ba57600d546113158461085d565b8361132091906120e1565b1115611361576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611358906127ef565b60405180910390fd5b600e5461136d8461085d565b8361137891906120e1565b10156113b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b0906127ef565b60405180910390fd5b5b60006064600b54846113cc919061280f565b6113d69190612674565b905060006064600a54856113ea919061280f565b6113f49190612674565b9050808261140291906120e1565b8461140d9190612611565b9250816010600082825461142191906120e1565b9250508190555061143e8630838561143991906120e1565b6118e8565b50505b61144c8484836118e8565b5061145e565b61145d8383836118e8565b5b505050565b61146b610c16565b73ffffffffffffffffffffffffffffffffffffffff166114896108e5565b73ffffffffffffffffffffffffffffffffffffffff16146114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d6906128b5565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001601460006101000a81548160ff02191690831515021790555060006002826115d19190612674565b9050600081836115e19190612611565b905060004790506115f183611668565b600081476115ff9190612611565b905061160b8382611b48565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405161163e939291906128d5565b60405180910390a1505050506000601460006101000a81548160ff02191690831515021790555050565b6001601460006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff8111156116a05761169f61290c565b5b6040519080825280602002602001820160405280156116ce5781602001602082028036833780820191505090505b50905030816000815181106116e6576116e561293b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561178b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117af919061297f565b816001815181106117c3576117c261293b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611828307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610c1e565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c4261187791906120e1565b6040518663ffffffff1660e01b8152600401611897959493929190612aa5565b600060405180830381600087803b1580156118b157600080fd5b505af11580156118c5573d6000803e3d6000fd5b50505050506000601460006101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194e906124cd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bd9061255f565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a43906125f1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b3a9190611ea9565b60405180910390a350505050565b6001601460006101000a81548160ff021916908315150217905550611b8e307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610c1e565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080611bd86108e5565b426040518863ffffffff1660e01b8152600401611bfa96959493929190612aff565b60606040518083038185885af1158015611c18573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611c3d9190612b75565b5050506000601460006101000a81548160ff0219169083151502179055505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611c99578082015181840152602081019050611c7e565b60008484015250505050565b6000601f19601f8301169050919050565b6000611cc182611c5f565b611ccb8185611c6a565b9350611cdb818560208601611c7b565b611ce481611ca5565b840191505092915050565b60006020820190508181036000830152611d098184611cb6565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611d4182611d16565b9050919050565b611d5181611d36565b8114611d5c57600080fd5b50565b600081359050611d6e81611d48565b92915050565b6000819050919050565b611d8781611d74565b8114611d9257600080fd5b50565b600081359050611da481611d7e565b92915050565b60008060408385031215611dc157611dc0611d11565b5b6000611dcf85828601611d5f565b9250506020611de085828601611d95565b9150509250929050565b60008115159050919050565b611dff81611dea565b82525050565b6000602082019050611e1a6000830184611df6565b92915050565b6000819050919050565b6000611e45611e40611e3b84611d16565b611e20565b611d16565b9050919050565b6000611e5782611e2a565b9050919050565b6000611e6982611e4c565b9050919050565b611e7981611e5e565b82525050565b6000602082019050611e946000830184611e70565b92915050565b611ea381611d74565b82525050565b6000602082019050611ebe6000830184611e9a565b92915050565b600080600060608486031215611edd57611edc611d11565b5b6000611eeb86828701611d5f565b9350506020611efc86828701611d5f565b9250506040611f0d86828701611d95565b9150509250925092565b600060ff82169050919050565b611f2d81611f17565b82525050565b6000602082019050611f486000830184611f24565b92915050565b60008060408385031215611f6557611f64611d11565b5b6000611f7385828601611d95565b9250506020611f8485828601611d95565b9150509250929050565b611f9781611d36565b82525050565b6000602082019050611fb26000830184611f8e565b92915050565b600060208284031215611fce57611fcd611d11565b5b6000611fdc84828501611d95565b91505092915050565b600060208284031215611ffb57611ffa611d11565b5b600061200984828501611d5f565b91505092915050565b6000806040838503121561202957612028611d11565b5b600061203785828601611d5f565b925050602061204885828601611d5f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061209957607f821691505b6020821081036120ac576120ab612052565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006120ec82611d74565b91506120f783611d74565b925082820190508082111561210f5761210e6120b2565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612171602583611c6a565b915061217c82612115565b604082019050919050565b600060208201905081810360008301526121a081612164565b9050919050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2031303000000000000000000000000000000000000000602082015250565b6000612203602d83611c6a565b915061220e826121a7565b604082019050919050565b60006020820190508181036000830152612232816121f6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612295602683611c6a565b91506122a082612239565b604082019050919050565b600060208201905081810360008301526122c481612288565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612327602483611c6a565b9150612332826122cb565b604082019050919050565b600060208201905081810360008301526123568161231a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006123b9602283611c6a565b91506123c48261235d565b604082019050919050565b600060208201905081810360008301526123e8816123ac565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612425601d83611c6a565b9150612430826123ef565b602082019050919050565b6000602082019050818103600083015261245481612418565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006124b7602583611c6a565b91506124c28261245b565b604082019050919050565b600060208201905081810360008301526124e6816124aa565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612549602383611c6a565b9150612554826124ed565b604082019050919050565b600060208201905081810360008301526125788161253c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006125db602683611c6a565b91506125e68261257f565b604082019050919050565b6000602082019050818103600083015261260a816125ce565b9050919050565b600061261c82611d74565b915061262783611d74565b925082820390508181111561263f5761263e6120b2565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061267f82611d74565b915061268a83611d74565b92508261269a57612699612645565b5b828204905092915050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b60006126db601283611c6a565b91506126e6826126a5565b602082019050919050565b6000602082019050818103600083015261270a816126ce565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b600061276d603983611c6a565b915061277882612711565b604082019050919050565b6000602082019050818103600083015261279c81612760565b9050919050565b7f45524332303a2062616c616e6365206c696d6974000000000000000000000000600082015250565b60006127d9601483611c6a565b91506127e4826127a3565b602082019050919050565b60006020820190508181036000830152612808816127cc565b9050919050565b600061281a82611d74565b915061282583611d74565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561285e5761285d6120b2565b5b828202905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061289f602083611c6a565b91506128aa82612869565b602082019050919050565b600060208201905081810360008301526128ce81612892565b9050919050565b60006060820190506128ea6000830186611e9a565b6128f76020830185611e9a565b6129046040830184611e9a565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061297981611d48565b92915050565b60006020828403121561299557612994611d11565b5b60006129a38482850161296a565b91505092915050565b6000819050919050565b60006129d16129cc6129c7846129ac565b611e20565b611d74565b9050919050565b6129e1816129b6565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612a1c81611d36565b82525050565b6000612a2e8383612a13565b60208301905092915050565b6000602082019050919050565b6000612a52826129e7565b612a5c81856129f2565b9350612a6783612a03565b8060005b83811015612a98578151612a7f8882612a22565b9750612a8a83612a3a565b925050600181019050612a6b565b5085935050505092915050565b600060a082019050612aba6000830188611e9a565b612ac760208301876129d8565b8181036040830152612ad98186612a47565b9050612ae86060830185611f8e565b612af56080830184611e9a565b9695505050505050565b600060c082019050612b146000830189611f8e565b612b216020830188611e9a565b612b2e60408301876129d8565b612b3b60608301866129d8565b612b486080830185611f8e565b612b5560a0830184611e9a565b979650505050505050565b600081519050612b6f81611d7e565b92915050565b600080600060608486031215612b8e57612b8d611d11565b5b6000612b9c86828701612b60565b9350506020612bad86828701612b60565b9250506040612bbe86828701612b60565b915050925092509256fea2646970667358221220d4565d2fb5a308815b68bb24b2ed3d4faccfde1182b955bced62d7162f67d3f164736f6c63430008100033

Deployed Bytecode Sourcemap

21571:6707:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16578:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17544:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22313:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16973:110;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17796:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16873:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27972:266;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18616:272;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22075:62;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22371:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21900:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27782:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16688:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15206:103;;;;;;;;;;;;;:::i;:::-;;22144:75;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21941:58;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14558:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16464:106;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18101:507;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17300:236;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22006:62;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27382:392;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27192:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17091:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15464:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21859:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16578:102;16634:13;16667:5;16660:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16578:102;:::o;17544:244::-;17665:4;17687:13;17703:12;:10;:12::i;:::-;17687:28;;17726:32;17735:5;17742:7;17751:6;17726:8;:32::i;:::-;17776:4;17769:11;;;17544:244;;;;:::o;22313:51::-;;;:::o;16973:110::-;17036:7;17063:12;;17056:19;;16973:110;:::o;17796:297::-;17929:4;17946:15;17964:12;:10;:12::i;:::-;17946:30;;17987:38;18003:4;18009:7;18018:6;17987:15;:38::i;:::-;18036:27;18046:4;18052:2;18056:6;18036:9;:27::i;:::-;18081:4;18074:11;;;17796:297;;;;;:::o;16873:92::-;16931:5;16956:1;16949:8;;16873:92;:::o;27972:266::-;28105:4;14444:13;:11;:13::i;:::-;28145:16:::1;28127:15;:34;;;;28190:16;28172:15;:34;;;;28226:4;28219:11;;27972:266:::0;;;;:::o;18616:272::-;18733:4;18755:13;18771:12;:10;:12::i;:::-;18755:28;;18794:64;18803:5;18810:7;18847:10;18819:25;18829:5;18836:7;18819:9;:25::i;:::-;:38;;;;:::i;:::-;18794:8;:64::i;:::-;18876:4;18869:11;;;18616:272;;;;:::o;22075:62::-;;;;:::o;22371:38::-;;;:::o;21900:34::-;;;;:::o;27782:182::-;27884:4;14444:13;:11;:13::i;:::-;27920:12:::1;27906:11;:26;;;;27952:4;27945:11;;27782:182:::0;;;:::o;16688:177::-;16807:7;16839:9;:18;16849:7;16839:18;;;;;;;;;;;;;;;;16832:25;;16688:177;;;:::o;15206:103::-;14444:13;:11;:13::i;:::-;15271:30:::1;15298:1;15271:18;:30::i;:::-;15206:103::o:0;22144:75::-;;;;;;;;;;;;;:::o;21941:58::-;;;;:::o;14558:87::-;14604:7;14631:6;;;;;;;;;;;14624:13;;14558:87;:::o;16464:106::-;16522:13;16555:7;16548:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16464:106;:::o;18101:507::-;18223:4;18245:13;18261:12;:10;:12::i;:::-;18245:28;;18284:24;18311:25;18321:5;18328:7;18311:9;:25::i;:::-;18284:52;;18389:15;18369:16;:35;;18347:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;18505:60;18514:5;18521:7;18549:15;18530:16;:34;18505:8;:60::i;:::-;18596:4;18589:11;;;;18101:507;;;;:::o;17300:236::-;17417:4;17439:13;17455:12;:10;:12::i;:::-;17439:28;;17478;17488:5;17495:2;17499:6;17478:9;:28::i;:::-;17524:4;17517:11;;;17300:236;;;;:::o;22006:62::-;;;;:::o;27382:392::-;27530:4;14444:13;:11;:13::i;:::-;27599:3:::1;27578:16;27561;:33;;;;:::i;:::-;27560:42;;27552:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;27681:16;27663:15;:34;;;;27726:16;27708:15;:34;;;;27762:4;27755:11;;27382:392:::0;;;;:::o;27192:182::-;27295:4;14444:13;:11;:13::i;:::-;27335:9:::1;27317:15;;:27;;;;;;;;;;;;;;;;;;27362:4;27355:11;;27192:182:::0;;;:::o;17091:201::-;17225:7;17257:11;:18;17269:5;17257:18;;;;;;;;;;;;;;;:27;17276:7;17257:27;;;;;;;;;;;;;;;;17250:34;;17091:201;;;;:::o;15464:238::-;14444:13;:11;:13::i;:::-;15587:1:::1;15567:22;;:8;:22;;::::0;15545:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;15666:28;15685:8;15666:18;:28::i;:::-;15464:238:::0;:::o;21859:34::-;;;;:::o;13351:98::-;13404:7;13431:10;13424:17;;13351:98;:::o;19889:380::-;20042:1;20025:19;;:5;:19;;;20017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20123:1;20104:21;;:7;:21;;;20096:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20207:6;20177:11;:18;20189:5;20177:18;;;;;;;;;;;;;;;:27;20196:7;20177:27;;;;;;;;;;;;;;;:36;;;;20245:7;20229:32;;20238:5;20229:32;;;20254:6;20229:32;;;;;;:::i;:::-;;;;;;;;19889:380;;;:::o;20277:502::-;20412:24;20439:25;20449:5;20456:7;20439:9;:25::i;:::-;20412:52;;20499:17;20479:16;:37;20475:297;;20579:6;20559:16;:26;;20533:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;20694:51;20703:5;20710:7;20738:6;20719:16;:25;20694:8;:51::i;:::-;20475:297;20401:378;20277:502;;;:::o;23529:2263::-;23643:1;23627:18;;:4;:18;;;23619:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23720:1;23706:16;;:2;:16;;;23698:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;23800:6;23781:15;23791:4;23781:9;:15::i;:::-;:25;;23773:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;23875:13;23867:21;;:4;:21;;;:44;;;;23898:13;23892:19;;:2;:19;;;23867:44;23866:67;;;;;23917:16;;;;;;;;;;;23916:17;23866:67;23862:1923;;;23962:13;23954:21;;:4;:21;;;23950:735;;23996:32;24058:18;;24031:24;24049:4;24031:9;:24::i;:::-;:45;;;;:::i;:::-;23996:80;;24127:30;;24099:24;:58;24095:154;;24182:47;24198:30;;24182:15;:47::i;:::-;24095:154;24295:24;;24272:18;;24271:48;24267:403;;24344:21;24390:1;24369:18;;:22;;;;:::i;:::-;24344:48;;24415:32;24433:13;24415:17;:32::i;:::-;24492:13;24470:18;;:35;;;;;;;:::i;:::-;;;;;;;;24528:9;24548:15;;;;;;;;;;;24540:29;;:52;24570:21;24540:52;;;;;;;;;;;;;;;;;;;;;;;24528:64;;24623:4;24615:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;24321:349;;24267:403;23977:708;23950:735;24701:22;24742:18;:24;24761:4;24742:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;24770:18;:22;24789:2;24770:22;;;;;;;;;;;;;;;;;;;;;;;;;24742:50;24738:904;;;24830:6;24813:23;;24738:904;;;24909:11;;24899:6;:21;;24891:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;25012:13;25004:21;;:4;:21;;;25001:243;;25085:15;;25067:13;25077:2;25067:9;:13::i;:::-;25058:6;:22;;;;:::i;:::-;25057:43;;25049:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;25184:15;;25166:13;25176:2;25166:9;:13::i;:::-;25157:6;:22;;;;:::i;:::-;25156:43;;25148:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;25001:243;25264:22;25319:3;25300:15;;25291:6;:24;;;;:::i;:::-;25290:32;;;;:::i;:::-;25264:59;;25342:22;25397:3;25378:15;;25369:6;:24;;;;:::i;:::-;25368:32;;;;:::i;:::-;25342:59;;25464:14;25447;:31;;;;:::i;:::-;25437:6;:42;;;;:::i;:::-;25420:59;;25520:14;25498:18;;:36;;;;;;;:::i;:::-;;;;;;;;25555:71;25571:4;25585;25610:14;25593;:31;;;;:::i;:::-;25555:15;:71::i;:::-;24872:770;;24738:904;25656:41;25672:4;25678:2;25682:14;25656:15;:41::i;:::-;23935:1774;23862:1923;;;25740:33;25756:4;25762:2;25766:6;25740:15;:33::i;:::-;23862:1923;23529:2263;;;:::o;14723:132::-;14798:12;:10;:12::i;:::-;14787:23;;:7;:5;:7::i;:::-;:23;;;14779:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14723:132::o;15862:191::-;15936:16;15955:6;;;;;;;;;;;15936:25;;15981:8;15972:6;;:17;;;;;;;;;;;;;;;;;;16036:8;16005:40;;16026:8;16005:40;;;;;;;;;;;;15925:128;15862:191;:::o;25800:474::-;22907:4;22888:16;;:23;;;;;;;;;;;;;;;;;;25886:12:::1;25925:1;25902:20;:24;;;;:::i;:::-;25886:41;;25938:17;25982:4;25959:20;:27;;;;:::i;:::-;25938:49;;26000:22;26025:21;26000:46;;26059:23;26077:4;26059:17;:23::i;:::-;26095:18;26141:14;26117:21;:38;;;;:::i;:::-;26095:61;;26169:36;26183:9;26194:10;26169:13;:36::i;:::-;26223:43;26238:4;26244:10;26256:9;26223:43;;;;;;;;:::i;:::-;;;;;;;;25875:399;;;;22953:5:::0;22934:16;;:24;;;;;;;;;;;;;;;;;;25800:474;:::o;26282:496::-;22907:4;22888:16;;:23;;;;;;;;;;;;;;;;;;26361:21:::1;26399:1;26385:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26361:40;;26430:4;26412;26417:1;26412:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;26456:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;26446:4;26451:1;26446:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;::::0;::::1;26491:62;26508:4;26523:15;26541:11;26491:8;:62::i;:::-;26566:15;:66;;;26647:11;26673:1;26689:4;26716;26755:3;26737:15;:21;;;;:::i;:::-;26566:204;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;26350:428;22953:5:::0;22934:16;;:24;;;;;;;;;;;;;;;;;;26282:496;:::o;20787:776::-;20934:1;20918:18;;:4;:18;;;20910:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21011:1;20997:16;;:2;:16;;;20989:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;21066:19;21088:9;:15;21098:4;21088:15;;;;;;;;;;;;;;;;21066:37;;21151:6;21136:11;:21;;21114:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;21291:6;21277:11;:20;21259:9;:15;21269:4;21259:15;;;;;;;;;;;;;;;:38;;;;21494:6;21477:9;:13;21487:2;21477:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;21544:2;21529:26;;21538:4;21529:26;;;21548:6;21529:26;;;;;;:::i;:::-;;;;;;;;20899:664;20787:776;;;:::o;26786:398::-;22907:4;22888:16;;:23;;;;;;;;;;;;;;;;;;26903:62:::1;26920:4;26935:15;26953:11;26903:8;:62::i;:::-;26978:15;:31;;;27017:9;27050:4;27070:11;27096:1;27112::::0;27128:7:::1;:5;:7::i;:::-;27150:15;26978:198;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;22953:5:::0;22934:16;;:24;;;;;;;;;;;;;;;;;;26786:398;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:60::-;3474:3;3495:5;3488:12;;3446:60;;;:::o;3512:142::-;3562:9;3595:53;3613:34;3622:24;3640:5;3622:24;:::i;:::-;3613:34;:::i;:::-;3595:53;:::i;:::-;3582:66;;3512:142;;;:::o;3660:126::-;3710:9;3743:37;3774:5;3743:37;:::i;:::-;3730:50;;3660:126;;;:::o;3792:152::-;3868:9;3901:37;3932:5;3901:37;:::i;:::-;3888:50;;3792:152;;;:::o;3950:183::-;4063:63;4120:5;4063:63;:::i;:::-;4058:3;4051:76;3950:183;;:::o;4139:274::-;4258:4;4296:2;4285:9;4281:18;4273:26;;4309:97;4403:1;4392:9;4388:17;4379:6;4309:97;:::i;:::-;4139:274;;;;:::o;4419:118::-;4506:24;4524:5;4506:24;:::i;:::-;4501:3;4494:37;4419:118;;:::o;4543:222::-;4636:4;4674:2;4663:9;4659:18;4651:26;;4687:71;4755:1;4744:9;4740:17;4731:6;4687:71;:::i;:::-;4543:222;;;;:::o;4771:619::-;4848:6;4856;4864;4913:2;4901:9;4892:7;4888:23;4884:32;4881:119;;;4919:79;;:::i;:::-;4881:119;5039:1;5064:53;5109:7;5100:6;5089:9;5085:22;5064:53;:::i;:::-;5054:63;;5010:117;5166:2;5192:53;5237:7;5228:6;5217:9;5213:22;5192:53;:::i;:::-;5182:63;;5137:118;5294:2;5320:53;5365:7;5356:6;5345:9;5341:22;5320:53;:::i;:::-;5310:63;;5265:118;4771:619;;;;;:::o;5396:86::-;5431:7;5471:4;5464:5;5460:16;5449:27;;5396:86;;;:::o;5488:112::-;5571:22;5587:5;5571:22;:::i;:::-;5566:3;5559:35;5488:112;;:::o;5606:214::-;5695:4;5733:2;5722:9;5718:18;5710:26;;5746:67;5810:1;5799:9;5795:17;5786:6;5746:67;:::i;:::-;5606:214;;;;:::o;5826:474::-;5894:6;5902;5951:2;5939:9;5930:7;5926:23;5922:32;5919:119;;;5957:79;;:::i;:::-;5919:119;6077:1;6102:53;6147:7;6138:6;6127:9;6123:22;6102:53;:::i;:::-;6092:63;;6048:117;6204:2;6230:53;6275:7;6266:6;6255:9;6251:22;6230:53;:::i;:::-;6220:63;;6175:118;5826:474;;;;;:::o;6306:118::-;6393:24;6411:5;6393:24;:::i;:::-;6388:3;6381:37;6306:118;;:::o;6430:222::-;6523:4;6561:2;6550:9;6546:18;6538:26;;6574:71;6642:1;6631:9;6627:17;6618:6;6574:71;:::i;:::-;6430:222;;;;:::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:474::-;7396:6;7404;7453:2;7441:9;7432:7;7428:23;7424:32;7421:119;;;7459:79;;:::i;:::-;7421:119;7579:1;7604:53;7649:7;7640:6;7629:9;7625:22;7604:53;:::i;:::-;7594:63;;7550:117;7706:2;7732:53;7777:7;7768:6;7757:9;7753:22;7732:53;:::i;:::-;7722:63;;7677:118;7328:474;;;;;:::o;7808:180::-;7856:77;7853:1;7846:88;7953:4;7950:1;7943:15;7977:4;7974:1;7967:15;7994:320;8038:6;8075:1;8069:4;8065:12;8055:22;;8122:1;8116:4;8112:12;8143:18;8133:81;;8199:4;8191:6;8187:17;8177:27;;8133:81;8261:2;8253:6;8250:14;8230:18;8227:38;8224:84;;8280:18;;:::i;:::-;8224:84;8045:269;7994:320;;;:::o;8320:180::-;8368:77;8365:1;8358:88;8465:4;8462:1;8455:15;8489:4;8486:1;8479:15;8506:191;8546:3;8565:20;8583:1;8565:20;:::i;:::-;8560:25;;8599:20;8617:1;8599:20;:::i;:::-;8594:25;;8642:1;8639;8635:9;8628:16;;8663:3;8660:1;8657:10;8654:36;;;8670:18;;:::i;:::-;8654:36;8506:191;;;;:::o;8703:224::-;8843:34;8839:1;8831:6;8827:14;8820:58;8912:7;8907:2;8899:6;8895:15;8888:32;8703:224;:::o;8933:366::-;9075:3;9096:67;9160:2;9155:3;9096:67;:::i;:::-;9089:74;;9172:93;9261:3;9172:93;:::i;:::-;9290:2;9285:3;9281:12;9274:19;;8933:366;;;:::o;9305:419::-;9471:4;9509:2;9498:9;9494:18;9486:26;;9558:9;9552:4;9548:20;9544:1;9533:9;9529:17;9522:47;9586:131;9712:4;9586:131;:::i;:::-;9578:139;;9305:419;;;:::o;9730:232::-;9870:34;9866:1;9858:6;9854:14;9847:58;9939:15;9934:2;9926:6;9922:15;9915:40;9730:232;:::o;9968:366::-;10110:3;10131:67;10195:2;10190:3;10131:67;:::i;:::-;10124:74;;10207:93;10296:3;10207:93;:::i;:::-;10325:2;10320:3;10316:12;10309:19;;9968:366;;;:::o;10340:419::-;10506:4;10544:2;10533:9;10529:18;10521:26;;10593:9;10587:4;10583:20;10579:1;10568:9;10564:17;10557:47;10621:131;10747:4;10621:131;:::i;:::-;10613:139;;10340:419;;;:::o;10765:225::-;10905:34;10901:1;10893:6;10889:14;10882:58;10974:8;10969:2;10961:6;10957:15;10950:33;10765:225;:::o;10996:366::-;11138:3;11159:67;11223:2;11218:3;11159:67;:::i;:::-;11152:74;;11235:93;11324:3;11235:93;:::i;:::-;11353:2;11348:3;11344:12;11337:19;;10996:366;;;:::o;11368:419::-;11534:4;11572:2;11561:9;11557:18;11549:26;;11621:9;11615:4;11611:20;11607:1;11596:9;11592:17;11585:47;11649:131;11775:4;11649:131;:::i;:::-;11641:139;;11368:419;;;:::o;11793:223::-;11933:34;11929:1;11921:6;11917:14;11910:58;12002:6;11997:2;11989:6;11985:15;11978:31;11793:223;:::o;12022:366::-;12164:3;12185:67;12249:2;12244:3;12185:67;:::i;:::-;12178:74;;12261:93;12350:3;12261:93;:::i;:::-;12379:2;12374:3;12370:12;12363:19;;12022:366;;;:::o;12394:419::-;12560:4;12598:2;12587:9;12583:18;12575:26;;12647:9;12641:4;12637:20;12633:1;12622:9;12618:17;12611:47;12675:131;12801:4;12675:131;:::i;:::-;12667:139;;12394:419;;;:::o;12819:221::-;12959:34;12955:1;12947:6;12943:14;12936:58;13028:4;13023:2;13015:6;13011:15;13004:29;12819:221;:::o;13046:366::-;13188:3;13209:67;13273:2;13268:3;13209:67;:::i;:::-;13202:74;;13285:93;13374:3;13285:93;:::i;:::-;13403:2;13398:3;13394:12;13387:19;;13046:366;;;:::o;13418:419::-;13584:4;13622:2;13611:9;13607:18;13599:26;;13671:9;13665:4;13661:20;13657:1;13646:9;13642:17;13635:47;13699:131;13825:4;13699:131;:::i;:::-;13691:139;;13418:419;;;:::o;13843:179::-;13983:31;13979:1;13971:6;13967:14;13960:55;13843:179;:::o;14028:366::-;14170:3;14191:67;14255:2;14250:3;14191:67;:::i;:::-;14184:74;;14267:93;14356:3;14267:93;:::i;:::-;14385:2;14380:3;14376:12;14369:19;;14028:366;;;:::o;14400:419::-;14566:4;14604:2;14593:9;14589:18;14581:26;;14653:9;14647:4;14643:20;14639:1;14628:9;14624:17;14617:47;14681:131;14807:4;14681:131;:::i;:::-;14673:139;;14400:419;;;:::o;14825:224::-;14965:34;14961:1;14953:6;14949:14;14942:58;15034:7;15029:2;15021:6;15017:15;15010:32;14825:224;:::o;15055:366::-;15197:3;15218:67;15282:2;15277:3;15218:67;:::i;:::-;15211:74;;15294:93;15383:3;15294:93;:::i;:::-;15412:2;15407:3;15403:12;15396:19;;15055:366;;;:::o;15427:419::-;15593:4;15631:2;15620:9;15616:18;15608:26;;15680:9;15674:4;15670:20;15666:1;15655:9;15651:17;15644:47;15708:131;15834:4;15708:131;:::i;:::-;15700:139;;15427:419;;;:::o;15852:222::-;15992:34;15988:1;15980:6;15976:14;15969:58;16061:5;16056:2;16048:6;16044:15;16037:30;15852:222;:::o;16080:366::-;16222:3;16243:67;16307:2;16302:3;16243:67;:::i;:::-;16236:74;;16319:93;16408:3;16319:93;:::i;:::-;16437:2;16432:3;16428:12;16421:19;;16080:366;;;:::o;16452:419::-;16618:4;16656:2;16645:9;16641:18;16633:26;;16705:9;16699:4;16695:20;16691:1;16680:9;16676:17;16669:47;16733:131;16859:4;16733:131;:::i;:::-;16725:139;;16452:419;;;:::o;16877:225::-;17017:34;17013:1;17005:6;17001:14;16994:58;17086:8;17081:2;17073:6;17069:15;17062:33;16877:225;:::o;17108:366::-;17250:3;17271:67;17335:2;17330:3;17271:67;:::i;:::-;17264:74;;17347:93;17436:3;17347:93;:::i;:::-;17465:2;17460:3;17456:12;17449:19;;17108:366;;;:::o;17480:419::-;17646:4;17684:2;17673:9;17669:18;17661:26;;17733:9;17727:4;17723:20;17719:1;17708:9;17704:17;17697:47;17761:131;17887:4;17761:131;:::i;:::-;17753:139;;17480:419;;;:::o;17905:194::-;17945:4;17965:20;17983:1;17965:20;:::i;:::-;17960:25;;17999:20;18017:1;17999:20;:::i;:::-;17994:25;;18043:1;18040;18036:9;18028:17;;18067:1;18061:4;18058:11;18055:37;;;18072:18;;:::i;:::-;18055:37;17905:194;;;;:::o;18105:180::-;18153:77;18150:1;18143:88;18250:4;18247:1;18240:15;18274:4;18271:1;18264:15;18291:185;18331:1;18348:20;18366:1;18348:20;:::i;:::-;18343:25;;18382:20;18400:1;18382:20;:::i;:::-;18377:25;;18421:1;18411:35;;18426:18;;:::i;:::-;18411:35;18468:1;18465;18461:9;18456:14;;18291:185;;;;:::o;18482:168::-;18622:20;18618:1;18610:6;18606:14;18599:44;18482:168;:::o;18656:366::-;18798:3;18819:67;18883:2;18878:3;18819:67;:::i;:::-;18812:74;;18895:93;18984:3;18895:93;:::i;:::-;19013:2;19008:3;19004:12;18997:19;;18656:366;;;:::o;19028:419::-;19194:4;19232:2;19221:9;19217:18;19209:26;;19281:9;19275:4;19271:20;19267:1;19256:9;19252:17;19245:47;19309:131;19435:4;19309:131;:::i;:::-;19301:139;;19028:419;;;:::o;19453:244::-;19593:34;19589:1;19581:6;19577:14;19570:58;19662:27;19657:2;19649:6;19645:15;19638:52;19453:244;:::o;19703:366::-;19845:3;19866:67;19930:2;19925:3;19866:67;:::i;:::-;19859:74;;19942:93;20031:3;19942:93;:::i;:::-;20060:2;20055:3;20051:12;20044:19;;19703:366;;;:::o;20075:419::-;20241:4;20279:2;20268:9;20264:18;20256:26;;20328:9;20322:4;20318:20;20314:1;20303:9;20299:17;20292:47;20356:131;20482:4;20356:131;:::i;:::-;20348:139;;20075:419;;;:::o;20500:170::-;20640:22;20636:1;20628:6;20624:14;20617:46;20500:170;:::o;20676:366::-;20818:3;20839:67;20903:2;20898:3;20839:67;:::i;:::-;20832:74;;20915:93;21004:3;20915:93;:::i;:::-;21033:2;21028:3;21024:12;21017:19;;20676:366;;;:::o;21048:419::-;21214:4;21252:2;21241:9;21237:18;21229:26;;21301:9;21295:4;21291:20;21287:1;21276:9;21272:17;21265:47;21329:131;21455:4;21329:131;:::i;:::-;21321:139;;21048:419;;;:::o;21473:348::-;21513:7;21536:20;21554:1;21536:20;:::i;:::-;21531:25;;21570:20;21588:1;21570:20;:::i;:::-;21565:25;;21758:1;21690:66;21686:74;21683:1;21680:81;21675:1;21668:9;21661:17;21657:105;21654:131;;;21765:18;;:::i;:::-;21654:131;21813:1;21810;21806:9;21795:20;;21473:348;;;;:::o;21827:182::-;21967:34;21963:1;21955:6;21951:14;21944:58;21827:182;:::o;22015:366::-;22157:3;22178:67;22242:2;22237:3;22178:67;:::i;:::-;22171:74;;22254:93;22343:3;22254:93;:::i;:::-;22372:2;22367:3;22363:12;22356:19;;22015:366;;;:::o;22387:419::-;22553:4;22591:2;22580:9;22576:18;22568:26;;22640:9;22634:4;22630:20;22626:1;22615:9;22611:17;22604:47;22668:131;22794:4;22668:131;:::i;:::-;22660:139;;22387:419;;;:::o;22812:442::-;22961:4;22999:2;22988:9;22984:18;22976:26;;23012:71;23080:1;23069:9;23065:17;23056:6;23012:71;:::i;:::-;23093:72;23161:2;23150:9;23146:18;23137:6;23093:72;:::i;:::-;23175;23243:2;23232:9;23228:18;23219:6;23175:72;:::i;:::-;22812:442;;;;;;:::o;23260:180::-;23308:77;23305:1;23298:88;23405:4;23402:1;23395:15;23429:4;23426:1;23419:15;23446:180;23494:77;23491:1;23484:88;23591:4;23588:1;23581:15;23615:4;23612:1;23605:15;23632:143;23689:5;23720:6;23714:13;23705:22;;23736:33;23763:5;23736:33;:::i;:::-;23632:143;;;;:::o;23781:351::-;23851:6;23900:2;23888:9;23879:7;23875:23;23871:32;23868:119;;;23906:79;;:::i;:::-;23868:119;24026:1;24051:64;24107:7;24098:6;24087:9;24083:22;24051:64;:::i;:::-;24041:74;;23997:128;23781:351;;;;:::o;24138:85::-;24183:7;24212:5;24201:16;;24138:85;;;:::o;24229:158::-;24287:9;24320:61;24338:42;24347:32;24373:5;24347:32;:::i;:::-;24338:42;:::i;:::-;24320:61;:::i;:::-;24307:74;;24229:158;;;:::o;24393:147::-;24488:45;24527:5;24488:45;:::i;:::-;24483:3;24476:58;24393:147;;:::o;24546:114::-;24613:6;24647:5;24641:12;24631:22;;24546:114;;;:::o;24666:184::-;24765:11;24799:6;24794:3;24787:19;24839:4;24834:3;24830:14;24815:29;;24666:184;;;;:::o;24856:132::-;24923:4;24946:3;24938:11;;24976:4;24971:3;24967:14;24959:22;;24856:132;;;:::o;24994:108::-;25071:24;25089:5;25071:24;:::i;:::-;25066:3;25059:37;24994:108;;:::o;25108:179::-;25177:10;25198:46;25240:3;25232:6;25198:46;:::i;:::-;25276:4;25271:3;25267:14;25253:28;;25108:179;;;;:::o;25293:113::-;25363:4;25395;25390:3;25386:14;25378:22;;25293:113;;;:::o;25442:732::-;25561:3;25590:54;25638:5;25590:54;:::i;:::-;25660:86;25739:6;25734:3;25660:86;:::i;:::-;25653:93;;25770:56;25820:5;25770:56;:::i;:::-;25849:7;25880:1;25865:284;25890:6;25887:1;25884:13;25865:284;;;25966:6;25960:13;25993:63;26052:3;26037:13;25993:63;:::i;:::-;25986:70;;26079:60;26132:6;26079:60;:::i;:::-;26069:70;;25925:224;25912:1;25909;25905:9;25900:14;;25865:284;;;25869:14;26165:3;26158:10;;25566:608;;;25442:732;;;;:::o;26180:831::-;26443:4;26481:3;26470:9;26466:19;26458:27;;26495:71;26563:1;26552:9;26548:17;26539:6;26495:71;:::i;:::-;26576:80;26652:2;26641:9;26637:18;26628:6;26576:80;:::i;:::-;26703:9;26697:4;26693:20;26688:2;26677:9;26673:18;26666:48;26731:108;26834:4;26825:6;26731:108;:::i;:::-;26723:116;;26849:72;26917:2;26906:9;26902:18;26893:6;26849:72;:::i;:::-;26931:73;26999:3;26988:9;26984:19;26975:6;26931:73;:::i;:::-;26180:831;;;;;;;;:::o;27017:807::-;27266:4;27304:3;27293:9;27289:19;27281:27;;27318:71;27386:1;27375:9;27371:17;27362:6;27318:71;:::i;:::-;27399:72;27467:2;27456:9;27452:18;27443:6;27399:72;:::i;:::-;27481:80;27557:2;27546:9;27542:18;27533:6;27481:80;:::i;:::-;27571;27647:2;27636:9;27632:18;27623:6;27571:80;:::i;:::-;27661:73;27729:3;27718:9;27714:19;27705:6;27661:73;:::i;:::-;27744;27812:3;27801:9;27797:19;27788:6;27744:73;:::i;:::-;27017:807;;;;;;;;;:::o;27830:143::-;27887:5;27918:6;27912:13;27903:22;;27934:33;27961:5;27934:33;:::i;:::-;27830:143;;;;:::o;27979:663::-;28067:6;28075;28083;28132:2;28120:9;28111:7;28107:23;28103:32;28100:119;;;28138:79;;:::i;:::-;28100:119;28258:1;28283:64;28339:7;28330:6;28319:9;28315:22;28283:64;:::i;:::-;28273:74;;28229:128;28396:2;28422:64;28478:7;28469:6;28458:9;28454:22;28422:64;:::i;:::-;28412:74;;28367:129;28535:2;28561:64;28617:7;28608:6;28597:9;28593:22;28561:64;:::i;:::-;28551:74;;28506:129;27979:663;;;;;:::o

Swarm Source

ipfs://d4565d2fb5a308815b68bb24b2ed3d4faccfde1182b955bced62d7162f67d3f1
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.