ETH Price: $3,273.21 (+0.73%)

Token

QuantLab (QNTL)
 

Overview

Max Total Supply

1,000,000,000 QNTL

Holders

26

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
100 QNTL

Value
$0.00
0xb9dA1C61AfECb4aDeeff8667c87b7E212648B910
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:
QuantLab

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : QuantLab.sol
// contracts/QuantLab.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

contract QuantLab is ERC20, Ownable {

  address private destinationWallet = address(0x0000000000000);
  uint256 public tokenPrice = 0.0001 ether;

    constructor() ERC20("QuantLab", "QNTL") {
      
      uint256 initialSupply = 1000000000 * 10 ** decimals();
      _mint(msg.sender, initialSupply);
    }

    
    function sale(uint256 _amount) public payable {
      require(totalSupply() >= _amount, "Not enough tokens");

      require(msg.value >= _amount * tokenPrice, "Not enough ETH");
      _transfer(address(this), msg.sender, _amount);
      payable(destinationWallet).transfer(msg.value);
        
    }

    //set destination wallet
    function setDestinationWallet(address _destinationWallet) external onlyOwner {
      destinationWallet = _destinationWallet;
    }

    //withdraw ETH from contract
    function withdraw() external onlyOwner {
      payable(msg.sender).transfer(address(this).balance);
    }

    //withdraw tokens from contract
    function withdrawTokens(uint256 _amount) external onlyOwner {
      _transfer(address(this), msg.sender, _amount);
    }

    //set token price
    function setTokenPrice(uint256 _price) external onlyOwner {
      tokenPrice = _price;
    }

    
    function mint(uint256 _amount) external onlyOwner {
      _mint(msg.sender, _amount);
    }
    
    function burn(uint256 _amount) external onlyOwner {
      _burn(msg.sender, _amount);
    }

    //implement selfdestruct
    function destroy() external onlyOwner {
      selfdestruct(payable(msg.sender));
    }
}

File 2 of 6 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

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 3 of 6 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.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);
}

File 4 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

File 5 of 6 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * 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 {}
}

