ETH Price: $3,269.42 (-1.24%)
Gas: 10 Gwei

Token

ProtoVerse Legacy (PROOF)
 

Overview

Max Total Supply

155,463,379.72986940264089557 PROOF

Holders

384

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
348,143.667800404786730928 PROOF

Value
$0.00
0xc67534fbB6e6C185dCA3aA4eb198C764d3D95328
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:
Migrator

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-29
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

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

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

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

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

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

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

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

error OnlyAdminCanPerformThisAction();
error CannotTransferToNonExcludedAccounts();

contract Migrator is ERC20 {
    event MigratorInitialized(address admin);
    event ExcludedSet(address account, bool isExcluded);
    event AdminSet(address account);

    mapping(address => bool) public isExcluded;
    address public admin;

    constructor(
        string memory _name,
        string memory _symbol,
        address _admin
    ) ERC20(_name, _symbol) {
        admin = _admin;
        isExcluded[admin] = true;
        emit MigratorInitialized(admin);
    }

    function safeMint(address _account, uint256 _amount) external onlyAdmin {
        _mint(_account, _amount);
    }

    function setExcluded(address _account, bool _isExcluded)
        external
        onlyAdmin
    {
        isExcluded[_account] = _isExcluded;
        emit ExcludedSet(_account, _isExcluded);
    }

    function setAdmin(address _account) external onlyAdmin {
        admin = _account;
        isExcluded[admin] = true;
        emit AdminSet(admin);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        if (!isExcluded[to] && !isExcluded[from])
            revert CannotTransferToNonExcludedAccounts();
        super._transfer(from, to, amount);
    }

    modifier onlyAdmin() {
        if (admin != msg.sender) {
            revert OnlyAdminCanPerformThisAction();
        }

        _;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_admin","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"CannotTransferToNonExcludedAccounts","type":"error"},{"inputs":[],"name":"OnlyAdminCanPerformThisAction","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"AdminSet","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":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludedSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"admin","type":"address"}],"name":"MigratorInitialized","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":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"setAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"bool","name":"_isExcluded","type":"bool"}],"name":"setExcluded","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"}]

