ETH Price: $3,282.08 (+1.06%)
Gas: 1 Gwei

Token

zkGHOST (ZKG)
 

Overview

Max Total Supply

1,000,000,000 ZKG

Holders

173

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
34,143.283056087505443711 ZKG

Value
$0.00
0x38c12a1c4f39826fba9bc42d0f062741d238c1ab
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
ZKGhost

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : ZKGhost.sol
// 
// Website: https://zkghost.io/ 
// dApp: https://app.zkghost.io/
// Telegram: https://t.me/ZKGhost_ETH
// Twitter: https://twitter.com/zkghost
// 

pragma solidity ^0.8.17;

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

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

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

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

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

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

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

    /**
     * @dev Initializes the contract setting `_msgSender()` 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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

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

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

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

interface IPairFactory {
    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

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

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

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

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

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

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

    function initialize(address, address) external;
}

interface IRouter {
    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 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    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 returns (string memory) {
        return _name;
    }

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

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

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

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

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

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

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

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

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

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

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

        emit Transfer(from, to, value);
    }

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

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

    /**
     * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

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

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

contract ZKGhost is ERC20, Ownable {
    uint256 public buyFee = 0;
    uint256 public sellFee = 0;
    uint256 public supply = 1e9 * 1e18;

    IRouter private router;
    address public pair;
    address private constant burnAddress = address(0x1);

    uint256 public maxWallet = (supply * 2)/100;
    uint256 public maxTransaction = maxWallet;
    uint256 public swapThreshold = (supply * 2)/1000;
    uint256 public maxSwap = (supply * 10)/1000;
    bool public started = false;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedFromnMax;

    bool private isSwapping;
    address private marketingWallet;

    constructor() ERC20("zkGHOST", "ZKG") {
        router = IRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        marketingWallet = payable(owner());

        pair = IPairFactory(router.factory()).createPair(address(this), router.WETH());
        excludeFromMax(address(pair), true);

        excludeFromMax(address(router), true);
        excludeFromFees(address(router), true);
        excludeFromMax(address(this), true);
        excludeFromFees(address(this), true);
        excludeFromMax(owner(), true);
        excludeFromFees(owner(), true);
        excludeFromMax(marketingWallet, true);
        excludeFromFees(marketingWallet, true);
        excludeFromMax(burnAddress, true);
        excludeFromFees(burnAddress, true);

        // mint entire supply to deployer
        _mint(owner(), supply);
    }

    function burn(uint256 amount) external {
        _burn(_msgSender(), amount);
    }

    receive() external payable {}

    function openTrading() external onlyOwner() {
        require(!started,"Trading is already open");
        started = true;
    }

    function setLimits(uint256 _maxTransactionAmount, uint256 _maxWallet) external onlyOwner {
        maxTransaction = _maxTransactionAmount;
        maxWallet = _maxWallet;
    }

    function setFee(uint256 _buyFee, uint256 _sellFee) external onlyOwner {
        require(_buyFee <= 40 && _sellFee <= 40, "Fee too high");
        buyFee = _buyFee;
        sellFee = _sellFee;
    }

    function excludeFromMax(address updAds, bool isEx) public onlyOwner {
        _isExcludedFromnMax[updAds] = isEx;
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
    }

    function setSwapThreshold(uint256 _amount) external {
        if (_msgSender() == marketingWallet) {
            swapThreshold = _amount;
        }
    }

    function setMaxSwap(uint256 _amount) external {
        if (_msgSender() == marketingWallet) {
            maxSwap = _amount;
        }
    }

    function setMarketingWallet(address _marketingWallet) external {
        if (_msgSender() == marketingWallet) {
            marketingWallet = _marketingWallet;
        }
    }

    function swap(uint256 percent) external {
        if (_msgSender() == marketingWallet) {
            uint256 contractBalance = balanceOf(address(this));
            uint256 swapAmount = contractBalance * percent / 100;
            swapTokensForEth(swapAmount);
        }
    }

    function retrieveEth() external {
        require(address(this).balance > 0, "Empty balance");
        if (_msgSender() == marketingWallet) {
            payable(msg.sender).transfer(address(this).balance);
        }
    }

    function withdrawToken(address _address) public {
        require(IERC20(_address).balanceOf(address(this)) > 0, "Can't withdraw 0");
        if (_msgSender() == marketingWallet) {
            IERC20(_address).transfer(msg.sender, IERC20(_address).balanceOf(address(this)));
        }
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    function _update(address from, address to, uint256 amount) internal override {
        if (amount == 0) {
            super._update(from, to, 0);
            return;
        }

        if (from != owner() && to != owner() && to != address(0) && to != address(0x1) && !isSwapping) {
            if (!started) {
                require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading has not started.");
            }
            if (from == pair && !_isExcludedFromnMax[to]) {
                require(amount <= maxTransaction, "Buying more than the maxTransactionAmount.");
                require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
            }
            else if (to == pair && !_isExcludedFromnMax[from]) {
                require(amount <= maxTransaction, "Selling more than the maxTransactionAmount.");
            }
            else if (!_isExcludedFromnMax[to]) {
                require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));
        bool canSwap = contractTokenBalance > swapThreshold;
        if (started && canSwap && !isSwapping && from != pair && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
            isSwapping = true;
            swapBack();
            isSwapping = false;
        }

        bool takeFee = !isSwapping && !_isExcludedFromFees[from] && !_isExcludedFromFees[to];

        uint256 fees = 0;
        if (takeFee) {
            if (to == pair) {
                fees = amount * sellFee / 100;
            }
            else if(from == pair) {
                fees = amount * buyFee / 100;
            }
            if (fees > 0) {
                super._update(from, address(this), fees);
            }
            amount -= fees;
        }
        super._update(from, to, amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();
        _approve(address(this), address(router), tokenAmount);
        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            marketingWallet,
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        if (contractBalance == 0) {
            return;
        }

        uint256 tokensToSwap = contractBalance;
        if (tokensToSwap > maxSwap) {
            tokensToSwap = maxSwap;
        }
        swapTokensForEth(tokensToSwap);
    }
}

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"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyFee","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":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"retrieveEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyFee","type":"uint256"},{"internalType":"uint256","name":"_sellFee","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTransactionAmount","type":"uint256"},{"internalType":"uint256","name":"_maxWallet","type":"uint256"}],"name":"setLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setSwapThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"started","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"swap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600060065560006007556b033b2e3c9fd0803ce80000006008556064600260085462000031919062001941565b6200003d9190620019bb565b600b55600b54600c556103e860026008546200005a919062001941565b620000669190620019bb565b600d556103e8600a6008546200007d919062001941565b620000899190620019bb565b600e556000600f60006101000a81548160ff021916908315150217905550348015620000b457600080fd5b506040518060400160405280600781526020017f7a6b47484f5354000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f5a4b470000000000000000000000000000000000000000000000000000000000815250816003908162000132919062001c63565b50806004908162000144919062001c63565b505050620001676200015b620005b760201b60201c565b620005bf60201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001cc6200068560201b60201c565b601260016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200027a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a0919062001db4565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200032a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000350919062001db4565b6040518363ffffffff1660e01b81526004016200036f92919062001df7565b6020604051808303816000875af11580156200038f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003b5919062001db4565b600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200042a600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620006af60201b60201c565b6200045f600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620006af60201b60201c565b62000494600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200071a60201b60201c565b620004a7306001620006af60201b60201c565b620004ba3060016200071a60201b60201c565b620004dc620004ce6200068560201b60201c565b6001620006af60201b60201c565b620004fe620004f06200068560201b60201c565b60016200071a60201b60201c565b62000533601260019054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620006af60201b60201c565b62000568601260019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200071a60201b60201c565b6200057b600180620006af60201b60201c565b6200058e6001806200071a60201b60201c565b620005b1620005a26200068560201b60201c565b6008546200078560201b60201c565b620022eb565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620006bf6200081260201b60201c565b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6200072a6200081260201b60201c565b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007fa5760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620007f1919062001e24565b60405180910390fd5b6200080e60008383620008b460201b60201c565b5050565b62000822620005b760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008486200068560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008b25762000874620005b760201b60201c565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401620008a9919062001e24565b60405180910390fd5b565b60008103620008dc57620008d683836000620011c760201b620012a51760201c565b620011c2565b620008ec6200068560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015620009635750620009336200068560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156200099d5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015620009d75750600173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015620009f15750601260009054906101000a900460ff16155b1562000e0957600f60009054906101000a900460ff1662000af157601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168062000aae5750601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b62000af0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ae79062001ea2565b60405180910390fd5b5b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614801562000b995750601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1562000c5257600c5481111562000be7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000bde9062001f3a565b60405180910390fd5b600b5462000bfb83620013f760201b60201c565b8262000c08919062001f5c565b111562000c4c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c439062001fe7565b60405180910390fd5b62000e08565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614801562000cfa5750601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1562000d4e57600c5481111562000d48576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d3f906200207f565b60405180910390fd5b62000e07565b601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1662000e0657600b5462000db483620013f760201b60201c565b8262000dc1919062001f5c565b111562000e05576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000dfc9062001fe7565b60405180910390fd5b5b5b5b5b600062000e1c30620013f760201b60201c565b90506000600d5482119050600f60009054906101000a900460ff16801562000e415750805b801562000e5b5750601260009054906101000a900460ff16155b801562000eb65750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801562000f0d5750601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801562000f645750601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1562000fb1576001601260006101000a81548160ff02191690831515021790555062000f956200143f60201b60201c565b6000601260006101000a81548160ff0219169083151502179055505b6000601260009054906101000a900460ff161580156200101b5750601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015620010725750601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b905060008115620011a557600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1603620010f957606460075486620010e5919062001941565b620010f19190620019bb565b905062001171565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1603620011705760646006548662001161919062001941565b6200116d9190620019bb565b90505b5b6000811115620011945762001193873083620011c760201b620012a51760201c565b5b8085620011a29190620020a1565b94505b620011bd878787620011c760201b620012a51760201c565b505050505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200121d57806002600082825462001210919062001f5c565b92505081905550620012f3565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015620012ac578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620012a393929190620020ed565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200133e57806002600082825403925050819055506200138b565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620013ea91906200212a565b60405180910390a3505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006200145230620013f760201b60201c565b9050600081036200146457506200148e565b6000819050600e548111156200147a57600e5490505b6200148b816200149060201b60201c565b50505b565b6000600267ffffffffffffffff811115620014b057620014af620019fe565b5b604051908082528060200260200182016040528015620014df5781602001602082028036833780820191505090505b5090503081600081518110620014fa57620014f962002147565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620015a2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620015c8919062001db4565b81600181518110620015df57620015de62002147565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506200164e30600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846200170e60201b60201c565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac94783600084601260019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401620016d695949392919062002287565b600060405180830381600087803b158015620016f157600080fd5b505af115801562001706573d6000803e3d6000fd5b505050505050565b6200172383838360016200172860201b60201c565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036200179d5760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040162001794919062001e24565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620018125760006040517f94280d6200000000000000000000000000000000000000000000000000000000815260040162001809919062001e24565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550801562001902578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051620018f991906200212a565b60405180910390a35b50505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200194e8262001908565b91506200195b8362001908565b92508282026200196b8162001908565b9150828204841483151762001985576200198462001912565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620019c88262001908565b9150620019d58362001908565b925082620019e857620019e76200198c565b5b828204905092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062001a7557607f821691505b60208210810362001a8b5762001a8a62001a2d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262001af57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262001ab6565b62001b01868362001ab6565b95508019841693508086168417925050509392505050565b6000819050919050565b600062001b4462001b3e62001b388462001908565b62001b19565b62001908565b9050919050565b6000819050919050565b62001b608362001b23565b62001b7862001b6f8262001b4b565b84845462001ac3565b825550505050565b600090565b62001b8f62001b80565b62001b9c81848462001b55565b505050565b5b8181101562001bc45762001bb860008262001b85565b60018101905062001ba2565b5050565b601f82111562001c135762001bdd8162001a91565b62001be88462001aa6565b8101602085101562001bf8578190505b62001c1062001c078562001aa6565b83018262001ba1565b50505b505050565b600082821c905092915050565b600062001c386000198460080262001c18565b1980831691505092915050565b600062001c53838362001c25565b9150826002028217905092915050565b62001c6e82620019f3565b67ffffffffffffffff81111562001c8a5762001c89620019fe565b5b62001c96825462001a5c565b62001ca382828562001bc8565b600060209050601f83116001811462001cdb576000841562001cc6578287015190505b62001cd2858262001c45565b86555062001d42565b601f19841662001ceb8662001a91565b60005b8281101562001d155784890151825560018201915060208501945060208101905062001cee565b8683101562001d35578489015162001d31601f89168262001c25565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062001d7c8262001d4f565b9050919050565b62001d8e8162001d6f565b811462001d9a57600080fd5b50565b60008151905062001dae8162001d83565b92915050565b60006020828403121562001dcd5762001dcc62001d4a565b5b600062001ddd8482850162001d9d565b91505092915050565b62001df18162001d6f565b82525050565b600060408201905062001e0e600083018562001de6565b62001e1d602083018462001de6565b9392505050565b600060208201905062001e3b600083018462001de6565b92915050565b600082825260208201905092915050565b7f54726164696e6720686173206e6f7420737461727465642e0000000000000000600082015250565b600062001e8a60188362001e41565b915062001e978262001e52565b602082019050919050565b6000602082019050818103600083015262001ebd8162001e7b565b9050919050565b7f427579696e67206d6f7265207468616e20746865206d61785472616e7361637460008201527f696f6e416d6f756e742e00000000000000000000000000000000000000000000602082015250565b600062001f22602a8362001e41565b915062001f2f8262001ec4565b604082019050919050565b6000602082019050818103600083015262001f558162001f13565b9050919050565b600062001f698262001908565b915062001f768362001908565b925082820190508082111562001f915762001f9062001912565b5b92915050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600062001fcf60138362001e41565b915062001fdc8262001f97565b602082019050919050565b60006020820190508181036000830152620020028162001fc0565b9050919050565b7f53656c6c696e67206d6f7265207468616e20746865206d61785472616e73616360008201527f74696f6e416d6f756e742e000000000000000000000000000000000000000000602082015250565b600062002067602b8362001e41565b9150620020748262002009565b604082019050919050565b600060208201905081810360008301526200209a8162002058565b9050919050565b6000620020ae8262001908565b9150620020bb8362001908565b9250828203905081811115620020d657620020d562001912565b5b92915050565b620020e78162001908565b82525050565b600060608201905062002104600083018662001de6565b620021136020830185620020dc565b620021226040830184620020dc565b949350505050565b6000602082019050620021416000830184620020dc565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000620021a16200219b620021958462002176565b62001b19565b62001908565b9050919050565b620021b38162002180565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b620021f08162001d6f565b82525050565b6000620022048383620021e5565b60208301905092915050565b6000602082019050919050565b60006200222a82620021b9565b620022368185620021c4565b93506200224383620021d5565b8060005b838110156200227a5781516200225e8882620021f6565b97506200226b8362002210565b92505060018101905062002247565b5085935050505092915050565b600060a0820190506200229e6000830188620020dc565b620022ad6020830187620021a8565b8181036040830152620022c181866200221d565b9050620022d2606083018562001de6565b620022e16080830184620020dc565b9695505050505050565b61317880620022fb6000396000f3fe6080604052600436106101fd5760003560e01c8063715018a61161010d578063c0246668116100a0578063c9567bf91161006f578063c9567bf91461071a578063d619d21614610731578063dd62ed3e14610748578063f2fde38b14610785578063f8b45b05146107ae57610204565b8063c024666814610672578063c3f70b521461069b578063c4590d3f146106c6578063c4918b4e146106ef57610204565b806395d89b41116100dc57806395d89b41146105b65780639d0014b1146105e1578063a8aa1b311461060a578063a9059cbb1461063557610204565b8063715018a61461052257806389476069146105395780638da5cb5b1461056257806394b918de1461058d57610204565b8063249ec2bb11610190578063470624021161015f578063470624021461042b5780634fbee1931461045657806352f7c988146104935780635d098b38146104bc57806370a08231146104e557610204565b8063249ec2bb146103835780632b14ca56146103ac578063313ce567146103d757806342966c681461040257610204565b80630e6e91d8116101cc5780630e6e91d8146102c757806318160ddd146102f05780631f2698ab1461031b57806323b872dd1461034657610204565b80630445b66714610209578063047fc9aa1461023457806306fdde031461025f578063095ea7b31461028a57610204565b3661020457005b600080fd5b34801561021557600080fd5b5061021e6107d9565b60405161022b9190612550565b60405180910390f35b34801561024057600080fd5b506102496107df565b6040516102569190612550565b60405180910390f35b34801561026b57600080fd5b506102746107e5565b60405161028191906125fb565b60405180910390f35b34801561029657600080fd5b506102b160048036038101906102ac91906126ac565b610877565b6040516102be9190612707565b60405180910390f35b3480156102d357600080fd5b506102ee60048036038101906102e99190612722565b61089a565b005b3480156102fc57600080fd5b50610305610901565b6040516103129190612550565b60405180910390f35b34801561032757600080fd5b5061033061090b565b60405161033d9190612707565b60405180910390f35b34801561035257600080fd5b5061036d6004803603810190610368919061274f565b61091e565b60405161037a9190612707565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a591906127ce565b61094d565b005b3480156103b857600080fd5b506103c16109b0565b6040516103ce9190612550565b60405180910390f35b3480156103e357600080fd5b506103ec6109b6565b6040516103f9919061282a565b60405180910390f35b34801561040e57600080fd5b5061042960048036038101906104249190612722565b6109bf565b005b34801561043757600080fd5b506104406109d3565b60405161044d9190612550565b60405180910390f35b34801561046257600080fd5b5061047d60048036038101906104789190612845565b6109d9565b60405161048a9190612707565b60405180910390f35b34801561049f57600080fd5b506104ba60048036038101906104b59190612872565b610a2f565b005b3480156104c857600080fd5b506104e360048036038101906104de9190612845565b610a9a565b005b3480156104f157600080fd5b5061050c60048036038101906105079190612845565b610b3b565b6040516105199190612550565b60405180910390f35b34801561052e57600080fd5b50610537610b83565b005b34801561054557600080fd5b50610560600480360381019061055b9190612845565b610b97565b005b34801561056e57600080fd5b50610577610dab565b60405161058491906128c1565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af9190612722565b610dd5565b005b3480156105c257600080fd5b506105cb610e69565b6040516105d891906125fb565b60405180910390f35b3480156105ed57600080fd5b5061060860048036038101906106039190612722565b610efb565b005b34801561061657600080fd5b5061061f610f62565b60405161062c91906128c1565b60405180910390f35b34801561064157600080fd5b5061065c600480360381019061065791906126ac565b610f88565b6040516106699190612707565b60405180910390f35b34801561067e57600080fd5b50610699600480360381019061069491906127ce565b610fab565b005b3480156106a757600080fd5b506106b061100e565b6040516106bd9190612550565b60405180910390f35b3480156106d257600080fd5b506106ed60048036038101906106e89190612872565b611014565b005b3480156106fb57600080fd5b5061070461102e565b6040516107119190612550565b60405180910390f35b34801561072657600080fd5b5061072f611034565b005b34801561073d57600080fd5b506107466110a9565b005b34801561075457600080fd5b5061076f600480360381019061076a91906128dc565b611192565b60405161077c9190612550565b60405180910390f35b34801561079157600080fd5b506107ac60048036038101906107a79190612845565b611219565b005b3480156107ba57600080fd5b506107c361129f565b6040516107d09190612550565b60405180910390f35b600d5481565b60085481565b6060600380546107f49061294b565b80601f01602080910402602001604051908101604052809291908181526020018280546108209061294b565b801561086d5780601f106108425761010080835404028352916020019161086d565b820191906000526020600020905b81548152906001019060200180831161085057829003601f168201915b5050505050905090565b6000806108826114ca565b905061088f8185856114d2565b600191505092915050565b601260019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108db6114ca565b73ffffffffffffffffffffffffffffffffffffffff16036108fe5780600e819055505b50565b6000600254905090565b600f60009054906101000a900460ff1681565b6000806109296114ca565b90506109368582856114e4565b610941858585611578565b60019150509392505050565b61095561166c565b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60075481565b60006012905090565b6109d06109ca6114ca565b826116f3565b50565b60065481565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610a3761166c565b60288211158015610a49575060288111155b610a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7f906129c8565b60405180910390fd5b81600681905550806007819055505050565b601260019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610adb6114ca565b73ffffffffffffffffffffffffffffffffffffffff1603610b385780601260016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b8b61166c565b610b956000611775565b565b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610bd291906128c1565b602060405180830381865afa158015610bef573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c1391906129fd565b11610c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4a90612a76565b60405180910390fd5b601260019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610c946114ca565b73ffffffffffffffffffffffffffffffffffffffff1603610da8578073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610d0591906128c1565b602060405180830381865afa158015610d22573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d4691906129fd565b6040518363ffffffff1660e01b8152600401610d63929190612a96565b6020604051808303816000875af1158015610d82573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610da69190612ad4565b505b50565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601260019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610e166114ca565b73ffffffffffffffffffffffffffffffffffffffff1603610e66576000610e3c30610b3b565b9050600060648383610e4e9190612b30565b610e589190612ba1565b9050610e638161183b565b50505b50565b606060048054610e789061294b565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea49061294b565b8015610ef15780601f10610ec657610100808354040283529160200191610ef1565b820191906000526020600020905b815481529060010190602001808311610ed457829003601f168201915b5050505050905090565b601260019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610f3c6114ca565b73ffffffffffffffffffffffffffffffffffffffff1603610f5f5780600d819055505b50565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610f936114ca565b9050610fa0818585611578565b600191505092915050565b610fb361166c565b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600c5481565b61101c61166c565b81600c8190555080600b819055505050565b600e5481565b61103c61166c565b600f60009054906101000a900460ff161561108c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108390612c1e565b60405180910390fd5b6001600f60006101000a81548160ff021916908315150217905550565b600047116110ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e390612c8a565b60405180910390fd5b601260019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661112d6114ca565b73ffffffffffffffffffffffffffffffffffffffff1603611190573373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561118e573d6000803e3d6000fd5b505b565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61122161166c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112935760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161128a91906128c1565b60405180910390fd5b61129c81611775565b50565b600b5481565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112f75780600260008282546112eb9190612caa565b925050819055506113ca565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611383578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161137a93929190612cde565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114135780600260008282540392505081905550611460565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114bd9190612550565b60405180910390a3505050565b600033905090565b6114df8383836001611aa0565b505050565b60006114f08484611192565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146115725781811015611562578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161155993929190612cde565b60405180910390fd5b61157184848484036000611aa0565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036115ea5760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016115e191906128c1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361165c5760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161165391906128c1565b60405180910390fd5b611667838383611c77565b505050565b6116746114ca565b73ffffffffffffffffffffffffffffffffffffffff16611692610dab565b73ffffffffffffffffffffffffffffffffffffffff16146116f1576116b56114ca565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016116e891906128c1565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117655760006040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161175c91906128c1565b60405180910390fd5b61177182600083611c77565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600267ffffffffffffffff81111561185857611857612d15565b5b6040519080825280602002602001820160405280156118865781602001602082028036833780820191505090505b509050308160008151811061189e5761189d612d44565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611945573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119699190612d88565b8160018151811061197d5761197c612d44565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506119e430600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846114d2565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac94783600084601260019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401611a6a959493929190612eb8565b600060405180830381600087803b158015611a8457600080fd5b505af1158015611a98573d6000803e3d6000fd5b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611b125760006040517fe602df05000000000000000000000000000000000000000000000000000000008152600401611b0991906128c1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b845760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401611b7b91906128c1565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015611c71578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611c689190612550565b60405180910390a35b50505050565b60008103611c9057611c8b838360006112a5565b6124f4565b611c98610dab565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611d065750611cd6610dab565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611d3f5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611d785750600173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611d915750601260009054906101000a900460ff16155b1561217c57600f60009054906101000a900460ff16611e8b57601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611e4b5750601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8190612f5e565b60405180910390fd5b5b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015611f325750601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611fd957600c54811115611f7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7390612ff0565b60405180910390fd5b600b54611f8883610b3b565b82611f939190612caa565b1115611fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcb9061305c565b60405180910390fd5b61217b565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161480156120805750601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156120cf57600c548111156120ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c1906130ee565b60405180910390fd5b61217a565b601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661217957600b5461212c83610b3b565b826121379190612caa565b1115612178576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216f9061305c565b60405180910390fd5b5b5b5b5b600061218730610b3b565b90506000600d5482119050600f60009054906101000a900460ff1680156121ab5750805b80156121c45750601260009054906101000a900460ff16155b801561221e5750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156122745750601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156122ca5750601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561230e576001601260006101000a81548160ff0219169083151502179055506122f26124f9565b6000601260006101000a81548160ff0219169083151502179055505b6000601260009054906101000a900460ff161580156123775750601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156123cd5750601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b9050600081156124e457600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff160361244d5760646007548661243c9190612b30565b6124469190612ba1565b90506124c0565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff16036124bf576064600654866124b29190612b30565b6124bc9190612ba1565b90505b5b60008111156124d5576124d48730836112a5565b5b80856124e1919061310e565b94505b6124ef8787876112a5565b505050505b505050565b600061250430610b3b565b9050600081036125145750612535565b6000819050600e5481111561252957600e5490505b6125328161183b565b50505b565b6000819050919050565b61254a81612537565b82525050565b60006020820190506125656000830184612541565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125a557808201518184015260208101905061258a565b60008484015250505050565b6000601f19601f8301169050919050565b60006125cd8261256b565b6125d78185612576565b93506125e7818560208601612587565b6125f0816125b1565b840191505092915050565b6000602082019050818103600083015261261581846125c2565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061264d82612622565b9050919050565b61265d81612642565b811461266857600080fd5b50565b60008135905061267a81612654565b92915050565b61268981612537565b811461269457600080fd5b50565b6000813590506126a681612680565b92915050565b600080604083850312156126c3576126c261261d565b5b60006126d18582860161266b565b92505060206126e285828601612697565b9150509250929050565b60008115159050919050565b612701816126ec565b82525050565b600060208201905061271c60008301846126f8565b92915050565b6000602082840312156127385761273761261d565b5b600061274684828501612697565b91505092915050565b6000806000606084860312156127685761276761261d565b5b60006127768682870161266b565b93505060206127878682870161266b565b925050604061279886828701612697565b9150509250925092565b6127ab816126ec565b81146127b657600080fd5b50565b6000813590506127c8816127a2565b92915050565b600080604083850312156127e5576127e461261d565b5b60006127f38582860161266b565b9250506020612804858286016127b9565b9150509250929050565b600060ff82169050919050565b6128248161280e565b82525050565b600060208201905061283f600083018461281b565b92915050565b60006020828403121561285b5761285a61261d565b5b60006128698482850161266b565b91505092915050565b600080604083850312156128895761288861261d565b5b600061289785828601612697565b92505060206128a885828601612697565b9150509250929050565b6128bb81612642565b82525050565b60006020820190506128d660008301846128b2565b92915050565b600080604083850312156128f3576128f261261d565b5b60006129018582860161266b565b92505060206129128582860161266b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061296357607f821691505b6020821081036129765761297561291c565b5b50919050565b7f46656520746f6f20686967680000000000000000000000000000000000000000600082015250565b60006129b2600c83612576565b91506129bd8261297c565b602082019050919050565b600060208201905081810360008301526129e1816129a5565b9050919050565b6000815190506129f781612680565b92915050565b600060208284031215612a1357612a1261261d565b5b6000612a21848285016129e8565b91505092915050565b7f43616e2774207769746864726177203000000000000000000000000000000000600082015250565b6000612a60601083612576565b9150612a6b82612a2a565b602082019050919050565b60006020820190508181036000830152612a8f81612a53565b9050919050565b6000604082019050612aab60008301856128b2565b612ab86020830184612541565b9392505050565b600081519050612ace816127a2565b92915050565b600060208284031215612aea57612ae961261d565b5b6000612af884828501612abf565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b3b82612537565b9150612b4683612537565b9250828202612b5481612537565b91508282048414831517612b6b57612b6a612b01565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612bac82612537565b9150612bb783612537565b925082612bc757612bc6612b72565b5b828204905092915050565b7f54726164696e6720697320616c7265616479206f70656e000000000000000000600082015250565b6000612c08601783612576565b9150612c1382612bd2565b602082019050919050565b60006020820190508181036000830152612c3781612bfb565b9050919050565b7f456d7074792062616c616e636500000000000000000000000000000000000000600082015250565b6000612c74600d83612576565b9150612c7f82612c3e565b602082019050919050565b60006020820190508181036000830152612ca381612c67565b9050919050565b6000612cb582612537565b9150612cc083612537565b9250828201905080821115612cd857612cd7612b01565b5b92915050565b6000606082019050612cf360008301866128b2565b612d006020830185612541565b612d0d6040830184612541565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612d8281612654565b92915050565b600060208284031215612d9e57612d9d61261d565b5b6000612dac84828501612d73565b91505092915050565b6000819050919050565b6000819050919050565b6000612de4612ddf612dda84612db5565b612dbf565b612537565b9050919050565b612df481612dc9565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612e2f81612642565b82525050565b6000612e418383612e26565b60208301905092915050565b6000602082019050919050565b6000612e6582612dfa565b612e6f8185612e05565b9350612e7a83612e16565b8060005b83811015612eab578151612e928882612e35565b9750612e9d83612e4d565b925050600181019050612e7e565b5085935050505092915050565b600060a082019050612ecd6000830188612541565b612eda6020830187612deb565b8181036040830152612eec8186612e5a565b9050612efb60608301856128b2565b612f086080830184612541565b9695505050505050565b7f54726164696e6720686173206e6f7420737461727465642e0000000000000000600082015250565b6000612f48601883612576565b9150612f5382612f12565b602082019050919050565b60006020820190508181036000830152612f7781612f3b565b9050919050565b7f427579696e67206d6f7265207468616e20746865206d61785472616e7361637460008201527f696f6e416d6f756e742e00000000000000000000000000000000000000000000602082015250565b6000612fda602a83612576565b9150612fe582612f7e565b604082019050919050565b6000602082019050818103600083015261300981612fcd565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613046601383612576565b915061305182613010565b602082019050919050565b6000602082019050818103600083015261307581613039565b9050919050565b7f53656c6c696e67206d6f7265207468616e20746865206d61785472616e73616360008201527f74696f6e416d6f756e742e000000000000000000000000000000000000000000602082015250565b60006130d8602b83612576565b91506130e38261307c565b604082019050919050565b60006020820190508181036000830152613107816130cb565b9050919050565b600061311982612537565b915061312483612537565b925082820390508181111561313c5761313b612b01565b5b9291505056fea2646970667358221220dbca8118e4bdbfa0076c0efb8c02c4e5fd0e2016eb4d9bd2f96567f8a9de5a3364736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101fd5760003560e01c8063715018a61161010d578063c0246668116100a0578063c9567bf91161006f578063c9567bf91461071a578063d619d21614610731578063dd62ed3e14610748578063f2fde38b14610785578063f8b45b05146107ae57610204565b8063c024666814610672578063c3f70b521461069b578063c4590d3f146106c6578063c4918b4e146106ef57610204565b806395d89b41116100dc57806395d89b41146105b65780639d0014b1146105e1578063a8aa1b311461060a578063a9059cbb1461063557610204565b8063715018a61461052257806389476069146105395780638da5cb5b1461056257806394b918de1461058d57610204565b8063249ec2bb11610190578063470624021161015f578063470624021461042b5780634fbee1931461045657806352f7c988146104935780635d098b38146104bc57806370a08231146104e557610204565b8063249ec2bb146103835780632b14ca56146103ac578063313ce567146103d757806342966c681461040257610204565b80630e6e91d8116101cc5780630e6e91d8146102c757806318160ddd146102f05780631f2698ab1461031b57806323b872dd1461034657610204565b80630445b66714610209578063047fc9aa1461023457806306fdde031461025f578063095ea7b31461028a57610204565b3661020457005b600080fd5b34801561021557600080fd5b5061021e6107d9565b60405161022b9190612550565b60405180910390f35b34801561024057600080fd5b506102496107df565b6040516102569190612550565b60405180910390f35b34801561026b57600080fd5b506102746107e5565b60405161028191906125fb565b60405180910390f35b34801561029657600080fd5b506102b160048036038101906102ac91906126ac565b610877565b6040516102be9190612707565b60405180910390f35b3480156102d357600080fd5b506102ee60048036038101906102e99190612722565b61089a565b005b3480156102fc57600080fd5b50610305610901565b6040516103129190612550565b60405180910390f35b34801561032757600080fd5b5061033061090b565b60405161033d9190612707565b60405180910390f35b34801561035257600080fd5b5061036d6004803603810190610368919061274f565b61091e565b60405161037a9190612707565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a591906127ce565b61094d565b005b3480156103b857600080fd5b506103c16109b0565b6040516103ce9190612550565b60405180910390f35b3480156103e357600080fd5b506103ec6109b6565b6040516103f9919061282a565b60405180910390f35b34801561040e57600080fd5b5061042960048036038101906104249190612722565b6109bf565b005b34801561043757600080fd5b506104406109d3565b60405161044d9190612550565b60405180910390f35b34801561046257600080fd5b5061047d60048036038101906104789190612845565b6109d9565b60405161048a9190612707565b60405180910390f35b34801561049f57600080fd5b506104ba60048036038101906104b59190612872565b610a2f565b005b3480156104c857600080fd5b506104e360048036038101906104de9190612845565b610a9a565b005b3480156104f157600080fd5b5061050c60048036038101906105079190612845565b610b3b565b6040516105199190612550565b60405180910390f35b34801561052e57600080fd5b50610537610b83565b005b34801561054557600080fd5b50610560600480360381019061055b9190612845565b610b97565b005b34801561056e57600080fd5b50610577610dab565b60405161058491906128c1565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af9190612722565b610dd5565b005b3480156105c257600080fd5b506105cb610e69565b6040516105d891906125fb565b60405180910390f35b3480156105ed57600080fd5b5061060860048036038101906106039190612722565b610efb565b005b34801561061657600080fd5b5061061f610f62565b60405161062c91906128c1565b60405180910390f35b34801561064157600080fd5b5061065c600480360381019061065791906126ac565b610f88565b6040516106699190612707565b60405180910390f35b34801561067e57600080fd5b50610699600480360381019061069491906127ce565b610fab565b005b3480156106a757600080fd5b506106b061100e565b6040516106bd9190612550565b60405180910390f35b3480156106d257600080fd5b506106ed60048036038101906106e89190612872565b611014565b005b3480156106fb57600080fd5b5061070461102e565b6040516107119190612550565b60405180910390f35b34801561072657600080fd5b5061072f611034565b005b34801561073d57600080fd5b506107466110a9565b005b34801561075457600080fd5b5061076f600480360381019061076a91906128dc565b611192565b60405161077c9190612550565b60405180910390f35b34801561079157600080fd5b506107ac60048036038101906107a79190612845565b611219565b005b3480156107ba57600080fd5b506107c361129f565b6040516107d09190612550565b60405180910390f35b600d5481565b60085481565b6060600380546107f49061294b565b80601f01602080910402602001604051908101604052809291908181526020018280546108209061294b565b801561086d5780601f106108425761010080835404028352916020019161086d565b820191906000526020600020905b81548152906001019060200180831161085057829003601f168201915b5050505050905090565b6000806108826114ca565b905061088f8185856114d2565b600191505092915050565b601260019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108db6114ca565b73ffffffffffffffffffffffffffffffffffffffff16036108fe5780600e819055505b50565b6000600254905090565b600f60009054906101000a900460ff1681565b6000806109296114ca565b90506109368582856114e4565b610941858585611578565b60019150509392505050565b61095561166c565b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60075481565b60006012905090565b6109d06109ca6114ca565b826116f3565b50565b60065481565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610a3761166c565b60288211158015610a49575060288111155b610a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7f906129c8565b60405180910390fd5b81600681905550806007819055505050565b601260019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610adb6114ca565b73ffffffffffffffffffffffffffffffffffffffff1603610b385780601260016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b8b61166c565b610b956000611775565b565b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610bd291906128c1565b602060405180830381865afa158015610bef573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c1391906129fd565b11610c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4a90612a76565b60405180910390fd5b601260019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610c946114ca565b73ffffffffffffffffffffffffffffffffffffffff1603610da8578073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610d0591906128c1565b602060405180830381865afa158015610d22573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d4691906129fd565b6040518363ffffffff1660e01b8152600401610d63929190612a96565b6020604051808303816000875af1158015610d82573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610da69190612ad4565b505b50565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601260019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610e166114ca565b73ffffffffffffffffffffffffffffffffffffffff1603610e66576000610e3c30610b3b565b9050600060648383610e4e9190612b30565b610e589190612ba1565b9050610e638161183b565b50505b50565b606060048054610e789061294b565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea49061294b565b8015610ef15780601f10610ec657610100808354040283529160200191610ef1565b820191906000526020600020905b815481529060010190602001808311610ed457829003601f168201915b5050505050905090565b601260019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610f3c6114ca565b73ffffffffffffffffffffffffffffffffffffffff1603610f5f5780600d819055505b50565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610f936114ca565b9050610fa0818585611578565b600191505092915050565b610fb361166c565b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600c5481565b61101c61166c565b81600c8190555080600b819055505050565b600e5481565b61103c61166c565b600f60009054906101000a900460ff161561108c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108390612c1e565b60405180910390fd5b6001600f60006101000a81548160ff021916908315150217905550565b600047116110ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e390612c8a565b60405180910390fd5b601260019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661112d6114ca565b73ffffffffffffffffffffffffffffffffffffffff1603611190573373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561118e573d6000803e3d6000fd5b505b565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61122161166c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112935760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161128a91906128c1565b60405180910390fd5b61129c81611775565b50565b600b5481565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112f75780600260008282546112eb9190612caa565b925050819055506113ca565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611383578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161137a93929190612cde565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114135780600260008282540392505081905550611460565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114bd9190612550565b60405180910390a3505050565b600033905090565b6114df8383836001611aa0565b505050565b60006114f08484611192565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146115725781811015611562578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161155993929190612cde565b60405180910390fd5b61157184848484036000611aa0565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036115ea5760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016115e191906128c1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361165c5760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161165391906128c1565b60405180910390fd5b611667838383611c77565b505050565b6116746114ca565b73ffffffffffffffffffffffffffffffffffffffff16611692610dab565b73ffffffffffffffffffffffffffffffffffffffff16146116f1576116b56114ca565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016116e891906128c1565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117655760006040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161175c91906128c1565b60405180910390fd5b61177182600083611c77565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600267ffffffffffffffff81111561185857611857612d15565b5b6040519080825280602002602001820160405280156118865781602001602082028036833780820191505090505b509050308160008151811061189e5761189d612d44565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611945573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119699190612d88565b8160018151811061197d5761197c612d44565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506119e430600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846114d2565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac94783600084601260019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401611a6a959493929190612eb8565b600060405180830381600087803b158015611a8457600080fd5b505af1158015611a98573d6000803e3d6000fd5b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611b125760006040517fe602df05000000000000000000000000000000000000000000000000000000008152600401611b0991906128c1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b845760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401611b7b91906128c1565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015611c71578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611c689190612550565b60405180910390a35b50505050565b60008103611c9057611c8b838360006112a5565b6124f4565b611c98610dab565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611d065750611cd6610dab565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611d3f5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611d785750600173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611d915750601260009054906101000a900460ff16155b1561217c57600f60009054906101000a900460ff16611e8b57601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611e4b5750601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8190612f5e565b60405180910390fd5b5b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015611f325750601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611fd957600c54811115611f7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7390612ff0565b60405180910390fd5b600b54611f8883610b3b565b82611f939190612caa565b1115611fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcb9061305c565b60405180910390fd5b61217b565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161480156120805750601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156120cf57600c548111156120ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c1906130ee565b60405180910390fd5b61217a565b601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661217957600b5461212c83610b3b565b826121379190612caa565b1115612178576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216f9061305c565b60405180910390fd5b5b5b5b5b600061218730610b3b565b90506000600d5482119050600f60009054906101000a900460ff1680156121ab5750805b80156121c45750601260009054906101000a900460ff16155b801561221e5750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156122745750601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156122ca5750601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561230e576001601260006101000a81548160ff0219169083151502179055506122f26124f9565b6000601260006101000a81548160ff0219169083151502179055505b6000601260009054906101000a900460ff161580156123775750601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156123cd5750601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b9050600081156124e457600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff160361244d5760646007548661243c9190612b30565b6124469190612ba1565b90506124c0565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff16036124bf576064600654866124b29190612b30565b6124bc9190612ba1565b90505b5b60008111156124d5576124d48730836112a5565b5b80856124e1919061310e565b94505b6124ef8787876112a5565b505050505b505050565b600061250430610b3b565b9050600081036125145750612535565b6000819050600e5481111561252957600e5490505b6125328161183b565b50505b565b6000819050919050565b61254a81612537565b82525050565b60006020820190506125656000830184612541565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125a557808201518184015260208101905061258a565b60008484015250505050565b6000601f19601f8301169050919050565b60006125cd8261256b565b6125d78185612576565b93506125e7818560208601612587565b6125f0816125b1565b840191505092915050565b6000602082019050818103600083015261261581846125c2565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061264d82612622565b9050919050565b61265d81612642565b811461266857600080fd5b50565b60008135905061267a81612654565b92915050565b61268981612537565b811461269457600080fd5b50565b6000813590506126a681612680565b92915050565b600080604083850312156126c3576126c261261d565b5b60006126d18582860161266b565b92505060206126e285828601612697565b9150509250929050565b60008115159050919050565b612701816126ec565b82525050565b600060208201905061271c60008301846126f8565b92915050565b6000602082840312156127385761273761261d565b5b600061274684828501612697565b91505092915050565b6000806000606084860312156127685761276761261d565b5b60006127768682870161266b565b93505060206127878682870161266b565b925050604061279886828701612697565b9150509250925092565b6127ab816126ec565b81146127b657600080fd5b50565b6000813590506127c8816127a2565b92915050565b600080604083850312156127e5576127e461261d565b5b60006127f38582860161266b565b9250506020612804858286016127b9565b9150509250929050565b600060ff82169050919050565b6128248161280e565b82525050565b600060208201905061283f600083018461281b565b92915050565b60006020828403121561285b5761285a61261d565b5b60006128698482850161266b565b91505092915050565b600080604083850312156128895761288861261d565b5b600061289785828601612697565b92505060206128a885828601612697565b9150509250929050565b6128bb81612642565b82525050565b60006020820190506128d660008301846128b2565b92915050565b600080604083850312156128f3576128f261261d565b5b60006129018582860161266b565b92505060206129128582860161266b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061296357607f821691505b6020821081036129765761297561291c565b5b50919050565b7f46656520746f6f20686967680000000000000000000000000000000000000000600082015250565b60006129b2600c83612576565b91506129bd8261297c565b602082019050919050565b600060208201905081810360008301526129e1816129a5565b9050919050565b6000815190506129f781612680565b92915050565b600060208284031215612a1357612a1261261d565b5b6000612a21848285016129e8565b91505092915050565b7f43616e2774207769746864726177203000000000000000000000000000000000600082015250565b6000612a60601083612576565b9150612a6b82612a2a565b602082019050919050565b60006020820190508181036000830152612a8f81612a53565b9050919050565b6000604082019050612aab60008301856128b2565b612ab86020830184612541565b9392505050565b600081519050612ace816127a2565b92915050565b600060208284031215612aea57612ae961261d565b5b6000612af884828501612abf565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b3b82612537565b9150612b4683612537565b9250828202612b5481612537565b91508282048414831517612b6b57612b6a612b01565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612bac82612537565b9150612bb783612537565b925082612bc757612bc6612b72565b5b828204905092915050565b7f54726164696e6720697320616c7265616479206f70656e000000000000000000600082015250565b6000612c08601783612576565b9150612c1382612bd2565b602082019050919050565b60006020820190508181036000830152612c3781612bfb565b9050919050565b7f456d7074792062616c616e636500000000000000000000000000000000000000600082015250565b6000612c74600d83612576565b9150612c7f82612c3e565b602082019050919050565b60006020820190508181036000830152612ca381612c67565b9050919050565b6000612cb582612537565b9150612cc083612537565b9250828201905080821115612cd857612cd7612b01565b5b92915050565b6000606082019050612cf360008301866128b2565b612d006020830185612541565b612d0d6040830184612541565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612d8281612654565b92915050565b600060208284031215612d9e57612d9d61261d565b5b6000612dac84828501612d73565b91505092915050565b6000819050919050565b6000819050919050565b6000612de4612ddf612dda84612db5565b612dbf565b612537565b9050919050565b612df481612dc9565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612e2f81612642565b82525050565b6000612e418383612e26565b60208301905092915050565b6000602082019050919050565b6000612e6582612dfa565b612e6f8185612e05565b9350612e7a83612e16565b8060005b83811015612eab578151612e928882612e35565b9750612e9d83612e4d565b925050600181019050612e7e565b5085935050505092915050565b600060a082019050612ecd6000830188612541565b612eda6020830187612deb565b8181036040830152612eec8186612e5a565b9050612efb60608301856128b2565b612f086080830184612541565b9695505050505050565b7f54726164696e6720686173206e6f7420737461727465642e0000000000000000600082015250565b6000612f48601883612576565b9150612f5382612f12565b602082019050919050565b60006020820190508181036000830152612f7781612f3b565b9050919050565b7f427579696e67206d6f7265207468616e20746865206d61785472616e7361637460008201527f696f6e416d6f756e742e00000000000000000000000000000000000000000000602082015250565b6000612fda602a83612576565b9150612fe582612f7e565b604082019050919050565b6000602082019050818103600083015261300981612fcd565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613046601383612576565b915061305182613010565b602082019050919050565b6000602082019050818103600083015261307581613039565b9050919050565b7f53656c6c696e67206d6f7265207468616e20746865206d61785472616e73616360008201527f74696f6e416d6f756e742e000000000000000000000000000000000000000000602082015250565b60006130d8602b83612576565b91506130e38261307c565b604082019050919050565b60006020820190508181036000830152613107816130cb565b9050919050565b600061311982612537565b915061312483612537565b925082820390508181111561313c5761313b612b01565b5b9291505056fea2646970667358221220dbca8118e4bdbfa0076c0efb8c02c4e5fd0e2016eb4d9bd2f96567f8a9de5a3364736f6c63430008110033

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.