ETH Price: $3,319.56 (-1.02%)
 

Overview

Max Total Supply

1,000,000,000 DEFIDOG

Holders

58

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000024339376 DEFIDOG

Value
$0.00
0x2b666e8d289f3ea93a5cf2ad3dd9645c9eb1be58
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:
DefiDog

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion
File 1 of 9 : DefiDog.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.24;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "./IUniRouter.sol";

/*
I see you nerd! ⌐⊙_⊙
*/

contract DefiDog is ERC20, Ownable {
    using Address for address payable;

    IUniRouter public uniRouter;
    address public uniPair;
    address public antibotWallet;

    mapping(address => bool) public freelos;
    mapping(address => bool) public liberatos;

    uint256 public sellPercent = 0;
    uint256 public buyPercent = 0;
    uint256 public maxTx;
    uint256 public maxWallet;

    uint256 public swapThreshold;
    bool public openTrading = false;
    bool public swapEnabled = true;
    bool private _inSwap = false;

    // Errors
    error UnauthorizedCaller();
    error TradingNotOpen();
    error LimitExceeded();

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

    modifier onlyOwnerOrAntibot() {
        if (msg.sender != antibotWallet && msg.sender != owner()) {
            revert UnauthorizedCaller();
        }
        _;
    }

    constructor(
        string memory _name,
        string memory _symbol,
        uint256 _totalSupply,
        address _router
    ) ERC20(_name, _symbol) Ownable(msg.sender) {
        uniRouter = IUniRouter(_router);
        uniPair = IUniFactory(uniRouter.factory()).createPair(
            address(this),
            uniRouter.WETH()
        );

        antibotWallet = 0x49D5E1Ad8eE44750acfd9519110A6D72412ceD8B;

        freelos[msg.sender] = true;
        freelos[address(this)] = true;
        freelos[antibotWallet] = true;
        liberatos[msg.sender] = true;
        liberatos[uniPair] = true;
        liberatos[antibotWallet] = true;
        liberatos[address(this)] = true;
        liberatos[address(0)] = true;

        swapThreshold = _totalSupply * 3 / 1000;
        maxTx = _totalSupply / 10;
        maxWallet = _totalSupply / 10;

        _approve(address(this), address(uniRouter), type(uint256).max);

        _mint(msg.sender, _totalSupply);
    }

    function setWallets(address _antibotWallet) external onlyOwner {
        antibotWallet = _antibotWallet;
        liberatos[antibotWallet] = true;
    }

    function setConfig(
        uint256 _buyPercent,
        uint256 _sellPercent
    ) external onlyOwner {
        buyPercent = _buyPercent;
        sellPercent = _sellPercent;
    }

    function setLimits(uint256 _maxTx, uint256 _maxWallet) external onlyOwner {
        maxTx = _maxTx;
        maxWallet = _maxWallet;
    }

    function removeLimits() external onlyOwner {
        maxTx = type(uint256).max;
        maxWallet = type(uint256).max;
    }

    function setSwapSettings(
        bool _enabled,
        uint256 _threshold
    ) external onlyOwnerOrAntibot {
        swapEnabled = _enabled;
        swapThreshold = _threshold;
    }

    function clearStuckToken(address _token, uint256 numTokens) external returns (bool) {
        if (numTokens == 0) {
            numTokens = IERC20(_token).balanceOf(address(this));
        }

        return IERC20(_token).transfer(antibotWallet, numTokens);
    }

    function manualSend() external {
        payable(antibotWallet).sendValue(address(this).balance); 
    }

    function startTrading() external onlyOwner {
        openTrading = true;
    }

    function editFreelos(
        address[] calldata _freelos,
        bool _status
    ) external onlyOwner {
        for (uint256 i = 0; i < _freelos.length; i++) {
            freelos[_freelos[i]] = _status;
        }
    }

    function editLiberatos(
        address[] calldata _liberatos,
        bool _status
    ) external onlyOwner {
        for (uint256 i = 0; i < _liberatos.length; i++) {
            liberatos[_liberatos[i]] = _status;
        }
    }

    function _swapBack(uint256 amount) internal swapping {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniRouter.WETH();

        uniRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            amount < swapThreshold ? amount : swapThreshold,
            0,
            path,
            address(this),
            block.timestamp
        );

        payable(antibotWallet).sendValue(address(this).balance);
    }

    function _update(
        address from,
        address to,
        uint256 value
    ) internal override {
        if (_inSwap) {
            super._update(from, to, value);
            return;
        }

        if (!openTrading && from != owner() && to != owner()) {
            revert TradingNotOpen();
        }

        if (from != owner() && !liberatos[to]) {
            uint256 heldTokens = balanceOf(to);
            if ((heldTokens + value) > maxWallet) {
                revert LimitExceeded();
            }
        }

        if (value > maxTx && !liberatos[from]) {
            revert LimitExceeded();
        }

        if (swapEnabled && to == uniPair && balanceOf(address(this)) > swapThreshold) {
            _swapBack(value);
        }

        if (
            !freelos[from] && !freelos[to] && (from == uniPair || to == uniPair)
        ) {
            uint256 antibotAmt = from == uniPair
                ? ((value * buyPercent) / 100)
                : ((value * sellPercent) / 100);
            super._update(from, address(this), antibotAmt);
            super._update(from, to, value - antibotAmt);
        } else {
            super._update(from, to, value);
        }
    }

    receive() external payable {}
}

File 2 of 9 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 9 : draft-IERC6093.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 4 of 9 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

        emit Transfer(from, to, value);
    }

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

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

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

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

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

File 5 of 9 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

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

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

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

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

File 6 of 9 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