60806040523480156200001157600080fd5b5060405162000f3338038062000f33833981016040819052620000349162000250565b8251839083906200004d906003906020850190620000dd565b50805162000063906004906020840190620000dd565b5050600680546001600160a01b0319166001600160a01b038481169182178355600091825260056020908152604092839020805460ff1916600117905592549151911681527ffef47f595fe85825b4b4ff86cd56465b1b6776beb80e07b1c3d05f8aa9313de792500160405180910390a150505062000319565b828054620000eb90620002dd565b90600052602060002090601f0160209004810192826200010f57600085556200015a565b82601f106200012a57805160ff19168380011785556200015a565b828001600101855582156200015a579182015b828111156200015a5782518255916020019190600101906200013d565b50620001689291506200016c565b5090565b5b808211156200016857600081556001016200016d565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001ab57600080fd5b81516001600160401b0380821115620001c857620001c862000183565b604051601f8301601f19908116603f01168101908282118183101715620001f357620001f362000183565b816040528381526020925086838588010111156200021057600080fd5b600091505b8382101562000234578582018301518183018401529082019062000215565b83821115620002465760008385830101525b9695505050505050565b6000806000606084860312156200026657600080fd5b83516001600160401b03808211156200027e57600080fd5b6200028c8783880162000199565b94506020860151915080821115620002a357600080fd5b50620002b28682870162000199565b604086015190935090506001600160a01b0381168114620002d257600080fd5b809150509250925092565b600181811c90821680620002f257607f821691505b6020821081036200031357634e487b7160e01b600052602260045260246000fd5b50919050565b610c0a80620003296000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063a9059cbb11610066578063a9059cbb1461020c578063cba0e9961461021f578063dd62ed3e14610242578063f851a4401461025557600080fd5b806370a08231146101b557806395d89b41146101de578063a1448194146101e6578063a457c2d7146101f957600080fd5b80632836be24116100d35780632836be241461016b578063313ce56714610180578063395093511461018f578063704b6c02146101a257600080fd5b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014657806323b872dd14610158575b600080fd5b61010d610280565b60405161011a9190610a0c565b60405180910390f35b610136610131366004610a7d565b610312565b604051901515815260200161011a565b6002545b60405190815260200161011a565b610136610166366004610aa7565b61032a565b61017e610179366004610ae3565b61034e565b005b6040516012815260200161011a565b61013661019d366004610a7d565b6103dc565b61017e6101b0366004610b1f565b6103fe565b61014a6101c3366004610b1f565b6001600160a01b031660009081526020819052604090205490565b61010d61049a565b61017e6101f4366004610a7d565b6104a9565b610136610207366004610a7d565b6104e2565b61013661021a366004610a7d565b610562565b61013661022d366004610b1f565b60056020526000908152604090205460ff1681565b61014a610250366004610b41565b610570565b600654610268906001600160a01b031681565b6040516001600160a01b03909116815260200161011a565b60606003805461028f90610b74565b80601f01602080910402602001604051908101604052809291908181526020018280546102bb90610b74565b80156103085780601f106102dd57610100808354040283529160200191610308565b820191906000526020600020905b8154815290600101906020018083116102eb57829003601f168201915b5050505050905090565b60003361032081858561059b565b5060019392505050565b6000336103388582856106bf565b610343858585610739565b506001949350505050565b6006546001600160a01b0316331461037957604051632d9f475960e21b815260040160405180910390fd5b6001600160a01b038216600081815260056020908152604091829020805460ff19168515159081179091558251938452908301527f560b2151ddf0e7b2f796767595928a1d684c83f7c6d2cc4afd092cd73df473d6910160405180910390a15050565b6000336103208185856103ef8383610570565b6103f99190610bae565b61059b565b6006546001600160a01b0316331461042957604051632d9f475960e21b815260040160405180910390fd5b600680546001600160a01b0319166001600160a01b038381169182178355600091825260056020908152604092839020805460ff1916600117905592549151911681527f8fe72c3e0020beb3234e76ae6676fa576fbfcae600af1c4fea44784cf0db329c910160405180910390a150565b60606004805461028f90610b74565b6006546001600160a01b031633146104d457604051632d9f475960e21b815260040160405180910390fd5b6104de82826107a9565b5050565b600033816104f08286610570565b9050838110156105555760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b610343828686840361059b565b600033610320818585610739565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166105fd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161054c565b6001600160a01b03821661065e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161054c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006106cb8484610570565b9050600019811461073357818110156107265760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161054c565b610733848484840361059b565b50505050565b6001600160a01b03821660009081526005602052604090205460ff1615801561077b57506001600160a01b03831660009081526005602052604090205460ff16155b1561079957604051630ab7550160e41b815260040160405180910390fd5b6107a4838383610868565b505050565b6001600160a01b0382166107ff5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161054c565b80600260008282546108119190610bae565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0383166108cc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161054c565b6001600160a01b03821661092e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161054c565b6001600160a01b038316600090815260208190526040902054818110156109a65760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161054c565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610733565b600060208083528351808285015260005b81811015610a3957858101830151858201604001528201610a1d565b81811115610a4b576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610a7857600080fd5b919050565b60008060408385031215610a9057600080fd5b610a9983610a61565b946020939093013593505050565b600080600060608486031215610abc57600080fd5b610ac584610a61565b9250610ad360208501610a61565b9150604084013590509250925092565b60008060408385031215610af657600080fd5b610aff83610a61565b915060208301358015158114610b1457600080fd5b809150509250929050565b600060208284031215610b3157600080fd5b610b3a82610a61565b9392505050565b60008060408385031215610b5457600080fd5b610b5d83610a61565b9150610b6b60208401610a61565b90509250929050565b600181811c90821680610b8857607f821691505b602082108103610ba857634e487b7160e01b600052602260045260246000fd5b50919050565b60008219821115610bcf57634e487b7160e01b600052601160045260246000fd5b50019056fea2646970667358221220a226a6b176248c8ae08b547bd2dd7e10d6b260346bccbe48e29f2b72279c325164736f6c634300080d0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000002895949ff8391d3f07531ab355c1a50eefadc2ed000000000000000000000000000000000000000000000000000000000000001150726f746f5665727365204c6567616379000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000550524f4f46000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063a9059cbb11610066578063a9059cbb1461020c578063cba0e9961461021f578063dd62ed3e14610242578063f851a4401461025557600080fd5b806370a08231146101b557806395d89b41146101de578063a1448194146101e6578063a457c2d7146101f957600080fd5b80632836be24116100d35780632836be241461016b578063313ce56714610180578063395093511461018f578063704b6c02146101a257600080fd5b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014657806323b872dd14610158575b600080fd5b61010d610280565b60405161011a9190610a0c565b60405180910390f35b610136610131366004610a7d565b610312565b604051901515815260200161011a565b6002545b60405190815260200161011a565b610136610166366004610aa7565b61032a565b61017e610179366004610ae3565b61034e565b005b6040516012815260200161011a565b61013661019d366004610a7d565b6103dc565b61017e6101b0366004610b1f565b6103fe565b61014a6101c3366004610b1f565b6001600160a01b031660009081526020819052604090205490565b61010d61049a565b61017e6101f4366004610a7d565b6104a9565b610136610207366004610a7d565b6104e2565b61013661021a366004610a7d565b610562565b61013661022d366004610b1f565b60056020526000908152604090205460ff1681565b61014a610250366004610b41565b610570565b600654610268906001600160a01b031681565b6040516001600160a01b03909116815260200161011a565b60606003805461028f90610b74565b80601f01602080910402602001604051908101604052809291908181526020018280546102bb90610b74565b80156103085780601f106102dd57610100808354040283529160200191610308565b820191906000526020600020905b8154815290600101906020018083116102eb57829003601f168201915b5050505050905090565b60003361032081858561059b565b5060019392505050565b6000336103388582856106bf565b610343858585610739565b506001949350505050565b6006546001600160a01b0316331461037957604051632d9f475960e21b815260040160405180910390fd5b6001600160a01b038216600081815260056020908152604091829020805460ff19168515159081179091558251938452908301527f560b2151ddf0e7b2f796767595928a1d684c83f7c6d2cc4afd092cd73df473d6910160405180910390a15050565b6000336103208185856103ef8383610570565b6103f99190610bae565b61059b565b6006546001600160a01b0316331461042957604051632d9f475960e21b815260040160405180910390fd5b600680546001600160a01b0319166001600160a01b038381169182178355600091825260056020908152604092839020805460ff1916600117905592549151911681527f8fe72c3e0020beb3234e76ae6676fa576fbfcae600af1c4fea44784cf0db329c910160405180910390a150565b60606004805461028f90610b74565b6006546001600160a01b031633146104d457604051632d9f475960e21b815260040160405180910390fd5b6104de82826107a9565b5050565b600033816104f08286610570565b9050838110156105555760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b610343828686840361059b565b600033610320818585610739565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166105fd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161054c565b6001600160a01b03821661065e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161054c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006106cb8484610570565b9050600019811461073357818110156107265760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161054c565b610733848484840361059b565b50505050565b6001600160a01b03821660009081526005602052604090205460ff1615801561077b57506001600160a01b03831660009081526005602052604090205460ff16155b1561079957604051630ab7550160e41b815260040160405180910390fd5b6107a4838383610868565b505050565b6001600160a01b0382166107ff5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161054c565b80600260008282546108119190610bae565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0383166108cc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161054c565b6001600160a01b03821661092e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161054c565b6001600160a01b038316600090815260208190526040902054818110156109a65760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161054c565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610733565b600060208083528351808285015260005b81811015610a3957858101830151858201604001528201610a1d565b81811115610a4b576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610a7857600080fd5b919050565b60008060408385031215610a9057600080fd5b610a9983610a61565b946020939093013593505050565b600080600060608486031215610abc57600080fd5b610ac584610a61565b9250610ad360208501610a61565b9150604084013590509250925092565b60008060408385031215610af657600080fd5b610aff83610a61565b915060208301358015158114610b1457600080fd5b809150509250929050565b600060208284031215610b3157600080fd5b610b3a82610a61565b9392505050565b60008060408385031215610b5457600080fd5b610b5d83610a61565b9150610b6b60208401610a61565b90509250929050565b600181811c90821680610b8857607f821691505b602082108103610ba857634e487b7160e01b600052602260045260246000fd5b50919050565b60008219821115610bcf57634e487b7160e01b600052601160045260246000fd5b50019056fea2646970667358221220a226a6b176248c8ae08b547bd2dd7e10d6b260346bccbe48e29f2b72279c325164736f6c634300080d0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000002895949ff8391d3f07531ab355c1a50eefadc2ed000000000000000000000000000000000000000000000000000000000000001150726f746f5665727365204c6567616379000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000550524f4f46000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): ProtoVerse Legacy
Arg [1] : _symbol (string): PROOF
Arg [2] : _admin (address): 0x2895949fF8391D3f07531aB355c1a50EeFadc2ed

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000002895949ff8391d3f07531ab355c1a50eefadc2ed
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [4] : 50726f746f5665727365204c6567616379000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 50524f4f46000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

