ETH Price: $3,319.60 (+1.84%)
Gas: 4 Gwei

Token

Beth (BTH)
 

Overview

Max Total Supply

2,832,955 BTH

Holders

734

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
642.772 BTH

Value
$0.00
0x6d4bba126e1c42f911a76bb3d02a2842f540be64
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:
Beth

Compiler Version
v0.4.10+commit.f0d539ae

Optimization Enabled:
Yes with 200 runs

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

/**
 *  Beth token contract, ERC20 compliant (see https://github.com/ethereum/EIPs/issues/20)
 *
 *  Code is based on multiple sources:
 *  https://github.com/OpenZeppelin/zeppelin-solidity/blob/master/contracts/token/ERC20.sol
 *  https://github.com/ConsenSys/Tokens/blob/master/Token_Contracts/contracts/Token.sol
 */

pragma solidity ^0.4.8;

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 `_spender` to spend `_value` tokens
    /// @param _spender The address of the account able to transfer the tokens
    /// @param _value The amount of tokens 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);
}

contract Beth is Token {

    function () {
        //if ether is sent to this address, send it back.
        throw;
    }
     
    address public owner;
    mapping (address => uint256) balances;
    mapping (address => mapping (address => uint256)) allowed;
    mapping (address => bool) public frozenAccount;

    //// Events ////
    event MigrationInfoSet(string newMigrationInfo);
    event FrozenFunds(address target, bool frozen);
    
    // This is to be used when migration to a new contract starts.
    // This string can be used for any authorative information re the migration
    // (e.g. address to use for migration, or URL to explain where to find more info)
    string public migrationInfo = "";

    modifier onlyOwner{ if (msg.sender != owner) throw; _; }

    /* Public variables of the token */
    string public name = "Beth";
    uint8 public decimals = 18;
    string public symbol = "BTH";
    string public version = "1.0";

    bool private stopped = false;
    modifier stopInEmergency { if (!stopped) _; }

    function Beth() {
        owner = 0xa62dFc3a5bf6ceE820B916d5eF054A29826642e8;
        balances[0xa62dFc3a5bf6ceE820B916d5eF054A29826642e8] = 2832955 * 1 ether;
        totalSupply = 2832955* 1 ether;
    }


    function transfer(address _to, uint256 _value) stopInEmergency returns (bool success) {
        if (frozenAccount[msg.sender]) throw;                // Check if frozen
        if (balances[msg.sender] < _value) throw;
        if (_value <= 0) throw;
        balances[msg.sender] -= _value;
        balances[_to] += _value;
        Transfer(msg.sender, _to, _value);
        return true;
    }

    function transferFrom(address _from, address _to, uint256 _value) stopInEmergency  returns (bool success) {
        if (frozenAccount[msg.sender]) throw;                // Check if frozen
        if (balances[_from] < _value) throw;
        if (allowed[_from][msg.sender] < _value) throw;
        if (_value <= 0) throw;
        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];
    }

    /* 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);
        
        //it is assumed that when does this that the call *should* succeed, otherwise one would use vanilla approve instead.
        if(!_spender.call(bytes4(bytes32(sha3("receiveApproval(address,uint256,address,bytes)"))), msg.sender, _value, this, _extraData)) {
            throw; 
        }
        return true;
    }

    // Allows setting a descriptive string, which will aid any users in migrating their token
    // to a newer version of the contract. This field provides a kind of 'double-layer' of
    // authentication for any migration announcement, as it can only be set by WeTrust.
    /// @param _migrationInfo The information string to be stored on the contract
    function setMigrationInfo(string _migrationInfo) onlyOwner public {
        migrationInfo = _migrationInfo;
        MigrationInfoSet(_migrationInfo);
    }

    // Owner can set any account into freeze state. It is helpful in case if account holder has 
    // lost his key and he want administrator to freeze account until account key is recovered
    // @param target The account address
    // @param freeze The state of account
    function freezeAccount(address target, bool freeze) onlyOwner {
        frozenAccount[target] = freeze;
        FrozenFunds(target, freeze);
    }

    // It is called Circuit Breakers (Pause contract functionality), it stop execution if certain conditions are met, 
    // and can be useful when new errors are discovered. For example, most actions may be suspended in a contract if a 
    // bug is discovered, so the most feasible option to stop and updated migration message about launching an updated version of contract. 
    // @param _stop Switch the circuite breaker on or off
    function emergencyStop(bool _stop) onlyOwner {
        stopped = _stop;
    }

    // changeOwner is used to change the administrator of the contract. This can be useful if owner account is suspected to be compromised
    // and you have luck to update owner.
    // @param _newOwner Address of new owner
    function changeOwner(address _newOwner) onlyOwner {
        balances[_newOwner] = balances[owner];
        balances[owner] = 0;
        owner = _newOwner;
        Transfer(owner, _newOwner,balances[_newOwner]);
    }

}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"migrationInfo","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_stop","type":"bool"}],"name":"emergencyStop","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"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,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"changeOwner","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_migrationInfo","type":"string"}],"name":"setMigrationInfo","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"frozenAccount","outputs":[{"name":"","type":"bool"}],"payable":false,"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,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"freeze","type":"bool"}],"name":"freezeAccount","outputs":[],"payable":false,"type":"function"},{"inputs":[],"payable":false,"type":"constructor"},{"payable":false,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newMigrationInfo","type":"string"}],"name":"MigrationInfoSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"target","type":"address"},{"indexed":false,"name":"frozen","type":"bool"}],"name":"FrozenFunds","type":"event"},{"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"}]

60806040819052600060608190526200001b916005916200017e565b506040805180820190915260048082527f4265746800000000000000000000000000000000000000000000000000000000602090920191825262000062916006916200017e565b506007805460ff191660121790556040805180820190915260038082527f42544800000000000000000000000000000000000000000000000000000000006020909201918252620000b6916008916200017e565b506040805180820190915260038082527f312e3000000000000000000000000000000000000000000000000000000000006020909201918252620000fd916009916200017e565b50600a805460ff1916905534156200011157fe5b5b60018054600160a060020a03191673a62dfc3a5bf6cee820b916d5ef054a29826642e8908117909155600090815260026020526a0257e6cc5bed203c0c00007faeaff8f2fb519b413502839c6d99ab74f5b55caa6bbaec3e3b3f54ff0912b65281905590555b62000228565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001c157805160ff1916838001178555620001f1565b82800160010185558215620001f1579182015b82811115620001f1578251825591602001919060010190620001d4565b5b506200020092915062000204565b5090565b6200022591905b808211156200020057600081556001016200020b565b5090565b90565b610ff080620002386000396000f300606060405236156100e05763ffffffff60e060020a60003504166306fdde0381146100f657806308f978c614610186578063095ea7b3146102165780630ac62e021461024957806318160ddd1461026057806323b872dd14610282578063313ce567146102bb57806354fd4d50146102e157806370a08231146103715780638da5cb5b1461039f57806395d89b41146103cb578063a6f9dae11461045b578063a9059cbb14610479578063ab1f7929146104ac578063b414d4b614610504578063cae9ca5114610534578063dd62ed3e146105ab578063e724529c146105df575b34156100e857fe5b6100f45b60006000fd5b565b005b34156100fe57fe5b610106610602565b60408051602080825283518183015283519192839290830191850190808383821561014c575b80518252602083111561014c57601f19909201916020918201910161012c565b505050905090810190601f1680156101785780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561018e57fe5b610106610690565b60408051602080825283518183015283519192839290830191850190808383821561014c575b80518252602083111561014c57601f19909201916020918201910161012c565b505050905090810190601f1680156101785780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561021e57fe5b610235600160a060020a036004351660243561071e565b604080519115158252519081900360200190f35b341561025157fe5b6100f46004351515610789565b005b341561026857fe5b6102706107b8565b60408051918252519081900360200190f35b341561028a57fe5b610235600160a060020a03600435811690602435166044356107be565b604080519115158252519081900360200190f35b34156102c357fe5b6102cb6108ec565b6040805160ff9092168252519081900360200190f35b34156102e957fe5b6101066108f5565b60408051602080825283518183015283519192839290830191850190808383821561014c575b80518252602083111561014c57601f19909201916020918201910161012c565b505050905090810190601f1680156101785780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561037957fe5b610270600160a060020a0360043516610983565b60408051918252519081900360200190f35b34156103a757fe5b6103af6109a2565b60408051600160a060020a039092168252519081900360200190f35b34156103d357fe5b6101066109b1565b60408051602080825283518183015283519192839290830191850190808383821561014c575b80518252602083111561014c57601f19909201916020918201910161012c565b505050905090810190601f1680156101785780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561046357fe5b6100f4600160a060020a0360043516610a3f565b005b341561048157fe5b610235600160a060020a0360043516602435610af5565b604080519115158252519081900360200190f35b34156104b457fe5b6100f4600480803590602001908201803590602001908080601f01602080910402602001604051908101604052809392919081815260200183838082843750949650610bd395505050505050565b005b341561050c57fe5b610235600160a060020a0360043516610cae565b604080519115158252519081900360200190f35b341561053c57fe5b604080516020600460443581810135601f8101849004840285018401909552848452610235948235600160a060020a0316946024803595606494929391909201918190840183828082843750949650610cc395505050505050565b604080519115158252519081900360200190f35b34156105b357fe5b610270600160a060020a0360043581169060243516610e75565b60408051918252519081900360200190f35b34156105e757fe5b6100f4600160a060020a03600435166024351515610ea2565b005b6006805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106885780601f1061065d57610100808354040283529160200191610688565b820191906000526020600020905b81548152906001019060200180831161066b57829003601f168201915b505050505081565b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106885780601f1061065d57610100808354040283529160200191610688565b820191906000526020600020905b81548152906001019060200180831161066b57829003601f168201915b505050505081565b600160a060020a03338116600081815260036020908152604080832094871680845294825280832086905580518681529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b60015433600160a060020a039081169116146107a55760006000fd5b600a805460ff19168215151790555b5b50565b60005481565b600a5460009060ff1615156108e357600160a060020a03331660009081526004602052604090205460ff16156107f45760006000fd5b600160a060020a0384166000908152600260205260409020548290101561081b5760006000fd5b600160a060020a0380851660009081526003602090815260408083203390941683529290522054829010156108505760006000fd5b6000821161085e5760006000fd5b600160a060020a03808416600081815260026020908152604080832080548801905588851680845281842080548990039055600383528184203390961684529482529182902080548790039055815186815291519293927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35060015b5b5b9392505050565b60075460ff1681565b6009805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106885780601f1061065d57610100808354040283529160200191610688565b820191906000526020600020905b81548152906001019060200180831161066b57829003601f168201915b505050505081565b600160a060020a0381166000908152600260205260409020545b919050565b600154600160a060020a031681565b6008805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106885780601f1061065d57610100808354040283529160200191610688565b820191906000526020600020905b81548152906001019060200180831161066b57829003601f168201915b505050505081565b60015433600160a060020a03908116911614610a5b5760006000fd5b60018054600160a060020a03908116600090815260026020908152604080832054868516808552828520918255865486168552828520859055865473ffffffffffffffffffffffffffffffffffffffff19168117968790559384905254815190815290519294909316927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35b5b50565b600a5460009060ff16151561078357600160a060020a03331660009081526004602052604090205460ff1615610b2b5760006000fd5b600160a060020a03331660009081526002602052604090205482901015610b525760006000fd5b60008211610b605760006000fd5b600160a060020a03338116600081815260026020908152604080832080548890039055938716808352918490208054870190558351868152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35060015b5b5b92915050565b60015433600160a060020a03908116911614610bef5760006000fd5b8051610c02906005906020840190610f24565b507f14fa274cf60cf17ec351674ca0666a478cd8c0e8dad97858b8d5111b5fa50ea3816040518080602001828103825283818151815260200191508051906020019080838360008314610c70575b805182526020831115610c7057601f199092019160209182019101610c50565b505050905090810190601f168015610c9c5780820380516001836020036101000a031916815260200191505b509250505060405180910390a15b5b50565b60046020526000908152604090205460ff1681565b600160a060020a03338116600081815260036020908152604080832094881680845294825280832087905580518781529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a383600160a060020a031660405180807f72656365697665417070726f76616c28616464726573732c75696e743235362c81526020017f616464726573732c627974657329000000000000000000000000000000000000815250602e019050604051809103902060e060020a9004338530866040518563ffffffff1660e060020a0281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a03168152602001828051906020019080838360008314610e15575b805182526020831115610e1557601f199092019160209182019101610df5565b505050905090810190601f168015610e415780820380516001836020036101000a031916815260200191505b509450505050506000604051808303816000876161da5a03f1925050501515610e6a5760006000fd5b5060015b9392505050565b600160a060020a038083166000908152600360209081526040808320938516835292905220545b92915050565b60015433600160a060020a03908116911614610ebe5760006000fd5b600160a060020a038216600081815260046020908152604091829020805460ff191685151590811790915582519384529083015280517f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a59281900390910190a15b5b5050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10610f6557805160ff1916838001178555610f92565b82800160010185558215610f92579182015b82811115610f92578251825591602001919060010190610f77565b5b50610f9f929150610fa3565b5090565b610fc191905b80821115610f9f5760008155600101610fa9565b5090565b905600a165627a7a72305820b94ce411a2fdbcd60861c113eb0cca6b9694e2e47713d3fe47890bd84fc1c9490029

Deployed Bytecode

0x606060405236156100e05763ffffffff60e060020a60003504166306fdde0381146100f657806308f978c614610186578063095ea7b3146102165780630ac62e021461024957806318160ddd1461026057806323b872dd14610282578063313ce567146102bb57806354fd4d50146102e157806370a08231146103715780638da5cb5b1461039f57806395d89b41146103cb578063a6f9dae11461045b578063a9059cbb14610479578063ab1f7929146104ac578063b414d4b614610504578063cae9ca5114610534578063dd62ed3e146105ab578063e724529c146105df575b34156100e857fe5b6100f45b60006000fd5b565b005b34156100fe57fe5b610106610602565b60408051602080825283518183015283519192839290830191850190808383821561014c575b80518252602083111561014c57601f19909201916020918201910161012c565b505050905090810190601f1680156101785780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561018e57fe5b610106610690565b60408051602080825283518183015283519192839290830191850190808383821561014c575b80518252602083111561014c57601f19909201916020918201910161012c565b505050905090810190601f1680156101785780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561021e57fe5b610235600160a060020a036004351660243561071e565b604080519115158252519081900360200190f35b341561025157fe5b6100f46004351515610789565b005b341561026857fe5b6102706107b8565b60408051918252519081900360200190f35b341561028a57fe5b610235600160a060020a03600435811690602435166044356107be565b604080519115158252519081900360200190f35b34156102c357fe5b6102cb6108ec565b6040805160ff9092168252519081900360200190f35b34156102e957fe5b6101066108f5565b60408051602080825283518183015283519192839290830191850190808383821561014c575b80518252602083111561014c57601f19909201916020918201910161012c565b505050905090810190601f1680156101785780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561037957fe5b610270600160a060020a0360043516610983565b60408051918252519081900360200190f35b34156103a757fe5b6103af6109a2565b60408051600160a060020a039092168252519081900360200190f35b34156103d357fe5b6101066109b1565b60408051602080825283518183015283519192839290830191850190808383821561014c575b80518252602083111561014c57601f19909201916020918201910161012c565b505050905090810190601f1680156101785780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561046357fe5b6100f4600160a060020a0360043516610a3f565b005b341561048157fe5b610235600160a060020a0360043516602435610af5565b604080519115158252519081900360200190f35b34156104b457fe5b6100f4600480803590602001908201803590602001908080601f01602080910402602001604051908101604052809392919081815260200183838082843750949650610bd395505050505050565b005b341561050c57fe5b610235600160a060020a0360043516610cae565b604080519115158252519081900360200190f35b341561053c57fe5b604080516020600460443581810135601f8101849004840285018401909552848452610235948235600160a060020a0316946024803595606494929391909201918190840183828082843750949650610cc395505050505050565b604080519115158252519081900360200190f35b34156105b357fe5b610270600160a060020a0360043581169060243516610e75565b60408051918252519081900360200190f35b34156105e757fe5b6100f4600160a060020a03600435166024351515610ea2565b005b6006805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106885780601f1061065d57610100808354040283529160200191610688565b820191906000526020600020905b81548152906001019060200180831161066b57829003601f168201915b505050505081565b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106885780601f1061065d57610100808354040283529160200191610688565b820191906000526020600020905b81548152906001019060200180831161066b57829003601f168201915b505050505081565b600160a060020a03338116600081815260036020908152604080832094871680845294825280832086905580518681529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b60015433600160a060020a039081169116146107a55760006000fd5b600a805460ff19168215151790555b5b50565b60005481565b600a5460009060ff1615156108e357600160a060020a03331660009081526004602052604090205460ff16156107f45760006000fd5b600160a060020a0384166000908152600260205260409020548290101561081b5760006000fd5b600160a060020a0380851660009081526003602090815260408083203390941683529290522054829010156108505760006000fd5b6000821161085e5760006000fd5b600160a060020a03808416600081815260026020908152604080832080548801905588851680845281842080548990039055600383528184203390961684529482529182902080548790039055815186815291519293927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35060015b5b5b9392505050565b60075460ff1681565b6009805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106885780601f1061065d57610100808354040283529160200191610688565b820191906000526020600020905b81548152906001019060200180831161066b57829003601f168201915b505050505081565b600160a060020a0381166000908152600260205260409020545b919050565b600154600160a060020a031681565b6008805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106885780601f1061065d57610100808354040283529160200191610688565b820191906000526020600020905b81548152906001019060200180831161066b57829003601f168201915b505050505081565b60015433600160a060020a03908116911614610a5b5760006000fd5b60018054600160a060020a03908116600090815260026020908152604080832054868516808552828520918255865486168552828520859055865473ffffffffffffffffffffffffffffffffffffffff19168117968790559384905254815190815290519294909316927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35b5b50565b600a5460009060ff16151561078357600160a060020a03331660009081526004602052604090205460ff1615610b2b5760006000fd5b600160a060020a03331660009081526002602052604090205482901015610b525760006000fd5b60008211610b605760006000fd5b600160a060020a03338116600081815260026020908152604080832080548890039055938716808352918490208054870190558351868152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35060015b5b5b92915050565b60015433600160a060020a03908116911614610bef5760006000fd5b8051610c02906005906020840190610f24565b507f14fa274cf60cf17ec351674ca0666a478cd8c0e8dad97858b8d5111b5fa50ea3816040518080602001828103825283818151815260200191508051906020019080838360008314610c70575b805182526020831115610c7057601f199092019160209182019101610c50565b505050905090810190601f168015610c9c5780820380516001836020036101000a031916815260200191505b509250505060405180910390a15b5b50565b60046020526000908152604090205460ff1681565b600160a060020a03338116600081815260036020908152604080832094881680845294825280832087905580518781529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a383600160a060020a031660405180807f72656365697665417070726f76616c28616464726573732c75696e743235362c81526020017f616464726573732c627974657329000000000000000000000000000000000000815250602e019050604051809103902060e060020a9004338530866040518563ffffffff1660e060020a0281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a03168152602001828051906020019080838360008314610e15575b805182526020831115610e1557601f199092019160209182019101610df5565b505050905090810190601f168015610e415780820380516001836020036101000a031916815260200191505b509450505050506000604051808303816000876161da5a03f1925050501515610e6a5760006000fd5b5060015b9392505050565b600160a060020a038083166000908152600360209081526040808320938516835292905220545b92915050565b60015433600160a060020a03908116911614610ebe5760006000fd5b600160a060020a038216600081815260046020908152604091829020805460ff191685151590811790915582519384529083015280517f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a59281900390910190a15b5b5050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10610f6557805160ff1916838001178555610f92565b82800160010185558215610f92579182015b82811115610f92578251825591602001919060010190610f77565b5b50610f9f929150610fa3565b5090565b610fc191905b80821115610f9f5760008155600101610fa9565b5090565b905600a165627a7a72305820b94ce411a2fdbcd60861c113eb0cca6b9694e2e47713d3fe47890bd84fc1c9490029

Swarm Source

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