Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Platform
Overview
Max Total Supply
1,000,000,000 ONE
Holders
4,816 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
145,105.433078886097743745 ONEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MenloToken
Compiler Version
v0.4.24+commit.e67f0147
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-09-16 */ pragma solidity ^0.4.13; library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 _a, uint256 _b) internal pure returns (uint256 c) { // Gas optimization: this is cheaper than asserting 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522 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; } } contract Ownable { address public owner; event OwnershipRenounced(address indexed previousOwner); event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ constructor() 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 relinquish control of the contract. * @notice Renouncing to ownership will leave the contract without an owner. * It will not be possible to call the functions with the `onlyOwner` * modifier anymore. */ function renounceOwnership() public onlyOwner { emit OwnershipRenounced(owner); owner = address(0); } /** * @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 { _transferOwnership(_newOwner); } /** * @dev Transfers control of the contract to a newOwner. * @param _newOwner The address to transfer ownership to. */ function _transferOwnership(address _newOwner) internal { require(_newOwner != address(0)); emit OwnershipTransferred(owner, _newOwner); owner = _newOwner; } } contract Pausable is Ownable { event Pause(); event Unpause(); bool public paused = false; /** * @dev Modifier to make a function callable only when the contract is not paused. */ modifier whenNotPaused() { require(!paused); _; } /** * @dev Modifier to make a function callable only when the contract is paused. */ modifier whenPaused() { require(paused); _; } /** * @dev called by the owner to pause, triggers stopped state */ function pause() public onlyOwner whenNotPaused { paused = true; emit Pause(); } /** * @dev called by the owner to unpause, returns to normal state */ function unpause() public onlyOwner whenPaused { paused = false; emit Unpause(); } } contract CanReclaimToken is Ownable { using SafeERC20 for ERC20Basic; /** * @dev Reclaim all ERC20Basic compatible tokens * @param _token ERC20Basic The address of the token contract */ function reclaimToken(ERC20Basic _token) external onlyOwner { uint256 balance = _token.balanceOf(this); _token.safeTransfer(owner, balance); } } 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) internal balances; uint256 internal 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(_value <= balances[msg.sender]); require(_to != address(0)); 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]; } } 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); } } 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 ); } library SafeERC20 { function safeTransfer( ERC20Basic _token, address _to, uint256 _value ) internal { require(_token.transfer(_to, _value)); } function safeTransferFrom( ERC20 _token, address _from, address _to, uint256 _value ) internal { require(_token.transferFrom(_from, _to, _value)); } function safeApprove( ERC20 _token, address _spender, uint256 _value ) internal { require(_token.approve(_spender, _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(_value <= balances[_from]); require(_value <= allowed[_from][msg.sender]); require(_to != address(0)); 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, uint256 _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, uint256 _subtractedValue ) public returns (bool) { uint256 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 PausableToken is StandardToken, Pausable { function transfer( address _to, uint256 _value ) public whenNotPaused returns (bool) { return super.transfer(_to, _value); } function transferFrom( address _from, address _to, uint256 _value ) public whenNotPaused returns (bool) { return super.transferFrom(_from, _to, _value); } function approve( address _spender, uint256 _value ) public whenNotPaused returns (bool) { return super.approve(_spender, _value); } function increaseApproval( address _spender, uint _addedValue ) public whenNotPaused returns (bool success) { return super.increaseApproval(_spender, _addedValue); } function decreaseApproval( address _spender, uint _subtractedValue ) public whenNotPaused returns (bool success) { return super.decreaseApproval(_spender, _subtractedValue); } } contract MenloToken is PausableToken, BurnableToken, CanReclaimToken { // Token properties string public constant name = 'Menlo One'; string public constant symbol = 'ONE'; uint8 public constant decimals = 18; uint256 private constant token_factor = 10**uint256(decimals); // 1 billion ONE tokens in units divisible up to 18 decimals uint256 public constant INITIAL_SUPPLY = 1000000000 * token_factor; uint256 public constant PUBLICSALE_SUPPLY = 354000000 * token_factor; uint256 public constant GROWTH_SUPPLY = 246000000 * token_factor; uint256 public constant TEAM_SUPPLY = 200000000 * token_factor; uint256 public constant ADVISOR_SUPPLY = 100000000 * token_factor; uint256 public constant PARTNER_SUPPLY = 100000000 * token_factor; /** * @dev Magic value to be returned upon successful reception of Menlo Tokens */ bytes4 internal constant ONE_RECEIVED = 0x150b7a03; address public crowdsale; address public teamTimelock; address public advisorTimelock; modifier notInitialized(address saleAddress) { require(address(saleAddress) == address(0), "Expected address to be null"); _; } constructor(address _growth, address _teamTimelock, address _advisorTimelock, address _partner) public { assert(INITIAL_SUPPLY > 0); assert((PUBLICSALE_SUPPLY + GROWTH_SUPPLY + TEAM_SUPPLY + ADVISOR_SUPPLY + PARTNER_SUPPLY) == INITIAL_SUPPLY); uint256 _poolTotal = GROWTH_SUPPLY + TEAM_SUPPLY + ADVISOR_SUPPLY + PARTNER_SUPPLY; uint256 _availableForSales = INITIAL_SUPPLY - _poolTotal; assert(_availableForSales == PUBLICSALE_SUPPLY); teamTimelock = _teamTimelock; advisorTimelock = _advisorTimelock; mint(msg.sender, _availableForSales); mint(_growth, GROWTH_SUPPLY); mint(_teamTimelock, TEAM_SUPPLY); mint(_advisorTimelock, ADVISOR_SUPPLY); mint(_partner, PARTNER_SUPPLY); assert(totalSupply_ == INITIAL_SUPPLY); pause(); } function initializeCrowdsale(address _crowdsale) public onlyOwner notInitialized(crowdsale) { unpause(); transfer(_crowdsale, balances[msg.sender]); // Transfer left over balance after private presale allocations crowdsale = _crowdsale; pause(); transferOwnership(_crowdsale); } function mint(address _to, uint256 _amount) internal { balances[_to] = _amount; totalSupply_ = totalSupply_.add(_amount); emit Transfer(address(0), _to, _amount); } /** * @dev Safely transfers the ownership of a given token ID to another address * If the target address is a contract, it must implement `onERC721Received`, * which is called upon a safe transfer, and return the magic value `bytes4(0x150b7a03)`; * otherwise, the transfer is reverted. * Requires the msg sender to be the owner, approved, or operator * @param _to address to receive the tokens. Must be a MenloTokenReceiver based contract * @param _value uint256 number of tokens to transfer * @param _action uint256 action to perform in target _to contract * @param _data bytes data to send along with a safe transfer check **/ function transferAndCall(address _to, uint256 _value, uint256 _action, bytes _data) public returns (bool) { if (transfer(_to, _value)) { require (MenloTokenReceiver(_to).onTokenReceived(msg.sender, _value, _action, _data) == ONE_RECEIVED, "Target contract onTokenReceived failed"); return true; } return false; } } contract MenloTokenReceiver { /* * @dev Address of the MenloToken contract */ MenloToken token; constructor(MenloToken _tokenContract) public { token = _tokenContract; } /** * @dev Magic value to be returned upon successful reception of Menlo Tokens */ bytes4 internal constant ONE_RECEIVED = 0x150b7a03; /** * @dev Throws if called by any account other than the Menlo Token contract. */ modifier onlyTokenContract() { require(msg.sender == address(token)); _; } /** * @notice Handle the receipt of Menlo Tokens * @dev The MenloToken contract calls this function on the recipient * after a `transferAndCall`. This function MAY throw to revert and reject the * transfer. Return of other than the magic value MUST result in the * transaction being reverted. * Warning: this function must call the onlyTokenContract modifier to trust * the transfer took place * @param _from The address which previously owned the token * @param _value Number of tokens that were transfered * @param _action Used to define enumeration of possible functions to call * @param _data Additional data with no specified format * @return `bytes4(0x150b7a03)` */ function onTokenReceived( address _from, uint256 _value, uint256 _action, bytes _data ) public /* onlyTokenContract */ returns(bytes4); }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"_token","type":"address"}],"name":"reclaimToken","outputs":[],"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":"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":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"teamTimelock","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"ADVISOR_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"advisorTimelock","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"GROWTH_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","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":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_crowdsale","type":"address"}],"name":"initializeCrowdsale","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"crowdsale","outputs":[{"name":"","type":"address"}],"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":true,"inputs":[],"name":"TEAM_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"PARTNER_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_action","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"transferAndCall","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":"success","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":true,"inputs":[],"name":"PUBLICSALE_SUPPLY","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":"_growth","type":"address"},{"name":"_teamTimelock","type":"address"},{"name":"_advisorTimelock","type":"address"},{"name":"_partner","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"}],"name":"OwnershipRenounced","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"}]
Contract Creation Code
60806040526003805460a060020a60ff02191690553480156200002157600080fd5b5060405160808062001685833981016040908152815160208301519183015160609093015160038054600160a060020a0319163317905590929060006b02165bd22bd91fa44600000090506b0124d26a73f76098a200000060058054600160a060020a03808816600160a060020a0319928316179092556006805492871692909116919091179055620000be338264010000000062000175810204565b620000de866acb7c86b8b8ec58b600000064010000000062000175810204565b620000fe856aa56fa5b99019a5c800000064010000000062000175810204565b6200011e846a52b7d2dcc80cd2e400000064010000000062000175810204565b6200013e836a52b7d2dcc80cd2e400000064010000000062000175810204565b6001546b033b2e3c9fd0803ce8000000146200015657fe5b62000169640100000000620001f5810204565b5050505050506200029c565b600160a060020a0382166000908152602081905260409020819055600154620001ad90826401000000006200139a6200028882021704565b600155604080518281529051600160a060020a038416916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600354600160a060020a031633146200020d57600080fd5b60035474010000000000000000000000000000000000000000900460ff16156200023657600080fd5b6003805460a060020a60ff021916740100000000000000000000000000000000000000001790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b818101828110156200029657fe5b92915050565b6113d980620002ac6000396000f30060806040526004361061017f5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610184578063095ea7b31461020e57806317ffc3201461024657806318160ddd1461026957806323b872dd146102905780632ff2e9dc146102ba578063313ce567146102cf5780633f4ba83a146102fa57806342966c681461030f5780634fed6a101461032757806350c2e4f6146103585780635960b74f1461036d5780635b52c7fb146103825780635c975abb1461039757806366188463146103ac57806370a08231146103d0578063715018a6146103f15780638456cb59146104065780638c88512f1461041b5780638da5cb5b1461043c57806395d89b41146104515780639c1e03a014610466578063a9059cbb1461047b578063b9c3a8181461049f578063c48590e914610358578063d1c673e9146104b4578063d73dd62314610520578063dd62ed3e14610544578063ef9f60231461056b578063f2fde38b14610580575b600080fd5b34801561019057600080fd5b506101996105a1565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101d35781810151838201526020016101bb565b50505050905090810190601f1680156102005780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561021a57600080fd5b50610232600160a060020a03600435166024356105d8565b604080519115158252519081900360200190f35b34801561025257600080fd5b50610267600160a060020a0360043516610603565b005b34801561027557600080fd5b5061027e6106d1565b60408051918252519081900360200190f35b34801561029c57600080fd5b50610232600160a060020a03600435811690602435166044356106d7565b3480156102c657600080fd5b5061027e610704565b3480156102db57600080fd5b506102e4610714565b6040805160ff9092168252519081900360200190f35b34801561030657600080fd5b50610267610719565b34801561031b57600080fd5b50610267600435610791565b34801561033357600080fd5b5061033c61079e565b60408051600160a060020a039092168252519081900360200190f35b34801561036457600080fd5b5061027e6107ad565b34801561037957600080fd5b5061033c6107bc565b34801561038e57600080fd5b5061027e6107cb565b3480156103a357600080fd5b506102326107da565b3480156103b857600080fd5b50610232600160a060020a03600435166024356107ea565b3480156103dc57600080fd5b5061027e600160a060020a036004351661080e565b3480156103fd57600080fd5b50610267610829565b34801561041257600080fd5b50610267610897565b34801561042757600080fd5b50610267600160a060020a0360043516610914565b34801561044857600080fd5b5061033c610a01565b34801561045d57600080fd5b50610199610a10565b34801561047257600080fd5b5061033c610a47565b34801561048757600080fd5b50610232600160a060020a0360043516602435610a56565b3480156104ab57600080fd5b5061027e610a7a565b3480156104c057600080fd5b50604080516020601f60643560048181013592830184900484028501840190955281845261023294600160a060020a038135169460248035956044359536956084949301918190840183828082843750949750610a899650505050505050565b34801561052c57600080fd5b50610232600160a060020a0360043516602435610c90565b34801561055057600080fd5b5061027e600160a060020a0360043581169060243516610cb4565b34801561057757600080fd5b5061027e610cdf565b34801561058c57600080fd5b50610267600160a060020a0360043516610cef565b60408051808201909152600981527f4d656e6c6f204f6e650000000000000000000000000000000000000000000000602082015281565b60035460009060a060020a900460ff16156105f257600080fd5b6105fc8383610d0f565b9392505050565b600354600090600160a060020a0316331461061d57600080fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051600160a060020a038416916370a082319160248083019260209291908290030181600087803b15801561067e57600080fd5b505af1158015610692573d6000803e3d6000fd5b505050506040513d60208110156106a857600080fd5b50516003549091506106cd90600160a060020a0384811691168363ffffffff610d7516565b5050565b60015490565b60035460009060a060020a900460ff16156106f157600080fd5b6106fc848484610e2d565b949350505050565b6b033b2e3c9fd0803ce800000081565b601281565b600354600160a060020a0316331461073057600080fd5b60035460a060020a900460ff16151561074857600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b61079b3382610fa2565b50565b600554600160a060020a031681565b6a52b7d2dcc80cd2e400000081565b600654600160a060020a031681565b6acb7c86b8b8ec58b600000081565b60035460a060020a900460ff1681565b60035460009060a060020a900460ff161561080457600080fd5b6105fc83836110a3565b600160a060020a031660009081526020819052604090205490565b600354600160a060020a0316331461084057600080fd5b600354604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26003805473ffffffffffffffffffffffffffffffffffffffff19169055565b600354600160a060020a031633146108ae57600080fd5b60035460a060020a900460ff16156108c557600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600354600160a060020a0316331461092b57600080fd5b600454600160a060020a031680156109a457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4578706563746564206164647265737320746f206265206e756c6c0000000000604482015290519081900360640190fd5b6109ac610719565b336000908152602081905260409020546109c7908390610a56565b506004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0384161790556109f8610897565b6106cd82610cef565b600354600160a060020a031681565b60408051808201909152600381527f4f4e450000000000000000000000000000000000000000000000000000000000602082015281565b600454600160a060020a031681565b60035460009060a060020a900460ff1615610a7057600080fd5b6105fc8383611192565b6aa56fa5b99019a5c800000081565b6000610a958585610a56565b15610c85576040517fa5938410000000000000000000000000000000000000000000000000000000008152336004820181815260248301879052604483018690526080606484019081528551608485015285517f150b7a030000000000000000000000000000000000000000000000000000000094600160a060020a038b169463a59384109490938b938b938b93929160a490910190602085019080838360005b83811015610b4e578181015183820152602001610b36565b50505050905090810190601f168015610b7b5780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b158015610b9d57600080fd5b505af1158015610bb1573d6000803e3d6000fd5b505050506040513d6020811015610bc757600080fd5b50517fffffffff000000000000000000000000000000000000000000000000000000001614610c7d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f54617267657420636f6e7472616374206f6e546f6b656e52656365697665642060448201527f6661696c65640000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b5060016106fc565b506000949350505050565b60035460009060a060020a900460ff1615610caa57600080fd5b6105fc8383611271565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b6b0124d26a73f76098a200000081565b600354600160a060020a03163314610d0657600080fd5b61079b8161130a565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b82600160a060020a031663a9059cbb83836040518363ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018083600160a060020a0316600160a060020a0316815260200182815260200192505050602060405180830381600087803b158015610df157600080fd5b505af1158015610e05573d6000803e3d6000fd5b505050506040513d6020811015610e1b57600080fd5b50511515610e2857600080fd5b505050565b600160a060020a038316600090815260208190526040812054821115610e5257600080fd5b600160a060020a0384166000908152600260209081526040808320338452909152902054821115610e8257600080fd5b600160a060020a0383161515610e9757600080fd5b600160a060020a038416600090815260208190526040902054610ec0908363ffffffff61138816565b600160a060020a038086166000908152602081905260408082209390935590851681522054610ef5908363ffffffff61139a16565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610f37908363ffffffff61138816565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b600160a060020a038216600090815260208190526040902054811115610fc757600080fd5b600160a060020a038216600090815260208190526040902054610ff0908263ffffffff61138816565b600160a060020a03831660009081526020819052604090205560015461101c908263ffffffff61138816565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b336000908152600260209081526040808320600160a060020a03861684529091528120548083106110f757336000908152600260209081526040808320600160a060020a038816845290915281205561112c565b611107818463ffffffff61138816565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b336000908152602081905260408120548211156111ae57600080fd5b600160a060020a03831615156111c357600080fd5b336000908152602081905260409020546111e3908363ffffffff61138816565b3360009081526020819052604080822092909255600160a060020a03851681522054611215908363ffffffff61139a16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a03861684529091528120546112a5908363ffffffff61139a16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a038116151561131f57600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60008282111561139457fe5b50900390565b818101828110156113a757fe5b929150505600a165627a7a723058203ec4bdb7ed28b3309c69eadf0f976dd7eb35c7a15675eb6e6c1245f1514a0fcd0029000000000000000000000000c7997618453cdf6d647f8ae142f050e17e753515000000000000000000000000597db3138d3e1355dad2788de0602c3a5faa41ac000000000000000000000000c85ff64317db5350d23e3066accef2b493a39d490000000000000000000000004c57c88ef190088e3cd30b9a371ae51aa598c47e
Deployed Bytecode
0x60806040526004361061017f5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610184578063095ea7b31461020e57806317ffc3201461024657806318160ddd1461026957806323b872dd146102905780632ff2e9dc146102ba578063313ce567146102cf5780633f4ba83a146102fa57806342966c681461030f5780634fed6a101461032757806350c2e4f6146103585780635960b74f1461036d5780635b52c7fb146103825780635c975abb1461039757806366188463146103ac57806370a08231146103d0578063715018a6146103f15780638456cb59146104065780638c88512f1461041b5780638da5cb5b1461043c57806395d89b41146104515780639c1e03a014610466578063a9059cbb1461047b578063b9c3a8181461049f578063c48590e914610358578063d1c673e9146104b4578063d73dd62314610520578063dd62ed3e14610544578063ef9f60231461056b578063f2fde38b14610580575b600080fd5b34801561019057600080fd5b506101996105a1565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101d35781810151838201526020016101bb565b50505050905090810190601f1680156102005780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561021a57600080fd5b50610232600160a060020a03600435166024356105d8565b604080519115158252519081900360200190f35b34801561025257600080fd5b50610267600160a060020a0360043516610603565b005b34801561027557600080fd5b5061027e6106d1565b60408051918252519081900360200190f35b34801561029c57600080fd5b50610232600160a060020a03600435811690602435166044356106d7565b3480156102c657600080fd5b5061027e610704565b3480156102db57600080fd5b506102e4610714565b6040805160ff9092168252519081900360200190f35b34801561030657600080fd5b50610267610719565b34801561031b57600080fd5b50610267600435610791565b34801561033357600080fd5b5061033c61079e565b60408051600160a060020a039092168252519081900360200190f35b34801561036457600080fd5b5061027e6107ad565b34801561037957600080fd5b5061033c6107bc565b34801561038e57600080fd5b5061027e6107cb565b3480156103a357600080fd5b506102326107da565b3480156103b857600080fd5b50610232600160a060020a03600435166024356107ea565b3480156103dc57600080fd5b5061027e600160a060020a036004351661080e565b3480156103fd57600080fd5b50610267610829565b34801561041257600080fd5b50610267610897565b34801561042757600080fd5b50610267600160a060020a0360043516610914565b34801561044857600080fd5b5061033c610a01565b34801561045d57600080fd5b50610199610a10565b34801561047257600080fd5b5061033c610a47565b34801561048757600080fd5b50610232600160a060020a0360043516602435610a56565b3480156104ab57600080fd5b5061027e610a7a565b3480156104c057600080fd5b50604080516020601f60643560048181013592830184900484028501840190955281845261023294600160a060020a038135169460248035956044359536956084949301918190840183828082843750949750610a899650505050505050565b34801561052c57600080fd5b50610232600160a060020a0360043516602435610c90565b34801561055057600080fd5b5061027e600160a060020a0360043581169060243516610cb4565b34801561057757600080fd5b5061027e610cdf565b34801561058c57600080fd5b50610267600160a060020a0360043516610cef565b60408051808201909152600981527f4d656e6c6f204f6e650000000000000000000000000000000000000000000000602082015281565b60035460009060a060020a900460ff16156105f257600080fd5b6105fc8383610d0f565b9392505050565b600354600090600160a060020a0316331461061d57600080fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051600160a060020a038416916370a082319160248083019260209291908290030181600087803b15801561067e57600080fd5b505af1158015610692573d6000803e3d6000fd5b505050506040513d60208110156106a857600080fd5b50516003549091506106cd90600160a060020a0384811691168363ffffffff610d7516565b5050565b60015490565b60035460009060a060020a900460ff16156106f157600080fd5b6106fc848484610e2d565b949350505050565b6b033b2e3c9fd0803ce800000081565b601281565b600354600160a060020a0316331461073057600080fd5b60035460a060020a900460ff16151561074857600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b61079b3382610fa2565b50565b600554600160a060020a031681565b6a52b7d2dcc80cd2e400000081565b600654600160a060020a031681565b6acb7c86b8b8ec58b600000081565b60035460a060020a900460ff1681565b60035460009060a060020a900460ff161561080457600080fd5b6105fc83836110a3565b600160a060020a031660009081526020819052604090205490565b600354600160a060020a0316331461084057600080fd5b600354604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26003805473ffffffffffffffffffffffffffffffffffffffff19169055565b600354600160a060020a031633146108ae57600080fd5b60035460a060020a900460ff16156108c557600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600354600160a060020a0316331461092b57600080fd5b600454600160a060020a031680156109a457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4578706563746564206164647265737320746f206265206e756c6c0000000000604482015290519081900360640190fd5b6109ac610719565b336000908152602081905260409020546109c7908390610a56565b506004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0384161790556109f8610897565b6106cd82610cef565b600354600160a060020a031681565b60408051808201909152600381527f4f4e450000000000000000000000000000000000000000000000000000000000602082015281565b600454600160a060020a031681565b60035460009060a060020a900460ff1615610a7057600080fd5b6105fc8383611192565b6aa56fa5b99019a5c800000081565b6000610a958585610a56565b15610c85576040517fa5938410000000000000000000000000000000000000000000000000000000008152336004820181815260248301879052604483018690526080606484019081528551608485015285517f150b7a030000000000000000000000000000000000000000000000000000000094600160a060020a038b169463a59384109490938b938b938b93929160a490910190602085019080838360005b83811015610b4e578181015183820152602001610b36565b50505050905090810190601f168015610b7b5780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b158015610b9d57600080fd5b505af1158015610bb1573d6000803e3d6000fd5b505050506040513d6020811015610bc757600080fd5b50517fffffffff000000000000000000000000000000000000000000000000000000001614610c7d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f54617267657420636f6e7472616374206f6e546f6b656e52656365697665642060448201527f6661696c65640000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b5060016106fc565b506000949350505050565b60035460009060a060020a900460ff1615610caa57600080fd5b6105fc8383611271565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b6b0124d26a73f76098a200000081565b600354600160a060020a03163314610d0657600080fd5b61079b8161130a565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b82600160a060020a031663a9059cbb83836040518363ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018083600160a060020a0316600160a060020a0316815260200182815260200192505050602060405180830381600087803b158015610df157600080fd5b505af1158015610e05573d6000803e3d6000fd5b505050506040513d6020811015610e1b57600080fd5b50511515610e2857600080fd5b505050565b600160a060020a038316600090815260208190526040812054821115610e5257600080fd5b600160a060020a0384166000908152600260209081526040808320338452909152902054821115610e8257600080fd5b600160a060020a0383161515610e9757600080fd5b600160a060020a038416600090815260208190526040902054610ec0908363ffffffff61138816565b600160a060020a038086166000908152602081905260408082209390935590851681522054610ef5908363ffffffff61139a16565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610f37908363ffffffff61138816565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b600160a060020a038216600090815260208190526040902054811115610fc757600080fd5b600160a060020a038216600090815260208190526040902054610ff0908263ffffffff61138816565b600160a060020a03831660009081526020819052604090205560015461101c908263ffffffff61138816565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b336000908152600260209081526040808320600160a060020a03861684529091528120548083106110f757336000908152600260209081526040808320600160a060020a038816845290915281205561112c565b611107818463ffffffff61138816565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b336000908152602081905260408120548211156111ae57600080fd5b600160a060020a03831615156111c357600080fd5b336000908152602081905260409020546111e3908363ffffffff61138816565b3360009081526020819052604080822092909255600160a060020a03851681522054611215908363ffffffff61139a16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a03861684529091528120546112a5908363ffffffff61139a16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a038116151561131f57600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60008282111561139457fe5b50900390565b818101828110156113a757fe5b929150505600a165627a7a723058203ec4bdb7ed28b3309c69eadf0f976dd7eb35c7a15675eb6e6c1245f1514a0fcd0029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000c7997618453cdf6d647f8ae142f050e17e753515000000000000000000000000597db3138d3e1355dad2788de0602c3a5faa41ac000000000000000000000000c85ff64317db5350d23e3066accef2b493a39d490000000000000000000000004c57c88ef190088e3cd30b9a371ae51aa598c47e
-----Decoded View---------------
Arg [0] : _growth (address): 0xc7997618453CdF6D647F8Ae142F050e17E753515
Arg [1] : _teamTimelock (address): 0x597Db3138D3E1355DaD2788dE0602C3A5faA41AC
Arg [2] : _advisorTimelock (address): 0xC85FF64317dB5350D23E3066ACceF2B493a39D49
Arg [3] : _partner (address): 0x4C57c88Ef190088E3cd30b9a371aE51aa598c47e
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000c7997618453cdf6d647f8ae142f050e17e753515
Arg [1] : 000000000000000000000000597db3138d3e1355dad2788de0602c3a5faa41ac
Arg [2] : 000000000000000000000000c85ff64317db5350d23e3066accef2b493a39d49
Arg [3] : 0000000000000000000000004c57c88ef190088e3cd30b9a371ae51aa598c47e
Swarm Source
bzzr://3ec4bdb7ed28b3309c69eadf0f976dd7eb35c7a15675eb6e6c1245f1514a0fcd
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.