ETH Price: $3,414.86 (+0.98%)
Gas: 4 Gwei

Token

Ÿ (YAI)
 

Overview

Max Total Supply

100,000,000 YAI

Holders

6,334 ( -0.079%)

Market

Price

$0.07 @ 0.000021 ETH (-3.28%)

Onchain Market Cap

$7,117,600.00

Circulating Supply Market Cap

$6,548,203.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
21.998080604304880396 YAI

Value
$1.57 ( ~0.00045975584887617 Eth) [0.0000%]
0x81a3deb73139acbe0dbff9451e7bda2b96507c65
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Yoracle is an advanced real-time AI-driven market prediction solutions.

Market

Volume (24H):$33,658.00
Market Capitalization:$6,548,203.00
Circulating Supply:92,000,000.00 YAI
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume
1
Uniswap V2 (Ethereum)
0X477A3D269266994F15E9C43A8D9C0561C4928088-0XC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2$0.0708
0.0000207 Eth
$48,219.00
671,585.422 0X477A3D269266994F15E9C43A8D9C0561C4928088
100.0000%

Contract Source Code Verified (Exact Match)

Contract Name:
YAI

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-03-27
*/

// Sources flattened with hardhat v2.20.1 https://hardhat.org

// SPDX-License-Identifier: MIT

// File @openzeppelin/contracts/utils/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}


// File @openzeppelin/contracts/access/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/interfaces/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}


// File @openzeppelin/contracts/token/ERC20/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

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

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

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


// File @openzeppelin/contracts/token/ERC20/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}


// File @uniswap/v2-periphery/contracts/interfaces/[email protected]

pragma solidity >=0.6.2;

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

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

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


// File @uniswap/v2-periphery/contracts/interfaces/[email protected]

pragma solidity >=0.6.2;

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

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


// File @uniswap/v2-core/contracts/interfaces/[email protected]

pragma solidity >=0.5.0;

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

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

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

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

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


// File @uniswap/v2-core/contracts/interfaces/[email protected]

pragma solidity >=0.5.0;

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}


// File contracts/Yai.sol

// Please raid the following legal disclaimer before interacting with this smart contract:

// This disclaimer governs the use of the smart contract associated with the Ÿ Project and the acquisition of $YAI tokens. By interacting with the smart contract or acquiring $YAI tokens, you acknowledge and agree to the terms outlined herein.
// Residents of the United States or any other forbidden location stated on our official channels of communication are expressly prohibited from using our smart contract, acquiring $YAI tokens, or engaging in any related activities. This restriction is in compliance with applicable laws and regulations, and any violation of this provision is at the sole risk of the individual.
// While every effort is made to maintain the continuity and functionality of the Ÿ Project and the associated smart contract, we do not guarantee that the project will remain operational indefinitely. The longevity of the project depends on various factors, including technological advancements, regulatory changes, and market conditions, which are beyond our control and prediction.
// The $YAI token is not intended as an investment vehicle. It does not represent ownership in the Ÿ Project, nor does it entitle holders to any dividends, profits, or voting rights. Acquiring $YAI tokens should be done solely for the purpose of accessing and utilising services within the Ÿ ecosystem.
// By acquiring $YAI tokens or interacting with the associated smart contract, you acknowledge and accept the inherent risks involved. These risks include, but are not limited to, market volatility, technological vulnerabilities, regulatory uncertainties, and the potential loss of the entire investment. You should not engage in trading $YAI tokens unless you are prepared to bear the risk of losing all invested funds.
// We provide no warranty or guarantee, express or implied, regarding the performance, functionality, liquidity or availability of the smart contract or the $YAI token. We shall not be held liable for any direct, indirect, incidental, consequential, or punitive damages arising from the use of the smart contract or the acquisition of $YAI tokens.
// Users are responsible for ensuring compliance with all applicable laws and regulations governing the use of cryptocurrencies and digital assets in their jurisdiction.
// By interacting with the smart contract or acquiring $YAI tokens, you signify your understanding and acceptance of the terms outlined in this disclaimer. If you do not agree with any part of these terms, you must refrain from using the smart contract or acquiring $YAI tokens.

// http://yoracle.ai

//   wWw  wWw 
//   (O)  (O) 
//   ( \  / ) 
//    \ \/ /  
//     \o /  oracle 
//    _/ /  
//   (_.'     

