ETH Price: $2,301.02 (-4.93%)

Token

You Are Ryoshi (R)
 

Overview

Max Total Supply

1,000 R

Holders

27

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3 R

Value
$0.00
0xc50156fbd1cf0cb1541d7eed29589fe15c1addf3
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:
WhoisRyoshi

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-12-19
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.23;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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


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

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

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

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

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

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

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

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

contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    /**
     * @dev Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

contract Ownable is Context {
    address private _owner;
    address private _previousOwner;
    uint256 private _lockTime;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

    function geUnlockTime() public view returns (uint256) {
        return _lockTime;
    }
}

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

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

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

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

contract WhoisRyoshi is ERC20, Ownable {
    mapping(address => bool) public automatedMarketMakerPairs;

    IUniswapV2Router02 public defaultDexRouter;

    address public defaultPair;

    uint256 private _totalSupply = 1_000 * (10**18);
    uint8  private constant _decimals = 18;

    event UpdateDefaultDexRouter(address indexed newAddress, address indexed oldAddress);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);


    constructor(address _uniswapRouterAddress) ERC20("You Are Ryoshi", "R") {
        IUniswapV2Router02 _dexRouter = IUniswapV2Router02(_uniswapRouterAddress);

        defaultDexRouter = _dexRouter;

        defaultPair = IUniswapV2Factory(_dexRouter.factory()).createPair(address(this), _dexRouter.WETH());

        _setAutomatedMarketMakerPair(defaultPair, true);
        //_mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again
        _mint(owner(), _totalSupply);
    }

    receive() external payable {}

    function decimals() public pure override returns (uint8) {
        return _decimals;
    }

    function addNewRouter(address _router, bool makeDefault) external onlyOwner {
        if (makeDefault) {
            emit UpdateDefaultDexRouter(_router, address(defaultDexRouter));
            defaultDexRouter = IUniswapV2Router02(_router);
            defaultPair = IUniswapV2Factory(defaultDexRouter.factory()).createPair(address(this), defaultDexRouter.WETH());
            _setAutomatedMarketMakerPair(defaultPair, true);
        }
    }

    function setAutomatedMarketMakerPair(address pair, bool value) external onlyOwner {
        require(
            value || pair != defaultPair,
            "The default pair cannot be removed from automatedMarketMakerPairs"
        );
        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        require(
            automatedMarketMakerPairs[pair] != value,
            "Automated market maker pair is already set to that value"
        );

        automatedMarketMakerPairs[pair] = value;
        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function retrieveStuckEther() external onlyOwner {
        uint256 amount = address(this).balance;
        require(amount > 0, "No Ether to retrieve");
        
        // Transfer all Ether in the contract to the owner.
        (bool success, ) = owner().call{value: amount}("");
        require(success, "Transfer failed");
    }

    function YOUARERYOSHI(uint256 tokenAmount) external {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = defaultDexRouter.WETH();

        _transfer(msg.sender, address(this), tokenAmount);

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

        // Make the swap.
        defaultDexRouter.swapExactTokensForETH(
            tokenAmount,
            0, // Accept any amount of ETH.
            path,
            msg.sender,
            block.timestamp
        );
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_uniswapRouterAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateDefaultDexRouter","type":"event"},{"inputs":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"YOUARERYOSHI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_router","type":"address"},{"internalType":"bool","name":"makeDefault","type":"bool"}],"name":"addNewRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"defaultDexRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"defaultPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"retrieveStuckEther","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052683635c9adc5dea00000600b553480156200001d575f80fd5b506040516200373238038062003732833981810160405281019062000043919062000701565b6040518060400160405280600e81526020017f596f75204172652052796f7368690000000000000000000000000000000000008152506040518060400160405280600181526020017f52000000000000000000000000000000000000000000000000000000000000008152508160039081620000c0919062000995565b508060049081620000d2919062000995565b5050505f620000e6620003c360201b60201c565b90508060055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3505f8190508060095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000211573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000237919062000701565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200029d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002c3919062000701565b6040518363ffffffff1660e01b8152600401620002e292919062000a8a565b6020604051808303815f875af1158015620002ff573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000325919062000701565b600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000398600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620003ca60201b60201c565b620003bb620003ac620004fa60201b60201c565b600b546200052260201b60201c565b505062000c5a565b5f33905090565b80151560085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161515036200045c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004539062000b39565b60405180910390fd5b8060085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000593576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200058a9062000ba7565b60405180910390fd5b620005a65f83836200069260201b60201c565b8060025f828254620005b9919062000bf4565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546200060d919062000bf4565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000673919062000c3f565b60405180910390a36200068e5f83836200069760201b60201c565b5050565b505050565b505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620006cb82620006a0565b9050919050565b620006dd81620006bf565b8114620006e8575f80fd5b50565b5f81519050620006fb81620006d2565b92915050565b5f602082840312156200071957620007186200069c565b5b5f6200072884828501620006eb565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620007ad57607f821691505b602082108103620007c357620007c262000768565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620008277fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620007ea565b620008338683620007ea565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6200087d6200087762000871846200084b565b62000854565b6200084b565b9050919050565b5f819050919050565b62000898836200085d565b620008b0620008a78262000884565b848454620007f6565b825550505050565b5f90565b620008c6620008b8565b620008d38184846200088d565b505050565b5b81811015620008fa57620008ee5f82620008bc565b600181019050620008d9565b5050565b601f82111562000949576200091381620007c9565b6200091e84620007db565b810160208510156200092e578190505b620009466200093d85620007db565b830182620008d8565b50505b505050565b5f82821c905092915050565b5f6200096b5f19846008026200094e565b1980831691505092915050565b5f6200098583836200095a565b9150826002028217905092915050565b620009a08262000731565b67ffffffffffffffff811115620009bc57620009bb6200073b565b5b620009c8825462000795565b620009d5828285620008fe565b5f60209050601f83116001811462000a0b575f8415620009f6578287015190505b62000a02858262000978565b86555062000a71565b601f19841662000a1b86620007c9565b5f5b8281101562000a445784890151825560018201915060208501945060208101905062000a1d565b8683101562000a64578489015162000a60601f8916826200095a565b8355505b6001600288020188555050505b505050505050565b62000a8481620006bf565b82525050565b5f60408201905062000a9f5f83018562000a79565b62000aae602083018462000a79565b9392505050565b5f82825260208201905092915050565b7f4175746f6d61746564206d61726b6574206d616b6572207061697220697320615f8201527f6c72656164792073657420746f20746861742076616c75650000000000000000602082015250565b5f62000b2160388362000ab5565b915062000b2e8262000ac5565b604082019050919050565b5f6020820190508181035f83015262000b528162000b13565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000b8f601f8362000ab5565b915062000b9c8262000b59565b602082019050919050565b5f6020820190508181035f83015262000bc08162000b81565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000c00826200084b565b915062000c0d836200084b565b925082820190508082111562000c285762000c2762000bc7565b5b92915050565b62000c39816200084b565b82525050565b5f60208201905062000c545f83018462000c2e565b92915050565b612aca8062000c685f395ff3fe608060405260043610610138575f3560e01c806395d89b41116100aa578063b62496f51161006e578063b62496f514610421578063b6c523241461045d578063d32a8f6714610487578063d578192c146104b1578063dd62ed3e146104db578063f2fde38b146105175761013f565b806395d89b411461032f5780639a7a23d614610359578063a32cb4c614610381578063a457c2d7146103a9578063a9059cbb146103e55761013f565b806339509351116100fc5780633950935114610239578063582992541461027557806370a082311461029d578063715018a6146102d95780638643d4ca146102ef5780638da5cb5b146103055761013f565b806306fdde0314610143578063095ea7b31461016d57806318160ddd146101a957806323b872dd146101d3578063313ce5671461020f5761013f565b3661013f57005b5f80fd5b34801561014e575f80fd5b5061015761053f565b6040516101649190611be9565b60405180910390f35b348015610178575f80fd5b50610193600480360381019061018e9190611ca7565b6105cf565b6040516101a09190611cff565b60405180910390f35b3480156101b4575f80fd5b506101bd6105f1565b6040516101ca9190611d27565b60405180910390f35b3480156101de575f80fd5b506101f960048036038101906101f49190611d40565b6105fa565b6040516102069190611cff565b60405180910390f35b34801561021a575f80fd5b50610223610628565b6040516102309190611dab565b60405180910390f35b348015610244575f80fd5b5061025f600480360381019061025a9190611ca7565b610630565b60405161026c9190611cff565b60405180910390f35b348015610280575f80fd5b5061029b60048036038101906102969190611dc4565b6106d5565b005b3480156102a8575f80fd5b506102c360048036038101906102be9190611def565b61092d565b6040516102d09190611d27565b60405180910390f35b3480156102e4575f80fd5b506102ed610972565b005b3480156102fa575f80fd5b50610303610ac5565b005b348015610310575f80fd5b50610319610c54565b6040516103269190611e29565b60405180910390f35b34801561033a575f80fd5b50610343610c7c565b6040516103509190611be9565b60405180910390f35b348015610364575f80fd5b5061037f600480360381019061037a9190611e6c565b610d0c565b005b34801561038c575f80fd5b506103a760048036038101906103a29190611e6c565b610e48565b005b3480156103b4575f80fd5b506103cf60048036038101906103ca9190611ca7565b6111a4565b6040516103dc9190611cff565b60405180910390f35b3480156103f0575f80fd5b5061040b60048036038101906104069190611ca7565b611288565b6040516104189190611cff565b60405180910390f35b34801561042c575f80fd5b5061044760048036038101906104429190611def565b6112aa565b6040516104549190611cff565b60405180910390f35b348015610468575f80fd5b506104716112c7565b60405161047e9190611d27565b60405180910390f35b348015610492575f80fd5b5061049b6112d0565b6040516104a89190611e29565b60405180910390f35b3480156104bc575f80fd5b506104c56112f5565b6040516104d29190611f05565b60405180910390f35b3480156104e6575f80fd5b5061050160048036038101906104fc9190611f1e565b61131a565b60405161050e9190611d27565b60405180910390f35b348015610522575f80fd5b5061053d60048036038101906105389190611def565b61139c565b005b60606003805461054e90611f89565b80601f016020809104026020016040519081016040528092919081815260200182805461057a90611f89565b80156105c55780601f1061059c576101008083540402835291602001916105c5565b820191905f5260205f20905b8154815290600101906020018083116105a857829003601f168201915b5050505050905090565b5f806105d961155e565b90506105e6818585611565565b600191505092915050565b5f600254905090565b5f8061060461155e565b9050610611858285611728565b61061c8585856117b3565b60019150509392505050565b5f6012905090565b5f8061063a61155e565b90506106ca81858560015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546106c59190611fe6565b611565565b600191505092915050565b5f600267ffffffffffffffff8111156106f1576106f0612019565b5b60405190808252806020026020018201604052801561071f5781602001602082028036833780820191505090505b50905030815f8151811061073657610735612046565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156107da573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107fe9190612087565b8160018151811061081257610811612046565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506108573330846117b3565b6108833060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611565565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318cbafe5835f8433426040518663ffffffff1660e01b81526004016108e59594939291906121a2565b5f604051808303815f875af1158015610900573d5f803e3d5ffd5b505050506040513d5f823e3d601f19601f820116820180604052508101906109289190612321565b505050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61097a61155e565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ff906123b2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35f60055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610acd61155e565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b52906123b2565b60405180910390fd5b5f4790505f8111610ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b989061241a565b60405180910390fd5b5f610baa610c54565b73ffffffffffffffffffffffffffffffffffffffff1682604051610bcd90612465565b5f6040518083038185875af1925050503d805f8114610c07576040519150601f19603f3d011682016040523d82523d5f602084013e610c0c565b606091505b5050905080610c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c47906124c3565b60405180910390fd5b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610c8b90611f89565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb790611f89565b8015610d025780601f10610cd957610100808354040283529160200191610d02565b820191905f5260205f20905b815481529060010190602001808311610ce557829003601f168201915b5050505050905090565b610d1461155e565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610da2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d99906123b2565b60405180910390fd5b8080610dfb5750600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b610e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3190612577565b60405180910390fd5b610e448282611a28565b5050565b610e5061155e565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ede576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed5906123b2565b60405180910390fd5b80156111a05760095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f56729c2d3b35702079226f38e0417b72386db8f924b488588b56135138cf179f60405160405180910390a38160095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611009573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061102d9190612087565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156110b3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110d79190612087565b6040518363ffffffff1660e01b81526004016110f4929190612595565b6020604051808303815f875af1158015611110573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111349190612087565b600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061119f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001611a28565b5b5050565b5f806111ae61155e565b90505f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508381101561126f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112669061262c565b60405180910390fd5b61127c8286868403611565565b60019250505092915050565b5f8061129261155e565b905061129f8185856117b3565b600191505092915050565b6008602052805f5260405f205f915054906101000a900460ff1681565b5f600754905090565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6113a461155e565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611432576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611429906123b2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611497906126ba565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a38060055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036115d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ca90612748565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611641576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611638906127d6565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161171b9190611d27565b60405180910390a3505050565b5f611733848461131a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146117ad578181101561179f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117969061283e565b60405180910390fd5b6117ac8484848403611565565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611821576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611818906128cc565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361188f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118869061295a565b60405180910390fd5b61189a838383611b55565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561191d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611914906129e8565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546119ab9190611fe6565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a0f9190611d27565b60405180910390a3611a22848484611b5a565b50505050565b80151560085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16151503611ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aae90612a76565b60405180910390fd5b8060085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611b96578082015181840152602081019050611b7b565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611bbb82611b5f565b611bc58185611b69565b9350611bd5818560208601611b79565b611bde81611ba1565b840191505092915050565b5f6020820190508181035f830152611c018184611bb1565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611c4382611c1a565b9050919050565b611c5381611c39565b8114611c5d575f80fd5b50565b5f81359050611c6e81611c4a565b92915050565b5f819050919050565b611c8681611c74565b8114611c90575f80fd5b50565b5f81359050611ca181611c7d565b92915050565b5f8060408385031215611cbd57611cbc611c12565b5b5f611cca85828601611c60565b9250506020611cdb85828601611c93565b9150509250929050565b5f8115159050919050565b611cf981611ce5565b82525050565b5f602082019050611d125f830184611cf0565b92915050565b611d2181611c74565b82525050565b5f602082019050611d3a5f830184611d18565b92915050565b5f805f60608486031215611d5757611d56611c12565b5b5f611d6486828701611c60565b9350506020611d7586828701611c60565b9250506040611d8686828701611c93565b9150509250925092565b5f60ff82169050919050565b611da581611d90565b82525050565b5f602082019050611dbe5f830184611d9c565b92915050565b5f60208284031215611dd957611dd8611c12565b5b5f611de684828501611c93565b91505092915050565b5f60208284031215611e0457611e03611c12565b5b5f611e1184828501611c60565b91505092915050565b611e2381611c39565b82525050565b5f602082019050611e3c5f830184611e1a565b92915050565b611e4b81611ce5565b8114611e55575f80fd5b50565b5f81359050611e6681611e42565b92915050565b5f8060408385031215611e8257611e81611c12565b5b5f611e8f85828601611c60565b9250506020611ea085828601611e58565b9150509250929050565b5f819050919050565b5f611ecd611ec8611ec384611c1a565b611eaa565b611c1a565b9050919050565b5f611ede82611eb3565b9050919050565b5f611eef82611ed4565b9050919050565b611eff81611ee5565b82525050565b5f602082019050611f185f830184611ef6565b92915050565b5f8060408385031215611f3457611f33611c12565b5b5f611f4185828601611c60565b9250506020611f5285828601611c60565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611fa057607f821691505b602082108103611fb357611fb2611f5c565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611ff082611c74565b9150611ffb83611c74565b925082820190508082111561201357612012611fb9565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8151905061208181611c4a565b92915050565b5f6020828403121561209c5761209b611c12565b5b5f6120a984828501612073565b91505092915050565b5f819050919050565b5f6120d56120d06120cb846120b2565b611eaa565b611c74565b9050919050565b6120e5816120bb565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61211d81611c39565b82525050565b5f61212e8383612114565b60208301905092915050565b5f602082019050919050565b5f612150826120eb565b61215a81856120f5565b935061216583612105565b805f5b8381101561219557815161217c8882612123565b97506121878361213a565b925050600181019050612168565b5085935050505092915050565b5f60a0820190506121b55f830188611d18565b6121c260208301876120dc565b81810360408301526121d48186612146565b90506121e36060830185611e1a565b6121f06080830184611d18565b9695505050505050565b5f80fd5b61220782611ba1565b810181811067ffffffffffffffff8211171561222657612225612019565b5b80604052505050565b5f612238611c09565b905061224482826121fe565b919050565b5f67ffffffffffffffff82111561226357612262612019565b5b602082029050602081019050919050565b5f80fd5b5f8151905061228681611c7d565b92915050565b5f61229e61229984612249565b61222f565b905080838252602082019050602084028301858111156122c1576122c0612274565b5b835b818110156122ea57806122d68882612278565b8452602084019350506020810190506122c3565b5050509392505050565b5f82601f830112612308576123076121fa565b5b815161231884826020860161228c565b91505092915050565b5f6020828403121561233657612335611c12565b5b5f82015167ffffffffffffffff81111561235357612352611c16565b5b61235f848285016122f4565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61239c602083611b69565b91506123a782612368565b602082019050919050565b5f6020820190508181035f8301526123c981612390565b9050919050565b7f4e6f20457468657220746f2072657472696576650000000000000000000000005f82015250565b5f612404601483611b69565b915061240f826123d0565b602082019050919050565b5f6020820190508181035f830152612431816123f8565b9050919050565b5f81905092915050565b50565b5f6124505f83612438565b915061245b82612442565b5f82019050919050565b5f61246f82612445565b9150819050919050565b7f5472616e73666572206661696c656400000000000000000000000000000000005f82015250565b5f6124ad600f83611b69565b91506124b882612479565b602082019050919050565b5f6020820190508181035f8301526124da816124a1565b9050919050565b7f5468652064656661756c7420706169722063616e6e6f742062652072656d6f765f8201527f65642066726f6d206175746f6d617465644d61726b65744d616b65725061697260208201527f7300000000000000000000000000000000000000000000000000000000000000604082015250565b5f612561604183611b69565b915061256c826124e1565b606082019050919050565b5f6020820190508181035f83015261258e81612555565b9050919050565b5f6040820190506125a85f830185611e1a565b6125b56020830184611e1a565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612616602583611b69565b9150612621826125bc565b604082019050919050565b5f6020820190508181035f8301526126438161260a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6126a4602683611b69565b91506126af8261264a565b604082019050919050565b5f6020820190508181035f8301526126d181612698565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612732602483611b69565b915061273d826126d8565b604082019050919050565b5f6020820190508181035f83015261275f81612726565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6127c0602283611b69565b91506127cb82612766565b604082019050919050565b5f6020820190508181035f8301526127ed816127b4565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f612828601d83611b69565b9150612833826127f4565b602082019050919050565b5f6020820190508181035f8301526128558161281c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6128b6602583611b69565b91506128c18261285c565b604082019050919050565b5f6020820190508181035f8301526128e3816128aa565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612944602383611b69565b915061294f826128ea565b604082019050919050565b5f6020820190508181035f83015261297181612938565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6129d2602683611b69565b91506129dd82612978565b604082019050919050565b5f6020820190508181035f8301526129ff816129c6565b9050919050565b7f4175746f6d61746564206d61726b6574206d616b6572207061697220697320615f8201527f6c72656164792073657420746f20746861742076616c75650000000000000000602082015250565b5f612a60603883611b69565b9150612a6b82612a06565b604082019050919050565b5f6020820190508181035f830152612a8d81612a54565b905091905056fea2646970667358221220d9e26d94b272641af88d3837e7e94c4212319df1e181087ced819c35f688298e64736f6c634300081700330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

Deployed Bytecode

0x608060405260043610610138575f3560e01c806395d89b41116100aa578063b62496f51161006e578063b62496f514610421578063b6c523241461045d578063d32a8f6714610487578063d578192c146104b1578063dd62ed3e146104db578063f2fde38b146105175761013f565b806395d89b411461032f5780639a7a23d614610359578063a32cb4c614610381578063a457c2d7146103a9578063a9059cbb146103e55761013f565b806339509351116100fc5780633950935114610239578063582992541461027557806370a082311461029d578063715018a6146102d95780638643d4ca146102ef5780638da5cb5b146103055761013f565b806306fdde0314610143578063095ea7b31461016d57806318160ddd146101a957806323b872dd146101d3578063313ce5671461020f5761013f565b3661013f57005b5f80fd5b34801561014e575f80fd5b5061015761053f565b6040516101649190611be9565b60405180910390f35b348015610178575f80fd5b50610193600480360381019061018e9190611ca7565b6105cf565b6040516101a09190611cff565b60405180910390f35b3480156101b4575f80fd5b506101bd6105f1565b6040516101ca9190611d27565b60405180910390f35b3480156101de575f80fd5b506101f960048036038101906101f49190611d40565b6105fa565b6040516102069190611cff565b60405180910390f35b34801561021a575f80fd5b50610223610628565b6040516102309190611dab565b60405180910390f35b348015610244575f80fd5b5061025f600480360381019061025a9190611ca7565b610630565b60405161026c9190611cff565b60405180910390f35b348015610280575f80fd5b5061029b60048036038101906102969190611dc4565b6106d5565b005b3480156102a8575f80fd5b506102c360048036038101906102be9190611def565b61092d565b6040516102d09190611d27565b60405180910390f35b3480156102e4575f80fd5b506102ed610972565b005b3480156102fa575f80fd5b50610303610ac5565b005b348015610310575f80fd5b50610319610c54565b6040516103269190611e29565b60405180910390f35b34801561033a575f80fd5b50610343610c7c565b6040516103509190611be9565b60405180910390f35b348015610364575f80fd5b5061037f600480360381019061037a9190611e6c565b610d0c565b005b34801561038c575f80fd5b506103a760048036038101906103a29190611e6c565b610e48565b005b3480156103b4575f80fd5b506103cf60048036038101906103ca9190611ca7565b6111a4565b6040516103dc9190611cff565b60405180910390f35b3480156103f0575f80fd5b5061040b60048036038101906104069190611ca7565b611288565b6040516104189190611cff565b60405180910390f35b34801561042c575f80fd5b5061044760048036038101906104429190611def565b6112aa565b6040516104549190611cff565b60405180910390f35b348015610468575f80fd5b506104716112c7565b60405161047e9190611d27565b60405180910390f35b348015610492575f80fd5b5061049b6112d0565b6040516104a89190611e29565b60405180910390f35b3480156104bc575f80fd5b506104c56112f5565b6040516104d29190611f05565b60405180910390f35b3480156104e6575f80fd5b5061050160048036038101906104fc9190611f1e565b61131a565b60405161050e9190611d27565b60405180910390f35b348015610522575f80fd5b5061053d60048036038101906105389190611def565b61139c565b005b60606003805461054e90611f89565b80601f016020809104026020016040519081016040528092919081815260200182805461057a90611f89565b80156105c55780601f1061059c576101008083540402835291602001916105c5565b820191905f5260205f20905b8154815290600101906020018083116105a857829003601f168201915b5050505050905090565b5f806105d961155e565b90506105e6818585611565565b600191505092915050565b5f600254905090565b5f8061060461155e565b9050610611858285611728565b61061c8585856117b3565b60019150509392505050565b5f6012905090565b5f8061063a61155e565b90506106ca81858560015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546106c59190611fe6565b611565565b600191505092915050565b5f600267ffffffffffffffff8111156106f1576106f0612019565b5b60405190808252806020026020018201604052801561071f5781602001602082028036833780820191505090505b50905030815f8151811061073657610735612046565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156107da573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107fe9190612087565b8160018151811061081257610811612046565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506108573330846117b3565b6108833060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611565565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318cbafe5835f8433426040518663ffffffff1660e01b81526004016108e59594939291906121a2565b5f604051808303815f875af1158015610900573d5f803e3d5ffd5b505050506040513d5f823e3d601f19601f820116820180604052508101906109289190612321565b505050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61097a61155e565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ff906123b2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35f60055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610acd61155e565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b52906123b2565b60405180910390fd5b5f4790505f8111610ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b989061241a565b60405180910390fd5b5f610baa610c54565b73ffffffffffffffffffffffffffffffffffffffff1682604051610bcd90612465565b5f6040518083038185875af1925050503d805f8114610c07576040519150601f19603f3d011682016040523d82523d5f602084013e610c0c565b606091505b5050905080610c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c47906124c3565b60405180910390fd5b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610c8b90611f89565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb790611f89565b8015610d025780601f10610cd957610100808354040283529160200191610d02565b820191905f5260205f20905b815481529060010190602001808311610ce557829003601f168201915b5050505050905090565b610d1461155e565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610da2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d99906123b2565b60405180910390fd5b8080610dfb5750600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b610e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3190612577565b60405180910390fd5b610e448282611a28565b5050565b610e5061155e565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ede576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed5906123b2565b60405180910390fd5b80156111a05760095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f56729c2d3b35702079226f38e0417b72386db8f924b488588b56135138cf179f60405160405180910390a38160095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611009573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061102d9190612087565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156110b3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110d79190612087565b6040518363ffffffff1660e01b81526004016110f4929190612595565b6020604051808303815f875af1158015611110573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111349190612087565b600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061119f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001611a28565b5b5050565b5f806111ae61155e565b90505f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508381101561126f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112669061262c565b60405180910390fd5b61127c8286868403611565565b60019250505092915050565b5f8061129261155e565b905061129f8185856117b3565b600191505092915050565b6008602052805f5260405f205f915054906101000a900460ff1681565b5f600754905090565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6113a461155e565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611432576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611429906123b2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611497906126ba565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a38060055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036115d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ca90612748565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611641576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611638906127d6565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161171b9190611d27565b60405180910390a3505050565b5f611733848461131a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146117ad578181101561179f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117969061283e565b60405180910390fd5b6117ac8484848403611565565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611821576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611818906128cc565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361188f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118869061295a565b60405180910390fd5b61189a838383611b55565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561191d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611914906129e8565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546119ab9190611fe6565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a0f9190611d27565b60405180910390a3611a22848484611b5a565b50505050565b80151560085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16151503611ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aae90612a76565b60405180910390fd5b8060085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611b96578082015181840152602081019050611b7b565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611bbb82611b5f565b611bc58185611b69565b9350611bd5818560208601611b79565b611bde81611ba1565b840191505092915050565b5f6020820190508181035f830152611c018184611bb1565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611c4382611c1a565b9050919050565b611c5381611c39565b8114611c5d575f80fd5b50565b5f81359050611c6e81611c4a565b92915050565b5f819050919050565b611c8681611c74565b8114611c90575f80fd5b50565b5f81359050611ca181611c7d565b92915050565b5f8060408385031215611cbd57611cbc611c12565b5b5f611cca85828601611c60565b9250506020611cdb85828601611c93565b9150509250929050565b5f8115159050919050565b611cf981611ce5565b82525050565b5f602082019050611d125f830184611cf0565b92915050565b611d2181611c74565b82525050565b5f602082019050611d3a5f830184611d18565b92915050565b5f805f60608486031215611d5757611d56611c12565b5b5f611d6486828701611c60565b9350506020611d7586828701611c60565b9250506040611d8686828701611c93565b9150509250925092565b5f60ff82169050919050565b611da581611d90565b82525050565b5f602082019050611dbe5f830184611d9c565b92915050565b5f60208284031215611dd957611dd8611c12565b5b5f611de684828501611c93565b91505092915050565b5f60208284031215611e0457611e03611c12565b5b5f611e1184828501611c60565b91505092915050565b611e2381611c39565b82525050565b5f602082019050611e3c5f830184611e1a565b92915050565b611e4b81611ce5565b8114611e55575f80fd5b50565b5f81359050611e6681611e42565b92915050565b5f8060408385031215611e8257611e81611c12565b5b5f611e8f85828601611c60565b9250506020611ea085828601611e58565b9150509250929050565b5f819050919050565b5f611ecd611ec8611ec384611c1a565b611eaa565b611c1a565b9050919050565b5f611ede82611eb3565b9050919050565b5f611eef82611ed4565b9050919050565b611eff81611ee5565b82525050565b5f602082019050611f185f830184611ef6565b92915050565b5f8060408385031215611f3457611f33611c12565b5b5f611f4185828601611c60565b9250506020611f5285828601611c60565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611fa057607f821691505b602082108103611fb357611fb2611f5c565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611ff082611c74565b9150611ffb83611c74565b925082820190508082111561201357612012611fb9565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8151905061208181611c4a565b92915050565b5f6020828403121561209c5761209b611c12565b5b5f6120a984828501612073565b91505092915050565b5f819050919050565b5f6120d56120d06120cb846120b2565b611eaa565b611c74565b9050919050565b6120e5816120bb565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61211d81611c39565b82525050565b5f61212e8383612114565b60208301905092915050565b5f602082019050919050565b5f612150826120eb565b61215a81856120f5565b935061216583612105565b805f5b8381101561219557815161217c8882612123565b97506121878361213a565b925050600181019050612168565b5085935050505092915050565b5f60a0820190506121b55f830188611d18565b6121c260208301876120dc565b81810360408301526121d48186612146565b90506121e36060830185611e1a565b6121f06080830184611d18565b9695505050505050565b5f80fd5b61220782611ba1565b810181811067ffffffffffffffff8211171561222657612225612019565b5b80604052505050565b5f612238611c09565b905061224482826121fe565b919050565b5f67ffffffffffffffff82111561226357612262612019565b5b602082029050602081019050919050565b5f80fd5b5f8151905061228681611c7d565b92915050565b5f61229e61229984612249565b61222f565b905080838252602082019050602084028301858111156122c1576122c0612274565b5b835b818110156122ea57806122d68882612278565b8452602084019350506020810190506122c3565b5050509392505050565b5f82601f830112612308576123076121fa565b5b815161231884826020860161228c565b91505092915050565b5f6020828403121561233657612335611c12565b5b5f82015167ffffffffffffffff81111561235357612352611c16565b5b61235f848285016122f4565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61239c602083611b69565b91506123a782612368565b602082019050919050565b5f6020820190508181035f8301526123c981612390565b9050919050565b7f4e6f20457468657220746f2072657472696576650000000000000000000000005f82015250565b5f612404601483611b69565b915061240f826123d0565b602082019050919050565b5f6020820190508181035f830152612431816123f8565b9050919050565b5f81905092915050565b50565b5f6124505f83612438565b915061245b82612442565b5f82019050919050565b5f61246f82612445565b9150819050919050565b7f5472616e73666572206661696c656400000000000000000000000000000000005f82015250565b5f6124ad600f83611b69565b91506124b882612479565b602082019050919050565b5f6020820190508181035f8301526124da816124a1565b9050919050565b7f5468652064656661756c7420706169722063616e6e6f742062652072656d6f765f8201527f65642066726f6d206175746f6d617465644d61726b65744d616b65725061697260208201527f7300000000000000000000000000000000000000000000000000000000000000604082015250565b5f612561604183611b69565b915061256c826124e1565b606082019050919050565b5f6020820190508181035f83015261258e81612555565b9050919050565b5f6040820190506125a85f830185611e1a565b6125b56020830184611e1a565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612616602583611b69565b9150612621826125bc565b604082019050919050565b5f6020820190508181035f8301526126438161260a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6126a4602683611b69565b91506126af8261264a565b604082019050919050565b5f6020820190508181035f8301526126d181612698565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612732602483611b69565b915061273d826126d8565b604082019050919050565b5f6020820190508181035f83015261275f81612726565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6127c0602283611b69565b91506127cb82612766565b604082019050919050565b5f6020820190508181035f8301526127ed816127b4565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f612828601d83611b69565b9150612833826127f4565b602082019050919050565b5f6020820190508181035f8301526128558161281c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6128b6602583611b69565b91506128c18261285c565b604082019050919050565b5f6020820190508181035f8301526128e3816128aa565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612944602383611b69565b915061294f826128ea565b604082019050919050565b5f6020820190508181035f83015261297181612938565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6129d2602683611b69565b91506129dd82612978565b604082019050919050565b5f6020820190508181035f8301526129ff816129c6565b9050919050565b7f4175746f6d61746564206d61726b6574206d616b6572207061697220697320615f8201527f6c72656164792073657420746f20746861742076616c75650000000000000000602082015250565b5f612a60603883611b69565b9150612a6b82612a06565b604082019050919050565b5f6020820190508181035f830152612a8d81612a54565b905091905056fea2646970667358221220d9e26d94b272641af88d3837e7e94c4212319df1e181087ced819c35f688298e64736f6c63430008170033

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

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

-----Decoded View---------------
Arg [0] : _uniswapRouterAddress (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d


Deployed Bytecode Sourcemap

24770:3173:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4157:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6508:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5277:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7289:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25819:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7993:240;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27379:561;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5448:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16156:148;;;;;;;;;;;;;:::i;:::-;;27033:338;;;;;;;;;;;;;:::i;:::-;;15513:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4376:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26376:296;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25919:449;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8736:438;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5781:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24816:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16711:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24933:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24882:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6037:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16459:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4157:100;4211:13;4244:5;4237:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4157:100;:::o;6508:201::-;6591:4;6608:13;6624:12;:10;:12::i;:::-;6608:28;;6647:32;6656:5;6663:7;6672:6;6647:8;:32::i;:::-;6697:4;6690:11;;;6508:201;;;;:::o;5277:108::-;5338:7;5365:12;;5358:19;;5277:108;:::o;7289:295::-;7420:4;7437:15;7455:12;:10;:12::i;:::-;7437:30;;7478:38;7494:4;7500:7;7509:6;7478:15;:38::i;:::-;7527:27;7537:4;7543:2;7547:6;7527:9;:27::i;:::-;7572:4;7565:11;;;7289:295;;;;;:::o;25819:92::-;25869:5;25058:2;25887:16;;25819:92;:::o;7993:240::-;8081:4;8098:13;8114:12;:10;:12::i;:::-;8098:28;;8137:66;8146:5;8153:7;8192:10;8162:11;:18;8174:5;8162:18;;;;;;;;;;;;;;;:27;8181:7;8162:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;8137:8;:66::i;:::-;8221:4;8214:11;;;7993:240;;;;:::o;27379:561::-;27442:21;27480:1;27466:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27442:40;;27511:4;27493;27498:1;27493:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;27537:16;;;;;;;;;;;:21;;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27527:4;27532:1;27527:7;;;;;;;;:::i;:::-;;;;;;;:33;;;;;;;;;;;27573:49;27583:10;27603:4;27610:11;27573:9;:49::i;:::-;27635:63;27652:4;27667:16;;;;;;;;;;;27686:11;27635:8;:63::i;:::-;27738:16;;;;;;;;;;;:38;;;27791:11;27817:1;27862:4;27881:10;27906:15;27738:194;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27431:509;27379:561;:::o;5448:127::-;5522:7;5549:9;:18;5559:7;5549:18;;;;;;;;;;;;;;;;5542:25;;5448:127;;;:::o;16156:148::-;15735:12;:10;:12::i;:::-;15725:22;;:6;;;;;;;;;;;:22;;;15717:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16263:1:::1;16226:40;;16247:6;;;;;;;;;;;16226:40;;;;;;;;;;;;16294:1;16277:6;;:19;;;;;;;;;;;;;;;;;;16156:148::o:0;27033:338::-;15735:12;:10;:12::i;:::-;15725:22;;:6;;;;;;;;;;;:22;;;15717:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;27093:14:::1;27110:21;27093:38;;27159:1;27150:6;:10;27142:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;27268:12;27286:7;:5;:7::i;:::-;:12;;27306:6;27286:31;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27267:50;;;27336:7;27328:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;27082:289;;27033:338::o:0;15513:79::-;15551:7;15578:6;;;;;;;;;;;15571:13;;15513:79;:::o;4376:104::-;4432:13;4465:7;4458:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4376:104;:::o;26376:296::-;15735:12;:10;:12::i;:::-;15725:22;;:6;;;;;;;;;;;:22;;;15717:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;26491:5:::1;:28;;;;26508:11;;;;;;;;;;;26500:19;;:4;:19;;;;26491:28;26469:143;;;;;;;;;;;;:::i;:::-;;;;;;;;;26623:41;26652:4;26658:5;26623:28;:41::i;:::-;26376:296:::0;;:::o;25919:449::-;15735:12;:10;:12::i;:::-;15725:22;;:6;;;;;;;;;;;:22;;;15717:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;26010:11:::1;26006:355;;;26083:16;;;;;;;;;;;26043:58;;26066:7;26043:58;;;;;;;;;;;;26154:7;26116:16;;:46;;;;;;;;;;;;;;;;;;26209:16;;;;;;;;;;;:24;;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;26191:56;;;26256:4;26263:16;;;;;;;;;;;:21;;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;26191:96;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;26177:11;;:110;;;;;;;;;;;;;;;;;;26302:47;26331:11;;;;;;;;;;;26344:4;26302:28;:47::i;:::-;26006:355;25919:449:::0;;:::o;8736:438::-;8829:4;8846:13;8862:12;:10;:12::i;:::-;8846:28;;8885:24;8912:11;:18;8924:5;8912:18;;;;;;;;;;;;;;;:27;8931:7;8912:27;;;;;;;;;;;;;;;;8885:54;;8978:15;8958:16;:35;;8950:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;9071:60;9080:5;9087:7;9115:15;9096:16;:34;9071:8;:60::i;:::-;9162:4;9155:11;;;;8736:438;;;;:::o;5781:193::-;5860:4;5877:13;5893:12;:10;:12::i;:::-;5877:28;;5916;5926:5;5933:2;5937:6;5916:9;:28::i;:::-;5962:4;5955:11;;;5781:193;;;;:::o;24816:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;16711:89::-;16756:7;16783:9;;16776:16;;16711:89;:::o;24933:26::-;;;;;;;;;;;;;:::o;24882:42::-;;;;;;;;;;;;;:::o;6037:151::-;6126:7;6153:11;:18;6165:5;6153:18;;;;;;;;;;;;;;;:27;6172:7;6153:27;;;;;;;;;;;;;;;;6146:34;;6037:151;;;;:::o;16459:244::-;15735:12;:10;:12::i;:::-;15725:22;;:6;;;;;;;;;;;:22;;;15717:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16568:1:::1;16548:22;;:8;:22;;::::0;16540:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;16658:8;16629:38;;16650:6;;;;;;;;;;;16629:38;;;;;;;;;;;;16687:8;16678:6;;:17;;;;;;;;;;;;;;;;;;16459:244:::0;:::o;96:98::-;149:7;176:10;169:17;;96:98;:::o;12372:380::-;12525:1;12508:19;;:5;:19;;;12500:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12606:1;12587:21;;:7;:21;;;12579:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12690:6;12660:11;:18;12672:5;12660:18;;;;;;;;;;;;;;;:27;12679:7;12660:27;;;;;;;;;;;;;;;:36;;;;12728:7;12712:32;;12721:5;12712:32;;;12737:6;12712:32;;;;;;:::i;:::-;;;;;;;;12372:380;;;:::o;13039:453::-;13174:24;13201:25;13211:5;13218:7;13201:9;:25::i;:::-;13174:52;;13261:17;13241:16;:37;13237:248;;13323:6;13303:16;:26;;13295:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13407:51;13416:5;13423:7;13451:6;13432:16;:25;13407:8;:51::i;:::-;13237:248;13163:329;13039:453;;;:::o;9653:671::-;9800:1;9784:18;;:4;:18;;;9776:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9877:1;9863:16;;:2;:16;;;9855:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;9932:38;9953:4;9959:2;9963:6;9932:20;:38::i;:::-;9983:19;10005:9;:15;10015:4;10005:15;;;;;;;;;;;;;;;;9983:37;;10054:6;10039:11;:21;;10031:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;10171:6;10157:11;:20;10139:9;:15;10149:4;10139:15;;;;;;;;;;;;;;;:38;;;;10216:6;10199:9;:13;10209:2;10199:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;10255:2;10240:26;;10249:4;10240:26;;;10259:6;10240:26;;;;;;:::i;:::-;;;;;;;;10279:37;10299:4;10305:2;10309:6;10279:19;:37::i;:::-;9765:559;9653:671;;;:::o;26680:345::-;26820:5;26785:40;;:25;:31;26811:4;26785:31;;;;;;;;;;;;;;;;;;;;;;;;;:40;;;26763:146;;;;;;;;;;;;:::i;:::-;;;;;;;;;26956:5;26922:25;:31;26948:4;26922:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;27011:5;26977:40;;27005:4;26977:40;;;;;;;;;;;;26680:345;;:::o;14092:125::-;;;;:::o;14821:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::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:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:118::-;5610:24;5628:5;5610:24;:::i;:::-;5605:3;5598:37;5523:118;;:::o;5647:222::-;5740:4;5778:2;5767:9;5763:18;5755:26;;5791:71;5859:1;5848:9;5844:17;5835:6;5791:71;:::i;:::-;5647:222;;;;:::o;5875:116::-;5945:21;5960:5;5945:21;:::i;:::-;5938:5;5935:32;5925:60;;5981:1;5978;5971:12;5925:60;5875:116;:::o;5997:133::-;6040:5;6078:6;6065:20;6056:29;;6094:30;6118:5;6094:30;:::i;:::-;5997:133;;;;:::o;6136:468::-;6201:6;6209;6258:2;6246:9;6237:7;6233:23;6229:32;6226:119;;;6264:79;;:::i;:::-;6226:119;6384:1;6409:53;6454:7;6445:6;6434:9;6430:22;6409:53;:::i;:::-;6399:63;;6355:117;6511:2;6537:50;6579:7;6570:6;6559:9;6555:22;6537:50;:::i;:::-;6527:60;;6482:115;6136:468;;;;;:::o;6610:60::-;6638:3;6659:5;6652:12;;6610:60;;;:::o;6676:142::-;6726:9;6759:53;6777:34;6786:24;6804:5;6786:24;:::i;:::-;6777:34;:::i;:::-;6759:53;:::i;:::-;6746:66;;6676:142;;;:::o;6824:126::-;6874:9;6907:37;6938:5;6907:37;:::i;:::-;6894:50;;6824:126;;;:::o;6956:153::-;7033:9;7066:37;7097:5;7066:37;:::i;:::-;7053:50;;6956:153;;;:::o;7115:185::-;7229:64;7287:5;7229:64;:::i;:::-;7224:3;7217:77;7115:185;;:::o;7306:276::-;7426:4;7464:2;7453:9;7449:18;7441:26;;7477:98;7572:1;7561:9;7557:17;7548:6;7477:98;:::i;:::-;7306:276;;;;:::o;7588:474::-;7656:6;7664;7713:2;7701:9;7692:7;7688:23;7684:32;7681:119;;;7719:79;;:::i;:::-;7681:119;7839:1;7864:53;7909:7;7900:6;7889:9;7885:22;7864:53;:::i;:::-;7854:63;;7810:117;7966:2;7992:53;8037:7;8028:6;8017:9;8013:22;7992:53;:::i;:::-;7982:63;;7937:118;7588:474;;;;;:::o;8068:180::-;8116:77;8113:1;8106:88;8213:4;8210:1;8203:15;8237:4;8234:1;8227:15;8254:320;8298:6;8335:1;8329:4;8325:12;8315:22;;8382:1;8376:4;8372:12;8403:18;8393:81;;8459:4;8451:6;8447:17;8437:27;;8393:81;8521:2;8513:6;8510:14;8490:18;8487:38;8484:84;;8540:18;;:::i;:::-;8484:84;8305:269;8254:320;;;:::o;8580:180::-;8628:77;8625:1;8618:88;8725:4;8722:1;8715:15;8749:4;8746:1;8739:15;8766:191;8806:3;8825:20;8843:1;8825:20;:::i;:::-;8820:25;;8859:20;8877:1;8859:20;:::i;:::-;8854:25;;8902:1;8899;8895:9;8888:16;;8923:3;8920:1;8917:10;8914:36;;;8930:18;;:::i;:::-;8914:36;8766:191;;;;:::o;8963:180::-;9011:77;9008:1;9001:88;9108:4;9105:1;9098:15;9132:4;9129:1;9122:15;9149:180;9197:77;9194:1;9187:88;9294:4;9291:1;9284:15;9318:4;9315:1;9308:15;9335:143;9392:5;9423:6;9417:13;9408:22;;9439:33;9466:5;9439:33;:::i;:::-;9335:143;;;;:::o;9484:351::-;9554:6;9603:2;9591:9;9582:7;9578:23;9574:32;9571:119;;;9609:79;;:::i;:::-;9571:119;9729:1;9754:64;9810:7;9801:6;9790:9;9786:22;9754:64;:::i;:::-;9744:74;;9700:128;9484:351;;;;:::o;9841:85::-;9886:7;9915:5;9904:16;;9841:85;;;:::o;9932:158::-;9990:9;10023:61;10041:42;10050:32;10076:5;10050:32;:::i;:::-;10041:42;:::i;:::-;10023:61;:::i;:::-;10010:74;;9932:158;;;:::o;10096:147::-;10191:45;10230:5;10191:45;:::i;:::-;10186:3;10179:58;10096:147;;:::o;10249:114::-;10316:6;10350:5;10344:12;10334:22;;10249:114;;;:::o;10369:184::-;10468:11;10502:6;10497:3;10490:19;10542:4;10537:3;10533:14;10518:29;;10369:184;;;;:::o;10559:132::-;10626:4;10649:3;10641:11;;10679:4;10674:3;10670:14;10662:22;;10559:132;;;:::o;10697:108::-;10774:24;10792:5;10774:24;:::i;:::-;10769:3;10762:37;10697:108;;:::o;10811:179::-;10880:10;10901:46;10943:3;10935:6;10901:46;:::i;:::-;10979:4;10974:3;10970:14;10956:28;;10811:179;;;;:::o;10996:113::-;11066:4;11098;11093:3;11089:14;11081:22;;10996:113;;;:::o;11145:732::-;11264:3;11293:54;11341:5;11293:54;:::i;:::-;11363:86;11442:6;11437:3;11363:86;:::i;:::-;11356:93;;11473:56;11523:5;11473:56;:::i;:::-;11552:7;11583:1;11568:284;11593:6;11590:1;11587:13;11568:284;;;11669:6;11663:13;11696:63;11755:3;11740:13;11696:63;:::i;:::-;11689:70;;11782:60;11835:6;11782:60;:::i;:::-;11772:70;;11628:224;11615:1;11612;11608:9;11603:14;;11568:284;;;11572:14;11868:3;11861:10;;11269:608;;;11145:732;;;;:::o;11883:831::-;12146:4;12184:3;12173:9;12169:19;12161:27;;12198:71;12266:1;12255:9;12251:17;12242:6;12198:71;:::i;:::-;12279:80;12355:2;12344:9;12340:18;12331:6;12279:80;:::i;:::-;12406:9;12400:4;12396:20;12391:2;12380:9;12376:18;12369:48;12434:108;12537:4;12528:6;12434:108;:::i;:::-;12426:116;;12552:72;12620:2;12609:9;12605:18;12596:6;12552:72;:::i;:::-;12634:73;12702:3;12691:9;12687:19;12678:6;12634:73;:::i;:::-;11883:831;;;;;;;;:::o;12720:117::-;12829:1;12826;12819:12;12843:281;12926:27;12948:4;12926:27;:::i;:::-;12918:6;12914:40;13056:6;13044:10;13041:22;13020:18;13008:10;13005:34;13002:62;12999:88;;;13067:18;;:::i;:::-;12999:88;13107:10;13103:2;13096:22;12886:238;12843:281;;:::o;13130:129::-;13164:6;13191:20;;:::i;:::-;13181:30;;13220:33;13248:4;13240:6;13220:33;:::i;:::-;13130:129;;;:::o;13265:311::-;13342:4;13432:18;13424:6;13421:30;13418:56;;;13454:18;;:::i;:::-;13418:56;13504:4;13496:6;13492:17;13484:25;;13564:4;13558;13554:15;13546:23;;13265:311;;;:::o;13582:117::-;13691:1;13688;13681:12;13705:143;13762:5;13793:6;13787:13;13778:22;;13809:33;13836:5;13809:33;:::i;:::-;13705:143;;;;:::o;13871:732::-;13978:5;14003:81;14019:64;14076:6;14019:64;:::i;:::-;14003:81;:::i;:::-;13994:90;;14104:5;14133:6;14126:5;14119:21;14167:4;14160:5;14156:16;14149:23;;14220:4;14212:6;14208:17;14200:6;14196:30;14249:3;14241:6;14238:15;14235:122;;;14268:79;;:::i;:::-;14235:122;14383:6;14366:231;14400:6;14395:3;14392:15;14366:231;;;14475:3;14504:48;14548:3;14536:10;14504:48;:::i;:::-;14499:3;14492:61;14582:4;14577:3;14573:14;14566:21;;14442:155;14426:4;14421:3;14417:14;14410:21;;14366:231;;;14370:21;13984:619;;13871:732;;;;;:::o;14626:385::-;14708:5;14757:3;14750:4;14742:6;14738:17;14734:27;14724:122;;14765:79;;:::i;:::-;14724:122;14875:6;14869:13;14900:105;15001:3;14993:6;14986:4;14978:6;14974:17;14900:105;:::i;:::-;14891:114;;14714:297;14626:385;;;;:::o;15017:554::-;15112:6;15161:2;15149:9;15140:7;15136:23;15132:32;15129:119;;;15167:79;;:::i;:::-;15129:119;15308:1;15297:9;15293:17;15287:24;15338:18;15330:6;15327:30;15324:117;;;15360:79;;:::i;:::-;15324:117;15465:89;15546:7;15537:6;15526:9;15522:22;15465:89;:::i;:::-;15455:99;;15258:306;15017:554;;;;:::o;15577:182::-;15717:34;15713:1;15705:6;15701:14;15694:58;15577:182;:::o;15765:366::-;15907:3;15928:67;15992:2;15987:3;15928:67;:::i;:::-;15921:74;;16004:93;16093:3;16004:93;:::i;:::-;16122:2;16117:3;16113:12;16106:19;;15765:366;;;:::o;16137:419::-;16303:4;16341:2;16330:9;16326:18;16318:26;;16390:9;16384:4;16380:20;16376:1;16365:9;16361:17;16354:47;16418:131;16544:4;16418:131;:::i;:::-;16410:139;;16137:419;;;:::o;16562:170::-;16702:22;16698:1;16690:6;16686:14;16679:46;16562:170;:::o;16738:366::-;16880:3;16901:67;16965:2;16960:3;16901:67;:::i;:::-;16894:74;;16977:93;17066:3;16977:93;:::i;:::-;17095:2;17090:3;17086:12;17079:19;;16738:366;;;:::o;17110:419::-;17276:4;17314:2;17303:9;17299:18;17291:26;;17363:9;17357:4;17353:20;17349:1;17338:9;17334:17;17327:47;17391:131;17517:4;17391:131;:::i;:::-;17383:139;;17110:419;;;:::o;17535:147::-;17636:11;17673:3;17658:18;;17535:147;;;;:::o;17688:114::-;;:::o;17808:398::-;17967:3;17988:83;18069:1;18064:3;17988:83;:::i;:::-;17981:90;;18080:93;18169:3;18080:93;:::i;:::-;18198:1;18193:3;18189:11;18182:18;;17808:398;;;:::o;18212:379::-;18396:3;18418:147;18561:3;18418:147;:::i;:::-;18411:154;;18582:3;18575:10;;18212:379;;;:::o;18597:165::-;18737:17;18733:1;18725:6;18721:14;18714:41;18597:165;:::o;18768:366::-;18910:3;18931:67;18995:2;18990:3;18931:67;:::i;:::-;18924:74;;19007:93;19096:3;19007:93;:::i;:::-;19125:2;19120:3;19116:12;19109:19;;18768:366;;;:::o;19140:419::-;19306:4;19344:2;19333:9;19329:18;19321:26;;19393:9;19387:4;19383:20;19379:1;19368:9;19364:17;19357:47;19421:131;19547:4;19421:131;:::i;:::-;19413:139;;19140:419;;;:::o;19565:289::-;19705:34;19701:1;19693:6;19689:14;19682:58;19774:34;19769:2;19761:6;19757:15;19750:59;19843:3;19838:2;19830:6;19826:15;19819:28;19565:289;:::o;19860:366::-;20002:3;20023:67;20087:2;20082:3;20023:67;:::i;:::-;20016:74;;20099:93;20188:3;20099:93;:::i;:::-;20217:2;20212:3;20208:12;20201:19;;19860:366;;;:::o;20232:419::-;20398:4;20436:2;20425:9;20421:18;20413:26;;20485:9;20479:4;20475:20;20471:1;20460:9;20456:17;20449:47;20513:131;20639:4;20513:131;:::i;:::-;20505:139;;20232:419;;;:::o;20657:332::-;20778:4;20816:2;20805:9;20801:18;20793:26;;20829:71;20897:1;20886:9;20882:17;20873:6;20829:71;:::i;:::-;20910:72;20978:2;20967:9;20963:18;20954:6;20910:72;:::i;:::-;20657:332;;;;;:::o;20995:224::-;21135:34;21131:1;21123:6;21119:14;21112:58;21204:7;21199:2;21191:6;21187:15;21180:32;20995:224;:::o;21225:366::-;21367:3;21388:67;21452:2;21447:3;21388:67;:::i;:::-;21381:74;;21464:93;21553:3;21464:93;:::i;:::-;21582:2;21577:3;21573:12;21566:19;;21225:366;;;:::o;21597:419::-;21763:4;21801:2;21790:9;21786:18;21778:26;;21850:9;21844:4;21840:20;21836:1;21825:9;21821:17;21814:47;21878:131;22004:4;21878:131;:::i;:::-;21870:139;;21597:419;;;:::o;22022:225::-;22162:34;22158:1;22150:6;22146:14;22139:58;22231:8;22226:2;22218:6;22214:15;22207:33;22022:225;:::o;22253:366::-;22395:3;22416:67;22480:2;22475:3;22416:67;:::i;:::-;22409:74;;22492:93;22581:3;22492:93;:::i;:::-;22610:2;22605:3;22601:12;22594:19;;22253:366;;;:::o;22625:419::-;22791:4;22829:2;22818:9;22814:18;22806:26;;22878:9;22872:4;22868:20;22864:1;22853:9;22849:17;22842:47;22906:131;23032:4;22906:131;:::i;:::-;22898:139;;22625:419;;;:::o;23050:223::-;23190:34;23186:1;23178:6;23174:14;23167:58;23259:6;23254:2;23246:6;23242:15;23235:31;23050:223;:::o;23279:366::-;23421:3;23442:67;23506:2;23501:3;23442:67;:::i;:::-;23435:74;;23518:93;23607:3;23518:93;:::i;:::-;23636:2;23631:3;23627:12;23620:19;;23279:366;;;:::o;23651:419::-;23817:4;23855:2;23844:9;23840:18;23832:26;;23904:9;23898:4;23894:20;23890:1;23879:9;23875:17;23868:47;23932:131;24058:4;23932:131;:::i;:::-;23924:139;;23651:419;;;:::o;24076:221::-;24216:34;24212:1;24204:6;24200:14;24193:58;24285:4;24280:2;24272:6;24268:15;24261:29;24076:221;:::o;24303:366::-;24445:3;24466:67;24530:2;24525:3;24466:67;:::i;:::-;24459:74;;24542:93;24631:3;24542:93;:::i;:::-;24660:2;24655:3;24651:12;24644:19;;24303:366;;;:::o;24675:419::-;24841:4;24879:2;24868:9;24864:18;24856:26;;24928:9;24922:4;24918:20;24914:1;24903:9;24899:17;24892:47;24956:131;25082:4;24956:131;:::i;:::-;24948:139;;24675:419;;;:::o;25100:179::-;25240:31;25236:1;25228:6;25224:14;25217:55;25100:179;:::o;25285:366::-;25427:3;25448:67;25512:2;25507:3;25448:67;:::i;:::-;25441:74;;25524:93;25613:3;25524:93;:::i;:::-;25642:2;25637:3;25633:12;25626:19;;25285:366;;;:::o;25657:419::-;25823:4;25861:2;25850:9;25846:18;25838:26;;25910:9;25904:4;25900:20;25896:1;25885:9;25881:17;25874:47;25938:131;26064:4;25938:131;:::i;:::-;25930:139;;25657:419;;;:::o;26082:224::-;26222:34;26218:1;26210:6;26206:14;26199:58;26291:7;26286:2;26278:6;26274:15;26267:32;26082:224;:::o;26312:366::-;26454:3;26475:67;26539:2;26534:3;26475:67;:::i;:::-;26468:74;;26551:93;26640:3;26551:93;:::i;:::-;26669:2;26664:3;26660:12;26653:19;;26312:366;;;:::o;26684:419::-;26850:4;26888:2;26877:9;26873:18;26865:26;;26937:9;26931:4;26927:20;26923:1;26912:9;26908:17;26901:47;26965:131;27091:4;26965:131;:::i;:::-;26957:139;;26684:419;;;:::o;27109:222::-;27249:34;27245:1;27237:6;27233:14;27226:58;27318:5;27313:2;27305:6;27301:15;27294:30;27109:222;:::o;27337:366::-;27479:3;27500:67;27564:2;27559:3;27500:67;:::i;:::-;27493:74;;27576:93;27665:3;27576:93;:::i;:::-;27694:2;27689:3;27685:12;27678:19;;27337:366;;;:::o;27709:419::-;27875:4;27913:2;27902:9;27898:18;27890:26;;27962:9;27956:4;27952:20;27948:1;27937:9;27933:17;27926:47;27990:131;28116:4;27990:131;:::i;:::-;27982:139;;27709:419;;;:::o;28134:225::-;28274:34;28270:1;28262:6;28258:14;28251:58;28343:8;28338:2;28330:6;28326:15;28319:33;28134:225;:::o;28365:366::-;28507:3;28528:67;28592:2;28587:3;28528:67;:::i;:::-;28521:74;;28604:93;28693:3;28604:93;:::i;:::-;28722:2;28717:3;28713:12;28706:19;;28365:366;;;:::o;28737:419::-;28903:4;28941:2;28930:9;28926:18;28918:26;;28990:9;28984:4;28980:20;28976:1;28965:9;28961:17;28954:47;29018:131;29144:4;29018:131;:::i;:::-;29010:139;;28737:419;;;:::o;29162:243::-;29302:34;29298:1;29290:6;29286:14;29279:58;29371:26;29366:2;29358:6;29354:15;29347:51;29162:243;:::o;29411:366::-;29553:3;29574:67;29638:2;29633:3;29574:67;:::i;:::-;29567:74;;29650:93;29739:3;29650:93;:::i;:::-;29768:2;29763:3;29759:12;29752:19;;29411:366;;;:::o;29783:419::-;29949:4;29987:2;29976:9;29972:18;29964:26;;30036:9;30030:4;30026:20;30022:1;30011:9;30007:17;30000:47;30064:131;30190:4;30064:131;:::i;:::-;30056:139;;29783:419;;;:::o

Swarm Source

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