ETH Price: $2,361.27 (+0.89%)

Token

99 Bitcoins (99BTC)
 

Overview

Max Total Supply

56,000,000,000 99BTC

Holders

2,765

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
788,862.6058550484 99BTC

Value
$0.00
0x5fa5dd0f268fc18d2f27a8a757367ec23bda105a
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:
Token

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : Token.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.9;

/**
 * @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 Token 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;
  uint256 public constant presaleReserve = 14_850_000_000 * (10 ** _decimals);
  uint256 public constant stakingReserve = 13_860_000_000 * (10 ** _decimals);
  uint256 public constant projectFundsReserve = 22_770_000_000 * (10 ** _decimals);
  uint256 public constant communityRewardsReserve = 16_830_000_000 * (10 ** _decimals);
  uint256 public constant liquidityReserve = 7_920_000_000 * (10 ** _decimals);
  uint256 public constant marketingReserve = 22_770_000_000 * (10 ** _decimals);

  /**
   * @dev Contract constructor.
   */
  constructor() {
    _name = '99 Bitcoins';
    _symbol = '99BTC';
    _mint(0xd1602Bd81174C9FEC582a335047291036a9B1A51, presaleReserve);
    _mint(0x25c4FFBa937De48fEC0BEF305287E93Bf5867334, stakingReserve);
    _mint(0x51E3F8C9fA7636704E026A38B0FA57E419Fba5BC, projectFundsReserve);
    _mint(0x68e8e8EF239a4BCB4A9e6F562bF9220e64AC020F, communityRewardsReserve);
    _mint(0x5C00beFC4074d82fe08bf2F4f959FA06F7637bb0, liquidityReserve);
    _mint(0x0B94329195c3F55F53f228eB674b4360A9a530E8, marketingReserve);
  }

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "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":"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":"communityRewardsReserve","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":"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":"liquidityReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"presaleReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"projectFundsReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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"}]