File 6 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * 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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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);
    }
}

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

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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[],"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":[],"name":"destroy","outputs":[],"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":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"sale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_destinationWallet","type":"address"}],"name":"setDestinationWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setTokenPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550655af3107a40006007553480156200005d57600080fd5b506040518060400160405280600881526020017f5175616e744c61620000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f514e544c000000000000000000000000000000000000000000000000000000008152508160039081620000db919062000624565b508060049081620000ed919062000624565b50505062000110620001046200015c60201b60201c565b6200016460201b60201c565b6000620001226200022a60201b60201c565b600a6200013091906200089b565b633b9aca00620001419190620008ec565b90506200015533826200023360201b60201c565b5062000a23565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200029c9062000998565b60405180910390fd5b620002b960008383620003a060201b60201c565b8060026000828254620002cd9190620009ba565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000380919062000a06565b60405180910390a36200039c60008383620003a560201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200042c57607f821691505b602082108103620004425762000441620003e4565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004ac7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200046d565b620004b886836200046d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000505620004ff620004f984620004d0565b620004da565b620004d0565b9050919050565b6000819050919050565b6200052183620004e4565b6200053962000530826200050c565b8484546200047a565b825550505050565b600090565b6200055062000541565b6200055d81848462000516565b505050565b5b8181101562000585576200057960008262000546565b60018101905062000563565b5050565b601f821115620005d4576200059e8162000448565b620005a9846200045d565b81016020851015620005b9578190505b620005d1620005c8856200045d565b83018262000562565b50505b505050565b600082821c905092915050565b6000620005f960001984600802620005d9565b1980831691505092915050565b6000620006148383620005e6565b9150826002028217905092915050565b6200062f82620003aa565b67ffffffffffffffff8111156200064b576200064a620003b5565b5b62000657825462000413565b6200066482828562000589565b600060209050601f8311600181146200069c576000841562000687578287015190505b62000693858262000606565b86555062000703565b601f198416620006ac8662000448565b60005b82811015620006d657848901518255600182019150602085019450602081019050620006af565b86831015620006f65784890151620006f2601f891682620005e6565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000799578086048111156200077157620007706200070b565b5b6001851615620007815780820291505b808102905062000791856200073a565b945062000751565b94509492505050565b600082620007b4576001905062000887565b81620007c4576000905062000887565b8160018114620007dd5760028114620007e8576200081e565b600191505062000887565b60ff841115620007fd57620007fc6200070b565b5b8360020a9150848211156200081757620008166200070b565b5b5062000887565b5060208310610133831016604e8410600b8410161715620008585782820a9050838111156200085257620008516200070b565b5b62000887565b62000867848484600162000747565b925090508184048111156200088157620008806200070b565b5b81810290505b9392505050565b600060ff82169050919050565b6000620008a882620004d0565b9150620008b5836200088e565b9250620008e47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620007a2565b905092915050565b6000620008f982620004d0565b91506200090683620004d0565b92508282026200091681620004d0565b9150828204841483151762000930576200092f6200070b565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000980601f8362000937565b91506200098d8262000948565b602082019050919050565b60006020820190508181036000830152620009b38162000971565b9050919050565b6000620009c782620004d0565b9150620009d483620004d0565b9250828201905080821115620009ef57620009ee6200070b565b5b92915050565b62000a0081620004d0565b82525050565b600060208201905062000a1d6000830184620009f5565b92915050565b6120508062000a336000396000f3fe6080604052600436106101405760003560e01c806370a08231116100b6578063960327021161006f5780639603270214610424578063a0712d6814610440578063a457c2d714610469578063a9059cbb146104a6578063dd62ed3e146104e3578063f2fde38b1461052057610140565b806370a0823114610338578063715018a6146103755780637ff9b5961461038c57806383197ef0146103b75780638da5cb5b146103ce57806395d89b41146103f957610140565b8063313ce56711610108578063313ce5671461023e578063315a095d1461026957806339509351146102925780633ccfd60b146102cf57806342966c68146102e65780636a61e5fc1461030f57610140565b806306fdde0314610145578063095ea7b31461017057806313fa095f146101ad57806318160ddd146101d657806323b872dd14610201575b600080fd5b34801561015157600080fd5b5061015a610549565b604051610167919061152e565b60405180910390f35b34801561017c57600080fd5b50610197600480360381019061019291906115e9565b6105db565b6040516101a49190611644565b60405180910390f35b3480156101b957600080fd5b506101d460048036038101906101cf919061165f565b6105fe565b005b3480156101e257600080fd5b506101eb61064a565b6040516101f8919061169b565b60405180910390f35b34801561020d57600080fd5b50610228600480360381019061022391906116b6565b610654565b6040516102359190611644565b60405180910390f35b34801561024a57600080fd5b50610253610683565b6040516102609190611725565b60405180910390f35b34801561027557600080fd5b50610290600480360381019061028b9190611740565b61068c565b005b34801561029e57600080fd5b506102b960048036038101906102b491906115e9565b6106a2565b6040516102c69190611644565b60405180910390f35b3480156102db57600080fd5b506102e46106d9565b005b3480156102f257600080fd5b5061030d60048036038101906103089190611740565b61072a565b005b34801561031b57600080fd5b5061033660048036038101906103319190611740565b61073f565b005b34801561034457600080fd5b5061035f600480360381019061035a919061165f565b610751565b60405161036c919061169b565b60405180910390f35b34801561038157600080fd5b5061038a610799565b005b34801561039857600080fd5b506103a16107ad565b6040516103ae919061169b565b60405180910390f35b3480156103c357600080fd5b506103cc6107b3565b005b3480156103da57600080fd5b506103e36107d4565b6040516103f0919061177c565b60405180910390f35b34801561040557600080fd5b5061040e6107fe565b60405161041b919061152e565b60405180910390f35b61043e60048036038101906104399190611740565b610890565b005b34801561044c57600080fd5b5061046760048036038101906104629190611740565b6109a1565b005b34801561047557600080fd5b50610490600480360381019061048b91906115e9565b6109b6565b60405161049d9190611644565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c891906115e9565b610a2d565b6040516104da9190611644565b60405180910390f35b3480156104ef57600080fd5b5061050a60048036038101906105059190611797565b610a50565b604051610517919061169b565b60405180910390f35b34801561052c57600080fd5b506105476004803603810190610542919061165f565b610ad7565b005b60606003805461055890611806565b80601f016020809104026020016040519081016040528092919081815260200182805461058490611806565b80156105d15780601f106105a6576101008083540402835291602001916105d1565b820191906000526020600020905b8154815290600101906020018083116105b457829003601f168201915b5050505050905090565b6000806105e6610b5a565b90506105f3818585610b62565b600191505092915050565b610606610d2b565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600254905090565b60008061065f610b5a565b905061066c858285610da9565b610677858585610e35565b60019150509392505050565b60006012905090565b610694610d2b565b61069f303383610e35565b50565b6000806106ad610b5a565b90506106ce8185856106bf8589610a50565b6106c99190611866565b610b62565b600191505092915050565b6106e1610d2b565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610727573d6000803e3d6000fd5b50565b610732610d2b565b61073c33826110ab565b50565b610747610d2b565b8060078190555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107a1610d2b565b6107ab6000611278565b565b60075481565b6107bb610d2b565b3373ffffffffffffffffffffffffffffffffffffffff16ff5b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461080d90611806565b80601f016020809104026020016040519081016040528092919081815260200182805461083990611806565b80156108865780601f1061085b57610100808354040283529160200191610886565b820191906000526020600020905b81548152906001019060200180831161086957829003601f168201915b5050505050905090565b8061089961064a565b10156108da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d1906118e6565b60405180910390fd5b600754816108e89190611906565b34101561092a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092190611994565b60405180910390fd5b610935303383610e35565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f1935050505015801561099d573d6000803e3d6000fd5b5050565b6109a9610d2b565b6109b3338261133e565b50565b6000806109c1610b5a565b905060006109cf8286610a50565b905083811015610a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0b90611a26565b60405180910390fd5b610a218286868403610b62565b60019250505092915050565b600080610a38610b5a565b9050610a45818585610e35565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610adf610d2b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4590611ab8565b60405180910390fd5b610b5781611278565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc890611b4a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3790611bdc565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d1e919061169b565b60405180910390a3505050565b610d33610b5a565b73ffffffffffffffffffffffffffffffffffffffff16610d516107d4565b73ffffffffffffffffffffffffffffffffffffffff1614610da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9e90611c48565b60405180910390fd5b565b6000610db58484610a50565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e2f5781811015610e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1890611cb4565b60405180910390fd5b610e2e8484848403610b62565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9b90611d46565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0a90611dd8565b60405180910390fd5b610f1e838383611494565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9b90611e6a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611092919061169b565b60405180910390a36110a5848484611499565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361111a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111190611efc565b60405180910390fd5b61112682600083611494565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156111ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a390611f8e565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161125f919061169b565b60405180910390a361127383600084611499565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a490611ffa565b60405180910390fd5b6113b960008383611494565b80600260008282546113cb9190611866565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161147c919061169b565b60405180910390a361149060008383611499565b5050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156114d85780820151818401526020810190506114bd565b60008484015250505050565b6000601f19601f8301169050919050565b60006115008261149e565b61150a81856114a9565b935061151a8185602086016114ba565b611523816114e4565b840191505092915050565b6000602082019050818103600083015261154881846114f5565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061158082611555565b9050919050565b61159081611575565b811461159b57600080fd5b50565b6000813590506115ad81611587565b92915050565b6000819050919050565b6115c6816115b3565b81146115d157600080fd5b50565b6000813590506115e3816115bd565b92915050565b60008060408385031215611600576115ff611550565b5b600061160e8582860161159e565b925050602061161f858286016115d4565b9150509250929050565b60008115159050919050565b61163e81611629565b82525050565b60006020820190506116596000830184611635565b92915050565b60006020828403121561167557611674611550565b5b60006116838482850161159e565b91505092915050565b611695816115b3565b82525050565b60006020820190506116b0600083018461168c565b92915050565b6000806000606084860312156116cf576116ce611550565b5b60006116dd8682870161159e565b93505060206116ee8682870161159e565b92505060406116ff868287016115d4565b9150509250925092565b600060ff82169050919050565b61171f81611709565b82525050565b600060208201905061173a6000830184611716565b92915050565b60006020828403121561175657611755611550565b5b6000611764848285016115d4565b91505092915050565b61177681611575565b82525050565b6000602082019050611791600083018461176d565b92915050565b600080604083850312156117ae576117ad611550565b5b60006117bc8582860161159e565b92505060206117cd8582860161159e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061181e57607f821691505b602082108103611831576118306117d7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611871826115b3565b915061187c836115b3565b925082820190508082111561189457611893611837565b5b92915050565b7f4e6f7420656e6f75676820746f6b656e73000000000000000000000000000000600082015250565b60006118d06011836114a9565b91506118db8261189a565b602082019050919050565b600060208201905081810360008301526118ff816118c3565b9050919050565b6000611911826115b3565b915061191c836115b3565b925082820261192a816115b3565b9150828204841483151761194157611940611837565b5b5092915050565b7f4e6f7420656e6f75676820455448000000000000000000000000000000000000600082015250565b600061197e600e836114a9565b915061198982611948565b602082019050919050565b600060208201905081810360008301526119ad81611971565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611a106025836114a9565b9150611a1b826119b4565b604082019050919050565b60006020820190508181036000830152611a3f81611a03565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611aa26026836114a9565b9150611aad82611a46565b604082019050919050565b60006020820190508181036000830152611ad181611a95565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611b346024836114a9565b9150611b3f82611ad8565b604082019050919050565b60006020820190508181036000830152611b6381611b27565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611bc66022836114a9565b9150611bd182611b6a565b604082019050919050565b60006020820190508181036000830152611bf581611bb9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611c326020836114a9565b9150611c3d82611bfc565b602082019050919050565b60006020820190508181036000830152611c6181611c25565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611c9e601d836114a9565b9150611ca982611c68565b602082019050919050565b60006020820190508181036000830152611ccd81611c91565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611d306025836114a9565b9150611d3b82611cd4565b604082019050919050565b60006020820190508181036000830152611d5f81611d23565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611dc26023836114a9565b9150611dcd82611d66565b604082019050919050565b60006020820190508181036000830152611df181611db5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611e546026836114a9565b9150611e5f82611df8565b604082019050919050565b60006020820190508181036000830152611e8381611e47565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ee66021836114a9565b9150611ef182611e8a565b604082019050919050565b60006020820190508181036000830152611f1581611ed9565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f786022836114a9565b9150611f8382611f1c565b604082019050919050565b60006020820190508181036000830152611fa781611f6b565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611fe4601f836114a9565b9150611fef82611fae565b602082019050919050565b6000602082019050818103600083015261201381611fd7565b905091905056fea2646970667358221220accf31147daaf731c4da52fecb76b483ee5b73d8f66853949c8e8bce5c3ef01c64736f6c63430008130033

