ETH Price: $3,465.45 (+2.20%)
Gas: 9 Gwei

Token

UNITAO (UNITAO)
 

Overview

Max Total Supply

10,000,000 UNITAO

Holders

1,425 (0.00%)

Market

Price

$0.01 @ 0.000002 ETH (+0.01%)

Onchain Market Cap

$72,536.63

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 UNITAO

Value
$0.00
0x382861832454f8ec98e726c41b9cf09834e91c16
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

UNITAO is a platform for developing decentralized applications on the Bittensor (TAO) ecosystem, UNITAO is also a subnet on Bittensor

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
UNITAO

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 9 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../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.
 *
 * By default, the owner account will be the one that deploys the contract. 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;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @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 {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @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 {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _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 9 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.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}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * 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.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the 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 override returns (uint8) {
        return 18;
    }

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

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

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

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

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

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

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

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

        return true;
    }

    /**
     * @dev Moves `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.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

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

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

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

File 3 of 9 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
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 4 of 9 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @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 amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

File 5 of 9 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 6 of 9 : 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 7 of 9 : 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 8 of 9 : 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 9 of 9 : UNITAO.sol
// Website: https://unitao.io
// Docs: https://docs.unitao.io
// Twitter: https://x.com/UNITAO_IO
// Telegram: https://t.me/UNITAO_IO

// SPDX-License-Identifier: MIT

pragma solidity 0.8.21;

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

contract UNITAO is Ownable, ERC20 {
    event RemovedLimits();
    event TradingEnabled();
    event SwapBack(uint256 amount);

    address public uniswapV2Pair;
    IUniswapV2Router02 immutable router =
        IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

    uint256 SUPPLY = 10_000_000 * 10 ** 18;

    uint256 totalFee = 5;
    uint256 maxAmount = SUPPLY / 100;
    uint256 public maxWallet;

    address public marketingWallet;
    address public _TAOFund;

    bool private tradingEnable;
    bool public limitsInEffect = true;
    uint256 public swapAt = SUPPLY / 1000;

    mapping(address => bool) public isExcludedFromFees;

    constructor() ERC20("UNITAO", "UNITAO") {
        marketingWallet = _msgSender();
        address pair = IUniswapV2Factory(router.factory()).createPair(
            address(this),
            router.WETH()
        );
        uniswapV2Pair = pair;

        isExcludedFromFees[_msgSender()] = true;
        isExcludedFromFees[address(this)] = true;
        isExcludedFromFees[address(router)] = true;
        _approve(_msgSender(), address(router), type(uint256).max);
        _mint(_msgSender(), SUPPLY);
    }

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

    function openTrading() external onlyOwner {
        tradingEnable = true;
        maxWallet = SUPPLY / 100;
        emit TradingEnabled();
    }

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

    function removeLimits() external onlyOwner {
        require(limitsInEffect, "Limits already removed");
        limitsInEffect = false;
        maxWallet = SUPPLY;
        emit RemovedLimits();
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        if (
            isExcludedFromFees[from] ||
            isExcludedFromFees[to] ||
            (to != uniswapV2Pair && from != uniswapV2Pair) ||
            inSwap
        ) {
            super._transfer(from, to, amount);
            return;
        }

        require(tradingEnable, "Trading is not open");

        if (limitsInEffect) {
            if (from == uniswapV2Pair || to == uniswapV2Pair) {
                require(amount <= maxAmount, "Max Tx Exceeded");
            }
            if (to != uniswapV2Pair) {
                require(
                    balanceOf(to) + amount <= maxWallet,
                    "Max Wallet Exceeded"
                );
            }
        }

        uint256 fees = (amount * totalFee) / 100;

        if (to == uniswapV2Pair && balanceOf(address(this)) >= swapAt) {
            swapBack();
        }

        if (fees > 0) {
            super._transfer(from, address(this), fees);
            amount = amount - fees;
        }
        super._transfer(from, to, amount);
    }

    bool private inSwap = false;

    modifier swapping() {
        inSwap = true;
        _;
        inSwap = false;
    }

    function swapBack() public swapping {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();

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

        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            swapAt,
            0,
            path,
            address(this),
            block.timestamp
        );

        emit SwapBack(swapAt);
    }

    function setMarketingWallet(address payable _marketingWallet) external {
        require(_msgSender() == marketingWallet, "Not authorized");
        marketingWallet = _marketingWallet;
    }

    function setTAOFund(address payable __TAOFund) external {
        require(
            _msgSender() == _TAOFund || _msgSender() == owner(),
            "Not authorized"
        );
        _TAOFund = __TAOFund;
    }

    receive() external payable {
        uint256 value = msg.value;
        uint256 amountToTAOFund = (value * 60) / 100; // 60%
        uint256 amountToMarketing = value - amountToTAOFund;

        (bool sent, ) = payable(marketingWallet).call{value: amountToMarketing}(
            ""
        );

        require(sent, "Failed to send Ether");

        (sent, ) = payable(_TAOFund).call{value: amountToTAOFund}("");

        require(sent, "Failed to send Ether");
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[],"name":"RemovedLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SwapBack","type":"event"},{"anonymous":false,"inputs":[],"name":"TradingEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_TAOFund","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_value","type":"bool"}],"name":"excludedFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","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":[{"internalType":"address payable","name":"_marketingWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"__TAOFund","type":"address"}],"name":"setTAOFund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapBack","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"updateSwapAt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a0604052737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff168152506a084595161401484a0000006007556005600855606460075462000070919062000953565b6009556001600c60156101000a81548160ff0219169083151502179055506103e8600754620000a0919062000953565b600d555f600f5f6101000a81548160ff021916908315150217905550348015620000c8575f80fd5b506040518060400160405280600681526020017f554e4954414f00000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f554e4954414f00000000000000000000000000000000000000000000000000008152506200015562000149620004ed60201b60201c565b620004f460201b60201c565b816004908162000166919062000be5565b50806005908162000178919062000be5565b5050506200018b620004ed60201b60201c565b600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f60805173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000217573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200023d919062000d2e565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002cb919062000d2e565b6040518363ffffffff1660e01b8152600401620002ea92919062000d6f565b6020604051808303815f875af115801562000307573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200032d919062000d2e565b90508060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600e5f62000384620004ed60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600e5f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600e5f60805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550620004c362000493620004ed60201b60201c565b6080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620005b560201b60201c565b620004e6620004d7620004ed60201b60201c565b6007546200078060201b60201c565b5062000fa6565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000626576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200061d9062000e1e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000697576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200068e9062000eb2565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000773919062000ee3565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007f1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007e89062000f4c565b60405180910390fd5b620008045f8383620008e660201b60201c565b8060035f82825462000817919062000f6c565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620008c7919062000ee3565b60405180910390a3620008e25f8383620008eb60201b60201c565b5050565b505050565b505050565b5f819050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6200095f82620008f0565b91506200096c83620008f0565b9250826200097f576200097e620008f9565b5b828204905092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000a0657607f821691505b60208210810362000a1c5762000a1b620009c1565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000a807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000a43565b62000a8c868362000a43565b95508019841693508086168417925050509392505050565b5f819050919050565b5f62000acd62000ac762000ac184620008f0565b62000aa4565b620008f0565b9050919050565b5f819050919050565b62000ae88362000aad565b62000b0062000af78262000ad4565b84845462000a4f565b825550505050565b5f90565b62000b1662000b08565b62000b2381848462000add565b505050565b5b8181101562000b4a5762000b3e5f8262000b0c565b60018101905062000b29565b5050565b601f82111562000b995762000b638162000a22565b62000b6e8462000a34565b8101602085101562000b7e578190505b62000b9662000b8d8562000a34565b83018262000b28565b50505b505050565b5f82821c905092915050565b5f62000bbb5f198460080262000b9e565b1980831691505092915050565b5f62000bd5838362000baa565b9150826002028217905092915050565b62000bf0826200098a565b67ffffffffffffffff81111562000c0c5762000c0b62000994565b5b62000c188254620009ee565b62000c2582828562000b4e565b5f60209050601f83116001811462000c5b575f841562000c46578287015190505b62000c52858262000bc8565b86555062000cc1565b601f19841662000c6b8662000a22565b5f5b8281101562000c945784890151825560018201915060208501945060208101905062000c6d565b8683101562000cb4578489015162000cb0601f89168262000baa565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000cf88262000ccd565b9050919050565b62000d0a8162000cec565b811462000d15575f80fd5b50565b5f8151905062000d288162000cff565b92915050565b5f6020828403121562000d465762000d4562000cc9565b5b5f62000d558482850162000d18565b91505092915050565b62000d698162000cec565b82525050565b5f60408201905062000d845f83018562000d5e565b62000d93602083018462000d5e565b9392505050565b5f82825260208201905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f62000e0660248362000d9a565b915062000e138262000daa565b604082019050919050565b5f6020820190508181035f83015262000e378162000df8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f62000e9a60228362000d9a565b915062000ea78262000e3e565b604082019050919050565b5f6020820190508181035f83015262000ecb8162000e8c565b9050919050565b62000edd81620008f0565b82525050565b5f60208201905062000ef85f83018462000ed2565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000f34601f8362000d9a565b915062000f418262000efe565b602082019050919050565b5f6020820190508181035f83015262000f658162000f26565b9050919050565b5f62000f7882620008f0565b915062000f8583620008f0565b925082820190508082111562000fa05762000f9f62000926565b5b92915050565b608051612d0962000fcd5f395f8181610d4701528181610e260152610e4f0152612d095ff3fe6080604052600436106101ba575f3560e01c80636ac5eeee116100eb578063a457c2d711610089578063c9567bf911610063578063c9567bf9146107b1578063dd62ed3e146107c7578063f2fde38b14610803578063f8b45b051461082b57610383565b8063a457c2d71461070f578063a9059cbb1461074b578063c0bf47801461078757610383565b8063751039fc116100c5578063751039fc1461067b57806375f0a874146106915780638da5cb5b146106bb57806395d89b41146106e557610383565b80636ac5eeee1461061357806370a0823114610629578063715018a61461066557610383565b8063316340ab116101585780634a62bb65116101325780634a62bb651461055d5780634fbee193146105875780635d098b38146105c35780636abfe846146105eb57610383565b8063316340ab146104cf57806339509351146104f757806349bd5a5e1461053357610383565b806316697fc51161019457806316697fc51461041757806318160ddd1461043f57806323b872dd14610469578063313ce567146104a557610383565b806306fdde031461038757806308aa2695146103b1578063095ea7b3146103db57610383565b36610383575f3490505f6064603c836101d39190611dbe565b6101dd9190611e2c565b90505f81836101ec9190611e5c565b90505f600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161023490611ebc565b5f6040518083038185875af1925050503d805f811461026e576040519150601f19603f3d011682016040523d82523d5f602084013e610273565b606091505b50509050806102b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102ae90611f2a565b60405180910390fd5b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16836040516102fc90611ebc565b5f6040518083038185875af1925050503d805f8114610336576040519150601f19603f3d011682016040523d82523d5f602084013e61033b565b606091505b50508091505080610381576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161037890611f2a565b60405180910390fd5b005b5f80fd5b348015610392575f80fd5b5061039b610855565b6040516103a89190611fc2565b60405180910390f35b3480156103bc575f80fd5b506103c56108e5565b6040516103d29190611ff1565b60405180910390f35b3480156103e6575f80fd5b5061040160048036038101906103fc9190612092565b6108eb565b60405161040e91906120ea565b60405180910390f35b348015610422575f80fd5b5061043d6004803603810190610438919061212d565b61090d565b005b34801561044a575f80fd5b5061045361096d565b6040516104609190611ff1565b60405180910390f35b348015610474575f80fd5b5061048f600480360381019061048a919061216b565b610976565b60405161049c91906120ea565b60405180910390f35b3480156104b0575f80fd5b506104b96109a4565b6040516104c691906121d6565b60405180910390f35b3480156104da575f80fd5b506104f560048036038101906104f0919061222a565b6109ac565b005b348015610502575f80fd5b5061051d60048036038101906105189190612092565b610ac9565b60405161052a91906120ea565b60405180910390f35b34801561053e575f80fd5b50610547610aff565b6040516105549190612264565b60405180910390f35b348015610568575f80fd5b50610571610b24565b60405161057e91906120ea565b60405180910390f35b348015610592575f80fd5b506105ad60048036038101906105a8919061227d565b610b37565b6040516105ba91906120ea565b60405180910390f35b3480156105ce575f80fd5b506105e960048036038101906105e4919061222a565b610b54565b005b3480156105f6575f80fd5b50610611600480360381019061060c91906122a8565b610c2d565b005b34801561061e575f80fd5b50610627610c90565b005b348015610634575f80fd5b5061064f600480360381019061064a919061227d565b610f32565b60405161065c9190611ff1565b60405180910390f35b348015610670575f80fd5b50610679610f78565b005b348015610686575f80fd5b5061068f610f8b565b005b34801561069c575f80fd5b506106a5611033565b6040516106b29190612264565b60405180910390f35b3480156106c6575f80fd5b506106cf611058565b6040516106dc9190612264565b60405180910390f35b3480156106f0575f80fd5b506106f961107f565b6040516107069190611fc2565b60405180910390f35b34801561071a575f80fd5b5061073560048036038101906107309190612092565b61110f565b60405161074291906120ea565b60405180910390f35b348015610756575f80fd5b50610771600480360381019061076c9190612092565b611184565b60405161077e91906120ea565b60405180910390f35b348015610792575f80fd5b5061079b6111a6565b6040516107a89190612264565b60405180910390f35b3480156107bc575f80fd5b506107c56111cb565b005b3480156107d2575f80fd5b506107ed60048036038101906107e891906122d3565b611231565b6040516107fa9190611ff1565b60405180910390f35b34801561080e575f80fd5b506108296004803603810190610824919061227d565b6112b3565b005b348015610836575f80fd5b5061083f611335565b60405161084c9190611ff1565b60405180910390f35b6060600480546108649061233e565b80601f01602080910402602001604051908101604052809291908181526020018280546108909061233e565b80156108db5780601f106108b2576101008083540402835291602001916108db565b820191905f5260205f20905b8154815290600101906020018083116108be57829003601f168201915b5050505050905090565b600d5481565b5f806108f561133b565b9050610902818585611342565b600191505092915050565b610915611505565b80600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f600354905090565b5f8061098061133b565b905061098d858285611583565b61099885858561160e565b60019150509392505050565b5f6012905090565b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166109ec61133b565b73ffffffffffffffffffffffffffffffffffffffff161480610a475750610a11611058565b73ffffffffffffffffffffffffffffffffffffffff16610a2f61133b565b73ffffffffffffffffffffffffffffffffffffffff16145b610a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7d906123b8565b60405180910390fd5b80600c5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f80610ad361133b565b9050610af4818585610ae58589611231565b610aef91906123d6565b611342565b600191505092915050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c60159054906101000a900460ff1681565b600e602052805f5260405f205f915054906101000a900460ff1681565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610b9461133b565b73ffffffffffffffffffffffffffffffffffffffff1614610bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be1906123b8565b60405180910390fd5b80600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610c35611505565b6032600754610c449190611e2c565b811115610c86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7d90612479565b60405180910390fd5b80600d8190555050565b6001600f5f6101000a81548160ff0219169083151502179055505f600267ffffffffffffffff811115610cc657610cc5612497565b5b604051908082528060200260200182016040528015610cf45781602001602082028036833780820191505090505b50905030815f81518110610d0b57610d0a6124c4565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610dae573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dd29190612505565b81600181518110610de657610de56124c4565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050610e4d307f0000000000000000000000000000000000000000000000000000000000000000600d54611342565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947600d545f8430426040518663ffffffff1660e01b8152600401610eb0959493929190612629565b5f604051808303815f87803b158015610ec7575f80fd5b505af1158015610ed9573d5f803e3d5ffd5b505050507fd851aeb8e2074b285cc12da5e2fbf79e642e38f62ef8e59590790c157491ee05600d54604051610f0e9190611ff1565b60405180910390a1505f600f5f6101000a81548160ff021916908315150217905550565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610f80611505565b610f895f611a4e565b565b610f93611505565b600c60159054906101000a900460ff16610fe2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd9906126cb565b60405180910390fd5b5f600c60156101000a81548160ff021916908315150217905550600754600a819055507fa4ffae85e880608d5d4365c2b682786545d136145537788e7e0940dff9f0b98c60405160405180910390a1565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461108e9061233e565b80601f01602080910402602001604051908101604052809291908181526020018280546110ba9061233e565b80156111055780601f106110dc57610100808354040283529160200191611105565b820191905f5260205f20905b8154815290600101906020018083116110e857829003601f168201915b5050505050905090565b5f8061111961133b565b90505f6111268286611231565b90508381101561116b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116290612759565b60405180910390fd5b6111788286868403611342565b60019250505092915050565b5f8061118e61133b565b905061119b81858561160e565b600191505092915050565b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6111d3611505565b6001600c60146101000a81548160ff02191690831515021790555060646007546111fd9190611e2c565b600a819055507f799663458a5ef2936f7fa0c99b3336c69c25890f82974f04e811e5bb359186c760405160405180910390a1565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6112bb611505565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611329576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611320906127e7565b60405180910390fd5b61133281611a4e565b50565b600a5481565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a790612875565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361141e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141590612903565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114f89190611ff1565b60405180910390a3505050565b61150d61133b565b73ffffffffffffffffffffffffffffffffffffffff1661152b611058565b73ffffffffffffffffffffffffffffffffffffffff1614611581576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115789061296b565b60405180910390fd5b565b5f61158e8484611231565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461160857818110156115fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f1906129d3565b60405180910390fd5b6116078484848403611342565b5b50505050565b600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806116a95750600e5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b8061175a575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611759575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b806117705750600f5f9054906101000a900460ff165b1561178557611780838383611b0f565b611a49565b600c60149054906101000a900460ff166117d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cb90612a3b565b60405180910390fd5b600c60159054906101000a900460ff16156119895760065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611890575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b156118db576009548111156118da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d190612aa3565b60405180910390fd5b5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461198857600a548161193c84610f32565b61194691906123d6565b1115611987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197e90612b0b565b60405180910390fd5b5b5b5f60646008548361199a9190611dbe565b6119a49190611e2c565b905060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015611a0c5750600d54611a0930610f32565b10155b15611a1a57611a19610c90565b5b5f811115611a3c57611a2d843083611b0f565b8082611a399190611e5c565b91505b611a47848484611b0f565b505b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7490612b99565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be290612c27565b60405180910390fd5b611bf6838383611d7e565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7190612cb5565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d659190611ff1565b60405180910390a3611d78848484611d83565b50505050565b505050565b505050565b5f819050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611dc882611d88565b9150611dd383611d88565b9250828202611de181611d88565b91508282048414831517611df857611df7611d91565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611e3682611d88565b9150611e4183611d88565b925082611e5157611e50611dff565b5b828204905092915050565b5f611e6682611d88565b9150611e7183611d88565b9250828203905081811115611e8957611e88611d91565b5b92915050565b5f81905092915050565b50565b5f611ea75f83611e8f565b9150611eb282611e99565b5f82019050919050565b5f611ec682611e9c565b9150819050919050565b5f82825260208201905092915050565b7f4661696c656420746f2073656e642045746865720000000000000000000000005f82015250565b5f611f14601483611ed0565b9150611f1f82611ee0565b602082019050919050565b5f6020820190508181035f830152611f4181611f08565b9050919050565b5f81519050919050565b5f5b83811015611f6f578082015181840152602081019050611f54565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611f9482611f48565b611f9e8185611ed0565b9350611fae818560208601611f52565b611fb781611f7a565b840191505092915050565b5f6020820190508181035f830152611fda8184611f8a565b905092915050565b611feb81611d88565b82525050565b5f6020820190506120045f830184611fe2565b92915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6120378261200e565b9050919050565b6120478161202d565b8114612051575f80fd5b50565b5f813590506120628161203e565b92915050565b61207181611d88565b811461207b575f80fd5b50565b5f8135905061208c81612068565b92915050565b5f80604083850312156120a8576120a761200a565b5b5f6120b585828601612054565b92505060206120c68582860161207e565b9150509250929050565b5f8115159050919050565b6120e4816120d0565b82525050565b5f6020820190506120fd5f8301846120db565b92915050565b61210c816120d0565b8114612116575f80fd5b50565b5f8135905061212781612103565b92915050565b5f80604083850312156121435761214261200a565b5b5f61215085828601612054565b925050602061216185828601612119565b9150509250929050565b5f805f606084860312156121825761218161200a565b5b5f61218f86828701612054565b93505060206121a086828701612054565b92505060406121b18682870161207e565b9150509250925092565b5f60ff82169050919050565b6121d0816121bb565b82525050565b5f6020820190506121e95f8301846121c7565b92915050565b5f6121f98261200e565b9050919050565b612209816121ef565b8114612213575f80fd5b50565b5f8135905061222481612200565b92915050565b5f6020828403121561223f5761223e61200a565b5b5f61224c84828501612216565b91505092915050565b61225e8161202d565b82525050565b5f6020820190506122775f830184612255565b92915050565b5f602082840312156122925761229161200a565b5b5f61229f84828501612054565b91505092915050565b5f602082840312156122bd576122bc61200a565b5b5f6122ca8482850161207e565b91505092915050565b5f80604083850312156122e9576122e861200a565b5b5f6122f685828601612054565b925050602061230785828601612054565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061235557607f821691505b60208210810361236857612367612311565b5b50919050565b7f4e6f7420617574686f72697a65640000000000000000000000000000000000005f82015250565b5f6123a2600e83611ed0565b91506123ad8261236e565b602082019050919050565b5f6020820190508181035f8301526123cf81612396565b9050919050565b5f6123e082611d88565b91506123eb83611d88565b925082820190508082111561240357612402611d91565b5b92915050565b7f56616c7565206d757374206265206c657373207468616e206f7220657175616c5f8201527f20746f20535550504c59202f2035300000000000000000000000000000000000602082015250565b5f612463602f83611ed0565b915061246e82612409565b604082019050919050565b5f6020820190508181035f83015261249081612457565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506124ff8161203e565b92915050565b5f6020828403121561251a5761251961200a565b5b5f612527848285016124f1565b91505092915050565b5f819050919050565b5f819050919050565b5f61255c61255761255284612530565b612539565b611d88565b9050919050565b61256c81612542565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6125a48161202d565b82525050565b5f6125b5838361259b565b60208301905092915050565b5f602082019050919050565b5f6125d782612572565b6125e1818561257c565b93506125ec8361258c565b805f5b8381101561261c57815161260388826125aa565b975061260e836125c1565b9250506001810190506125ef565b5085935050505092915050565b5f60a08201905061263c5f830188611fe2565b6126496020830187612563565b818103604083015261265b81866125cd565b905061266a6060830185612255565b6126776080830184611fe2565b9695505050505050565b7f4c696d69747320616c72656164792072656d6f766564000000000000000000005f82015250565b5f6126b5601683611ed0565b91506126c082612681565b602082019050919050565b5f6020820190508181035f8301526126e2816126a9565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612743602583611ed0565b915061274e826126e9565b604082019050919050565b5f6020820190508181035f83015261277081612737565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6127d1602683611ed0565b91506127dc82612777565b604082019050919050565b5f6020820190508181035f8301526127fe816127c5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61285f602483611ed0565b915061286a82612805565b604082019050919050565b5f6020820190508181035f83015261288c81612853565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6128ed602283611ed0565b91506128f882612893565b604082019050919050565b5f6020820190508181035f83015261291a816128e1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612955602083611ed0565b915061296082612921565b602082019050919050565b5f6020820190508181035f83015261298281612949565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6129bd601d83611ed0565b91506129c882612989565b602082019050919050565b5f6020820190508181035f8301526129ea816129b1565b9050919050565b7f54726164696e67206973206e6f74206f70656e000000000000000000000000005f82015250565b5f612a25601383611ed0565b9150612a30826129f1565b602082019050919050565b5f6020820190508181035f830152612a5281612a19565b9050919050565b7f4d617820547820457863656564656400000000000000000000000000000000005f82015250565b5f612a8d600f83611ed0565b9150612a9882612a59565b602082019050919050565b5f6020820190508181035f830152612aba81612a81565b9050919050565b7f4d61782057616c6c6574204578636565646564000000000000000000000000005f82015250565b5f612af5601383611ed0565b9150612b0082612ac1565b602082019050919050565b5f6020820190508181035f830152612b2281612ae9565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612b83602583611ed0565b9150612b8e82612b29565b604082019050919050565b5f6020820190508181035f830152612bb081612b77565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612c11602383611ed0565b9150612c1c82612bb7565b604082019050919050565b5f6020820190508181035f830152612c3e81612c05565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f612c9f602683611ed0565b9150612caa82612c45565b604082019050919050565b5f6020820190508181035f830152612ccc81612c93565b905091905056fea2646970667358221220f13d0ae36244033cb50772a9c3b43367215a6d9d289366f79badb390f0cd9a6864736f6c63430008150033

Deployed Bytecode

0x6080604052600436106101ba575f3560e01c80636ac5eeee116100eb578063a457c2d711610089578063c9567bf911610063578063c9567bf9146107b1578063dd62ed3e146107c7578063f2fde38b14610803578063f8b45b051461082b57610383565b8063a457c2d71461070f578063a9059cbb1461074b578063c0bf47801461078757610383565b8063751039fc116100c5578063751039fc1461067b57806375f0a874146106915780638da5cb5b146106bb57806395d89b41146106e557610383565b80636ac5eeee1461061357806370a0823114610629578063715018a61461066557610383565b8063316340ab116101585780634a62bb65116101325780634a62bb651461055d5780634fbee193146105875780635d098b38146105c35780636abfe846146105eb57610383565b8063316340ab146104cf57806339509351146104f757806349bd5a5e1461053357610383565b806316697fc51161019457806316697fc51461041757806318160ddd1461043f57806323b872dd14610469578063313ce567146104a557610383565b806306fdde031461038757806308aa2695146103b1578063095ea7b3146103db57610383565b36610383575f3490505f6064603c836101d39190611dbe565b6101dd9190611e2c565b90505f81836101ec9190611e5c565b90505f600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161023490611ebc565b5f6040518083038185875af1925050503d805f811461026e576040519150601f19603f3d011682016040523d82523d5f602084013e610273565b606091505b50509050806102b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102ae90611f2a565b60405180910390fd5b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16836040516102fc90611ebc565b5f6040518083038185875af1925050503d805f8114610336576040519150601f19603f3d011682016040523d82523d5f602084013e61033b565b606091505b50508091505080610381576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161037890611f2a565b60405180910390fd5b005b5f80fd5b348015610392575f80fd5b5061039b610855565b6040516103a89190611fc2565b60405180910390f35b3480156103bc575f80fd5b506103c56108e5565b6040516103d29190611ff1565b60405180910390f35b3480156103e6575f80fd5b5061040160048036038101906103fc9190612092565b6108eb565b60405161040e91906120ea565b60405180910390f35b348015610422575f80fd5b5061043d6004803603810190610438919061212d565b61090d565b005b34801561044a575f80fd5b5061045361096d565b6040516104609190611ff1565b60405180910390f35b348015610474575f80fd5b5061048f600480360381019061048a919061216b565b610976565b60405161049c91906120ea565b60405180910390f35b3480156104b0575f80fd5b506104b96109a4565b6040516104c691906121d6565b60405180910390f35b3480156104da575f80fd5b506104f560048036038101906104f0919061222a565b6109ac565b005b348015610502575f80fd5b5061051d60048036038101906105189190612092565b610ac9565b60405161052a91906120ea565b60405180910390f35b34801561053e575f80fd5b50610547610aff565b6040516105549190612264565b60405180910390f35b348015610568575f80fd5b50610571610b24565b60405161057e91906120ea565b60405180910390f35b348015610592575f80fd5b506105ad60048036038101906105a8919061227d565b610b37565b6040516105ba91906120ea565b60405180910390f35b3480156105ce575f80fd5b506105e960048036038101906105e4919061222a565b610b54565b005b3480156105f6575f80fd5b50610611600480360381019061060c91906122a8565b610c2d565b005b34801561061e575f80fd5b50610627610c90565b005b348015610634575f80fd5b5061064f600480360381019061064a919061227d565b610f32565b60405161065c9190611ff1565b60405180910390f35b348015610670575f80fd5b50610679610f78565b005b348015610686575f80fd5b5061068f610f8b565b005b34801561069c575f80fd5b506106a5611033565b6040516106b29190612264565b60405180910390f35b3480156106c6575f80fd5b506106cf611058565b6040516106dc9190612264565b60405180910390f35b3480156106f0575f80fd5b506106f961107f565b6040516107069190611fc2565b60405180910390f35b34801561071a575f80fd5b5061073560048036038101906107309190612092565b61110f565b60405161074291906120ea565b60405180910390f35b348015610756575f80fd5b50610771600480360381019061076c9190612092565b611184565b60405161077e91906120ea565b60405180910390f35b348015610792575f80fd5b5061079b6111a6565b6040516107a89190612264565b60405180910390f35b3480156107bc575f80fd5b506107c56111cb565b005b3480156107d2575f80fd5b506107ed60048036038101906107e891906122d3565b611231565b6040516107fa9190611ff1565b60405180910390f35b34801561080e575f80fd5b506108296004803603810190610824919061227d565b6112b3565b005b348015610836575f80fd5b5061083f611335565b60405161084c9190611ff1565b60405180910390f35b6060600480546108649061233e565b80601f01602080910402602001604051908101604052809291908181526020018280546108909061233e565b80156108db5780601f106108b2576101008083540402835291602001916108db565b820191905f5260205f20905b8154815290600101906020018083116108be57829003601f168201915b5050505050905090565b600d5481565b5f806108f561133b565b9050610902818585611342565b600191505092915050565b610915611505565b80600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f600354905090565b5f8061098061133b565b905061098d858285611583565b61099885858561160e565b60019150509392505050565b5f6012905090565b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166109ec61133b565b73ffffffffffffffffffffffffffffffffffffffff161480610a475750610a11611058565b73ffffffffffffffffffffffffffffffffffffffff16610a2f61133b565b73ffffffffffffffffffffffffffffffffffffffff16145b610a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7d906123b8565b60405180910390fd5b80600c5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f80610ad361133b565b9050610af4818585610ae58589611231565b610aef91906123d6565b611342565b600191505092915050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c60159054906101000a900460ff1681565b600e602052805f5260405f205f915054906101000a900460ff1681565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610b9461133b565b73ffffffffffffffffffffffffffffffffffffffff1614610bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be1906123b8565b60405180910390fd5b80600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610c35611505565b6032600754610c449190611e2c565b811115610c86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7d90612479565b60405180910390fd5b80600d8190555050565b6001600f5f6101000a81548160ff0219169083151502179055505f600267ffffffffffffffff811115610cc657610cc5612497565b5b604051908082528060200260200182016040528015610cf45781602001602082028036833780820191505090505b50905030815f81518110610d0b57610d0a6124c4565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610dae573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dd29190612505565b81600181518110610de657610de56124c4565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050610e4d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d600d54611342565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947600d545f8430426040518663ffffffff1660e01b8152600401610eb0959493929190612629565b5f604051808303815f87803b158015610ec7575f80fd5b505af1158015610ed9573d5f803e3d5ffd5b505050507fd851aeb8e2074b285cc12da5e2fbf79e642e38f62ef8e59590790c157491ee05600d54604051610f0e9190611ff1565b60405180910390a1505f600f5f6101000a81548160ff021916908315150217905550565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610f80611505565b610f895f611a4e565b565b610f93611505565b600c60159054906101000a900460ff16610fe2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd9906126cb565b60405180910390fd5b5f600c60156101000a81548160ff021916908315150217905550600754600a819055507fa4ffae85e880608d5d4365c2b682786545d136145537788e7e0940dff9f0b98c60405160405180910390a1565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461108e9061233e565b80601f01602080910402602001604051908101604052809291908181526020018280546110ba9061233e565b80156111055780601f106110dc57610100808354040283529160200191611105565b820191905f5260205f20905b8154815290600101906020018083116110e857829003601f168201915b5050505050905090565b5f8061111961133b565b90505f6111268286611231565b90508381101561116b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116290612759565b60405180910390fd5b6111788286868403611342565b60019250505092915050565b5f8061118e61133b565b905061119b81858561160e565b600191505092915050565b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6111d3611505565b6001600c60146101000a81548160ff02191690831515021790555060646007546111fd9190611e2c565b600a819055507f799663458a5ef2936f7fa0c99b3336c69c25890f82974f04e811e5bb359186c760405160405180910390a1565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6112bb611505565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611329576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611320906127e7565b60405180910390fd5b61133281611a4e565b50565b600a5481565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a790612875565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361141e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141590612903565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114f89190611ff1565b60405180910390a3505050565b61150d61133b565b73ffffffffffffffffffffffffffffffffffffffff1661152b611058565b73ffffffffffffffffffffffffffffffffffffffff1614611581576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115789061296b565b60405180910390fd5b565b5f61158e8484611231565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461160857818110156115fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f1906129d3565b60405180910390fd5b6116078484848403611342565b5b50505050565b600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806116a95750600e5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b8061175a575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611759575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b806117705750600f5f9054906101000a900460ff165b1561178557611780838383611b0f565b611a49565b600c60149054906101000a900460ff166117d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cb90612a3b565b60405180910390fd5b600c60159054906101000a900460ff16156119895760065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611890575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b156118db576009548111156118da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d190612aa3565b60405180910390fd5b5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461198857600a548161193c84610f32565b61194691906123d6565b1115611987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197e90612b0b565b60405180910390fd5b5b5b5f60646008548361199a9190611dbe565b6119a49190611e2c565b905060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015611a0c5750600d54611a0930610f32565b10155b15611a1a57611a19610c90565b5b5f811115611a3c57611a2d843083611b0f565b8082611a399190611e5c565b91505b611a47848484611b0f565b505b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7490612b99565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be290612c27565b60405180910390fd5b611bf6838383611d7e565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7190612cb5565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d659190611ff1565b60405180910390a3611d78848484611d83565b50505050565b505050565b505050565b5f819050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611dc882611d88565b9150611dd383611d88565b9250828202611de181611d88565b91508282048414831517611df857611df7611d91565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611e3682611d88565b9150611e4183611d88565b925082611e5157611e50611dff565b5b828204905092915050565b5f611e6682611d88565b9150611e7183611d88565b9250828203905081811115611e8957611e88611d91565b5b92915050565b5f81905092915050565b50565b5f611ea75f83611e8f565b9150611eb282611e99565b5f82019050919050565b5f611ec682611e9c565b9150819050919050565b5f82825260208201905092915050565b7f4661696c656420746f2073656e642045746865720000000000000000000000005f82015250565b5f611f14601483611ed0565b9150611f1f82611ee0565b602082019050919050565b5f6020820190508181035f830152611f4181611f08565b9050919050565b5f81519050919050565b5f5b83811015611f6f578082015181840152602081019050611f54565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611f9482611f48565b611f9e8185611ed0565b9350611fae818560208601611f52565b611fb781611f7a565b840191505092915050565b5f6020820190508181035f830152611fda8184611f8a565b905092915050565b611feb81611d88565b82525050565b5f6020820190506120045f830184611fe2565b92915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6120378261200e565b9050919050565b6120478161202d565b8114612051575f80fd5b50565b5f813590506120628161203e565b92915050565b61207181611d88565b811461207b575f80fd5b50565b5f8135905061208c81612068565b92915050565b5f80604083850312156120a8576120a761200a565b5b5f6120b585828601612054565b92505060206120c68582860161207e565b9150509250929050565b5f8115159050919050565b6120e4816120d0565b82525050565b5f6020820190506120fd5f8301846120db565b92915050565b61210c816120d0565b8114612116575f80fd5b50565b5f8135905061212781612103565b92915050565b5f80604083850312156121435761214261200a565b5b5f61215085828601612054565b925050602061216185828601612119565b9150509250929050565b5f805f606084860312156121825761218161200a565b5b5f61218f86828701612054565b93505060206121a086828701612054565b92505060406121b18682870161207e565b9150509250925092565b5f60ff82169050919050565b6121d0816121bb565b82525050565b5f6020820190506121e95f8301846121c7565b92915050565b5f6121f98261200e565b9050919050565b612209816121ef565b8114612213575f80fd5b50565b5f8135905061222481612200565b92915050565b5f6020828403121561223f5761223e61200a565b5b5f61224c84828501612216565b91505092915050565b61225e8161202d565b82525050565b5f6020820190506122775f830184612255565b92915050565b5f602082840312156122925761229161200a565b5b5f61229f84828501612054565b91505092915050565b5f602082840312156122bd576122bc61200a565b5b5f6122ca8482850161207e565b91505092915050565b5f80604083850312156122e9576122e861200a565b5b5f6122f685828601612054565b925050602061230785828601612054565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061235557607f821691505b60208210810361236857612367612311565b5b50919050565b7f4e6f7420617574686f72697a65640000000000000000000000000000000000005f82015250565b5f6123a2600e83611ed0565b91506123ad8261236e565b602082019050919050565b5f6020820190508181035f8301526123cf81612396565b9050919050565b5f6123e082611d88565b91506123eb83611d88565b925082820190508082111561240357612402611d91565b5b92915050565b7f56616c7565206d757374206265206c657373207468616e206f7220657175616c5f8201527f20746f20535550504c59202f2035300000000000000000000000000000000000602082015250565b5f612463602f83611ed0565b915061246e82612409565b604082019050919050565b5f6020820190508181035f83015261249081612457565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506124ff8161203e565b92915050565b5f6020828403121561251a5761251961200a565b5b5f612527848285016124f1565b91505092915050565b5f819050919050565b5f819050919050565b5f61255c61255761255284612530565b612539565b611d88565b9050919050565b61256c81612542565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6125a48161202d565b82525050565b5f6125b5838361259b565b60208301905092915050565b5f602082019050919050565b5f6125d782612572565b6125e1818561257c565b93506125ec8361258c565b805f5b8381101561261c57815161260388826125aa565b975061260e836125c1565b9250506001810190506125ef565b5085935050505092915050565b5f60a08201905061263c5f830188611fe2565b6126496020830187612563565b818103604083015261265b81866125cd565b905061266a6060830185612255565b6126776080830184611fe2565b9695505050505050565b7f4c696d69747320616c72656164792072656d6f766564000000000000000000005f82015250565b5f6126b5601683611ed0565b91506126c082612681565b602082019050919050565b5f6020820190508181035f8301526126e2816126a9565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612743602583611ed0565b915061274e826126e9565b604082019050919050565b5f6020820190508181035f83015261277081612737565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6127d1602683611ed0565b91506127dc82612777565b604082019050919050565b5f6020820190508181035f8301526127fe816127c5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61285f602483611ed0565b915061286a82612805565b604082019050919050565b5f6020820190508181035f83015261288c81612853565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6128ed602283611ed0565b91506128f882612893565b604082019050919050565b5f6020820190508181035f83015261291a816128e1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612955602083611ed0565b915061296082612921565b602082019050919050565b5f6020820190508181035f83015261298281612949565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6129bd601d83611ed0565b91506129c882612989565b602082019050919050565b5f6020820190508181035f8301526129ea816129b1565b9050919050565b7f54726164696e67206973206e6f74206f70656e000000000000000000000000005f82015250565b5f612a25601383611ed0565b9150612a30826129f1565b602082019050919050565b5f6020820190508181035f830152612a5281612a19565b9050919050565b7f4d617820547820457863656564656400000000000000000000000000000000005f82015250565b5f612a8d600f83611ed0565b9150612a9882612a59565b602082019050919050565b5f6020820190508181035f830152612aba81612a81565b9050919050565b7f4d61782057616c6c6574204578636565646564000000000000000000000000005f82015250565b5f612af5601383611ed0565b9150612b0082612ac1565b602082019050919050565b5f6020820190508181035f830152612b2281612ae9565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612b83602583611ed0565b9150612b8e82612b29565b604082019050919050565b5f6020820190508181035f830152612bb081612b77565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612c11602383611ed0565b9150612c1c82612bb7565b604082019050919050565b5f6020820190508181035f830152612c3e81612c05565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f612c9f602683611ed0565b9150612caa82612c45565b604082019050919050565b5f6020820190508181035f830152612ccc81612c93565b905091905056fea2646970667358221220f13d0ae36244033cb50772a9c3b43367215a6d9d289366f79badb390f0cd9a6864736f6c63430008150033

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.