ETH Price: $3,375.10 (-2.10%)
Gas: 6 Gwei

Token

YieldTAO (yTAO)
 

Overview

Max Total Supply

10,000,000 yTAO

Holders

124

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
25,668.013691240252011658 yTAO

Value
$0.00
0x4bd70099eda446e5ebb7cec596d79c3cf7ec003a
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
YieldTAO

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion
File 1 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

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

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

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

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

File 2 of 11 : draft-IERC6093.sol
// 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 3 of 11 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol";

/**
 * @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 4 of 11 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

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

/**
 * @dev Interface for the optional metadata functions from the 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 5 of 11 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the 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 6 of 11 : Context.sol
// 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 7 of 11 : IUniswapV2Factory.sol
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 8 of 11 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

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

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

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

File 9 of 11 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

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

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

File 10 of 11 : IStakedTAO.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.23;

interface IStakedTAO {
    function depositRewards(uint256 _amount) external;
}

File 11 of 11 : YieldTAO.sol
// Website: http://yieldtao.com
// Twitter: https://twitter.com/YieldTAO
// Telegram: https://t.me/YieldTAO

// SPDX-License-Identifier: MIT

pragma solidity 0.8.23;

import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {IUniswapV2Router02} from "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";
import {IUniswapV2Factory} from "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";
import {IStakedTAO} from "./interfaces/IStakedTAO.sol";

contract YieldTAO is Ownable, ERC20 {
    error MaxTxAmountExceeded();
    error MaxWalletAmountExceeded();
    error NotAuthorized();

    event SwapTokenForETH(uint256 amount);
    event UpdateSwapTokenAt(uint256 amount);
    event OpenTrading();
    event DisableLimits();

    IUniswapV2Router02 immutable router =
        IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

    uint256 SUPPLY = 10_000_000 * 10 ** 18;

    uint256 TAX = 5;

    uint256 private _buyCount = 0;
    uint256 private _sellCount = 0;
    uint256 private _initialTax = 30;
    uint256 private _reduceTaxAt = 20;

    address public buildAndMarketingAddress;
    address public sTAO;

    uint256 public swapTokenAt = SUPPLY / 1000; // 0.1%

    mapping(address => bool) private _isExcludedFromFees;
    address public pair;
    uint256 private _maxAmount;
    uint256 private _maxWallet;
    bool public limit = true;

    bool private _swaping = false;
    uint256 private _tradingOpenBlock;

    modifier onSwap() {
        _swaping = true;
        _;
        _swaping = false;
    }

    constructor(address _sTAO) Ownable(_msgSender()) ERC20("YieldTAO", "yTAO") {
        pair = IUniswapV2Factory(router.factory()).createPair(
            address(this),
            router.WETH()
        );

        sTAO = _sTAO;
        buildAndMarketingAddress = _msgSender();

        _maxAmount = SUPPLY / 100; // 1%
        _maxWallet = _maxAmount;

        _isExcludedFromFees[_msgSender()] = true;
        _isExcludedFromFees[address(this)] = true;
        _isExcludedFromFees[address(router)] = true;

        _mint(_msgSender(), SUPPLY);
        _approve(_msgSender(), address(router), type(uint256).max);
    }

    function openTrading(uint256 addBlock) external onlyOwner {
        require(_tradingOpenBlock == 0, "Trading already enabled");
        _tradingOpenBlock = block.number + addBlock;
        emit OpenTrading();
    }

    function removeLimits() external onlyOwner {
        require(limit, "Limits already removed");
        limit = false;
        _maxWallet = SUPPLY;
        _maxAmount = SUPPLY;
        emit DisableLimits();
    }

    function getIsExcludedFromFees(
        address _address
    ) external view returns (bool) {
        return _isExcludedFromFees[_address];
    }

    function excludedFromFees(
        address _address,
        bool _value
    ) external onlyOwner {
        _isExcludedFromFees[_address] = _value;
    }

    function _update(
        address from,
        address to,
        uint256 amount
    ) internal override {
        if (
            _isExcludedFromFees[from] ||
            _isExcludedFromFees[to] ||
            (to != pair && from != pair) ||
            _swaping
        ) {
            super._update(from, to, amount);
            return;
        }

        require(
            _tradingOpenBlock > 0 && block.number > _tradingOpenBlock,
            "Trading is not enabled"
        );

        if (limit) {
            if ((from == pair || to == pair) && amount > _maxAmount) {
                revert MaxTxAmountExceeded();
            }
            if (to != pair && balanceOf(to) + amount > _maxWallet) {
                revert MaxWalletAmountExceeded();
            }
        }
        if (to == pair && _canSwapBack()) {
            _swapTokenForETH();
        }

        uint256 _totalFees;

        if (from == pair) {
            _buyCount++;
            _totalFees =
                (amount * (_buyCount > _reduceTaxAt ? TAX : _initialTax)) /
                100;
        } else if (to == pair) {
            _sellCount++;
            _totalFees =
                (amount * (_sellCount > _reduceTaxAt / 2 ? TAX : _initialTax)) /
                100;
        }

        uint256 rewards = _totalFees / 5; // 1%

        super._update(from, sTAO, rewards);

        _depositRewards(rewards);

        super._update(from, address(this), _totalFees - rewards);

        amount = amount - _totalFees;

        super._update(from, to, amount);
    }

    function _depositRewards(uint256 _amount) private {
        try IStakedTAO(sTAO).depositRewards(_amount) {} catch {}
    }

    function burn(uint256 _amount) external {
        super._burn(_msgSender(), _amount);
    }

    function _canSwapBack() private view returns (bool) {
        return balanceOf(address(this)) >= swapTokenAt;
    }

    function setSwapTokenAt(uint256 value) external onlyOwner {
        require(
            value <= SUPPLY / 50,
            "Value must be less than or equal to SUPPLY / 50"
        );
        swapTokenAt = value;
        emit UpdateSwapTokenAt(value);
    }

    function _swapTokenForETH() private onSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();

        _approve(address(this), address(router), swapTokenAt);

        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            swapTokenAt,
            0,
            path,
            payable(buildAndMarketingAddress),
            block.timestamp
        );

        emit SwapTokenForETH(swapTokenAt);
    }

    function setBuildAndMarketing(address _address) external {
        if (
            _msgSender() != owner() || _msgSender() != buildAndMarketingAddress
        ) {
            revert NotAuthorized();
        }
        buildAndMarketingAddress = _address;
    }

    function setETAO(address _address) external onlyOwner {
        sTAO = _address;
    }

    receive() external payable {}
}

Settings
{
  "evmVersion": "paris",
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_sTAO","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"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":[],"name":"MaxTxAmountExceeded","type":"error"},{"inputs":[],"name":"MaxWalletAmountExceeded","type":"error"},{"inputs":[],"name":"NotAuthorized","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","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":[],"name":"DisableLimits","type":"event"},{"anonymous":false,"inputs":[],"name":"OpenTrading","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SwapTokenForETH","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":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"UpdateSwapTokenAt","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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":"buildAndMarketingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_value","type":"bool"}],"name":"excludedFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"getIsExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"addBlock","type":"uint256"}],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sTAO","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setBuildAndMarketing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setETAO","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setSwapTokenAt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokenAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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"},{"stateMutability":"payable","type":"receive"}]

60a0604052737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff168152506a084595161401484a000000600655600560075560006008556000600955601e600a556014600b556103e860065462000085919062001598565b600e556001601360006101000a81548160ff0219169083151502179055506000601360016101000a81548160ff021916908315150217905550348015620000cb57600080fd5b50604051620046b1380380620046b18339818101604052810190620000f191906200163a565b6040518060400160405280600881526020017f5969656c6454414f0000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f7954414f000000000000000000000000000000000000000000000000000000008152506200016d620005fb60201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620001e25760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620001d991906200167d565b60405180910390fd5b620001f3816200060360201b60201c565b5081600490816200020591906200190a565b5080600590816200021791906200190a565b50505060805173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000268573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200028e91906200163a565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002f8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200031e91906200163a565b6040518363ffffffff1660e01b81526004016200033d929190620019f1565b6020604051808303816000875af11580156200035d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200038391906200163a565b601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000414620005fb60201b60201c565b600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550606460065462000465919062001598565b6011819055506011546012819055506001600f60006200048a620005fb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f600060805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620005b0620005a1620005fb60201b60201c565b600654620006c760201b60201c565b620005f4620005c4620005fb60201b60201c565b6080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200075460201b60201c565b5062001e1f565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200073c5760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016200073391906200167d565b60405180910390fd5b62000750600083836200076e60201b60201c565b5050565b62000769838383600162000d9760201b60201c565b505050565b600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680620008105750600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80620008c55750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015620008c45750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b80620008dd5750601360019054906101000a900460ff165b15620008fc57620008f683838362000f7760201b60201c565b62000d92565b600060145411801562000910575060145443115b62000952576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009499062001a7f565b60405180910390fd5b601360009054906101000a900460ff161562000b0e57601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148062000a125750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b801562000a20575060115481115b1562000a58576040517f801bc44b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801562000ad557506012548162000ac784620011aa60201b60201c565b62000ad3919062001aa1565b115b1562000b0d576040517fa9a44dff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614801562000b78575062000b77620011f360201b60201c565b5b1562000b8f5762000b8e6200121060201b60201c565b5b6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160362000c3d576008600081548092919062000bfc9062001adc565b91905055506064600b546008541162000c1857600a5462000c1c565b6007545b8362000c29919062001b29565b62000c35919062001598565b905062000cf3565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000cf2576009600081548092919062000ca89062001adc565b919050555060646002600b5462000cc0919062001598565b6009541162000cd257600a5462000cd6565b6007545b8362000ce3919062001b29565b62000cef919062001598565b90505b5b600060058262000d04919062001598565b905062000d3b85600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168362000f7760201b60201c565b62000d4c81620014a260201b60201c565b62000d6c8530838562000d60919062001b74565b62000f7760201b60201c565b818362000d7a919062001b74565b925062000d8f85858562000f7760201b60201c565b50505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160362000e0c5760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040162000e0391906200167d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000e815760006040517f94280d6200000000000000000000000000000000000000000000000000000000815260040162000e7891906200167d565b60405180910390fd5b81600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550801562000f71578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405162000f68919062001bc0565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000fcd57806003600082825462000fc0919062001aa1565b92505081905550620010a5565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156200105d578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620010549392919062001bdd565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620010f057806003600082825403925050819055506200113e565b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200119d919062001bc0565b60405180910390a3505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600e546200120930620011aa60201b60201c565b1015905090565b6001601360016101000a81548160ff0219169083151502179055506000600267ffffffffffffffff8111156200124b576200124a620016a5565b5b6040519080825280602002602001820160405280156200127a5781602001602082028036833780820191505090505b509050308160008151811062001295576200129462001c1a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200131d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200134391906200163a565b816001815181106200135a576200135962001c1a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050620013ab30608051600e546200075460201b60201c565b60805173ffffffffffffffffffffffffffffffffffffffff1663791ac947600e54600084600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b81526004016200141595949392919062001dbb565b600060405180830381600087803b1580156200143057600080fd5b505af115801562001445573d6000803e3d6000fd5b505050507f744b889e34cd5c6083ba585efd925a57d7d0327fbb11ab5fd672257811415b56600e546040516200147c919062001bc0565b60405180910390a1506000601360016101000a81548160ff021916908315150217905550565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638bdf67f2826040518263ffffffff1660e01b8152600401620014ff919062001bc0565b600060405180830381600087803b1580156200151a57600080fd5b505af19250505080156200152c575060015b5050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620015a58262001530565b9150620015b28362001530565b925082620015c557620015c46200153a565b5b828204905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200160282620015d5565b9050919050565b6200161481620015f5565b81146200162057600080fd5b50565b600081519050620016348162001609565b92915050565b600060208284031215620016535762001652620015d0565b5b6000620016638482850162001623565b91505092915050565b6200167781620015f5565b82525050565b60006020820190506200169460008301846200166c565b92915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200171c57607f821691505b602082108103620017325762001731620016d4565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200179c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200175d565b620017a886836200175d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620017eb620017e5620017df8462001530565b620017c0565b62001530565b9050919050565b6000819050919050565b6200180783620017ca565b6200181f6200181682620017f2565b8484546200176a565b825550505050565b600090565b6200183662001827565b62001843818484620017fc565b505050565b5b818110156200186b576200185f6000826200182c565b60018101905062001849565b5050565b601f821115620018ba57620018848162001738565b6200188f846200174d565b810160208510156200189f578190505b620018b7620018ae856200174d565b83018262001848565b50505b505050565b600082821c905092915050565b6000620018df60001984600802620018bf565b1980831691505092915050565b6000620018fa8383620018cc565b9150826002028217905092915050565b62001915826200169a565b67ffffffffffffffff811115620019315762001930620016a5565b5b6200193d825462001703565b6200194a8282856200186f565b600060209050601f8311600181146200198257600084156200196d578287015190505b620019798582620018ec565b865550620019e9565b601f198416620019928662001738565b60005b82811015620019bc5784890151825560018201915060208501945060208101905062001995565b86831015620019dc5784890151620019d8601f891682620018cc565b8355505b6001600288020188555050505b505050505050565b600060408201905062001a0860008301856200166c565b62001a1760208301846200166c565b9392505050565b600082825260208201905092915050565b7f54726164696e67206973206e6f7420656e61626c656400000000000000000000600082015250565b600062001a6760168362001a1e565b915062001a748262001a2f565b602082019050919050565b6000602082019050818103600083015262001a9a8162001a58565b9050919050565b600062001aae8262001530565b915062001abb8362001530565b925082820190508082111562001ad65762001ad562001569565b5b92915050565b600062001ae98262001530565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820362001b1e5762001b1d62001569565b5b600182019050919050565b600062001b368262001530565b915062001b438362001530565b925082820262001b538162001530565b9150828204841483151762001b6d5762001b6c62001569565b5b5092915050565b600062001b818262001530565b915062001b8e8362001530565b925082820390508181111562001ba95762001ba862001569565b5b92915050565b62001bba8162001530565b82525050565b600060208201905062001bd7600083018462001baf565b92915050565b600060608201905062001bf460008301866200166c565b62001c03602083018562001baf565b62001c12604083018462001baf565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b600062001c7462001c6e62001c688462001c49565b620017c0565b62001530565b9050919050565b62001c868162001c53565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b62001cc381620015f5565b82525050565b600062001cd7838362001cb8565b60208301905092915050565b6000602082019050919050565b600062001cfd8262001c8c565b62001d09818562001c97565b935062001d168362001ca8565b8060005b8381101562001d4d57815162001d31888262001cc9565b975062001d3e8362001ce3565b92505060018101905062001d1a565b5085935050505092915050565b600062001d7b62001d7562001d6f84620015d5565b620017c0565b620015d5565b9050919050565b600062001d8f8262001d5a565b9050919050565b600062001da38262001d82565b9050919050565b62001db58162001d96565b82525050565b600060a08201905062001dd2600083018862001baf565b62001de1602083018762001c7b565b818103604083015262001df5818662001cf0565b905062001e06606083018562001daa565b62001e15608083018462001baf565b9695505050505050565b60805161286862001e4960003960008181611bac01528181611c8d0152611cb601526128686000f3fe60806040526004361061016a5760003560e01c8063751039fc116100d1578063a8aa1b311161008a578063d163364911610064578063d163364914610527578063dd62ed3e14610550578063f2fde38b1461058d578063fa4113cf146105b657610171565b8063a8aa1b3114610494578063a9059cbb146104bf578063b1232ac0146104fc57610171565b8063751039fc146103965780637b16cea0146103ad578063864b3167146103ea5780638da5cb5b1461041357806395d89b411461043e578063a4d66daf1461046957610171565b806342966c681161012357806342966c681461029a578063707b5203146102c357806370a08231146102ee578063715018a61461032b57806372e4055d1461034257806373bc5a361461036b57610171565b806306fdde0314610176578063095ea7b3146101a157806316697fc5146101de57806318160ddd1461020757806323b872dd14610232578063313ce5671461026f57610171565b3661017157005b600080fd5b34801561018257600080fd5b5061018b6105df565b6040516101989190611edd565b60405180910390f35b3480156101ad57600080fd5b506101c860048036038101906101c39190611f98565b610671565b6040516101d59190611ff3565b60405180910390f35b3480156101ea57600080fd5b506102056004803603810190610200919061203a565b610694565b005b34801561021357600080fd5b5061021c6106f7565b6040516102299190612089565b60405180910390f35b34801561023e57600080fd5b50610259600480360381019061025491906120a4565b610701565b6040516102669190611ff3565b60405180910390f35b34801561027b57600080fd5b50610284610730565b6040516102919190612113565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc919061212e565b610739565b005b3480156102cf57600080fd5b506102d861074d565b6040516102e5919061216a565b60405180910390f35b3480156102fa57600080fd5b5061031560048036038101906103109190612185565b610773565b6040516103229190612089565b60405180910390f35b34801561033757600080fd5b506103406107bc565b005b34801561034e57600080fd5b5061036960048036038101906103649190612185565b6107d0565b005b34801561037757600080fd5b5061038061081c565b60405161038d9190612089565b60405180910390f35b3480156103a257600080fd5b506103ab610822565b005b3480156103b957600080fd5b506103d460048036038101906103cf9190612185565b6108d4565b6040516103e19190611ff3565b60405180910390f35b3480156103f657600080fd5b50610411600480360381019061040c919061212e565b61092a565b005b34801561041f57600080fd5b506104286109c4565b604051610435919061216a565b60405180910390f35b34801561044a57600080fd5b506104536109ed565b6040516104609190611edd565b60405180910390f35b34801561047557600080fd5b5061047e610a7f565b60405161048b9190611ff3565b60405180910390f35b3480156104a057600080fd5b506104a9610a92565b6040516104b6919061216a565b60405180910390f35b3480156104cb57600080fd5b506104e660048036038101906104e19190611f98565b610ab8565b6040516104f39190611ff3565b60405180910390f35b34801561050857600080fd5b50610511610adb565b60405161051e919061216a565b60405180910390f35b34801561053357600080fd5b5061054e6004803603810190610549919061212e565b610b01565b005b34801561055c57600080fd5b50610577600480360381019061057291906121b2565b610b8f565b6040516105849190612089565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af9190612185565b610c16565b005b3480156105c257600080fd5b506105dd60048036038101906105d89190612185565b610c9c565b005b6060600480546105ee90612221565b80601f016020809104026020016040519081016040528092919081815260200182805461061a90612221565b80156106675780601f1061063c57610100808354040283529160200191610667565b820191906000526020600020905b81548152906001019060200180831161064a57829003601f168201915b5050505050905090565b60008061067c610db5565b9050610689818585610dbd565b600191505092915050565b61069c610dcf565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600354905090565b60008061070c610db5565b9050610719858285610e56565b610724858585610eea565b60019150509392505050565b60006012905090565b61074a610744610db5565b82610fde565b50565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107c4610dcf565b6107ce6000611060565b565b6107d8610dcf565b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600e5481565b61082a610dcf565b601360009054906101000a900460ff16610879576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108709061229e565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506006546012819055506006546011819055507fe9070d302280cd857033f56893647494c1410643fe239daabee29e9292199b3d60405160405180910390a1565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610932610dcf565b6032600654610941919061231c565b811115610983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097a906123bf565b60405180910390fd5b80600e819055507f4cba14fd4026630e64b03f8c6a0130ca310c15a5376cf7f6735c66880bb7bceb816040516109b99190612089565b60405180910390a150565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546109fc90612221565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2890612221565b8015610a755780601f10610a4a57610100808354040283529160200191610a75565b820191906000526020600020905b815481529060010190602001808311610a5857829003601f168201915b5050505050905090565b601360009054906101000a900460ff1681565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610ac3610db5565b9050610ad0818585610eea565b600191505092915050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b09610dcf565b600060145414610b4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b459061242b565b60405180910390fd5b8043610b5a919061244b565b6014819055507f51cd7cc33235a1c89f708fecec535bf7cca0f94ed05216751befb052ca83e67960405160405180910390a150565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c1e610dcf565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c905760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610c87919061216a565b60405180910390fd5b610c9981611060565b50565b610ca46109c4565b73ffffffffffffffffffffffffffffffffffffffff16610cc2610db5565b73ffffffffffffffffffffffffffffffffffffffff16141580610d3a5750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610d21610db5565b73ffffffffffffffffffffffffffffffffffffffff1614155b15610d71576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b610dca8383836001611124565b505050565b610dd7610db5565b73ffffffffffffffffffffffffffffffffffffffff16610df56109c4565b73ffffffffffffffffffffffffffffffffffffffff1614610e5457610e18610db5565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610e4b919061216a565b60405180910390fd5b565b6000610e628484610b8f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ee45781811015610ed4578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610ecb9392919061247f565b60405180910390fd5b610ee384848484036000611124565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f5c5760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610f53919061216a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fce5760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610fc5919061216a565b60405180910390fd5b610fd98383836112fb565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110505760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401611047919061216a565b60405180910390fd5b61105c826000836112fb565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036111965760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161118d919061216a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112085760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016111ff919061216a565b60405180910390fd5b81600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080156112f5578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516112ec9190612089565b60405180910390a35b50505050565b600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061139c5750600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8061144f5750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561144e5750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b806114665750601360019054906101000a900460ff165b1561147b576114768383836118b5565b6118b0565b600060145411801561148e575060145443115b6114cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c490612502565b60405180910390fd5b601360009054906101000a900460ff161561167957601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061158b5750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8015611598575060115481115b156115cf576040517f801bc44b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561164157506012548161163584610773565b61163f919061244b565b115b15611678576040517fa9a44dff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161480156116da57506116d9611add565b5b156116e8576116e7611af2565b5b6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361178c576008600081548092919061175290612522565b91905055506064600b546008541161176c57600a54611770565b6007545b8361177b919061256a565b611785919061231c565b9050611837565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361183657600960008154809291906117f490612522565b919050555060646002600b5461180a919061231c565b6009541161181a57600a5461181e565b6007545b83611829919061256a565b611833919061231c565b90505b5b6000600582611846919061231c565b905061187585600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836118b5565b61187e81611dc3565b6118948530838561188f91906125ac565b6118b5565b81836118a091906125ac565b92506118ad8585856118b5565b50505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119075780600360008282546118fb919061244b565b925050819055506119dc565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611994578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161198b9392919061247f565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a255780600360008282540392505081905550611a73565b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611ad09190612089565b60405180910390a3505050565b6000600e54611aeb30610773565b1015905090565b6001601360016101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611b2a57611b296125e0565b5b604051908082528060200260200182016040528015611b585781602001602082028036833780820191505090505b5090503081600081518110611b7057611b6f61260f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c15573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c399190612653565b81600181518110611c4d57611c4c61260f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611cb4307f0000000000000000000000000000000000000000000000000000000000000000600e54610dbd565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947600e54600084600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401611d3a9594939291906127d8565b600060405180830381600087803b158015611d5457600080fd5b505af1158015611d68573d6000803e3d6000fd5b505050507f744b889e34cd5c6083ba585efd925a57d7d0327fbb11ab5fd672257811415b56600e54604051611d9d9190612089565b60405180910390a1506000601360016101000a81548160ff021916908315150217905550565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638bdf67f2826040518263ffffffff1660e01b8152600401611e1e9190612089565b600060405180830381600087803b158015611e3857600080fd5b505af1925050508015611e49575060015b5050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611e87578082015181840152602081019050611e6c565b60008484015250505050565b6000601f19601f8301169050919050565b6000611eaf82611e4d565b611eb98185611e58565b9350611ec9818560208601611e69565b611ed281611e93565b840191505092915050565b60006020820190508181036000830152611ef78184611ea4565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611f2f82611f04565b9050919050565b611f3f81611f24565b8114611f4a57600080fd5b50565b600081359050611f5c81611f36565b92915050565b6000819050919050565b611f7581611f62565b8114611f8057600080fd5b50565b600081359050611f9281611f6c565b92915050565b60008060408385031215611faf57611fae611eff565b5b6000611fbd85828601611f4d565b9250506020611fce85828601611f83565b9150509250929050565b60008115159050919050565b611fed81611fd8565b82525050565b60006020820190506120086000830184611fe4565b92915050565b61201781611fd8565b811461202257600080fd5b50565b6000813590506120348161200e565b92915050565b6000806040838503121561205157612050611eff565b5b600061205f85828601611f4d565b925050602061207085828601612025565b9150509250929050565b61208381611f62565b82525050565b600060208201905061209e600083018461207a565b92915050565b6000806000606084860312156120bd576120bc611eff565b5b60006120cb86828701611f4d565b93505060206120dc86828701611f4d565b92505060406120ed86828701611f83565b9150509250925092565b600060ff82169050919050565b61210d816120f7565b82525050565b60006020820190506121286000830184612104565b92915050565b60006020828403121561214457612143611eff565b5b600061215284828501611f83565b91505092915050565b61216481611f24565b82525050565b600060208201905061217f600083018461215b565b92915050565b60006020828403121561219b5761219a611eff565b5b60006121a984828501611f4d565b91505092915050565b600080604083850312156121c9576121c8611eff565b5b60006121d785828601611f4d565b92505060206121e885828601611f4d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061223957607f821691505b60208210810361224c5761224b6121f2565b5b50919050565b7f4c696d69747320616c72656164792072656d6f76656400000000000000000000600082015250565b6000612288601683611e58565b915061229382612252565b602082019050919050565b600060208201905081810360008301526122b78161227b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061232782611f62565b915061233283611f62565b925082612342576123416122be565b5b828204905092915050565b7f56616c7565206d757374206265206c657373207468616e206f7220657175616c60008201527f20746f20535550504c59202f2035300000000000000000000000000000000000602082015250565b60006123a9602f83611e58565b91506123b48261234d565b604082019050919050565b600060208201905081810360008301526123d88161239c565b9050919050565b7f54726164696e6720616c726561647920656e61626c6564000000000000000000600082015250565b6000612415601783611e58565b9150612420826123df565b602082019050919050565b6000602082019050818103600083015261244481612408565b9050919050565b600061245682611f62565b915061246183611f62565b9250828201905080821115612479576124786122ed565b5b92915050565b6000606082019050612494600083018661215b565b6124a1602083018561207a565b6124ae604083018461207a565b949350505050565b7f54726164696e67206973206e6f7420656e61626c656400000000000000000000600082015250565b60006124ec601683611e58565b91506124f7826124b6565b602082019050919050565b6000602082019050818103600083015261251b816124df565b9050919050565b600061252d82611f62565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361255f5761255e6122ed565b5b600182019050919050565b600061257582611f62565b915061258083611f62565b925082820261258e81611f62565b915082820484148315176125a5576125a46122ed565b5b5092915050565b60006125b782611f62565b91506125c283611f62565b92508282039050818111156125da576125d96122ed565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061264d81611f36565b92915050565b60006020828403121561266957612668611eff565b5b60006126778482850161263e565b91505092915050565b6000819050919050565b6000819050919050565b60006126af6126aa6126a584612680565b61268a565b611f62565b9050919050565b6126bf81612694565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6126fa81611f24565b82525050565b600061270c83836126f1565b60208301905092915050565b6000602082019050919050565b6000612730826126c5565b61273a81856126d0565b9350612745836126e1565b8060005b8381101561277657815161275d8882612700565b975061276883612718565b925050600181019050612749565b5085935050505092915050565b600061279e61279961279484611f04565b61268a565b611f04565b9050919050565b60006127b082612783565b9050919050565b60006127c2826127a5565b9050919050565b6127d2816127b7565b82525050565b600060a0820190506127ed600083018861207a565b6127fa60208301876126b6565b818103604083015261280c8186612725565b905061281b60608301856127c9565b612828608083018461207a565b969550505050505056fea264697066735822122013375532d4048ff7edaabfca4d15e06743a0742dc03e400b1ebbbd6918404c7d64736f6c634300081700330000000000000000000000004ac34116f82fdb752078498d4fcc44a2ed5439df

Deployed Bytecode

0x60806040526004361061016a5760003560e01c8063751039fc116100d1578063a8aa1b311161008a578063d163364911610064578063d163364914610527578063dd62ed3e14610550578063f2fde38b1461058d578063fa4113cf146105b657610171565b8063a8aa1b3114610494578063a9059cbb146104bf578063b1232ac0146104fc57610171565b8063751039fc146103965780637b16cea0146103ad578063864b3167146103ea5780638da5cb5b1461041357806395d89b411461043e578063a4d66daf1461046957610171565b806342966c681161012357806342966c681461029a578063707b5203146102c357806370a08231146102ee578063715018a61461032b57806372e4055d1461034257806373bc5a361461036b57610171565b806306fdde0314610176578063095ea7b3146101a157806316697fc5146101de57806318160ddd1461020757806323b872dd14610232578063313ce5671461026f57610171565b3661017157005b600080fd5b34801561018257600080fd5b5061018b6105df565b6040516101989190611edd565b60405180910390f35b3480156101ad57600080fd5b506101c860048036038101906101c39190611f98565b610671565b6040516101d59190611ff3565b60405180910390f35b3480156101ea57600080fd5b506102056004803603810190610200919061203a565b610694565b005b34801561021357600080fd5b5061021c6106f7565b6040516102299190612089565b60405180910390f35b34801561023e57600080fd5b50610259600480360381019061025491906120a4565b610701565b6040516102669190611ff3565b60405180910390f35b34801561027b57600080fd5b50610284610730565b6040516102919190612113565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc919061212e565b610739565b005b3480156102cf57600080fd5b506102d861074d565b6040516102e5919061216a565b60405180910390f35b3480156102fa57600080fd5b5061031560048036038101906103109190612185565b610773565b6040516103229190612089565b60405180910390f35b34801561033757600080fd5b506103406107bc565b005b34801561034e57600080fd5b5061036960048036038101906103649190612185565b6107d0565b005b34801561037757600080fd5b5061038061081c565b60405161038d9190612089565b60405180910390f35b3480156103a257600080fd5b506103ab610822565b005b3480156103b957600080fd5b506103d460048036038101906103cf9190612185565b6108d4565b6040516103e19190611ff3565b60405180910390f35b3480156103f657600080fd5b50610411600480360381019061040c919061212e565b61092a565b005b34801561041f57600080fd5b506104286109c4565b604051610435919061216a565b60405180910390f35b34801561044a57600080fd5b506104536109ed565b6040516104609190611edd565b60405180910390f35b34801561047557600080fd5b5061047e610a7f565b60405161048b9190611ff3565b60405180910390f35b3480156104a057600080fd5b506104a9610a92565b6040516104b6919061216a565b60405180910390f35b3480156104cb57600080fd5b506104e660048036038101906104e19190611f98565b610ab8565b6040516104f39190611ff3565b60405180910390f35b34801561050857600080fd5b50610511610adb565b60405161051e919061216a565b60405180910390f35b34801561053357600080fd5b5061054e6004803603810190610549919061212e565b610b01565b005b34801561055c57600080fd5b50610577600480360381019061057291906121b2565b610b8f565b6040516105849190612089565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af9190612185565b610c16565b005b3480156105c257600080fd5b506105dd60048036038101906105d89190612185565b610c9c565b005b6060600480546105ee90612221565b80601f016020809104026020016040519081016040528092919081815260200182805461061a90612221565b80156106675780601f1061063c57610100808354040283529160200191610667565b820191906000526020600020905b81548152906001019060200180831161064a57829003601f168201915b5050505050905090565b60008061067c610db5565b9050610689818585610dbd565b600191505092915050565b61069c610dcf565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600354905090565b60008061070c610db5565b9050610719858285610e56565b610724858585610eea565b60019150509392505050565b60006012905090565b61074a610744610db5565b82610fde565b50565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107c4610dcf565b6107ce6000611060565b565b6107d8610dcf565b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600e5481565b61082a610dcf565b601360009054906101000a900460ff16610879576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108709061229e565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506006546012819055506006546011819055507fe9070d302280cd857033f56893647494c1410643fe239daabee29e9292199b3d60405160405180910390a1565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610932610dcf565b6032600654610941919061231c565b811115610983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097a906123bf565b60405180910390fd5b80600e819055507f4cba14fd4026630e64b03f8c6a0130ca310c15a5376cf7f6735c66880bb7bceb816040516109b99190612089565b60405180910390a150565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546109fc90612221565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2890612221565b8015610a755780601f10610a4a57610100808354040283529160200191610a75565b820191906000526020600020905b815481529060010190602001808311610a5857829003601f168201915b5050505050905090565b601360009054906101000a900460ff1681565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610ac3610db5565b9050610ad0818585610eea565b600191505092915050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b09610dcf565b600060145414610b4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b459061242b565b60405180910390fd5b8043610b5a919061244b565b6014819055507f51cd7cc33235a1c89f708fecec535bf7cca0f94ed05216751befb052ca83e67960405160405180910390a150565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c1e610dcf565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c905760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610c87919061216a565b60405180910390fd5b610c9981611060565b50565b610ca46109c4565b73ffffffffffffffffffffffffffffffffffffffff16610cc2610db5565b73ffffffffffffffffffffffffffffffffffffffff16141580610d3a5750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610d21610db5565b73ffffffffffffffffffffffffffffffffffffffff1614155b15610d71576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b610dca8383836001611124565b505050565b610dd7610db5565b73ffffffffffffffffffffffffffffffffffffffff16610df56109c4565b73ffffffffffffffffffffffffffffffffffffffff1614610e5457610e18610db5565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610e4b919061216a565b60405180910390fd5b565b6000610e628484610b8f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ee45781811015610ed4578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610ecb9392919061247f565b60405180910390fd5b610ee384848484036000611124565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f5c5760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610f53919061216a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fce5760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610fc5919061216a565b60405180910390fd5b610fd98383836112fb565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110505760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401611047919061216a565b60405180910390fd5b61105c826000836112fb565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036111965760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161118d919061216a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112085760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016111ff919061216a565b60405180910390fd5b81600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080156112f5578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516112ec9190612089565b60405180910390a35b50505050565b600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061139c5750600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8061144f5750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561144e5750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b806114665750601360019054906101000a900460ff165b1561147b576114768383836118b5565b6118b0565b600060145411801561148e575060145443115b6114cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c490612502565b60405180910390fd5b601360009054906101000a900460ff161561167957601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061158b5750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8015611598575060115481115b156115cf576040517f801bc44b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561164157506012548161163584610773565b61163f919061244b565b115b15611678576040517fa9a44dff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161480156116da57506116d9611add565b5b156116e8576116e7611af2565b5b6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361178c576008600081548092919061175290612522565b91905055506064600b546008541161176c57600a54611770565b6007545b8361177b919061256a565b611785919061231c565b9050611837565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361183657600960008154809291906117f490612522565b919050555060646002600b5461180a919061231c565b6009541161181a57600a5461181e565b6007545b83611829919061256a565b611833919061231c565b90505b5b6000600582611846919061231c565b905061187585600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836118b5565b61187e81611dc3565b6118948530838561188f91906125ac565b6118b5565b81836118a091906125ac565b92506118ad8585856118b5565b50505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119075780600360008282546118fb919061244b565b925050819055506119dc565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611994578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161198b9392919061247f565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a255780600360008282540392505081905550611a73565b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611ad09190612089565b60405180910390a3505050565b6000600e54611aeb30610773565b1015905090565b6001601360016101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611b2a57611b296125e0565b5b604051908082528060200260200182016040528015611b585781602001602082028036833780820191505090505b5090503081600081518110611b7057611b6f61260f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c15573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c399190612653565b81600181518110611c4d57611c4c61260f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611cb4307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d600e54610dbd565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947600e54600084600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401611d3a9594939291906127d8565b600060405180830381600087803b158015611d5457600080fd5b505af1158015611d68573d6000803e3d6000fd5b505050507f744b889e34cd5c6083ba585efd925a57d7d0327fbb11ab5fd672257811415b56600e54604051611d9d9190612089565b60405180910390a1506000601360016101000a81548160ff021916908315150217905550565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638bdf67f2826040518263ffffffff1660e01b8152600401611e1e9190612089565b600060405180830381600087803b158015611e3857600080fd5b505af1925050508015611e49575060015b5050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611e87578082015181840152602081019050611e6c565b60008484015250505050565b6000601f19601f8301169050919050565b6000611eaf82611e4d565b611eb98185611e58565b9350611ec9818560208601611e69565b611ed281611e93565b840191505092915050565b60006020820190508181036000830152611ef78184611ea4565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611f2f82611f04565b9050919050565b611f3f81611f24565b8114611f4a57600080fd5b50565b600081359050611f5c81611f36565b92915050565b6000819050919050565b611f7581611f62565b8114611f8057600080fd5b50565b600081359050611f9281611f6c565b92915050565b60008060408385031215611faf57611fae611eff565b5b6000611fbd85828601611f4d565b9250506020611fce85828601611f83565b9150509250929050565b60008115159050919050565b611fed81611fd8565b82525050565b60006020820190506120086000830184611fe4565b92915050565b61201781611fd8565b811461202257600080fd5b50565b6000813590506120348161200e565b92915050565b6000806040838503121561205157612050611eff565b5b600061205f85828601611f4d565b925050602061207085828601612025565b9150509250929050565b61208381611f62565b82525050565b600060208201905061209e600083018461207a565b92915050565b6000806000606084860312156120bd576120bc611eff565b5b60006120cb86828701611f4d565b93505060206120dc86828701611f4d565b92505060406120ed86828701611f83565b9150509250925092565b600060ff82169050919050565b61210d816120f7565b82525050565b60006020820190506121286000830184612104565b92915050565b60006020828403121561214457612143611eff565b5b600061215284828501611f83565b91505092915050565b61216481611f24565b82525050565b600060208201905061217f600083018461215b565b92915050565b60006020828403121561219b5761219a611eff565b5b60006121a984828501611f4d565b91505092915050565b600080604083850312156121c9576121c8611eff565b5b60006121d785828601611f4d565b92505060206121e885828601611f4d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061223957607f821691505b60208210810361224c5761224b6121f2565b5b50919050565b7f4c696d69747320616c72656164792072656d6f76656400000000000000000000600082015250565b6000612288601683611e58565b915061229382612252565b602082019050919050565b600060208201905081810360008301526122b78161227b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061232782611f62565b915061233283611f62565b925082612342576123416122be565b5b828204905092915050565b7f56616c7565206d757374206265206c657373207468616e206f7220657175616c60008201527f20746f20535550504c59202f2035300000000000000000000000000000000000602082015250565b60006123a9602f83611e58565b91506123b48261234d565b604082019050919050565b600060208201905081810360008301526123d88161239c565b9050919050565b7f54726164696e6720616c726561647920656e61626c6564000000000000000000600082015250565b6000612415601783611e58565b9150612420826123df565b602082019050919050565b6000602082019050818103600083015261244481612408565b9050919050565b600061245682611f62565b915061246183611f62565b9250828201905080821115612479576124786122ed565b5b92915050565b6000606082019050612494600083018661215b565b6124a1602083018561207a565b6124ae604083018461207a565b949350505050565b7f54726164696e67206973206e6f7420656e61626c656400000000000000000000600082015250565b60006124ec601683611e58565b91506124f7826124b6565b602082019050919050565b6000602082019050818103600083015261251b816124df565b9050919050565b600061252d82611f62565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361255f5761255e6122ed565b5b600182019050919050565b600061257582611f62565b915061258083611f62565b925082820261258e81611f62565b915082820484148315176125a5576125a46122ed565b5b5092915050565b60006125b782611f62565b91506125c283611f62565b92508282039050818111156125da576125d96122ed565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061264d81611f36565b92915050565b60006020828403121561266957612668611eff565b5b60006126778482850161263e565b91505092915050565b6000819050919050565b6000819050919050565b60006126af6126aa6126a584612680565b61268a565b611f62565b9050919050565b6126bf81612694565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6126fa81611f24565b82525050565b600061270c83836126f1565b60208301905092915050565b6000602082019050919050565b6000612730826126c5565b61273a81856126d0565b9350612745836126e1565b8060005b8381101561277657815161275d8882612700565b975061276883612718565b925050600181019050612749565b5085935050505092915050565b600061279e61279961279484611f04565b61268a565b611f04565b9050919050565b60006127b082612783565b9050919050565b60006127c2826127a5565b9050919050565b6127d2816127b7565b82525050565b600060a0820190506127ed600083018861207a565b6127fa60208301876126b6565b818103604083015261280c8186612725565b905061281b60608301856127c9565b612828608083018461207a565b969550505050505056fea264697066735822122013375532d4048ff7edaabfca4d15e06743a0742dc03e400b1ebbbd6918404c7d64736f6c63430008170033

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

0000000000000000000000004ac34116f82fdb752078498d4fcc44a2ed5439df

-----Decoded View---------------
Arg [0] : _sTAO (address): 0x4Ac34116f82FdB752078498D4fcc44A2eD5439dF

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000004ac34116f82fdb752078498d4fcc44a2ed5439df


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.