ETH Price: $3,160.37 (+2.92%)
Gas: 1 Gwei

Token

2GetherBounty (2GB)
 

Overview

Max Total Supply

2,738,684 2GB

Holders

1,237

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,350 2GB

Value
$0.00
0x785036249bbeb50125fd856b4c43de1d534bbcaa
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

2Gether is a collaborative economic platform based on Big Data, AI, NLP, Machine Learning and Blockchain.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Token2GB

Compiler Version
v0.4.21+commit.dfe3193c

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2018-04-25
*/

pragma solidity ^0.4.13;

contract Ownable {
    address public owner;


    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);


    /**
    * @dev The Ownable constructor sets the original `owner` of the contract to the sender
    * account.
    */
    function Ownable() public {
        owner = msg.sender;
    }

    /**
    * @dev Throws if called by any account other than the owner.
    */
    modifier onlyOwner() {
        require(msg.sender == owner);
        _;
    }

    /**
    * @dev Allows the current owner to transfer control of the contract to a newOwner.
    * @param newOwner The address to transfer ownership to.
    */
    function transferOwnership(address newOwner) public onlyOwner {
        require(newOwner != address(0));
        emit OwnershipTransferred(owner, newOwner);
        owner = newOwner;
    }

}

contract ERC20Basic {
    function totalSupply() public view returns (uint256);
    function balanceOf(address who) public view returns (uint256);
    function transfer(address to, uint256 value) public returns (bool);
    event Transfer(address indexed from, address indexed to, uint256 value);
}

contract BasicToken is ERC20Basic {
    using SafeMath for uint256;

    mapping(address => uint256) balances;

    uint256 totalSupply_;

    /**
    * @dev total number of tokens in existence
    */
    function totalSupply() public view returns (uint256) {
        return totalSupply_;
    }

    /**
    * @dev transfer token for a specified address
    * @param _to The address to transfer to.
    * @param _value The amount to be transferred.
    */
    function transfer(address _to, uint256 _value) public returns (bool) {
        require(_to != address(0));
        require(_value <= balances[msg.sender]);

        balances[msg.sender] = balances[msg.sender].sub(_value);
        balances[_to] = balances[_to].add(_value);
        emit Transfer(msg.sender, _to, _value);
        return true;
    }

    /**
    * @dev Gets the balance of the specified address.
    * @param _owner The address to query the the balance of.
    * @return An uint256 representing the amount owned by the passed address.
    */
    function balanceOf(address _owner) public view returns (uint256 balance) {
        return balances[_owner];
    }

}

contract BurnableToken is BasicToken, Ownable {

    event Burn(address indexed burner, uint256 value);

    function burn(address _who, uint256 _value) public onlyOwner {
        require(_value <= balances[_who]);
        // no need to require value <= totalSupply, since that would imply the
        // sender's balance is greater than the totalSupply, which *should* be an assertion failure

        balances[_who] = balances[_who].sub(_value);
        totalSupply_ = totalSupply_.sub(_value);
        emit Burn(_who, _value);
        emit Transfer(_who, address(0), _value);
    }

}

