ETH Price: $2,782.01 (+4.09%)

Token

SuponicGameCoin (SGC)
 

Overview

Max Total Supply

10,000,000,000 SGC

Holders

201

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
0 SGC

Value
$0.00
0xf11b6944c99147c3cb7abffd41e6b84c6997321d
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xB68dB12F...C0e31803f
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
SuponicGameCoin

Compiler Version
v0.4.25+commit.59dbf8f1

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2020-03-02
*/

pragma solidity ^0.4.18;


/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {

  /**
  * @dev Multiplies two numbers, throws on overflow.
  */
  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    if (a == 0) {
      return 0;
    }
    uint256 c = a * b;
    assert(c / a == b);
    return c;
  }

  /**
  * @dev Integer division of two numbers, truncating the quotient.
  */
  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    // assert(b > 0); // Solidity automatically throws when dividing by 0
    uint256 c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold
    return c;
  }

  /**
  * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
  */
  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    assert(b <= a);
    return a - b;
  }

  /**
  * @dev Adds two numbers, throws on overflow.
  */
  function add(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a + b;
    assert(c >= a);
    return c;
  }
}


// ----------------------------------------------------------------------------
// Owned contract
// ----------------------------------------------------------------------------
contract Owned {
    address public owner;
    address public newOwner;

    event OwnershipTransferred(address indexed _from, address indexed _to);

    constructor() public {
        owner = msg.sender;
    }

    modifier onlyOwner {
        require(msg.sender == owner);
        _;
    }

    function transferOwnership(address _newOwner) public onlyOwner {
        newOwner = _newOwner;
    }
    function acceptOwnership() public {
        require(msg.sender == newOwner);
        emit OwnershipTransferred(owner, newOwner);
        owner = newOwner;
        newOwner = address(0);
    }
}

contract ERC223 {
  uint public totalSupply;
  function balanceOf(address who) constant returns (uint);

  function name() constant returns (string _name);
  function symbol() constant returns (string _symbol);
  function decimals() constant returns (uint8 _decimals);
  function totalSupply() constant returns (uint256 _supply);

  function transfer(address to, uint value) returns (bool ok);
  function transfer(address to, uint value, bytes data) returns (bool ok);
  event Transfer(address indexed _from, address indexed _to, uint256 _value);
  event ERC223Transfer(address indexed _from, address indexed _to, uint256 _value, bytes _data);
}

contract ContractReceiver {
  function tokenFallback(address _from, uint _value, bytes _data);
}