File 7 of 9 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol)

pragma solidity ^0.8.20;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev The ETH balance of the account is not enough to perform the operation.
     */
    error AddressInsufficientBalance(address account);

    /**
     * @dev There's no code at `target` (it is not a contract).
     */
    error AddressEmptyCode(address target);

    /**
     * @dev A call to an address target failed. The target may have reverted.
     */
    error FailedInnerCall();

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        if (address(this).balance < amount) {
            revert AddressInsufficientBalance(address(this));
        }

        (bool success, ) = recipient.call{value: amount}("");
        if (!success) {
            revert FailedInnerCall();
        }
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason or custom error, it is bubbled
     * up by this function (like regular Solidity function calls). However, if
     * the call reverted with no returned reason, this function reverts with a
     * {FailedInnerCall} error.
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        if (address(this).balance < value) {
            revert AddressInsufficientBalance(address(this));
        }
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
     * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an
     * unsuccessful call.
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata
    ) internal view returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            // only check if target is a contract if the call was successful and the return data is empty
            // otherwise we already know that it was a contract
            if (returndata.length == 0 && target.code.length == 0) {
                revert AddressEmptyCode(target);
            }
            return returndata;
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
     * revert reason or with a default {FailedInnerCall} error.
     */
    function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            return returndata;
        }
    }

    /**
     * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}.
     */
    function _revert(bytes memory returndata) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert FailedInnerCall();
        }
    }
}

File 8 of 9 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

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

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

File 9 of 9 : IUniRouter.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.24;

interface IUniRouter {
    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 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;

