ETH Price: $3,133.30 (-0.79%)
Gas: 14 Gwei

Token

Aeternity (AE)
 

Overview

Max Total Supply

273,685,830.164329920936121003 AE

Holders

21,261 (0.00%)

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Scalable smart contracts interfacing with real world data.

ICO Information

ICO Start Date : May 29, 2017   
Total Cap : $36,960,594
ICO Price  : $0.27 | 0.0014 ETH

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
AEToken

Compiler Version
v0.4.16+commit.d7661dd9

Optimization Enabled:
Yes with 0 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2017-09-03
*/

pragma solidity ^0.4.15;

// Abstract contract for the full ERC 20 Token standard
// https://github.com/ethereum/EIPs/issues/20
contract Token {
    /* This is a slight change to the ERC20 base standard.
    function totalSupply() constant returns (uint256 supply);
    is replaced with:
    uint256 public totalSupply;
    This automatically creates a getter function for the totalSupply.
    This is moved to the base contract since public getter functions are not
    currently recognised as an implementation of the matching abstract
    function by the compiler.
    */
    /// total amount of tokens
    uint256 public totalSupply;

    /// @param _owner The address from which the balance will be retrieved
    /// @return The balance
    function balanceOf(address _owner) constant returns (uint256 balance);

    /// @notice send `_value` token to `_to` from `msg.sender`
    /// @param _to The address of the recipient
    /// @param _value The amount of token to be transferred
    /// @return Whether the transfer was successful or not
    function transfer(address _to, uint256 _value) returns (bool success);

    /// @notice send `_value` token to `_to` from `_from` on the condition it is approved by `_from`
    /// @param _from The address of the sender
    /// @param _to The address of the recipient
    /// @param _value The amount of token to be transferred
    /// @return Whether the transfer was successful or not
    function transferFrom(address _from, address _to, uint256 _value) returns (bool success);

    /// @notice `msg.sender` approves `_addr` to spend `_value` tokens
    /// @param _spender The address of the account able to transfer the tokens
    /// @param _value The amount of wei to be approved for transfer
    /// @return Whether the approval was successful or not
    function approve(address _spender, uint256 _value) returns (bool success);

    /// @param _owner The address of the account owning tokens
    /// @param _spender The address of the account able to transfer the tokens
    /// @return Amount of remaining tokens allowed to spent
    function allowance(address _owner, address _spender) constant returns (uint256 remaining);

    event Transfer(address indexed _from, address indexed _to, uint256 _value);
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);
}

/*
You should inherit from StandardToken or, for a token like you would want to
deploy in something like Mist, see HumanStandardToken.sol.
(This implements ONLY the standard functions and NOTHING else.
If you deploy this, you won't have anything useful.)

Implements ERC 20 Token standard: https://github.com/ethereum/EIPs/issues/20
.*/

contract StandardToken is Token {

    function transfer(address _to, uint256 _value) returns (bool success) {
        //Default assumes totalSupply can't be over max (2^256 - 1).
        //If your token leaves out totalSupply and can issue more tokens as time goes on, you need to check if it doesn't wrap.
        //Replace the if with this one instead.
        //if (balances[msg.sender] >= _value && balances[_to] + _value > balances[_to]) {
				require(balances[msg.sender] >= _value && _value >= 0);
				balances[msg.sender] -= _value;
				balances[_to] += _value;
				Transfer(msg.sender, _to, _value);
				return true;
    }

    function transferFrom(address _from, address _to, uint256 _value) returns (bool success) {
        //same as above. Replace this line with the following if you want to protect against wrapping uints.
        //if (balances[_from] >= _value && allowed[_from][msg.sender] >= _value && balances[_to] + _value > balances[_to]) {
				require(balances[_from] >= _value && allowed[_from][msg.sender] >= _value && _value >= 0);
				balances[_to] += _value;
				balances[_from] -= _value;
				allowed[_from][msg.sender] -= _value;
				Transfer(_from, _to, _value);
				return true;
    }

    function balanceOf(address _owner) constant returns (uint256 balance) {
        return balances[_owner];
    }

    function approve(address _spender, uint256 _value) returns (bool success) {
        allowed[msg.sender][_spender] = _value;
        Approval(msg.sender, _spender, _value);
        return true;
    }

    function allowance(address _owner, address _spender) constant returns (uint256 remaining) {
      return allowed[_owner][_spender];
    }

    mapping (address => uint256) balances;
    mapping (address => mapping (address => uint256)) allowed;
}


