ETH Price: $3,011.55 (+4.32%)
Gas: 4 Gwei

Token

Decenturion Token (DCNT)
 

Overview

Max Total Supply

29,998,859 DCNT

Holders

2,562 (0.00%)

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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

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

Contract Source Code Verified (Exact Match)

Contract Name:
DecenturionToken

Compiler Version
v0.4.23+commit.124ca40d

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2018-05-13
*/

pragma solidity ^0.4.21;

// File: zeppelin-solidity/contracts/math/SafeMath.sol

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

// File: contracts/BonusStrategy.sol

contract BonusStrategy {
    using SafeMath for uint;

    uint public defaultAmount = 1*10**18;
    uint public limit = 300*1000*10**18; // 300.000  DCNT
    uint public currentAmount = 0;
    uint[] public startTimes;
    uint[] public endTimes;
    uint[] public amounts;

    constructor(
        uint[] _startTimes,
        uint[] _endTimes,
        uint[] _amounts
        ) public 
    {
        require(_startTimes.length == _endTimes.length && _endTimes.length == _amounts.length);
        startTimes = _startTimes;
        endTimes = _endTimes;
        amounts = _amounts;
    }

    function isStrategy() external pure returns (bool) {
        return true;
    }

    function getCurrentBonus() public view returns (uint bonus) {
        if (currentAmount >= limit) {
            currentAmount = currentAmount.add(defaultAmount);
            return defaultAmount;
        }
        for (uint8 i = 0; i < amounts.length; i++) {
            if (now >= startTimes[i] && now <= endTimes[i]) {
                bonus = amounts[i];
                currentAmount = currentAmount.add(bonus);
                return bonus;
            }
        }
        currentAmount = currentAmount.add(defaultAmount);
        return defaultAmount;
    }

}

// File: zeppelin-solidity/contracts/token/ERC20/ERC20Basic.sol

/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/179
 */
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);
}

// File: zeppelin-solidity/contracts/token/ERC20/BasicToken.sol

/**
 * @title Basic token
 * @dev Basic version of StandardToken, with no allowances.
 */
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) {
    return balances[_owner];
  }

}

// File: zeppelin-solidity/contracts/token/ERC20/BurnableToken.sol

/**
 * @title Burnable Token
 * @dev Token that can be irreversibly burned (destroyed).
 */
contract BurnableToken is BasicToken {

  event Burn(address indexed burner, uint256 value);

  /**
   * @dev Burns a specific amount of tokens.
   * @param _value The amount of token to be burned.
   */
  function burn(uint256 _value) public {
    _burn(msg.sender, _value);
  }

  function _burn(address _who, uint256 _value) internal {
    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);
  }
}

// File: zeppelin-solidity/contracts/token/ERC20/ERC20.sol

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

// File: zeppelin-solidity/contracts/token/ERC20/StandardToken.sol

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

}

// File: contracts/InfoBurnableToken.sol

contract InfoBurnableToken is BurnableToken, StandardToken {
    string message = "No sufficient funds";
    address public manager;

    event NoFunds(address _who, string _message);

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

    constructor(address _manager) public {
        require(address(_manager) != 0);
        manager = _manager;
    }

    function burn(uint256 _value) public {
        if (balances[msg.sender] < _value){
            emit NoFunds(msg.sender, message);
        }else {
            _burn(msg.sender, _value);
        }
    }

    function burnPassportToken(address _from, uint256 _value) onlyManager public returns (bool) {
        if (_value <= balances[_from]){
            _burn(_from, _value);
            return true;
        }
        emit NoFunds(_from, message);
        return false;
    }

    function transferManager(address _newManager) onlyManager public returns (bool) {
        require(address(_newManager) != 0);
        manager = _newManager;
        return true;
    }

}

// File: contracts/DecenturionToken.sol