// Original license: SPDX_License_Identifier: MIT
pragma solidity =0.8.20;
contract YAI is IERC20Metadata, ERC20, Ownable {
    uint public maxTxAmount = 20;
    uint public maxWalletAmount = 20; // 2%
    uint public TaxBuy = 50; // 5%
    uint public TaxSell = 400; // 40%
    uint public GreedTax = 400; // 40%

    address public admin;
    mapping(address => bool) public noFeeFor;
    mapping(address => bool) public noTax;
    IUniswapV2Router02 public router;
    address public uniswapV2Pair;
    bool private _progressSwap = false;

    enum Phase {
        DayLight,
        NormalTrade
    }
    Phase public currentPhase = Phase.DayLight;
    mapping(address => bool) public isChaosOrc;

    error TransferExceedsMaxTx();
    error TransferExceedsMaxWallet();
    error NotOwnerOrOperations();
    error ExceedsMaxTxAmount(uint amount, uint maxTxAmount);
    error InvalidAddress(address addr);
    error CannotSetMaxTxAmountToMoreThan10Percent();
    error CannotSetMaxTxAmountToLessThanHalfPercent();
    error CallFailed();
    error InvalidReceiver(address);

    event SetOperationsWallet(address _newWallet, bool _status);
    event WhitelistAddress(address indexed addy, bool changer);
    event WithdrawETH(uint amount);
    event WithdrawTokens(address token, uint amount);
    event MaxWalletSet(uint from, uint to);
    event MaxTxAmountChange(uint from, uint to);
    event SwapAndLiquify(uint tokensSwapped, uint ethReceived);
    event PhaseChange(Phase from, Phase to);
    modifier onlyAdmin() {
        if (owner() != _msgSender() && admin != _msgSender()) {
            revert NotOwnerOrOperations();
        }
        _;
    }

    constructor(
        string memory _symbol,
        string memory _name,
        uint _totalSupply,
        address _admin,
        address _router
    ) ERC20(_name, _symbol) Ownable(_admin) {
        router = IUniswapV2Router02(_router);
        admin = _admin;

        noTax[_admin] = true;
        noTax[address(this)] = true;

        noFeeFor[_admin] = true;
        noFeeFor[address(router)] = true;
        noFeeFor[address(this)] = true;

        _mint(_admin, _totalSupply * 10 ** decimals());
        uniswapV2Pair = IUniswapV2Factory(router.factory()).createPair(
            address(this),
            router.WETH()
        );
    }

    function _update(address from, address to, uint amount) internal override {
        if (to == address(0)) {
            revert InvalidReceiver(address(0));
        }

        if (!noTax[from] && !noTax[to]) {
            if (to != uniswapV2Pair) {
                if (amount > getMaxTxAmount()) {
                    revert TransferExceedsMaxTx();
                }

                if ((amount + balanceOf(to)) > getMaxWalletAmount()) {
                    revert TransferExceedsMaxWallet();
                }
            }
        }

        uint transferAmount = amount;
        if (!noFeeFor[from] && !noFeeFor[to]) {
            if ((from == uniswapV2Pair || to == uniswapV2Pair)) {
                if (amount > getMaxTxAmount()) {
                    revert ExceedsMaxTxAmount(amount, getMaxTxAmount());
                }
                // Buy

                if (
                    TaxBuy > 0 &&
                    uniswapV2Pair == from &&
                    !noTax[to] &&
                    from != address(this)
                ) {
                    if (currentPhase == Phase.DayLight)
                        isChaosOrc[to] = true;
                    uint feeTokens = (amount * TaxBuy) / 1_000;
                    super._update(from, address(this), feeTokens);
                    transferAmount = amount - feeTokens;
                }

                // Sell
                if (
                    uniswapV2Pair == to &&
                    !noTax[from] &&
                    to != address(this) &&
                    !_progressSwap
                ) {
                    uint taxSell = TaxSell;
                    _progressSwap = true;
                    liquify();
                    _progressSwap = false;
                    if (isChaosOrc[from] == true) taxSell = GreedTax;
                    uint feeTokens = (amount * taxSell) / 1_000;
                    super._update(from, address(this), feeTokens);
                    transferAmount = amount - feeTokens;
                }
            } else {
                if (isChaosOrc[from] == true && uniswapV2Pair != to) {
                    uint256 feeTokens = (amount * GreedTax) / 1_000;
                    super._update(from, address(this), feeTokens);
                    transferAmount = amount - feeTokens;
                }
            }
        }
        super._update(from, to, transferAmount);
    }

    function liquify() internal {
        uint balance = balanceOf(address(this));
        if (balance == 0) return;
        _swap(balance, 0);
    }

    function _swap(uint amountIn, uint amountOut) internal {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();
        IERC20(address(this)).approve(address(router), type(uint).max);
        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            amountIn,
            amountOut,
            path,
            address(this),
            block.timestamp + 10
        );
        emit SwapAndLiquify(amountIn, address(this).balance);
    }

    function setNoFeeTo(address _newWallet, bool _status) external onlyAdmin {
        noTax[_newWallet] = _status;
        noFeeFor[_newWallet] = _status;
        emit SetOperationsWallet(_newWallet, _status);
    }

    function recoverAssets(address token) external onlyAdmin {
        uint amount = IERC20(token).balanceOf(address(this));
        IERC20(token).transfer(admin, amount);
        emit WithdrawTokens(token, amount);
    }

    function recoverETH() external onlyAdmin {
        uint amount = address(this).balance;
        (bool success, ) = address(admin).call{value: amount}("");
        if (!success) revert CallFailed();
        emit WithdrawETH(amount);
    }

    function setNoTax(address addy, bool changer) external onlyAdmin {
        noTax[addy] = changer;
        emit WhitelistAddress(addy, changer);
    }

    function setTaxBuy(uint _taxBuy) external onlyAdmin {
        if (_taxBuy > 100) revert("Tax cannot exceed 10%");
        TaxBuy = _taxBuy;
    }

    function setTaxSell(uint _taxSell) external onlyAdmin {
        if (_taxSell > 100) revert("Tax cannot exceed 10%");
        TaxSell = _taxSell;
    }

    function setAdmin(address _newWallet) external onlyAdmin {
        admin = _newWallet;
    }

    function DaylightSavings() external onlyAdmin {
        currentPhase = Phase.NormalTrade;
        TaxSell = 50; // 5%
        emit PhaseChange(Phase.DayLight, Phase.NormalTrade);
    }

    receive() external payable {}

    function getMaxTxAmount() public view returns (uint256) {
        return (totalSupply() * maxTxAmount) / 1000;
    }

    function getMaxWalletAmount() public view returns (uint256) {
        return (totalSupply() * maxWalletAmount) / 1000;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"address","name":"_admin","type":"address"},{"internalType":"address","name":"_router","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"CallFailed","type":"error"},{"inputs":[],"name":"CannotSetMaxTxAmountToLessThanHalfPercent","type":"error"},{"inputs":[],"name":"CannotSetMaxTxAmountToMoreThan10Percent","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"ExceedsMaxTxAmount","type":"error"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"InvalidAddress","type":"error"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"InvalidReceiver","type":"error"},{"inputs":[],"name":"NotOwnerOrOperations","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"TransferExceedsMaxTx","type":"error"},{"inputs":[],"name":"TransferExceedsMaxWallet","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"from","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"to","type":"uint256"}],"name":"MaxTxAmountChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"from","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"to","type":"uint256"}],"name":"MaxWalletSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"enum YAI.Phase","name":"from","type":"uint8"},{"indexed":false,"internalType":"enum YAI.Phase","name":"to","type":"uint8"}],"name":"PhaseChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_newWallet","type":"address"},{"indexed":false,"internalType":"bool","name":"_status","type":"bool"}],"name":"SetOperationsWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addy","type":"address"},{"indexed":false,"internalType":"bool","name":"changer","type":"bool"}],"name":"WhitelistAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"WithdrawETH","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"WithdrawTokens","type":"event"},{"inputs":[],"name":"DaylightSavings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"GreedTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TaxBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TaxSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentPhase","outputs":[{"internalType":"enum YAI.Phase","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isChaosOrc","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"noFeeFor","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"noTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"recoverAssets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"recoverETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newWallet","type":"address"}],"name":"setAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newWallet","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setNoFeeTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addy","type":"address"},{"internalType":"bool","name":"changer","type":"bool"}],"name":"setNoTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxBuy","type":"uint256"}],"name":"setTaxBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxSell","type":"uint256"}],"name":"setTaxSell","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":"value","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":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052601460065560146007556032600855610190600955610190600a556000600f60146101000a81548160ff0219169083151502179055506000600f60156101000a81548160ff021916908360018111156200006357620000626200166d565b5b02179055503480156200007557600080fd5b50604051620058563803806200585683398181016040528101906200009b9190620018cf565b8184868160039081620000af919062001bd6565b508060049081620000c1919062001bd6565b505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620001395760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040162000130919062001cce565b60405180910390fd5b6200014a81620005d760201b60201c565b5080600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620003e382620003bc6200069d60201b60201c565b600a620003ca919062001e7b565b85620003d7919062001ecc565b620006a660201b60201c565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000451573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000477919062001f17565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000501573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000527919062001f17565b6040518363ffffffff1660e01b81526004016200054692919062001f49565b6020604051808303816000875af115801562000566573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200058c919062001f17565b600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505050620022e8565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200071b5760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040162000712919062001cce565b60405180910390fd5b6200072f600083836200073360201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007a85760006040517f9cfea5830000000000000000000000000000000000000000000000000000000081526004016200079f919062001cce565b60405180910390fd5b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156200084d5750600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156200095c57600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200095b57620008b96200100f60201b60201c565b811115620008f3576040517f214d5d2400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620009036200104460201b60201c565b62000914836200107960201b60201c565b8262000921919062001f76565b11156200095a576040517f3d531c1b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b6000819050600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801562000a065750600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1562000ff657600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148062000ab65750600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1562000ef75762000acc6200100f60201b60201c565b82111562000b24578162000ae56200100f60201b60201c565b6040517f22a8406a00000000000000000000000000000000000000000000000000000000815260040162000b1b92919062001fc2565b60405180910390fd5b600060085411801562000b8457508373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b801562000bdb5750600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801562000c1457503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1562000cfd576000600181111562000c315762000c306200166d565b5b600f60159054906101000a900460ff16600181111562000c565762000c556200166d565b5b0362000cb5576001601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b60006103e86008548462000cca919062001ecc565b62000cd691906200201e565b905062000ceb853083620010c160201b60201c565b808362000cf9919062002056565b9150505b8273ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614801562000da55750600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801562000dde57503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801562000df85750600f60149054906101000a900460ff16155b1562000ef157600060095490506001600f60146101000a81548160ff02191690831515021790555062000e30620012f160201b60201c565b6000600f60146101000a81548160ff02191690831515021790555060011515601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150362000eaa57600a5490505b60006103e8828562000ebd919062001ecc565b62000ec991906200201e565b905062000ede863083620010c160201b60201c565b808462000eec919062002056565b925050505b62000ff5565b60011515601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514801562000fa657508273ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b1562000ff45760006103e8600a548462000fc1919062001ecc565b62000fcd91906200201e565b905062000fe2853083620010c160201b60201c565b808362000ff0919062002056565b9150505b5b5b62001009848483620010c160201b60201c565b50505050565b60006103e8600654620010276200132d60201b60201c565b62001033919062001ecc565b6200103f91906200201e565b905090565b60006103e86007546200105c6200132d60201b60201c565b62001068919062001ecc565b6200107491906200201e565b905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620011175780600260008282546200110a919062001f76565b92505081905550620011ed565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015620011a6578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016200119d9392919062002091565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362001238578060026000828254039250508190555062001285565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620012e49190620020ce565b60405180910390a3505050565b600062001304306200107960201b60201c565b9050600081036200131657506200132b565b620013298160006200133760201b60201c565b505b565b6000600254905090565b6000600267ffffffffffffffff811115620013575762001356620016cb565b5b604051908082528060200260200182016040528015620013865781602001602082028036833780820191505090505b5090503081600081518110620013a157620013a0620020eb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001449573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200146f919062001f17565b81600181518110620014865762001485620020eb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250503073ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016200153f9291906200211a565b6020604051808303816000875af11580156200155f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001585919062002184565b50600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac94784848430600a42620015d7919062001f76565b6040518663ffffffff1660e01b8152600401620015f995949392919062002284565b600060405180830381600087803b1580156200161457600080fd5b505af115801562001629573d6000803e3d6000fd5b505050507f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f838148683476040516200166092919062001fc2565b60405180910390a1505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200170582620016ba565b810181811067ffffffffffffffff82111715620017275762001726620016cb565b5b80604052505050565b60006200173c6200169c565b90506200174a8282620016fa565b919050565b600067ffffffffffffffff8211156200176d576200176c620016cb565b5b6200177882620016ba565b9050602081019050919050565b60005b83811015620017a557808201518184015260208101905062001788565b60008484015250505050565b6000620017c8620017c2846200174f565b62001730565b905082815260208101848484011115620017e757620017e6620016b5565b5b620017f484828562001785565b509392505050565b600082601f830112620018145762001813620016b0565b5b815162001826848260208601620017b1565b91505092915050565b6000819050919050565b62001844816200182f565b81146200185057600080fd5b50565b600081519050620018648162001839565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062001897826200186a565b9050919050565b620018a9816200188a565b8114620018b557600080fd5b50565b600081519050620018c9816200189e565b92915050565b600080600080600060a08688031215620018ee57620018ed620016a6565b5b600086015167ffffffffffffffff8111156200190f576200190e620016ab565b5b6200191d88828901620017fc565b955050602086015167ffffffffffffffff811115620019415762001940620016ab565b5b6200194f88828901620017fc565b9450506040620019628882890162001853565b93505060606200197588828901620018b8565b92505060806200198888828901620018b8565b9150509295509295909350565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620019e857607f821691505b602082108103620019fe57620019fd620019a0565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262001a687fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262001a29565b62001a74868362001a29565b95508019841693508086168417925050509392505050565b6000819050919050565b600062001ab762001ab162001aab846200182f565b62001a8c565b6200182f565b9050919050565b6000819050919050565b62001ad38362001a96565b62001aeb62001ae28262001abe565b84845462001a36565b825550505050565b600090565b62001b0262001af3565b62001b0f81848462001ac8565b505050565b5b8181101562001b375762001b2b60008262001af8565b60018101905062001b15565b5050565b601f82111562001b865762001b508162001a04565b62001b5b8462001a19565b8101602085101562001b6b578190505b62001b8362001b7a8562001a19565b83018262001b14565b50505b505050565b600082821c905092915050565b600062001bab6000198460080262001b8b565b1980831691505092915050565b600062001bc6838362001b98565b9150826002028217905092915050565b62001be18262001995565b67ffffffffffffffff81111562001bfd5762001bfc620016cb565b5b62001c098254620019cf565b62001c1682828562001b3b565b600060209050601f83116001811462001c4e576000841562001c39578287015190505b62001c45858262001bb8565b86555062001cb5565b601f19841662001c5e8662001a04565b60005b8281101562001c885784890151825560018201915060208501945060208101905062001c61565b8683101562001ca8578489015162001ca4601f89168262001b98565b8355505b6001600288020188555050505b505050505050565b62001cc8816200188a565b82525050565b600060208201905062001ce5600083018462001cbd565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562001d795780860481111562001d515762001d5062001ceb565b5b600185161562001d615780820291505b808102905062001d718562001d1a565b945062001d31565b94509492505050565b60008262001d94576001905062001e67565b8162001da4576000905062001e67565b816001811462001dbd576002811462001dc85762001dfe565b600191505062001e67565b60ff84111562001ddd5762001ddc62001ceb565b5b8360020a91508482111562001df75762001df662001ceb565b5b5062001e67565b5060208310610133831016604e8410600b841016171562001e385782820a90508381111562001e325762001e3162001ceb565b5b62001e67565b62001e47848484600162001d27565b9250905081840481111562001e615762001e6062001ceb565b5b81810290505b9392505050565b600060ff82169050919050565b600062001e88826200182f565b915062001e958362001e6e565b925062001ec47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462001d82565b905092915050565b600062001ed9826200182f565b915062001ee6836200182f565b925082820262001ef6816200182f565b9150828204841483151762001f105762001f0f62001ceb565b5b5092915050565b60006020828403121562001f305762001f2f620016a6565b5b600062001f4084828501620018b8565b91505092915050565b600060408201905062001f60600083018562001cbd565b62001f6f602083018462001cbd565b9392505050565b600062001f83826200182f565b915062001f90836200182f565b925082820190508082111562001fab5762001faa62001ceb565b5b92915050565b62001fbc816200182f565b82525050565b600060408201905062001fd9600083018562001fb1565b62001fe8602083018462001fb1565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006200202b826200182f565b915062002038836200182f565b9250826200204b576200204a62001fef565b5b828204905092915050565b600062002063826200182f565b915062002070836200182f565b92508282039050818111156200208b576200208a62001ceb565b5b92915050565b6000606082019050620020a8600083018662001cbd565b620020b7602083018562001fb1565b620020c6604083018462001fb1565b949350505050565b6000602082019050620020e5600083018462001fb1565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060408201905062002131600083018562001cbd565b62002140602083018462001fb1565b9392505050565b60008115159050919050565b6200215e8162002147565b81146200216a57600080fd5b50565b6000815190506200217e8162002153565b92915050565b6000602082840312156200219d576200219c620016a6565b5b6000620021ad848285016200216d565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b620021ed816200188a565b82525050565b6000620022018383620021e2565b60208301905092915050565b6000602082019050919050565b60006200222782620021b6565b620022338185620021c1565b93506200224083620021d2565b8060005b83811015620022775781516200225b8882620021f3565b975062002268836200220d565b92505060018101905062002244565b5085935050505092915050565b600060a0820190506200229b600083018862001fb1565b620022aa602083018762001fb1565b8181036040830152620022be81866200221a565b9050620022cf606083018562001cbd565b620022de608083018462001fb1565b9695505050505050565b61355e80620022f86000396000f3fe6080604052600436106101fd5760003560e01c8063704b6c021161010d578063a42fdb0f116100a0578063dd62ed3e1161006f578063dd62ed3e1461070c578063f2fde38b14610749578063f851a44014610772578063f887ea401461079d578063fa8ce593146107c857610204565b8063a42fdb0f14610652578063a9059cbb1461067b578063aa4bde28146106b8578063d71958b3146106e357610204565b80638c0b5e22116100dc5780638c0b5e22146105a65780638da5cb5b146105d1578063922110e5146105fc57806395d89b411461062757610204565b8063704b6c021461050057806370a0823114610529578063715018a61461056657806381720fcc1461057d57610204565b80632f507df7116101905780634a178f9a1161015f5780634a178f9a1461042d5780634beac072146104585780634c3b7fea146104815780636d8b0527146104985780636dabbb8b146104c357610204565b80632f507df714610383578063313ce567146103ac578063433805ae146103d757806349bd5a5e1461040257610204565b806309c95a1b116101cc57806309c95a1b146102b3578063151ebae6146102de57806318160ddd1461031b57806323b872dd1461034657610204565b8063055ad42e146102095780630614117a1461023457806306fdde031461024b578063095ea7b31461027657610204565b3661020457005b600080fd5b34801561021557600080fd5b5061021e610805565b60405161022b9190612b8c565b60405180910390f35b34801561024057600080fd5b50610249610818565b005b34801561025757600080fd5b506102606109f3565b60405161026d9190612c37565b60405180910390f35b34801561028257600080fd5b5061029d60048036038101906102989190612cf2565b610a85565b6040516102aa9190612d4d565b60405180910390f35b3480156102bf57600080fd5b506102c8610aa8565b6040516102d59190612d77565b60405180910390f35b3480156102ea57600080fd5b5061030560048036038101906103009190612d92565b610ad1565b6040516103129190612d4d565b60405180910390f35b34801561032757600080fd5b50610330610af1565b60405161033d9190612d77565b60405180910390f35b34801561035257600080fd5b5061036d60048036038101906103689190612dbf565b610afb565b60405161037a9190612d4d565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a59190612e3e565b610b2a565b005b3480156103b857600080fd5b506103c1610ca9565b6040516103ce9190612e9a565b60405180910390f35b3480156103e357600080fd5b506103ec610cb2565b6040516103f99190612d77565b60405180910390f35b34801561040e57600080fd5b50610417610cb8565b6040516104249190612ec4565b60405180910390f35b34801561043957600080fd5b50610442610cde565b60405161044f9190612d77565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a9190612e3e565b610ce4565b005b34801561048d57600080fd5b50610496610ea5565b005b3480156104a457600080fd5b506104ad610feb565b6040516104ba9190612d77565b60405180910390f35b3480156104cf57600080fd5b506104ea60048036038101906104e59190612d92565b611014565b6040516104f79190612d4d565b60405180910390f35b34801561050c57600080fd5b5061052760048036038101906105229190612d92565b611034565b005b34801561053557600080fd5b50610550600480360381019061054b9190612d92565b61114e565b60405161055d9190612d77565b60405180910390f35b34801561057257600080fd5b5061057b611196565b005b34801561058957600080fd5b506105a4600480360381019061059f9190612d92565b6111aa565b005b3480156105b257600080fd5b506105bb6113dc565b6040516105c89190612d77565b60405180910390f35b3480156105dd57600080fd5b506105e66113e2565b6040516105f39190612ec4565b60405180910390f35b34801561060857600080fd5b5061061161140c565b60405161061e9190612d77565b60405180910390f35b34801561063357600080fd5b5061063c611412565b6040516106499190612c37565b60405180910390f35b34801561065e57600080fd5b5061067960048036038101906106749190612edf565b6114a4565b005b34801561068757600080fd5b506106a2600480360381019061069d9190612cf2565b6115c8565b6040516106af9190612d4d565b60405180910390f35b3480156106c457600080fd5b506106cd6115eb565b6040516106da9190612d77565b60405180910390f35b3480156106ef57600080fd5b5061070a60048036038101906107059190612edf565b6115f1565b005b34801561071857600080fd5b50610733600480360381019061072e9190612f0c565b611715565b6040516107409190612d77565b60405180910390f35b34801561075557600080fd5b50610770600480360381019061076b9190612d92565b61179c565b005b34801561077e57600080fd5b50610787611822565b6040516107949190612ec4565b60405180910390f35b3480156107a957600080fd5b506107b2611848565b6040516107bf9190612fab565b60405180910390f35b3480156107d457600080fd5b506107ef60048036038101906107ea9190612d92565b61186e565b6040516107fc9190612d4d565b60405180910390f35b600f60159054906101000a900460ff1681565b61082061188e565b73ffffffffffffffffffffffffffffffffffffffff1661083e6113e2565b73ffffffffffffffffffffffffffffffffffffffff16141580156108b7575061086561188e565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b156108ee576040517f1045f14200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60004790506000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161093b90612ff7565b60006040518083038185875af1925050503d8060008114610978576040519150601f19603f3d011682016040523d82523d6000602084013e61097d565b606091505b50509050806109b8576040517f3204506f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f94effa14ea3a1ef396fa2fd829336d1597f1d76b548c26bfa2332869706638af826040516109e79190612d77565b60405180910390a15050565b606060038054610a029061303b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2e9061303b565b8015610a7b5780601f10610a5057610100808354040283529160200191610a7b565b820191906000526020600020905b815481529060010190602001808311610a5e57829003601f168201915b5050505050905090565b600080610a9061188e565b9050610a9d818585611896565b600191505092915050565b60006103e8600754610ab8610af1565b610ac2919061309b565b610acc919061310c565b905090565b600d6020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b600080610b0661188e565b9050610b138582856118a8565b610b1e85858561193c565b60019150509392505050565b610b3261188e565b73ffffffffffffffffffffffffffffffffffffffff16610b506113e2565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bc95750610b7761188e565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b15610c00576040517f1045f14200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f33e0bf3ce98fac4118d5a0a8fe49e83b6acdfdef32871c9eca20e1528d7701ba82604051610c9d9190612d4d565b60405180910390a25050565b60006012905090565b60095481565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b610cec61188e565b73ffffffffffffffffffffffffffffffffffffffff16610d0a6113e2565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d835750610d3161188e565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b15610dba576040517f1045f14200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f88b6cb060cc9fbebf4f751c0775113faa373d0f0a39d623a9596b17e481ea7498282604051610e9992919061313d565b60405180910390a15050565b610ead61188e565b73ffffffffffffffffffffffffffffffffffffffff16610ecb6113e2565b73ffffffffffffffffffffffffffffffffffffffff1614158015610f445750610ef261188e565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b15610f7b576040517f1045f14200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600f60156101000a81548160ff02191690836001811115610fa157610fa0612b15565b5b021790555060326009819055507f5e45bf0703fe855c9fa7c44122b9f47ad1075a0cc5dc8ae88903470067cba7e560006001604051610fe1929190613166565b60405180910390a1565b60006103e8600654610ffb610af1565b611005919061309b565b61100f919061310c565b905090565b60106020528060005260406000206000915054906101000a900460ff1681565b61103c61188e565b73ffffffffffffffffffffffffffffffffffffffff1661105a6113e2565b73ffffffffffffffffffffffffffffffffffffffff16141580156110d3575061108161188e565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b1561110a576040517f1045f14200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61119e611a30565b6111a86000611ab7565b565b6111b261188e565b73ffffffffffffffffffffffffffffffffffffffff166111d06113e2565b73ffffffffffffffffffffffffffffffffffffffff161415801561124957506111f761188e565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b15611280576040517f1045f14200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016112bb9190612ec4565b602060405180830381865afa1580156112d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112fc91906131a4565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b815260040161135b9291906131d1565b6020604051808303816000875af115801561137a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061139e919061320f565b507f680f2e4f4032ebf1774e8cdbaddcb1b617a5a606411c8ca96257ada338d3833c82826040516113d09291906131d1565b60405180910390a15050565b60065481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60085481565b6060600480546114219061303b565b80601f016020809104026020016040519081016040528092919081815260200182805461144d9061303b565b801561149a5780601f1061146f5761010080835404028352916020019161149a565b820191906000526020600020905b81548152906001019060200180831161147d57829003601f168201915b5050505050905090565b6114ac61188e565b73ffffffffffffffffffffffffffffffffffffffff166114ca6113e2565b73ffffffffffffffffffffffffffffffffffffffff161415801561154357506114f161188e565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b1561157a576040517f1045f14200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60648111156115be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b590613288565b60405180910390fd5b8060098190555050565b6000806115d361188e565b90506115e081858561193c565b600191505092915050565b60075481565b6115f961188e565b73ffffffffffffffffffffffffffffffffffffffff166116176113e2565b73ffffffffffffffffffffffffffffffffffffffff1614158015611690575061163e61188e565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b156116c7576040517f1045f14200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b606481111561170b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170290613288565b60405180910390fd5b8060088190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6117a4611a30565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118165760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161180d9190612ec4565b60405180910390fd5b61181f81611ab7565b50565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c6020528060005260406000206000915054906101000a900460ff1681565b600033905090565b6118a38383836001611b7d565b505050565b60006118b48484611715565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146119365781811015611926578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161191d939291906132a8565b60405180910390fd5b61193584848484036000611b7d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119ae5760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016119a59190612ec4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a205760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401611a179190612ec4565b60405180910390fd5b611a2b838383611d54565b505050565b611a3861188e565b73ffffffffffffffffffffffffffffffffffffffff16611a566113e2565b73ffffffffffffffffffffffffffffffffffffffff1614611ab557611a7961188e565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611aac9190612ec4565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611bef5760006040517fe602df05000000000000000000000000000000000000000000000000000000008152600401611be69190612ec4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c615760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401611c589190612ec4565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015611d4e578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611d459190612d77565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611dc65760006040517f9cfea583000000000000000000000000000000000000000000000000000000008152600401611dbd9190612ec4565b60405180910390fd5b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611e6a5750600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611f5b57600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611f5a57611ecc610feb565b811115611f05576040517f214d5d2400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f0d610aa8565b611f168361114e565b82611f2191906132df565b1115611f59576040517f3d531c1b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b6000819050600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156120045750600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561259957600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806120b25750600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156124aa576120bf610feb565b82111561210c57816120cf610feb565b6040517f22a8406a000000000000000000000000000000000000000000000000000000008152600401612103929190613313565b60405180910390fd5b600060085411801561216b57508373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b80156121c15750600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156121f957503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b156122cc576000600181111561221257612211612b15565b5b600f60159054906101000a900460ff16600181111561223457612233612b15565b5b03612292576001601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b60006103e8600854846122a5919061309b565b6122af919061310c565b90506122bc8530836125aa565b80836122c8919061333c565b9150505b8273ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480156123735750600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156123ab57503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156123c45750600f60149054906101000a900460ff16155b156124a557600060095490506001600f60146101000a81548160ff0219169083151502179055506123f36127cf565b6000600f60146101000a81548160ff02191690831515021790555060011515601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150361246c57600a5490505b60006103e8828561247d919061309b565b612487919061310c565b90506124948630836125aa565b80846124a0919061333c565b925050505b612598565b60011515601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514801561255857508273ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b156125975760006103e8600a5484612570919061309b565b61257a919061310c565b90506125878530836125aa565b8083612593919061333c565b9150505b5b5b6125a48484836125aa565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036125fc5780600260008282546125f091906132df565b925050819055506126cf565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612688578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161267f939291906132a8565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127185780600260008282540392505081905550612765565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516127c29190612d77565b60405180910390a3505050565b60006127da3061114e565b9050600081036127ea57506127f7565b6127f58160006127f9565b505b565b6000600267ffffffffffffffff81111561281657612815613370565b5b6040519080825280602002602001820160405280156128445781602001602082028036833780820191505090505b509050308160008151811061285c5761285b61339f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612903573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061292791906133e3565b8160018151811061293b5761293a61339f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250503073ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016129f29291906131d1565b6020604051808303816000875af1158015612a11573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a35919061320f565b50600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac94784848430600a42612a8591906132df565b6040518663ffffffff1660e01b8152600401612aa59594939291906134ce565b600060405180830381600087803b158015612abf57600080fd5b505af1158015612ad3573d6000803e3d6000fd5b505050507f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f83814868347604051612b08929190613313565b60405180910390a1505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60028110612b5557612b54612b15565b5b50565b6000819050612b6682612b44565b919050565b6000612b7682612b58565b9050919050565b612b8681612b6b565b82525050565b6000602082019050612ba16000830184612b7d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612be1578082015181840152602081019050612bc6565b60008484015250505050565b6000601f19601f8301169050919050565b6000612c0982612ba7565b612c138185612bb2565b9350612c23818560208601612bc3565b612c2c81612bed565b840191505092915050565b60006020820190508181036000830152612c518184612bfe565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c8982612c5e565b9050919050565b612c9981612c7e565b8114612ca457600080fd5b50565b600081359050612cb681612c90565b92915050565b6000819050919050565b612ccf81612cbc565b8114612cda57600080fd5b50565b600081359050612cec81612cc6565b92915050565b60008060408385031215612d0957612d08612c59565b5b6000612d1785828601612ca7565b9250506020612d2885828601612cdd565b9150509250929050565b60008115159050919050565b612d4781612d32565b82525050565b6000602082019050612d626000830184612d3e565b92915050565b612d7181612cbc565b82525050565b6000602082019050612d8c6000830184612d68565b92915050565b600060208284031215612da857612da7612c59565b5b6000612db684828501612ca7565b91505092915050565b600080600060608486031215612dd857612dd7612c59565b5b6000612de686828701612ca7565b9350506020612df786828701612ca7565b9250506040612e0886828701612cdd565b9150509250925092565b612e1b81612d32565b8114612e2657600080fd5b50565b600081359050612e3881612e12565b92915050565b60008060408385031215612e5557612e54612c59565b5b6000612e6385828601612ca7565b9250506020612e7485828601612e29565b9150509250929050565b600060ff82169050919050565b612e9481612e7e565b82525050565b6000602082019050612eaf6000830184612e8b565b92915050565b612ebe81612c7e565b82525050565b6000602082019050612ed96000830184612eb5565b92915050565b600060208284031215612ef557612ef4612c59565b5b6000612f0384828501612cdd565b91505092915050565b60008060408385031215612f2357612f22612c59565b5b6000612f3185828601612ca7565b9250506020612f4285828601612ca7565b9150509250929050565b6000819050919050565b6000612f71612f6c612f6784612c5e565b612f4c565b612c5e565b9050919050565b6000612f8382612f56565b9050919050565b6000612f9582612f78565b9050919050565b612fa581612f8a565b82525050565b6000602082019050612fc06000830184612f9c565b92915050565b600081905092915050565b50565b6000612fe1600083612fc6565b9150612fec82612fd1565b600082019050919050565b600061300282612fd4565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061305357607f821691505b6020821081036130665761306561300c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130a682612cbc565b91506130b183612cbc565b92508282026130bf81612cbc565b915082820484148315176130d6576130d561306c565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061311782612cbc565b915061312283612cbc565b925082613132576131316130dd565b5b828204905092915050565b60006040820190506131526000830185612eb5565b61315f6020830184612d3e565b9392505050565b600060408201905061317b6000830185612b7d565b6131886020830184612b7d565b9392505050565b60008151905061319e81612cc6565b92915050565b6000602082840312156131ba576131b9612c59565b5b60006131c88482850161318f565b91505092915050565b60006040820190506131e66000830185612eb5565b6131f36020830184612d68565b9392505050565b60008151905061320981612e12565b92915050565b60006020828403121561322557613224612c59565b5b6000613233848285016131fa565b91505092915050565b7f5461782063616e6e6f7420657863656564203130250000000000000000000000600082015250565b6000613272601583612bb2565b915061327d8261323c565b602082019050919050565b600060208201905081810360008301526132a181613265565b9050919050565b60006060820190506132bd6000830186612eb5565b6132ca6020830185612d68565b6132d76040830184612d68565b949350505050565b60006132ea82612cbc565b91506132f583612cbc565b925082820190508082111561330d5761330c61306c565b5b92915050565b60006040820190506133286000830185612d68565b6133356020830184612d68565b9392505050565b600061334782612cbc565b915061335283612cbc565b925082820390508181111561336a5761336961306c565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506133dd81612c90565b92915050565b6000602082840312156133f9576133f8612c59565b5b6000613407848285016133ce565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61344581612c7e565b82525050565b6000613457838361343c565b60208301905092915050565b6000602082019050919050565b600061347b82613410565b613485818561341b565b93506134908361342c565b8060005b838110156134c15781516134a8888261344b565b97506134b383613463565b925050600181019050613494565b5085935050505092915050565b600060a0820190506134e36000830188612d68565b6134f06020830187612d68565b81810360408301526135028186613470565b90506135116060830185612eb5565b61351e6080830184612d68565b969550505050505056fea26469706673582212202c1b8c17fcf1d16d34ead7a8084f1637db0fc73096cb89c0f1f5b426a2e938a464736f6c6343000814003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000005f5e1000000000000000000000000008d68034a05d9158d35f402b326e3de223346fb200000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000000000000000000000000000000000000000000359414900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002c5b8000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101fd5760003560e01c8063704b6c021161010d578063a42fdb0f116100a0578063dd62ed3e1161006f578063dd62ed3e1461070c578063f2fde38b14610749578063f851a44014610772578063f887ea401461079d578063fa8ce593146107c857610204565b8063a42fdb0f14610652578063a9059cbb1461067b578063aa4bde28146106b8578063d71958b3146106e357610204565b80638c0b5e22116100dc5780638c0b5e22146105a65780638da5cb5b146105d1578063922110e5146105fc57806395d89b411461062757610204565b8063704b6c021461050057806370a0823114610529578063715018a61461056657806381720fcc1461057d57610204565b80632f507df7116101905780634a178f9a1161015f5780634a178f9a1461042d5780634beac072146104585780634c3b7fea146104815780636d8b0527146104985780636dabbb8b146104c357610204565b80632f507df714610383578063313ce567146103ac578063433805ae146103d757806349bd5a5e1461040257610204565b806309c95a1b116101cc57806309c95a1b146102b3578063151ebae6146102de57806318160ddd1461031b57806323b872dd1461034657610204565b8063055ad42e146102095780630614117a1461023457806306fdde031461024b578063095ea7b31461027657610204565b3661020457005b600080fd5b34801561021557600080fd5b5061021e610805565b60405161022b9190612b8c565b60405180910390f35b34801561024057600080fd5b50610249610818565b005b34801561025757600080fd5b506102606109f3565b60405161026d9190612c37565b60405180910390f35b34801561028257600080fd5b5061029d60048036038101906102989190612cf2565b610a85565b6040516102aa9190612d4d565b60405180910390f35b3480156102bf57600080fd5b506102c8610aa8565b6040516102d59190612d77565b60405180910390f35b3480156102ea57600080fd5b5061030560048036038101906103009190612d92565b610ad1565b6040516103129190612d4d565b60405180910390f35b34801561032757600080fd5b50610330610af1565b60405161033d9190612d77565b60405180910390f35b34801561035257600080fd5b5061036d60048036038101906103689190612dbf565b610afb565b60405161037a9190612d4d565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a59190612e3e565b610b2a565b005b3480156103b857600080fd5b506103c1610ca9565b6040516103ce9190612e9a565b60405180910390f35b3480156103e357600080fd5b506103ec610cb2565b6040516103f99190612d77565b60405180910390f35b34801561040e57600080fd5b50610417610cb8565b6040516104249190612ec4565b60405180910390f35b34801561043957600080fd5b50610442610cde565b60405161044f9190612d77565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a9190612e3e565b610ce4565b005b34801561048d57600080fd5b50610496610ea5565b005b3480156104a457600080fd5b506104ad610feb565b6040516104ba9190612d77565b60405180910390f35b3480156104cf57600080fd5b506104ea60048036038101906104e59190612d92565b611014565b6040516104f79190612d4d565b60405180910390f35b34801561050c57600080fd5b5061052760048036038101906105229190612d92565b611034565b005b34801561053557600080fd5b50610550600480360381019061054b9190612d92565b61114e565b60405161055d9190612d77565b60405180910390f35b34801561057257600080fd5b5061057b611196565b005b34801561058957600080fd5b506105a4600480360381019061059f9190612d92565b6111aa565b005b3480156105b257600080fd5b506105bb6113dc565b6040516105c89190612d77565b60405180910390f35b3480156105dd57600080fd5b506105e66113e2565b6040516105f39190612ec4565b60405180910390f35b34801561060857600080fd5b5061061161140c565b60405161061e9190612d77565b60405180910390f35b34801561063357600080fd5b5061063c611412565b6040516106499190612c37565b60405180910390f35b34801561065e57600080fd5b5061067960048036038101906106749190612edf565b6114a4565b005b34801561068757600080fd5b506106a2600480360381019061069d9190612cf2565b6115c8565b6040516106af9190612d4d565b60405180910390f35b3480156106c457600080fd5b506106cd6115eb565b6040516106da9190612d77565b60405180910390f35b3480156106ef57600080fd5b5061070a60048036038101906107059190612edf565b6115f1565b005b34801561071857600080fd5b50610733600480360381019061072e9190612f0c565b611715565b6040516107409190612d77565b60405180910390f35b34801561075557600080fd5b50610770600480360381019061076b9190612d92565b61179c565b005b34801561077e57600080fd5b50610787611822565b6040516107949190612ec4565b60405180910390f35b3480156107a957600080fd5b506107b2611848565b6040516107bf9190612fab565b60405180910390f35b3480156107d457600080fd5b506107ef60048036038101906107ea9190612d92565b61186e565b6040516107fc9190612d4d565b60405180910390f35b600f60159054906101000a900460ff1681565b61082061188e565b73ffffffffffffffffffffffffffffffffffffffff1661083e6113e2565b73ffffffffffffffffffffffffffffffffffffffff16141580156108b7575061086561188e565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b156108ee576040517f1045f14200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60004790506000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161093b90612ff7565b60006040518083038185875af1925050503d8060008114610978576040519150601f19603f3d011682016040523d82523d6000602084013e61097d565b606091505b50509050806109b8576040517f3204506f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f94effa14ea3a1ef396fa2fd829336d1597f1d76b548c26bfa2332869706638af826040516109e79190612d77565b60405180910390a15050565b606060038054610a029061303b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2e9061303b565b8015610a7b5780601f10610a5057610100808354040283529160200191610a7b565b820191906000526020600020905b815481529060010190602001808311610a5e57829003601f168201915b5050505050905090565b600080610a9061188e565b9050610a9d818585611896565b600191505092915050565b60006103e8600754610ab8610af1565b610ac2919061309b565b610acc919061310c565b905090565b600d6020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b600080610b0661188e565b9050610b138582856118a8565b610b1e85858561193c565b60019150509392505050565b610b3261188e565b73ffffffffffffffffffffffffffffffffffffffff16610b506113e2565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bc95750610b7761188e565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b15610c00576040517f1045f14200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f33e0bf3ce98fac4118d5a0a8fe49e83b6acdfdef32871c9eca20e1528d7701ba82604051610c9d9190612d4d565b60405180910390a25050565b60006012905090565b60095481565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b610cec61188e565b73ffffffffffffffffffffffffffffffffffffffff16610d0a6113e2565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d835750610d3161188e565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b15610dba576040517f1045f14200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f88b6cb060cc9fbebf4f751c0775113faa373d0f0a39d623a9596b17e481ea7498282604051610e9992919061313d565b60405180910390a15050565b610ead61188e565b73ffffffffffffffffffffffffffffffffffffffff16610ecb6113e2565b73ffffffffffffffffffffffffffffffffffffffff1614158015610f445750610ef261188e565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b15610f7b576040517f1045f14200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600f60156101000a81548160ff02191690836001811115610fa157610fa0612b15565b5b021790555060326009819055507f5e45bf0703fe855c9fa7c44122b9f47ad1075a0cc5dc8ae88903470067cba7e560006001604051610fe1929190613166565b60405180910390a1565b60006103e8600654610ffb610af1565b611005919061309b565b61100f919061310c565b905090565b60106020528060005260406000206000915054906101000a900460ff1681565b61103c61188e565b73ffffffffffffffffffffffffffffffffffffffff1661105a6113e2565b73ffffffffffffffffffffffffffffffffffffffff16141580156110d3575061108161188e565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b1561110a576040517f1045f14200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61119e611a30565b6111a86000611ab7565b565b6111b261188e565b73ffffffffffffffffffffffffffffffffffffffff166111d06113e2565b73ffffffffffffffffffffffffffffffffffffffff161415801561124957506111f761188e565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b15611280576040517f1045f14200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016112bb9190612ec4565b602060405180830381865afa1580156112d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112fc91906131a4565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b815260040161135b9291906131d1565b6020604051808303816000875af115801561137a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061139e919061320f565b507f680f2e4f4032ebf1774e8cdbaddcb1b617a5a606411c8ca96257ada338d3833c82826040516113d09291906131d1565b60405180910390a15050565b60065481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60085481565b6060600480546114219061303b565b80601f016020809104026020016040519081016040528092919081815260200182805461144d9061303b565b801561149a5780601f1061146f5761010080835404028352916020019161149a565b820191906000526020600020905b81548152906001019060200180831161147d57829003601f168201915b5050505050905090565b6114ac61188e565b73ffffffffffffffffffffffffffffffffffffffff166114ca6113e2565b73ffffffffffffffffffffffffffffffffffffffff161415801561154357506114f161188e565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b1561157a576040517f1045f14200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60648111156115be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b590613288565b60405180910390fd5b8060098190555050565b6000806115d361188e565b90506115e081858561193c565b600191505092915050565b60075481565b6115f961188e565b73ffffffffffffffffffffffffffffffffffffffff166116176113e2565b73ffffffffffffffffffffffffffffffffffffffff1614158015611690575061163e61188e565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b156116c7576040517f1045f14200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b606481111561170b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170290613288565b60405180910390fd5b8060088190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6117a4611a30565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118165760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161180d9190612ec4565b60405180910390fd5b61181f81611ab7565b50565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c6020528060005260406000206000915054906101000a900460ff1681565b600033905090565b6118a38383836001611b7d565b505050565b60006118b48484611715565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146119365781811015611926578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161191d939291906132a8565b60405180910390fd5b61193584848484036000611b7d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119ae5760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016119a59190612ec4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a205760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401611a179190612ec4565b60405180910390fd5b611a2b838383611d54565b505050565b611a3861188e565b73ffffffffffffffffffffffffffffffffffffffff16611a566113e2565b73ffffffffffffffffffffffffffffffffffffffff1614611ab557611a7961188e565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611aac9190612ec4565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611bef5760006040517fe602df05000000000000000000000000000000000000000000000000000000008152600401611be69190612ec4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c615760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401611c589190612ec4565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015611d4e578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611d459190612d77565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611dc65760006040517f9cfea583000000000000000000000000000000000000000000000000000000008152600401611dbd9190612ec4565b60405180910390fd5b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611e6a5750600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611f5b57600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611f5a57611ecc610feb565b811115611f05576040517f214d5d2400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f0d610aa8565b611f168361114e565b82611f2191906132df565b1115611f59576040517f3d531c1b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b6000819050600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156120045750600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561259957600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806120b25750600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156124aa576120bf610feb565b82111561210c57816120cf610feb565b6040517f22a8406a000000000000000000000000000000000000000000000000000000008152600401612103929190613313565b60405180910390fd5b600060085411801561216b57508373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b80156121c15750600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156121f957503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b156122cc576000600181111561221257612211612b15565b5b600f60159054906101000a900460ff16600181111561223457612233612b15565b5b03612292576001601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b60006103e8600854846122a5919061309b565b6122af919061310c565b90506122bc8530836125aa565b80836122c8919061333c565b9150505b8273ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480156123735750600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156123ab57503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156123c45750600f60149054906101000a900460ff16155b156124a557600060095490506001600f60146101000a81548160ff0219169083151502179055506123f36127cf565b6000600f60146101000a81548160ff02191690831515021790555060011515601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150361246c57600a5490505b60006103e8828561247d919061309b565b612487919061310c565b90506124948630836125aa565b80846124a0919061333c565b925050505b612598565b60011515601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514801561255857508273ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b156125975760006103e8600a5484612570919061309b565b61257a919061310c565b90506125878530836125aa565b8083612593919061333c565b9150505b5b5b6125a48484836125aa565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036125fc5780600260008282546125f091906132df565b925050819055506126cf565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612688578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161267f939291906132a8565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127185780600260008282540392505081905550612765565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516127c29190612d77565b60405180910390a3505050565b60006127da3061114e565b9050600081036127ea57506127f7565b6127f58160006127f9565b505b565b6000600267ffffffffffffffff81111561281657612815613370565b5b6040519080825280602002602001820160405280156128445781602001602082028036833780820191505090505b509050308160008151811061285c5761285b61339f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612903573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061292791906133e3565b8160018151811061293b5761293a61339f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250503073ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016129f29291906131d1565b6020604051808303816000875af1158015612a11573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a35919061320f565b50600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac94784848430600a42612a8591906132df565b6040518663ffffffff1660e01b8152600401612aa59594939291906134ce565b600060405180830381600087803b158015612abf57600080fd5b505af1158015612ad3573d6000803e3d6000fd5b505050507f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f83814868347604051612b08929190613313565b60405180910390a1505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60028110612b5557612b54612b15565b5b50565b6000819050612b6682612b44565b919050565b6000612b7682612b58565b9050919050565b612b8681612b6b565b82525050565b6000602082019050612ba16000830184612b7d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612be1578082015181840152602081019050612bc6565b60008484015250505050565b6000601f19601f8301169050919050565b6000612c0982612ba7565b612c138185612bb2565b9350612c23818560208601612bc3565b612c2c81612bed565b840191505092915050565b60006020820190508181036000830152612c518184612bfe565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c8982612c5e565b9050919050565b612c9981612c7e565b8114612ca457600080fd5b50565b600081359050612cb681612c90565b92915050565b6000819050919050565b612ccf81612cbc565b8114612cda57600080fd5b50565b600081359050612cec81612cc6565b92915050565b60008060408385031215612d0957612d08612c59565b5b6000612d1785828601612ca7565b9250506020612d2885828601612cdd565b9150509250929050565b60008115159050919050565b612d4781612d32565b82525050565b6000602082019050612d626000830184612d3e565b92915050565b612d7181612cbc565b82525050565b6000602082019050612d8c6000830184612d68565b92915050565b600060208284031215612da857612da7612c59565b5b6000612db684828501612ca7565b91505092915050565b600080600060608486031215612dd857612dd7612c59565b5b6000612de686828701612ca7565b9350506020612df786828701612ca7565b9250506040612e0886828701612cdd565b9150509250925092565b612e1b81612d32565b8114612e2657600080fd5b50565b600081359050612e3881612e12565b92915050565b60008060408385031215612e5557612e54612c59565b5b6000612e6385828601612ca7565b9250506020612e7485828601612e29565b9150509250929050565b600060ff82169050919050565b612e9481612e7e565b82525050565b6000602082019050612eaf6000830184612e8b565b92915050565b612ebe81612c7e565b82525050565b6000602082019050612ed96000830184612eb5565b92915050565b600060208284031215612ef557612ef4612c59565b5b6000612f0384828501612cdd565b91505092915050565b60008060408385031215612f2357612f22612c59565b5b6000612f3185828601612ca7565b9250506020612f4285828601612ca7565b9150509250929050565b6000819050919050565b6000612f71612f6c612f6784612c5e565b612f4c565b612c5e565b9050919050565b6000612f8382612f56565b9050919050565b6000612f9582612f78565b9050919050565b612fa581612f8a565b82525050565b6000602082019050612fc06000830184612f9c565b92915050565b600081905092915050565b50565b6000612fe1600083612fc6565b9150612fec82612fd1565b600082019050919050565b600061300282612fd4565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061305357607f821691505b6020821081036130665761306561300c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130a682612cbc565b91506130b183612cbc565b92508282026130bf81612cbc565b915082820484148315176130d6576130d561306c565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061311782612cbc565b915061312283612cbc565b925082613132576131316130dd565b5b828204905092915050565b60006040820190506131526000830185612eb5565b61315f6020830184612d3e565b9392505050565b600060408201905061317b6000830185612b7d565b6131886020830184612b7d565b9392505050565b60008151905061319e81612cc6565b92915050565b6000602082840312156131ba576131b9612c59565b5b60006131c88482850161318f565b91505092915050565b60006040820190506131e66000830185612eb5565b6131f36020830184612d68565b9392505050565b60008151905061320981612e12565b92915050565b60006020828403121561322557613224612c59565b5b6000613233848285016131fa565b91505092915050565b7f5461782063616e6e6f7420657863656564203130250000000000000000000000600082015250565b6000613272601583612bb2565b915061327d8261323c565b602082019050919050565b600060208201905081810360008301526132a181613265565b9050919050565b60006060820190506132bd6000830186612eb5565b6132ca6020830185612d68565b6132d76040830184612d68565b949350505050565b60006132ea82612cbc565b91506132f583612cbc565b925082820190508082111561330d5761330c61306c565b5b92915050565b60006040820190506133286000830185612d68565b6133356020830184612d68565b9392505050565b600061334782612cbc565b915061335283612cbc565b925082820390508181111561336a5761336961306c565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506133dd81612c90565b92915050565b6000602082840312156133f9576133f8612c59565b5b6000613407848285016133ce565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61344581612c7e565b82525050565b6000613457838361343c565b60208301905092915050565b6000602082019050919050565b600061347b82613410565b613485818561341b565b93506134908361342c565b8060005b838110156134c15781516134a8888261344b565b97506134b383613463565b925050600181019050613494565b5085935050505092915050565b600060a0820190506134e36000830188612d68565b6134f06020830187612d68565b81810360408301526135028186613470565b90506135116060830185612eb5565b61351e6080830184612d68565b969550505050505056fea26469706673582212202c1b8c17fcf1d16d34ead7a8084f1637db0fc73096cb89c0f1f5b426a2e938a464736f6c63430008140033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000005f5e1000000000000000000000000008d68034a05d9158d35f402b326e3de223346fb200000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000000000000000000000000000000000000000000359414900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002c5b8000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _symbol (string): YAI
Arg [1] : _name (string): Ÿ
Arg [2] : _totalSupply (uint256): 100000000
Arg [3] : _admin (address): 0x8D68034a05D9158D35f402B326E3de223346fB20
Arg [4] : _router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000005f5e100
Arg [3] : 0000000000000000000000008d68034a05d9158d35f402b326e3de223346fb20
Arg [4] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 5941490000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [8] : c5b8000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

37548:7241:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38099:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43472:242;;;;;;;;;;;;;:::i;:::-;;16912:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19205:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44660:126;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37873:37;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18014:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19973:249;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43722:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17865:84;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37718:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37956:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37757:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43019:216;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44301:188;;;;;;;;;;;;;:::i;:::-;;44534:118;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38148:42;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44199:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18176:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3571:103;;;;;;;;;;;;;:::i;:::-;;43243:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37602:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2896:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37682:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17122:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44038:153;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18499:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37637:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43882:148;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18744:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3829:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37799:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37917:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37826:40;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38099:42;;;;;;;;;;;;;:::o;43472:242::-;39061:12;:10;:12::i;:::-;39050:23;;:7;:5;:7::i;:::-;:23;;;;:48;;;;;39086:12;:10;:12::i;:::-;39077:21;;:5;;;;;;;;;;;:21;;;;39050:48;39046:110;;;39122:22;;;;;;;;;;;;;;39046:110;43524:11:::1;43538:21;43524:35;;43571:12;43597:5;;;;;;;;;;;43589:19;;43616:6;43589:38;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43570:57;;;43643:7;43638:33;;43659:12;;;;;;;;;;;;;;43638:33;43687:19;43699:6;43687:19;;;;;;:::i;:::-;;;;;;;;43513:201;;43472:242::o:0;16912:91::-;16957:13;16990:5;16983:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16912:91;:::o;19205:190::-;19278:4;19295:13;19311:12;:10;:12::i;:::-;19295:28;;19334:31;19343:5;19350:7;19359:5;19334:8;:31::i;:::-;19383:4;19376:11;;;19205:190;;;;:::o;44660:126::-;44711:7;44774:4;44755:15;;44739:13;:11;:13::i;:::-;:31;;;;:::i;:::-;44738:40;;;;:::i;:::-;44731:47;;44660:126;:::o;37873:37::-;;;;;;;;;;;;;;;;;;;;;;:::o;18014:99::-;18066:7;18093:12;;18086:19;;18014:99;:::o;19973:249::-;20060:4;20077:15;20095:12;:10;:12::i;:::-;20077:30;;20118:37;20134:4;20140:7;20149:5;20118:15;:37::i;:::-;20166:26;20176:4;20182:2;20186:5;20166:9;:26::i;:::-;20210:4;20203:11;;;19973:249;;;;;:::o;43722:152::-;39061:12;:10;:12::i;:::-;39050:23;;:7;:5;:7::i;:::-;:23;;;;:48;;;;;39086:12;:10;:12::i;:::-;39077:21;;:5;;;;;;;;;;;:21;;;;39050:48;39046:110;;;39122:22;;;;;;;;;;;;;;39046:110;43812:7:::1;43798:5;:11;43804:4;43798:11;;;;;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;43852:4;43835:31;;;43858:7;43835:31;;;;;;:::i;:::-;;;;;;;;43722:152:::0;;:::o;17865:84::-;17914:5;17939:2;17932:9;;17865:84;:::o;37718:25::-;;;;:::o;37956:28::-;;;;;;;;;;;;;:::o;37757:26::-;;;;:::o;43019:216::-;39061:12;:10;:12::i;:::-;39050:23;;:7;:5;:7::i;:::-;:23;;;;:48;;;;;39086:12;:10;:12::i;:::-;39077:21;;:5;;;;;;;;;;;:21;;;;39050:48;39046:110;;;39122:22;;;;;;;;;;;;;;39046:110;43123:7:::1;43103:5;:17;43109:10;43103:17;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;43164:7;43141:8;:20;43150:10;43141:20;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;43187:40;43207:10;43219:7;43187:40;;;;;;;:::i;:::-;;;;;;;;43019:216:::0;;:::o;44301:188::-;39061:12;:10;:12::i;:::-;39050:23;;:7;:5;:7::i;:::-;:23;;;;:48;;;;;39086:12;:10;:12::i;:::-;39077:21;;:5;;;;;;;;;;;:21;;;;39050:48;39046:110;;;39122:22;;;;;;;;;;;;;;39046:110;44373:17:::1;44358:12;;:32;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;44411:2;44401:7;:12;;;;44435:46;44447:14;44463:17;44435:46;;;;;;;:::i;:::-;;;;;;;;44301:188::o:0;44534:118::-;44581:7;44640:4;44625:11;;44609:13;:11;:13::i;:::-;:27;;;;:::i;:::-;44608:36;;;;:::i;:::-;44601:43;;44534:118;:::o;38148:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;44199:94::-;39061:12;:10;:12::i;:::-;39050:23;;:7;:5;:7::i;:::-;:23;;;;:48;;;;;39086:12;:10;:12::i;:::-;39077:21;;:5;;;;;;;;;;;:21;;;;39050:48;39046:110;;;39122:22;;;;;;;;;;;;;;39046:110;44275:10:::1;44267:5;;:18;;;;;;;;;;;;;;;;;;44199:94:::0;:::o;18176:118::-;18241:7;18268:9;:18;18278:7;18268:18;;;;;;;;;;;;;;;;18261:25;;18176:118;;;:::o;3571:103::-;2782:13;:11;:13::i;:::-;3636:30:::1;3663:1;3636:18;:30::i;:::-;3571:103::o:0;43243:221::-;39061:12;:10;:12::i;:::-;39050:23;;:7;:5;:7::i;:::-;:23;;;;:48;;;;;39086:12;:10;:12::i;:::-;39077:21;;:5;;;;;;;;;;;:21;;;;39050:48;39046:110;;;39122:22;;;;;;;;;;;;;;39046:110;43311:11:::1;43332:5;43325:23;;;43357:4;43325:38;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43311:52;;43381:5;43374:22;;;43397:5;;;;;;;;;;;43404:6;43374:37;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;43427:29;43442:5;43449:6;43427:29;;;;;;;:::i;:::-;;;;;;;;43300:164;43243:221:::0;:::o;37602:28::-;;;;:::o;2896:87::-;2942:7;2969:6;;;;;;;;;;;2962:13;;2896:87;:::o;37682:23::-;;;;:::o;17122:95::-;17169:13;17202:7;17195:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17122:95;:::o;44038:153::-;39061:12;:10;:12::i;:::-;39050:23;;:7;:5;:7::i;:::-;:23;;;;:48;;;;;39086:12;:10;:12::i;:::-;39077:21;;:5;;;;;;;;;;;:21;;;;39050:48;39046:110;;;39122:22;;;;;;;;;;;;;;39046:110;44118:3:::1;44107:8;:14;44103:51;;;44123:31;;;;;;;;;;:::i;:::-;;;;;;;;44103:51;44175:8;44165:7;:18;;;;44038:153:::0;:::o;18499:182::-;18568:4;18585:13;18601:12;:10;:12::i;:::-;18585:28;;18624:27;18634:5;18641:2;18645:5;18624:9;:27::i;:::-;18669:4;18662:11;;;18499:182;;;;:::o;37637:32::-;;;;:::o;43882:148::-;39061:12;:10;:12::i;:::-;39050:23;;:7;:5;:7::i;:::-;:23;;;;:48;;;;;39086:12;:10;:12::i;:::-;39077:21;;:5;;;;;;;;;;;:21;;;;39050:48;39046:110;;;39122:22;;;;;;;;;;;;;;39046:110;43959:3:::1;43949:7;:13;43945:50;;;43964:31;;;;;;;;;;:::i;:::-;;;;;;;;43945:50;44015:7;44006:6;:16;;;;43882:148:::0;:::o;18744:142::-;18824:7;18851:11;:18;18863:5;18851:18;;;;;;;;;;;;;;;:27;18870:7;18851:27;;;;;;;;;;;;;;;;18844:34;;18744:142;;;;:::o;3829:220::-;2782:13;:11;:13::i;:::-;3934:1:::1;3914:22;;:8;:22;;::::0;3910:93:::1;;3988:1;3960:31;;;;;;;;;;;:::i;:::-;;;;;;;;3910:93;4013:28;4032:8;4013:18;:28::i;:::-;3829:220:::0;:::o;37799:20::-;;;;;;;;;;;;;:::o;37917:32::-;;;;;;;;;;;;;:::o;37826:40::-;;;;;;;;;;;;;;;;;;;;;;:::o;850:98::-;903:7;930:10;923:17;;850:98;:::o;24032:130::-;24117:37;24126:5;24133:7;24142:5;24149:4;24117:8;:37::i;:::-;24032:130;;;:::o;25748:487::-;25848:24;25875:25;25885:5;25892:7;25875:9;:25::i;:::-;25848:52;;25935:17;25915:16;:37;25911:317;;25992:5;25973:16;:24;25969:132;;;26052:7;26061:16;26079:5;26025:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;25969:132;26144:57;26153:5;26160:7;26188:5;26169:16;:24;26195:5;26144:8;:57::i;:::-;25911:317;25837:398;25748:487;;;:::o;20607:308::-;20707:1;20691:18;;:4;:18;;;20687:88;;20760:1;20733:30;;;;;;;;;;;:::i;:::-;;;;;;;;20687:88;20803:1;20789:16;;:2;:16;;;20785:88;;20858:1;20829:32;;;;;;;;;;;:::i;:::-;;;;;;;;20785:88;20883:24;20891:4;20897:2;20901:5;20883:7;:24::i;:::-;20607:308;;;:::o;3061:166::-;3132:12;:10;:12::i;:::-;3121:23;;:7;:5;:7::i;:::-;:23;;;3117:103;;3195:12;:10;:12::i;:::-;3168:40;;;;;;;;;;;:::i;:::-;;;;;;;;3117:103;3061:166::o;4209:191::-;4283:16;4302:6;;;;;;;;;;;4283:25;;4328:8;4319:6;;:17;;;;;;;;;;;;;;;;;;4383:8;4352:40;;4373:8;4352:40;;;;;;;;;;;;4272:128;4209:191;:::o;25013:443::-;25143:1;25126:19;;:5;:19;;;25122:91;;25198:1;25169:32;;;;;;;;;;;:::i;:::-;;;;;;;;25122:91;25246:1;25227:21;;:7;:21;;;25223:92;;25300:1;25272:31;;;;;;;;;;;:::i;:::-;;;;;;;;25223:92;25355:5;25325:11;:18;25337:5;25325:18;;;;;;;;;;;;;;;:27;25344:7;25325:27;;;;;;;;;;;;;;;:35;;;;25375:9;25371:78;;;25422:7;25406:31;;25415:5;25406:31;;;25431:5;25406:31;;;;;;:::i;:::-;;;;;;;;25371:78;25013:443;;;;:::o;39859:2461::-;39962:1;39948:16;;:2;:16;;;39944:83;;40012:1;39988:27;;;;;;;;;;;:::i;:::-;;;;;;;;39944:83;40044:5;:11;40050:4;40044:11;;;;;;;;;;;;;;;;;;;;;;;;;40043:12;:26;;;;;40060:5;:9;40066:2;40060:9;;;;;;;;;;;;;;;;;;;;;;;;;40059:10;40043:26;40039:369;;;40096:13;;;;;;;;;;;40090:19;;:2;:19;;;40086:311;;40143:16;:14;:16::i;:::-;40134:6;:25;40130:103;;;40191:22;;;;;;;;;;;;;;40130:103;40284:20;:18;:20::i;:::-;40267:13;40277:2;40267:9;:13::i;:::-;40258:6;:22;;;;:::i;:::-;40257:47;40253:129;;;40336:26;;;;;;;;;;;;;;40253:129;40086:311;40039:369;40420:19;40442:6;40420:28;;40464:8;:14;40473:4;40464:14;;;;;;;;;;;;;;;;;;;;;;;;;40463:15;:32;;;;;40483:8;:12;40492:2;40483:12;;;;;;;;;;;;;;;;;;;;;;;;;40482:13;40463:32;40459:1804;;;40525:13;;;;;;;;;;;40517:21;;:4;:21;;;:44;;;;40548:13;;;;;;;;;;;40542:19;;:2;:19;;;40517:44;40512:1740;;;40596:16;:14;:16::i;:::-;40587:6;:25;40583:125;;;40663:6;40671:16;:14;:16::i;:::-;40644:44;;;;;;;;;;;;:::i;:::-;;;;;;;;40583:125;40787:1;40778:6;;:10;:56;;;;;40830:4;40813:21;;:13;;;;;;;;;;;:21;;;40778:56;:91;;;;;40860:5;:9;40866:2;40860:9;;;;;;;;;;;;;;;;;;;;;;;;;40859:10;40778:91;:137;;;;;40910:4;40894:21;;:4;:21;;;;40778:137;40752:499;;;40978:14;40962:30;;;;;;;;:::i;:::-;;:12;;;;;;;;;;;:30;;;;;;;;:::i;:::-;;;40958:82;;41036:4;41019:10;:14;41030:2;41019:14;;;;;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;40958:82;41063:14;41100:5;41090:6;;41081;:15;;;;:::i;:::-;41080:25;;;;:::i;:::-;41063:42;;41128:45;41142:4;41156;41163:9;41128:13;:45::i;:::-;41222:9;41213:6;:18;;;;:::i;:::-;41196:35;;40935:316;40752:499;41339:2;41322:19;;:13;;;;;;;;;;;:19;;;:56;;;;;41367:5;:11;41373:4;41367:11;;;;;;;;;;;;;;;;;;;;;;;;;41366:12;41322:56;:100;;;;;41417:4;41403:19;;:2;:19;;;;41322:100;:139;;;;;41448:13;;;;;;;;;;;41447:14;41322:139;41296:632;;;41504:12;41519:7;;41504:22;;41565:4;41549:13;;:20;;;;;;;;;;;;;;;;;;41592:9;:7;:9::i;:::-;41640:5;41624:13;;:21;;;;;;;;;;;;;;;;;;41692:4;41672:24;;:10;:16;41683:4;41672:16;;;;;;;;;;;;;;;;;;;;;;;;;:24;;;41668:48;;41708:8;;41698:18;;41668:48;41739:14;41777:5;41766:7;41757:6;:16;;;;:::i;:::-;41756:26;;;;:::i;:::-;41739:43;;41805:45;41819:4;41833;41840:9;41805:13;:45::i;:::-;41899:9;41890:6;:18;;;;:::i;:::-;41873:35;;41481:447;;41296:632;40512:1740;;;41992:4;41972:24;;:10;:16;41983:4;41972:16;;;;;;;;;;;;;;;;;;;;;;;;;:24;;;:47;;;;;42017:2;42000:19;;:13;;;;;;;;;;;:19;;;;41972:47;41968:269;;;42044:17;42086:5;42074:8;;42065:6;:17;;;;:::i;:::-;42064:27;;;;:::i;:::-;42044:47;;42114:45;42128:4;42142;42149:9;42114:13;:45::i;:::-;42208:9;42199:6;:18;;;;:::i;:::-;42182:35;;42021:216;41968:269;40512:1740;40459:1804;42273:39;42287:4;42293:2;42297:14;42273:13;:39::i;:::-;39933:2387;39859:2461;;;:::o;21239:1135::-;21345:1;21329:18;;:4;:18;;;21325:552;;21483:5;21467:12;;:21;;;;;;;:::i;:::-;;;;;;;;21325:552;;;21521:19;21543:9;:15;21553:4;21543:15;;;;;;;;;;;;;;;;21521:37;;21591:5;21577:11;:19;21573:117;;;21649:4;21655:11;21668:5;21624:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;21573:117;21845:5;21831:11;:19;21813:9;:15;21823:4;21813:15;;;;;;;;;;;;;;;:37;;;;21506:371;21325:552;21907:1;21893:16;;:2;:16;;;21889:435;;22075:5;22059:12;;:21;;;;;;;;;;;21889:435;;;22292:5;22275:9;:13;22285:2;22275:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;21889:435;22356:2;22341:25;;22350:4;22341:25;;;22360:5;22341:25;;;;;;:::i;:::-;;;;;;;;21239:1135;;;:::o;42328:149::-;42367:12;42382:24;42400:4;42382:9;:24::i;:::-;42367:39;;42432:1;42421:7;:12;42417:25;;42435:7;;;42417:25;42452:17;42458:7;42467:1;42452:5;:17::i;:::-;42356:121;42328:149;:::o;42485:526::-;42551:21;42589:1;42575:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42551:40;;42620:4;42602;42607:1;42602:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;42646:6;;;;;;;;;;;:11;;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42636:4;42641:1;42636:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;42685:4;42670:29;;;42708:6;;;;;;;;;;;42717:14;42670:62;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;42743:6;;;;;;;;;;;:57;;;42815:8;42838:9;42862:4;42889;42927:2;42909:15;:20;;;;:::i;:::-;42743:197;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42956:47;42971:8;42981:21;42956:47;;;;;;;:::i;:::-;;;;;;;;42540:471;42485:526;;:::o;7:180:1:-;55:77;52:1;45:88;152:4;149:1;142:15;176:4;173:1;166:15;193:115;276:1;269:5;266:12;256:46;;282:18;;:::i;:::-;256:46;193:115;:::o;314:131::-;361:7;390:5;379:16;;396:43;433:5;396:43;:::i;:::-;314:131;;;:::o;451:::-;509:9;542:34;570:5;542:34;:::i;:::-;529:47;;451:131;;;:::o;588:147::-;683:45;722:5;683:45;:::i;:::-;678:3;671:58;588:147;;:::o;741:238::-;842:4;880:2;869:9;865:18;857:26;;893:79;969:1;958:9;954:17;945:6;893:79;:::i;:::-;741:238;;;;:::o;985:99::-;1037:6;1071:5;1065:12;1055:22;;985:99;;;:::o;1090:169::-;1174:11;1208:6;1203:3;1196:19;1248:4;1243:3;1239:14;1224:29;;1090:169;;;;:::o;1265:246::-;1346:1;1356:113;1370:6;1367:1;1364:13;1356:113;;;1455:1;1450:3;1446:11;1440:18;1436:1;1431:3;1427:11;1420:39;1392:2;1389:1;1385:10;1380:15;;1356:113;;;1503:1;1494:6;1489:3;1485:16;1478:27;1327:184;1265:246;;;:::o;1517:102::-;1558:6;1609:2;1605:7;1600:2;1593:5;1589:14;1585:28;1575:38;;1517:102;;;:::o;1625:377::-;1713:3;1741:39;1774:5;1741:39;:::i;:::-;1796:71;1860:6;1855:3;1796:71;:::i;:::-;1789:78;;1876:65;1934:6;1929:3;1922:4;1915:5;1911:16;1876:65;:::i;:::-;1966:29;1988:6;1966:29;:::i;:::-;1961:3;1957:39;1950:46;;1717:285;1625:377;;;;:::o;2008:313::-;2121:4;2159:2;2148:9;2144:18;2136:26;;2208:9;2202:4;2198:20;2194:1;2183:9;2179:17;2172:47;2236:78;2309:4;2300:6;2236:78;:::i;:::-;2228:86;;2008:313;;;;:::o;2408:117::-;2517:1;2514;2507:12;2654:126;2691:7;2731:42;2724:5;2720:54;2709:65;;2654:126;;;:::o;2786:96::-;2823:7;2852:24;2870:5;2852:24;:::i;:::-;2841:35;;2786:96;;;:::o;2888:122::-;2961:24;2979:5;2961:24;:::i;:::-;2954:5;2951:35;2941:63;;3000:1;2997;2990:12;2941:63;2888:122;:::o;3016:139::-;3062:5;3100:6;3087:20;3078:29;;3116:33;3143:5;3116:33;:::i;:::-;3016:139;;;;:::o;3161:77::-;3198:7;3227:5;3216:16;;3161:77;;;:::o;3244:122::-;3317:24;3335:5;3317:24;:::i;:::-;3310:5;3307:35;3297:63;;3356:1;3353;3346:12;3297:63;3244:122;:::o;3372:139::-;3418:5;3456:6;3443:20;3434:29;;3472:33;3499:5;3472:33;:::i;:::-;3372:139;;;;:::o;3517:474::-;3585:6;3593;3642:2;3630:9;3621:7;3617:23;3613:32;3610:119;;;3648:79;;:::i;:::-;3610:119;3768:1;3793:53;3838:7;3829:6;3818:9;3814:22;3793:53;:::i;:::-;3783:63;;3739:117;3895:2;3921:53;3966:7;3957:6;3946:9;3942:22;3921:53;:::i;:::-;3911:63;;3866:118;3517:474;;;;;:::o;3997:90::-;4031:7;4074:5;4067:13;4060:21;4049:32;;3997:90;;;:::o;4093:109::-;4174:21;4189:5;4174:21;:::i;:::-;4169:3;4162:34;4093:109;;:::o;4208:210::-;4295:4;4333:2;4322:9;4318:18;4310:26;;4346:65;4408:1;4397:9;4393:17;4384:6;4346:65;:::i;:::-;4208:210;;;;:::o;4424:118::-;4511:24;4529:5;4511:24;:::i;:::-;4506:3;4499:37;4424:118;;:::o;4548:222::-;4641:4;4679:2;4668:9;4664:18;4656:26;;4692:71;4760:1;4749:9;4745:17;4736:6;4692:71;:::i;:::-;4548:222;;;;:::o;4776:329::-;4835:6;4884:2;4872:9;4863:7;4859:23;4855:32;4852:119;;;4890:79;;:::i;:::-;4852:119;5010:1;5035:53;5080:7;5071:6;5060:9;5056:22;5035:53;:::i;:::-;5025:63;;4981:117;4776:329;;;;:::o;5111:619::-;5188:6;5196;5204;5253:2;5241:9;5232:7;5228:23;5224:32;5221:119;;;5259:79;;:::i;:::-;5221:119;5379:1;5404:53;5449:7;5440:6;5429:9;5425:22;5404:53;:::i;:::-;5394:63;;5350:117;5506:2;5532:53;5577:7;5568:6;5557:9;5553:22;5532:53;:::i;:::-;5522:63;;5477:118;5634:2;5660:53;5705:7;5696:6;5685:9;5681:22;5660:53;:::i;:::-;5650:63;;5605:118;5111:619;;;;;:::o;5736:116::-;5806:21;5821:5;5806:21;:::i;:::-;5799:5;5796:32;5786:60;;5842:1;5839;5832:12;5786:60;5736:116;:::o;5858:133::-;5901:5;5939:6;5926:20;5917:29;;5955:30;5979:5;5955:30;:::i;:::-;5858:133;;;;:::o;5997:468::-;6062:6;6070;6119:2;6107:9;6098:7;6094:23;6090:32;6087:119;;;6125:79;;:::i;:::-;6087:119;6245:1;6270:53;6315:7;6306:6;6295:9;6291:22;6270:53;:::i;:::-;6260:63;;6216:117;6372:2;6398:50;6440:7;6431:6;6420:9;6416:22;6398:50;:::i;:::-;6388:60;;6343:115;5997:468;;;;;:::o;6471:86::-;6506:7;6546:4;6539:5;6535:16;6524:27;;6471:86;;;:::o;6563:112::-;6646:22;6662:5;6646:22;:::i;:::-;6641:3;6634:35;6563:112;;:::o;6681:214::-;6770:4;6808:2;6797:9;6793:18;6785:26;;6821:67;6885:1;6874:9;6870:17;6861:6;6821:67;:::i;:::-;6681:214;;;;:::o;6901:118::-;6988:24;7006:5;6988:24;:::i;:::-;6983:3;6976:37;6901:118;;:::o;7025:222::-;7118:4;7156:2;7145:9;7141:18;7133:26;;7169:71;7237:1;7226:9;7222:17;7213:6;7169:71;:::i;:::-;7025:222;;;;:::o;7253:329::-;7312:6;7361:2;7349:9;7340:7;7336:23;7332:32;7329:119;;;7367:79;;:::i;:::-;7329:119;7487:1;7512:53;7557:7;7548:6;7537:9;7533:22;7512:53;:::i;:::-;7502:63;;7458:117;7253:329;;;;:::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:60::-;8096:3;8117:5;8110:12;;8068:60;;;:::o;8134:142::-;8184:9;8217:53;8235:34;8244:24;8262:5;8244:24;:::i;:::-;8235:34;:::i;:::-;8217:53;:::i;:::-;8204:66;;8134:142;;;:::o;8282:126::-;8332:9;8365:37;8396:5;8365:37;:::i;:::-;8352:50;;8282:126;;;:::o;8414:153::-;8491:9;8524:37;8555:5;8524:37;:::i;:::-;8511:50;;8414:153;;;:::o;8573:185::-;8687:64;8745:5;8687:64;:::i;:::-;8682:3;8675:77;8573:185;;:::o;8764:276::-;8884:4;8922:2;8911:9;8907:18;8899:26;;8935:98;9030:1;9019:9;9015:17;9006:6;8935:98;:::i;:::-;8764:276;;;;:::o;9046:147::-;9147:11;9184:3;9169:18;;9046:147;;;;:::o;9199:114::-;;:::o;9319:398::-;9478:3;9499:83;9580:1;9575:3;9499:83;:::i;:::-;9492:90;;9591:93;9680:3;9591:93;:::i;:::-;9709:1;9704:3;9700:11;9693:18;;9319:398;;;:::o;9723:379::-;9907:3;9929:147;10072:3;9929:147;:::i;:::-;9922:154;;10093:3;10086:10;;9723:379;;;:::o;10108:180::-;10156:77;10153:1;10146:88;10253:4;10250:1;10243:15;10277:4;10274:1;10267:15;10294:320;10338:6;10375:1;10369:4;10365:12;10355:22;;10422:1;10416:4;10412:12;10443:18;10433:81;;10499:4;10491:6;10487:17;10477:27;;10433:81;10561:2;10553:6;10550:14;10530:18;10527:38;10524:84;;10580:18;;:::i;:::-;10524:84;10345:269;10294:320;;;:::o;10620:180::-;10668:77;10665:1;10658:88;10765:4;10762:1;10755:15;10789:4;10786:1;10779:15;10806:410;10846:7;10869:20;10887:1;10869:20;:::i;:::-;10864:25;;10903:20;10921:1;10903:20;:::i;:::-;10898:25;;10958:1;10955;10951:9;10980:30;10998:11;10980:30;:::i;:::-;10969:41;;11159:1;11150:7;11146:15;11143:1;11140:22;11120:1;11113:9;11093:83;11070:139;;11189:18;;:::i;:::-;11070:139;10854:362;10806:410;;;;:::o;11222:180::-;11270:77;11267:1;11260:88;11367:4;11364:1;11357:15;11391:4;11388:1;11381:15;11408:185;11448:1;11465:20;11483:1;11465:20;:::i;:::-;11460:25;;11499:20;11517:1;11499:20;:::i;:::-;11494:25;;11538:1;11528:35;;11543:18;;:::i;:::-;11528:35;11585:1;11582;11578:9;11573:14;;11408:185;;;;:::o;11599:320::-;11714:4;11752:2;11741:9;11737:18;11729:26;;11765:71;11833:1;11822:9;11818:17;11809:6;11765:71;:::i;:::-;11846:66;11908:2;11897:9;11893:18;11884:6;11846:66;:::i;:::-;11599:320;;;;;:::o;11925:364::-;12062:4;12100:2;12089:9;12085:18;12077:26;;12113:79;12189:1;12178:9;12174:17;12165:6;12113:79;:::i;:::-;12202:80;12278:2;12267:9;12263:18;12254:6;12202:80;:::i;:::-;11925:364;;;;;:::o;12295:143::-;12352:5;12383:6;12377:13;12368:22;;12399:33;12426:5;12399:33;:::i;:::-;12295:143;;;;:::o;12444:351::-;12514:6;12563:2;12551:9;12542:7;12538:23;12534:32;12531:119;;;12569:79;;:::i;:::-;12531:119;12689:1;12714:64;12770:7;12761:6;12750:9;12746:22;12714:64;:::i;:::-;12704:74;;12660:128;12444:351;;;;:::o;12801:332::-;12922:4;12960:2;12949:9;12945:18;12937:26;;12973:71;13041:1;13030:9;13026:17;13017:6;12973:71;:::i;:::-;13054:72;13122:2;13111:9;13107:18;13098:6;13054:72;:::i;:::-;12801:332;;;;;:::o;13139:137::-;13193:5;13224:6;13218:13;13209:22;;13240:30;13264:5;13240:30;:::i;:::-;13139:137;;;;:::o;13282:345::-;13349:6;13398:2;13386:9;13377:7;13373:23;13369:32;13366:119;;;13404:79;;:::i;:::-;13366:119;13524:1;13549:61;13602:7;13593:6;13582:9;13578:22;13549:61;:::i;:::-;13539:71;;13495:125;13282:345;;;;:::o;13633:171::-;13773:23;13769:1;13761:6;13757:14;13750:47;13633:171;:::o;13810:366::-;13952:3;13973:67;14037:2;14032:3;13973:67;:::i;:::-;13966:74;;14049:93;14138:3;14049:93;:::i;:::-;14167:2;14162:3;14158:12;14151:19;;13810:366;;;:::o;14182:419::-;14348:4;14386:2;14375:9;14371:18;14363:26;;14435:9;14429:4;14425:20;14421:1;14410:9;14406:17;14399:47;14463:131;14589:4;14463:131;:::i;:::-;14455:139;;14182:419;;;:::o;14607:442::-;14756:4;14794:2;14783:9;14779:18;14771:26;;14807:71;14875:1;14864:9;14860:17;14851:6;14807:71;:::i;:::-;14888:72;14956:2;14945:9;14941:18;14932:6;14888:72;:::i;:::-;14970;15038:2;15027:9;15023:18;15014:6;14970:72;:::i;:::-;14607:442;;;;;;:::o;15055:191::-;15095:3;15114:20;15132:1;15114:20;:::i;:::-;15109:25;;15148:20;15166:1;15148:20;:::i;:::-;15143:25;;15191:1;15188;15184:9;15177:16;;15212:3;15209:1;15206:10;15203:36;;;15219:18;;:::i;:::-;15203:36;15055:191;;;;:::o;15252:332::-;15373:4;15411:2;15400:9;15396:18;15388:26;;15424:71;15492:1;15481:9;15477:17;15468:6;15424:71;:::i;:::-;15505:72;15573:2;15562:9;15558:18;15549:6;15505:72;:::i;:::-;15252:332;;;;;:::o;15590:194::-;15630:4;15650:20;15668:1;15650:20;:::i;:::-;15645:25;;15684:20;15702:1;15684:20;:::i;:::-;15679:25;;15728:1;15725;15721:9;15713:17;;15752:1;15746:4;15743:11;15740:37;;;15757:18;;:::i;:::-;15740:37;15590:194;;;;:::o;15790:180::-;15838:77;15835:1;15828:88;15935:4;15932:1;15925:15;15959:4;15956:1;15949:15;15976:180;16024:77;16021:1;16014:88;16121:4;16118:1;16111:15;16145:4;16142:1;16135:15;16162:143;16219:5;16250:6;16244:13;16235:22;;16266:33;16293:5;16266:33;:::i;:::-;16162:143;;;;:::o;16311:351::-;16381:6;16430:2;16418:9;16409:7;16405:23;16401:32;16398:119;;;16436:79;;:::i;:::-;16398:119;16556:1;16581:64;16637:7;16628:6;16617:9;16613:22;16581:64;:::i;:::-;16571:74;;16527:128;16311:351;;;;:::o;16668:114::-;16735:6;16769:5;16763:12;16753:22;;16668:114;;;:::o;16788:184::-;16887:11;16921:6;16916:3;16909:19;16961:4;16956:3;16952:14;16937:29;;16788:184;;;;:::o;16978:132::-;17045:4;17068:3;17060:11;;17098:4;17093:3;17089:14;17081:22;;16978:132;;;:::o;17116:108::-;17193:24;17211:5;17193:24;:::i;:::-;17188:3;17181:37;17116:108;;:::o;17230:179::-;17299:10;17320:46;17362:3;17354:6;17320:46;:::i;:::-;17398:4;17393:3;17389:14;17375:28;;17230:179;;;;:::o;17415:113::-;17485:4;17517;17512:3;17508:14;17500:22;;17415:113;;;:::o;17564:732::-;17683:3;17712:54;17760:5;17712:54;:::i;:::-;17782:86;17861:6;17856:3;17782:86;:::i;:::-;17775:93;;17892:56;17942:5;17892:56;:::i;:::-;17971:7;18002:1;17987:284;18012:6;18009:1;18006:13;17987:284;;;18088:6;18082:13;18115:63;18174:3;18159:13;18115:63;:::i;:::-;18108:70;;18201:60;18254:6;18201:60;:::i;:::-;18191:70;;18047:224;18034:1;18031;18027:9;18022:14;;17987:284;;;17991:14;18287:3;18280:10;;17688:608;;;17564:732;;;;:::o;18302:815::-;18557:4;18595:3;18584:9;18580:19;18572:27;;18609:71;18677:1;18666:9;18662:17;18653:6;18609:71;:::i;:::-;18690:72;18758:2;18747:9;18743:18;18734:6;18690:72;:::i;:::-;18809:9;18803:4;18799:20;18794:2;18783:9;18779:18;18772:48;18837:108;18940:4;18931:6;18837:108;:::i;:::-;18829:116;;18955:72;19023:2;19012:9;19008:18;18999:6;18955:72;:::i;:::-;19037:73;19105:3;19094:9;19090:19;19081:6;19037:73;:::i;:::-;18302:815;;;;;;;;:::o

Swarm Source

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