contract ERC223Token is ERC223 {
  using SafeMath for uint;

  mapping(address => uint) balances;

  string public name;
  string public symbol;
  uint8 public decimals;
  uint256 public totalSupply;


  // Function to access name of token .
  function name() constant returns (string _name) {
      return name;
  }
  // Function to access symbol of token .
  function symbol() constant returns (string _symbol) {
      return symbol;
  }
  // Function to access decimals of token .
  function decimals() constant returns (uint8 _decimals) {
      return decimals;
  }
  // Function to access total supply of tokens .
  function totalSupply() constant returns (uint256 _totalSupply) {
      return totalSupply;
  }

  // Function that is called when a user or another contract wants to transfer funds .
  function transfer(address _to, uint _value, bytes _data) returns (bool success) {
    if(isContract(_to)) {
        return transferToContract(_to, _value, _data);
    }
    else {
        return transferToAddress(_to, _value, _data);
    }
}

  // Standard function transfer similar to ERC20 transfer with no _data .
  // Added due to backwards compatibility reasons .
  function transfer(address _to, uint _value) returns (bool success) {

    //standard function transfer similar to ERC20 transfer with no _data
    //added due to backwards compatibility reasons
    bytes memory empty;
    if(isContract(_to)) {
        return transferToContract(_to, _value, empty);
    }
    else {
        return transferToAddress(_to, _value, empty);
    }
}

//assemble the given address bytecode. If bytecode exists then the _addr is a contract.
  function isContract(address _addr) private returns (bool is_contract) {
      uint length;
      assembly {
            //retrieve the size of the code on target address, this needs assembly
            length := extcodesize(_addr)
        }
        if(length>0) {
            return true;
        }
        else {
            return false;
        }
    }

  //function that is called when transaction target is an address
  function transferToAddress(address _to, uint _value, bytes _data) private returns (bool success) {
    if (balanceOf(msg.sender) < _value) revert();
    balances[msg.sender] = balanceOf(msg.sender).sub(_value);
    balances[_to] = balanceOf(_to).add(_value);
    Transfer(msg.sender, _to, _value);
    ERC223Transfer(msg.sender, _to, _value, _data);
    return true;
  }

  //function that is called when transaction target is a contract
  function transferToContract(address _to, uint _value, bytes _data) private returns (bool success) {
    if (balanceOf(msg.sender) < _value) revert();
    balances[msg.sender] = balanceOf(msg.sender).sub(_value);
    balances[_to] = balanceOf(_to).add(_value);
    ContractReceiver reciever = ContractReceiver(_to);
    reciever.tokenFallback(msg.sender, _value, _data);
    Transfer(msg.sender, _to, _value);
    ERC223Transfer(msg.sender, _to, _value, _data);
    return true;
  }


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

contract SuponicGameCoin is ERC223Token, Owned {
  string public name = "SuponicGameCoin";
  string public symbol = "SGC";
  uint public decimals = 8;
  uint public totalSupply = 10000000000 * 10**uint(decimals);

  function SuponicGameCoin() {
    balances[owner] = totalSupply;
    emit Transfer(address(0), owner, totalSupply);
  }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"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":"acceptOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","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":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"newOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"}],"name":"OwnershipTransferred","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":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"},{"indexed":false,"name":"_data","type":"bytes"}],"name":"ERC223Transfer","type":"event"}]

