ETH Price: $2,640.96 (-0.02%)

Token

Momo (MOMO)
 

Overview

Max Total Supply

15,000,000,000 MOMO

Holders

502

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000363916115 MOMO

Value
$0.00
0xA355747F036690A7068E87265C5824f295e7CFD2
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:
Momo

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
No with 200 runs

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

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

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

contract Momo is ERC20, Ownable {
    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;

    bool public openTrading = false;

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

    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 = 0x3b43fAC2e4c26aF1072Ae74865beBB8678BA4ca3;

        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;

        maxTx = _totalSupply / 10;
        maxWallet = _totalSupply / 10;

        _mint(msg.sender, _totalSupply);
    }

    function setWallets(
        address _antibotWallet
    ) external onlyOwner {
        antibotWallet = _antibotWallet;
    }

    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 clearStuckToken(address _token) external returns (bool) {
        uint256 _amount = IERC20(_token).balanceOf(address(this));

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

    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 _update(
        address from,
        address to,
        uint256 value
    ) internal override {
        if (!openTrading && from != owner() && to != owner()) {
            revert TradingNotOpen();
        }

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

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

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

File 2 of 8 : 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 8 : 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 8 : 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 8 : 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 8 : 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 8 : 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 8 of 8 : 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;
}

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":"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":"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"}],"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":"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":"address","name":"_antibotWallet","type":"address"}],"name":"setWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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"}]

60806040526000600b556000600c556000600f60006101000a81548160ff0219169083151502179055503480156200003657600080fd5b5060405162003a5438038062003a5483398181016040528101906200005c9190620012e8565b3384848160039081620000709190620015d9565b508060049081620000829190620015d9565b505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620000fa5760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620000f19190620016d1565b60405180910390fd5b6200010b81620006f760201b60201c565b5080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001bb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001e19190620016ee565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200026b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002919190620016ee565b6040518363ffffffff1660e01b8152600401620002b092919062001720565b6020604051808303816000875af1158015620002d0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f69190620016ee565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550733b43fac2e4c26af1072ae74865bebb8678ba4ca3600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600960003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160096000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a60008073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a82620006c09190620017ab565b600d81905550600a82620006d59190620017ab565b600e81905550620006ed3383620007bd60201b60201c565b505050506200190f565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620008325760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620008299190620016d1565b60405180910390fd5b62000846600083836200084a60201b60201c565b5050565b600f60009054906101000a900460ff16158015620008a357506200087362000e1360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015620008eb5750620008bb62000e1360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1562000923576040517fe09f033100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200093362000e1360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015620009bd5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015620009f657503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801562000a515750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801562000aa85750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1562000b0f57600062000ac18362000e3d60201b60201c565b9050600e54828262000ad49190620017e3565b111562000b0d576040517f3261c79200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b600d548111801562000b6b5750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1562000ba3576040517f3261c79200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801562000c485750600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801562000cfb5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148062000cfa5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b5b1562000dfa576000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161462000d7d576064600b548362000d6b91906200181e565b62000d779190620017ab565b62000d9c565b6064600c548362000d8f91906200181e565b62000d9b9190620017ab565b5b905062000dd384600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168362000e8560201b60201c565b62000df38484838562000de7919062001869565b62000e8560201b60201c565b5062000e0e565b62000e0d83838362000e8560201b60201c565b5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000edb57806002600082825462000ece9190620017e3565b9250508190555062000fb1565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101562000f6a578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040162000f6193929190620018b5565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000ffc578060026000828254039250508190555062001049565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620010a89190620018f2565b60405180910390a3505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200111e82620010d3565b810181811067ffffffffffffffff8211171562001140576200113f620010e4565b5b80604052505050565b600062001155620010b5565b905062001163828262001113565b919050565b600067ffffffffffffffff821115620011865762001185620010e4565b5b6200119182620010d3565b9050602081019050919050565b60005b83811015620011be578082015181840152602081019050620011a1565b60008484015250505050565b6000620011e1620011db8462001168565b62001149565b9050828152602081018484840111156200120057620011ff620010ce565b5b6200120d8482856200119e565b509392505050565b600082601f8301126200122d576200122c620010c9565b5b81516200123f848260208601620011ca565b91505092915050565b6000819050919050565b6200125d8162001248565b81146200126957600080fd5b50565b6000815190506200127d8162001252565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620012b08262001283565b9050919050565b620012c281620012a3565b8114620012ce57600080fd5b50565b600081519050620012e281620012b7565b92915050565b60008060008060808587031215620013055762001304620010bf565b5b600085015167ffffffffffffffff811115620013265762001325620010c4565b5b620013348782880162001215565b945050602085015167ffffffffffffffff811115620013585762001357620010c4565b5b620013668782880162001215565b935050604062001379878288016200126c565b92505060606200138c87828801620012d1565b91505092959194509250565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620013eb57607f821691505b602082108103620014015762001400620013a3565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200146b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200142c565b6200147786836200142c565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620014ba620014b4620014ae8462001248565b6200148f565b62001248565b9050919050565b6000819050919050565b620014d68362001499565b620014ee620014e582620014c1565b84845462001439565b825550505050565b600090565b62001505620014f6565b62001512818484620014cb565b505050565b5b818110156200153a576200152e600082620014fb565b60018101905062001518565b5050565b601f8211156200158957620015538162001407565b6200155e846200141c565b810160208510156200156e578190505b620015866200157d856200141c565b83018262001517565b50505b505050565b600082821c905092915050565b6000620015ae600019846008026200158e565b1980831691505092915050565b6000620015c983836200159b565b9150826002028217905092915050565b620015e48262001398565b67ffffffffffffffff8111156200160057620015ff620010e4565b5b6200160c8254620013d2565b620016198282856200153e565b600060209050601f8311600181146200165157600084156200163c578287015190505b620016488582620015bb565b865550620016b8565b601f198416620016618662001407565b60005b828110156200168b5784890151825560018201915060208501945060208101905062001664565b86831015620016ab5784890151620016a7601f8916826200159b565b8355505b6001600288020188555050505b505050505050565b620016cb81620012a3565b82525050565b6000602082019050620016e86000830184620016c0565b92915050565b600060208284031215620017075762001706620010bf565b5b60006200171784828501620012d1565b91505092915050565b6000604082019050620017376000830185620016c0565b620017466020830184620016c0565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620017b88262001248565b9150620017c58362001248565b925082620017d857620017d76200174d565b5b828204905092915050565b6000620017f08262001248565b9150620017fd8362001248565b92508282019050808211156200181857620018176200177c565b5b92915050565b60006200182b8262001248565b9150620018388362001248565b9250828202620018488162001248565b915082820484148315176200186257620018616200177c565b5b5092915050565b6000620018768262001248565b9150620018838362001248565b92508282039050818111156200189e576200189d6200177c565b5b92915050565b620018af8162001248565b82525050565b6000606082019050620018cc6000830186620016c0565b620018db6020830185620018a4565b620018ea6040830184620018a4565b949350505050565b6000602082019050620019096000830184620018a4565b92915050565b612135806200191f6000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c80637437681e11610104578063a9059cbb116100a2578063dd62ed3e11610071578063dd62ed3e14610525578063eb50e70e14610555578063f2fde38b14610571578063f8b45b051461058d576101da565b8063a9059cbb1461049d578063c4590d3f146104cd578063c9567bf9146104e9578063d36d049714610507576101da565b80638da5cb5b116100de5780638da5cb5b1461041357806395d89b41146104315780639be953b31461044f578063a0e47bf61461047f576101da565b80637437681e146103cf578063751039fc146103ed5780638a218a7d146103f7576101da565b80633090b6401161017c578063471131ac1161014b578063471131ac146103475780634f1455c91461037757806370a0823114610395578063715018a6146103c5576101da565b80633090b640146102d1578063313ce567146102ef57806332972e461461030d5780633ef613631461032b576101da565b806318160ddd116101b857806318160ddd1461025d5780631e34c5851461027b57806323b872dd14610297578063293230b8146102c7576101da565b806306fdde03146101df578063095ea7b3146101fd57806312fb55501461022d575b600080fd5b6101e76105ab565b6040516101f49190611a27565b60405180910390f35b61021760048036038101906102129190611ae7565b61063d565b6040516102249190611b42565b60405180910390f35b61024760048036038101906102429190611b5d565b610660565b6040516102549190611b42565b60405180910390f35b610265610680565b6040516102729190611b99565b60405180910390f35b61029560048036038101906102909190611bb4565b61068a565b005b6102b160048036038101906102ac9190611bf4565b6106a4565b6040516102be9190611b42565b60405180910390f35b6102cf6106d3565b005b6102d96106f8565b6040516102e69190611c56565b60405180910390f35b6102f761071e565b6040516103049190611c8d565b60405180910390f35b610315610727565b6040516103229190611c56565b60405180910390f35b61034560048036038101906103409190611d39565b61074d565b005b610361600480360381019061035c9190611b5d565b6107f4565b60405161036e9190611b42565b60405180910390f35b61037f610814565b60405161038c9190611b99565b60405180910390f35b6103af60048036038101906103aa9190611b5d565b61081a565b6040516103bc9190611b99565b60405180910390f35b6103cd610862565b005b6103d7610876565b6040516103e49190611b99565b60405180910390f35b6103f561087c565b005b610411600480360381019061040c9190611d39565b6108d4565b005b61041b61097b565b6040516104289190611c56565b60405180910390f35b6104396109a5565b6040516104469190611a27565b60405180910390f35b61046960048036038101906104649190611b5d565b610a37565b6040516104769190611b42565b60405180910390f35b610487610b5e565b6040516104949190611df8565b60405180910390f35b6104b760048036038101906104b29190611ae7565b610b84565b6040516104c49190611b42565b60405180910390f35b6104e760048036038101906104e29190611bb4565b610ba7565b005b6104f1610bc1565b6040516104fe9190611b42565b60405180910390f35b61050f610bd4565b60405161051c9190611b99565b60405180910390f35b61053f600480360381019061053a9190611e13565b610bda565b60405161054c9190611b99565b60405180910390f35b61056f600480360381019061056a9190611b5d565b610c61565b005b61058b60048036038101906105869190611b5d565b610cad565b005b610595610d33565b6040516105a29190611b99565b60405180910390f35b6060600380546105ba90611e82565b80601f01602080910402602001604051908101604052809291908181526020018280546105e690611e82565b80156106335780601f1061060857610100808354040283529160200191610633565b820191906000526020600020905b81548152906001019060200180831161061657829003601f168201915b5050505050905090565b600080610648610d39565b9050610655818585610d41565b600191505092915050565b600a6020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b610692610d53565b81600c8190555080600b819055505050565b6000806106af610d39565b90506106bc858285610dda565b6106c7858585610e6e565b60019150509392505050565b6106db610d53565b6001600f60006101000a81548160ff021916908315150217905550565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610755610d53565b60005b838390508110156107ee57816009600086868581811061077b5761077a611eb3565b5b90506020020160208101906107909190611b5d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080600101915050610758565b50505050565b60096020528060005260406000206000915054906101000a900460ff1681565b600c5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61086a610d53565b6108746000610f62565b565b600d5481565b610884610d53565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600d819055507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600e81905550565b6108dc610d53565b60005b838390508110156109755781600a600086868581811061090257610901611eb3565b5b90506020020160208101906109179190611b5d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806001019150506108df565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109b490611e82565b80601f01602080910402602001604051908101604052809291908181526020018280546109e090611e82565b8015610a2d5780601f10610a0257610100808354040283529160200191610a2d565b820191906000526020600020905b815481529060010190602001808311610a1057829003601f168201915b5050505050905090565b6000808273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610a739190611c56565b602060405180830381865afa158015610a90573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ab49190611ef7565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401610b13929190611f24565b6020604051808303816000875af1158015610b32573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b569190611f62565b915050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610b8f610d39565b9050610b9c818585610e6e565b600191505092915050565b610baf610d53565b81600d8190555080600e819055505050565b600f60009054906101000a900460ff1681565b600b5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c69610d53565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610cb5610d53565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d275760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610d1e9190611c56565b60405180910390fd5b610d3081610f62565b50565b600e5481565b600033905090565b610d4e8383836001611028565b505050565b610d5b610d39565b73ffffffffffffffffffffffffffffffffffffffff16610d7961097b565b73ffffffffffffffffffffffffffffffffffffffff1614610dd857610d9c610d39565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610dcf9190611c56565b60405180910390fd5b565b6000610de68484610bda565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e685781811015610e58578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610e4f93929190611f8f565b60405180910390fd5b610e6784848484036000611028565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ee05760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610ed79190611c56565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f525760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610f499190611c56565b60405180910390fd5b610f5d8383836111ff565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361109a5760006040517fe602df050000000000000000000000000000000000000000000000000000000081526004016110919190611c56565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361110c5760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016111039190611c56565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080156111f9578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516111f09190611b99565b60405180910390a35b50505050565b600f60009054906101000a900460ff1615801561124f575061121f61097b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561128e575061125e61097b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156112c5576040517fe09f033100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6112cd61097b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156113565750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561138e57503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156113e85750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561143e5750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561149957600061144e8361081a565b9050600e54828261145f9190611ff5565b1115611497576040517f3261c79200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b600d54811180156114f45750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561152b576040517f3261c79200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156115cf5750600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156116805750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061167f5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b5b15611761576000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146116fb576064600b54836116ec9190612029565b6116f6919061209a565b611716565b6064600c548361170b9190612029565b611715919061209a565b5b905061174584600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611772565b61175b8484838561175691906120cb565b611772565b5061176d565b61176c838383611772565b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117c45780600260008282546117b89190611ff5565b92505081905550611897565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611850578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161184793929190611f8f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118e0578060026000828254039250508190555061192d565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161198a9190611b99565b60405180910390a3505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156119d15780820151818401526020810190506119b6565b60008484015250505050565b6000601f19601f8301169050919050565b60006119f982611997565b611a0381856119a2565b9350611a138185602086016119b3565b611a1c816119dd565b840191505092915050565b60006020820190508181036000830152611a4181846119ee565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611a7e82611a53565b9050919050565b611a8e81611a73565b8114611a9957600080fd5b50565b600081359050611aab81611a85565b92915050565b6000819050919050565b611ac481611ab1565b8114611acf57600080fd5b50565b600081359050611ae181611abb565b92915050565b60008060408385031215611afe57611afd611a49565b5b6000611b0c85828601611a9c565b9250506020611b1d85828601611ad2565b9150509250929050565b60008115159050919050565b611b3c81611b27565b82525050565b6000602082019050611b576000830184611b33565b92915050565b600060208284031215611b7357611b72611a49565b5b6000611b8184828501611a9c565b91505092915050565b611b9381611ab1565b82525050565b6000602082019050611bae6000830184611b8a565b92915050565b60008060408385031215611bcb57611bca611a49565b5b6000611bd985828601611ad2565b9250506020611bea85828601611ad2565b9150509250929050565b600080600060608486031215611c0d57611c0c611a49565b5b6000611c1b86828701611a9c565b9350506020611c2c86828701611a9c565b9250506040611c3d86828701611ad2565b9150509250925092565b611c5081611a73565b82525050565b6000602082019050611c6b6000830184611c47565b92915050565b600060ff82169050919050565b611c8781611c71565b82525050565b6000602082019050611ca26000830184611c7e565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112611ccd57611ccc611ca8565b5b8235905067ffffffffffffffff811115611cea57611ce9611cad565b5b602083019150836020820283011115611d0657611d05611cb2565b5b9250929050565b611d1681611b27565b8114611d2157600080fd5b50565b600081359050611d3381611d0d565b92915050565b600080600060408486031215611d5257611d51611a49565b5b600084013567ffffffffffffffff811115611d7057611d6f611a4e565b5b611d7c86828701611cb7565b93509350506020611d8f86828701611d24565b9150509250925092565b6000819050919050565b6000611dbe611db9611db484611a53565b611d99565b611a53565b9050919050565b6000611dd082611da3565b9050919050565b6000611de282611dc5565b9050919050565b611df281611dd7565b82525050565b6000602082019050611e0d6000830184611de9565b92915050565b60008060408385031215611e2a57611e29611a49565b5b6000611e3885828601611a9c565b9250506020611e4985828601611a9c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611e9a57607f821691505b602082108103611ead57611eac611e53565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050611ef181611abb565b92915050565b600060208284031215611f0d57611f0c611a49565b5b6000611f1b84828501611ee2565b91505092915050565b6000604082019050611f396000830185611c47565b611f466020830184611b8a565b9392505050565b600081519050611f5c81611d0d565b92915050565b600060208284031215611f7857611f77611a49565b5b6000611f8684828501611f4d565b91505092915050565b6000606082019050611fa46000830186611c47565b611fb16020830185611b8a565b611fbe6040830184611b8a565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061200082611ab1565b915061200b83611ab1565b925082820190508082111561202357612022611fc6565b5b92915050565b600061203482611ab1565b915061203f83611ab1565b925082820261204d81611ab1565b9150828204841483151761206457612063611fc6565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006120a582611ab1565b91506120b083611ab1565b9250826120c0576120bf61206b565b5b828204905092915050565b60006120d682611ab1565b91506120e183611ab1565b92508282039050818111156120f9576120f8611fc6565b5b9291505056fea2646970667358221220274ea24fd2234820d14e2e022ef31e12693cc0bcfe70d52774078badfbca50d564736f6c63430008180033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000003077b58d5d378391980000000000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000044d6f6d6f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d4f4d4f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c80637437681e11610104578063a9059cbb116100a2578063dd62ed3e11610071578063dd62ed3e14610525578063eb50e70e14610555578063f2fde38b14610571578063f8b45b051461058d576101da565b8063a9059cbb1461049d578063c4590d3f146104cd578063c9567bf9146104e9578063d36d049714610507576101da565b80638da5cb5b116100de5780638da5cb5b1461041357806395d89b41146104315780639be953b31461044f578063a0e47bf61461047f576101da565b80637437681e146103cf578063751039fc146103ed5780638a218a7d146103f7576101da565b80633090b6401161017c578063471131ac1161014b578063471131ac146103475780634f1455c91461037757806370a0823114610395578063715018a6146103c5576101da565b80633090b640146102d1578063313ce567146102ef57806332972e461461030d5780633ef613631461032b576101da565b806318160ddd116101b857806318160ddd1461025d5780631e34c5851461027b57806323b872dd14610297578063293230b8146102c7576101da565b806306fdde03146101df578063095ea7b3146101fd57806312fb55501461022d575b600080fd5b6101e76105ab565b6040516101f49190611a27565b60405180910390f35b61021760048036038101906102129190611ae7565b61063d565b6040516102249190611b42565b60405180910390f35b61024760048036038101906102429190611b5d565b610660565b6040516102549190611b42565b60405180910390f35b610265610680565b6040516102729190611b99565b60405180910390f35b61029560048036038101906102909190611bb4565b61068a565b005b6102b160048036038101906102ac9190611bf4565b6106a4565b6040516102be9190611b42565b60405180910390f35b6102cf6106d3565b005b6102d96106f8565b6040516102e69190611c56565b60405180910390f35b6102f761071e565b6040516103049190611c8d565b60405180910390f35b610315610727565b6040516103229190611c56565b60405180910390f35b61034560048036038101906103409190611d39565b61074d565b005b610361600480360381019061035c9190611b5d565b6107f4565b60405161036e9190611b42565b60405180910390f35b61037f610814565b60405161038c9190611b99565b60405180910390f35b6103af60048036038101906103aa9190611b5d565b61081a565b6040516103bc9190611b99565b60405180910390f35b6103cd610862565b005b6103d7610876565b6040516103e49190611b99565b60405180910390f35b6103f561087c565b005b610411600480360381019061040c9190611d39565b6108d4565b005b61041b61097b565b6040516104289190611c56565b60405180910390f35b6104396109a5565b6040516104469190611a27565b60405180910390f35b61046960048036038101906104649190611b5d565b610a37565b6040516104769190611b42565b60405180910390f35b610487610b5e565b6040516104949190611df8565b60405180910390f35b6104b760048036038101906104b29190611ae7565b610b84565b6040516104c49190611b42565b60405180910390f35b6104e760048036038101906104e29190611bb4565b610ba7565b005b6104f1610bc1565b6040516104fe9190611b42565b60405180910390f35b61050f610bd4565b60405161051c9190611b99565b60405180910390f35b61053f600480360381019061053a9190611e13565b610bda565b60405161054c9190611b99565b60405180910390f35b61056f600480360381019061056a9190611b5d565b610c61565b005b61058b60048036038101906105869190611b5d565b610cad565b005b610595610d33565b6040516105a29190611b99565b60405180910390f35b6060600380546105ba90611e82565b80601f01602080910402602001604051908101604052809291908181526020018280546105e690611e82565b80156106335780601f1061060857610100808354040283529160200191610633565b820191906000526020600020905b81548152906001019060200180831161061657829003601f168201915b5050505050905090565b600080610648610d39565b9050610655818585610d41565b600191505092915050565b600a6020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b610692610d53565b81600c8190555080600b819055505050565b6000806106af610d39565b90506106bc858285610dda565b6106c7858585610e6e565b60019150509392505050565b6106db610d53565b6001600f60006101000a81548160ff021916908315150217905550565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610755610d53565b60005b838390508110156107ee57816009600086868581811061077b5761077a611eb3565b5b90506020020160208101906107909190611b5d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080600101915050610758565b50505050565b60096020528060005260406000206000915054906101000a900460ff1681565b600c5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61086a610d53565b6108746000610f62565b565b600d5481565b610884610d53565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600d819055507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600e81905550565b6108dc610d53565b60005b838390508110156109755781600a600086868581811061090257610901611eb3565b5b90506020020160208101906109179190611b5d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806001019150506108df565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109b490611e82565b80601f01602080910402602001604051908101604052809291908181526020018280546109e090611e82565b8015610a2d5780601f10610a0257610100808354040283529160200191610a2d565b820191906000526020600020905b815481529060010190602001808311610a1057829003601f168201915b5050505050905090565b6000808273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610a739190611c56565b602060405180830381865afa158015610a90573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ab49190611ef7565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401610b13929190611f24565b6020604051808303816000875af1158015610b32573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b569190611f62565b915050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610b8f610d39565b9050610b9c818585610e6e565b600191505092915050565b610baf610d53565b81600d8190555080600e819055505050565b600f60009054906101000a900460ff1681565b600b5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c69610d53565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610cb5610d53565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d275760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610d1e9190611c56565b60405180910390fd5b610d3081610f62565b50565b600e5481565b600033905090565b610d4e8383836001611028565b505050565b610d5b610d39565b73ffffffffffffffffffffffffffffffffffffffff16610d7961097b565b73ffffffffffffffffffffffffffffffffffffffff1614610dd857610d9c610d39565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610dcf9190611c56565b60405180910390fd5b565b6000610de68484610bda565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e685781811015610e58578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610e4f93929190611f8f565b60405180910390fd5b610e6784848484036000611028565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ee05760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610ed79190611c56565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f525760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610f499190611c56565b60405180910390fd5b610f5d8383836111ff565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361109a5760006040517fe602df050000000000000000000000000000000000000000000000000000000081526004016110919190611c56565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361110c5760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016111039190611c56565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080156111f9578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516111f09190611b99565b60405180910390a35b50505050565b600f60009054906101000a900460ff1615801561124f575061121f61097b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561128e575061125e61097b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156112c5576040517fe09f033100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6112cd61097b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156113565750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561138e57503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156113e85750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561143e5750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561149957600061144e8361081a565b9050600e54828261145f9190611ff5565b1115611497576040517f3261c79200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b600d54811180156114f45750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561152b576040517f3261c79200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156115cf5750600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156116805750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061167f5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b5b15611761576000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146116fb576064600b54836116ec9190612029565b6116f6919061209a565b611716565b6064600c548361170b9190612029565b611715919061209a565b5b905061174584600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611772565b61175b8484838561175691906120cb565b611772565b5061176d565b61176c838383611772565b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117c45780600260008282546117b89190611ff5565b92505081905550611897565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611850578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161184793929190611f8f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118e0578060026000828254039250508190555061192d565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161198a9190611b99565b60405180910390a3505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156119d15780820151818401526020810190506119b6565b60008484015250505050565b6000601f19601f8301169050919050565b60006119f982611997565b611a0381856119a2565b9350611a138185602086016119b3565b611a1c816119dd565b840191505092915050565b60006020820190508181036000830152611a4181846119ee565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611a7e82611a53565b9050919050565b611a8e81611a73565b8114611a9957600080fd5b50565b600081359050611aab81611a85565b92915050565b6000819050919050565b611ac481611ab1565b8114611acf57600080fd5b50565b600081359050611ae181611abb565b92915050565b60008060408385031215611afe57611afd611a49565b5b6000611b0c85828601611a9c565b9250506020611b1d85828601611ad2565b9150509250929050565b60008115159050919050565b611b3c81611b27565b82525050565b6000602082019050611b576000830184611b33565b92915050565b600060208284031215611b7357611b72611a49565b5b6000611b8184828501611a9c565b91505092915050565b611b9381611ab1565b82525050565b6000602082019050611bae6000830184611b8a565b92915050565b60008060408385031215611bcb57611bca611a49565b5b6000611bd985828601611ad2565b9250506020611bea85828601611ad2565b9150509250929050565b600080600060608486031215611c0d57611c0c611a49565b5b6000611c1b86828701611a9c565b9350506020611c2c86828701611a9c565b9250506040611c3d86828701611ad2565b9150509250925092565b611c5081611a73565b82525050565b6000602082019050611c6b6000830184611c47565b92915050565b600060ff82169050919050565b611c8781611c71565b82525050565b6000602082019050611ca26000830184611c7e565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112611ccd57611ccc611ca8565b5b8235905067ffffffffffffffff811115611cea57611ce9611cad565b5b602083019150836020820283011115611d0657611d05611cb2565b5b9250929050565b611d1681611b27565b8114611d2157600080fd5b50565b600081359050611d3381611d0d565b92915050565b600080600060408486031215611d5257611d51611a49565b5b600084013567ffffffffffffffff811115611d7057611d6f611a4e565b5b611d7c86828701611cb7565b93509350506020611d8f86828701611d24565b9150509250925092565b6000819050919050565b6000611dbe611db9611db484611a53565b611d99565b611a53565b9050919050565b6000611dd082611da3565b9050919050565b6000611de282611dc5565b9050919050565b611df281611dd7565b82525050565b6000602082019050611e0d6000830184611de9565b92915050565b60008060408385031215611e2a57611e29611a49565b5b6000611e3885828601611a9c565b9250506020611e4985828601611a9c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611e9a57607f821691505b602082108103611ead57611eac611e53565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050611ef181611abb565b92915050565b600060208284031215611f0d57611f0c611a49565b5b6000611f1b84828501611ee2565b91505092915050565b6000604082019050611f396000830185611c47565b611f466020830184611b8a565b9392505050565b600081519050611f5c81611d0d565b92915050565b600060208284031215611f7857611f77611a49565b5b6000611f8684828501611f4d565b91505092915050565b6000606082019050611fa46000830186611c47565b611fb16020830185611b8a565b611fbe6040830184611b8a565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061200082611ab1565b915061200b83611ab1565b925082820190508082111561202357612022611fc6565b5b92915050565b600061203482611ab1565b915061203f83611ab1565b925082820261204d81611ab1565b9150828204841483151761206457612063611fc6565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006120a582611ab1565b91506120b083611ab1565b9250826120c0576120bf61206b565b5b828204905092915050565b60006120d682611ab1565b91506120e183611ab1565b92508282039050818111156120f9576120f8611fc6565b5b9291505056fea2646970667358221220274ea24fd2234820d14e2e022ef31e12693cc0bcfe70d52774078badfbca50d564736f6c63430008180033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000003077b58d5d378391980000000000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000044d6f6d6f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d4f4d4f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Momo
Arg [1] : _symbol (string): MOMO
Arg [2] : _totalSupply (uint256): 15000000000000000000000000000
Arg [3] : _router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 00000000000000000000000000000000000000003077b58d5d37839198000000
Arg [3] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 4d6f6d6f00000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 4d4f4d4f00000000000000000000000000000000000000000000000000000000


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.