ETH Price: $3,491.79 (+1.12%)

Token

Green Lantern (LANTERN)
 

Overview

Max Total Supply

420,000,000,000 LANTERN

Holders

49 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.41086990078604303 LANTERN

Value
$0.00
0xd8E0570b58138e4a6D6da41aa6F55B97CB7c74f9
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

LANTERN, symbolizes the light & energy we bring to the blockchain ecosystem.It serves as a beacon of hope, guiding users towards safe opportunities & illuminating their crypto journeys.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
LANTERN

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-13
*/

/**
 *Submitted for verification at Etherscan.io on 2023-05-11
*/

pragma solidity 0.8.19;
// SPDX-License-Identifier: MIT

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

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

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

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

  /**
   * @dev Returns the bep token owner.
   */
  function getOwner() external view returns (address);

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

/*
 * @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 GSN 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.
 */
contract Context {
  // Empty internal constructor, to prevent people from mistakenly deploying
  // an instance of this contract, which should be used via inheritance.
  constructor ()  { }

  function _msgSender() internal view returns (address payable) {
    return (payable(msg.sender));
  }

  function _msgData() internal view returns (bytes memory) {
    this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
    return msg.data;
  }
}

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
  /**
   * @dev Returns the addition of two unsigned integers, reverting on
   * overflow.
   *
   * Counterpart to Solidity's `+` operator.
   *
   * Requirements:
   * - Addition cannot overflow.
   */
  function add(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a + b;
    require(c >= a, "SafeMath: addition overflow");

    return c;
  }

  /**
   * @dev Returns the subtraction of two unsigned integers, reverting on
   * overflow (when the result is negative).
   *
   * Counterpart to Solidity's `-` operator.
   *
   * Requirements:
   * - Subtraction cannot overflow.
   */
  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    return sub(a, b, "SafeMath: subtraction overflow");
  }

  /**
   * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
   * overflow (when the result is negative).
   *
   * Counterpart to Solidity's `-` operator.
   *
   * Requirements:
   * - Subtraction cannot overflow.
   */
  function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
    require(b <= a, errorMessage);
    uint256 c = a - b;

    return c;
  }

  /**
   * @dev Returns the multiplication of two unsigned integers, reverting on
   * overflow.
   *
   * Counterpart to Solidity's `*` operator.
   *
   * Requirements:
   * - Multiplication cannot overflow.
   */
  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
    // benefit is lost if 'b' is also tested.
    // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
    if (a == 0) {
      return 0;
    }

    uint256 c = a * b;
    require(c / a == b, "SafeMath: multiplication overflow");

    return c;
  }

  /**
   * @dev Returns the integer division of two unsigned integers. Reverts on
   * division by zero. The result is rounded towards zero.
   *
   * Counterpart to Solidity's `/` operator. Note: this function uses a
   * `revert` opcode (which leaves remaining gas untouched) while Solidity
   * uses an invalid opcode to revert (consuming all remaining gas).
   *
   * Requirements:
   * - The divisor cannot be zero.
   */
  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    return div(a, b, "SafeMath: division by zero");
  }

  /**
   * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
   * division by zero. The result is rounded towards zero.
   *
   * Counterpart to Solidity's `/` operator. Note: this function uses a
   * `revert` opcode (which leaves remaining gas untouched) while Solidity
   * uses an invalid opcode to revert (consuming all remaining gas).
   *
   * Requirements:
   * - The divisor cannot be zero.
   */
  function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
    // Solidity only automatically asserts when dividing by 0
    require(b > 0, errorMessage);
    uint256 c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold

    return c;
  }

  /**
   * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
   * Reverts when dividing by zero.
   *
   * Counterpart to Solidity's `%` operator. This function uses a `revert`
   * opcode (which leaves remaining gas untouched) while Solidity uses an
   * invalid opcode to revert (consuming all remaining gas).
   *
   * Requirements:
   * - The divisor cannot be zero.
   */
  function mod(uint256 a, uint256 b) internal pure returns (uint256) {
    return mod(a, b, "SafeMath: modulo by zero");
  }

  /**
   * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
   * Reverts with custom message when dividing by zero.
   *
   * Counterpart to Solidity's `%` operator. This function uses a `revert`
   * opcode (which leaves remaining gas untouched) while Solidity uses an
   * invalid opcode to revert (consuming all remaining gas).
   *
   * Requirements:
   * - The divisor cannot be zero.
   */
  function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
    require(b != 0, errorMessage);
    return a % b;
  }
}