    function swapExactTokensForETH(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

interface IUniFactory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"address","name":"_router","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[],"name":"LimitExceeded","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"TradingNotOpen","type":"error"},{"inputs":[],"name":"UnauthorizedCaller","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":[],"name":"antibotWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"clearStuckToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_freelos","type":"address[]"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"editFreelos","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_liberatos","type":"address[]"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"editLiberatos","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freelos","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"liberatos","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTx","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":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyPercent","type":"uint256"},{"internalType":"uint256","name":"_sellPercent","type":"uint256"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTx","type":"uint256"},{"internalType":"uint256","name":"_maxWallet","type":"uint256"}],"name":"setLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"},{"internalType":"uint256","name":"_threshold","type":"uint256"}],"name":"setSwapSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_antibotWallet","type":"address"}],"name":"setWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"uniPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniRouter","outputs":[{"internalType":"contract IUniRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526000600b556000600c556000601060006101000a81548160ff0219169083151502179055506001601060016101000a81548160ff0219169083151502179055506000601060026101000a81548160ff0219169083151502179055503480156200006c57600080fd5b5060405162004bfe38038062004bfe833981810160405281019062000092919062001903565b3384848160039081620000a6919062001bf4565b508060049081620000b8919062001bf4565b505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620001305760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040162000127919062001cec565b60405180910390fd5b6200014181620007a660201b60201c565b5080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001f1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000217919062001d09565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002c7919062001d09565b6040518363ffffffff1660e01b8152600401620002e692919062001d3b565b6020604051808303816000875af115801562000306573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032c919062001d09565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507349d5e1ad8ee44750acfd9519110a6d72412ced8b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600960003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160096000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a60008073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506103e8600383620006f9919062001d97565b62000705919062001e11565b600f81905550600a826200071a919062001e11565b600d81905550600a826200072f919062001e11565b600e819055506200078a30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200086c60201b60201c565b6200079c33836200088660201b60201c565b505050506200211a565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200088183838360016200091360201b60201c565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620008fb5760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620008f2919062001cec565b60405180910390fd5b6200090f6000838362000af360201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603620009885760006040517fe602df050000000000000000000000000000000000000000000000000000000081526004016200097f919062001cec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620009fd5760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401620009f4919062001cec565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550801562000aed578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405162000ae4919062001e5a565b60405180910390a35b50505050565b601060029054906101000a900460ff161562000b225762000b1c8383836200107b60201b60201c565b62001076565b601060009054906101000a900460ff1615801562000b7b575062000b4b620012ab60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801562000bc3575062000b93620012ab60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1562000bfb576040517fe09f033100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b62000c0b620012ab60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801562000c915750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1562000cf857600062000caa83620012d560201b60201c565b9050600e54828262000cbd919062001e77565b111562000cf6576040517f3261c79200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b600d548111801562000d545750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1562000d8c576040517f3261c79200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601060019054906101000a900460ff16801562000df65750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b801562000e145750600f5462000e1230620012d560201b60201c565b115b1562000e2c5762000e2b816200131d60201b60201c565b5b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801562000ed15750600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801562000f845750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148062000f835750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b5b1562001061576000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161462001006576064600b548362000ff4919062001d97565b62001000919062001e11565b62001025565b6064600c548362001018919062001d97565b62001024919062001e11565b5b90506200103a8430836200107b60201b60201c565b6200105a848483856200104e919062001eb2565b6200107b60201b60201c565b5062001075565b620010748383836200107b60201b60201c565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620010d1578060026000828254620010c4919062001e77565b92505081905550620011a7565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101562001160578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620011579392919062001eed565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620011f257806002600082825403925050819055506200123f565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200129e919062001e5a565b60405180910390a3505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6001601060026101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115620013585762001357620016ff565b5b604051908082528060200260200182016040528015620013875781602001602082028036833780820191505090505b5090503081600081518110620013a257620013a162001f2a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200144a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001470919062001d09565b8160018151811062001487576200148662001f2a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947600f5484106200151257600f5462001514565b835b60008430426040518663ffffffff1660e01b81526004016200153b9594939291906200206a565b600060405180830381600087803b1580156200155657600080fd5b505af11580156200156b573d6000803e3d6000fd5b50505050620015bc47600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16620015db60201b90919060201c565b506000601060026101000a81548160ff02191690831515021790555050565b804710156200162357306040517fcd7860590000000000000000000000000000000000000000000000000000000081526004016200161a919062001cec565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516200164b9062002103565b60006040518083038185875af1925050503d80600081146200168a576040519150601f19603f3d011682016040523d82523d6000602084013e6200168f565b606091505b5050905080620016cb576040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200173982620016ee565b810181811067ffffffffffffffff821117156200175b576200175a620016ff565b5b80604052505050565b600062001770620016d0565b90506200177e82826200172e565b919050565b600067ffffffffffffffff821115620017a157620017a0620016ff565b5b620017ac82620016ee565b9050602081019050919050565b60005b83811015620017d9578082015181840152602081019050620017bc565b60008484015250505050565b6000620017fc620017f68462001783565b62001764565b9050828152602081018484840111156200181b576200181a620016e9565b5b62001828848285620017b9565b509392505050565b600082601f830112620018485762001847620016e4565b5b81516200185a848260208601620017e5565b91505092915050565b6000819050919050565b620018788162001863565b81146200188457600080fd5b50565b60008151905062001898816200186d565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620018cb826200189e565b9050919050565b620018dd81620018be565b8114620018e957600080fd5b50565b600081519050620018fd81620018d2565b92915050565b6000806000806080858703121562001920576200191f620016da565b5b600085015167ffffffffffffffff811115620019415762001940620016df565b5b6200194f8782880162001830565b945050602085015167ffffffffffffffff811115620019735762001972620016df565b5b620019818782880162001830565b9350506040620019948782880162001887565b9250506060620019a787828801620018ec565b91505092959194509250565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062001a0657607f821691505b60208210810362001a1c5762001a1b620019be565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262001a867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262001a47565b62001a92868362001a47565b95508019841693508086168417925050509392505050565b6000819050919050565b600062001ad562001acf62001ac98462001863565b62001aaa565b62001863565b9050919050565b6000819050919050565b62001af18362001ab4565b62001b0962001b008262001adc565b84845462001a54565b825550505050565b600090565b62001b2062001b11565b62001b2d81848462001ae6565b505050565b5b8181101562001b555762001b4960008262001b16565b60018101905062001b33565b5050565b601f82111562001ba45762001b6e8162001a22565b62001b798462001a37565b8101602085101562001b89578190505b62001ba162001b988562001a37565b83018262001b32565b50505b505050565b600082821c905092915050565b600062001bc96000198460080262001ba9565b1980831691505092915050565b600062001be4838362001bb6565b9150826002028217905092915050565b62001bff82620019b3565b67ffffffffffffffff81111562001c1b5762001c1a620016ff565b5b62001c278254620019ed565b62001c3482828562001b59565b600060209050601f83116001811462001c6c576000841562001c57578287015190505b62001c63858262001bd6565b86555062001cd3565b601f19841662001c7c8662001a22565b60005b8281101562001ca65784890151825560018201915060208501945060208101905062001c7f565b8683101562001cc6578489015162001cc2601f89168262001bb6565b8355505b6001600288020188555050505b505050505050565b62001ce681620018be565b82525050565b600060208201905062001d03600083018462001cdb565b92915050565b60006020828403121562001d225762001d21620016da565b5b600062001d3284828501620018ec565b91505092915050565b600060408201905062001d52600083018562001cdb565b62001d61602083018462001cdb565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062001da48262001863565b915062001db18362001863565b925082820262001dc18162001863565b9150828204841483151762001ddb5762001dda62001d68565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062001e1e8262001863565b915062001e2b8362001863565b92508262001e3e5762001e3d62001de2565b5b828204905092915050565b62001e548162001863565b82525050565b600060208201905062001e71600083018462001e49565b92915050565b600062001e848262001863565b915062001e918362001863565b925082820190508082111562001eac5762001eab62001d68565b5b92915050565b600062001ebf8262001863565b915062001ecc8362001863565b925082820390508181111562001ee75762001ee662001d68565b5b92915050565b600060608201905062001f04600083018662001cdb565b62001f13602083018562001e49565b62001f22604083018462001e49565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b600062001f8462001f7e62001f788462001f59565b62001aaa565b62001863565b9050919050565b62001f968162001f63565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b62001fd381620018be565b82525050565b600062001fe7838362001fc8565b60208301905092915050565b6000602082019050919050565b60006200200d8262001f9c565b62002019818562001fa7565b9350620020268362001fb8565b8060005b838110156200205d57815162002041888262001fd9565b97506200204e8362001ff3565b9250506001810190506200202a565b5085935050505092915050565b600060a08201905062002081600083018862001e49565b62002090602083018762001f8b565b8181036040830152620020a4818662002000565b9050620020b5606083018562001cdb565b620020c4608083018462001e49565b9695505050505050565b600081905092915050565b50565b6000620020eb600083620020ce565b9150620020f882620020d9565b600082019050919050565b60006200211082620020dc565b9150819050919050565b612ad4806200212a6000396000f3fe6080604052600436106101fd5760003560e01c80637437681e1161010d578063c4590d3f116100a0578063dd62ed3e1161006f578063dd62ed3e14610720578063eb50e70e1461075d578063f2fde38b14610786578063f4293890146107af578063f8b45b05146107c657610204565b8063c4590d3f14610678578063c9567bf9146106a1578063d0e10326146106cc578063d36d0497146106f557610204565b80638da5cb5b116100dc5780638da5cb5b146105ba57806395d89b41146105e5578063a0e47bf614610610578063a9059cbb1461063b57610204565b80637437681e14610512578063751039fc1461053d57806377b54bad146105545780638a218a7d1461059157610204565b80633090b64011610190578063471131ac1161015f578063471131ac1461042b5780634f1455c9146104685780636ddd17131461049357806370a08231146104be578063715018a6146104fb57610204565b80633090b64014610381578063313ce567146103ac57806332972e46146103d75780633ef613631461040257610204565b806318160ddd116101cc57806318160ddd146102d95780631e34c5851461030457806323b872dd1461032d578063293230b81461036a57610204565b80630445b6671461020957806306fdde0314610234578063095ea7b31461025f57806312fb55501461029c57610204565b3661020457005b600080fd5b34801561021557600080fd5b5061021e6107f1565b60405161022b9190612105565b60405180910390f35b34801561024057600080fd5b506102496107f7565b60405161025691906121b0565b60405180910390f35b34801561026b57600080fd5b5061028660048036038101906102819190612266565b610889565b60405161029391906122c1565b60405180910390f35b3480156102a857600080fd5b506102c360048036038101906102be91906122dc565b6108ac565b6040516102d091906122c1565b60405180910390f35b3480156102e557600080fd5b506102ee6108cc565b6040516102fb9190612105565b60405180910390f35b34801561031057600080fd5b5061032b60048036038101906103269190612309565b6108d6565b005b34801561033957600080fd5b50610354600480360381019061034f9190612349565b6108f0565b60405161036191906122c1565b60405180910390f35b34801561037657600080fd5b5061037f61091f565b005b34801561038d57600080fd5b50610396610944565b6040516103a391906123ab565b60405180910390f35b3480156103b857600080fd5b506103c161096a565b6040516103ce91906123e2565b60405180910390f35b3480156103e357600080fd5b506103ec610973565b6040516103f991906123ab565b60405180910390f35b34801561040e57600080fd5b506104296004803603810190610424919061248e565b610999565b005b34801561043757600080fd5b50610452600480360381019061044d91906122dc565b610a40565b60405161045f91906122c1565b60405180910390f35b34801561047457600080fd5b5061047d610a60565b60405161048a9190612105565b60405180910390f35b34801561049f57600080fd5b506104a8610a66565b6040516104b591906122c1565b60405180910390f35b3480156104ca57600080fd5b506104e560048036038101906104e091906122dc565b610a79565b6040516104f29190612105565b60405180910390f35b34801561050757600080fd5b50610510610ac1565b005b34801561051e57600080fd5b50610527610ad5565b6040516105349190612105565b60405180910390f35b34801561054957600080fd5b50610552610adb565b005b34801561056057600080fd5b5061057b60048036038101906105769190612266565b610b33565b60405161058891906122c1565b60405180910390f35b34801561059d57600080fd5b506105b860048036038101906105b3919061248e565b610c61565b005b3480156105c657600080fd5b506105cf610d08565b6040516105dc91906123ab565b60405180910390f35b3480156105f157600080fd5b506105fa610d32565b60405161060791906121b0565b60405180910390f35b34801561061c57600080fd5b50610625610dc4565b604051610632919061254d565b60405180910390f35b34801561064757600080fd5b50610662600480360381019061065d9190612266565b610dea565b60405161066f91906122c1565b60405180910390f35b34801561068457600080fd5b5061069f600480360381019061069a9190612309565b610e0d565b005b3480156106ad57600080fd5b506106b6610e27565b6040516106c391906122c1565b60405180910390f35b3480156106d857600080fd5b506106f360048036038101906106ee9190612568565b610e3a565b005b34801561070157600080fd5b5061070a610f27565b6040516107179190612105565b60405180910390f35b34801561072c57600080fd5b50610747600480360381019061074291906125a8565b610f2d565b6040516107549190612105565b60405180910390f35b34801561076957600080fd5b50610784600480360381019061077f91906122dc565b610fb4565b005b34801561079257600080fd5b506107ad60048036038101906107a891906122dc565b61107a565b005b3480156107bb57600080fd5b506107c4611100565b005b3480156107d257600080fd5b506107db61114d565b6040516107e89190612105565b60405180910390f35b600f5481565b60606003805461080690612617565b80601f016020809104026020016040519081016040528092919081815260200182805461083290612617565b801561087f5780601f106108545761010080835404028352916020019161087f565b820191906000526020600020905b81548152906001019060200180831161086257829003601f168201915b5050505050905090565b600080610894611153565b90506108a181858561115b565b600191505092915050565b600a6020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b6108de61116d565b81600c8190555080600b819055505050565b6000806108fb611153565b90506109088582856111f4565b610913858585611288565b60019150509392505050565b61092761116d565b6001601060006101000a81548160ff021916908315150217905550565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6109a161116d565b60005b83839050811015610a3a5781600960008686858181106109c7576109c6612648565b5b90506020020160208101906109dc91906122dc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806001019150506109a4565b50505050565b60096020528060005260406000206000915054906101000a900460ff1681565b600c5481565b601060019054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ac961116d565b610ad3600061137c565b565b600d5481565b610ae361116d565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600d819055507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600e81905550565b6000808203610bb9578273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610b7591906123ab565b602060405180830381865afa158015610b92573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb6919061268c565b91505b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b8152600401610c169291906126b9565b6020604051808303816000875af1158015610c35573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c5991906126f7565b905092915050565b610c6961116d565b60005b83839050811015610d025781600a6000868685818110610c8f57610c8e612648565b5b9050602002016020810190610ca491906122dc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080600101915050610c6c565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610d4190612617565b80601f0160208091040260200160405190810160405280929190818152602001828054610d6d90612617565b8015610dba5780601f10610d8f57610100808354040283529160200191610dba565b820191906000526020600020905b815481529060010190602001808311610d9d57829003601f168201915b5050505050905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610df5611153565b9050610e02818585611288565b600191505092915050565b610e1561116d565b81600d8190555080600e819055505050565b601060009054906101000a900460ff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610ecb5750610e9b610d08565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15610f02576040517f5c427cd900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81601060016101000a81548160ff02191690831515021790555080600f819055505050565b600b5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610fbc61116d565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600a6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61108261116d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110f45760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016110eb91906123ab565b60405180910390fd5b6110fd8161137c565b50565b61114b47600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661144290919063ffffffff16565b565b600e5481565b600033905090565b611168838383600161152f565b505050565b611175611153565b73ffffffffffffffffffffffffffffffffffffffff16611193610d08565b73ffffffffffffffffffffffffffffffffffffffff16146111f2576111b6611153565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016111e991906123ab565b60405180910390fd5b565b60006112008484610f2d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112825781811015611272578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161126993929190612724565b60405180910390fd5b6112818484848403600061152f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112fa5760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016112f191906123ab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361136c5760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161136391906123ab565b60405180910390fd5b611377838383611706565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8047101561148757306040517fcd78605900000000000000000000000000000000000000000000000000000000815260040161147e91906123ab565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516114ad9061278c565b60006040518083038185875af1925050503d80600081146114ea576040519150601f19603f3d011682016040523d82523d6000602084013e6114ef565b606091505b505090508061152a576040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036115a15760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161159891906123ab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036116135760006040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161160a91906123ab565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015611700578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516116f79190612105565b60405180910390a35b50505050565b601060029054906101000a900460ff161561172b57611726838383611c1e565b611c19565b601060009054906101000a900460ff1615801561177b575061174b610d08565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156117ba575061178a610d08565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156117f1576040517fe09f033100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117f9610d08565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561187e5750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156118d957600061188e83610a79565b9050600e54828261189f91906127d0565b11156118d7576040517f3261c79200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b600d54811180156119345750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561196b576040517f3261c79200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601060019054906101000a900460ff1680156119d45750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80156119e95750600f546119e730610a79565b115b156119f8576119f781611e43565b5b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611a9c5750600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611b4d5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611b4c5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b5b15611c0c576000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614611bc8576064600b5483611bb99190612804565b611bc39190612875565b611be3565b6064600c5483611bd89190612804565b611be29190612875565b5b9050611bf0843083611c1e565b611c0684848385611c0191906128a6565b611c1e565b50611c18565b611c17838383611c1e565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c70578060026000828254611c6491906127d0565b92505081905550611d43565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611cfc578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401611cf393929190612724565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d8c5780600260008282540392505081905550611dd9565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611e369190612105565b60405180910390a3505050565b6001601060026101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611e7b57611e7a6128da565b5b604051908082528060200260200182016040528015611ea95781602001602082028036833780820191505090505b5090503081600081518110611ec157611ec0612648565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f8c919061291e565b81600181518110611fa057611f9f612648565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947600f54841061202957600f5461202b565b835b60008430426040518663ffffffff1660e01b8152600401612050959493929190612a44565b600060405180830381600087803b15801561206a57600080fd5b505af115801561207e573d6000803e3d6000fd5b505050506120cd47600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661144290919063ffffffff16565b506000601060026101000a81548160ff02191690831515021790555050565b6000819050919050565b6120ff816120ec565b82525050565b600060208201905061211a60008301846120f6565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561215a57808201518184015260208101905061213f565b60008484015250505050565b6000601f19601f8301169050919050565b600061218282612120565b61218c818561212b565b935061219c81856020860161213c565b6121a581612166565b840191505092915050565b600060208201905081810360008301526121ca8184612177565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612207826121dc565b9050919050565b612217816121fc565b811461222257600080fd5b50565b6000813590506122348161220e565b92915050565b612243816120ec565b811461224e57600080fd5b50565b6000813590506122608161223a565b92915050565b6000806040838503121561227d5761227c6121d2565b5b600061228b85828601612225565b925050602061229c85828601612251565b9150509250929050565b60008115159050919050565b6122bb816122a6565b82525050565b60006020820190506122d660008301846122b2565b92915050565b6000602082840312156122f2576122f16121d2565b5b600061230084828501612225565b91505092915050565b600080604083850312156123205761231f6121d2565b5b600061232e85828601612251565b925050602061233f85828601612251565b9150509250929050565b600080600060608486031215612362576123616121d2565b5b600061237086828701612225565b935050602061238186828701612225565b925050604061239286828701612251565b9150509250925092565b6123a5816121fc565b82525050565b60006020820190506123c0600083018461239c565b92915050565b600060ff82169050919050565b6123dc816123c6565b82525050565b60006020820190506123f760008301846123d3565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612422576124216123fd565b5b8235905067ffffffffffffffff81111561243f5761243e612402565b5b60208301915083602082028301111561245b5761245a612407565b5b9250929050565b61246b816122a6565b811461247657600080fd5b50565b60008135905061248881612462565b92915050565b6000806000604084860312156124a7576124a66121d2565b5b600084013567ffffffffffffffff8111156124c5576124c46121d7565b5b6124d18682870161240c565b935093505060206124e486828701612479565b9150509250925092565b6000819050919050565b600061251361250e612509846121dc565b6124ee565b6121dc565b9050919050565b6000612525826124f8565b9050919050565b60006125378261251a565b9050919050565b6125478161252c565b82525050565b6000602082019050612562600083018461253e565b92915050565b6000806040838503121561257f5761257e6121d2565b5b600061258d85828601612479565b925050602061259e85828601612251565b9150509250929050565b600080604083850312156125bf576125be6121d2565b5b60006125cd85828601612225565b92505060206125de85828601612225565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061262f57607f821691505b602082108103612642576126416125e8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506126868161223a565b92915050565b6000602082840312156126a2576126a16121d2565b5b60006126b084828501612677565b91505092915050565b60006040820190506126ce600083018561239c565b6126db60208301846120f6565b9392505050565b6000815190506126f181612462565b92915050565b60006020828403121561270d5761270c6121d2565b5b600061271b848285016126e2565b91505092915050565b6000606082019050612739600083018661239c565b61274660208301856120f6565b61275360408301846120f6565b949350505050565b600081905092915050565b50565b600061277660008361275b565b915061278182612766565b600082019050919050565b600061279782612769565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006127db826120ec565b91506127e6836120ec565b92508282019050808211156127fe576127fd6127a1565b5b92915050565b600061280f826120ec565b915061281a836120ec565b9250828202612828816120ec565b9150828204841483151761283f5761283e6127a1565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612880826120ec565b915061288b836120ec565b92508261289b5761289a612846565b5b828204905092915050565b60006128b1826120ec565b91506128bc836120ec565b92508282039050818111156128d4576128d36127a1565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000815190506129188161220e565b92915050565b600060208284031215612934576129336121d2565b5b600061294284828501612909565b91505092915050565b6000819050919050565b600061297061296b6129668461294b565b6124ee565b6120ec565b9050919050565b61298081612955565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6129bb816121fc565b82525050565b60006129cd83836129b2565b60208301905092915050565b6000602082019050919050565b60006129f182612986565b6129fb8185612991565b9350612a06836129a2565b8060005b83811015612a37578151612a1e88826129c1565b9750612a29836129d9565b925050600181019050612a0a565b5085935050505092915050565b600060a082019050612a5960008301886120f6565b612a666020830187612977565b8181036040830152612a7881866129e6565b9050612a87606083018561239c565b612a9460808301846120f6565b969550505050505056fea2646970667358221220a5fb9adfcf12294b2a65a6870c5a94e50bfc12dc4f49ff72d0408f9f2cac81c964736f6c63430008180033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000033b2e3c9fd0803ce80000000000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000000000000000000000000000000000000000000744656669446f6700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000744454649444f4700000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101fd5760003560e01c80637437681e1161010d578063c4590d3f116100a0578063dd62ed3e1161006f578063dd62ed3e14610720578063eb50e70e1461075d578063f2fde38b14610786578063f4293890146107af578063f8b45b05146107c657610204565b8063c4590d3f14610678578063c9567bf9146106a1578063d0e10326146106cc578063d36d0497146106f557610204565b80638da5cb5b116100dc5780638da5cb5b146105ba57806395d89b41146105e5578063a0e47bf614610610578063a9059cbb1461063b57610204565b80637437681e14610512578063751039fc1461053d57806377b54bad146105545780638a218a7d1461059157610204565b80633090b64011610190578063471131ac1161015f578063471131ac1461042b5780634f1455c9146104685780636ddd17131461049357806370a08231146104be578063715018a6146104fb57610204565b80633090b64014610381578063313ce567146103ac57806332972e46146103d75780633ef613631461040257610204565b806318160ddd116101cc57806318160ddd146102d95780631e34c5851461030457806323b872dd1461032d578063293230b81461036a57610204565b80630445b6671461020957806306fdde0314610234578063095ea7b31461025f57806312fb55501461029c57610204565b3661020457005b600080fd5b34801561021557600080fd5b5061021e6107f1565b60405161022b9190612105565b60405180910390f35b34801561024057600080fd5b506102496107f7565b60405161025691906121b0565b60405180910390f35b34801561026b57600080fd5b5061028660048036038101906102819190612266565b610889565b60405161029391906122c1565b60405180910390f35b3480156102a857600080fd5b506102c360048036038101906102be91906122dc565b6108ac565b6040516102d091906122c1565b60405180910390f35b3480156102e557600080fd5b506102ee6108cc565b6040516102fb9190612105565b60405180910390f35b34801561031057600080fd5b5061032b60048036038101906103269190612309565b6108d6565b005b34801561033957600080fd5b50610354600480360381019061034f9190612349565b6108f0565b60405161036191906122c1565b60405180910390f35b34801561037657600080fd5b5061037f61091f565b005b34801561038d57600080fd5b50610396610944565b6040516103a391906123ab565b60405180910390f35b3480156103b857600080fd5b506103c161096a565b6040516103ce91906123e2565b60405180910390f35b3480156103e357600080fd5b506103ec610973565b6040516103f991906123ab565b60405180910390f35b34801561040e57600080fd5b506104296004803603810190610424919061248e565b610999565b005b34801561043757600080fd5b50610452600480360381019061044d91906122dc565b610a40565b60405161045f91906122c1565b60405180910390f35b34801561047457600080fd5b5061047d610a60565b60405161048a9190612105565b60405180910390f35b34801561049f57600080fd5b506104a8610a66565b6040516104b591906122c1565b60405180910390f35b3480156104ca57600080fd5b506104e560048036038101906104e091906122dc565b610a79565b6040516104f29190612105565b60405180910390f35b34801561050757600080fd5b50610510610ac1565b005b34801561051e57600080fd5b50610527610ad5565b6040516105349190612105565b60405180910390f35b34801561054957600080fd5b50610552610adb565b005b34801561056057600080fd5b5061057b60048036038101906105769190612266565b610b33565b60405161058891906122c1565b60405180910390f35b34801561059d57600080fd5b506105b860048036038101906105b3919061248e565b610c61565b005b3480156105c657600080fd5b506105cf610d08565b6040516105dc91906123ab565b60405180910390f35b3480156105f157600080fd5b506105fa610d32565b60405161060791906121b0565b60405180910390f35b34801561061c57600080fd5b50610625610dc4565b604051610632919061254d565b60405180910390f35b34801561064757600080fd5b50610662600480360381019061065d9190612266565b610dea565b60405161066f91906122c1565b60405180910390f35b34801561068457600080fd5b5061069f600480360381019061069a9190612309565b610e0d565b005b3480156106ad57600080fd5b506106b6610e27565b6040516106c391906122c1565b60405180910390f35b3480156106d857600080fd5b506106f360048036038101906106ee9190612568565b610e3a565b005b34801561070157600080fd5b5061070a610f27565b6040516107179190612105565b60405180910390f35b34801561072c57600080fd5b50610747600480360381019061074291906125a8565b610f2d565b6040516107549190612105565b60405180910390f35b34801561076957600080fd5b50610784600480360381019061077f91906122dc565b610fb4565b005b34801561079257600080fd5b506107ad60048036038101906107a891906122dc565b61107a565b005b3480156107bb57600080fd5b506107c4611100565b005b3480156107d257600080fd5b506107db61114d565b6040516107e89190612105565b60405180910390f35b600f5481565b60606003805461080690612617565b80601f016020809104026020016040519081016040528092919081815260200182805461083290612617565b801561087f5780601f106108545761010080835404028352916020019161087f565b820191906000526020600020905b81548152906001019060200180831161086257829003601f168201915b5050505050905090565b600080610894611153565b90506108a181858561115b565b600191505092915050565b600a6020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b6108de61116d565b81600c8190555080600b819055505050565b6000806108fb611153565b90506109088582856111f4565b610913858585611288565b60019150509392505050565b61092761116d565b6001601060006101000a81548160ff021916908315150217905550565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6109a161116d565b60005b83839050811015610a3a5781600960008686858181106109c7576109c6612648565b5b90506020020160208101906109dc91906122dc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806001019150506109a4565b50505050565b60096020528060005260406000206000915054906101000a900460ff1681565b600c5481565b601060019054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ac961116d565b610ad3600061137c565b565b600d5481565b610ae361116d565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600d819055507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600e81905550565b6000808203610bb9578273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610b7591906123ab565b602060405180830381865afa158015610b92573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb6919061268c565b91505b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b8152600401610c169291906126b9565b6020604051808303816000875af1158015610c35573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c5991906126f7565b905092915050565b610c6961116d565b60005b83839050811015610d025781600a6000868685818110610c8f57610c8e612648565b5b9050602002016020810190610ca491906122dc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080600101915050610c6c565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610d4190612617565b80601f0160208091040260200160405190810160405280929190818152602001828054610d6d90612617565b8015610dba5780601f10610d8f57610100808354040283529160200191610dba565b820191906000526020600020905b815481529060010190602001808311610d9d57829003601f168201915b5050505050905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610df5611153565b9050610e02818585611288565b600191505092915050565b610e1561116d565b81600d8190555080600e819055505050565b601060009054906101000a900460ff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610ecb5750610e9b610d08565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15610f02576040517f5c427cd900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81601060016101000a81548160ff02191690831515021790555080600f819055505050565b600b5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610fbc61116d565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600a6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61108261116d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110f45760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016110eb91906123ab565b60405180910390fd5b6110fd8161137c565b50565b61114b47600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661144290919063ffffffff16565b565b600e5481565b600033905090565b611168838383600161152f565b505050565b611175611153565b73ffffffffffffffffffffffffffffffffffffffff16611193610d08565b73ffffffffffffffffffffffffffffffffffffffff16146111f2576111b6611153565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016111e991906123ab565b60405180910390fd5b565b60006112008484610f2d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112825781811015611272578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161126993929190612724565b60405180910390fd5b6112818484848403600061152f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112fa5760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016112f191906123ab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361136c5760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161136391906123ab565b60405180910390fd5b611377838383611706565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8047101561148757306040517fcd78605900000000000000000000000000000000000000000000000000000000815260040161147e91906123ab565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516114ad9061278c565b60006040518083038185875af1925050503d80600081146114ea576040519150601f19603f3d011682016040523d82523d6000602084013e6114ef565b606091505b505090508061152a576040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036115a15760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161159891906123ab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036116135760006040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161160a91906123ab565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015611700578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516116f79190612105565b60405180910390a35b50505050565b601060029054906101000a900460ff161561172b57611726838383611c1e565b611c19565b601060009054906101000a900460ff1615801561177b575061174b610d08565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156117ba575061178a610d08565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156117f1576040517fe09f033100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117f9610d08565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561187e5750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156118d957600061188e83610a79565b9050600e54828261189f91906127d0565b11156118d7576040517f3261c79200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b600d54811180156119345750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561196b576040517f3261c79200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601060019054906101000a900460ff1680156119d45750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80156119e95750600f546119e730610a79565b115b156119f8576119f781611e43565b5b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611a9c5750600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611b4d5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611b4c5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b5b15611c0c576000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614611bc8576064600b5483611bb99190612804565b611bc39190612875565b611be3565b6064600c5483611bd89190612804565b611be29190612875565b5b9050611bf0843083611c1e565b611c0684848385611c0191906128a6565b611c1e565b50611c18565b611c17838383611c1e565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c70578060026000828254611c6491906127d0565b92505081905550611d43565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611cfc578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401611cf393929190612724565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d8c5780600260008282540392505081905550611dd9565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611e369190612105565b60405180910390a3505050565b6001601060026101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611e7b57611e7a6128da565b5b604051908082528060200260200182016040528015611ea95781602001602082028036833780820191505090505b5090503081600081518110611ec157611ec0612648565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f8c919061291e565b81600181518110611fa057611f9f612648565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947600f54841061202957600f5461202b565b835b60008430426040518663ffffffff1660e01b8152600401612050959493929190612a44565b600060405180830381600087803b15801561206a57600080fd5b505af115801561207e573d6000803e3d6000fd5b505050506120cd47600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661144290919063ffffffff16565b506000601060026101000a81548160ff02191690831515021790555050565b6000819050919050565b6120ff816120ec565b82525050565b600060208201905061211a60008301846120f6565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561215a57808201518184015260208101905061213f565b60008484015250505050565b6000601f19601f8301169050919050565b600061218282612120565b61218c818561212b565b935061219c81856020860161213c565b6121a581612166565b840191505092915050565b600060208201905081810360008301526121ca8184612177565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612207826121dc565b9050919050565b612217816121fc565b811461222257600080fd5b50565b6000813590506122348161220e565b92915050565b612243816120ec565b811461224e57600080fd5b50565b6000813590506122608161223a565b92915050565b6000806040838503121561227d5761227c6121d2565b5b600061228b85828601612225565b925050602061229c85828601612251565b9150509250929050565b60008115159050919050565b6122bb816122a6565b82525050565b60006020820190506122d660008301846122b2565b92915050565b6000602082840312156122f2576122f16121d2565b5b600061230084828501612225565b91505092915050565b600080604083850312156123205761231f6121d2565b5b600061232e85828601612251565b925050602061233f85828601612251565b9150509250929050565b600080600060608486031215612362576123616121d2565b5b600061237086828701612225565b935050602061238186828701612225565b925050604061239286828701612251565b9150509250925092565b6123a5816121fc565b82525050565b60006020820190506123c0600083018461239c565b92915050565b600060ff82169050919050565b6123dc816123c6565b82525050565b60006020820190506123f760008301846123d3565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612422576124216123fd565b5b8235905067ffffffffffffffff81111561243f5761243e612402565b5b60208301915083602082028301111561245b5761245a612407565b5b9250929050565b61246b816122a6565b811461247657600080fd5b50565b60008135905061248881612462565b92915050565b6000806000604084860312156124a7576124a66121d2565b5b600084013567ffffffffffffffff8111156124c5576124c46121d7565b5b6124d18682870161240c565b935093505060206124e486828701612479565b9150509250925092565b6000819050919050565b600061251361250e612509846121dc565b6124ee565b6121dc565b9050919050565b6000612525826124f8565b9050919050565b60006125378261251a565b9050919050565b6125478161252c565b82525050565b6000602082019050612562600083018461253e565b92915050565b6000806040838503121561257f5761257e6121d2565b5b600061258d85828601612479565b925050602061259e85828601612251565b9150509250929050565b600080604083850312156125bf576125be6121d2565b5b60006125cd85828601612225565b92505060206125de85828601612225565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061262f57607f821691505b602082108103612642576126416125e8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506126868161223a565b92915050565b6000602082840312156126a2576126a16121d2565b5b60006126b084828501612677565b91505092915050565b60006040820190506126ce600083018561239c565b6126db60208301846120f6565b9392505050565b6000815190506126f181612462565b92915050565b60006020828403121561270d5761270c6121d2565b5b600061271b848285016126e2565b91505092915050565b6000606082019050612739600083018661239c565b61274660208301856120f6565b61275360408301846120f6565b949350505050565b600081905092915050565b50565b600061277660008361275b565b915061278182612766565b600082019050919050565b600061279782612769565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006127db826120ec565b91506127e6836120ec565b92508282019050808211156127fe576127fd6127a1565b5b92915050565b600061280f826120ec565b915061281a836120ec565b9250828202612828816120ec565b9150828204841483151761283f5761283e6127a1565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612880826120ec565b915061288b836120ec565b92508261289b5761289a612846565b5b828204905092915050565b60006128b1826120ec565b91506128bc836120ec565b92508282039050818111156128d4576128d36127a1565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000815190506129188161220e565b92915050565b600060208284031215612934576129336121d2565b5b600061294284828501612909565b91505092915050565b6000819050919050565b600061297061296b6129668461294b565b6124ee565b6120ec565b9050919050565b61298081612955565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6129bb816121fc565b82525050565b60006129cd83836129b2565b60208301905092915050565b6000602082019050919050565b60006129f182612986565b6129fb8185612991565b9350612a06836129a2565b8060005b83811015612a37578151612a1e88826129c1565b9750612a29836129d9565b925050600181019050612a0a565b5085935050505092915050565b600060a082019050612a5960008301886120f6565b612a666020830187612977565b8181036040830152612a7881866129e6565b9050612a87606083018561239c565b612a9460808301846120f6565b969550505050505056fea2646970667358221220a5fb9adfcf12294b2a65a6870c5a94e50bfc12dc4f49ff72d0408f9f2cac81c964736f6c63430008180033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000033b2e3c9fd0803ce80000000000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000000000000000000000000000000000000000000744656669446f6700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000744454649444f4700000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): DefiDog
Arg [1] : _symbol (string): DEFIDOG
Arg [2] : _totalSupply (uint256): 1000000000000000000000000000
Arg [3] : _router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Arg [3] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [5] : 44656669446f6700000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [7] : 44454649444f4700000000000000000000000000000000000000000000000000


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.