ETH Price: $1,977.98 (-5.08%)
Gas: 0.03 Gwei

Token

Astrochimp (CHIMP)
 

Overview

Max Total Supply

1,000,000,000 CHIMP

Holders

2,173

Transfers

-
1 (0%)

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
Astrochimp

Compiler Version
v0.8.27+commit.40a35a09

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2025-08-07
*/

/*
THE FIRST WARRIOR AMONG THE STARS - ASTROCHIMP

Website : https://astrochimp.vip
Telegram : https://t.me/Astrochimp_Official
X : https://x.com/Astrochimp_COIN
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.27;

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

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

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

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

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

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

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

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

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

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

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

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
  function _msgSender() internal view virtual returns (address) {
    return msg.sender;
  }

  function _msgData() internal view virtual returns (bytes calldata) {
    return msg.data;
  }
}

/**
 * @dev 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. Can only be called by the current owner.
   *
   * NOTE: Renouncing ownership will leave the contract without an owner,
   * thereby disabling 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);
  }
}

contract Astrochimp is Context, IERC20Metadata, Ownable {
  mapping(address => uint256) private _balances;

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

  uint256 private _totalSupply;

  string private _name;
  string private _symbol;
  uint8 private constant _decimals = 18;

  /**
   * @dev Contract constructor.
   */
  constructor() {
    _name = unicode"Astrochimp";
    _symbol = unicode"CHIMP";
    _mint(owner(), 1000000000 * (10 ** _decimals));
  }

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

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

  /**
   * @dev Returns the number of decimals used for token display.
   * @return The number of decimals.
   */
  function decimals() public view virtual override returns (uint8) {
    return _decimals;
  }

  /**
   * @dev Returns the total supply of the token.
   * @return The total supply.
   */
  function totalSupply() public view virtual override returns (uint256) {
    return _totalSupply;
  }

  /**
   * @dev Returns the balance of the specified account.
   * @param account The address to check the balance for.
   * @return The balance of the account.
   */
  function balanceOf(address account) public view virtual override returns (uint256) {
    return _balances[account];
  }

  /**
   * @dev Transfers tokens from the caller to a specified recipient.
   * @param recipient The address to transfer tokens to.
   * @param amount The amount of tokens to transfer.
   * @return A boolean value indicating whether the transfer was successful.
   */
  function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
    _transfer(_msgSender(), recipient, amount);
    return true;
  }

  /**
   * @dev Returns the amount of tokens that the spender is allowed to spend on behalf of the owner.
   * @param from The address that approves the spending.
   * @param to The address that is allowed to spend.
   * @return The remaining allowance for the spender.
   */
  function allowance(address from, address to) public view virtual override returns (uint256) {
    return _allowances[from][to];
  }

  /**
   * @dev Approves the specified address to spend the specified amount of tokens on behalf of the caller.
   * @param to The address to approve the spending for.
   * @param amount The amount of tokens to approve.
   * @return A boolean value indicating whether the approval was successful.
   */
  function approve(address to, uint256 amount) public virtual override returns (bool) {
    _approve(_msgSender(), to, amount);
    return true;
  }

  /**
   * @dev Transfers tokens from one address to another.
   * @param sender The address to transfer tokens from.
   * @param recipient The address to transfer tokens to.
   * @param amount The amount of tokens to transfer.
   * @return A boolean value indicating whether the transfer was successful.
   */
  function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
    _transfer(sender, recipient, amount);

    uint256 currentAllowance = _allowances[sender][_msgSender()];
    require(currentAllowance >= amount, 'ERC20: transfer amount exceeds allowance');
    unchecked {
      _approve(sender, _msgSender(), currentAllowance - amount);
    }

    return true;
  }

  /**
   * @dev Increases the allowance of the specified address to spend tokens on behalf of the caller.
   * @param to The address to increase the allowance for.
   * @param addedValue The amount of tokens to increase the allowance by.
   * @return A boolean value indicating whether the increase was successful.
   */
  function increaseAllowance(address to, uint256 addedValue) public virtual returns (bool) {
    _approve(_msgSender(), to, _allowances[_msgSender()][to] + addedValue);
    return true;
  }

  /**
   * @dev Decreases the allowance granted by the owner of the tokens to `to` account.
   * @param to The account allowed to spend the tokens.
   * @param subtractedValue The amount of tokens to decrease the allowance by.
   * @return A boolean value indicating whether the operation succeeded.
   */
  function decreaseAllowance(address to, uint256 subtractedValue) public virtual returns (bool) {
    uint256 currentAllowance = _allowances[_msgSender()][to];
    require(currentAllowance >= subtractedValue, 'ERC20: decreased allowance below zero');
    unchecked {
      _approve(_msgSender(), to, currentAllowance - subtractedValue);
    }

    return true;
  }

  /**
   * @dev Transfers `amount` tokens from `sender` to `recipient`.
   * @param sender The account to transfer tokens from.
   * @param recipient The account to transfer tokens to.
   * @param amount The amount of tokens to transfer.
   */
  function _transfer(address sender, address recipient, uint256 amount) internal virtual {
    require(amount > 0, 'ERC20: transfer amount zero');
    require(sender != address(0), 'ERC20: transfer from the zero address');
    require(recipient != address(0), 'ERC20: transfer to the zero address');

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

    emit Transfer(sender, recipient, amount);
  }

  /**
   * @dev Creates `amount` tokens and assigns them to `account`.
   * @param account The account to assign the newly created tokens to.
   * @param amount The amount of tokens to create.
   */
  function _mint(address account, uint256 amount) internal virtual {
    require(account != address(0), 'ERC20: mint to the zero address');

    _totalSupply += amount;
    _balances[account] += amount;
    emit Transfer(address(0), account, amount);
  }

  /**
   * @dev Destroys `amount` tokens from `account`, reducing the total supply.
   * @param account The account to burn tokens from.
   * @param amount The amount of tokens to burn.
   */
  function _burn(address account, uint256 amount) internal virtual {
    require(account != address(0), 'ERC20: burn from the zero address');

    uint256 accountBalance = _balances[account];
    require(accountBalance >= amount, 'ERC20: burn amount exceeds balance');
    unchecked {
      _balances[account] = accountBalance - amount;
    }
    _totalSupply -= amount;

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

  /**
   * @dev Destroys `amount` tokens from the caller's account, reducing the total supply.
   * @param amount The amount of tokens to burn.
   */
  function burn(uint256 amount) external {
    _burn(_msgSender(), amount);
  }

  /**
   * @dev Sets `amount` as the allowance of `to` over the caller's tokens.
   * @param from The account granting the allowance.
   * @param to The account allowed to spend the tokens.
   * @param amount The amount of tokens to allow.
   */
  function _approve(address from, address to, uint256 amount) internal virtual {
    require(from != address(0), 'ERC20: approve from the zero address');
    require(to != address(0), 'ERC20: approve to the zero address');

    _allowances[from][to] = amount;
    emit Approval(from, to, amount);
  }
}