contract ERC20 is ERC20Basic {
    function allowance(address owner, address spender) public view returns (uint256);
    function transferFrom(address from, address to, uint256 value) public returns (bool);
    function approve(address spender, uint256 value) public returns (bool);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

contract StandardToken is ERC20, BasicToken {

    mapping (address => mapping (address => uint256)) internal allowed;


    /**
    * @dev Transfer tokens from one address to another
    * @param _from address The address which you want to send tokens from
    * @param _to address The address which you want to transfer to
    * @param _value uint256 the amount of tokens to be transferred
    */
    function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
        require(_to != address(0));
        require(_value <= balances[_from]);
        require(_value <= allowed[_from][msg.sender]);

        balances[_from] = balances[_from].sub(_value);
        balances[_to] = balances[_to].add(_value);
        allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
        emit Transfer(_from, _to, _value);
        return true;
    }

    /**
    * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
    *
    * 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
    * @param _spender The address which will spend the funds.
    * @param _value The amount of tokens to be spent.
    */
    function approve(address _spender, uint256 _value) public returns (bool) {
        allowed[msg.sender][_spender] = _value;
        emit Approval(msg.sender, _spender, _value);
        return true;
    }

    /**
    * @dev Function to check the amount of tokens that an owner allowed to a spender.
    * @param _owner address The address which owns the funds.
    * @param _spender address The address which will spend the funds.
    * @return A uint256 specifying the amount of tokens still available for the spender.
    */
    function allowance(address _owner, address _spender) public view returns (uint256) {
        return allowed[_owner][_spender];
    }

    /**
    * @dev Increase the amount of tokens that an owner allowed to a spender.
    *
    * approve should be called when allowed[_spender] == 0. To increment
    * allowed value is better to use this function to avoid 2 calls (and wait until
    * the first transaction is mined)
    * From MonolithDAO Token.sol
    * @param _spender The address which will spend the funds.
    * @param _addedValue The amount of tokens to increase the allowance by.
    */
    function increaseApproval(address _spender, uint _addedValue) public returns (bool) {
        allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
        emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
        return true;
    }

    /**
    * @dev Decrease the amount of tokens that an owner allowed to a spender.
    *
    * approve should be called when allowed[_spender] == 0. To decrement
    * allowed value is better to use this function to avoid 2 calls (and wait until
    * the first transaction is mined)
    * From MonolithDAO Token.sol
    * @param _spender The address which will spend the funds.
    * @param _subtractedValue The amount of tokens to decrease the allowance by.
    */
    function decreaseApproval(address _spender, uint _subtractedValue) public returns (bool) {
        uint oldValue = allowed[msg.sender][_spender];
        if (_subtractedValue > oldValue) {
            allowed[msg.sender][_spender] = 0;
        } else {
            allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
        }
        emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
        return true;
    }

}

contract Exchangable is Ownable, BurnableToken {

    Token2GT public token2GT;

    event Exchange(uint tokensAmount, address address2GB, address address2GT);

    function exchangeToken(uint _tokensAmount, address _address2GB, address _address2GT) external onlyOwner{
        burn(_address2GB, _tokensAmount);
        token2GT.exchange(_tokensAmount, _address2GT);
        emit Exchange(_tokensAmount, _address2GB, _address2GT);
    }

    function addContractAddress(address _contractAddress) external onlyOwner{
        token2GT = Token2GT(_contractAddress);
    }

}

contract DetailedERC20 is ERC20 {
    string public name;
    string public symbol;
    uint8 public decimals;

    function DetailedERC20(string _name, string _symbol, uint8 _decimals) public {
        name = _name;
        symbol = _symbol;
        decimals = _decimals;
    }
}

contract Token2GB is StandardToken, DetailedERC20, Exchangable {
    

    function Token2GB(address _2GetherAddress) 
        DetailedERC20("2GetherBounty", "2GB", 18)       
        public 
    {
        uint amount = 1000000000000000000000000000;        
        totalSupply_ = amount;
        balances[_2GetherAddress] = amount;
    }

}

