ETH Price: $3,495.23 (+0.98%)
Gas: 9 Gwei

Token

The APIs (API)
 

Overview

Max Total Supply

1,000,000,000 API

Holders

592 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
6,311.16 API

Value
$0.00
0x92cfc1C067ec6259b9019CE897D9035A01B1B750
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The APIS Protocol is a decentralized reading and writing platform designed to allow decentralized applications to function at a global scale.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TheAPIs

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-14
*/

pragma solidity ^0.8.0;

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

// File: @openzeppelin/[email protected]/access/Ownable.sol


// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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

// File: @openzeppelin/[email protected]/security/Pausable.sol


// OpenZeppelin Contracts v4.4.0 (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: @openzeppelin/[email protected]/token/ERC20/IERC20.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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

// File: @openzeppelin/[email protected]/token/ERC20/extensions/IERC20Metadata.sol


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/[email protected]/token/ERC20/ERC20.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @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.zeppelin.solutions/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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, 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;
        _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;
        }
        _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 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 {}
}

// File: @openzeppelin/[email protected]/token/ERC20/extensions/ERC20Burnable.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }
}

// File: contract-751e0b232e.sol


pragma solidity ^0.8.2;





contract TheAPIs is ERC20, ERC20Burnable, Pausable, Ownable {
    constructor() ERC20("The APIs", "API") {
        _mint(msg.sender, 1000000000 * 10 ** decimals());
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount)
        internal
        whenNotPaused
        override
    {
        super._beforeTokenTransfer(from, to, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405180604001604052806008815260200167546865204150497360c01b8152506040518060400160405280600381526020016241504960e81b8152508160039080519060200190620000679291906200027a565b5080516200007d9060049060208401906200027a565b50506005805460ff19169055506200009533620000c4565b620000be33620000a86012600a62000384565b620000b890633b9aca0062000452565b6200011e565b620004c7565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200017a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620001886000838362000215565b80600260008282546200019c919062000320565b90915550506001600160a01b03821660009081526020819052604081208054839290620001cb90849062000320565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60055460ff16156200025d5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640162000171565b620002758383836200027560201b6200055a1760201c565b505050565b828054620002889062000474565b90600052602060002090601f016020900481019282620002ac5760008555620002f7565b82601f10620002c757805160ff1916838001178555620002f7565b82800160010185558215620002f7579182015b82811115620002f7578251825591602001919060010190620002da565b506200030592915062000309565b5090565b5b808211156200030557600081556001016200030a565b60008219821115620003365762000336620004b1565b500190565b600181815b808511156200037c578160001904821115620003605762000360620004b1565b808516156200036e57918102915b93841c939080029062000340565b509250929050565b60006200039560ff8416836200039c565b9392505050565b600082620003ad575060016200044c565b81620003bc575060006200044c565b8160018114620003d55760028114620003e05762000400565b60019150506200044c565b60ff841115620003f457620003f4620004b1565b50506001821b6200044c565b5060208310610133831016604e8410600b841016171562000425575081810a6200044c565b6200043183836200033b565b8060001904821115620004485762000448620004b1565b0290505b92915050565b60008160001904831182151516156200046f576200046f620004b1565b500290565b600181811c908216806200048957607f821691505b60208210811415620004ab57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b610f2080620004d76000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b411461024b578063a457c2d714610253578063a9059cbb14610266578063dd62ed3e14610279578063f2fde38b146102b257600080fd5b806370a08231146101d6578063715018a6146101ff57806379cc6790146102075780638456cb591461021a5780638da5cb5b1461022257600080fd5b8063313ce567116100f4578063313ce5671461018c578063395093511461019b5780633f4ba83a146101ae57806342966c68146101b85780635c975abb146101cb57600080fd5b806306fdde0314610126578063095ea7b31461014457806318160ddd1461016757806323b872dd14610179575b600080fd5b61012e6102c5565b60405161013b9190610de0565b60405180910390f35b610157610152366004610d9d565b610357565b604051901515815260200161013b565b6002545b60405190815260200161013b565b610157610187366004610d61565b61036d565b6040516012815260200161013b565b6101576101a9366004610d9d565b61041c565b6101b6610458565b005b6101b66101c6366004610dc7565b610492565b60055460ff16610157565b61016b6101e4366004610d0c565b6001600160a01b031660009081526020819052604090205490565b6101b661049f565b6101b6610215366004610d9d565b6104d9565b6101b661055f565b60055461010090046001600160a01b03166040516001600160a01b03909116815260200161013b565b61012e610597565b610157610261366004610d9d565b6105a6565b610157610274366004610d9d565b61063f565b61016b610287366004610d2e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101b66102c0366004610d0c565b61064c565b6060600380546102d490610e99565b80601f016020809104026020016040519081016040528092919081815260200182805461030090610e99565b801561034d5780601f106103225761010080835404028352916020019161034d565b820191906000526020600020905b81548152906001019060200180831161033057829003601f168201915b5050505050905090565b60006103643384846106ea565b50600192915050565b600061037a84848461080e565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156104045760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61041185338584036106ea565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610364918590610453908690610e6a565b6106ea565b6005546001600160a01b036101009091041633146104885760405162461bcd60e51b81526004016103fb90610e35565b6104906109e8565b565b61049c3382610a7b565b50565b6005546001600160a01b036101009091041633146104cf5760405162461bcd60e51b81526004016103fb90610e35565b6104906000610bd5565b60006104e58333610287565b9050818110156105435760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084016103fb565b61055083338484036106ea565b61055a8383610a7b565b505050565b6005546001600160a01b0361010090910416331461058f5760405162461bcd60e51b81526004016103fb90610e35565b610490610c2f565b6060600480546102d490610e99565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156106285760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103fb565b61063533858584036106ea565b5060019392505050565b600061036433848461080e565b6005546001600160a01b0361010090910416331461067c5760405162461bcd60e51b81526004016103fb90610e35565b6001600160a01b0381166106e15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103fb565b61049c81610bd5565b6001600160a01b03831661074c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103fb565b6001600160a01b0382166107ad5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103fb565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166108725760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103fb565b6001600160a01b0382166108d45760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103fb565b6108df838383610caa565b6001600160a01b038316600090815260208190526040902054818110156109575760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103fb565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061098e908490610e6a565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109da91815260200190565b60405180910390a350505050565b60055460ff16610a315760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016103fb565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b038216610adb5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103fb565b610ae782600083610caa565b6001600160a01b03821660009081526020819052604090205481811015610b5b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103fb565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610b8a908490610e82565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60055460ff1615610c755760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016103fb565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610a5e3390565b60055460ff161561055a5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016103fb565b80356001600160a01b0381168114610d0757600080fd5b919050565b600060208284031215610d1e57600080fd5b610d2782610cf0565b9392505050565b60008060408385031215610d4157600080fd5b610d4a83610cf0565b9150610d5860208401610cf0565b90509250929050565b600080600060608486031215610d7657600080fd5b610d7f84610cf0565b9250610d8d60208501610cf0565b9150604084013590509250925092565b60008060408385031215610db057600080fd5b610db983610cf0565b946020939093013593505050565b600060208284031215610dd957600080fd5b5035919050565b600060208083528351808285015260005b81811015610e0d57858101830151858201604001528201610df1565b81811115610e1f576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610e7d57610e7d610ed4565b500190565b600082821015610e9457610e94610ed4565b500390565b600181811c90821680610ead57607f821691505b60208210811415610ece57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212206b78c9eb421e69c654cd830052f8756e1abfd53c90e7437dde1cc11d73116c4d64736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b411461024b578063a457c2d714610253578063a9059cbb14610266578063dd62ed3e14610279578063f2fde38b146102b257600080fd5b806370a08231146101d6578063715018a6146101ff57806379cc6790146102075780638456cb591461021a5780638da5cb5b1461022257600080fd5b8063313ce567116100f4578063313ce5671461018c578063395093511461019b5780633f4ba83a146101ae57806342966c68146101b85780635c975abb146101cb57600080fd5b806306fdde0314610126578063095ea7b31461014457806318160ddd1461016757806323b872dd14610179575b600080fd5b61012e6102c5565b60405161013b9190610de0565b60405180910390f35b610157610152366004610d9d565b610357565b604051901515815260200161013b565b6002545b60405190815260200161013b565b610157610187366004610d61565b61036d565b6040516012815260200161013b565b6101576101a9366004610d9d565b61041c565b6101b6610458565b005b6101b66101c6366004610dc7565b610492565b60055460ff16610157565b61016b6101e4366004610d0c565b6001600160a01b031660009081526020819052604090205490565b6101b661049f565b6101b6610215366004610d9d565b6104d9565b6101b661055f565b60055461010090046001600160a01b03166040516001600160a01b03909116815260200161013b565b61012e610597565b610157610261366004610d9d565b6105a6565b610157610274366004610d9d565b61063f565b61016b610287366004610d2e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101b66102c0366004610d0c565b61064c565b6060600380546102d490610e99565b80601f016020809104026020016040519081016040528092919081815260200182805461030090610e99565b801561034d5780601f106103225761010080835404028352916020019161034d565b820191906000526020600020905b81548152906001019060200180831161033057829003601f168201915b5050505050905090565b60006103643384846106ea565b50600192915050565b600061037a84848461080e565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156104045760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61041185338584036106ea565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610364918590610453908690610e6a565b6106ea565b6005546001600160a01b036101009091041633146104885760405162461bcd60e51b81526004016103fb90610e35565b6104906109e8565b565b61049c3382610a7b565b50565b6005546001600160a01b036101009091041633146104cf5760405162461bcd60e51b81526004016103fb90610e35565b6104906000610bd5565b60006104e58333610287565b9050818110156105435760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084016103fb565b61055083338484036106ea565b61055a8383610a7b565b505050565b6005546001600160a01b0361010090910416331461058f5760405162461bcd60e51b81526004016103fb90610e35565b610490610c2f565b6060600480546102d490610e99565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156106285760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103fb565b61063533858584036106ea565b5060019392505050565b600061036433848461080e565b6005546001600160a01b0361010090910416331461067c5760405162461bcd60e51b81526004016103fb90610e35565b6001600160a01b0381166106e15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103fb565b61049c81610bd5565b6001600160a01b03831661074c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103fb565b6001600160a01b0382166107ad5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103fb565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166108725760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103fb565b6001600160a01b0382166108d45760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103fb565b6108df838383610caa565b6001600160a01b038316600090815260208190526040902054818110156109575760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103fb565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061098e908490610e6a565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109da91815260200190565b60405180910390a350505050565b60055460ff16610a315760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016103fb565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b038216610adb5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103fb565b610ae782600083610caa565b6001600160a01b03821660009081526020819052604090205481811015610b5b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103fb565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610b8a908490610e82565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60055460ff1615610c755760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016103fb565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610a5e3390565b60055460ff161561055a5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016103fb565b80356001600160a01b0381168114610d0757600080fd5b919050565b600060208284031215610d1e57600080fd5b610d2782610cf0565b9392505050565b60008060408385031215610d4157600080fd5b610d4a83610cf0565b9150610d5860208401610cf0565b90509250929050565b600080600060608486031215610d7657600080fd5b610d7f84610cf0565b9250610d8d60208501610cf0565b9150604084013590509250925092565b60008060408385031215610db057600080fd5b610db983610cf0565b946020939093013593505050565b600060208284031215610dd957600080fd5b5035919050565b600060208083528351808285015260005b81811015610e0d57858101830151858201604001528201610df1565b81811115610e1f576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610e7d57610e7d610ed4565b500190565b600082821015610e9457610e94610ed4565b500390565b600181811c90821680610ead57607f821691505b60208210811415610ece57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212206b78c9eb421e69c654cd830052f8756e1abfd53c90e7437dde1cc11d73116c4d64736f6c63430008070033

Deployed Bytecode Sourcemap

22814:525:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11421:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13588:169;;;;;;:::i;:::-;;:::i;:::-;;;1798:14:1;;1791:22;1773:41;;1761:2;1746:18;13588:169:0;1633:187:1;12541:108:0;12629:12;;12541:108;;;8085:25:1;;;8073:2;8058:18;12541:108:0;7939:177:1;14239:492:0;;;;;;:::i;:::-;;:::i;12383:93::-;;;12466:2;8263:36:1;;8251:2;8236:18;12383:93:0;8121:184:1;15140:215:0;;;;;;:::i;:::-;;:::i;23064:65::-;;;:::i;:::-;;21956:91;;;;;;:::i;:::-;;:::i;4455:86::-;4526:7;;;;4455:86;;12712:127;;;;;;:::i;:::-;-1:-1:-1;;;;;12813:18:0;12786:7;12813:18;;;;;;;;;;;;12712:127;2500:103;;;:::i;22366:368::-;;;;;;:::i;:::-;;:::i;22995:61::-;;;:::i;1849:87::-;1922:6;;;;;-1:-1:-1;;;;;1922:6:0;1849:87;;-1:-1:-1;;;;;1589:32:1;;;1571:51;;1559:2;1544:18;1849:87:0;1425:203:1;11640:104:0;;;:::i;15858:413::-;;;;;;:::i;:::-;;:::i;13052:175::-;;;;;;:::i;:::-;;:::i;13290:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;13406:18:0;;;13379:7;13406:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13290:151;2758:201;;;;;;:::i;:::-;;:::i;11421:100::-;11475:13;11508:5;11501:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11421:100;:::o;13588:169::-;13671:4;13688:39;647:10;13711:7;13720:6;13688:8;:39::i;:::-;-1:-1:-1;13745:4:0;13588:169;;;;:::o;14239:492::-;14379:4;14396:36;14406:6;14414:9;14425:6;14396:9;:36::i;:::-;-1:-1:-1;;;;;14472:19:0;;14445:24;14472:19;;;:11;:19;;;;;;;;647:10;14472:33;;;;;;;;14524:26;;;;14516:79;;;;-1:-1:-1;;;14516:79:0;;5347:2:1;14516:79:0;;;5329:21:1;5386:2;5366:18;;;5359:30;5425:34;5405:18;;;5398:62;-1:-1:-1;;;5476:18:1;;;5469:38;5524:19;;14516:79:0;;;;;;;;;14631:57;14640:6;647:10;14681:6;14662:16;:25;14631:8;:57::i;:::-;-1:-1:-1;14719:4:0;;14239:492;-1:-1:-1;;;;14239:492:0:o;15140:215::-;647:10;15228:4;15277:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15277:34:0;;;;;;;;;;15228:4;;15245:80;;15268:7;;15277:47;;15314:10;;15277:47;:::i;:::-;15245:8;:80::i;23064:65::-;1922:6;;-1:-1:-1;;;;;1922:6:0;;;;;647:10;2069:23;2061:68;;;;-1:-1:-1;;;2061:68:0;;;;;;;:::i;:::-;23111:10:::1;:8;:10::i;:::-;23064:65::o:0;21956:91::-;22012:27;647:10;22032:6;22012:5;:27::i;:::-;21956:91;:::o;2500:103::-;1922:6;;-1:-1:-1;;;;;1922:6:0;;;;;647:10;2069:23;2061:68;;;;-1:-1:-1;;;2061:68:0;;;;;;;:::i;:::-;2565:30:::1;2592:1;2565:18;:30::i;22366:368::-:0;22443:24;22470:32;22480:7;647:10;13290:151;:::i;22470:32::-;22443:59;;22541:6;22521:16;:26;;22513:75;;;;-1:-1:-1;;;22513:75:0;;6117:2:1;22513:75:0;;;6099:21:1;6156:2;6136:18;;;6129:30;6195:34;6175:18;;;6168:62;-1:-1:-1;;;6246:18:1;;;6239:34;6290:19;;22513:75:0;5915:400:1;22513:75:0;22624:58;22633:7;647:10;22675:6;22656:16;:25;22624:8;:58::i;:::-;22704:22;22710:7;22719:6;22704:5;:22::i;:::-;22432:302;22366:368;;:::o;22995:61::-;1922:6;;-1:-1:-1;;;;;1922:6:0;;;;;647:10;2069:23;2061:68;;;;-1:-1:-1;;;2061:68:0;;;;;;;:::i;:::-;23040:8:::1;:6;:8::i;11640:104::-:0;11696:13;11729:7;11722:14;;;;;:::i;15858:413::-;647:10;15951:4;15995:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15995:34:0;;;;;;;;;;16048:35;;;;16040:85;;;;-1:-1:-1;;;16040:85:0;;7735:2:1;16040:85:0;;;7717:21:1;7774:2;7754:18;;;7747:30;7813:34;7793:18;;;7786:62;-1:-1:-1;;;7864:18:1;;;7857:35;7909:19;;16040:85:0;7533:401:1;16040:85:0;16161:67;647:10;16184:7;16212:15;16193:16;:34;16161:8;:67::i;:::-;-1:-1:-1;16259:4:0;;15858:413;-1:-1:-1;;;15858:413:0:o;13052:175::-;13138:4;13155:42;647:10;13179:9;13190:6;13155:9;:42::i;2758:201::-;1922:6;;-1:-1:-1;;;;;1922:6:0;;;;;647:10;2069:23;2061:68;;;;-1:-1:-1;;;2061:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2847:22:0;::::1;2839:73;;;::::0;-1:-1:-1;;;2839:73:0;;3785:2:1;2839:73:0::1;::::0;::::1;3767:21:1::0;3824:2;3804:18;;;3797:30;3863:34;3843:18;;;3836:62;-1:-1:-1;;;3914:18:1;;;3907:36;3960:19;;2839:73:0::1;3583:402:1::0;2839:73:0::1;2923:28;2942:8;2923:18;:28::i;19542:380::-:0;-1:-1:-1;;;;;19678:19:0;;19670:68;;;;-1:-1:-1;;;19670:68:0;;7330:2:1;19670:68:0;;;7312:21:1;7369:2;7349:18;;;7342:30;7408:34;7388:18;;;7381:62;-1:-1:-1;;;7459:18:1;;;7452:34;7503:19;;19670:68:0;7128:400:1;19670:68:0;-1:-1:-1;;;;;19757:21:0;;19749:68;;;;-1:-1:-1;;;19749:68:0;;4192:2:1;19749:68:0;;;4174:21:1;4231:2;4211:18;;;4204:30;4270:34;4250:18;;;4243:62;-1:-1:-1;;;4321:18:1;;;4314:32;4363:19;;19749:68:0;3990:398:1;19749:68:0;-1:-1:-1;;;;;19830:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19882:32;;8085:25:1;;;19882:32:0;;8058:18:1;19882:32:0;;;;;;;19542:380;;;:::o;16761:733::-;-1:-1:-1;;;;;16901:20:0;;16893:70;;;;-1:-1:-1;;;16893:70:0;;6924:2:1;16893:70:0;;;6906:21:1;6963:2;6943:18;;;6936:30;7002:34;6982:18;;;6975:62;-1:-1:-1;;;7053:18:1;;;7046:35;7098:19;;16893:70:0;6722:401:1;16893:70:0;-1:-1:-1;;;;;16982:23:0;;16974:71;;;;-1:-1:-1;;;16974:71:0;;2629:2:1;16974:71:0;;;2611:21:1;2668:2;2648:18;;;2641:30;2707:34;2687:18;;;2680:62;-1:-1:-1;;;2758:18:1;;;2751:33;2801:19;;16974:71:0;2427:399:1;16974:71:0;17058:47;17079:6;17087:9;17098:6;17058:20;:47::i;:::-;-1:-1:-1;;;;;17142:17:0;;17118:21;17142:17;;;;;;;;;;;17178:23;;;;17170:74;;;;-1:-1:-1;;;17170:74:0;;4595:2:1;17170:74:0;;;4577:21:1;4634:2;4614:18;;;4607:30;4673:34;4653:18;;;4646:62;-1:-1:-1;;;4724:18:1;;;4717:36;4770:19;;17170:74:0;4393:402:1;17170:74:0;-1:-1:-1;;;;;17280:17:0;;;:9;:17;;;;;;;;;;;17300:22;;;17280:42;;17344:20;;;;;;;;:30;;17316:6;;17280:9;17344:30;;17316:6;;17344:30;:::i;:::-;;;;;;;;17409:9;-1:-1:-1;;;;;17392:35:0;17401:6;-1:-1:-1;;;;;17392:35:0;;17420:6;17392:35;;;;8085:25:1;;8073:2;8058:18;;7939:177;17392:35:0;;;;;;;;16882:612;16761:733;;;:::o;5514:120::-;4526:7;;;;5050:41;;;;-1:-1:-1;;;5050:41:0;;3033:2:1;5050:41:0;;;3015:21:1;3072:2;3052:18;;;3045:30;-1:-1:-1;;;3091:18:1;;;3084:50;3151:18;;5050:41:0;2831:344:1;5050:41:0;5573:7:::1;:15:::0;;-1:-1:-1;;5573:15:0::1;::::0;;5604:22:::1;647:10:::0;5613:12:::1;5604:22;::::0;-1:-1:-1;;;;;1589:32:1;;;1571:51;;1559:2;1544:18;5604:22:0::1;;;;;;;5514:120::o:0;18513:591::-;-1:-1:-1;;;;;18597:21:0;;18589:67;;;;-1:-1:-1;;;18589:67:0;;6522:2:1;18589:67:0;;;6504:21:1;6561:2;6541:18;;;6534:30;6600:34;6580:18;;;6573:62;-1:-1:-1;;;6651:18:1;;;6644:31;6692:19;;18589:67:0;6320:397:1;18589:67:0;18669:49;18690:7;18707:1;18711:6;18669:20;:49::i;:::-;-1:-1:-1;;;;;18756:18:0;;18731:22;18756:18;;;;;;;;;;;18793:24;;;;18785:71;;;;-1:-1:-1;;;18785:71:0;;3382:2:1;18785:71:0;;;3364:21:1;3421:2;3401:18;;;3394:30;3460:34;3440:18;;;3433:62;-1:-1:-1;;;3511:18:1;;;3504:32;3553:19;;18785:71:0;3180:398:1;18785:71:0;-1:-1:-1;;;;;18892:18:0;;:9;:18;;;;;;;;;;18913:23;;;18892:44;;18958:12;:22;;18930:6;;18892:9;18958:22;;18930:6;;18958:22;:::i;:::-;;;;-1:-1:-1;;18998:37:0;;8085:25:1;;;19024:1:0;;-1:-1:-1;;;;;18998:37:0;;;;;8073:2:1;8058:18;18998:37:0;;;;;;;22432:302;22366:368;;:::o;3119:191::-;3212:6;;;-1:-1:-1;;;;;3229:17:0;;;3212:6;3229:17;;;-1:-1:-1;;;;;;3229:17:0;;;;;;3262:40;;3212:6;;;;;;;;3262:40;;3193:16;;3262:40;3182:128;3119:191;:::o;5255:118::-;4526:7;;;;4780:9;4772:38;;;;-1:-1:-1;;;4772:38:0;;5002:2:1;4772:38:0;;;4984:21:1;5041:2;5021:18;;;5014:30;-1:-1:-1;;;5060:18:1;;;5053:46;5116:18;;4772:38:0;4800:340:1;4772:38:0;5315:7:::1;:14:::0;;-1:-1:-1;;5315:14:0::1;5325:4;5315:14;::::0;;5345:20:::1;5352:12;647:10:::0;;567:98;23137:199;4526:7;;;;4780:9;4772:38;;;;-1:-1:-1;;;4772:38:0;;5002:2:1;4772:38:0;;;4984:21:1;5041:2;5021:18;;;5014:30;-1:-1:-1;;;5060:18:1;;;5053:46;5116:18;;4772:38:0;4800:340:1;14:173;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;:::-;333:39;192:186;-1:-1:-1;;;192:186:1:o;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:254::-;1049:6;1057;1110:2;1098:9;1089:7;1085:23;1081:32;1078:52;;;1126:1;1123;1116:12;1078:52;1149:29;1168:9;1149:29;:::i;:::-;1139:39;1225:2;1210:18;;;;1197:32;;-1:-1:-1;;;981:254:1:o;1240:180::-;1299:6;1352:2;1340:9;1331:7;1327:23;1323:32;1320:52;;;1368:1;1365;1358:12;1320:52;-1:-1:-1;1391:23:1;;1240:180;-1:-1:-1;1240:180:1:o;1825:597::-;1937:4;1966:2;1995;1984:9;1977:21;2027:6;2021:13;2070:6;2065:2;2054:9;2050:18;2043:34;2095:1;2105:140;2119:6;2116:1;2113:13;2105:140;;;2214:14;;;2210:23;;2204:30;2180:17;;;2199:2;2176:26;2169:66;2134:10;;2105:140;;;2263:6;2260:1;2257:13;2254:91;;;2333:1;2328:2;2319:6;2308:9;2304:22;2300:31;2293:42;2254:91;-1:-1:-1;2406:2:1;2385:15;-1:-1:-1;;2381:29:1;2366:45;;;;2413:2;2362:54;;1825:597;-1:-1:-1;;;1825:597:1:o;5554:356::-;5756:2;5738:21;;;5775:18;;;5768:30;5834:34;5829:2;5814:18;;5807:62;5901:2;5886:18;;5554:356::o;8310:128::-;8350:3;8381:1;8377:6;8374:1;8371:13;8368:39;;;8387:18;;:::i;:::-;-1:-1:-1;8423:9:1;;8310:128::o;8443:125::-;8483:4;8511:1;8508;8505:8;8502:34;;;8516:18;;:::i;:::-;-1:-1:-1;8553:9:1;;8443:125::o;8573:380::-;8652:1;8648:12;;;;8695;;;8716:61;;8770:4;8762:6;8758:17;8748:27;;8716:61;8823:2;8815:6;8812:14;8792:18;8789:38;8786:161;;;8869:10;8864:3;8860:20;8857:1;8850:31;8904:4;8901:1;8894:15;8932:4;8929:1;8922:15;8786:161;;8573:380;;;:::o;8958:127::-;9019:10;9014:3;9010:20;9007:1;9000:31;9050:4;9047:1;9040:15;9074:4;9071:1;9064:15

Swarm Source

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