ETH Price: $2,681.86 (+1.96%)
Gas: 1 Gwei

Token

Roto (ROTO)
 

Overview

Max Total Supply

21,000,000 ROTO

Holders

1,597

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
194.018516270178520841 ROTO

Value
$0.00
0x7897542c49d112CE88f48C46bDafc13a161674fA
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:
RotoToken

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

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

pragma solidity 0.4.24;

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

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


/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 {
    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);

    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);
}

/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * @dev https://github.com/ethereum/EIPs/issues/20
 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract StandardToken is ERC20 {

    using SafeMath for uint256;

    mapping(address => uint256) balances;

    uint256 totalSupply_;
    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;
    }

     /**
  * @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 RotoToken is StandardToken {

    string public constant name = "Roto"; // token name
    string public constant symbol = "ROTO"; // token symbol
    uint8 public constant decimals = 18; // token decimal

    uint256 public constant INITIAL_SUPPLY = 21000000 * (10 ** uint256(decimals));
    address owner;
    address roto = this;
    address manager;

    // keeps track of the ROTO currently staked in a tournament
    // the format is user address -> the tournament they staked in -> how much they staked
    mapping (address => mapping (bytes32 => uint256)) stakes;
    uint256 owner_transfer = 2000000 * (10** uint256(decimals));
  /**
   * @dev Constructor that gives msg.sender all of existing tokens.
   */

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

    modifier onlyManager {
      require(msg.sender==manager);
      _;
    }

    event ManagerChanged(address _contract);
    event RotoStaked(address _user, uint256 stake);
    event RotoReleased(address _user, uint256 stake);
    event RotoDestroyed(address _user, uint256 stake);
    event RotoRewarded(address _contract, address _user, uint256 reward);

    constructor() public {
        owner = msg.sender;
        totalSupply_ = INITIAL_SUPPLY;
        balances[roto] = INITIAL_SUPPLY;
        emit Transfer(0x0, roto, INITIAL_SUPPLY);
    }

    
    /**
     *  @dev A function that can only be called by RotoHive, transfers Roto Tokens out of the contract.
        @param _to address, the address that the ROTO will be transferred to
        @param _value ROTO, amount to transfer
        @return - whether the Roto was transferred succesfully
     */
    function transferFromContract(address _to, uint256 _value) public onlyOwner returns(bool) {
        require(_to!=address(0));
        require(_value<=balances[roto]);
        require(owner_transfer > 0);

        owner_transfer = owner_transfer.sub(_value);
        
        balances[roto] = balances[roto].sub(_value);
        balances[_to] = balances[_to].add(_value);

        emit Transfer(roto, _to, _value);
        return true;
    }

    /**
        @dev updates the helper contract(which will manage the tournament) with the new version
        @param _contract address, the address of the manager contract
        @return - whether the contract was successfully set
    */
    function setManagerContract(address _contract) external onlyOwner returns(bool) {
      //checks that the address sent isn't the 0 address, the owner or the token contract
      require(_contract!=address(0)&&_contract!=roto);

      // requires that the address sent be a contract
      uint size;
      assembly { size := extcodesize(_contract) }
      require(size > 0);

      manager = _contract;

      emit ManagerChanged(_contract);
      return true;
    }

    /**
        @dev - called by the manager contract to add back to the user their roto in the event that their submission was successful
        @param  _user address, the address of the user who submitted the rankings
        @param _tournamentID identifier
        @return boolean value, whether the roto were successfully released
    */
    function releaseRoto(address _user, bytes32 _tournamentID) external onlyManager returns(bool) {
        require(_user!=address(0));
        uint256 value = stakes[_user][_tournamentID];
        require(value > 0);

        stakes[_user][_tournamentID] = 0;
        balances[_user] = balances[_user].add(value);

        emit RotoReleased(_user, value);
        return true;
    }

    /**
        @dev - function called by manager contract to process the accounting aspects of the destroyRoto function
        @param  _user address, the address of the user who's stake will be destroyed
        @param _tournamentID identifier
        @return - a boolean value that reflects whether the roto were successfully destroyed
    */
    function destroyRoto(address _user, bytes32 _tournamentID) external onlyManager returns(bool) {
        require(_user!=address(0));
        uint256 value = stakes[_user][_tournamentID];
        require(value > 0);

        stakes[_user][_tournamentID] = 0;
        balances[roto] = balances[roto].add(value);

        emit RotoDestroyed(_user, value);
        return true;
    }

    /**
        @dev - called by the manager contract, runs the accounting portions of the staking process
        @param  _user address, the address of the user staking ROTO
        @param _tournamentID identifier
        @param _value ROTO, the amount the user is staking
        @return - whether the staking process went successfully
    */
    function stakeRoto(address _user, bytes32 _tournamentID, uint256 _value) external onlyManager returns(bool) {
        require(_user!=address(0));
        require(_value<=balances[_user]);
        require(stakes[_user][_tournamentID] == 0);

        balances[_user] = balances[_user].sub(_value);
        stakes[_user][_tournamentID] = _value;

        emit RotoStaked(_user, _value);
        return true;
    }
    
    /**
      @dev - called by the manager contract, used to reward non-staked submissions by users
      @param _user address, the address that will receive the rewarded ROTO
      @param _value ROTO, the amount of ROTO that they'll be rewarded
     */
    function rewardRoto(address _user, uint256 _value) external onlyManager returns(bool successful) {
      require(_user!=address(0));
      require(_value<=balances[roto]);

      balances[_user] = balances[_user].add(_value);
      balances[roto] = balances[roto].sub(_value);

      emit Transfer(roto, _user, _value);
      return true;
    }
    /**
        @dev - to be called by the manager contract to check if a given user has enough roto to
            stake the given amount
        @param  _user address, the address of the user who's attempting to stake ROTO
        @param _value ROTO, the amount they are attempting to stake
        @return - whether the user has enough balance to stake the received amount
    */
    function canStake(address _user, uint256 _value) public view onlyManager returns(bool) {
      require(_user!=address(0));
      require(_value<=balances[_user]);

      return true;
    }

    /**
      @dev Getter function for manager
     */
    function getManager() public view returns (address _manager) {
      return manager;
    }

    /**
      @dev - sets the owner address to a new one
      @param  _newOwner address
      @return - true if the address was changed successful
     */
    function changeOwner(address _newOwner) public onlyOwner returns(bool) {
      owner = _newOwner;
    }
}

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":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFromContract","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":"_user","type":"address"},{"name":"_value","type":"uint256"}],"name":"canStake","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_user","type":"address"},{"name":"_tournamentID","type":"bytes32"},{"name":"_value","type":"uint256"}],"name":"stakeRoto","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_user","type":"address"},{"name":"_tournamentID","type":"bytes32"}],"name":"destroyRoto","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_contract","type":"address"}],"name":"setManagerContract","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"changeOwner","outputs":[{"name":"","type":"bool"}],"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":"_user","type":"address"},{"name":"_value","type":"uint256"}],"name":"rewardRoto","outputs":[{"name":"successful","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getManager","outputs":[{"name":"_manager","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_user","type":"address"},{"name":"_tournamentID","type":"bytes32"}],"name":"releaseRoto","outputs":[{"name":"","type":"bool"}],"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"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_contract","type":"address"}],"name":"ManagerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_user","type":"address"},{"indexed":false,"name":"stake","type":"uint256"}],"name":"RotoStaked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_user","type":"address"},{"indexed":false,"name":"stake","type":"uint256"}],"name":"RotoReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_user","type":"address"},{"indexed":false,"name":"stake","type":"uint256"}],"name":"RotoDestroyed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_contract","type":"address"},{"indexed":false,"name":"_user","type":"address"},{"indexed":false,"name":"reward","type":"uint256"}],"name":"RotoRewarded","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"}]