Contract Security Audit

Contract ABI

API
[{"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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","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":"to","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","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"}]

608060405234801561000f575f5ffd5b50610019336100a9565b60408051808201909152600a8152690417374726f6368696d760b41b60208201526004906100479082610270565b506040805180820190915260058082526404348494d560dc1b6020830152906100709082610270565b506100a46100855f546001600160a01b031690565b6100916012600a610423565b61009f90633b9aca00610438565b6100f8565b610462565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166101525760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060035f828254610163919061044f565b90915550506001600160a01b0382165f908152600160205260408120805483929061018f90849061044f565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061020057607f821691505b60208210810361021e57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561026b57805f5260205f20601f840160051c810160208510156102495750805b601f840160051c820191505b81811015610268575f8155600101610255565b50505b505050565b81516001600160401b03811115610289576102896101d8565b61029d8161029784546101ec565b84610224565b6020601f8211600181146102cf575f83156102b85750848201515b5f19600385901b1c1916600184901b178455610268565b5f84815260208120601f198516915b828110156102fe57878501518255602094850194600190920191016102de565b508482101561031b57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b6001815b60018411156103795780850481111561035d5761035d61032a565b600184161561036b57908102905b60019390931c928002610342565b935093915050565b5f8261038f5750600161041d565b8161039b57505f61041d565b81600181146103b157600281146103bb576103d7565b600191505061041d565b60ff8411156103cc576103cc61032a565b50506001821b61041d565b5060208310610133831016604e8410600b84101617156103fa575081810a61041d565b6104065f19848461033e565b805f19048211156104195761041961032a565b0290505b92915050565b5f61043160ff841683610381565b9392505050565b808202811582820484141761041d5761041d61032a565b8082018082111561041d5761041d61032a565b610c188061046f5f395ff3fe608060405234801561000f575f5ffd5b50600436106100f0575f3560e01c806370a0823111610093578063a457c2d711610063578063a457c2d7146101e3578063a9059cbb146101f6578063dd62ed3e14610209578063f2fde38b14610241575f5ffd5b806370a0823114610191578063715018a6146101b95780638da5cb5b146101c157806395d89b41146101db575f5ffd5b806323b872dd116100ce57806323b872dd14610147578063313ce5671461015a578063395093511461016957806342966c681461017c575f5ffd5b806306fdde03146100f4578063095ea7b31461011257806318160ddd14610135575b5f5ffd5b6100fc610254565b6040516101099190610a56565b60405180910390f35b610125610120366004610aa6565b6102e4565b6040519015158152602001610109565b6003545b604051908152602001610109565b610125610155366004610ace565b6102fa565b60405160128152602001610109565b610125610177366004610aa6565b6103a7565b61018f61018a366004610b08565b6103e2565b005b61013961019f366004610b1f565b6001600160a01b03165f9081526001602052604090205490565b61018f6103ef565b5f546040516001600160a01b039091168152602001610109565b6100fc610402565b6101256101f1366004610aa6565b610411565b610125610204366004610aa6565b6104a9565b610139610217366004610b3f565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b61018f61024f366004610b1f565b6104b5565b60606004805461026390610b70565b80601f016020809104026020016040519081016040528092919081815260200182805461028f90610b70565b80156102da5780601f106102b1576101008083540402835291602001916102da565b820191905f5260205f20905b8154815290600101906020018083116102bd57829003601f168201915b5050505050905090565b5f6102f033848461052b565b5060015b92915050565b5f61030684848461064f565b6001600160a01b0384165f9081526002602090815260408083203384529091529020548281101561038f5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61039c853385840361052b565b506001949350505050565b335f8181526002602090815260408083206001600160a01b038716845290915281205490916102f09185906103dd908690610bbc565b61052b565b6103ec338261086b565b50565b6103f76109ae565b6104005f610a07565b565b60606005805461026390610b70565b335f9081526002602090815260408083206001600160a01b0386168452909152812054828110156104925760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610386565b61049f338585840361052b565b5060019392505050565b5f6102f033848461064f565b6104bd6109ae565b6001600160a01b0381166105225760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610386565b6103ec81610a07565b6001600160a01b03831661058d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610386565b6001600160a01b0382166105ee5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610386565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b5f811161069e5760405162461bcd60e51b815260206004820152601b60248201527f45524332303a207472616e7366657220616d6f756e74207a65726f00000000006044820152606401610386565b6001600160a01b0383166107025760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610386565b6001600160a01b0382166107645760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610386565b6001600160a01b0383165f90815260016020526040902054818110156107db5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610386565b6001600160a01b038085165f90815260016020526040808220858503905591851681529081208054849290610811908490610bbc565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161085d91815260200190565b60405180910390a350505050565b6001600160a01b0382166108cb5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610386565b6001600160a01b0382165f908152600160205260409020548181101561093e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610386565b6001600160a01b0383165f90815260016020526040812083830390556003805484929061096c908490610bcf565b90915550506040518281525f906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610642565b5f546001600160a01b031633146104005760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610386565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610aa1575f5ffd5b919050565b5f5f60408385031215610ab7575f5ffd5b610ac083610a8b565b946020939093013593505050565b5f5f5f60608486031215610ae0575f5ffd5b610ae984610a8b565b9250610af760208501610a8b565b929592945050506040919091013590565b5f60208284031215610b18575f5ffd5b5035919050565b5f60208284031215610b2f575f5ffd5b610b3882610a8b565b9392505050565b5f5f60408385031215610b50575f5ffd5b610b5983610a8b565b9150610b6760208401610a8b565b90509250929050565b600181811c90821680610b8457607f821691505b602082108103610ba257634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156102f4576102f4610ba8565b818103818111156102f4576102f4610ba856fea2646970667358221220e75ad732bd9fed8c1a62d4a1176bd85ee450ceea49766b9aa93af33afd68f16064736f6c634300081b0033