library SafeMath {

    /**
    * @dev Multiplies two numbers, throws on overflow.
    */
    function mul(uint256 a, uint256 b) internal pure returns (uint256 c) {
        if (a == 0) {
            return 0;
        }
        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 a / b;
    }

    /**
    * @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 c) {
        c = a + b;
        assert(c >= a);
        return c;
    }
}

interface Token2GT { function exchange(uint _tokensAmount, address _address2GT) external; }

Contract Security Audit

Contract ABI

[{"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":"","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":"","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":"token2GT","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","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":"_tokensAmount","type":"uint256"},{"name":"_address2GB","type":"address"},{"name":"_address2GT","type":"address"}],"name":"exchangeToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_who","type":"address"},{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_contractAddress","type":"address"}],"name":"addContractAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_2GetherAddress","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"tokensAmount","type":"uint256"},{"indexed":false,"name":"address2GB","type":"address"},{"indexed":false,"name":"address2GT","type":"address"}],"name":"Exchange","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"},{"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"}]

6060604052341561000f57600080fd5b604051602080610efe83398101604052808051915060009050604080519081016040908152600d82527f32476574686572426f756e7479000000000000000000000000000000000000006020830152805190810160405260038082527f324742000000000000000000000000000000000000000000000000000000000060208301526012908380516100a592916020019061011c565b5060048280516100b992916020019061011c565b5060058054600160a060020a033381166101000261010060a860020a031960ff90951660ff1990931692909217939093161790556b033b2e3c9fd0803ce800000060018190559416600090815260208190526040902093909355506101b7915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061015d57805160ff191683800117855561018a565b8280016001018555821561018a579182015b8281111561018a57825182559160200191906001019061016f565b5061019692915061019a565b5090565b6101b491905b8082111561019657600081556001016101a0565b90565b610d38806101c66000396000f3006060604052600436106100f05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100f5578063095ea7b31461017f57806318160ddd146101b557806323b872dd146101da578063313ce567146102025780635945bdc51461022b578063661884631461025a57806370a082311461027c5780638da5cb5b1461029b57806395d89b41146102ae57806396a34fc7146102c15780639dc29fac146102eb578063a9059cbb1461030d578063b11ce2db1461032f578063d73dd6231461034e578063dd62ed3e14610370578063f2fde38b14610395575b600080fd5b341561010057600080fd5b6101086103b4565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561014457808201518382015260200161012c565b50505050905090810190601f1680156101715780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561018a57600080fd5b6101a1600160a060020a0360043516602435610452565b604051901515815260200160405180910390f35b34156101c057600080fd5b6101c86104be565b60405190815260200160405180910390f35b34156101e557600080fd5b6101a1600160a060020a03600435811690602435166044356104c4565b341561020d57600080fd5b610215610644565b60405160ff909116815260200160405180910390f35b341561023657600080fd5b61023e61064d565b604051600160a060020a03909116815260200160405180910390f35b341561026557600080fd5b6101a1600160a060020a036004351660243561065c565b341561028757600080fd5b6101c8600160a060020a0360043516610756565b34156102a657600080fd5b61023e610771565b34156102b957600080fd5b610108610785565b34156102cc57600080fd5b6102e9600435600160a060020a03602435811690604435166107f0565b005b34156102f657600080fd5b6102e9600160a060020a03600435166024356108ef565b341561031857600080fd5b6101a1600160a060020a0360043516602435610a0c565b341561033a57600080fd5b6102e9600160a060020a0360043516610b1e565b341561035957600080fd5b6101a1600160a060020a0360043516602435610b6d565b341561037b57600080fd5b6101c8600160a060020a0360043581169060243516610c11565b34156103a057600080fd5b6102e9600160a060020a0360043516610c3c565b60038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561044a5780601f1061041f5761010080835404028352916020019161044a565b820191906000526020600020905b81548152906001019060200180831161042d57829003601f168201915b505050505081565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60015490565b6000600160a060020a03831615156104db57600080fd5b600160a060020a03841660009081526020819052604090205482111561050057600080fd5b600160a060020a038085166000908152600260209081526040808320339094168352929052205482111561053357600080fd5b600160a060020a03841660009081526020819052604090205461055c908363ffffffff610ce716565b600160a060020a038086166000908152602081905260408082209390935590851681522054610591908363ffffffff610cf916565b600160a060020a03808516600090815260208181526040808320949094558783168252600281528382203390931682529190915220546105d7908363ffffffff610ce716565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b60055460ff1681565b600654600160a060020a031681565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054808311156106b957600160a060020a0333811660009081526002602090815260408083209388168352929052908120556106f0565b6106c9818463ffffffff610ce716565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600160a060020a031660009081526020819052604090205490565b6005546101009004600160a060020a031681565b60048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561044a5780601f1061041f5761010080835404028352916020019161044a565b60055433600160a060020a03908116610100909204161461081057600080fd5b61081a82846108ef565b600654600160a060020a0316630fe2abcf84836040517c010000000000000000000000000000000000000000000000000000000063ffffffff85160281526004810192909252600160a060020a03166024820152604401600060405180830381600087803b151561088a57600080fd5b5af1151561089757600080fd5b5050507f620a1a2e9d20375f2fd99037c3b1c49ac4cab565bec809851a504218c4f11d97838383604051928352600160a060020a039182166020840152166040808301919091526060909101905180910390a1505050565b60055433600160a060020a03908116610100909204161461090f57600080fd5b600160a060020a03821660009081526020819052604090205481111561093457600080fd5b600160a060020a03821660009081526020819052604090205461095d908263ffffffff610ce716565b600160a060020a038316600090815260208190526040902055600154610989908263ffffffff610ce716565b600155600160a060020a0382167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58260405190815260200160405180910390a26000600160a060020a0383167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405190815260200160405180910390a35050565b6000600160a060020a0383161515610a2357600080fd5b600160a060020a033316600090815260208190526040902054821115610a4857600080fd5b600160a060020a033316600090815260208190526040902054610a71908363ffffffff610ce716565b600160a060020a033381166000908152602081905260408082209390935590851681522054610aa6908363ffffffff610cf916565b60008085600160a060020a0316600160a060020a031681526020019081526020016000208190555082600160a060020a031633600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a350600192915050565b60055433600160a060020a039081166101009092041614610b3e57600080fd5b6006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610ba5908363ffffffff610cf916565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60055433600160a060020a039081166101009092041614610c5c57600080fd5b600160a060020a0381161515610c7157600080fd5b600554600160a060020a03808316916101009004167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360058054600160a060020a039092166101000274ffffffffffffffffffffffffffffffffffffffff0019909216919091179055565b600082821115610cf357fe5b50900390565b81810182811015610d0657fe5b929150505600a165627a7a7230582018f214948cad565a925b22e8c6d15d22f63d114d716c654ece19a46479a759f6002900000000000000000000000040a1c574cfec7d8bc03b6ca0d739972596f37f31

Deployed Bytecode

0x6060604052600436106100f05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100f5578063095ea7b31461017f57806318160ddd146101b557806323b872dd146101da578063313ce567146102025780635945bdc51461022b578063661884631461025a57806370a082311461027c5780638da5cb5b1461029b57806395d89b41146102ae57806396a34fc7146102c15780639dc29fac146102eb578063a9059cbb1461030d578063b11ce2db1461032f578063d73dd6231461034e578063dd62ed3e14610370578063f2fde38b14610395575b600080fd5b341561010057600080fd5b6101086103b4565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561014457808201518382015260200161012c565b50505050905090810190601f1680156101715780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561018a57600080fd5b6101a1600160a060020a0360043516602435610452565b604051901515815260200160405180910390f35b34156101c057600080fd5b6101c86104be565b60405190815260200160405180910390f35b34156101e557600080fd5b6101a1600160a060020a03600435811690602435166044356104c4565b341561020d57600080fd5b610215610644565b60405160ff909116815260200160405180910390f35b341561023657600080fd5b61023e61064d565b604051600160a060020a03909116815260200160405180910390f35b341561026557600080fd5b6101a1600160a060020a036004351660243561065c565b341561028757600080fd5b6101c8600160a060020a0360043516610756565b34156102a657600080fd5b61023e610771565b34156102b957600080fd5b610108610785565b34156102cc57600080fd5b6102e9600435600160a060020a03602435811690604435166107f0565b005b34156102f657600080fd5b6102e9600160a060020a03600435166024356108ef565b341561031857600080fd5b6101a1600160a060020a0360043516602435610a0c565b341561033a57600080fd5b6102e9600160a060020a0360043516610b1e565b341561035957600080fd5b6101a1600160a060020a0360043516602435610b6d565b341561037b57600080fd5b6101c8600160a060020a0360043581169060243516610c11565b34156103a057600080fd5b6102e9600160a060020a0360043516610c3c565b60038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561044a5780601f1061041f5761010080835404028352916020019161044a565b820191906000526020600020905b81548152906001019060200180831161042d57829003601f168201915b505050505081565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60015490565b6000600160a060020a03831615156104db57600080fd5b600160a060020a03841660009081526020819052604090205482111561050057600080fd5b600160a060020a038085166000908152600260209081526040808320339094168352929052205482111561053357600080fd5b600160a060020a03841660009081526020819052604090205461055c908363ffffffff610ce716565b600160a060020a038086166000908152602081905260408082209390935590851681522054610591908363ffffffff610cf916565b600160a060020a03808516600090815260208181526040808320949094558783168252600281528382203390931682529190915220546105d7908363ffffffff610ce716565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b60055460ff1681565b600654600160a060020a031681565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054808311156106b957600160a060020a0333811660009081526002602090815260408083209388168352929052908120556106f0565b6106c9818463ffffffff610ce716565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600160a060020a031660009081526020819052604090205490565b6005546101009004600160a060020a031681565b60048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561044a5780601f1061041f5761010080835404028352916020019161044a565b60055433600160a060020a03908116610100909204161461081057600080fd5b61081a82846108ef565b600654600160a060020a0316630fe2abcf84836040517c010000000000000000000000000000000000000000000000000000000063ffffffff85160281526004810192909252600160a060020a03166024820152604401600060405180830381600087803b151561088a57600080fd5b5af1151561089757600080fd5b5050507f620a1a2e9d20375f2fd99037c3b1c49ac4cab565bec809851a504218c4f11d97838383604051928352600160a060020a039182166020840152166040808301919091526060909101905180910390a1505050565b60055433600160a060020a03908116610100909204161461090f57600080fd5b600160a060020a03821660009081526020819052604090205481111561093457600080fd5b600160a060020a03821660009081526020819052604090205461095d908263ffffffff610ce716565b600160a060020a038316600090815260208190526040902055600154610989908263ffffffff610ce716565b600155600160a060020a0382167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58260405190815260200160405180910390a26000600160a060020a0383167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405190815260200160405180910390a35050565b6000600160a060020a0383161515610a2357600080fd5b600160a060020a033316600090815260208190526040902054821115610a4857600080fd5b600160a060020a033316600090815260208190526040902054610a71908363ffffffff610ce716565b600160a060020a033381166000908152602081905260408082209390935590851681522054610aa6908363ffffffff610cf916565b60008085600160a060020a0316600160a060020a031681526020019081526020016000208190555082600160a060020a031633600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a350600192915050565b60055433600160a060020a039081166101009092041614610b3e57600080fd5b6006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610ba5908363ffffffff610cf916565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60055433600160a060020a039081166101009092041614610c5c57600080fd5b600160a060020a0381161515610c7157600080fd5b600554600160a060020a03808316916101009004167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360058054600160a060020a039092166101000274ffffffffffffffffffffffffffffffffffffffff0019909216919091179055565b600082821115610cf357fe5b50900390565b81810182811015610d0657fe5b929150505600a165627a7a7230582018f214948cad565a925b22e8c6d15d22f63d114d716c654ece19a46479a759f60029

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000040a1c574cfec7d8bc03b6ca0d739972596f37f31

-----Decoded View---------------
Arg [0] : _2GetherAddress (address): 0x40A1c574cFeC7D8Bc03B6Ca0d739972596f37F31

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000040a1c574cfec7d8bc03b6ca0d739972596f37f31


Swarm Source

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