60806040523480156200001157600080fd5b5062000032620000266200027e60201b60201c565b6200028660201b60201c565b6040518060400160405280600b81526020017f393920426974636f696e73000000000000000000000000000000000000000000815250600490805190602001906200007f9291906200049c565b506040518060400160405280600581526020017f393942544300000000000000000000000000000000000000000000000000000081525060059080519060200190620000cd9291906200049c565b506200011573d1602bd81174c9fec582a335047291036a9b1a516012600a620000f79190620006e6565b64037521048062000109919062000737565b6200034a60201b60201c565b6200015c7325c4ffba937de48fec0bef305287e93bf58673346012600a6200013e9190620006e6565b64033a1ed10062000150919062000737565b6200034a60201b60201c565b620001a37351e3f8c9fa7636704e026a38b0fa57e419fba5bc6012600a620001859190620006e6565b64054d32a08062000197919062000737565b6200034a60201b60201c565b620001ea7368e8e8ef239a4bcb4a9e6f562bf9220e64ac020f6012600a620001cc9190620006e6565b6403eb256b80620001de919062000737565b6200034a60201b60201c565b62000231735c00befc4074d82fe08bf2f4f959fa06f7637bb06012600a620002139190620006e6565b6401d8119c0062000225919062000737565b6200034a60201b60201c565b62000278730b94329195c3f55f53f228eb674b4360a9a530e86012600a6200025a9190620006e6565b64054d32a0806200026c919062000737565b6200034a60201b60201c565b6200090b565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620003bd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003b490620007f9565b60405180910390fd5b8060036000828254620003d191906200081b565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200042991906200081b565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000490919062000889565b60405180910390a35050565b828054620004aa90620008d5565b90600052602060002090601f016020900481019282620004ce57600085556200051a565b82601f10620004e957805160ff19168380011785556200051a565b828001600101855582156200051a579182015b8281111562000519578251825591602001919060010190620004fc565b5b5090506200052991906200052d565b5090565b5b80821115620005485760008160009055506001016200052e565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620005da57808604811115620005b257620005b16200054c565b5b6001851615620005c25780820291505b8081029050620005d2856200057b565b945062000592565b94509492505050565b600082620005f55760019050620006c8565b81620006055760009050620006c8565b81600181146200061e576002811462000629576200065f565b6001915050620006c8565b60ff8411156200063e576200063d6200054c565b5b8360020a9150848211156200065857620006576200054c565b5b50620006c8565b5060208310610133831016604e8410600b8410161715620006995782820a9050838111156200069357620006926200054c565b5b620006c8565b620006a8848484600162000588565b92509050818404811115620006c257620006c16200054c565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620006f382620006cf565b91506200070083620006d9565b92506200072f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620005e3565b905092915050565b60006200074482620006cf565b91506200075183620006cf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200078d576200078c6200054c565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620007e1601f8362000798565b9150620007ee82620007a9565b602082019050919050565b600060208201905081810360008301526200081481620007d2565b9050919050565b60006200082882620006cf565b91506200083583620006cf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200086d576200086c6200054c565b5b828201905092915050565b6200088381620006cf565b82525050565b6000602082019050620008a0600083018462000878565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620008ee57607f821691505b60208210811415620009055762000904620008a6565b5b50919050565b611f02806200091b6000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b8578063a457c2d71161007c578063a457c2d714610330578063a9059cbb14610360578063b61d43b114610390578063b753bfe9146103ae578063dd62ed3e146103cc578063f2fde38b146103fc57610137565b8063715018a6146102ae5780637e50c644146102b85780638da5cb5b146102d657806395d89b41146102f45780639f8810cd1461031257610137565b8063313ce567116100ff578063313ce567146101f657806339509351146102145780633e85713d1461024457806342966c681461026257806370a082311461027e57610137565b806306fdde031461013c578063095ea7b31461015a5780630c900e901461018a57806318160ddd146101a857806323b872dd146101c6575b600080fd5b610144610418565b60405161015191906112a5565b60405180910390f35b610174600480360381019061016f9190611360565b6104aa565b60405161018191906113bb565b60405180910390f35b6101926104c8565b60405161019f91906113e5565b60405180910390f35b6101b06104e9565b6040516101bd91906113e5565b60405180910390f35b6101e060048036038101906101db9190611400565b6104f3565b6040516101ed91906113bb565b60405180910390f35b6101fe6105eb565b60405161020b919061146f565b60405180910390f35b61022e60048036038101906102299190611360565b6105f4565b60405161023b91906113bb565b60405180910390f35b61024c6106a0565b60405161025991906113e5565b60405180910390f35b61027c6004803603810190610277919061148a565b6106c1565b005b610298600480360381019061029391906114b7565b6106d5565b6040516102a591906113e5565b60405180910390f35b6102b661071e565b005b6102c0610732565b6040516102cd91906113e5565b60405180910390f35b6102de610753565b6040516102eb91906114f3565b60405180910390f35b6102fc61077c565b60405161030991906112a5565b60405180910390f35b61031a61080e565b60405161032791906113e5565b60405180910390f35b61034a60048036038101906103459190611360565b61082f565b60405161035791906113bb565b60405180910390f35b61037a60048036038101906103759190611360565b61091a565b60405161038791906113bb565b60405180910390f35b610398610938565b6040516103a591906113e5565b60405180910390f35b6103b6610959565b6040516103c391906113e5565b60405180910390f35b6103e660048036038101906103e1919061150e565b61097a565b6040516103f391906113e5565b60405180910390f35b610416600480360381019061041191906114b7565b610a01565b005b6060600480546104279061157d565b80601f01602080910402602001604051908101604052809291908181526020018280546104539061157d565b80156104a05780601f10610475576101008083540402835291602001916104a0565b820191906000526020600020905b81548152906001019060200180831161048357829003601f168201915b5050505050905090565b60006104be6104b7610a85565b8484610a8d565b6001905092915050565b6012600a6104d69190611711565b6403752104806104e6919061175c565b81565b6000600354905090565b6000610500848484610c58565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061054b610a85565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156105cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c290611828565b60405180910390fd5b6105df856105d7610a85565b858403610a8d565b60019150509392505050565b60006012905090565b6000610696610601610a85565b84846002600061060f610a85565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106919190611848565b610a8d565b6001905092915050565b6012600a6106ae9190611711565b64054d32a0806106be919061175c565b81565b6106d26106cc610a85565b82610f09565b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107266110ca565b6107306000611148565b565b6012600a6107409190611711565b6403eb256b80610750919061175c565b81565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461078b9061157d565b80601f01602080910402602001604051908101604052809291908181526020018280546107b79061157d565b80156108045780601f106107d957610100808354040283529160200191610804565b820191906000526020600020905b8154815290600101906020018083116107e757829003601f168201915b5050505050905090565b6012600a61081c9190611711565b64054d32a08061082c919061175c565b81565b6000806002600061083e610a85565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156108fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f290611910565b60405180910390fd5b61090f610906610a85565b85858403610a8d565b600191505092915050565b600061092e610927610a85565b8484610c58565b6001905092915050565b6012600a6109469190611711565b64033a1ed100610956919061175c565b81565b6012600a6109679190611711565b6401d8119c00610977919061175c565b81565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a096110ca565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a70906119a2565b60405180910390fd5b610a8281611148565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af490611a34565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6490611ac6565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c4b91906113e5565b60405180910390a3505050565b60008111610c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9290611b32565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0290611bc4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7290611c56565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df990611ce8565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e979190611848565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610efb91906113e5565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7090611d7a565b60405180910390fd5b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611000576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff790611e0c565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546110589190611e2c565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110bd91906113e5565b60405180910390a3505050565b6110d2610a85565b73ffffffffffffffffffffffffffffffffffffffff166110f0610753565b73ffffffffffffffffffffffffffffffffffffffff1614611146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113d90611eac565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561124657808201518184015260208101905061122b565b83811115611255576000848401525b50505050565b6000601f19601f8301169050919050565b60006112778261120c565b6112818185611217565b9350611291818560208601611228565b61129a8161125b565b840191505092915050565b600060208201905081810360008301526112bf818461126c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112f7826112cc565b9050919050565b611307816112ec565b811461131257600080fd5b50565b600081359050611324816112fe565b92915050565b6000819050919050565b61133d8161132a565b811461134857600080fd5b50565b60008135905061135a81611334565b92915050565b60008060408385031215611377576113766112c7565b5b600061138585828601611315565b92505060206113968582860161134b565b9150509250929050565b60008115159050919050565b6113b5816113a0565b82525050565b60006020820190506113d060008301846113ac565b92915050565b6113df8161132a565b82525050565b60006020820190506113fa60008301846113d6565b92915050565b600080600060608486031215611419576114186112c7565b5b600061142786828701611315565b935050602061143886828701611315565b92505060406114498682870161134b565b9150509250925092565b600060ff82169050919050565b61146981611453565b82525050565b60006020820190506114846000830184611460565b92915050565b6000602082840312156114a05761149f6112c7565b5b60006114ae8482850161134b565b91505092915050565b6000602082840312156114cd576114cc6112c7565b5b60006114db84828501611315565b91505092915050565b6114ed816112ec565b82525050565b600060208201905061150860008301846114e4565b92915050565b60008060408385031215611525576115246112c7565b5b600061153385828601611315565b925050602061154485828601611315565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061159557607f821691505b602082108114156115a9576115a861154e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111561163557808604811115611611576116106115af565b5b60018516156116205780820291505b808102905061162e856115de565b94506115f5565b94509492505050565b60008261164e576001905061170a565b8161165c576000905061170a565b8160018114611672576002811461167c576116ab565b600191505061170a565b60ff84111561168e5761168d6115af565b5b8360020a9150848211156116a5576116a46115af565b5b5061170a565b5060208310610133831016604e8410600b84101617156116e05782820a9050838111156116db576116da6115af565b5b61170a565b6116ed84848460016115eb565b92509050818404811115611704576117036115af565b5b81810290505b9392505050565b600061171c8261132a565b915061172783611453565b92506117547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461163e565b905092915050565b60006117678261132a565b91506117728361132a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156117ab576117aa6115af565b5b828202905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611812602883611217565b915061181d826117b6565b604082019050919050565b6000602082019050818103600083015261184181611805565b9050919050565b60006118538261132a565b915061185e8361132a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611893576118926115af565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006118fa602583611217565b91506119058261189e565b604082019050919050565b60006020820190508181036000830152611929816118ed565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061198c602683611217565b915061199782611930565b604082019050919050565b600060208201905081810360008301526119bb8161197f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611a1e602483611217565b9150611a29826119c2565b604082019050919050565b60006020820190508181036000830152611a4d81611a11565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ab0602283611217565b9150611abb82611a54565b604082019050919050565b60006020820190508181036000830152611adf81611aa3565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74207a65726f0000000000600082015250565b6000611b1c601b83611217565b9150611b2782611ae6565b602082019050919050565b60006020820190508181036000830152611b4b81611b0f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611bae602583611217565b9150611bb982611b52565b604082019050919050565b60006020820190508181036000830152611bdd81611ba1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611c40602383611217565b9150611c4b82611be4565b604082019050919050565b60006020820190508181036000830152611c6f81611c33565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611cd2602683611217565b9150611cdd82611c76565b604082019050919050565b60006020820190508181036000830152611d0181611cc5565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d64602183611217565b9150611d6f82611d08565b604082019050919050565b60006020820190508181036000830152611d9381611d57565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611df6602283611217565b9150611e0182611d9a565b604082019050919050565b60006020820190508181036000830152611e2581611de9565b9050919050565b6000611e378261132a565b9150611e428361132a565b925082821015611e5557611e546115af565b5b828203905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611e96602083611217565b9150611ea182611e60565b602082019050919050565b60006020820190508181036000830152611ec581611e89565b905091905056fea26469706673582212202e674b40b57b2a085d3a368fce10eea0b5d74bde49a7443ee6af1c13beef81e664736f6c63430008090033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b8578063a457c2d71161007c578063a457c2d714610330578063a9059cbb14610360578063b61d43b114610390578063b753bfe9146103ae578063dd62ed3e146103cc578063f2fde38b146103fc57610137565b8063715018a6146102ae5780637e50c644146102b85780638da5cb5b146102d657806395d89b41146102f45780639f8810cd1461031257610137565b8063313ce567116100ff578063313ce567146101f657806339509351146102145780633e85713d1461024457806342966c681461026257806370a082311461027e57610137565b806306fdde031461013c578063095ea7b31461015a5780630c900e901461018a57806318160ddd146101a857806323b872dd146101c6575b600080fd5b610144610418565b60405161015191906112a5565b60405180910390f35b610174600480360381019061016f9190611360565b6104aa565b60405161018191906113bb565b60405180910390f35b6101926104c8565b60405161019f91906113e5565b60405180910390f35b6101b06104e9565b6040516101bd91906113e5565b60405180910390f35b6101e060048036038101906101db9190611400565b6104f3565b6040516101ed91906113bb565b60405180910390f35b6101fe6105eb565b60405161020b919061146f565b60405180910390f35b61022e60048036038101906102299190611360565b6105f4565b60405161023b91906113bb565b60405180910390f35b61024c6106a0565b60405161025991906113e5565b60405180910390f35b61027c6004803603810190610277919061148a565b6106c1565b005b610298600480360381019061029391906114b7565b6106d5565b6040516102a591906113e5565b60405180910390f35b6102b661071e565b005b6102c0610732565b6040516102cd91906113e5565b60405180910390f35b6102de610753565b6040516102eb91906114f3565b60405180910390f35b6102fc61077c565b60405161030991906112a5565b60405180910390f35b61031a61080e565b60405161032791906113e5565b60405180910390f35b61034a60048036038101906103459190611360565b61082f565b60405161035791906113bb565b60405180910390f35b61037a60048036038101906103759190611360565b61091a565b60405161038791906113bb565b60405180910390f35b610398610938565b6040516103a591906113e5565b60405180910390f35b6103b6610959565b6040516103c391906113e5565b60405180910390f35b6103e660048036038101906103e1919061150e565b61097a565b6040516103f391906113e5565b60405180910390f35b610416600480360381019061041191906114b7565b610a01565b005b6060600480546104279061157d565b80601f01602080910402602001604051908101604052809291908181526020018280546104539061157d565b80156104a05780601f10610475576101008083540402835291602001916104a0565b820191906000526020600020905b81548152906001019060200180831161048357829003601f168201915b5050505050905090565b60006104be6104b7610a85565b8484610a8d565b6001905092915050565b6012600a6104d69190611711565b6403752104806104e6919061175c565b81565b6000600354905090565b6000610500848484610c58565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061054b610a85565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156105cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c290611828565b60405180910390fd5b6105df856105d7610a85565b858403610a8d565b60019150509392505050565b60006012905090565b6000610696610601610a85565b84846002600061060f610a85565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106919190611848565b610a8d565b6001905092915050565b6012600a6106ae9190611711565b64054d32a0806106be919061175c565b81565b6106d26106cc610a85565b82610f09565b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107266110ca565b6107306000611148565b565b6012600a6107409190611711565b6403eb256b80610750919061175c565b81565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461078b9061157d565b80601f01602080910402602001604051908101604052809291908181526020018280546107b79061157d565b80156108045780601f106107d957610100808354040283529160200191610804565b820191906000526020600020905b8154815290600101906020018083116107e757829003601f168201915b5050505050905090565b6012600a61081c9190611711565b64054d32a08061082c919061175c565b81565b6000806002600061083e610a85565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156108fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f290611910565b60405180910390fd5b61090f610906610a85565b85858403610a8d565b600191505092915050565b600061092e610927610a85565b8484610c58565b6001905092915050565b6012600a6109469190611711565b64033a1ed100610956919061175c565b81565b6012600a6109679190611711565b6401d8119c00610977919061175c565b81565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a096110ca565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a70906119a2565b60405180910390fd5b610a8281611148565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af490611a34565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6490611ac6565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c4b91906113e5565b60405180910390a3505050565b60008111610c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9290611b32565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0290611bc4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7290611c56565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df990611ce8565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e979190611848565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610efb91906113e5565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7090611d7a565b60405180910390fd5b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611000576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff790611e0c565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546110589190611e2c565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110bd91906113e5565b60405180910390a3505050565b6110d2610a85565b73ffffffffffffffffffffffffffffffffffffffff166110f0610753565b73ffffffffffffffffffffffffffffffffffffffff1614611146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113d90611eac565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561124657808201518184015260208101905061122b565b83811115611255576000848401525b50505050565b6000601f19601f8301169050919050565b60006112778261120c565b6112818185611217565b9350611291818560208601611228565b61129a8161125b565b840191505092915050565b600060208201905081810360008301526112bf818461126c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112f7826112cc565b9050919050565b611307816112ec565b811461131257600080fd5b50565b600081359050611324816112fe565b92915050565b6000819050919050565b61133d8161132a565b811461134857600080fd5b50565b60008135905061135a81611334565b92915050565b60008060408385031215611377576113766112c7565b5b600061138585828601611315565b92505060206113968582860161134b565b9150509250929050565b60008115159050919050565b6113b5816113a0565b82525050565b60006020820190506113d060008301846113ac565b92915050565b6113df8161132a565b82525050565b60006020820190506113fa60008301846113d6565b92915050565b600080600060608486031215611419576114186112c7565b5b600061142786828701611315565b935050602061143886828701611315565b92505060406114498682870161134b565b9150509250925092565b600060ff82169050919050565b61146981611453565b82525050565b60006020820190506114846000830184611460565b92915050565b6000602082840312156114a05761149f6112c7565b5b60006114ae8482850161134b565b91505092915050565b6000602082840312156114cd576114cc6112c7565b5b60006114db84828501611315565b91505092915050565b6114ed816112ec565b82525050565b600060208201905061150860008301846114e4565b92915050565b60008060408385031215611525576115246112c7565b5b600061153385828601611315565b925050602061154485828601611315565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061159557607f821691505b602082108114156115a9576115a861154e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111561163557808604811115611611576116106115af565b5b60018516156116205780820291505b808102905061162e856115de565b94506115f5565b94509492505050565b60008261164e576001905061170a565b8161165c576000905061170a565b8160018114611672576002811461167c576116ab565b600191505061170a565b60ff84111561168e5761168d6115af565b5b8360020a9150848211156116a5576116a46115af565b5b5061170a565b5060208310610133831016604e8410600b84101617156116e05782820a9050838111156116db576116da6115af565b5b61170a565b6116ed84848460016115eb565b92509050818404811115611704576117036115af565b5b81810290505b9392505050565b600061171c8261132a565b915061172783611453565b92506117547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461163e565b905092915050565b60006117678261132a565b91506117728361132a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156117ab576117aa6115af565b5b828202905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611812602883611217565b915061181d826117b6565b604082019050919050565b6000602082019050818103600083015261184181611805565b9050919050565b60006118538261132a565b915061185e8361132a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611893576118926115af565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006118fa602583611217565b91506119058261189e565b604082019050919050565b60006020820190508181036000830152611929816118ed565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061198c602683611217565b915061199782611930565b604082019050919050565b600060208201905081810360008301526119bb8161197f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611a1e602483611217565b9150611a29826119c2565b604082019050919050565b60006020820190508181036000830152611a4d81611a11565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ab0602283611217565b9150611abb82611a54565b604082019050919050565b60006020820190508181036000830152611adf81611aa3565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74207a65726f0000000000600082015250565b6000611b1c601b83611217565b9150611b2782611ae6565b602082019050919050565b60006020820190508181036000830152611b4b81611b0f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611bae602583611217565b9150611bb982611b52565b604082019050919050565b60006020820190508181036000830152611bdd81611ba1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611c40602383611217565b9150611c4b82611be4565b604082019050919050565b60006020820190508181036000830152611c6f81611c33565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611cd2602683611217565b9150611cdd82611c76565b604082019050919050565b60006020820190508181036000830152611d0181611cc5565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d64602183611217565b9150611d6f82611d08565b604082019050919050565b60006020820190508181036000830152611d9381611d57565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611df6602283611217565b9150611e0182611d9a565b604082019050919050565b60006020820190508181036000830152611e2581611de9565b9050919050565b6000611e378261132a565b9150611e428361132a565b925082821015611e5557611e546115af565b5b828203905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611e96602083611217565b9150611ea182611e60565b602082019050919050565b60006020820190508181036000830152611ec581611e89565b905091905056fea26469706673582212202e674b40b57b2a085d3a368fce10eea0b5d74bde49a7443ee6af1c13beef81e664736f6c63430008090033

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.