Deployed Bytecode

0x608060405234801561000f575f5ffd5b50600436106100f0575f3560e01c806370a0823111610093578063a457c2d711610063578063a457c2d7146101e3578063a9059cbb146101f6578063dd62ed3e14610209578063f2fde38b14610241575f5ffd5b806370a0823114610191578063715018a6146101b95780638da5cb5b146101c157806395d89b41146101db575f5ffd5b806323b872dd116100ce57806323b872dd14610147578063313ce5671461015a578063395093511461016957806342966c681461017c575f5ffd5b806306fdde03146100f4578063095ea7b31461011257806318160ddd14610135575b5f5ffd5b6100fc610254565b6040516101099190610a56565b60405180910390f35b610125610120366004610aa6565b6102e4565b6040519015158152602001610109565b6003545b604051908152602001610109565b610125610155366004610ace565b6102fa565b60405160128152602001610109565b610125610177366004610aa6565b6103a7565b61018f61018a366004610b08565b6103e2565b005b61013961019f366004610b1f565b6001600160a01b03165f9081526001602052604090205490565b61018f6103ef565b5f546040516001600160a01b039091168152602001610109565b6100fc610402565b6101256101f1366004610aa6565b610411565b610125610204366004610aa6565b6104a9565b610139610217366004610b3f565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b61018f61024f366004610b1f565b6104b5565b60606004805461026390610b70565b80601f016020809104026020016040519081016040528092919081815260200182805461028f90610b70565b80156102da5780601f106102b1576101008083540402835291602001916102da565b820191905f5260205f20905b8154815290600101906020018083116102bd57829003601f168201915b5050505050905090565b5f6102f033848461052b565b5060015b92915050565b5f61030684848461064f565b6001600160a01b0384165f9081526002602090815260408083203384529091529020548281101561038f5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61039c853385840361052b565b506001949350505050565b335f8181526002602090815260408083206001600160a01b038716845290915281205490916102f09185906103dd908690610bbc565b61052b565b6103ec338261086b565b50565b6103f76109ae565b6104005f610a07565b565b60606005805461026390610b70565b335f9081526002602090815260408083206001600160a01b0386168452909152812054828110156104925760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610386565b61049f338585840361052b565b5060019392505050565b5f6102f033848461064f565b6104bd6109ae565b6001600160a01b0381166105225760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610386565b6103ec81610a07565b6001600160a01b03831661058d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610386565b6001600160a01b0382166105ee5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610386565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b5f811161069e5760405162461bcd60e51b815260206004820152601b60248201527f45524332303a207472616e7366657220616d6f756e74207a65726f00000000006044820152606401610386565b6001600160a01b0383166107025760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610386565b6001600160a01b0382166107645760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610386565b6001600160a01b0383165f90815260016020526040902054818110156107db5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610386565b6001600160a01b038085165f90815260016020526040808220858503905591851681529081208054849290610811908490610bbc565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161085d91815260200190565b60405180910390a350505050565b6001600160a01b0382166108cb5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610386565b6001600160a01b0382165f908152600160205260409020548181101561093e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610386565b6001600160a01b0383165f90815260016020526040812083830390556003805484929061096c908490610bcf565b90915550506040518281525f906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610642565b5f546001600160a01b031633146104005760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610386565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610aa1575f5ffd5b919050565b5f5f60408385031215610ab7575f5ffd5b610ac083610a8b565b946020939093013593505050565b5f5f5f60608486031215610ae0575f5ffd5b610ae984610a8b565b9250610af760208501610a8b565b929592945050506040919091013590565b5f60208284031215610b18575f5ffd5b5035919050565b5f60208284031215610b2f575f5ffd5b610b3882610a8b565b9392505050565b5f5f60408385031215610b50575f5ffd5b610b5983610a8b565b9150610b6760208401610a8b565b90509250929050565b600181811c90821680610b8457607f821691505b602082108103610ba257634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156102f4576102f4610ba8565b818103818111156102f4576102f4610ba856fea2646970667358221220e75ad732bd9fed8c1a62d4a1176bd85ee450ceea49766b9aa93af33afd68f16064736f6c634300081b0033