60c0604052600f60808190527f5375706f6e696347616d65436f696e000000000000000000000000000000000060a090815261003e9160089190610114565b506040805180820190915260038082527f5347430000000000000000000000000000000000000000000000000000000000602090920191825261008391600991610114565b506008600a55670de0b6b3a7640000600b553480156100a157600080fd5b5060068054600160a060020a0319163317808255600b54600160a060020a039182166000908152600160209081526040808320849055945485519384529451949093169390927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef928290030190a36101af565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061015557805160ff1916838001178555610182565b82800160010185558215610182579182015b82811115610182578251825591602001919060010190610167565b5061018e929150610192565b5090565b6101ac91905b8082111561018e5760008155600101610198565b90565b610956806101be6000396000f3006080604052600436106100ae5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100b357806318160ddd1461013d578063313ce5671461016457806370a082311461017957806379ba50971461019a5780638da5cb5b146101b157806395d89b41146101e2578063a9059cbb146101f7578063be45fd621461022f578063d4ee1d9014610298578063f2fde38b146102ad575b600080fd5b3480156100bf57600080fd5b506100c86102ce565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101025781810151838201526020016100ea565b50505050905090810190601f16801561012f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561014957600080fd5b5061015261035c565b60408051918252519081900360200190f35b34801561017057600080fd5b50610152610362565b34801561018557600080fd5b50610152600160a060020a0360043516610368565b3480156101a657600080fd5b506101af610383565b005b3480156101bd57600080fd5b506101c661040d565b60408051600160a060020a039092168252519081900360200190f35b3480156101ee57600080fd5b506100c861041c565b34801561020357600080fd5b5061021b600160a060020a0360043516602435610477565b604080519115158252519081900360200190f35b34801561023b57600080fd5b50604080516020600460443581810135601f810184900484028501840190955284845261021b948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506104ad9650505050505050565b3480156102a457600080fd5b506101c66104e1565b3480156102b957600080fd5b506101af600160a060020a03600435166104f0565b6008805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103545780601f1061032957610100808354040283529160200191610354565b820191906000526020600020905b81548152906001019060200180831161033757829003601f168201915b505050505081565b600b5481565b600a5481565b600160a060020a031660009081526001602052604090205490565b600754600160a060020a0316331461039a57600080fd5b600754600654604051600160a060020a0392831692909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600780546006805473ffffffffffffffffffffffffffffffffffffffff19908116600160a060020a03841617909155169055565b600654600160a060020a031681565b6009805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103545780601f1061032957610100808354040283529160200191610354565b6000606061048484610536565b1561049b57610494848483610556565b91506104a6565b6104948484836107b4565b5092915050565b60006104b884610536565b156104cf576104c8848484610556565b90506104da565b6104c88484846107b4565b9392505050565b600754600160a060020a031681565b600654600160a060020a0316331461050757600080fd5b6007805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000813b8181111561054b5760019150610550565b600091505b50919050565b6000808361056333610368565b101561056e57600080fd5b6105878461057b33610368565b9063ffffffff61090916565b336000908152600160205260409020556105b0846105a487610368565b9063ffffffff61091b16565b600160a060020a03861660008181526001602090815260408083209490945592517fc0ee0b8a0000000000000000000000000000000000000000000000000000000081523360048201818152602483018a90526060604484019081528951606485015289518c9850959663c0ee0b8a9693958c958c956084909101928601918190849084905b8381101561064e578181015183820152602001610636565b50505050905090810190601f16801561067b5780820380516001836020036101000a031916815260200191505b50945050505050600060405180830381600087803b15801561069c57600080fd5b505af11580156106b0573d6000803e3d6000fd5b5050604080518781529051600160a060020a03891693503392507fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a384600160a060020a031633600160a060020a03167f9bfafdc2ae8835972d7b64ef3f8f307165ac22ceffde4a742c52da5487f45fd186866040518083815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561076e578181015183820152602001610756565b50505050905090810190601f16801561079b5780820380516001836020036101000a031916815260200191505b50935050505060405180910390a3506001949350505050565b6000826107c033610368565b10156107cb57600080fd5b6107d88361057b33610368565b336000908152600160205260409020556107f5836105a486610368565b600160a060020a0385166000818152600160209081526040918290209390935580518681529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a383600160a060020a031633600160a060020a03167f9bfafdc2ae8835972d7b64ef3f8f307165ac22ceffde4a742c52da5487f45fd185856040518083815260200180602001828103825283818151815260200191508051906020019080838360005b838110156108c45781810151838201526020016108ac565b50505050905090810190601f1680156108f15780820380516001836020036101000a031916815260200191505b50935050505060405180910390a35060019392505050565b60008282111561091557fe5b50900390565b6000828201838110156104da57fe00a165627a7a7230582046aba74237b36d2fa32c16a520d7a8759f13a3e5e4382fbc47c5c5d6f5e4ae3f0029

Deployed Bytecode