contract HumanStandardToken is StandardToken {

    function () {
        //if ether is sent to this address, send it back.
        revert();
    }

    /* Public variables of the token */

    /*
    NOTE:
    The following variables are OPTIONAL vanities. One does not have to include them.
    They allow one to customise the token contract & in no way influences the core functionality.
    Some wallets/interfaces might not even bother to look at this information.
    */
    string public name;                   //fancy name: eg Simon Bucks
    uint8 public decimals;                //How many decimals to show. ie. There could 1000 base units with 3 decimals. Meaning 0.980 SBX = 980 base units. It's like comparing 1 wei to 1 ether.
    string public symbol;                 //An identifier: eg SBX
    string public version = 'H0.1';       //human 0.1 standard. Just an arbitrary versioning scheme.

    function HumanStandardToken(
        uint256 _initialAmount,
        string _tokenName,
        uint8 _decimalUnits,
        string _tokenSymbol
        ) {
        balances[msg.sender] = _initialAmount;               // Give the creator all initial tokens
        totalSupply = _initialAmount;                        // Update total supply
        name = _tokenName;                                   // Set the name for display purposes
        decimals = _decimalUnits;                            // Amount of decimals for display purposes
        symbol = _tokenSymbol;                               // Set the symbol for display purposes
    }

    /* Approves and then calls the receiving contract */
    function approveAndCall(address _spender, uint256 _value, bytes _extraData) returns (bool success) {
        allowed[msg.sender][_spender] = _value;
        Approval(msg.sender, _spender, _value);

        // call the receiveApproval function on the contract you want to be notified.
        // This crafts the function signature manually so one doesn't have to include
        // a contract in here just for this.
        // receiveApproval(address _from, uint256 _value, address _tokenContract, bytes _extraData)
        // it is assumed that when does this that the call *should* succeed, otherwise
        // one would use vanilla approve instead.
				require(_spender.call(bytes4(bytes32(sha3("receiveApproval(address,uint256,address,bytes)"))), msg.sender, _value, this, _extraData));
        return true;
    }
}

contract PrefilledToken is HumanStandardToken {

  bool public prefilled = false;
  address public creator = msg.sender;

  function prefill (address[] _addresses, uint[] _values)
    only_not_prefilled
    only_creator
  {
    uint total = totalSupply;

    for (uint i = 0; i < _addresses.length; i++) {
      address who = _addresses[i];
      uint val = _values[i];

      if (balances[who] != val) {
        total -= balances[who];

        balances[who] = val;
        total += val;
				Transfer(0x0, who, val);
      }
    }

    totalSupply = total;
  }

  function launch ()
    only_not_prefilled
    only_creator
  {
    prefilled = true;
  }

  /**
   * Following standard token methods needs to wait
   * for the Token to be prefilled first.
   */

  function transfer(address _to, uint256 _value) returns (bool success) {
		assert(prefilled);

    return super.transfer(_to, _value);
  }

  function transferFrom(address _from, address _to, uint256 _value) returns (bool success) {
		assert(prefilled);

    return super.transferFrom(_from, _to, _value);
  }

  function approve(address _spender, uint256 _value) returns (bool success) {
		assert(prefilled);

    return super.approve(_spender, _value);
  }

  modifier only_creator () {
		require(msg.sender == creator);
    _;
  }

  modifier only_not_prefilled () {
		assert(!prefilled);
    _;
  }
}

contract AEToken is PrefilledToken {

  // Date when the tokens won't be transferable anymore
  uint public transferableUntil;

  /**
   * HumanStandardToken(
      uint256  initialAmount,
      string   tokenName,
      uint8    decimalUnits,
      string   tokenSymbol
    )
   */
  function AEToken() HumanStandardToken(0, "Aeternity", 18, "AE") {
    uint nYears = 2;

    transferableUntil = now + (60 * 60 * 24 * 365 * nYears);
  }

  function transfer(address _to, uint256 _value) only_transferable returns (bool success) {
    return super.transfer(_to, _value);
  }

  function transferFrom(address _from, address _to, uint256 _value) only_transferable returns (bool success) {
    return super.transferFrom(_from, _to, _value);
  }

  modifier only_transferable () {
		assert(now <= transferableUntil);
    _;
  }
}

Contract Security Audit

Contract ABI