17615:1429:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6339:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8690:201;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;8690:201:0;1053:187:1;7459:108:0;7547:12;;7459:108;;;1391:25:1;;;1379:2;1364:18;7459:108:0;1245:177:1;9471:295:0;;;;;;:::i;:::-;;:::i;18241:202::-;;;;;;:::i;:::-;;:::i;:::-;;7301:93;;;7384:2;2254:36:1;;2242:2;2227:18;7301:93:0;2112:184:1;10175:238:0;;;;;;:::i;:::-;;:::i;18451:156::-;;;;;;:::i;:::-;;:::i;7630:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;7731:18:0;7704:7;7731:18;;;;;;;;;;;;7630:127;6558:104;;;:::i;18118:115::-;;;;;;:::i;:::-;;:::i;10916:436::-;;;;;;:::i;:::-;;:::i;7963:193::-;;;;;;:::i;:::-;;:::i;17794:42::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;8219:151;;;;;;:::i;:::-;;:::i;17843:20::-;;;;;-1:-1:-1;;;;;17843:20:0;;;;;;-1:-1:-1;;;;;2921:32:1;;;2903:51;;2891:2;2876:18;17843:20:0;2757:203:1;6339:100:0;6393:13;6426:5;6419:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6339:100;:::o;8690:201::-;8773:4;4229:10;8829:32;4229:10;8845:7;8854:6;8829:8;:32::i;:::-;-1:-1:-1;8879:4:0;;8690:201;-1:-1:-1;;;8690:201:0:o;9471:295::-;9602:4;4229:10;9660:38;9676:4;4229:10;9691:6;9660:15;:38::i;:::-;9709:27;9719:4;9725:2;9729:6;9709:9;:27::i;:::-;-1:-1:-1;9754:4:0;;9471:295;-1:-1:-1;;;;9471:295:0:o;18241:202::-;18934:5;;-1:-1:-1;;;;;18934:5:0;18943:10;18934:19;18930:90;;18977:31;;-1:-1:-1;;;18977:31:0;;;;;;;;;;;18930:90;-1:-1:-1;;;;;18351:20:0;::::1;;::::0;;;:10:::1;:20;::::0;;;;;;;;:34;;-1:-1:-1;;18351:34:0::1;::::0;::::1;;::::0;;::::1;::::0;;;18401;;3518:51:1;;;3585:18;;;3578:50;18401:34:0::1;::::0;3491:18:1;18401:34:0::1;;;;;;;18241:202:::0;;:::o;10175:238::-;10263:4;4229:10;10319:64;4229:10;10335:7;10372:10;10344:25;4229:10;10335:7;10344:9;:25::i;:::-;:38;;;;:::i;:::-;10319:8;:64::i;18451:156::-;18934:5;;-1:-1:-1;;;;;18934:5:0;18943:10;18934:19;18930:90;;18977:31;;-1:-1:-1;;;18977:31:0;;;;;;;;;;;18930:90;18517:5:::1;:16:::0;;-1:-1:-1;;;;;;18517:16:0::1;-1:-1:-1::0;;;;;18517:16:0;;::::1;::::0;;::::1;::::0;;-1:-1:-1;18544:17:0;;;:10:::1;:17;::::0;;;;;;;;:24;;-1:-1:-1;;18544:24:0::1;-1:-1:-1::0;18544:24:0::1;::::0;;18593:5;;18584:15;;18593:5;::::1;2903:51:1::0;;18584:15:0::1;::::0;2876:18:1;18584:15:0::1;;;;;;;18451:156:::0;:::o;6558:104::-;6614:13;6647:7;6640:14;;;;;:::i;18118:115::-;18934:5;;-1:-1:-1;;;;;18934:5:0;18943:10;18934:19;18930:90;;18977:31;;-1:-1:-1;;;18977:31:0;;;;;;;;;;;18930:90;18201:24:::1;18207:8;18217:7;18201:5;:24::i;:::-;18118:115:::0;;:::o;10916:436::-;11009:4;4229:10;11009:4;11092:25;4229:10;11109:7;11092:9;:25::i;:::-;11065:52;;11156:15;11136:16;:35;;11128:85;;;;-1:-1:-1;;;11128:85:0;;4071:2:1;11128:85:0;;;4053:21:1;4110:2;4090:18;;;4083:30;4149:34;4129:18;;;4122:62;-1:-1:-1;;;4200:18:1;;;4193:35;4245:19;;11128:85:0;;;;;;;;;11249:60;11258:5;11265:7;11293:15;11274:16;:34;11249:8;:60::i;7963:193::-;8042:4;4229:10;8098:28;4229:10;8115:2;8119:6;8098:9;:28::i;8219:151::-;-1:-1:-1;;;;;8335:18:0;;;8308:7;8335:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8219:151::o;14943:380::-;-1:-1:-1;;;;;15079:19:0;;15071:68;;;;-1:-1:-1;;;15071:68:0;;4477:2:1;15071:68:0;;;4459:21:1;4516:2;4496:18;;;4489:30;4555:34;4535:18;;;4528:62;-1:-1:-1;;;4606:18:1;;;4599:34;4650:19;;15071:68:0;4275:400:1;15071:68:0;-1:-1:-1;;;;;15158:21:0;;15150:68;;;;-1:-1:-1;;;15150:68:0;;4882:2:1;15150:68:0;;;4864:21:1;4921:2;4901:18;;;4894:30;4960:34;4940:18;;;4933:62;-1:-1:-1;;;5011:18:1;;;5004:32;5053:19;;15150:68:0;4680:398:1;15150:68:0;-1:-1:-1;;;;;15231:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15283:32;;1391:25:1;;;15283:32:0;;1364:18:1;15283:32:0;;;;;;;14943:380;;;:::o;15614:453::-;15749:24;15776:25;15786:5;15793:7;15776:9;:25::i;:::-;15749:52;;-1:-1:-1;;15816:16:0;:37;15812:248;;15898:6;15878:16;:26;;15870:68;;;;-1:-1:-1;;;15870:68:0;;5285:2:1;15870:68:0;;;5267:21:1;5324:2;5304:18;;;5297:30;5363:31;5343:18;;;5336:59;5412:18;;15870:68:0;5083:353:1;15870:68:0;15982:51;15991:5;15998:7;16026:6;16007:16;:25;15982:8;:51::i;:::-;15738:329;15614:453;;;:::o;18615:275::-;-1:-1:-1;;;;;18744:14:0;;;;;;:10;:14;;;;;;;;18743:15;:36;;;;-1:-1:-1;;;;;;18763:16:0;;;;;;:10;:16;;;;;;;;18762:17;18743:36;18739:99;;;18801:37;;-1:-1:-1;;;18801:37:0;;;;;;;;;;;18739:99;18849:33;18865:4;18871:2;18875:6;18849:15;:33::i;:::-;18615:275;;;:::o;12949:548::-;-1:-1:-1;;;;;13033:21:0;;13025:65;;;;-1:-1:-1;;;13025:65:0;;5643:2:1;13025:65:0;;;5625:21:1;5682:2;5662:18;;;5655:30;5721:33;5701:18;;;5694:61;5772:18;;13025:65:0;5441:355:1;13025:65:0;13181:6;13165:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;13336:18:0;;:9;:18;;;;;;;;;;;:28;;;;;;13391:37;1391:25:1;;;13391:37:0;;1364:18:1;13391:37:0;;;;;;;18118:115;;:::o;11822:840::-;-1:-1:-1;;;;;11953:18:0;;11945:68;;;;-1:-1:-1;;;11945:68:0;;6003:2:1;11945:68:0;;;5985:21:1;6042:2;6022:18;;;6015:30;6081:34;6061:18;;;6054:62;-1:-1:-1;;;6132:18:1;;;6125:35;6177:19;;11945:68:0;5801:401:1;11945:68:0;-1:-1:-1;;;;;12032:16:0;;12024:64;;;;-1:-1:-1;;;12024:64:0;;6409:2:1;12024:64:0;;;6391:21:1;6448:2;6428:18;;;6421:30;6487:34;6467:18;;;6460:62;-1:-1:-1;;;6538:18:1;;;6531:33;6581:19;;12024:64:0;6207:399:1;12024:64:0;-1:-1:-1;;;;;12174:15:0;;12152:19;12174:15;;;;;;;;;;;12208:21;;;;12200:72;;;;-1:-1:-1;;;12200:72:0;;6813:2:1;12200:72:0;;;6795:21:1;6852:2;6832:18;;;6825:30;6891:34;6871:18;;;6864:62;-1:-1:-1;;;6942:18:1;;;6935:36;6988:19;;12200:72:0;6611:402:1;12200:72:0;-1:-1:-1;;;;;12308:15:0;;;:9;:15;;;;;;;;;;;12326:20;;;12308:38;;12526:13;;;;;;;;;;:23;;;;;;12578:26;;1391:25:1;;;12526:13:0;;12578:26;;1364:18:1;12578:26:0;;;;;;;12617:37;18615:275;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:347::-;1825:6;1833;1886:2;1874:9;1865:7;1861:23;1857:32;1854:52;;;1902:1;1899;1892:12;1854:52;1925:29;1944:9;1925:29;:::i;:::-;1915:39;;2004:2;1993:9;1989:18;1976:32;2051:5;2044:13;2037:21;2030:5;2027:32;2017:60;;2073:1;2070;2063:12;2017:60;2096:5;2086:15;;;1760:347;;;;;:::o;2301:186::-;2360:6;2413:2;2401:9;2392:7;2388:23;2384:32;2381:52;;;2429:1;2426;2419:12;2381:52;2452:29;2471:9;2452:29;:::i;:::-;2442:39;2301:186;-1:-1:-1;;;2301:186:1:o;2492:260::-;2560:6;2568;2621:2;2609:9;2600:7;2596:23;2592:32;2589:52;;;2637:1;2634;2627:12;2589:52;2660:29;2679:9;2660:29;:::i;:::-;2650:39;;2708:38;2742:2;2731:9;2727:18;2708:38;:::i;:::-;2698:48;;2492:260;;;;;:::o;2965:380::-;3044:1;3040:12;;;;3087;;;3108:61;;3162:4;3154:6;3150:17;3140:27;;3108:61;3215:2;3207:6;3204:14;3184:18;3181:38;3178:161;;3261:10;3256:3;3252:20;3249:1;3242:31;3296:4;3293:1;3286:15;3324:4;3321:1;3314:15;3178:161;;2965:380;;;:::o;3639:225::-;3679:3;3710:1;3706:6;3703:1;3700:13;3697:136;;;3755:10;3750:3;3746:20;3743:1;3736:31;3790:4;3787:1;3780:15;3818:4;3815:1;3808:15;3697:136;-1:-1:-1;3849:9:1;;3639:225::o

Swarm Source

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