ETH Price: $2,890.15 (-10.30%)
Gas: 15 Gwei

Token

Virtual Versions (VV)
 

Overview

Max Total Supply

1,000,000,000 VV

Holders

1,007

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
18,894.381639105000726863 VV

Value
$0.00
0x22b1c3951944edd29ec3e6832e169a39c94e6989
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:
VirtualVersions

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-02-27
*/

// SPDX-License-Identifier: MIT

pragma solidity =0.8.9;

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

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

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

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

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

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

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

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

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

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

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

/**
 * @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;
    }
}

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

abstract contract Adminable is Context {
    address public admin;
    address public adminCandidate;

    event AdminChangeRequested(address indexed oldAdmin, address indexed newAdmin);
    event AdminChangeConfirmed(address indexed oldAdmin, address indexed newAdmin);

    function _initializeAdminable(address _admin) internal {
        require(_admin != address(0), "Adminable-1: zero admin address");
        admin = _admin;
        emit AdminChangeConfirmed(address(0), _admin);
    }

    modifier onlyAdmin() {
        require(admin == _msgSender(), "Adminable-2: auth failed");
        _;
    }

    modifier onlyAdminCandidate {
        require(adminCandidate == _msgSender(), "Adminable-3: auth failed");
        _;
    }

    function changeAdmin(address _adminCandidate) onlyAdmin external {
        adminCandidate = _adminCandidate;
        emit AdminChangeRequested(admin, _adminCandidate);
    }

    function confirmNewAdmin() onlyAdminCandidate external {
        emit AdminChangeConfirmed(admin, adminCandidate);
        admin = adminCandidate;
        adminCandidate = address(0);
    }
}

interface IAntiBot {
    function onPreApproveCheck(address owner, address spender, uint256 amount) external;
    function onPreTransferCheck(address operator, address from, address to, uint256 amount) external;
}

contract VirtualVersions is ERC20, Adminable {
    uint256 public constant MAX_SUPPLY = 10**9 * 10**18;

    address public antiBot;

    event SetAntiBot(address indexed antiBot);

    constructor(address _admin, address _antiBot) ERC20("Virtual Versions", "VV") {
        _initializeAdminable(_admin);
        _setAntiBot(_antiBot);
    }

    function setAntiBot(address _antiBot) external onlyAdmin {
        _setAntiBot(_antiBot);
    }

    function _setAntiBot(address _antiBot) private {
        antiBot = _antiBot;
        emit SetAntiBot(_antiBot);
    }

    function mint(address _account, uint256 _amount) external onlyAdmin {
        require(_amount != 0, "Zero mint amount");
        require(totalSupply() + _amount <= MAX_SUPPLY, "Mint amount exceeds max total supply");
        _mint(_account, _amount);
    }

    function _approve(address _owner, address _spender, uint256 _amount) internal virtual override {
        address guard = antiBot;
        if (guard != address(0)) {
            IAntiBot(guard).onPreApproveCheck(_owner, _spender, _amount);
        }
        super._approve(_owner, _spender, _amount);
    }

    function _beforeTokenTransfer(address _from, address _to, uint256 _amount) internal virtual override {
        require(_to != address(this), "Sending token to its own address");

        address guard = antiBot;
        if (guard != address(0)) {
            IAntiBot(guard).onPreTransferCheck(_msgSender(), _from, _to, _amount);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_admin","type":"address"},{"internalType":"address","name":"_antiBot","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldAdmin","type":"address"},{"indexed":true,"internalType":"address","name":"newAdmin","type":"address"}],"name":"AdminChangeConfirmed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldAdmin","type":"address"},{"indexed":true,"internalType":"address","name":"newAdmin","type":"address"}],"name":"AdminChangeRequested","type":"event"},{"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":"antiBot","type":"address"}],"name":"SetAntiBot","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"adminCandidate","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"antiBot","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_adminCandidate","type":"address"}],"name":"changeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"confirmNewAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_antiBot","type":"address"}],"name":"setAntiBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620011b1380380620011b1833981016040819052620000349162000277565b604080518082018252601081526f5669727475616c2056657273696f6e7360801b6020808301918252835180850190945260028452612b2b60f11b9084015281519192916200008691600391620001b4565b5080516200009c906004906020840190620001b4565b505050620000b082620000c360201b60201c565b620000bb816200016a565b5050620002ec565b6001600160a01b0381166200011e5760405162461bcd60e51b815260206004820152601f60248201527f41646d696e61626c652d313a207a65726f2061646d696e206164647265737300604482015260640160405180910390fd5b600580546001600160a01b0319166001600160a01b0383169081179091556040516000907f7cb6040a31264d0f3fa4024e96aa137a3c4afbd8bb1162e1046ee09c5d7e162a908290a350565b600780546001600160a01b0319166001600160a01b0383169081179091556040517fa1b693564ab9440dac4c5cc06a7458ad44ee509fc8cb25d35df65eea3abf228190600090a250565b828054620001c290620002af565b90600052602060002090601f016020900481019282620001e6576000855562000231565b82601f106200020157805160ff191683800117855562000231565b8280016001018555821562000231579182015b828111156200023157825182559160200191906001019062000214565b506200023f92915062000243565b5090565b5b808211156200023f576000815560010162000244565b80516001600160a01b03811681146200027257600080fd5b919050565b600080604083850312156200028b57600080fd5b62000296836200025a565b9150620002a6602084016200025a565b90509250929050565b600181811c90821680620002c457607f821691505b60208210811415620002e657634e487b7160e01b600052602260045260246000fd5b50919050565b610eb580620002fc6000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806340c10f19116100ad578063a457c2d711610071578063a457c2d71461026b578063a9059cbb1461027e578063dd62ed3e14610291578063ef20accb146102a4578063f851a440146102ac57600080fd5b806340c10f191461020157806370a08231146102145780637dfcbe341461023d5780638f2839701461025057806395d89b411461026357600080fd5b80632d1343f3116100f45780632d1343f31461018c578063313ce567146101a157806332cb6b0c146101b057806339509351146101c35780633accfa6c146101d657600080fd5b806306fdde0314610126578063095ea7b31461014457806318160ddd1461016757806323b872dd14610179575b600080fd5b61012e6102bf565b60405161013b9190610cbb565b60405180910390f35b610157610152366004610d2c565b610351565b604051901515815260200161013b565b6002545b60405190815260200161013b565b610157610187366004610d56565b610369565b61019f61019a366004610d92565b61038d565b005b6040516012815260200161013b565b61016b6b033b2e3c9fd0803ce800000081565b6101576101d1366004610d2c565b6103cc565b6006546101e9906001600160a01b031681565b6040516001600160a01b03909116815260200161013b565b61019f61020f366004610d2c565b6103ee565b61016b610222366004610d92565b6001600160a01b031660009081526020819052604090205490565b6007546101e9906001600160a01b031681565b61019f61025e366004610d92565b6104e1565b61012e61055d565b610157610279366004610d2c565b61056c565b61015761028c366004610d2c565b6105e7565b61016b61029f366004610db4565b6105f5565b61019f610620565b6005546101e9906001600160a01b031681565b6060600380546102ce90610de7565b80601f01602080910402602001604051908101604052809291908181526020018280546102fa90610de7565b80156103475780601f1061031c57610100808354040283529160200191610347565b820191906000526020600020905b81548152906001019060200180831161032a57829003601f168201915b5050505050905090565b60003361035f8185856106e0565b5060019392505050565b60003361037785828561076e565b6103828585856107e2565b506001949350505050565b6005546001600160a01b031633146103c05760405162461bcd60e51b81526004016103b790610e22565b60405180910390fd5b6103c981610991565b50565b60003361035f8185856103df83836105f5565b6103e99190610e59565b6106e0565b6005546001600160a01b031633146104185760405162461bcd60e51b81526004016103b790610e22565b806104585760405162461bcd60e51b815260206004820152601060248201526f16995c9bc81b5a5b9d08185b5bdd5b9d60821b60448201526064016103b7565b6b033b2e3c9fd0803ce80000008161046f60025490565b6104799190610e59565b11156104d35760405162461bcd60e51b8152602060048201526024808201527f4d696e7420616d6f756e742065786365656473206d617820746f74616c20737560448201526370706c7960e01b60648201526084016103b7565b6104dd82826109db565b5050565b6005546001600160a01b0316331461050b5760405162461bcd60e51b81526004016103b790610e22565b600680546001600160a01b0319166001600160a01b03838116918217909255600554604051919216907fabadef65e57dcbc94a1edc7f70476a3abca7121015c7358dd71b9ad8e434895f90600090a350565b6060600480546102ce90610de7565b6000338161057a82866105f5565b9050838110156105da5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103b7565b61038282868684036106e0565b60003361035f8185856107e2565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6006546001600160a01b0316331461067a5760405162461bcd60e51b815260206004820152601860248201527f41646d696e61626c652d333a2061757468206661696c6564000000000000000060448201526064016103b7565b6006546005546040516001600160a01b0392831692909116907f7cb6040a31264d0f3fa4024e96aa137a3c4afbd8bb1162e1046ee09c5d7e162a90600090a360068054600580546001600160a01b03199081166001600160a01b03841617909155169055565b6007546001600160a01b0316801561075d57604051639d300b0b60e01b81526001600160a01b038581166004830152848116602483015260448201849052821690639d300b0b90606401600060405180830381600087803b15801561074457600080fd5b505af1158015610758573d6000803e3d6000fd5b505050505b610768848484610aa6565b50505050565b600061077a84846105f5565b9050600019811461076857818110156107d55760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103b7565b61076884848484036106e0565b6001600160a01b0383166108465760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103b7565b6001600160a01b0382166108a85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103b7565b6108b3838383610bca565b6001600160a01b0383166000908152602081905260409020548181101561092b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103b7565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610768565b600780546001600160a01b0319166001600160a01b0383169081179091556040517fa1b693564ab9440dac4c5cc06a7458ad44ee509fc8cb25d35df65eea3abf228190600090a250565b6001600160a01b038216610a315760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103b7565b610a3d60008383610bca565b8060026000828254610a4f9190610e59565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038316610b085760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103b7565b6001600160a01b038216610b695760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103b7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038216301415610c235760405162461bcd60e51b815260206004820181905260248201527f53656e64696e6720746f6b656e20746f20697473206f776e206164647265737360448201526064016103b7565b6007546001600160a01b03168015610768576001600160a01b03811663d7ccbd83336040516001600160e01b031960e084901b1681526001600160a01b0391821660048201528188166024820152908616604482015260648101859052608401600060405180830381600087803b158015610c9d57600080fd5b505af1158015610cb1573d6000803e3d6000fd5b5050505050505050565b600060208083528351808285015260005b81811015610ce857858101830151858201604001528201610ccc565b81811115610cfa576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610d2757600080fd5b919050565b60008060408385031215610d3f57600080fd5b610d4883610d10565b946020939093013593505050565b600080600060608486031215610d6b57600080fd5b610d7484610d10565b9250610d8260208501610d10565b9150604084013590509250925092565b600060208284031215610da457600080fd5b610dad82610d10565b9392505050565b60008060408385031215610dc757600080fd5b610dd083610d10565b9150610dde60208401610d10565b90509250929050565b600181811c90821680610dfb57607f821691505b60208210811415610e1c57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526018908201527f41646d696e61626c652d323a2061757468206661696c65640000000000000000604082015260600190565b60008219821115610e7a57634e487b7160e01b600052601160045260246000fd5b50019056fea264697066735822122021023ef201e6bd8ff9a33351c589b4b5c703588e94b611b9a788ceb8a777549864736f6c634300080900330000000000000000000000005f9b6c6510bf3c3f2fdfbcb526f5458a08f3fccf0000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c806340c10f19116100ad578063a457c2d711610071578063a457c2d71461026b578063a9059cbb1461027e578063dd62ed3e14610291578063ef20accb146102a4578063f851a440146102ac57600080fd5b806340c10f191461020157806370a08231146102145780637dfcbe341461023d5780638f2839701461025057806395d89b411461026357600080fd5b80632d1343f3116100f45780632d1343f31461018c578063313ce567146101a157806332cb6b0c146101b057806339509351146101c35780633accfa6c146101d657600080fd5b806306fdde0314610126578063095ea7b31461014457806318160ddd1461016757806323b872dd14610179575b600080fd5b61012e6102bf565b60405161013b9190610cbb565b60405180910390f35b610157610152366004610d2c565b610351565b604051901515815260200161013b565b6002545b60405190815260200161013b565b610157610187366004610d56565b610369565b61019f61019a366004610d92565b61038d565b005b6040516012815260200161013b565b61016b6b033b2e3c9fd0803ce800000081565b6101576101d1366004610d2c565b6103cc565b6006546101e9906001600160a01b031681565b6040516001600160a01b03909116815260200161013b565b61019f61020f366004610d2c565b6103ee565b61016b610222366004610d92565b6001600160a01b031660009081526020819052604090205490565b6007546101e9906001600160a01b031681565b61019f61025e366004610d92565b6104e1565b61012e61055d565b610157610279366004610d2c565b61056c565b61015761028c366004610d2c565b6105e7565b61016b61029f366004610db4565b6105f5565b61019f610620565b6005546101e9906001600160a01b031681565b6060600380546102ce90610de7565b80601f01602080910402602001604051908101604052809291908181526020018280546102fa90610de7565b80156103475780601f1061031c57610100808354040283529160200191610347565b820191906000526020600020905b81548152906001019060200180831161032a57829003601f168201915b5050505050905090565b60003361035f8185856106e0565b5060019392505050565b60003361037785828561076e565b6103828585856107e2565b506001949350505050565b6005546001600160a01b031633146103c05760405162461bcd60e51b81526004016103b790610e22565b60405180910390fd5b6103c981610991565b50565b60003361035f8185856103df83836105f5565b6103e99190610e59565b6106e0565b6005546001600160a01b031633146104185760405162461bcd60e51b81526004016103b790610e22565b806104585760405162461bcd60e51b815260206004820152601060248201526f16995c9bc81b5a5b9d08185b5bdd5b9d60821b60448201526064016103b7565b6b033b2e3c9fd0803ce80000008161046f60025490565b6104799190610e59565b11156104d35760405162461bcd60e51b8152602060048201526024808201527f4d696e7420616d6f756e742065786365656473206d617820746f74616c20737560448201526370706c7960e01b60648201526084016103b7565b6104dd82826109db565b5050565b6005546001600160a01b0316331461050b5760405162461bcd60e51b81526004016103b790610e22565b600680546001600160a01b0319166001600160a01b03838116918217909255600554604051919216907fabadef65e57dcbc94a1edc7f70476a3abca7121015c7358dd71b9ad8e434895f90600090a350565b6060600480546102ce90610de7565b6000338161057a82866105f5565b9050838110156105da5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103b7565b61038282868684036106e0565b60003361035f8185856107e2565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6006546001600160a01b0316331461067a5760405162461bcd60e51b815260206004820152601860248201527f41646d696e61626c652d333a2061757468206661696c6564000000000000000060448201526064016103b7565b6006546005546040516001600160a01b0392831692909116907f7cb6040a31264d0f3fa4024e96aa137a3c4afbd8bb1162e1046ee09c5d7e162a90600090a360068054600580546001600160a01b03199081166001600160a01b03841617909155169055565b6007546001600160a01b0316801561075d57604051639d300b0b60e01b81526001600160a01b038581166004830152848116602483015260448201849052821690639d300b0b90606401600060405180830381600087803b15801561074457600080fd5b505af1158015610758573d6000803e3d6000fd5b505050505b610768848484610aa6565b50505050565b600061077a84846105f5565b9050600019811461076857818110156107d55760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103b7565b61076884848484036106e0565b6001600160a01b0383166108465760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103b7565b6001600160a01b0382166108a85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103b7565b6108b3838383610bca565b6001600160a01b0383166000908152602081905260409020548181101561092b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103b7565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610768565b600780546001600160a01b0319166001600160a01b0383169081179091556040517fa1b693564ab9440dac4c5cc06a7458ad44ee509fc8cb25d35df65eea3abf228190600090a250565b6001600160a01b038216610a315760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103b7565b610a3d60008383610bca565b8060026000828254610a4f9190610e59565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038316610b085760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103b7565b6001600160a01b038216610b695760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103b7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038216301415610c235760405162461bcd60e51b815260206004820181905260248201527f53656e64696e6720746f6b656e20746f20697473206f776e206164647265737360448201526064016103b7565b6007546001600160a01b03168015610768576001600160a01b03811663d7ccbd83336040516001600160e01b031960e084901b1681526001600160a01b0391821660048201528188166024820152908616604482015260648101859052608401600060405180830381600087803b158015610c9d57600080fd5b505af1158015610cb1573d6000803e3d6000fd5b5050505050505050565b600060208083528351808285015260005b81811015610ce857858101830151858201604001528201610ccc565b81811115610cfa576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610d2757600080fd5b919050565b60008060408385031215610d3f57600080fd5b610d4883610d10565b946020939093013593505050565b600080600060608486031215610d6b57600080fd5b610d7484610d10565b9250610d8260208501610d10565b9150604084013590509250925092565b600060208284031215610da457600080fd5b610dad82610d10565b9392505050565b60008060408385031215610dc757600080fd5b610dd083610d10565b9150610dde60208401610d10565b90509250929050565b600181811c90821680610dfb57607f821691505b60208210811415610e1c57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526018908201527f41646d696e61626c652d323a2061757468206661696c65640000000000000000604082015260600190565b60008219821115610e7a57634e487b7160e01b600052601160045260246000fd5b50019056fea264697066735822122021023ef201e6bd8ff9a33351c589b4b5c703588e94b611b9a788ceb8a777549864736f6c63430008090033

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

0000000000000000000000005f9b6c6510bf3c3f2fdfbcb526f5458a08f3fccf0000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _admin (address): 0x5f9B6C6510BF3c3F2fDFBcB526F5458a08f3fccf
Arg [1] : _antiBot (address): 0x0000000000000000000000000000000000000000

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000005f9b6c6510bf3c3f2fdfbcb526f5458a08f3fccf
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

18607:1533:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6053:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8404:201;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;8404:201:0;1053:187:1;7173:108:0;7261:12;;7173:108;;;1391:25:1;;;1379:2;1364:18;7173:108:0;1245:177:1;9185:295:0;;;;;;:::i;:::-;;:::i;18965:97::-;;;;;;:::i;:::-;;:::i;:::-;;7015:93;;;7098:2;2093:36:1;;2081:2;2066:18;7015:93:0;1951:184:1;18659:51:0;;18696:14;18659:51;;9889:238;;;;;;:::i;:::-;;:::i;17314:29::-;;;;;-1:-1:-1;;;;;17314:29:0;;;;;;-1:-1:-1;;;;;2304:32:1;;;2286:51;;2274:2;2259:18;17314:29:0;2140:203:1;19198:260:0;;;;;;:::i;:::-;;:::i;7344:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;7445:18:0;7418:7;7445:18;;;;;;;;;;;;7344:127;18719:22;;;;;-1:-1:-1;;;;;18719:22:0;;;18003:176;;;;;;:::i;:::-;;:::i;6272:104::-;;;:::i;10630:436::-;;;;;;:::i;:::-;;:::i;7677:193::-;;;;;;:::i;:::-;;:::i;7933:151::-;;;;;;:::i;:::-;;:::i;18187:193::-;;;:::i;17287:20::-;;;;;-1:-1:-1;;;;;17287:20:0;;;6053:100;6107:13;6140:5;6133:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6053:100;:::o;8404:201::-;8487:4;3943:10;8543:32;3943:10;8559:7;8568:6;8543:8;:32::i;:::-;-1:-1:-1;8593:4:0;;8404:201;-1:-1:-1;;;8404:201:0:o;9185:295::-;9316:4;3943:10;9374:38;9390:4;3943:10;9405:6;9374:15;:38::i;:::-;9423:27;9433:4;9439:2;9443:6;9423:9;:27::i;:::-;-1:-1:-1;9468:4:0;;9185:295;-1:-1:-1;;;;9185:295:0:o;18965:97::-;17791:5;;-1:-1:-1;;;;;17791:5:0;3943:10;17791:21;17783:58;;;;-1:-1:-1;;;17783:58:0;;;;;;;:::i;:::-;;;;;;;;;19033:21:::1;19045:8;19033:11;:21::i;:::-;18965:97:::0;:::o;9889:238::-;9977:4;3943:10;10033:64;3943:10;10049:7;10086:10;10058:25;3943:10;10049:7;10058:9;:25::i;:::-;:38;;;;:::i;:::-;10033:8;:64::i;19198:260::-;17791:5;;-1:-1:-1;;;;;17791:5:0;3943:10;17791:21;17783:58;;;;-1:-1:-1;;;17783:58:0;;;;;;;:::i;:::-;19285:12;19277:41:::1;;;::::0;-1:-1:-1;;;19277:41:0;;3783:2:1;19277:41:0::1;::::0;::::1;3765:21:1::0;3822:2;3802:18;;;3795:30;-1:-1:-1;;;3841:18:1;;;3834:46;3897:18;;19277:41:0::1;3581:340:1::0;19277:41:0::1;18696:14;19353:7;19337:13;7261:12:::0;;;7173:108;19337:13:::1;:23;;;;:::i;:::-;:37;;19329:86;;;::::0;-1:-1:-1;;;19329:86:0;;4128:2:1;19329:86:0::1;::::0;::::1;4110:21:1::0;4167:2;4147:18;;;4140:30;4206:34;4186:18;;;4179:62;-1:-1:-1;;;4257:18:1;;;4250:34;4301:19;;19329:86:0::1;3926:400:1::0;19329:86:0::1;19426:24;19432:8;19442:7;19426:5;:24::i;:::-;19198:260:::0;;:::o;18003:176::-;17791:5;;-1:-1:-1;;;;;17791:5:0;3943:10;17791:21;17783:58;;;;-1:-1:-1;;;17783:58:0;;;;;;;:::i;:::-;18079:14:::1;:32:::0;;-1:-1:-1;;;;;;18079:32:0::1;-1:-1:-1::0;;;;;18079:32:0;;::::1;::::0;;::::1;::::0;;;18148:5:::1;::::0;18127:44:::1;::::0;18079:32;;18148:5:::1;::::0;18127:44:::1;::::0;-1:-1:-1;;18127:44:0::1;18003:176:::0;:::o;6272:104::-;6328:13;6361:7;6354:14;;;;;:::i;10630:436::-;10723:4;3943:10;10723:4;10806:25;3943:10;10823:7;10806:9;:25::i;:::-;10779:52;;10870:15;10850:16;:35;;10842:85;;;;-1:-1:-1;;;10842:85:0;;4533:2:1;10842:85:0;;;4515:21:1;4572:2;4552:18;;;4545:30;4611:34;4591:18;;;4584:62;-1:-1:-1;;;4662:18:1;;;4655:35;4707:19;;10842:85:0;4331:401:1;10842:85:0;10963:60;10972:5;10979:7;11007:15;10988:16;:34;10963:8;:60::i;7677:193::-;7756:4;3943:10;7812:28;3943:10;7829:2;7833:6;7812:9;:28::i;7933:151::-;-1:-1:-1;;;;;8049:18:0;;;8022:7;8049:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7933:151::o;18187:193::-;17916:14;;-1:-1:-1;;;;;17916:14:0;3943:10;17916:30;17908:67;;;;-1:-1:-1;;;17908:67:0;;4939:2:1;17908:67:0;;;4921:21:1;4978:2;4958:18;;;4951:30;5017:26;4997:18;;;4990:54;5061:18;;17908:67:0;4737:348:1;17908:67:0;18286:14:::1;::::0;18279:5:::1;::::0;18258:43:::1;::::0;-1:-1:-1;;;;;18286:14:0;;::::1;::::0;18279:5;;::::1;::::0;18258:43:::1;::::0;18286:14:::1;::::0;18258:43:::1;18320:14;::::0;;18312:5:::1;:22:::0;;-1:-1:-1;;;;;;18312:22:0;;::::1;-1:-1:-1::0;;;;;18320:14:0;::::1;18312:22;::::0;;;18345:27:::1;::::0;;18187:193::o;19466:311::-;19588:7;;-1:-1:-1;;;;;19588:7:0;19610:19;;19606:112;;19646:60;;-1:-1:-1;;;19646:60:0;;-1:-1:-1;;;;;5348:15:1;;;19646:60:0;;;5330:34:1;5400:15;;;5380:18;;;5373:43;5432:18;;;5425:34;;;19646:33:0;;;;;5265:18:1;;19646:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19606:112;19728:41;19743:6;19751:8;19761:7;19728:14;:41::i;:::-;19561:216;19466:311;;;:::o;15328:453::-;15463:24;15490:25;15500:5;15507:7;15490:9;:25::i;:::-;15463:52;;-1:-1:-1;;15530:16:0;:37;15526:248;;15612:6;15592:16;:26;;15584:68;;;;-1:-1:-1;;;15584:68:0;;5672:2:1;15584:68:0;;;5654:21:1;5711:2;5691:18;;;5684:30;5750:31;5730:18;;;5723:59;5799:18;;15584:68:0;5470:353:1;15584:68:0;15696:51;15705:5;15712:7;15740:6;15721:16;:25;15696:8;:51::i;11536:840::-;-1:-1:-1;;;;;11667:18:0;;11659:68;;;;-1:-1:-1;;;11659:68:0;;6030:2:1;11659:68:0;;;6012:21:1;6069:2;6049:18;;;6042:30;6108:34;6088:18;;;6081:62;-1:-1:-1;;;6159:18:1;;;6152:35;6204:19;;11659:68:0;5828:401:1;11659:68:0;-1:-1:-1;;;;;11746:16:0;;11738:64;;;;-1:-1:-1;;;11738:64:0;;6436:2:1;11738:64:0;;;6418:21:1;6475:2;6455:18;;;6448:30;6514:34;6494:18;;;6487:62;-1:-1:-1;;;6565:18:1;;;6558:33;6608:19;;11738:64:0;6234:399:1;11738:64:0;11815:38;11836:4;11842:2;11846:6;11815:20;:38::i;:::-;-1:-1:-1;;;;;11888:15:0;;11866:19;11888:15;;;;;;;;;;;11922:21;;;;11914:72;;;;-1:-1:-1;;;11914:72:0;;6840:2:1;11914:72:0;;;6822:21:1;6879:2;6859:18;;;6852:30;6918:34;6898:18;;;6891:62;-1:-1:-1;;;6969:18:1;;;6962:36;7015:19;;11914:72:0;6638:402:1;11914:72:0;-1:-1:-1;;;;;12022:15:0;;;:9;:15;;;;;;;;;;;12040:20;;;12022:38;;12240:13;;;;;;;;;;:23;;;;;;12292:26;;1391:25:1;;;12240:13:0;;12292:26;;1364:18:1;12292:26:0;;;;;;;12331:37;17110:124;19070:120;19128:7;:18;;-1:-1:-1;;;;;;19128:18:0;-1:-1:-1;;;;;19128:18:0;;;;;;;;19162:20;;;;-1:-1:-1;;19162:20:0;19070:120;:::o;12663:548::-;-1:-1:-1;;;;;12747:21:0;;12739:65;;;;-1:-1:-1;;;12739:65:0;;7247:2:1;12739:65:0;;;7229:21:1;7286:2;7266:18;;;7259:30;7325:33;7305:18;;;7298:61;7376:18;;12739:65:0;7045:355:1;12739:65:0;12817:49;12846:1;12850:7;12859:6;12817:20;:49::i;:::-;12895:6;12879:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;13050:18:0;;:9;:18;;;;;;;;;;;:28;;;;;;13105:37;1391:25:1;;;13105:37:0;;1364:18:1;13105:37:0;;;;;;;19198:260;;:::o;14657:380::-;-1:-1:-1;;;;;14793:19:0;;14785:68;;;;-1:-1:-1;;;14785:68:0;;7607:2:1;14785:68:0;;;7589:21:1;7646:2;7626:18;;;7619:30;7685:34;7665:18;;;7658:62;-1:-1:-1;;;7736:18:1;;;7729:34;7780:19;;14785:68:0;7405:400:1;14785:68:0;-1:-1:-1;;;;;14872:21:0;;14864:68;;;;-1:-1:-1;;;14864:68:0;;8012:2:1;14864:68:0;;;7994:21:1;8051:2;8031:18;;;8024:30;8090:34;8070:18;;;8063:62;-1:-1:-1;;;8141:18:1;;;8134:32;8183:19;;14864:68:0;7810:398:1;14864:68:0;-1:-1:-1;;;;;14945:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14997:32;;1391:25:1;;;14997:32:0;;1364:18:1;14997:32:0;;;;;;;14657:380;;;:::o;19785:352::-;-1:-1:-1;;;;;19905:20:0;;19920:4;19905:20;;19897:65;;;;-1:-1:-1;;;19897:65:0;;8415:2:1;19897:65:0;;;8397:21:1;;;8434:18;;;8427:30;8493:34;8473:18;;;8466:62;8545:18;;19897:65:0;8213:356:1;19897:65:0;19991:7;;-1:-1:-1;;;;;19991:7:0;20013:19;;20009:121;;-1:-1:-1;;;;;20049:34:0;;;3943:10;20049:69;;-1:-1:-1;;;;;;20049:69:0;;;;;;;-1:-1:-1;;;;;8861:15:1;;;20049:69:0;;;8843:34:1;8913:15;;;8893:18;;;8886:43;8965:15;;;8945:18;;;8938:43;8997:18;;;8990:34;;;8777:19;;20049:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19886:251;19785:352;;;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;1760:186::-;1819:6;1872:2;1860:9;1851:7;1847:23;1843:32;1840:52;;;1888:1;1885;1878:12;1840:52;1911:29;1930:9;1911:29;:::i;:::-;1901:39;1760:186;-1:-1:-1;;;1760:186:1:o;2348:260::-;2416:6;2424;2477:2;2465:9;2456:7;2452:23;2448:32;2445:52;;;2493:1;2490;2483:12;2445:52;2516:29;2535:9;2516:29;:::i;:::-;2506:39;;2564:38;2598:2;2587:9;2583:18;2564:38;:::i;:::-;2554:48;;2348:260;;;;;:::o;2613:380::-;2692:1;2688:12;;;;2735;;;2756:61;;2810:4;2802:6;2798:17;2788:27;;2756:61;2863:2;2855:6;2852:14;2832:18;2829:38;2826:161;;;2909:10;2904:3;2900:20;2897:1;2890:31;2944:4;2941:1;2934:15;2972:4;2969:1;2962:15;2826:161;;2613:380;;;:::o;2998:348::-;3200:2;3182:21;;;3239:2;3219:18;;;3212:30;3278:26;3273:2;3258:18;;3251:54;3337:2;3322:18;;2998:348::o;3351:225::-;3391:3;3422:1;3418:6;3415:1;3412:13;3409:136;;;3467:10;3462:3;3458:20;3455:1;3448:31;3502:4;3499:1;3492:15;3530:4;3527:1;3520:15;3409:136;-1:-1:-1;3561:9:1;;3351:225::o

Swarm Source

ipfs://21023ef201e6bd8ff9a33351c589b4b5c703588e94b611b9a788ceb8a7775498
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.