/**
 * @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.
 */
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 ()  {
    address msgSender = _msgSender();
    _owner = msgSender;
    emit OwnershipTransferred(address(0), msgSender);
  }

  /**
   * @dev Returns the address of the current owner.
   */
  function owner() public view 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 onlyOwner {
    emit OwnershipTransferred(_owner, address(0));
    _owner = 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 onlyOwner {
    _transferOwnership(newOwner);
  }

  /**
   * @dev Transfers ownership of the contract to a new account (`newOwner`).
   */
  function _transferOwnership(address newOwner) internal {
    require(newOwner != address(0), "Ownable: new owner is the zero address");
    emit OwnershipTransferred(_owner, newOwner);
    _owner = newOwner;
  }
}

contract LANTERN is Context, IERC20, Ownable {
  using SafeMath for uint256;

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

  uint256 private _totalSupply;
  uint8 private _decimals;
  string private _symbol;
  string private _name;

  constructor()  {
    _name = "Green Lantern";
    _symbol = "LANTERN";
    _decimals = 18;
    _totalSupply = 420_000_000_000 *10**18; //420 billion total token supply
    _balances[msg.sender] = _totalSupply;

    emit Transfer(address(0), msg.sender, _totalSupply);
  }

  /**
   * @dev Returns the ERC token owner.
   */
  function getOwner() external view returns (address) {
    return owner();
  }

  /**
   * @dev Returns the token decimals.
   */
  function decimals() external view returns (uint8) {
    return _decimals;
  }

  /**
   * @dev Returns the token symbol.
   */
  function symbol() external view returns (string memory) {
    return _symbol;
  }

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

  /**
   * @dev See {ERC20-totalSupply}.
   */
  function totalSupply() external view returns (uint256) {
    return _totalSupply;
  }

  /**
   * @dev See {ERC20-balanceOf}.
   */
  function balanceOf(address account) external view returns (uint256) {
    return _balances[account];
  }

  /**
   * @dev See {ERC20-transfer}.
   *
   * Requirements:
   *
   * - `recipient` cannot be the zero address.
   * - the caller must have a balance of at least `amount`.
  */
  function transfer(address recipient, uint256 amount) external returns (bool) {
    _transfer(_msgSender(), recipient, amount);
    return true;
  }

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

  /**
   * @dev See {ERC20-approve}.
   *
   * Requirements:
   *
   * - `spender` cannot be the zero address.
   */
  function approve(address spender, uint256 amount) external returns (bool) {
    _approve(_msgSender(), spender, amount);
    return true;
  }

  /**
   * @dev See {ERC20-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) external returns (bool) {
    _transfer(sender, recipient, amount);
    _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
    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 {ERC20-approve}.
   *
   * Emits an {Approval} event indicating the updated allowance.
   *
   * Requirements:
   *
   * - `spender` cannot be the zero address.
   */
  function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
    _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(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 {ERC20-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 returns (bool) {
    _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
    return true;
  }

  /**
   * @dev Moves tokens `amount` from `sender` to `recipient`.
   *
   * This is 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 from,
    address to,
    uint256 amount
    ) private {
    require(from != address(0), "ERC20: transfer from the zero address");
    require(amount > 0, "Transfer amount must be greater than zero");
    _transferStandard(from,to,amount);
  }  

  function _transferStandard(address sender, address recipient, uint256 tAmount) private {
    _balances[sender] = _balances[sender].sub(tAmount);
    _balances[recipient] = _balances[recipient].add(tAmount);
    emit Transfer(sender, recipient, tAmount);
  }
  
  /**
   * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
   *
   * This is 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 {
    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);
  }

}

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":[],"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":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"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"}]

60806040523480156200001157600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060408051808201909152600d81526c23b932b2b7102630b73a32b93760991b6020820152600690620000869082620001d0565b506040805180820190915260078152662620a72a22a92760c91b6020820152600590620000b49082620001d0565b506004805460ff191660121790556c054d17db76321263eca000000060038190553360008181526001602052604080822084905551919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef916200011d9190815260200190565b60405180910390a36200029c565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200015657607f821691505b6020821081036200017757634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001cb57600081815260208120601f850160051c81016020861015620001a65750805b601f850160051c820191505b81811015620001c757828155600101620001b2565b5050505b505050565b81516001600160401b03811115620001ec57620001ec6200012b565b6200020481620001fd845462000141565b846200017d565b602080601f8311600181146200023c5760008415620002235750858301515b600019600386901b1c1916600185901b178555620001c7565b600085815260208120601f198616915b828110156200026d578886015182559484019460019091019084016200024c565b50858210156200028c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b610b8780620002ac6000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d7146101f9578063a9059cbb1461020c578063dd62ed3e1461021f578063f2fde38b1461025857600080fd5b8063715018a6146101b1578063893d20e8146101bb5780638da5cb5b146101e057806395d89b41146101f157600080fd5b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063395093511461017557806370a082311461018857600080fd5b806306fdde03146100fa578063095ea7b31461011857806318160ddd1461013b575b600080fd5b61010261026b565b60405161010f9190610970565b60405180910390f35b61012b6101263660046109da565b6102fd565b604051901515815260200161010f565b6003545b60405190815260200161010f565b61012b61015b366004610a04565b610314565b60045460405160ff909116815260200161010f565b61012b6101833660046109da565b61037d565b61013f610196366004610a40565b6001600160a01b031660009081526001602052604090205490565b6101b96103b3565b005b6000546001600160a01b03165b6040516001600160a01b03909116815260200161010f565b6000546001600160a01b03166101c8565b61010261045c565b61012b6102073660046109da565b61046b565b61012b61021a3660046109da565b6104ba565b61013f61022d366004610a5b565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101b9610266366004610a40565b6104c7565b60606006805461027a90610a8e565b80601f01602080910402602001604051908101604052809291908181526020018280546102a690610a8e565b80156102f35780601f106102c8576101008083540402835291602001916102f3565b820191906000526020600020905b8154815290600101906020018083116102d657829003601f168201915b5050505050905090565b600061030a33848461052d565b5060015b92915050565b6000610321848484610652565b610373843361036e85604051806060016040528060288152602001610b05602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610728565b61052d565b5060019392505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161030a91859061036e9086610762565b6000546001600160a01b031633146104125760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60606005805461027a90610a8e565b600061030a338461036e85604051806060016040528060258152602001610b2d602591393360009081526002602090815260408083206001600160a01b038d1684529091529020549190610728565b600061030a338484610652565b6000546001600160a01b031633146105215760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610409565b61052a816107c8565b50565b6001600160a01b03831661058f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610409565b6001600160a01b0382166105f05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610409565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166106b65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610409565b600081116107185760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610409565b610723838383610888565b505050565b6000818484111561074c5760405162461bcd60e51b81526004016104099190610970565b5060006107598486610ade565b95945050505050565b60008061076f8385610af1565b9050838110156107c15760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610409565b9392505050565b6001600160a01b03811661082d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610409565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166000908152600160205260409020546108ab908261092e565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546108da9082610762565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906106459085815260200190565b60006107c183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610728565b600060208083528351808285015260005b8181101561099d57858101830151858201604001528201610981565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146109d557600080fd5b919050565b600080604083850312156109ed57600080fd5b6109f6836109be565b946020939093013593505050565b600080600060608486031215610a1957600080fd5b610a22846109be565b9250610a30602085016109be565b9150604084013590509250925092565b600060208284031215610a5257600080fd5b6107c1826109be565b60008060408385031215610a6e57600080fd5b610a77836109be565b9150610a85602084016109be565b90509250929050565b600181811c90821680610aa257607f821691505b602082108103610ac257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561030e5761030e610ac8565b8082018082111561030e5761030e610ac856fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122099a83a5e958bc2baac080fddd8ef0f444b6c23ca8a6f718757b0a85bafdcb17c64736f6c63430008130033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d7146101f9578063a9059cbb1461020c578063dd62ed3e1461021f578063f2fde38b1461025857600080fd5b8063715018a6146101b1578063893d20e8146101bb5780638da5cb5b146101e057806395d89b41146101f157600080fd5b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063395093511461017557806370a082311461018857600080fd5b806306fdde03146100fa578063095ea7b31461011857806318160ddd1461013b575b600080fd5b61010261026b565b60405161010f9190610970565b60405180910390f35b61012b6101263660046109da565b6102fd565b604051901515815260200161010f565b6003545b60405190815260200161010f565b61012b61015b366004610a04565b610314565b60045460405160ff909116815260200161010f565b61012b6101833660046109da565b61037d565b61013f610196366004610a40565b6001600160a01b031660009081526001602052604090205490565b6101b96103b3565b005b6000546001600160a01b03165b6040516001600160a01b03909116815260200161010f565b6000546001600160a01b03166101c8565b61010261045c565b61012b6102073660046109da565b61046b565b61012b61021a3660046109da565b6104ba565b61013f61022d366004610a5b565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101b9610266366004610a40565b6104c7565b60606006805461027a90610a8e565b80601f01602080910402602001604051908101604052809291908181526020018280546102a690610a8e565b80156102f35780601f106102c8576101008083540402835291602001916102f3565b820191906000526020600020905b8154815290600101906020018083116102d657829003601f168201915b5050505050905090565b600061030a33848461052d565b5060015b92915050565b6000610321848484610652565b610373843361036e85604051806060016040528060288152602001610b05602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610728565b61052d565b5060019392505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161030a91859061036e9086610762565b6000546001600160a01b031633146104125760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60606005805461027a90610a8e565b600061030a338461036e85604051806060016040528060258152602001610b2d602591393360009081526002602090815260408083206001600160a01b038d1684529091529020549190610728565b600061030a338484610652565b6000546001600160a01b031633146105215760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610409565b61052a816107c8565b50565b6001600160a01b03831661058f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610409565b6001600160a01b0382166105f05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610409565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166106b65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610409565b600081116107185760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610409565b610723838383610888565b505050565b6000818484111561074c5760405162461bcd60e51b81526004016104099190610970565b5060006107598486610ade565b95945050505050565b60008061076f8385610af1565b9050838110156107c15760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610409565b9392505050565b6001600160a01b03811661082d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610409565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166000908152600160205260409020546108ab908261092e565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546108da9082610762565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906106459085815260200190565b60006107c183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610728565b600060208083528351808285015260005b8181101561099d57858101830151858201604001528201610981565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146109d557600080fd5b919050565b600080604083850312156109ed57600080fd5b6109f6836109be565b946020939093013593505050565b600080600060608486031215610a1957600080fd5b610a22846109be565b9250610a30602085016109be565b9150604084013590509250925092565b600060208284031215610a5257600080fd5b6107c1826109be565b60008060408385031215610a6e57600080fd5b610a77836109be565b9150610a85602084016109be565b90509250929050565b600181811c90821680610aa257607f821691505b602082108103610ac257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561030e5761030e610ac8565b8082018082111561030e5761030e610ac856fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122099a83a5e958bc2baac080fddd8ef0f444b6c23ca8a6f718757b0a85bafdcb17c64736f6c63430008130033

Deployed Bytecode Sourcemap

11407:6052:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12482:79;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13521:144;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;13521:144:0;1004:187:1;12617:87:0;12686:12;;12617:87;;;1342:25:1;;;1330:2;1315:18;12617:87:0;1196:177:1;14110:292:0;;;;;;:::i;:::-;;:::i;12209:79::-;12273:9;;12209:79;;12273:9;;;;1853:36:1;;1841:2;1826:18;12209:79:0;1711:184:1;14784:200:0;;;;;;:::i;:::-;;:::i;12758:106::-;;;;;;:::i;:::-;-1:-1:-1;;;;;12840:18:0;12817:7;12840:18;;;:9;:18;;;;;;;12758:106;10709:130;;;:::i;:::-;;12071:79;12114:7;10168:6;-1:-1:-1;;;;;10168:6:0;12071:79;;;-1:-1:-1;;;;;2255:32:1;;;2237:51;;2225:2;2210:18;12071:79:0;2091:203:1;10107:73:0;10145:7;10168:6;-1:-1:-1;;;;;10168:6:0;10107:73;;12345:83;;;:::i;15456:251::-;;;;;;:::i;:::-;;:::i;13057:150::-;;;;;;:::i;:::-;;:::i;13261:130::-;;;;;;:::i;:::-;-1:-1:-1;;;;;13358:18:0;;;13335:7;13358:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13261:130;10984:103;;;;;;:::i;:::-;;:::i;12482:79::-;12521:13;12550:5;12543:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12482:79;:::o;13521:144::-;13589:4;13602:39;3886:10;13625:7;13634:6;13602:8;:39::i;:::-;-1:-1:-1;13655:4:0;13521:144;;;;;:::o;14110:292::-;14201:4;14214:36;14224:6;14232:9;14243:6;14214:9;:36::i;:::-;14257:121;14266:6;3886:10;14288:89;14326:6;14288:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14288:19:0;;;;;;:11;:19;;;;;;;;3886:10;14288:33;;;;;;;;;;:37;:89::i;:::-;14257:8;:121::i;:::-;-1:-1:-1;14392:4:0;14110:292;;;;;:::o;14784:200::-;3886:10;14864:4;14909:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14909:34:0;;;;;;;;;;14864:4;;14877:83;;14900:7;;14909:50;;14948:10;14909:38;:50::i;10709:130::-;10301:6;;-1:-1:-1;;;;;10301:6:0;3886:10;10301:22;10293:67;;;;-1:-1:-1;;;10293:67:0;;3151:2:1;10293:67:0;;;3133:21:1;;;3170:18;;;3163:30;3229:34;3209:18;;;3202:62;3281:18;;10293:67:0;;;;;;;;;10804:1:::1;10788:6:::0;;10767:40:::1;::::0;-1:-1:-1;;;;;10788:6:0;;::::1;::::0;10767:40:::1;::::0;10804:1;;10767:40:::1;10831:1;10814:19:::0;;-1:-1:-1;;;;;;10814:19:0::1;::::0;;10709:130::o;12345:83::-;12386:13;12415:7;12408:14;;;;;:::i;15456:251::-;15541:4;15554:129;3886:10;15577:7;15586:96;15625:15;15586:96;;;;;;;;;;;;;;;;;3886:10;15586:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15586:34:0;;;;;;;;;;;;:38;:96::i;13057:150::-;13128:4;13141:42;3886:10;13165:9;13176:6;13141:9;:42::i;10984:103::-;10301:6;;-1:-1:-1;;;;;10301:6:0;3886:10;10301:22;10293:67;;;;-1:-1:-1;;;10293:67:0;;3151:2:1;10293:67:0;;;3133:21:1;;;3170:18;;;3163:30;3229:34;3209:18;;;3202:62;3281:18;;10293:67:0;2949:356:1;10293:67:0;11053:28:::1;11072:8;11053:18;:28::i;:::-;10984:103:::0;:::o;17134:320::-;-1:-1:-1;;;;;17224:19:0;;17216:68;;;;-1:-1:-1;;;17216:68:0;;3512:2:1;17216:68:0;;;3494:21:1;3551:2;3531:18;;;3524:30;3590:34;3570:18;;;3563:62;-1:-1:-1;;;3641:18:1;;;3634:34;3685:19;;17216:68:0;3310:400:1;17216:68:0;-1:-1:-1;;;;;17299:21:0;;17291:68;;;;-1:-1:-1;;;17291:68:0;;3917:2:1;17291:68:0;;;3899:21:1;3956:2;3936:18;;;3929:30;3995:34;3975:18;;;3968:62;-1:-1:-1;;;4046:18:1;;;4039:32;4088:19;;17291:68:0;3715:398:1;17291:68:0;-1:-1:-1;;;;;17368:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17416:32;;1342:25:1;;;17416:32:0;;1315:18:1;17416:32:0;;;;;;;;17134:320;;;:::o;16168:283::-;-1:-1:-1;;;;;16274:18:0;;16266:68;;;;-1:-1:-1;;;16266:68:0;;4320:2:1;16266:68:0;;;4302:21:1;4359:2;4339:18;;;4332:30;4398:34;4378:18;;;4371:62;-1:-1:-1;;;4449:18:1;;;4442:35;4494:19;;16266:68:0;4118:401:1;16266:68:0;16358:1;16349:6;:10;16341:64;;;;-1:-1:-1;;;16341:64:0;;4726:2:1;16341:64:0;;;4708:21:1;4765:2;4745:18;;;4738:30;4804:34;4784:18;;;4777:62;-1:-1:-1;;;4855:18:1;;;4848:39;4904:19;;16341:64:0;4524:405:1;16341:64:0;16412:33;16430:4;16435:2;16438:6;16412:17;:33::i;:::-;16168:283;;;:::o;5771:178::-;5857:7;5889:12;5881:6;;;;5873:29;;;;-1:-1:-1;;;5873:29:0;;;;;;;;:::i;:::-;-1:-1:-1;5909:9:0;5921:5;5925:1;5921;:5;:::i;:::-;5909:17;5771:178;-1:-1:-1;;;;;5771:178:0:o;4944:167::-;5002:7;;5030:5;5034:1;5030;:5;:::i;:::-;5018:17;;5055:1;5050;:6;;5042:46;;;;-1:-1:-1;;;5042:46:0;;5531:2:1;5042:46:0;;;5513:21:1;5570:2;5550:18;;;5543:30;5609:29;5589:18;;;5582:57;5656:18;;5042:46:0;5329:351:1;5042:46:0;5104:1;4944:167;-1:-1:-1;;;4944:167:0:o;11185:215::-;-1:-1:-1;;;;;11255:22:0;;11247:73;;;;-1:-1:-1;;;11247:73:0;;5887:2:1;11247:73:0;;;5869:21:1;5926:2;5906:18;;;5899:30;5965:34;5945:18;;;5938:62;-1:-1:-1;;;6016:18:1;;;6009:36;6062:19;;11247:73:0;5685:402:1;11247:73:0;11353:6;;;11332:38;;-1:-1:-1;;;;;11332:38:0;;;;11353:6;;;11332:38;;;11377:6;:17;;-1:-1:-1;;;;;;11377:17:0;-1:-1:-1;;;;;11377:17:0;;;;;;;;;;11185:215::o;16459:261::-;-1:-1:-1;;;;;16573:17:0;;;;;;:9;:17;;;;;;:30;;16595:7;16573:21;:30::i;:::-;-1:-1:-1;;;;;16553:17:0;;;;;;;:9;:17;;;;;;:50;;;;16633:20;;;;;;;:33;;16658:7;16633:24;:33::i;:::-;-1:-1:-1;;;;;16610:20:0;;;;;;;:9;:20;;;;;;;:56;;;;16678:36;;;;;;;;;;16706:7;1342:25:1;;1330:2;1315:18;;1196:177;5366:130:0;5424:7;5447:43;5451:1;5454;5447:43;;;;;;;;;;;;;;;;;:3;:43::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:186::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;2051:29;2070:9;2051:29;:::i;2299:260::-;2367:6;2375;2428:2;2416:9;2407:7;2403:23;2399:32;2396:52;;;2444:1;2441;2434:12;2396:52;2467:29;2486:9;2467:29;:::i;:::-;2457:39;;2515:38;2549:2;2538:9;2534:18;2515:38;:::i;:::-;2505:48;;2299:260;;;;;:::o;2564:380::-;2643:1;2639:12;;;;2686;;;2707:61;;2761:4;2753:6;2749:17;2739:27;;2707:61;2814:2;2806:6;2803:14;2783:18;2780:38;2777:161;;2860:10;2855:3;2851:20;2848:1;2841:31;2895:4;2892:1;2885:15;2923:4;2920:1;2913:15;2777:161;;2564:380;;;:::o;4934:127::-;4995:10;4990:3;4986:20;4983:1;4976:31;5026:4;5023:1;5016:15;5050:4;5047:1;5040:15;5066:128;5133:9;;;5154:11;;;5151:37;;;5168:18;;:::i;5199:125::-;5264:9;;;5285:10;;;5282:36;;;5298:18;;:::i

Swarm Source

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