Deployed Bytecode Sourcemap

6457:7669:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7059:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9256:149;;;;;;:::i;:::-;;:::i;:::-;;;1085:14:1;;1078:22;1060:41;;1048:2;1033:18;9256:149:0;920:187:1;7674:102:0;7758:12;;7674:102;;;1258:25:1;;;1246:2;1231:18;7674:102:0;1112:177:1;9729:426:0;;;;;;:::i;:::-;;:::i;7478:94::-;;;6766:2;1815:36:1;;1803:2;1788:18;7478:94:0;1673:184:1;10488:190:0;;;;;;:::i;:::-;;:::i;13482:79::-;;;;;;:::i;:::-;;:::i;:::-;;7954:121;;;;;;:::i;:::-;-1:-1:-1;;;;;8051:18:0;8028:7;8051:18;;;:9;:18;;;;;;;7954:121;5690:97;;;:::i;5085:81::-;5131:7;5154:6;5085:81;;-1:-1:-1;;;;;5154:6:0;;;2430:51:1;;2418:2;2403:18;5085:81:0;2284:203:1;7256:98:0;;;:::i;10996:370::-;;;;;;:::i;:::-;;:::i;8355:165::-;;;;;;:::i;:::-;;:::i;8808:133::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8914:17:0;;;8891:7;8914:17;;;:11;:17;;;;;;;;:21;;;;;;;;;;;;;8808:133;5932:191;;;;;;:::i;:::-;;:::i;7059:94::-;7113:13;7142:5;7135:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7059:94;:::o;9256:149::-;9334:4;9347:34;3928:10;9370:2;9374:6;9347:8;:34::i;:::-;-1:-1:-1;9395:4:0;9256:149;;;;;:::o;9729:426::-;9835:4;9848:36;9858:6;9866:9;9877:6;9848:9;:36::i;:::-;-1:-1:-1;;;;;9920:19:0;;9893:24;9920:19;;;:11;:19;;;;;;;;3928:10;9920:33;;;;;;;;9968:26;;;;9960:79;;;;-1:-1:-1;;;9960:79:0;;3344:2:1;9960:79:0;;;3326:21:1;3383:2;3363:18;;;3356:30;3422:34;3402:18;;;3395:62;-1:-1:-1;;;3473:18:1;;;3466:38;3521:19;;9960:79:0;;;;;;;;;10065:57;10074:6;3928:10;10115:6;10096:16;:25;10065:8;:57::i;:::-;-1:-1:-1;10145:4:0;;9729:426;-1:-1:-1;;;;9729:426:0:o;10488:190::-;3928:10;10571:4;10611:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10611:29:0;;;;;;;;;;10571:4;;10584:70;;10607:2;;10611:42;;10643:10;;10611:42;:::i;:::-;10584:8;:70::i;13482:79::-;13528:27;3928:10;13548:6;13528:5;:27::i;:::-;13482:79;:::o;5690:97::-;4985:13;:11;:13::i;:::-;5751:30:::1;5778:1;5751:18;:30::i;:::-;5690:97::o:0;7256:98::-;7312:13;7341:7;7334:14;;;;;:::i;10996:370::-;3928:10;11084:4;11124:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11124:29:0;;;;;;;;;;11168:35;;;;11160:85;;;;-1:-1:-1;;;11160:85:0;;4015:2:1;11160:85:0;;;3997:21:1;4054:2;4034:18;;;4027:30;4093:34;4073:18;;;4066:62;-1:-1:-1;;;4144:18:1;;;4137:35;4189:19;;11160:85:0;3813:401:1;11160:85:0;11271:62;3928:10;11294:2;11317:15;11298:16;:34;11271:8;:62::i;:::-;-1:-1:-1;11356:4:0;;10996:370;-1:-1:-1;;;10996:370:0:o;8355:165::-;8441:4;8454:42;3928:10;8478:9;8489:6;8454:9;:42::i;5932:191::-;4985:13;:11;:13::i;:::-;-1:-1:-1;;;;;6017:22:0;::::1;6009:73;;;::::0;-1:-1:-1;;;6009:73:0;;4421:2:1;6009:73:0::1;::::0;::::1;4403:21:1::0;4460:2;4440:18;;;4433:30;4499:34;4479:18;;;4472:62;-1:-1:-1;;;4550:18:1;;;4543:36;4596:19;;6009:73:0::1;4219:402:1::0;6009:73:0::1;6089:28;6108:8;6089:18;:28::i;13819:304::-:0;-1:-1:-1;;;;;13911:18:0;;13903:67;;;;-1:-1:-1;;;13903:67:0;;4828:2:1;13903:67:0;;;4810:21:1;4867:2;4847:18;;;4840:30;4906:34;4886:18;;;4879:62;-1:-1:-1;;;4957:18:1;;;4950:34;5001:19;;13903:67:0;4626:400:1;13903:67:0;-1:-1:-1;;;;;13985:16:0;;13977:63;;;;-1:-1:-1;;;13977:63:0;;5233:2:1;13977:63:0;;;5215:21:1;5272:2;5252:18;;;5245:30;5311:34;5291:18;;;5284:62;-1:-1:-1;;;5362:18:1;;;5355:32;5404:19;;13977:63:0;5031:398:1;13977:63:0;-1:-1:-1;;;;;14049:17:0;;;;;;;:11;:17;;;;;;;;:21;;;;;;;;;;;;;:30;;;14091:26;;1258:25:1;;;14091:26:0;;1231:18:1;14091:26:0;;;;;;;;13819:304;;;:::o;11622:597::-;11733:1;11724:6;:10;11716:50;;;;-1:-1:-1;;;11716:50:0;;5636:2:1;11716:50:0;;;5618:21:1;5675:2;5655:18;;;5648:30;5714:29;5694:18;;;5687:57;5761:18;;11716:50:0;5434:351:1;11716:50:0;-1:-1:-1;;;;;11781:20:0;;11773:70;;;;-1:-1:-1;;;11773:70:0;;5992:2:1;11773:70:0;;;5974:21:1;6031:2;6011:18;;;6004:30;6070:34;6050:18;;;6043:62;-1:-1:-1;;;6121:18:1;;;6114:35;6166:19;;11773:70:0;5790:401:1;11773:70:0;-1:-1:-1;;;;;11858:23:0;;11850:71;;;;-1:-1:-1;;;11850:71:0;;6398:2:1;11850:71:0;;;6380:21:1;6437:2;6417:18;;;6410:30;6476:34;6456:18;;;6449:62;-1:-1:-1;;;6527:18:1;;;6520:33;6570:19;;11850:71:0;6196:399:1;11850:71:0;-1:-1:-1;;;;;11954:17:0;;11930:21;11954:17;;;:9;:17;;;;;;11986:23;;;;11978:74;;;;-1:-1:-1;;;11978:74:0;;6802:2:1;11978:74:0;;;6784:21:1;6841:2;6821:18;;;6814:30;6880:34;6860:18;;;6853:62;-1:-1:-1;;;6931:18:1;;;6924:36;6977:19;;11978:74:0;6600:402:1;11978:74:0;-1:-1:-1;;;;;12078:17:0;;;;;;;:9;:17;;;;;;12098:22;;;12078:42;;12134:20;;;;;;;;:30;;12114:6;;12078:17;12134:30;;12114:6;;12134:30;:::i;:::-;;;;;;;;12195:9;-1:-1:-1;;;;;12178:35:0;12187:6;-1:-1:-1;;;;;12178:35:0;;12206:6;12178:35;;;;1258:25:1;;1246:2;1231:18;;1112:177;12178:35:0;;;;;;;;11709:510;11622:597;;;:::o;12890:432::-;-1:-1:-1;;;;;12970:21:0;;12962:67;;;;-1:-1:-1;;;12962:67:0;;7209:2:1;12962:67:0;;;7191:21:1;7248:2;7228:18;;;7221:30;7287:34;7267:18;;;7260:62;-1:-1:-1;;;7338:18:1;;;7331:31;7379:19;;12962:67:0;7007:397:1;12962:67:0;-1:-1:-1;;;;;13063:18:0;;13038:22;13063:18;;;:9;:18;;;;;;13096:24;;;;13088:71;;;;-1:-1:-1;;;13088:71:0;;7611:2:1;13088:71:0;;;7593:21:1;7650:2;7630:18;;;7623:30;7689:34;7669:18;;;7662:62;-1:-1:-1;;;7740:18:1;;;7733:32;7782:19;;13088:71:0;7409:398:1;13088:71:0;-1:-1:-1;;;;;13185:18:0;;;;;;:9;:18;;;;;13206:23;;;13185:44;;13243:12;:22;;13223:6;;13185:18;13243:22;;13223:6;;13243:22;:::i;:::-;;;;-1:-1:-1;;13279:37:0;;1258:25:1;;;13305:1:0;;-1:-1:-1;;;;;13279:37:0;;;;;1246:2:1;1231:18;13279:37:0;1112:177:1;5236:126:0;5131:7;5154:6;-1:-1:-1;;;;;5154:6:0;3928:10;5296:23;5288:68;;;;-1:-1:-1;;;5288:68:0;;8147:2:1;5288:68:0;;;8129:21:1;;;8166:18;;;8159:30;8225:34;8205:18;;;8198:62;8277:18;;5288:68:0;7945:356:1;6273:177:0;6343:16;6362:6;;-1:-1:-1;;;;;6375:17:0;;;-1:-1:-1;;;;;;6375:17:0;;;;;;6404:40;;6362:6;;;;;;;6404:40;;6343:16;6404:40;6336:114;6273:177;:::o;14:418:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:173::-;505:20;;-1:-1:-1;;;;;554:31:1;;544:42;;534:70;;600:1;597;590:12;534:70;437:173;;;:::o;615:300::-;683:6;691;744:2;732:9;723:7;719:23;715:32;712:52;;;760:1;757;750:12;712:52;783:29;802:9;783:29;:::i;:::-;773:39;881:2;866:18;;;;853:32;;-1:-1:-1;;;615:300:1:o;1294:374::-;1371:6;1379;1387;1440:2;1428:9;1419:7;1415:23;1411:32;1408:52;;;1456:1;1453;1446:12;1408:52;1479:29;1498:9;1479:29;:::i;:::-;1469:39;;1527:38;1561:2;1550:9;1546:18;1527:38;:::i;:::-;1294:374;;1517:48;;-1:-1:-1;;;1634:2:1;1619:18;;;;1606:32;;1294:374::o;1862:226::-;1921:6;1974:2;1962:9;1953:7;1949:23;1945:32;1942:52;;;1990:1;1987;1980:12;1942:52;-1:-1:-1;2035:23:1;;1862:226;-1:-1:-1;1862:226:1:o;2093:186::-;2152:6;2205:2;2193:9;2184:7;2180:23;2176:32;2173:52;;;2221:1;2218;2211:12;2173:52;2244:29;2263:9;2244:29;:::i;:::-;2234:39;2093:186;-1:-1:-1;;;2093:186:1:o;2492:260::-;2560:6;2568;2621:2;2609:9;2600:7;2596:23;2592:32;2589:52;;;2637:1;2634;2627:12;2589:52;2660:29;2679:9;2660:29;:::i;:::-;2650:39;;2708:38;2742:2;2731:9;2727:18;2708:38;:::i;:::-;2698:48;;2492:260;;;;;:::o;2757:380::-;2836:1;2832:12;;;;2879;;;2900:61;;2954:4;2946:6;2942:17;2932:27;;2900:61;3007:2;2999:6;2996:14;2976:18;2973:38;2970:161;;3053:10;3048:3;3044:20;3041:1;3034:31;3088:4;3085:1;3078:15;3116:4;3113:1;3106:15;2970:161;;2757:380;;;:::o;3551:127::-;3612:10;3607:3;3603:20;3600:1;3593:31;3643:4;3640:1;3633:15;3667:4;3664:1;3657:15;3683:125;3748:9;;;3769:10;;;3766:36;;;3782:18;;:::i;7812:128::-;7879:9;;;7900:11;;;7897:37;;;7914:18;;:::i

Swarm Source

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