0x6080604052600436106100ae5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100b357806318160ddd1461013d578063313ce5671461016457806370a082311461017957806379ba50971461019a5780638da5cb5b146101b157806395d89b41146101e2578063a9059cbb146101f7578063be45fd621461022f578063d4ee1d9014610298578063f2fde38b146102ad575b600080fd5b3480156100bf57600080fd5b506100c86102ce565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101025781810151838201526020016100ea565b50505050905090810190601f16801561012f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561014957600080fd5b5061015261035c565b60408051918252519081900360200190f35b34801561017057600080fd5b50610152610362565b34801561018557600080fd5b50610152600160a060020a0360043516610368565b3480156101a657600080fd5b506101af610383565b005b3480156101bd57600080fd5b506101c661040d565b60408051600160a060020a039092168252519081900360200190f35b3480156101ee57600080fd5b506100c861041c565b34801561020357600080fd5b5061021b600160a060020a0360043516602435610477565b604080519115158252519081900360200190f35b34801561023b57600080fd5b50604080516020600460443581810135601f810184900484028501840190955284845261021b948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506104ad9650505050505050565b3480156102a457600080fd5b506101c66104e1565b3480156102b957600080fd5b506101af600160a060020a03600435166104f0565b6008805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103545780601f1061032957610100808354040283529160200191610354565b820191906000526020600020905b81548152906001019060200180831161033757829003601f168201915b505050505081565b600b5481565b600a5481565b600160a060020a031660009081526001602052604090205490565b600754600160a060020a0316331461039a57600080fd5b600754600654604051600160a060020a0392831692909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600780546006805473ffffffffffffffffffffffffffffffffffffffff19908116600160a060020a03841617909155169055565b600654600160a060020a031681565b6009805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103545780601f1061032957610100808354040283529160200191610354565b6000606061048484610536565b1561049b57610494848483610556565b91506104a6565b6104948484836107b4565b5092915050565b60006104b884610536565b156104cf576104c8848484610556565b90506104da565b6104c88484846107b4565b9392505050565b600754600160a060020a031681565b600654600160a060020a0316331461050757600080fd5b6007805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000813b8181111561054b5760019150610550565b600091505b50919050565b6000808361056333610368565b101561056e57600080fd5b6105878461057b33610368565b9063ffffffff61090916565b336000908152600160205260409020556105b0846105a487610368565b9063ffffffff61091b16565b600160a060020a03861660008181526001602090815260408083209490945592517fc0ee0b8a0000000000000000000000000000000000000000000000000000000081523360048201818152602483018a90526060604484019081528951606485015289518c9850959663c0ee0b8a9693958c958c956084909101928601918190849084905b8381101561064e578181015183820152602001610636565b50505050905090810190601f16801561067b5780820380516001836020036101000a031916815260200191505b50945050505050600060405180830381600087803b15801561069c57600080fd5b505af11580156106b0573d6000803e3d6000fd5b5050604080518781529051600160a060020a03891693503392507fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a384600160a060020a031633600160a060020a03167f9bfafdc2ae8835972d7b64ef3f8f307165ac22ceffde4a742c52da5487f45fd186866040518083815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561076e578181015183820152602001610756565b50505050905090810190601f16801561079b5780820380516001836020036101000a031916815260200191505b50935050505060405180910390a3506001949350505050565b6000826107c033610368565b10156107cb57600080fd5b6107d88361057b33610368565b336000908152600160205260409020556107f5836105a486610368565b600160a060020a0385166000818152600160209081526040918290209390935580518681529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a383600160a060020a031633600160a060020a03167f9bfafdc2ae8835972d7b64ef3f8f307165ac22ceffde4a742c52da5487f45fd185856040518083815260200180602001828103825283818151815260200191508051906020019080838360005b838110156108c45781810151838201526020016108ac565b50505050905090810190601f1680156108f15780820380516001836020036101000a031916815260200191505b50935050505060405180910390a35060019392505050565b60008282111561091557fe5b50900390565b6000828201838110156104da57fe00a165627a7a7230582046aba74237b36d2fa32c16a520d7a8759f13a3e5e4382fbc47c5c5d6f5e4ae3f0029

Deployed Bytecode Sourcemap