608060405260048054600160a060020a031916301790556a01a784379d99db4200000060075534801561003157600080fd5b5060038054600160a060020a031916331790556a115eec47f6cf7e35000000600181905560048054600160a060020a03908116600090815260208181526040808320869055935484519586529351939092169390927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a36110ca806100c06000396000f30060806040526004361061011c5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610121578063095ea7b3146101ab57806318160ddd146101e35780631a88f3061461020a57806323b872dd1461022e5780632afbbacb146102585780632ff2e9dc1461027c578063313ce56714610291578063362f8833146102bc5780633cc136e0146102e357806357895ca214610307578063661884631461032857806370a082311461034c57806395d89b411461036d578063a6f9dae114610382578063a9059cbb146103a3578063af8b0ec7146103c7578063d5009584146103eb578063d560f6961461041c578063d73dd62314610440578063dd62ed3e14610464575b600080fd5b34801561012d57600080fd5b5061013661048b565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610170578181015183820152602001610158565b50505050905090810190601f16801561019d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101b757600080fd5b506101cf600160a060020a03600435166024356104c2565b604080519115158252519081900360200190f35b3480156101ef57600080fd5b506101f8610528565b60408051918252519081900360200190f35b34801561021657600080fd5b506101cf600160a060020a036004351660243561052e565b34801561023a57600080fd5b506101cf600160a060020a036004358116906024351660443561065a565b34801561026457600080fd5b506101cf600160a060020a03600435166024356107bf565b34801561028857600080fd5b506101f861081c565b34801561029d57600080fd5b506102a661082b565b6040805160ff9092168252519081900360200190f35b3480156102c857600080fd5b506101cf600160a060020a0360043516602435604435610830565b3480156102ef57600080fd5b506101cf600160a060020a036004351660243561094c565b34801561031357600080fd5b506101cf600160a060020a0360043516610a58565b34801561033457600080fd5b506101cf600160a060020a0360043516602435610b1c565b34801561035857600080fd5b506101f8600160a060020a0360043516610c0c565b34801561037957600080fd5b50610136610c27565b34801561038e57600080fd5b506101cf600160a060020a0360043516610c5e565b3480156103af57600080fd5b506101cf600160a060020a0360043516602435610ca9565b3480156103d357600080fd5b506101cf600160a060020a0360043516602435610d78565b3480156103f757600080fd5b50610400610e86565b60408051600160a060020a039092168252519081900360200190f35b34801561042857600080fd5b506101cf600160a060020a0360043516602435610e95565b34801561044c57600080fd5b506101cf600160a060020a0360043516602435610f95565b34801561047057600080fd5b506101f8600160a060020a036004358116906024351661102e565b60408051808201909152600481527f526f746f00000000000000000000000000000000000000000000000000000000602082015281565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60015490565b600354600090600160a060020a0316331461054857600080fd5b600160a060020a038316151561055d57600080fd5b600454600160a060020a031660009081526020819052604090205482111561058457600080fd5b60075460001061059357600080fd5b6007546105a6908363ffffffff61105916565b600755600454600160a060020a03166000908152602081905260409020546105d4908363ffffffff61105916565b600454600160a060020a03908116600090815260208190526040808220939093559085168152205461060c908363ffffffff61106b16565b600160a060020a03808516600081815260208181526040918290209490945560045481518781529151929493169260008051602061107f83398151915292918290030190a350600192915050565b6000600160a060020a038316151561067157600080fd5b600160a060020a03841660009081526020819052604090205482111561069657600080fd5b600160a060020a03841660009081526002602090815260408083203384529091529020548211156106c657600080fd5b600160a060020a0384166000908152602081905260409020546106ef908363ffffffff61105916565b600160a060020a038086166000908152602081905260408082209390935590851681522054610724908363ffffffff61106b16565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610766908363ffffffff61105916565b600160a060020a038086166000818152600260209081526040808320338452825291829020949094558051868152905192871693919260008051602061107f833981519152929181900390910190a35060019392505050565b600554600090600160a060020a031633146107d957600080fd5b600160a060020a03831615156107ee57600080fd5b600160a060020a03831660009081526020819052604090205482111561081357600080fd5b50600192915050565b6a115eec47f6cf7e3500000081565b601281565b600554600090600160a060020a0316331461084a57600080fd5b600160a060020a038416151561085f57600080fd5b600160a060020a03841660009081526020819052604090205482111561088457600080fd5b600160a060020a0384166000908152600660209081526040808320868452909152902054156108b257600080fd5b600160a060020a0384166000908152602081905260409020546108db908363ffffffff61105916565b600160a060020a03851660008181526020818152604080832094909455600681528382208783528152908390208590558251918252810184905281517fe153387693efb5c934c41f1bf7cb6ede6331a67cb182536524ada21717dc1be4929181900390910190a15060019392505050565b6005546000908190600160a060020a0316331461096857600080fd5b600160a060020a038416151561097d57600080fd5b50600160a060020a03831660009081526006602090815260408083208584529091528120549081116109ae57600080fd5b600160a060020a0380851660009081526006602090815260408083208784528252808320839055600454909316825281905220546109f2908263ffffffff61106b16565b600454600160a060020a0390811660009081526020818152604091829020939093558051918716825291810183905281517f89b6096c8def713e4534f4ec76ebe28f7372d5befb9ceef6010c8ec7475646c0929181900390910190a15060019392505050565b6003546000908190600160a060020a03163314610a7457600080fd5b600160a060020a03831615801590610a9a5750600454600160a060020a03848116911614155b1515610aa557600080fd5b50813b60008111610ab557600080fd5b60058054600160a060020a03851673ffffffffffffffffffffffffffffffffffffffff19909116811790915560408051918252517f198db6e425fb8aafd1823c6ca50be2d51e5764571a5ae0f0f21c6812e45def0b9181900360200190a150600192915050565b336000908152600260209081526040808320600160a060020a038616845290915281205480831115610b7157336000908152600260209081526040808320600160a060020a0388168452909152812055610ba6565b610b81818463ffffffff61105916565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526020819052604090205490565b60408051808201909152600481527f524f544f00000000000000000000000000000000000000000000000000000000602082015281565b600354600090600160a060020a03163314610c7857600080fd5b6003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03939093169290921790915590565b6000600160a060020a0383161515610cc057600080fd5b33600090815260208190526040902054821115610cdc57600080fd5b33600090815260208190526040902054610cfc908363ffffffff61105916565b3360009081526020819052604080822092909255600160a060020a03851681522054610d2e908363ffffffff61106b16565b600160a060020a0384166000818152602081815260409182902093909355805185815290519192339260008051602061107f8339815191529281900390910190a350600192915050565b600554600090600160a060020a03163314610d9257600080fd5b600160a060020a0383161515610da757600080fd5b600454600160a060020a0316600090815260208190526040902054821115610dce57600080fd5b600160a060020a038316600090815260208190526040902054610df7908363ffffffff61106b16565b600160a060020a038085166000908152602081905260408082209390935560045490911681522054610e2f908363ffffffff61105916565b60048054600160a060020a03908116600090815260208181526040918290209490945591548251868152925187831694919092169260008051602061107f833981519152929081900390910190a350600192915050565b600554600160a060020a031690565b6005546000908190600160a060020a03163314610eb157600080fd5b600160a060020a0384161515610ec657600080fd5b50600160a060020a0383166000908152600660209081526040808320858452909152812054908111610ef757600080fd5b600160a060020a038416600081815260066020908152604080832087845282528083208390559282528190522054610f35908263ffffffff61106b16565b600160a060020a0385166000818152602081815260409182902093909355805191825291810183905281517f689dc1bc77313e4cd787777c3e975ff2110d0a60c2532e54d3ddf324eb66070d929181900390910190a15060019392505050565b336000908152600260209081526040808320600160a060020a0386168452909152812054610fc9908363ffffffff61106b16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60008282111561106557fe5b50900390565b8181018281101561107857fe5b929150505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820de79243863c3a3c1d93f8c3b1de03718f1eab83a78a361ee2aac25fc6c6fe04f0029