contract DecenturionToken is InfoBurnableToken {
    using SafeMath for uint;

    string constant public name = "Decenturion Token";
    string constant public symbol = "DCNT";
    uint constant public decimals = 18;
    uint constant public deployerAmount = 20 * (10 ** 6) * (10 ** decimals); // 20 000 000 DCNT
    uint constant public managerAmount = 10 * (10 ** 6) * (10 ** decimals); // 10 000 000 DCNT

    constructor(address _manager) InfoBurnableToken(_manager) public {
        totalSupply_ = 30 * (10 ** 6) * (10 ** decimals); // 30 000 000 DCNT
        balances[msg.sender] = deployerAmount;
        balances[manager] = managerAmount;
    }

}

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":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnPassportToken","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":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"managerAmount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"manager","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":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"deployerAmount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":"_newManager","type":"address"}],"name":"transferManager","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":[{"name":"_manager","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_who","type":"address"},{"indexed":false,"name":"_message","type":"string"}],"name":"NoFunds","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":"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"}]

60c0604052601360808190527f4e6f2073756666696369656e742066756e64730000000000000000000000000060a090815261003e91600391906100db565b5034801561004b57600080fd5b50604051602080610e4a833981016040525180600160a060020a038116151561007357600080fd5b60048054600160a060020a031916600160a060020a039283161781556a18d0bf423c03d8de0000006001553382166000908152602081905260408082206a108b2a2c2802909400000090559154909216825290206a084595161401484a000000905550610176565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061011c57805160ff1916838001178555610149565b82800160010185558215610149579182015b8281111561014957825182559160200191906001019061012e565b50610155929150610159565b5090565b61017391905b80821115610155576000815560010161015f565b90565b610cc5806101856000396000f3006080604052600436106100f05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100f5578063095ea7b31461017f57806317dbe4f1146101b757806318160ddd146101db57806323b872dd14610202578063313ce5671461022c5780633c0960051461024157806342966c6814610256578063481c6a751461027057806366188463146102a157806370a08231146102c557806395d89b41146102e6578063a48c98dd146102fb578063a9059cbb14610310578063ba0e930a14610334578063d73dd62314610355578063dd62ed3e14610379575b600080fd5b34801561010157600080fd5b5061010a6103a0565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014457818101518382015260200161012c565b50505050905090810190601f1680156101715780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018b57600080fd5b506101a3600160a060020a03600435166024356103d7565b604080519115158252519081900360200190f35b3480156101c357600080fd5b506101a3600160a060020a0360043516602435610442565b3480156101e757600080fd5b506101f0610558565b60408051918252519081900360200190f35b34801561020e57600080fd5b506101a3600160a060020a036004358116906024351660443561055e565b34801561023857600080fd5b506101f06106de565b34801561024d57600080fd5b506101f06106e3565b34801561026257600080fd5b5061026e6004356106f2565b005b34801561027c57600080fd5b506102856107e5565b60408051600160a060020a039092168252519081900360200190f35b3480156102ad57600080fd5b506101a3600160a060020a03600435166024356107f4565b3480156102d157600080fd5b506101f0600160a060020a03600435166108ed565b3480156102f257600080fd5b5061010a610908565b34801561030757600080fd5b506101f061093f565b34801561031c57600080fd5b506101a3600160a060020a036004351660243561094e565b34801561034057600080fd5b506101a3600160a060020a0360043516610a47565b34801561036157600080fd5b506101a3600160a060020a0360043516602435610aac565b34801561038557600080fd5b506101f0600160a060020a0360043581169060243516610b4e565b60408051808201909152601181527f446563656e747572696f6e20546f6b656e000000000000000000000000000000602082015281565b600160a060020a03338116600081815260026020908152604080832094871680845294825280832086905580518681529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b60045460009033600160a060020a0390811691161461046057600080fd5b600160a060020a0383166000908152602081905260409020548211610491576104898383610b79565b50600161043c565b60408051600160a060020a03851681526020810182815260038054600260001961010060018416150201909116049383018490527f656656652beb062ee3929a63a2a02a94022adf0d99a3d280508b372d2626fd8c9387939192906060830190849080156105405780601f1061051557610100808354040283529160200191610540565b820191906000526020600020905b81548152906001019060200180831161052357829003601f168201915b5050935050505060405180910390a150600092915050565b60015490565b6000600160a060020a038316151561057557600080fd5b600160a060020a03841660009081526020819052604090205482111561059a57600080fd5b600160a060020a03808516600090815260026020908152604080832033909416835292905220548211156105cd57600080fd5b600160a060020a0384166000908152602081905260409020546105f6908363ffffffff610c7a16565b600160a060020a03808616600090815260208190526040808220939093559085168152205461062b908363ffffffff610c8c16565b600160a060020a0380851660009081526020818152604080832094909455878316825260028152838220339093168252919091522054610671908363ffffffff610c7a16565b600160a060020a038086166000818152600260209081526040808320338616845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b601281565b6a084595161401484a00000081565b600160a060020a0333166000908152602081905260409020548111156107d8576040805133600160a060020a03811682526020820183815260038054600260018216156101000260001901909116049484018590527f656656652beb062ee3929a63a2a02a94022adf0d99a3d280508b372d2626fd8c94929390929091906060830190849080156107c45780601f10610799576101008083540402835291602001916107c4565b820191906000526020600020905b8154815290600101906020018083116107a757829003601f168201915b5050935050505060405180910390a16107e2565b6107e23382610b79565b50565b600454600160a060020a031681565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120548083111561085157600160a060020a033381166000908152600260209081526040808320938816835292905290812055610888565b610861818463ffffffff610c7a16565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529482529182902054825190815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35060019392505050565b600160a060020a031660009081526020819052604090205490565b60408051808201909152600481527f44434e5400000000000000000000000000000000000000000000000000000000602082015281565b6a108b2a2c2802909400000081565b6000600160a060020a038316151561096557600080fd5b600160a060020a03331660009081526020819052604090205482111561098a57600080fd5b600160a060020a0333166000908152602081905260409020546109b3908363ffffffff610c7a16565b600160a060020a0333811660009081526020819052604080822093909355908516815220546109e8908363ffffffff610c8c16565b600160a060020a03808516600081815260208181526040918290209490945580518681529051919333909316927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350600192915050565b60045460009033600160a060020a03908116911614610a6557600080fd5b600160a060020a0382161515610a7a57600080fd5b5060048054600160a060020a03831673ffffffffffffffffffffffffffffffffffffffff199091161790556001919050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610ae4908363ffffffff610c8c16565b600160a060020a0333811660008181526002602090815260408083209489168084529482529182902085905581519485529051929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600160a060020a038216600090815260208190526040902054811115610b9e57600080fd5b600160a060020a038216600090815260208190526040902054610bc7908263ffffffff610c7a16565b600160a060020a038316600090815260208190526040902055600154610bf3908263ffffffff610c7a16565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600082821115610c8657fe5b50900390565b8181018281101561043c57fe00a165627a7a72305820785539db1a8fb482021adebc8363e389f8b3fedabff0c2cdcc98184d32653de30029000000000000000000000000b12b490b6b33d2107cfa8f8eb106e6db641b187a