5958:346:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6010:38;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6010:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;6010:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6115:58;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6115:58:0;;;;;;;;;;;;;;;;;;;;6086:24;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6086:24:0;;;;5848:103;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5848:103:0;-1:-1:-1;;;;;5848:103:0;;;;;1792:196;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1792:196:0;;;;;;1394:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1394:20:0;;;;;;;;-1:-1:-1;;;;;1394:20:0;;;;;;;;;;;;;;6053:28;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6053:28:0;;;;3976:388;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3976:388:0;-1:-1:-1;;;;;3976:388:0;;;;;;;;;;;;;;;;;;;;;;;;;3594:248;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3594:248:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3594:248:0;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3594:248:0;;-1:-1:-1;3594:248:0;;-1:-1:-1;;;;;;;3594:248:0;1421:23;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1421:23:0;;;;1684:102;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;1684:102:0;-1:-1:-1;;;;;1684:102:0;;;;;6010:38;;;;;;;;;;;;;;;-1:-1:-1;;6010:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6115:58::-;;;;:::o;6086:24::-;;;;:::o;5848:103::-;-1:-1:-1;;;;;5929:16:0;5901:12;5929:16;;;:8;:16;;;;;;;5848:103::o;1792:196::-;1859:8;;-1:-1:-1;;;;;1859:8:0;1845:10;:22;1837:31;;;;;;1912:8;;1905:5;;1884:37;;-1:-1:-1;;;;;1912:8:0;;;;1905:5;;;;1884:37;;1912:8;;1884:37;1940:8;;;1932:5;:16;;-1:-1:-1;;1932:16:0;;;-1:-1:-1;;;;;1940:8:0;;1932:16;;;;1959:21;;;1792:196::o;1394:20::-;;;-1:-1:-1;;;;;1394:20:0;;:::o;6053:28::-;;;;;;;;;;;;;;;-1:-1:-1;;6053:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3976:388;4029:12;4178:18;4206:15;4217:3;4206:10;:15::i;:::-;4203:158;;;4241:38;4260:3;4265:6;4273:5;4241:18;:38::i;:::-;4234:45;;;;4203:158;4316:37;4334:3;4339:6;4347:5;4316:17;:37::i;4203:158::-;3976:388;;;;;:::o;3594:248::-;3660:12;3684:15;3695:3;3684:10;:15::i;:::-;3681:158;;;3719:38;3738:3;3743:6;3751:5;3719:18;:38::i;:::-;3712:45;;;;3681:158;3794:37;3812:3;3817:6;3825:5;3794:17;:37::i;3681:158::-;3594:248;;;;;:::o;1421:23::-;;;-1:-1:-1;;;;;1421:23:0;;:::o;1684:102::-;1650:5;;-1:-1:-1;;;;;1650:5:0;1636:10;:19;1628:28;;;;;;1758:8;:20;;-1:-1:-1;;1758:20:0;-1:-1:-1;;;;;1758:20:0;;;;;;;;;;1684:102::o;4459:368::-;4511:16;4676:18;;4718:8;;;4715:105;;;4750:4;4743:11;;;;4715:105;4803:5;4796:12;;4715:105;4459:368;;;;:::o;5350:490::-;5434:12;5618:25;5483:6;5459:21;5469:10;5459:9;:21::i;:::-;:30;5455:44;;;5491:8;;;5455:44;5529:33;5555:6;5529:21;5539:10;5529:9;:21::i;:::-;:25;:33;:25;:33;:::i;:::-;5515:10;5506:20;;;;:8;:20;;;;;:56;5585:26;5604:6;5585:14;5595:3;5585:9;:14::i;:::-;:18;:26;:18;:26;:::i;:::-;-1:-1:-1;;;;;5569:13:0;;;;;;:8;:13;;;;;;;;:42;;;;5674:49;;;;;5697:10;5674:49;;;;;;;;;;;;;;;;;;;;;;;;;;;5578:3;;-1:-1:-1;5569:13:0;;5674:22;;5697:10;;5709:6;;5717:5;;5674:49;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;5674:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5674:49:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;5730:33:0;;;;;;;;-1:-1:-1;;;;;5730:33:0;;;-1:-1:-1;5739:10:0;;-1:-1:-1;5730:33:0;;;;;;;;;5797:3;-1:-1:-1;;;;;5770:46:0;5785:10;-1:-1:-1;;;;;5770:46:0;;5802:6;5810:5;5770:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;5770:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5830:4:0;;5350:490;-1:-1:-1;;;;5350:490:0:o;4900:377::-;4983:12;5032:6;5008:21;5018:10;5008:9;:21::i;:::-;:30;5004:44;;;5040:8;;;5004:44;5078:33;5104:6;5078:21;5088:10;5078:9;:21::i;:33::-;5064:10;5055:20;;;;:8;:20;;;;;:56;5134:26;5153:6;5134:14;5144:3;5134:9;:14::i;:26::-;-1:-1:-1;;;;;5118:13:0;;;;;;:8;:13;;;;;;;;;:42;;;;5167:33;;;;;;;5118:13;;5176:10;;5167:33;;;;;;;;;;5234:3;-1:-1:-1;;;;;5207:46:0;5222:10;-1:-1:-1;;;;;5207:46:0;;5239:6;5247:5;5207:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;5207:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5267:4:0;4900:377;;;;;:::o;869:113::-;927:7;950:6;;;;943:14;;;;-1:-1:-1;971:5:0;;;869:113::o;1049:133::-;1107:7;1135:5;;;1154:6;;;;1147:14;;

Swarm Source

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