Deployed Bytecode

0x60806040526004361061011c5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610121578063095ea7b3146101ab57806318160ddd146101e35780631a88f3061461020a57806323b872dd1461022e5780632afbbacb146102585780632ff2e9dc1461027c578063313ce56714610291578063362f8833146102bc5780633cc136e0146102e357806357895ca214610307578063661884631461032857806370a082311461034c57806395d89b411461036d578063a6f9dae114610382578063a9059cbb146103a3578063af8b0ec7146103c7578063d5009584146103eb578063d560f6961461041c578063d73dd62314610440578063dd62ed3e14610464575b600080fd5b34801561012d57600080fd5b5061013661048b565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610170578181015183820152602001610158565b50505050905090810190601f16801561019d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101b757600080fd5b506101cf600160a060020a03600435166024356104c2565b604080519115158252519081900360200190f35b3480156101ef57600080fd5b506101f8610528565b60408051918252519081900360200190f35b34801561021657600080fd5b506101cf600160a060020a036004351660243561052e565b34801561023a57600080fd5b506101cf600160a060020a036004358116906024351660443561065a565b34801561026457600080fd5b506101cf600160a060020a03600435166024356107bf565b34801561028857600080fd5b506101f861081c565b34801561029d57600080fd5b506102a661082b565b6040805160ff9092168252519081900360200190f35b3480156102c857600080fd5b506101cf600160a060020a0360043516602435604435610830565b3480156102ef57600080fd5b506101cf600160a060020a036004351660243561094c565b34801561031357600080fd5b506101cf600160a060020a0360043516610a58565b34801561033457600080fd5b506101cf600160a060020a0360043516602435610b1c565b34801561035857600080fd5b506101f8600160a060020a0360043516610c0c565b34801561037957600080fd5b50610136610c27565b34801561038e57600080fd5b506101cf600160a060020a0360043516610c5e565b3480156103af57600080fd5b506101cf600160a060020a0360043516602435610ca9565b3480156103d357600080fd5b506101cf600160a060020a0360043516602435610d78565b3480156103f757600080fd5b50610400610e86565b60408051600160a060020a039092168252519081900360200190f35b34801561042857600080fd5b506101cf600160a060020a0360043516602435610e95565b34801561044c57600080fd5b506101cf600160a060020a0360043516602435610f95565b34801561047057600080fd5b506101f8600160a060020a036004358116906024351661102e565b60408051808201909152600481527f526f746f00000000000000000000000000000000000000000000000000000000602082015281565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60015490565b600354600090600160a060020a0316331461054857600080fd5b600160a060020a038316151561055d57600080fd5b600454600160a060020a031660009081526020819052604090205482111561058457600080fd5b60075460001061059357600080fd5b6007546105a6908363ffffffff61105916565b600755600454600160a060020a03166000908152602081905260409020546105d4908363ffffffff61105916565b600454600160a060020a03908116600090815260208190526040808220939093559085168152205461060c908363ffffffff61106b16565b600160a060020a03808516600081815260208181526040918290209490945560045481518781529151929493169260008051602061107f83398151915292918290030190a350600192915050565b6000600160a060020a038316151561067157600080fd5b600160a060020a03841660009081526020819052604090205482111561069657600080fd5b600160a060020a03841660009081526002602090815260408083203384529091529020548211156106c657600080fd5b600160a060020a0384166000908152602081905260409020546106ef908363ffffffff61105916565b600160a060020a038086166000908152602081905260408082209390935590851681522054610724908363ffffffff61106b16565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610766908363ffffffff61105916565b600160a060020a038086166000818152600260209081526040808320338452825291829020949094558051868152905192871693919260008051602061107f833981519152929181900390910190a35060019392505050565b600554600090600160a060020a031633146107d957600080fd5b600160a060020a03831615156107ee57600080fd5b600160a060020a03831660009081526020819052604090205482111561081357600080fd5b50600192915050565b6a115eec47f6cf7e3500000081565b601281565b600554600090600160a060020a0316331461084a57600080fd5b600160a060020a038416151561085f57600080fd5b600160a060020a03841660009081526020819052604090205482111561088457600080fd5b600160a060020a0384166000908152600660209081526040808320868452909152902054156108b257600080fd5b600160a060020a0384166000908152602081905260409020546108db908363ffffffff61105916565b600160a060020a03851660008181526020818152604080832094909455600681528382208783528152908390208590558251918252810184905281517fe153387693efb5c934c41f1bf7cb6ede6331a67cb182536524ada21717dc1be4929181900390910190a15060019392505050565b6005546000908190600160a060020a0316331461096857600080fd5b600160a060020a038416151561097d57600080fd5b50600160a060020a03831660009081526006602090815260408083208584529091528120549081116109ae57600080fd5b600160a060020a0380851660009081526006602090815260408083208784528252808320839055600454909316825281905220546109f2908263ffffffff61106b16565b600454600160a060020a0390811660009081526020818152604091829020939093558051918716825291810183905281517f89b6096c8def713e4534f4ec76ebe28f7372d5befb9ceef6010c8ec7475646c0929181900390910190a15060019392505050565b6003546000908190600160a060020a03163314610a7457600080fd5b600160a060020a03831615801590610a9a5750600454600160a060020a03848116911614155b1515610aa557600080fd5b50813b60008111610ab557600080fd5b60058054600160a060020a03851673ffffffffffffffffffffffffffffffffffffffff19909116811790915560408051918252517f198db6e425fb8aafd1823c6ca50be2d51e5764571a5ae0f0f21c6812e45def0b9181900360200190a150600192915050565b336000908152600260209081526040808320600160a060020a038616845290915281205480831115610b7157336000908152600260209081526040808320600160a060020a0388168452909152812055610ba6565b610b81818463ffffffff61105916565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526020819052604090205490565b60408051808201909152600481527f524f544f00000000000000000000000000000000000000000000000000000000602082015281565b600354600090600160a060020a03163314610c7857600080fd5b6003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03939093169290921790915590565b6000600160a060020a0383161515610cc057600080fd5b33600090815260208190526040902054821115610cdc57600080fd5b33600090815260208190526040902054610cfc908363ffffffff61105916565b3360009081526020819052604080822092909255600160a060020a03851681522054610d2e908363ffffffff61106b16565b600160a060020a0384166000818152602081815260409182902093909355805185815290519192339260008051602061107f8339815191529281900390910190a350600192915050565b600554600090600160a060020a03163314610d9257600080fd5b600160a060020a0383161515610da757600080fd5b600454600160a060020a0316600090815260208190526040902054821115610dce57600080fd5b600160a060020a038316600090815260208190526040902054610df7908363ffffffff61106b16565b600160a060020a038085166000908152602081905260408082209390935560045490911681522054610e2f908363ffffffff61105916565b60048054600160a060020a03908116600090815260208181526040918290209490945591548251868152925187831694919092169260008051602061107f833981519152929081900390910190a350600192915050565b600554600160a060020a031690565b6005546000908190600160a060020a03163314610eb157600080fd5b600160a060020a0384161515610ec657600080fd5b50600160a060020a0383166000908152600660209081526040808320858452909152812054908111610ef757600080fd5b600160a060020a038416600081815260066020908152604080832087845282528083208390559282528190522054610f35908263ffffffff61106b16565b600160a060020a0385166000818152602081815260409182902093909355805191825291810183905281517f689dc1bc77313e4cd787777c3e975ff2110d0a60c2532e54d3ddf324eb66070d929181900390910190a15060019392505050565b336000908152600260209081526040808320600160a060020a0386168452909152812054610fc9908363ffffffff61106b16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60008282111561106557fe5b50900390565b8181018281101561107857fe5b929150505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820de79243863c3a3c1d93f8c3b1de03718f1eab83a78a361ee2aac25fc6c6fe04f0029

Swarm Source

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