Deployed Bytecode

0x6080604052600436106101405760003560e01c806370a08231116100b6578063960327021161006f5780639603270214610424578063a0712d6814610440578063a457c2d714610469578063a9059cbb146104a6578063dd62ed3e146104e3578063f2fde38b1461052057610140565b806370a0823114610338578063715018a6146103755780637ff9b5961461038c57806383197ef0146103b75780638da5cb5b146103ce57806395d89b41146103f957610140565b8063313ce56711610108578063313ce5671461023e578063315a095d1461026957806339509351146102925780633ccfd60b146102cf57806342966c68146102e65780636a61e5fc1461030f57610140565b806306fdde0314610145578063095ea7b31461017057806313fa095f146101ad57806318160ddd146101d657806323b872dd14610201575b600080fd5b34801561015157600080fd5b5061015a610549565b604051610167919061152e565b60405180910390f35b34801561017c57600080fd5b50610197600480360381019061019291906115e9565b6105db565b6040516101a49190611644565b60405180910390f35b3480156101b957600080fd5b506101d460048036038101906101cf919061165f565b6105fe565b005b3480156101e257600080fd5b506101eb61064a565b6040516101f8919061169b565b60405180910390f35b34801561020d57600080fd5b50610228600480360381019061022391906116b6565b610654565b6040516102359190611644565b60405180910390f35b34801561024a57600080fd5b50610253610683565b6040516102609190611725565b60405180910390f35b34801561027557600080fd5b50610290600480360381019061028b9190611740565b61068c565b005b34801561029e57600080fd5b506102b960048036038101906102b491906115e9565b6106a2565b6040516102c69190611644565b60405180910390f35b3480156102db57600080fd5b506102e46106d9565b005b3480156102f257600080fd5b5061030d60048036038101906103089190611740565b61072a565b005b34801561031b57600080fd5b5061033660048036038101906103319190611740565b61073f565b005b34801561034457600080fd5b5061035f600480360381019061035a919061165f565b610751565b60405161036c919061169b565b60405180910390f35b34801561038157600080fd5b5061038a610799565b005b34801561039857600080fd5b506103a16107ad565b6040516103ae919061169b565b60405180910390f35b3480156103c357600080fd5b506103cc6107b3565b005b3480156103da57600080fd5b506103e36107d4565b6040516103f0919061177c565b60405180910390f35b34801561040557600080fd5b5061040e6107fe565b60405161041b919061152e565b60405180910390f35b61043e60048036038101906104399190611740565b610890565b005b34801561044c57600080fd5b5061046760048036038101906104629190611740565b6109a1565b005b34801561047557600080fd5b50610490600480360381019061048b91906115e9565b6109b6565b60405161049d9190611644565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c891906115e9565b610a2d565b6040516104da9190611644565b60405180910390f35b3480156104ef57600080fd5b5061050a60048036038101906105059190611797565b610a50565b604051610517919061169b565b60405180910390f35b34801561052c57600080fd5b506105476004803603810190610542919061165f565b610ad7565b005b60606003805461055890611806565b80601f016020809104026020016040519081016040528092919081815260200182805461058490611806565b80156105d15780601f106105a6576101008083540402835291602001916105d1565b820191906000526020600020905b8154815290600101906020018083116105b457829003601f168201915b5050505050905090565b6000806105e6610b5a565b90506105f3818585610b62565b600191505092915050565b610606610d2b565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600254905090565b60008061065f610b5a565b905061066c858285610da9565b610677858585610e35565b60019150509392505050565b60006012905090565b610694610d2b565b61069f303383610e35565b50565b6000806106ad610b5a565b90506106ce8185856106bf8589610a50565b6106c99190611866565b610b62565b600191505092915050565b6106e1610d2b565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610727573d6000803e3d6000fd5b50565b610732610d2b565b61073c33826110ab565b50565b610747610d2b565b8060078190555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107a1610d2b565b6107ab6000611278565b565b60075481565b6107bb610d2b565b3373ffffffffffffffffffffffffffffffffffffffff16ff5b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461080d90611806565b80601f016020809104026020016040519081016040528092919081815260200182805461083990611806565b80156108865780601f1061085b57610100808354040283529160200191610886565b820191906000526020600020905b81548152906001019060200180831161086957829003601f168201915b5050505050905090565b8061089961064a565b10156108da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d1906118e6565b60405180910390fd5b600754816108e89190611906565b34101561092a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092190611994565b60405180910390fd5b610935303383610e35565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f1935050505015801561099d573d6000803e3d6000fd5b5050565b6109a9610d2b565b6109b3338261133e565b50565b6000806109c1610b5a565b905060006109cf8286610a50565b905083811015610a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0b90611a26565b60405180910390fd5b610a218286868403610b62565b60019250505092915050565b600080610a38610b5a565b9050610a45818585610e35565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610adf610d2b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4590611ab8565b60405180910390fd5b610b5781611278565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc890611b4a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3790611bdc565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d1e919061169b565b60405180910390a3505050565b610d33610b5a565b73ffffffffffffffffffffffffffffffffffffffff16610d516107d4565b73ffffffffffffffffffffffffffffffffffffffff1614610da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9e90611c48565b60405180910390fd5b565b6000610db58484610a50565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e2f5781811015610e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1890611cb4565b60405180910390fd5b610e2e8484848403610b62565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9b90611d46565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0a90611dd8565b60405180910390fd5b610f1e838383611494565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9b90611e6a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611092919061169b565b60405180910390a36110a5848484611499565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361111a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111190611efc565b60405180910390fd5b61112682600083611494565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156111ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a390611f8e565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161125f919061169b565b60405180910390a361127383600084611499565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a490611ffa565b60405180910390fd5b6113b960008383611494565b80600260008282546113cb9190611866565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161147c919061169b565b60405180910390a361149060008383611499565b5050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156114d85780820151818401526020810190506114bd565b60008484015250505050565b6000601f19601f8301169050919050565b60006115008261149e565b61150a81856114a9565b935061151a8185602086016114ba565b611523816114e4565b840191505092915050565b6000602082019050818103600083015261154881846114f5565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061158082611555565b9050919050565b61159081611575565b811461159b57600080fd5b50565b6000813590506115ad81611587565b92915050565b6000819050919050565b6115c6816115b3565b81146115d157600080fd5b50565b6000813590506115e3816115bd565b92915050565b60008060408385031215611600576115ff611550565b5b600061160e8582860161159e565b925050602061161f858286016115d4565b9150509250929050565b60008115159050919050565b61163e81611629565b82525050565b60006020820190506116596000830184611635565b92915050565b60006020828403121561167557611674611550565b5b60006116838482850161159e565b91505092915050565b611695816115b3565b82525050565b60006020820190506116b0600083018461168c565b92915050565b6000806000606084860312156116cf576116ce611550565b5b60006116dd8682870161159e565b93505060206116ee8682870161159e565b92505060406116ff868287016115d4565b9150509250925092565b600060ff82169050919050565b61171f81611709565b82525050565b600060208201905061173a6000830184611716565b92915050565b60006020828403121561175657611755611550565b5b6000611764848285016115d4565b91505092915050565b61177681611575565b82525050565b6000602082019050611791600083018461176d565b92915050565b600080604083850312156117ae576117ad611550565b5b60006117bc8582860161159e565b92505060206117cd8582860161159e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061181e57607f821691505b602082108103611831576118306117d7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611871826115b3565b915061187c836115b3565b925082820190508082111561189457611893611837565b5b92915050565b7f4e6f7420656e6f75676820746f6b656e73000000000000000000000000000000600082015250565b60006118d06011836114a9565b91506118db8261189a565b602082019050919050565b600060208201905081810360008301526118ff816118c3565b9050919050565b6000611911826115b3565b915061191c836115b3565b925082820261192a816115b3565b9150828204841483151761194157611940611837565b5b5092915050565b7f4e6f7420656e6f75676820455448000000000000000000000000000000000000600082015250565b600061197e600e836114a9565b915061198982611948565b602082019050919050565b600060208201905081810360008301526119ad81611971565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611a106025836114a9565b9150611a1b826119b4565b604082019050919050565b60006020820190508181036000830152611a3f81611a03565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611aa26026836114a9565b9150611aad82611a46565b604082019050919050565b60006020820190508181036000830152611ad181611a95565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611b346024836114a9565b9150611b3f82611ad8565b604082019050919050565b60006020820190508181036000830152611b6381611b27565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611bc66022836114a9565b9150611bd182611b6a565b604082019050919050565b60006020820190508181036000830152611bf581611bb9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611c326020836114a9565b9150611c3d82611bfc565b602082019050919050565b60006020820190508181036000830152611c6181611c25565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611c9e601d836114a9565b9150611ca982611c68565b602082019050919050565b60006020820190508181036000830152611ccd81611c91565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611d306025836114a9565b9150611d3b82611cd4565b604082019050919050565b60006020820190508181036000830152611d5f81611d23565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611dc26023836114a9565b9150611dcd82611d66565b604082019050919050565b60006020820190508181036000830152611df181611db5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611e546026836114a9565b9150611e5f82611df8565b604082019050919050565b60006020820190508181036000830152611e8381611e47565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ee66021836114a9565b9150611ef182611e8a565b604082019050919050565b60006020820190508181036000830152611f1581611ed9565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f786022836114a9565b9150611f8382611f1c565b604082019050919050565b60006020820190508181036000830152611fa781611f6b565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611fe4601f836114a9565b9150611fef82611fae565b602082019050919050565b6000602082019050818103600083015261201381611fd7565b905091905056fea2646970667358221220accf31147daaf731c4da52fecb76b483ee5b73d8f66853949c8e8bce5c3ef01c64736f6c63430008130033

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.