Deployed Bytecode

0x6080604052600436106100f05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100f5578063095ea7b31461017f57806317dbe4f1146101b757806318160ddd146101db57806323b872dd14610202578063313ce5671461022c5780633c0960051461024157806342966c6814610256578063481c6a751461027057806366188463146102a157806370a08231146102c557806395d89b41146102e6578063a48c98dd146102fb578063a9059cbb14610310578063ba0e930a14610334578063d73dd62314610355578063dd62ed3e14610379575b600080fd5b34801561010157600080fd5b5061010a6103a0565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014457818101518382015260200161012c565b50505050905090810190601f1680156101715780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018b57600080fd5b506101a3600160a060020a03600435166024356103d7565b604080519115158252519081900360200190f35b3480156101c357600080fd5b506101a3600160a060020a0360043516602435610442565b3480156101e757600080fd5b506101f0610558565b60408051918252519081900360200190f35b34801561020e57600080fd5b506101a3600160a060020a036004358116906024351660443561055e565b34801561023857600080fd5b506101f06106de565b34801561024d57600080fd5b506101f06106e3565b34801561026257600080fd5b5061026e6004356106f2565b005b34801561027c57600080fd5b506102856107e5565b60408051600160a060020a039092168252519081900360200190f35b3480156102ad57600080fd5b506101a3600160a060020a03600435166024356107f4565b3480156102d157600080fd5b506101f0600160a060020a03600435166108ed565b3480156102f257600080fd5b5061010a610908565b34801561030757600080fd5b506101f061093f565b34801561031c57600080fd5b506101a3600160a060020a036004351660243561094e565b34801561034057600080fd5b506101a3600160a060020a0360043516610a47565b34801561036157600080fd5b506101a3600160a060020a0360043516602435610aac565b34801561038557600080fd5b506101f0600160a060020a0360043581169060243516610b4e565b60408051808201909152601181527f446563656e747572696f6e20546f6b656e000000000000000000000000000000602082015281565b600160a060020a03338116600081815260026020908152604080832094871680845294825280832086905580518681529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b60045460009033600160a060020a0390811691161461046057600080fd5b600160a060020a0383166000908152602081905260409020548211610491576104898383610b79565b50600161043c565b60408051600160a060020a03851681526020810182815260038054600260001961010060018416150201909116049383018490527f656656652beb062ee3929a63a2a02a94022adf0d99a3d280508b372d2626fd8c9387939192906060830190849080156105405780601f1061051557610100808354040283529160200191610540565b820191906000526020600020905b81548152906001019060200180831161052357829003601f168201915b5050935050505060405180910390a150600092915050565b60015490565b6000600160a060020a038316151561057557600080fd5b600160a060020a03841660009081526020819052604090205482111561059a57600080fd5b600160a060020a03808516600090815260026020908152604080832033909416835292905220548211156105cd57600080fd5b600160a060020a0384166000908152602081905260409020546105f6908363ffffffff610c7a16565b600160a060020a03808616600090815260208190526040808220939093559085168152205461062b908363ffffffff610c8c16565b600160a060020a0380851660009081526020818152604080832094909455878316825260028152838220339093168252919091522054610671908363ffffffff610c7a16565b600160a060020a038086166000818152600260209081526040808320338616845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b601281565b6a084595161401484a00000081565b600160a060020a0333166000908152602081905260409020548111156107d8576040805133600160a060020a03811682526020820183815260038054600260018216156101000260001901909116049484018590527f656656652beb062ee3929a63a2a02a94022adf0d99a3d280508b372d2626fd8c94929390929091906060830190849080156107c45780601f10610799576101008083540402835291602001916107c4565b820191906000526020600020905b8154815290600101906020018083116107a757829003601f168201915b5050935050505060405180910390a16107e2565b6107e23382610b79565b50565b600454600160a060020a031681565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120548083111561085157600160a060020a033381166000908152600260209081526040808320938816835292905290812055610888565b610861818463ffffffff610c7a16565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529482529182902054825190815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35060019392505050565b600160a060020a031660009081526020819052604090205490565b60408051808201909152600481527f44434e5400000000000000000000000000000000000000000000000000000000602082015281565b6a108b2a2c2802909400000081565b6000600160a060020a038316151561096557600080fd5b600160a060020a03331660009081526020819052604090205482111561098a57600080fd5b600160a060020a0333166000908152602081905260409020546109b3908363ffffffff610c7a16565b600160a060020a0333811660009081526020819052604080822093909355908516815220546109e8908363ffffffff610c8c16565b600160a060020a03808516600081815260208181526040918290209490945580518681529051919333909316927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350600192915050565b60045460009033600160a060020a03908116911614610a6557600080fd5b600160a060020a0382161515610a7a57600080fd5b5060048054600160a060020a03831673ffffffffffffffffffffffffffffffffffffffff199091161790556001919050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610ae4908363ffffffff610c8c16565b600160a060020a0333811660008181526002602090815260408083209489168084529482529182902085905581519485529051929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600160a060020a038216600090815260208190526040902054811115610b9e57600080fd5b600160a060020a038216600090815260208190526040902054610bc7908263ffffffff610c7a16565b600160a060020a038316600090815260208190526040902055600154610bf3908263ffffffff610c7a16565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600082821115610c8657fe5b50900390565b8181018281101561043c57fe00a165627a7a72305820785539db1a8fb482021adebc8363e389f8b3fedabff0c2cdcc98184d32653de30029

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

000000000000000000000000b12b490b6b33d2107cfa8f8eb106e6db641b187a

-----Decoded View---------------
Arg [0] : _manager (address): 0xB12B490B6B33d2107CFa8f8Eb106E6db641b187a

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000b12b490b6b33d2107cfa8f8eb106e6db641b187a


Swarm Source

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