[{"constant":false,"inputs":[],"name":"launch","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"creator","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_addresses","type":"address[]"},{"name":"_values","type":"uint256[]"}],"name":"prefill","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"transferableUntil","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"prefilled","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":false,"stateMutability":"nonpayable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]

606060405260408051908101604052600481527f48302e31000000000000000000000000000000000000000000000000000000006020820152600690805161004b929160200190610156565b5060078054600160a860020a03191661010033600160a060020a031602179055341561007657600080fd5b5b6000806040805190810160405280600981526020017f41657465726e6974790000000000000000000000000000000000000000000000815250601260408051908101604052600281527f414500000000000000000000000000000000000000000000000000000000000060208201525b600160a060020a03331660009081526001602052604081208590558490556003838051610118929160200190610156565b506004805460ff191660ff8416179055600581805161013b929160200190610156565b505b505050426303c267000160085550600290505b506101f6565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061019757805160ff19168380011785556101c4565b828001600101855582156101c4579182015b828111156101c45782518255916020019190600101906101a9565b5b506101d19291506101d5565b5090565b6101f391905b808211156101d157600081556001016101db565b5090565b90565b610d8180620002066000396000f300606060405236156100ca5763ffffffff60e060020a60003504166301339c2181146100dd57806302d05d3f146100f257806306fdde0314610121578063095ea7b3146101ac57806318160ddd146101e257806323b872dd14610207578063313ce5671461024357806354fd4d501461026c57806370a08231146102f757806373d08bc51461032857806395d89b41146103b9578063a9059cbb14610444578063cae9ca511461047a578063d9a6cf81146104f3578063dd62ed3e14610518578063e77a912f1461054f575b34156100d557600080fd5b5b600080fd5b005b34156100e857600080fd5b6100db610576565b005b34156100fd57600080fd5b6101056105b5565b604051600160a060020a03909116815260200160405180910390f35b341561012c57600080fd5b6101346105c9565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101715780820151818401525b602001610158565b50505050905090810190601f16801561019e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101b757600080fd5b6101ce600160a060020a0360043516602435610667565b604051901515815260200160405180910390f35b34156101ed57600080fd5b6101f561068b565b60405190815260200160405180910390f35b341561021257600080fd5b6101ce600160a060020a0360043581169060243516604435610691565b604051901515815260200160405180910390f35b341561024e57600080fd5b6102566106b6565b60405160ff909116815260200160405180910390f35b341561027757600080fd5b6101346106bf565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101715780820151818401525b602001610158565b50505050905090810190601f16801561019e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561030257600080fd5b6101f5600160a060020a036004351661075d565b60405190815260200160405180910390f35b341561033357600080fd5b6100db60046024813581810190830135806020818102016040519081016040528093929190818152602001838360200280828437820191505050505050919080359060200190820180359060200190808060200260200160405190810160405280939291908181526020018383602002808284375094965061077c95505050505050565b005b34156103c457600080fd5b610134610878565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101715780820151818401525b602001610158565b50505050905090810190601f16801561019e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561044f57600080fd5b6101ce600160a060020a0360043516602435610916565b604051901515815260200160405180910390f35b341561048557600080fd5b6101ce60048035600160a060020a03169060248035919060649060443590810190830135806020601f8201819004810201604051908101604052818152929190602084018383808284375094965061093995505050505050565b604051901515815260200160405180910390f35b34156104fe57600080fd5b6101f5610abd565b60405190815260200160405180910390f35b341561052357600080fd5b6101f5600160a060020a0360043581169060243516610ac3565b60405190815260200160405180910390f35b341561055a57600080fd5b6101ce610af0565b604051901515815260200160405180910390f35b60075460ff161561058357fe5b60075433600160a060020a0390811661010090920416146105a357600080fd5b6007805460ff191660011790555b5b5b565b6007546101009004600160a060020a031681565b60038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561065f5780601f106106345761010080835404028352916020019161065f565b820191906000526020600020905b81548152906001019060200180831161064257829003601f168201915b505050505081565b60075460009060ff16151561067857fe5b6106828383610af9565b90505b92915050565b60005481565b6008546000904211156106a057fe5b6106ab848484610b54565b90505b5b9392505050565b60045460ff1681565b60068054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561065f5780601f106106345761010080835404028352916020019161065f565b820191906000526020600020905b81548152906001019060200180831161064257829003601f168201915b505050505081565b600160a060020a0381166000908152600160205260409020545b919050565b60075460009081908190819060ff161561079257fe5b60075433600160a060020a0390811661010090920416146107b257600080fd5b6000549350600092505b8551831015610868578583815181106107d157fe5b9060200190602002015191508483815181106107e957fe5b90602001906020020151600160a060020a038316600090815260016020526040902054909150811461085c57600160a060020a038216600081815260016020526040808220805490859055909603830195600080516020610d168339815191529084905190815260200160405180910390a35b5b6001909201916107bc565b60008490555b5b5b505050505050565b60058054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561065f5780601f106106345761010080835404028352916020019161065f565b820191906000526020600020905b81548152906001019060200180831161064257829003601f168201915b505050505081565b60085460009042111561092557fe5b6106828383610b7a565b90505b5b92915050565b600160a060020a0333811660008181526002602090815260408083209488168084529490915280822086905590929190600080516020610d368339815191529086905190815260200160405180910390a383600160a060020a03166040517f72656365697665417070726f76616c28616464726573732c75696e743235362c8152609060020a6d616464726573732c627974657329026020820152602e01604051809103902060e060020a9004338530866040518563ffffffff1660e060020a0281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a03168152602001828051906020019080838360005b83811015610a5d5780820151818401525b602001610a44565b50505050905090810190601f168015610a8a5780820380516001836020036101000a031916815260200191505b5094505050505060006040518083038160008761646e5a03f1925050501515610ab257600080fd5b5060015b9392505050565b60085481565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b60075460ff1681565b600160a060020a0333811660008181526002602090815260408083209487168084529490915280822085905590929190600080516020610d368339815191529085905190815260200160405180910390a35060015b92915050565b60075460009060ff161515610b6557fe5b6106ab848484610b9e565b90505b9392505050565b60075460009060ff161515610b8b57fe5b6106828383610c83565b90505b92915050565b600160a060020a038316600090815260016020526040812054829010801590610bee5750600160a060020a0380851660009081526002602090815260408083203390941683529290522054829010155b8015610bfb575060008210155b1515610c0657600080fd5b600160a060020a0380841660008181526001602090815260408083208054880190558885168084528184208054899003905560028352818420339096168452949091529081902080548690039055909190600080516020610d168339815191529085905190815260200160405180910390a35060015b9392505050565b600160a060020a033316600090815260016020526040812054829010801590610cad575060008210155b1515610cb857600080fd5b600160a060020a03338116600081815260016020526040808220805487900390559286168082529083902080548601905591600080516020610d168339815191529085905190815260200160405180910390a35060015b929150505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925a165627a7a723058205ebd14f97c410ac1edf4f45aa6b5c02b7b09942cbf3f0c650001c1ec54b17b100029

Deployed Bytecode

0x606060405236156100ca5763ffffffff60e060020a60003504166301339c2181146100dd57806302d05d3f146100f257806306fdde0314610121578063095ea7b3146101ac57806318160ddd146101e257806323b872dd14610207578063313ce5671461024357806354fd4d501461026c57806370a08231146102f757806373d08bc51461032857806395d89b41146103b9578063a9059cbb14610444578063cae9ca511461047a578063d9a6cf81146104f3578063dd62ed3e14610518578063e77a912f1461054f575b34156100d557600080fd5b5b600080fd5b005b34156100e857600080fd5b6100db610576565b005b34156100fd57600080fd5b6101056105b5565b604051600160a060020a03909116815260200160405180910390f35b341561012c57600080fd5b6101346105c9565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101715780820151818401525b602001610158565b50505050905090810190601f16801561019e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101b757600080fd5b6101ce600160a060020a0360043516602435610667565b604051901515815260200160405180910390f35b34156101ed57600080fd5b6101f561068b565b60405190815260200160405180910390f35b341561021257600080fd5b6101ce600160a060020a0360043581169060243516604435610691565b604051901515815260200160405180910390f35b341561024e57600080fd5b6102566106b6565b60405160ff909116815260200160405180910390f35b341561027757600080fd5b6101346106bf565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101715780820151818401525b602001610158565b50505050905090810190601f16801561019e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561030257600080fd5b6101f5600160a060020a036004351661075d565b60405190815260200160405180910390f35b341561033357600080fd5b6100db60046024813581810190830135806020818102016040519081016040528093929190818152602001838360200280828437820191505050505050919080359060200190820180359060200190808060200260200160405190810160405280939291908181526020018383602002808284375094965061077c95505050505050565b005b34156103c457600080fd5b610134610878565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101715780820151818401525b602001610158565b50505050905090810190601f16801561019e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561044f57600080fd5b6101ce600160a060020a0360043516602435610916565b604051901515815260200160405180910390f35b341561048557600080fd5b6101ce60048035600160a060020a03169060248035919060649060443590810190830135806020601f8201819004810201604051908101604052818152929190602084018383808284375094965061093995505050505050565b604051901515815260200160405180910390f35b34156104fe57600080fd5b6101f5610abd565b60405190815260200160405180910390f35b341561052357600080fd5b6101f5600160a060020a0360043581169060243516610ac3565b60405190815260200160405180910390f35b341561055a57600080fd5b6101ce610af0565b604051901515815260200160405180910390f35b60075460ff161561058357fe5b60075433600160a060020a0390811661010090920416146105a357600080fd5b6007805460ff191660011790555b5b5b565b6007546101009004600160a060020a031681565b60038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561065f5780601f106106345761010080835404028352916020019161065f565b820191906000526020600020905b81548152906001019060200180831161064257829003601f168201915b505050505081565b60075460009060ff16151561067857fe5b6106828383610af9565b90505b92915050565b60005481565b6008546000904211156106a057fe5b6106ab848484610b54565b90505b5b9392505050565b60045460ff1681565b60068054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561065f5780601f106106345761010080835404028352916020019161065f565b820191906000526020600020905b81548152906001019060200180831161064257829003601f168201915b505050505081565b600160a060020a0381166000908152600160205260409020545b919050565b60075460009081908190819060ff161561079257fe5b60075433600160a060020a0390811661010090920416146107b257600080fd5b6000549350600092505b8551831015610868578583815181106107d157fe5b9060200190602002015191508483815181106107e957fe5b90602001906020020151600160a060020a038316600090815260016020526040902054909150811461085c57600160a060020a038216600081815260016020526040808220805490859055909603830195600080516020610d168339815191529084905190815260200160405180910390a35b5b6001909201916107bc565b60008490555b5b5b505050505050565b60058054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561065f5780601f106106345761010080835404028352916020019161065f565b820191906000526020600020905b81548152906001019060200180831161064257829003601f168201915b505050505081565b60085460009042111561092557fe5b6106828383610b7a565b90505b5b92915050565b600160a060020a0333811660008181526002602090815260408083209488168084529490915280822086905590929190600080516020610d368339815191529086905190815260200160405180910390a383600160a060020a03166040517f72656365697665417070726f76616c28616464726573732c75696e743235362c8152609060020a6d616464726573732c627974657329026020820152602e01604051809103902060e060020a9004338530866040518563ffffffff1660e060020a0281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a03168152602001828051906020019080838360005b83811015610a5d5780820151818401525b602001610a44565b50505050905090810190601f168015610a8a5780820380516001836020036101000a031916815260200191505b5094505050505060006040518083038160008761646e5a03f1925050501515610ab257600080fd5b5060015b9392505050565b60085481565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b60075460ff1681565b600160a060020a0333811660008181526002602090815260408083209487168084529490915280822085905590929190600080516020610d368339815191529085905190815260200160405180910390a35060015b92915050565b60075460009060ff161515610b6557fe5b6106ab848484610b9e565b90505b9392505050565b60075460009060ff161515610b8b57fe5b6106828383610c83565b90505b92915050565b600160a060020a038316600090815260016020526040812054829010801590610bee5750600160a060020a0380851660009081526002602090815260408083203390941683529290522054829010155b8015610bfb575060008210155b1515610c0657600080fd5b600160a060020a0380841660008181526001602090815260408083208054880190558885168084528184208054899003905560028352818420339096168452949091529081902080548690039055909190600080516020610d168339815191529085905190815260200160405180910390a35060015b9392505050565b600160a060020a033316600090815260016020526040812054829010801590610cad575060008210155b1515610cb857600080fd5b600160a060020a03338116600081815260016020526040808220805487900390559286168082529083902080548601905591600080516020610d168339815191529085905190815260200160405180910390a35060015b929150505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925a165627a7a723058205ebd14f97c410ac1edf4f45aa6b5c02b7b09942cbf3f0c650001c1ec54b17b100029

Swarm Source

bzzr://5ebd14f97c410ac1edf4f45aa6b5c02b7b09942cbf3f0c650001c1ec54b17b10
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.