ERC-20
Overview
Max Total Supply
195,000,000 FORK
Holders
3,671
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GastroAdvisorToken
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-10-15 */ pragma solidity ^0.4.24; // File: openzeppelin-solidity/contracts/token/ERC20/ERC20Basic.sol /** * @title ERC20Basic * @dev Simpler version of ERC20 interface * 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: openzeppelin-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: openzeppelin-solidity/contracts/token/ERC20/DetailedERC20.sol /** * @title DetailedERC20 token * @dev The decimals are only for visualization purposes. * All the operations are done using the smallest and indivisible token unit, * just as on Ethereum all the operations are done in wei. */ contract DetailedERC20 is ERC20 { string public name; string public symbol; uint8 public decimals; constructor(string _name, string _symbol, uint8 _decimals) public { name = _name; symbol = _symbol; decimals = _decimals; } } // File: openzeppelin-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) { // 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; } } // File: openzeppelin-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) 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]; } } // File: openzeppelin-solidity/contracts/token/ERC20/StandardToken.sol /** * @title Standard ERC20 token * * @dev Implementation of the basic standard token. * https://github.com/ethereum/EIPs/issues/20 * 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(_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; } } // File: openzeppelin-solidity/contracts/ownership/Ownable.sol /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ 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; } } // File: openzeppelin-solidity/contracts/token/ERC20/MintableToken.sol /** * @title Mintable token * @dev Simple ERC20 Token example, with mintable token creation * Based on code by TokenMarketNet: https://github.com/TokenMarketNet/ico/blob/master/contracts/MintableToken.sol */ contract MintableToken is StandardToken, Ownable { event Mint(address indexed to, uint256 amount); event MintFinished(); bool public mintingFinished = false; modifier canMint() { require(!mintingFinished); _; } modifier hasMintPermission() { require(msg.sender == owner); _; } /** * @dev Function to mint tokens * @param _to The address that will receive the minted tokens. * @param _amount The amount of tokens to mint. * @return A boolean that indicates if the operation was successful. */ function mint( address _to, uint256 _amount ) public hasMintPermission canMint returns (bool) { totalSupply_ = totalSupply_.add(_amount); balances[_to] = balances[_to].add(_amount); emit Mint(_to, _amount); emit Transfer(address(0), _to, _amount); return true; } /** * @dev Function to stop minting new tokens. * @return True if the operation was successful. */ function finishMinting() public onlyOwner canMint returns (bool) { mintingFinished = true; emit MintFinished(); return true; } } // File: openzeppelin-solidity/contracts/access/rbac/Roles.sol /** * @title Roles * @author Francisco Giordano (@frangio) * @dev Library for managing addresses assigned to a Role. * See RBAC.sol for example usage. */ library Roles { struct Role { mapping (address => bool) bearer; } /** * @dev give an address access to this role */ function add(Role storage _role, address _addr) internal { _role.bearer[_addr] = true; } /** * @dev remove an address' access to this role */ function remove(Role storage _role, address _addr) internal { _role.bearer[_addr] = false; } /** * @dev check if an address has this role * // reverts */ function check(Role storage _role, address _addr) internal view { require(has(_role, _addr)); } /** * @dev check if an address has this role * @return bool */ function has(Role storage _role, address _addr) internal view returns (bool) { return _role.bearer[_addr]; } } // File: openzeppelin-solidity/contracts/access/rbac/RBAC.sol /** * @title RBAC (Role-Based Access Control) * @author Matt Condon (@Shrugs) * @dev Stores and provides setters and getters for roles and addresses. * Supports unlimited numbers of roles and addresses. * See //contracts/mocks/RBACMock.sol for an example of usage. * This RBAC method uses strings to key roles. It may be beneficial * for you to write your own implementation of this interface using Enums or similar. */ contract RBAC { using Roles for Roles.Role; mapping (string => Roles.Role) private roles; event RoleAdded(address indexed operator, string role); event RoleRemoved(address indexed operator, string role); /** * @dev reverts if addr does not have role * @param _operator address * @param _role the name of the role * // reverts */ function checkRole(address _operator, string _role) public view { roles[_role].check(_operator); } /** * @dev determine if addr has role * @param _operator address * @param _role the name of the role * @return bool */ function hasRole(address _operator, string _role) public view returns (bool) { return roles[_role].has(_operator); } /** * @dev add a role to an address * @param _operator address * @param _role the name of the role */ function addRole(address _operator, string _role) internal { roles[_role].add(_operator); emit RoleAdded(_operator, _role); } /** * @dev remove a role from an address * @param _operator address * @param _role the name of the role */ function removeRole(address _operator, string _role) internal { roles[_role].remove(_operator); emit RoleRemoved(_operator, _role); } /** * @dev modifier to scope access to a single role (uses msg.sender as addr) * @param _role the name of the role * // reverts */ modifier onlyRole(string _role) { checkRole(msg.sender, _role); _; } /** * @dev modifier to scope access to a set of roles (uses msg.sender as addr) * @param _roles the names of the roles to scope access to * // reverts * * @TODO - when solidity supports dynamic arrays as arguments to modifiers, provide this * see: https://github.com/ethereum/solidity/issues/2467 */ // modifier onlyRoles(string[] _roles) { // bool hasAnyRole = false; // for (uint8 i = 0; i < _roles.length; i++) { // if (hasRole(msg.sender, _roles[i])) { // hasAnyRole = true; // break; // } // } // require(hasAnyRole); // _; // } } // File: openzeppelin-solidity/contracts/token/ERC20/RBACMintableToken.sol /** * @title RBACMintableToken * @author Vittorio Minacori (@vittominacori) * @dev Mintable Token, with RBAC minter permissions */ contract RBACMintableToken is MintableToken, RBAC { /** * A constant role name for indicating minters. */ string public constant ROLE_MINTER = "minter"; /** * @dev override the Mintable token modifier to add role based logic */ modifier hasMintPermission() { checkRole(msg.sender, ROLE_MINTER); _; } /** * @dev add a minter role to an address * @param _minter address */ function addMinter(address _minter) public onlyOwner { addRole(_minter, ROLE_MINTER); } /** * @dev remove a minter role from an address * @param _minter address */ function removeMinter(address _minter) public onlyOwner { removeRole(_minter, ROLE_MINTER); } } // File: openzeppelin-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: openzeppelin-solidity/contracts/token/ERC20/CappedToken.sol /** * @title Capped token * @dev Mintable token with a token cap. */ contract CappedToken is MintableToken { uint256 public cap; constructor(uint256 _cap) public { require(_cap > 0); cap = _cap; } /** * @dev Function to mint tokens * @param _to The address that will receive the minted tokens. * @param _amount The amount of tokens to mint. * @return A boolean that indicates if the operation was successful. */ function mint( address _to, uint256 _amount ) public returns (bool) { require(totalSupply_.add(_amount) <= cap); return super.mint(_to, _amount); } } // File: openzeppelin-solidity/contracts/AddressUtils.sol /** * Utility library of inline functions on addresses */ library AddressUtils { /** * Returns whether the target address is a contract * @dev This function will return false if invoked during the constructor of a contract, * as the code is not actually created until after the constructor finishes. * @param _addr address to check * @return whether the target address is a contract */ function isContract(address _addr) internal view returns (bool) { uint256 size; // XXX Currently there is no better way to check if there is a contract in an address // than to check the size of the code at that address. // See https://ethereum.stackexchange.com/a/14016/36603 // for more details about how this works. // TODO Check this again before the Serenity release, because all addresses will be // contracts then. // solium-disable-next-line security/no-inline-assembly assembly { size := extcodesize(_addr) } return size > 0; } } // File: openzeppelin-solidity/contracts/introspection/ERC165.sol /** * @title ERC165 * @dev https://github.com/ethereum/EIPs/blob/master/EIPS/eip-165.md */ interface ERC165 { /** * @notice Query if a contract implements an interface * @param _interfaceId The interface identifier, as specified in ERC-165 * @dev Interface identification is specified in ERC-165. This function * uses less than 30,000 gas. */ function supportsInterface(bytes4 _interfaceId) external view returns (bool); } // File: openzeppelin-solidity/contracts/introspection/SupportsInterfaceWithLookup.sol /** * @title SupportsInterfaceWithLookup * @author Matt Condon (@shrugs) * @dev Implements ERC165 using a lookup table. */ contract SupportsInterfaceWithLookup is ERC165 { bytes4 public constant InterfaceId_ERC165 = 0x01ffc9a7; /** * 0x01ffc9a7 === * bytes4(keccak256('supportsInterface(bytes4)')) */ /** * @dev a mapping of interface id to whether or not it's supported */ mapping(bytes4 => bool) internal supportedInterfaces; /** * @dev A contract implementing SupportsInterfaceWithLookup * implement ERC165 itself */ constructor() public { _registerInterface(InterfaceId_ERC165); } /** * @dev implement supportsInterface(bytes4) using a lookup table */ function supportsInterface(bytes4 _interfaceId) external view returns (bool) { return supportedInterfaces[_interfaceId]; } /** * @dev private method for registering an interface */ function _registerInterface(bytes4 _interfaceId) internal { require(_interfaceId != 0xffffffff); supportedInterfaces[_interfaceId] = true; } } // File: erc-payable-token/contracts/token/ERC1363/ERC1363.sol /** * @title ERC1363 interface * @author Vittorio Minacori (https://github.com/vittominacori) * @dev Interface for a Payable Token contract as defined in * https://github.com/ethereum/EIPs/issues/1363 */ contract ERC1363 is ERC20, ERC165 { /* * Note: the ERC-165 identifier for this interface is 0x4bbee2df. * 0x4bbee2df === * bytes4(keccak256('transferAndCall(address,uint256)')) ^ * bytes4(keccak256('transferAndCall(address,uint256,bytes)')) ^ * bytes4(keccak256('transferFromAndCall(address,address,uint256)')) ^ * bytes4(keccak256('transferFromAndCall(address,address,uint256,bytes)')) */ /* * Note: the ERC-165 identifier for this interface is 0xfb9ec8ce. * 0xfb9ec8ce === * bytes4(keccak256('approveAndCall(address,uint256)')) ^ * bytes4(keccak256('approveAndCall(address,uint256,bytes)')) */ /** * @notice Transfer tokens from `msg.sender` to another address * and then call `onTransferReceived` on receiver * @param _to address The address which you want to transfer to * @param _value uint256 The amount of tokens to be transferred * @return true unless throwing */ function transferAndCall(address _to, uint256 _value) public returns (bool); /** * @notice Transfer tokens from `msg.sender` to another address * and then call `onTransferReceived` on receiver * @param _to address The address which you want to transfer to * @param _value uint256 The amount of tokens to be transferred * @param _data bytes Additional data with no specified format, sent in call to `_to` * @return true unless throwing */ function transferAndCall(address _to, uint256 _value, bytes _data) public returns (bool); // solium-disable-line max-len /** * @notice Transfer tokens from one address to another * and then call `onTransferReceived` on receiver * @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 * @return true unless throwing */ function transferFromAndCall(address _from, address _to, uint256 _value) public returns (bool); // solium-disable-line max-len /** * @notice Transfer tokens from one address to another * and then call `onTransferReceived` on receiver * @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 * @param _data bytes Additional data with no specified format, sent in call to `_to` * @return true unless throwing */ function transferFromAndCall(address _from, address _to, uint256 _value, bytes _data) public returns (bool); // solium-disable-line max-len, arg-overflow /** * @notice Approve the passed address to spend the specified amount of tokens on behalf of msg.sender * and then call `onApprovalReceived` on spender * 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 address The address which will spend the funds * @param _value uint256 The amount of tokens to be spent */ function approveAndCall(address _spender, uint256 _value) public returns (bool); // solium-disable-line max-len /** * @notice Approve the passed address to spend the specified amount of tokens on behalf of msg.sender * and then call `onApprovalReceived` on spender * 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 address The address which will spend the funds * @param _value uint256 The amount of tokens to be spent * @param _data bytes Additional data with no specified format, sent in call to `_spender` */ function approveAndCall(address _spender, uint256 _value, bytes _data) public returns (bool); // solium-disable-line max-len } // File: erc-payable-token/contracts/token/ERC1363/ERC1363Receiver.sol /** * @title ERC1363Receiver interface * @author Vittorio Minacori (https://github.com/vittominacori) * @dev Interface for any contract that wants to support transferAndCall or transferFromAndCall * from ERC1363 token contracts as defined in * https://github.com/ethereum/EIPs/issues/1363 */ contract ERC1363Receiver { /* * Note: the ERC-165 identifier for this interface is 0x88a7ca5c. * 0x88a7ca5c === bytes4(keccak256("onTransferReceived(address,address,uint256,bytes)")) */ /** * @notice Handle the receipt of ERC1363 tokens * @dev Any ERC1363 smart contract calls this function on the recipient * after a `transfer` or a `transferFrom`. This function MAY throw to revert and reject the * transfer. Return of other than the magic value MUST result in the * transaction being reverted. * Note: the contract address is always the message sender. * @param _operator address The address which called `transferAndCall` or `transferFromAndCall` function * @param _from address The address which are token transferred from * @param _value uint256 The amount of tokens transferred * @param _data bytes Additional data with no specified format * @return `bytes4(keccak256("onTransferReceived(address,address,uint256,bytes)"))` * unless throwing */ function onTransferReceived(address _operator, address _from, uint256 _value, bytes _data) external returns (bytes4); // solium-disable-line max-len, arg-overflow } // File: erc-payable-token/contracts/token/ERC1363/ERC1363Spender.sol /** * @title ERC1363Spender interface * @author Vittorio Minacori (https://github.com/vittominacori) * @dev Interface for any contract that wants to support approveAndCall * from ERC1363 token contracts as defined in * https://github.com/ethereum/EIPs/issues/1363 */ contract ERC1363Spender { /* * Note: the ERC-165 identifier for this interface is 0x7b04a2d0. * 0x7b04a2d0 === bytes4(keccak256("onApprovalReceived(address,uint256,bytes)")) */ /** * @notice Handle the approval of ERC1363 tokens * @dev Any ERC1363 smart contract calls this function on the recipient * after an `approve`. This function MAY throw to revert and reject the * approval. Return of other than the magic value MUST result in the * transaction being reverted. * Note: the contract address is always the message sender. * @param _owner address The address which called `approveAndCall` function * @param _value uint256 The amount of tokens to be spent * @param _data bytes Additional data with no specified format * @return `bytes4(keccak256("onApprovalReceived(address,uint256,bytes)"))` * unless throwing */ function onApprovalReceived(address _owner, uint256 _value, bytes _data) external returns (bytes4); // solium-disable-line max-len } // File: erc-payable-token/contracts/token/ERC1363/ERC1363BasicToken.sol // solium-disable-next-line max-len /** * @title ERC1363BasicToken * @author Vittorio Minacori (https://github.com/vittominacori) * @dev Implementation of an ERC1363 interface */ contract ERC1363BasicToken is SupportsInterfaceWithLookup, StandardToken, ERC1363 { // solium-disable-line max-len using AddressUtils for address; /* * Note: the ERC-165 identifier for this interface is 0x4bbee2df. * 0x4bbee2df === * bytes4(keccak256('transferAndCall(address,uint256)')) ^ * bytes4(keccak256('transferAndCall(address,uint256,bytes)')) ^ * bytes4(keccak256('transferFromAndCall(address,address,uint256)')) ^ * bytes4(keccak256('transferFromAndCall(address,address,uint256,bytes)')) */ bytes4 internal constant InterfaceId_ERC1363Transfer = 0x4bbee2df; /* * Note: the ERC-165 identifier for this interface is 0xfb9ec8ce. * 0xfb9ec8ce === * bytes4(keccak256('approveAndCall(address,uint256)')) ^ * bytes4(keccak256('approveAndCall(address,uint256,bytes)')) */ bytes4 internal constant InterfaceId_ERC1363Approve = 0xfb9ec8ce; // Equals to `bytes4(keccak256("onTransferReceived(address,address,uint256,bytes)"))` // which can be also obtained as `ERC1363Receiver(0).onTransferReceived.selector` bytes4 private constant ERC1363_RECEIVED = 0x88a7ca5c; // Equals to `bytes4(keccak256("onApprovalReceived(address,uint256,bytes)"))` // which can be also obtained as `ERC1363Spender(0).onApprovalReceived.selector` bytes4 private constant ERC1363_APPROVED = 0x7b04a2d0; constructor() public { // register the supported interfaces to conform to ERC1363 via ERC165 _registerInterface(InterfaceId_ERC1363Transfer); _registerInterface(InterfaceId_ERC1363Approve); } function transferAndCall( address _to, uint256 _value ) public returns (bool) { return transferAndCall(_to, _value, ""); } function transferAndCall( address _to, uint256 _value, bytes _data ) public returns (bool) { require(transfer(_to, _value)); require( checkAndCallTransfer( msg.sender, _to, _value, _data ) ); return true; } function transferFromAndCall( address _from, address _to, uint256 _value ) public returns (bool) { // solium-disable-next-line arg-overflow return transferFromAndCall(_from, _to, _value, ""); } function transferFromAndCall( address _from, address _to, uint256 _value, bytes _data ) public returns (bool) { require(transferFrom(_from, _to, _value)); require( checkAndCallTransfer( _from, _to, _value, _data ) ); return true; } function approveAndCall( address _spender, uint256 _value ) public returns (bool) { return approveAndCall(_spender, _value, ""); } function approveAndCall( address _spender, uint256 _value, bytes _data ) public returns (bool) { approve(_spender, _value); require( checkAndCallApprove( _spender, _value, _data ) ); return true; } /** * @dev Internal function to invoke `onTransferReceived` on a target address * The call is not executed if the target address is not a contract * @param _from address Representing the previous owner of the given token value * @param _to address Target address that will receive the tokens * @param _value uint256 The amount mount of tokens to be transferred * @param _data bytes Optional data to send along with the call * @return whether the call correctly returned the expected magic value */ function checkAndCallTransfer( address _from, address _to, uint256 _value, bytes _data ) internal returns (bool) { if (!_to.isContract()) { return false; } bytes4 retval = ERC1363Receiver(_to).onTransferReceived( msg.sender, _from, _value, _data ); return (retval == ERC1363_RECEIVED); } /** * @dev Internal function to invoke `onApprovalReceived` on a target address * The call is not executed if the target address is not a contract * @param _spender address The address which will spend the funds * @param _value uint256 The amount of tokens to be spent * @param _data bytes Optional data to send along with the call * @return whether the call correctly returned the expected magic value */ function checkAndCallApprove( address _spender, uint256 _value, bytes _data ) internal returns (bool) { if (!_spender.isContract()) { return false; } bytes4 retval = ERC1363Spender(_spender).onApprovalReceived( msg.sender, _value, _data ); return (retval == ERC1363_APPROVED); } } // File: eth-token-recover/contracts/TokenRecover.sol /** * @title TokenRecover * @author Vittorio Minacori (https://github.com/vittominacori) * @dev Allow to recover any ERC20 sent into the contract for error */ contract TokenRecover is Ownable { /** * @dev Remember that only owner can call so be careful when use on contracts generated from other contracts. * @param _tokenAddress address The token contract address * @param _tokens Number of tokens to be sent * @return bool */ function recoverERC20( address _tokenAddress, uint256 _tokens ) public onlyOwner returns (bool success) { return ERC20Basic(_tokenAddress).transfer(owner, _tokens); } } // File: contracts/token/base/BaseToken.sol /** * @title BaseToken * @author Vittorio Minacori (https://github.com/vittominacori) * @dev BaseToken is An ERC20 token with a lot of stuffs used as Base for any other token contract. * It is DetailedERC20, RBACMintableToken, BurnableToken, ERC1363BasicToken. */ contract BaseToken is DetailedERC20, CappedToken, RBACMintableToken, BurnableToken, ERC1363BasicToken, TokenRecover { // solium-disable-line max-len constructor( string _name, string _symbol, uint8 _decimals, uint256 _cap ) DetailedERC20(_name, _symbol, _decimals) CappedToken(_cap) public {} } // File: contracts/token/GastroAdvisorToken.sol /** * @title GastroAdvisorToken * @author Vittorio Minacori (https://github.com/vittominacori) * @dev GastroAdvisorToken is an ERC20 token with a lot of stuffs. Extends from BaseToken */ contract GastroAdvisorToken is BaseToken { uint256 public lockedUntil; mapping(address => uint256) lockedBalances; string constant ROLE_OPERATOR = "operator"; /** * @dev Tokens can be moved only after minting finished or if you are an approved operator. * Some tokens can be locked until a date. Nobody can move locked tokens before of this date. */ modifier canTransfer(address _from, uint256 _value) { require(mintingFinished || hasRole(_from, ROLE_OPERATOR)); require(_value <= balances[_from].sub(lockedBalanceOf(_from))); _; } constructor( string _name, string _symbol, uint8 _decimals, uint256 _cap, uint256 _lockedUntil ) BaseToken(_name, _symbol, _decimals, _cap) public { lockedUntil = _lockedUntil; addMinter(owner); addOperator(owner); } function transfer( address _to, uint256 _value ) public canTransfer(msg.sender, _value) returns (bool) { return super.transfer(_to, _value); } function transferFrom( address _from, address _to, uint256 _value ) public canTransfer(_from, _value) returns (bool) { return super.transferFrom(_from, _to, _value); } /** * @dev Gets the locked balance of the specified address. * @param _who The address to query the balance of. * @return An uint256 representing the locked amount owned by the passed address. */ function lockedBalanceOf(address _who) public view returns (uint256) { // solium-disable-next-line security/no-block-members return block.timestamp <= lockedUntil ? lockedBalances[_who] : 0; } /** * @dev Function to mint and lock tokens * @param _to The address that will receive the minted tokens. * @param _amount The amount of tokens to mint. * @return A boolean that indicates if the operation was successful. */ function mintAndLock( address _to, uint256 _amount ) public hasMintPermission canMint returns (bool) { lockedBalances[_to] = lockedBalances[_to].add(_amount); return super.mint(_to, _amount); } /** * @dev add a operator role to an address * @param _operator address */ function addOperator(address _operator) public onlyOwner { require(!mintingFinished); addRole(_operator, ROLE_OPERATOR); } /** * @dev add a operator role to an array of addresses * @param _operators address[] */ function addOperators(address[] _operators) public onlyOwner { require(!mintingFinished); require(_operators.length > 0); for (uint i = 0; i < _operators.length; i++) { addRole(_operators[i], ROLE_OPERATOR); } } /** * @dev remove a operator role from an address * @param _operator address */ function removeOperator(address _operator) public onlyOwner { removeRole(_operator, ROLE_OPERATOR); } /** * @dev add a minter role to an array of addresses * @param _minters address[] */ function addMinters(address[] _minters) public onlyOwner { require(_minters.length > 0); for (uint i = 0; i < _minters.length; i++) { addRole(_minters[i], ROLE_MINTER); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[{"name":"_interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"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":"_operator","type":"address"},{"name":"_role","type":"string"}],"name":"checkRole","outputs":[],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferAndCall","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":true,"inputs":[],"name":"InterfaceId_ERC165","outputs":[{"name":"","type":"bytes4"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_operator","type":"address"},{"name":"_role","type":"string"}],"name":"hasRole","outputs":[{"name":"","type":"bool"}],"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":false,"inputs":[{"name":"_minter","type":"address"}],"name":"removeMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approveAndCall","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"cap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"transferAndCall","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"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":"_who","type":"address"}],"name":"lockedBalanceOf","outputs":[{"name":"","type":"uint256"}],"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":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_minters","type":"address[]"}],"name":"addMinters","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_tokenAddress","type":"address"},{"name":"_tokens","type":"uint256"}],"name":"recoverERC20","outputs":[{"name":"success","type":"bool"}],"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":"ROLE_MINTER","outputs":[{"name":"","type":"string"}],"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":"_minter","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_operator","type":"address"}],"name":"addOperator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mintAndLock","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_operators","type":"address[]"}],"name":"addOperators","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_operator","type":"address"}],"name":"removeOperator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"transferFromAndCall","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"lockedUntil","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFromAndCall","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_decimals","type":"uint8"},{"name":"_cap","type":"uint256"},{"name":"_lockedUntil","type":"uint256"}],"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":[{"indexed":true,"name":"operator","type":"address"},{"indexed":false,"name":"role","type":"string"}],"name":"RoleAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"operator","type":"address"},{"indexed":false,"name":"role","type":"string"}],"name":"RoleRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","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
60806040526007805460a060020a60ff02191690553480156200002157600080fd5b50604051620024f7380380620024f7833981016040908152815160208084015192840151606085015160808601519386018051909695909501949193909290918691869186918691829186918691869162000083916000919086019062000478565b5081516200009990600190602085019062000478565b506002805460ff191660ff9290921691909117905550620000e590507f01ffc9a700000000000000000000000000000000000000000000000000000000640100000000620001c4810204565b60078054600160a060020a03191633179055600081116200010557600080fd5b6008556200013c7f4bbee2df00000000000000000000000000000000000000000000000000000000640100000000620001c4810204565b620001707ffb9ec8ce00000000000000000000000000000000000000000000000000000000640100000000620001c4810204565b505050600a829055506007546200019990600160a060020a031664010000000062000231810204565b600754620001b990600160a060020a03166401000000006200029c810204565b50505050506200051d565b7fffffffff000000000000000000000000000000000000000000000000000000008082161415620001f457600080fd5b7fffffffff00000000000000000000000000000000000000000000000000000000166000908152600360205260409020805460ff19166001179055565b600754600160a060020a031633146200024957600080fd5b62000299816040805190810160405280600681526020017f6d696e74657200000000000000000000000000000000000000000000000000008152506200032d640100000000026401000000009004565b50565b600754600160a060020a03163314620002b457600080fd5b60075474010000000000000000000000000000000000000000900460ff1615620002dd57600080fd5b62000299816040805190810160405280600881526020017f6f70657261746f720000000000000000000000000000000000000000000000008152506200032d640100000000026401000000009004565b620003a9826009836040518082805190602001908083835b60208310620003665780518252601f19909201916020918201910162000345565b51815160209384036101000a600019018019909216911617905292019485525060405193849003019092209291505064010000000062000453810262001f191704565b81600160a060020a03167fbfec83d64eaa953f2708271a023ab9ee82057f8f3578d548c1a4ba0b5b700489826040518080602001828103825283818151815260200191508051906020019080838360005b8381101562000414578181015183820152602001620003fa565b50505050905090810190601f168015620004425780820380516001836020036101000a031916815260200191505b509250505060405180910390a25050565b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620004bb57805160ff1916838001178555620004eb565b82800160010185558215620004eb579182015b82811115620004eb578251825591602001919060010190620004ce565b50620004f9929150620004fd565b5090565b6200051a91905b80821115620004f9576000815560010162000504565b90565b611fca806200052d6000396000f3006080604052600436106101ed5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166301ffc9a781146101f257806305d2035b1461022857806306fdde031461023d578063095ea7b3146102c75780630988ca8c146102eb5780631296ee621461035457806318160ddd1461037857806319fa8f501461039f578063217fe6c6146103d157806323b872dd146104385780633092afd514610462578063313ce567146104835780633177029f146104ae578063355274ea146104d25780634000aea0146104e757806340c10f191461055057806342966c6814610574578063593557361461058c57806366188463146105ad57806370a08231146105d1578063715018a6146105f257806371e2a657146106075780637d64bcb41461065c5780638980f11f146106715780638da5cb5b1461069557806392afc33a146106c657806395d89b41146106db578063983b2d56146106f05780639870d7fe146107115780639f2c950314610732578063a07aea1c14610756578063a9059cbb146107ab578063ac8a584a146107cf578063c1d34b89146107f0578063cae9ca511461085f578063ce0617ec146108c8578063d73dd623146108dd578063d8fbe99414610901578063dd62ed3e1461092b578063f2fde38b14610952575b600080fd5b3480156101fe57600080fd5b50610214600160e060020a031960043516610973565b604080519115158252519081900360200190f35b34801561023457600080fd5b50610214610992565b34801561024957600080fd5b506102526109a2565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561028c578181015183820152602001610274565b50505050905090810190601f1680156102b95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102d357600080fd5b50610214600160a060020a0360043516602435610a30565b3480156102f757600080fd5b5060408051602060046024803582810135601f8101859004850286018501909652858552610352958335600160a060020a0316953695604494919390910191908190840183828082843750949750610a969650505050505050565b005b34801561036057600080fd5b50610214600160a060020a0360043516602435610b04565b34801561038457600080fd5b5061038d610b28565b60408051918252519081900360200190f35b3480156103ab57600080fd5b506103b4610b2e565b60408051600160e060020a03199092168252519081900360200190f35b3480156103dd57600080fd5b5060408051602060046024803582810135601f8101859004850286018501909652858552610214958335600160a060020a0316953695604494919390910191908190840183828082843750949750610b529650505050505050565b34801561044457600080fd5b50610214600160a060020a0360043581169060243516604435610bbe565b34801561046e57600080fd5b50610352600160a060020a0360043516610c62565b34801561048f57600080fd5b50610498610ca9565b6040805160ff9092168252519081900360200190f35b3480156104ba57600080fd5b50610214600160a060020a0360043516602435610cb2565b3480156104de57600080fd5b5061038d610ccf565b3480156104f357600080fd5b50604080516020600460443581810135601f8101849004840285018401909552848452610214948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610cd59650505050505050565b34801561055c57600080fd5b50610214600160a060020a0360043516602435610d0d565b34801561058057600080fd5b50610352600435610d3c565b34801561059857600080fd5b5061038d600160a060020a0360043516610d46565b3480156105b957600080fd5b50610214600160a060020a0360043516602435610d79565b3480156105dd57600080fd5b5061038d600160a060020a0360043516610e68565b3480156105fe57600080fd5b50610352610e83565b34801561061357600080fd5b506040805160206004803580820135838102808601850190965280855261035295369593946024949385019291829185019084908082843750949750610ef19650505050505050565b34801561066857600080fd5b50610214610f72565b34801561067d57600080fd5b50610214600160a060020a0360043516602435610ff6565b3480156106a157600080fd5b506106aa6110b2565b60408051600160a060020a039092168252519081900360200190f35b3480156106d257600080fd5b506102526110c1565b3480156106e757600080fd5b506102526110e6565b3480156106fc57600080fd5b50610352600160a060020a0360043516611140565b34801561071d57600080fd5b50610352600160a060020a0360043516611184565b34801561073e57600080fd5b50610214600160a060020a03600435166024356111df565b34801561076257600080fd5b5060408051602060048035808201358381028086018501909652808552610352953695939460249493850192918291850190849080828437509497506112719650505050505050565b3480156107b757600080fd5b50610214600160a060020a0360043516602435611309565b3480156107db57600080fd5b50610352600160a060020a0360043516611386565b3480156107fc57600080fd5b50604080516020601f60643560048181013592830184900484028501840190955281845261021494600160a060020a0381358116956024803590921695604435953695608494019181908401838280828437509497506113ca9650505050505050565b34801561086b57600080fd5b50604080516020600460443581810135601f8101849004840285018401909552848452610214948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506114049650505050505050565b3480156108d457600080fd5b5061038d61141c565b3480156108e957600080fd5b50610214600160a060020a0360043516602435611422565b34801561090d57600080fd5b50610214600160a060020a03600435811690602435166044356114bb565b34801561093757600080fd5b5061038d600160a060020a03600435811690602435166114e1565b34801561095e57600080fd5b50610352600160a060020a036004351661150c565b600160e060020a03191660009081526003602052604090205460ff1690565b60075460a060020a900460ff1681565b6000805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610a285780601f106109fd57610100808354040283529160200191610a28565b820191906000526020600020905b815481529060010190602001808311610a0b57829003601f168201915b505050505081565b336000818152600660209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b610b00826009836040518082805190602001908083835b60208310610acc5780518252601f199092019160209182019101610aad565b51815160209384036101000a600019018019909216911617905292019485525060405193849003019092209291505061152c565b5050565b6000610b2183836020604051908101604052806000815250610cd5565b9392505050565b60055490565b7f01ffc9a70000000000000000000000000000000000000000000000000000000081565b6000610b21836009846040518082805190602001908083835b60208310610b8a5780518252601f199092019160209182019101610b6b565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922092915050611541565b60008382600760149054906101000a900460ff1680610c055750610c0582604080519081016040528060088152602001600080516020611f3f833981519152815250610b52565b1515610c1057600080fd5b610c41610c1c83610d46565b600160a060020a0384166000908152600460205260409020549063ffffffff61156016565b811115610c4d57600080fd5b610c58868686611572565b9695505050505050565b600754600160a060020a03163314610c7957600080fd5b610ca681604080519081016040528060068152602001600080516020611f5f8339815191528152506116d7565b50565b60025460ff1681565b6000610b2183836020604051908101604052806000815250611404565b60085481565b6000610ce18484611309565b1515610cec57600080fd5b610cf8338585856117e8565b1515610d0357600080fd5b5060019392505050565b6000600854610d278360055461195590919063ffffffff16565b1115610d3257600080fd5b610b218383611962565b610ca63382611a71565b6000600a54421115610d59576000610d73565b600160a060020a0382166000908152600b60205260409020545b92915050565b336000908152600660209081526040808320600160a060020a0386168452909152812054808310610dcd57336000908152600660209081526040808320600160a060020a0388168452909152812055610e02565b610ddd818463ffffffff61156016565b336000908152600660209081526040808320600160a060020a03891684529091529020555b336000818152600660209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526004602052604090205490565b600754600160a060020a03163314610e9a57600080fd5b600754604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26007805473ffffffffffffffffffffffffffffffffffffffff19169055565b600754600090600160a060020a03163314610f0b57600080fd5b8151600010610f1957600080fd5b5060005b8151811015610b0057610f6a8282815181101515610f3757fe5b90602001906020020151604080519081016040528060068152602001600080516020611f5f833981519152815250611b60565b600101610f1d565b600754600090600160a060020a03163314610f8c57600080fd5b60075460a060020a900460ff1615610fa357600080fd5b6007805474ff0000000000000000000000000000000000000000191660a060020a1790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600754600090600160a060020a0316331461101057600080fd5b600754604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810185905290519185169163a9059cbb916044808201926020929091908290030181600087803b15801561107f57600080fd5b505af1158015611093573d6000803e3d6000fd5b505050506040513d60208110156110a957600080fd5b50519392505050565b600754600160a060020a031681565b6040805180820190915260068152600080516020611f5f833981519152602082015281565b60018054604080516020600284861615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610a285780601f106109fd57610100808354040283529160200191610a28565b600754600160a060020a0316331461115757600080fd5b610ca681604080519081016040528060068152602001600080516020611f5f833981519152815250611b60565b600754600160a060020a0316331461119b57600080fd5b60075460a060020a900460ff16156111b257600080fd5b610ca681604080519081016040528060088152602001600080516020611f3f833981519152815250611b60565b600061120e33604080519081016040528060068152602001600080516020611f5f833981519152815250610a96565b60075460a060020a900460ff161561122557600080fd5b600160a060020a0383166000908152600b602052604090205461124e908363ffffffff61195516565b600160a060020a0384166000908152600b6020526040902055610b218383610d0d565b600754600090600160a060020a0316331461128b57600080fd5b60075460a060020a900460ff16156112a257600080fd5b81516000106112b057600080fd5b5060005b8151811015610b005761130182828151811015156112ce57fe5b90602001906020020151604080519081016040528060088152602001600080516020611f3f833981519152815250611b60565b6001016112b4565b60003382600760149054906101000a900460ff1680611350575061135082604080519081016040528060088152602001600080516020611f3f833981519152815250610b52565b151561135b57600080fd5b611367610c1c83610d46565b81111561137357600080fd5b61137d8585611c32565b95945050505050565b600754600160a060020a0316331461139d57600080fd5b610ca681604080519081016040528060088152602001600080516020611f3f8339815191528152506116d7565b60006113d7858585610bbe565b15156113e257600080fd5b6113ee858585856117e8565b15156113f957600080fd5b506001949350505050565b60006114108484610a30565b50610cf8848484611d01565b600a5481565b336000908152600660209081526040808320600160a060020a0386168452909152812054611456908363ffffffff61195516565b336000818152600660209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b60006114d984848460206040519081016040528060008152506113ca565b949350505050565b600160a060020a03918216600090815260066020908152604080832093909416825291909152205490565b600754600160a060020a0316331461152357600080fd5b610ca681611e71565b6115368282611541565b1515610b0057600080fd5b600160a060020a03166000908152602091909152604090205460ff1690565b60008282111561156c57fe5b50900390565b600160a060020a03831660009081526004602052604081205482111561159757600080fd5b600160a060020a03841660009081526006602090815260408083203384529091529020548211156115c757600080fd5b600160a060020a03831615156115dc57600080fd5b600160a060020a038416600090815260046020526040902054611605908363ffffffff61156016565b600160a060020a03808616600090815260046020526040808220939093559085168152205461163a908363ffffffff61195516565b600160a060020a03808516600090815260046020908152604080832094909455918716815260068252828120338252909152205461167e908363ffffffff61156016565b600160a060020a0380861660008181526006602090815260408083203384528252918290209490945580518681529051928716939192600080516020611f7f833981519152929181900390910190a35060019392505050565b611741826009836040518082805190602001908083835b6020831061170d5780518252601f1990920191602091820191016116ee565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922092915050611eef565b81600160a060020a03167fd211483f91fc6eff862467f8de606587a30c8fc9981056f051b897a418df803a826040518080602001828103825283818151815260200191508051906020019080838360005b838110156117aa578181015183820152602001611792565b50505050905090810190601f1680156117d75780820380516001836020036101000a031916815260200191505b509250505060405180910390a25050565b6000806117fd85600160a060020a0316611f11565b151561180c576000915061194c565b6040517f88a7ca5c0000000000000000000000000000000000000000000000000000000081523360048201818152600160a060020a03898116602485015260448401889052608060648501908152875160848601528751918a16946388a7ca5c94938c938b938b93909160a490910190602085019080838360005b8381101561189f578181015183820152602001611887565b50505050905090810190601f1680156118cc5780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b1580156118ee57600080fd5b505af1158015611902573d6000803e3d6000fd5b505050506040513d602081101561191857600080fd5b5051600160e060020a031981167f88a7ca5c0000000000000000000000000000000000000000000000000000000014925090505b50949350505050565b81810182811015610d7357fe5b600061199133604080519081016040528060068152602001600080516020611f5f833981519152815250610a96565b60075460a060020a900460ff16156119a857600080fd5b6005546119bb908363ffffffff61195516565b600555600160a060020a0383166000908152600460205260409020546119e7908363ffffffff61195516565b600160a060020a038416600081815260046020908152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a03851691600091600080516020611f7f8339815191529181900360200190a350600192915050565b600160a060020a038216600090815260046020526040902054811115611a9657600080fd5b600160a060020a038216600090815260046020526040902054611abf908263ffffffff61156016565b600160a060020a038316600090815260046020526040902055600554611aeb908263ffffffff61156016565b600555604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a03851691600080516020611f7f8339815191529181900360200190a35050565b611bca826009836040518082805190602001908083835b60208310611b965780518252601f199092019160209182019101611b77565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922092915050611f19565b81600160a060020a03167fbfec83d64eaa953f2708271a023ab9ee82057f8f3578d548c1a4ba0b5b70048982604051808060200182810382528381815181526020019150805190602001908083836000838110156117aa578181015183820152602001611792565b33600090815260046020526040812054821115611c4e57600080fd5b600160a060020a0383161515611c6357600080fd5b33600090815260046020526040902054611c83908363ffffffff61156016565b3360009081526004602052604080822092909255600160a060020a03851681522054611cb5908363ffffffff61195516565b600160a060020a038416600081815260046020908152604091829020939093558051858152905191923392600080516020611f7f8339815191529281900390910190a350600192915050565b600080611d1685600160a060020a0316611f11565b1515611d255760009150611e69565b84600160a060020a0316637b04a2d03386866040518463ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018084600160a060020a0316600160a060020a0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015611dbd578181015183820152602001611da5565b50505050905090810190601f168015611dea5780820380516001836020036101000a031916815260200191505b50945050505050602060405180830381600087803b158015611e0b57600080fd5b505af1158015611e1f573d6000803e3d6000fd5b505050506040513d6020811015611e3557600080fd5b5051600160e060020a031981167f7b04a2d00000000000000000000000000000000000000000000000000000000014925090505b509392505050565b600160a060020a0381161515611e8657600080fd5b600754604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36007805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a0316600090815260209190915260409020805460ff19169055565b6000903b1190565b600160a060020a0316600090815260209190915260409020805460ff1916600117905556006f70657261746f720000000000000000000000000000000000000000000000006d696e7465720000000000000000000000000000000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820d9de277dba96ba3e2eaabd49829086edc052a4f00f53ca9c619165b282f9f94f002900000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000a56fa5b99019a5c8000000000000000000000000000000000000000000000000000000000000005cdf2ee0000000000000000000000000000000000000000000000000000000000000001247617374726f41647669736f72546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004464f524b00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101ed5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166301ffc9a781146101f257806305d2035b1461022857806306fdde031461023d578063095ea7b3146102c75780630988ca8c146102eb5780631296ee621461035457806318160ddd1461037857806319fa8f501461039f578063217fe6c6146103d157806323b872dd146104385780633092afd514610462578063313ce567146104835780633177029f146104ae578063355274ea146104d25780634000aea0146104e757806340c10f191461055057806342966c6814610574578063593557361461058c57806366188463146105ad57806370a08231146105d1578063715018a6146105f257806371e2a657146106075780637d64bcb41461065c5780638980f11f146106715780638da5cb5b1461069557806392afc33a146106c657806395d89b41146106db578063983b2d56146106f05780639870d7fe146107115780639f2c950314610732578063a07aea1c14610756578063a9059cbb146107ab578063ac8a584a146107cf578063c1d34b89146107f0578063cae9ca511461085f578063ce0617ec146108c8578063d73dd623146108dd578063d8fbe99414610901578063dd62ed3e1461092b578063f2fde38b14610952575b600080fd5b3480156101fe57600080fd5b50610214600160e060020a031960043516610973565b604080519115158252519081900360200190f35b34801561023457600080fd5b50610214610992565b34801561024957600080fd5b506102526109a2565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561028c578181015183820152602001610274565b50505050905090810190601f1680156102b95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102d357600080fd5b50610214600160a060020a0360043516602435610a30565b3480156102f757600080fd5b5060408051602060046024803582810135601f8101859004850286018501909652858552610352958335600160a060020a0316953695604494919390910191908190840183828082843750949750610a969650505050505050565b005b34801561036057600080fd5b50610214600160a060020a0360043516602435610b04565b34801561038457600080fd5b5061038d610b28565b60408051918252519081900360200190f35b3480156103ab57600080fd5b506103b4610b2e565b60408051600160e060020a03199092168252519081900360200190f35b3480156103dd57600080fd5b5060408051602060046024803582810135601f8101859004850286018501909652858552610214958335600160a060020a0316953695604494919390910191908190840183828082843750949750610b529650505050505050565b34801561044457600080fd5b50610214600160a060020a0360043581169060243516604435610bbe565b34801561046e57600080fd5b50610352600160a060020a0360043516610c62565b34801561048f57600080fd5b50610498610ca9565b6040805160ff9092168252519081900360200190f35b3480156104ba57600080fd5b50610214600160a060020a0360043516602435610cb2565b3480156104de57600080fd5b5061038d610ccf565b3480156104f357600080fd5b50604080516020600460443581810135601f8101849004840285018401909552848452610214948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610cd59650505050505050565b34801561055c57600080fd5b50610214600160a060020a0360043516602435610d0d565b34801561058057600080fd5b50610352600435610d3c565b34801561059857600080fd5b5061038d600160a060020a0360043516610d46565b3480156105b957600080fd5b50610214600160a060020a0360043516602435610d79565b3480156105dd57600080fd5b5061038d600160a060020a0360043516610e68565b3480156105fe57600080fd5b50610352610e83565b34801561061357600080fd5b506040805160206004803580820135838102808601850190965280855261035295369593946024949385019291829185019084908082843750949750610ef19650505050505050565b34801561066857600080fd5b50610214610f72565b34801561067d57600080fd5b50610214600160a060020a0360043516602435610ff6565b3480156106a157600080fd5b506106aa6110b2565b60408051600160a060020a039092168252519081900360200190f35b3480156106d257600080fd5b506102526110c1565b3480156106e757600080fd5b506102526110e6565b3480156106fc57600080fd5b50610352600160a060020a0360043516611140565b34801561071d57600080fd5b50610352600160a060020a0360043516611184565b34801561073e57600080fd5b50610214600160a060020a03600435166024356111df565b34801561076257600080fd5b5060408051602060048035808201358381028086018501909652808552610352953695939460249493850192918291850190849080828437509497506112719650505050505050565b3480156107b757600080fd5b50610214600160a060020a0360043516602435611309565b3480156107db57600080fd5b50610352600160a060020a0360043516611386565b3480156107fc57600080fd5b50604080516020601f60643560048181013592830184900484028501840190955281845261021494600160a060020a0381358116956024803590921695604435953695608494019181908401838280828437509497506113ca9650505050505050565b34801561086b57600080fd5b50604080516020600460443581810135601f8101849004840285018401909552848452610214948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506114049650505050505050565b3480156108d457600080fd5b5061038d61141c565b3480156108e957600080fd5b50610214600160a060020a0360043516602435611422565b34801561090d57600080fd5b50610214600160a060020a03600435811690602435166044356114bb565b34801561093757600080fd5b5061038d600160a060020a03600435811690602435166114e1565b34801561095e57600080fd5b50610352600160a060020a036004351661150c565b600160e060020a03191660009081526003602052604090205460ff1690565b60075460a060020a900460ff1681565b6000805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610a285780601f106109fd57610100808354040283529160200191610a28565b820191906000526020600020905b815481529060010190602001808311610a0b57829003601f168201915b505050505081565b336000818152600660209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b610b00826009836040518082805190602001908083835b60208310610acc5780518252601f199092019160209182019101610aad565b51815160209384036101000a600019018019909216911617905292019485525060405193849003019092209291505061152c565b5050565b6000610b2183836020604051908101604052806000815250610cd5565b9392505050565b60055490565b7f01ffc9a70000000000000000000000000000000000000000000000000000000081565b6000610b21836009846040518082805190602001908083835b60208310610b8a5780518252601f199092019160209182019101610b6b565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922092915050611541565b60008382600760149054906101000a900460ff1680610c055750610c0582604080519081016040528060088152602001600080516020611f3f833981519152815250610b52565b1515610c1057600080fd5b610c41610c1c83610d46565b600160a060020a0384166000908152600460205260409020549063ffffffff61156016565b811115610c4d57600080fd5b610c58868686611572565b9695505050505050565b600754600160a060020a03163314610c7957600080fd5b610ca681604080519081016040528060068152602001600080516020611f5f8339815191528152506116d7565b50565b60025460ff1681565b6000610b2183836020604051908101604052806000815250611404565b60085481565b6000610ce18484611309565b1515610cec57600080fd5b610cf8338585856117e8565b1515610d0357600080fd5b5060019392505050565b6000600854610d278360055461195590919063ffffffff16565b1115610d3257600080fd5b610b218383611962565b610ca63382611a71565b6000600a54421115610d59576000610d73565b600160a060020a0382166000908152600b60205260409020545b92915050565b336000908152600660209081526040808320600160a060020a0386168452909152812054808310610dcd57336000908152600660209081526040808320600160a060020a0388168452909152812055610e02565b610ddd818463ffffffff61156016565b336000908152600660209081526040808320600160a060020a03891684529091529020555b336000818152600660209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526004602052604090205490565b600754600160a060020a03163314610e9a57600080fd5b600754604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26007805473ffffffffffffffffffffffffffffffffffffffff19169055565b600754600090600160a060020a03163314610f0b57600080fd5b8151600010610f1957600080fd5b5060005b8151811015610b0057610f6a8282815181101515610f3757fe5b90602001906020020151604080519081016040528060068152602001600080516020611f5f833981519152815250611b60565b600101610f1d565b600754600090600160a060020a03163314610f8c57600080fd5b60075460a060020a900460ff1615610fa357600080fd5b6007805474ff0000000000000000000000000000000000000000191660a060020a1790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600754600090600160a060020a0316331461101057600080fd5b600754604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810185905290519185169163a9059cbb916044808201926020929091908290030181600087803b15801561107f57600080fd5b505af1158015611093573d6000803e3d6000fd5b505050506040513d60208110156110a957600080fd5b50519392505050565b600754600160a060020a031681565b6040805180820190915260068152600080516020611f5f833981519152602082015281565b60018054604080516020600284861615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610a285780601f106109fd57610100808354040283529160200191610a28565b600754600160a060020a0316331461115757600080fd5b610ca681604080519081016040528060068152602001600080516020611f5f833981519152815250611b60565b600754600160a060020a0316331461119b57600080fd5b60075460a060020a900460ff16156111b257600080fd5b610ca681604080519081016040528060088152602001600080516020611f3f833981519152815250611b60565b600061120e33604080519081016040528060068152602001600080516020611f5f833981519152815250610a96565b60075460a060020a900460ff161561122557600080fd5b600160a060020a0383166000908152600b602052604090205461124e908363ffffffff61195516565b600160a060020a0384166000908152600b6020526040902055610b218383610d0d565b600754600090600160a060020a0316331461128b57600080fd5b60075460a060020a900460ff16156112a257600080fd5b81516000106112b057600080fd5b5060005b8151811015610b005761130182828151811015156112ce57fe5b90602001906020020151604080519081016040528060088152602001600080516020611f3f833981519152815250611b60565b6001016112b4565b60003382600760149054906101000a900460ff1680611350575061135082604080519081016040528060088152602001600080516020611f3f833981519152815250610b52565b151561135b57600080fd5b611367610c1c83610d46565b81111561137357600080fd5b61137d8585611c32565b95945050505050565b600754600160a060020a0316331461139d57600080fd5b610ca681604080519081016040528060088152602001600080516020611f3f8339815191528152506116d7565b60006113d7858585610bbe565b15156113e257600080fd5b6113ee858585856117e8565b15156113f957600080fd5b506001949350505050565b60006114108484610a30565b50610cf8848484611d01565b600a5481565b336000908152600660209081526040808320600160a060020a0386168452909152812054611456908363ffffffff61195516565b336000818152600660209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b60006114d984848460206040519081016040528060008152506113ca565b949350505050565b600160a060020a03918216600090815260066020908152604080832093909416825291909152205490565b600754600160a060020a0316331461152357600080fd5b610ca681611e71565b6115368282611541565b1515610b0057600080fd5b600160a060020a03166000908152602091909152604090205460ff1690565b60008282111561156c57fe5b50900390565b600160a060020a03831660009081526004602052604081205482111561159757600080fd5b600160a060020a03841660009081526006602090815260408083203384529091529020548211156115c757600080fd5b600160a060020a03831615156115dc57600080fd5b600160a060020a038416600090815260046020526040902054611605908363ffffffff61156016565b600160a060020a03808616600090815260046020526040808220939093559085168152205461163a908363ffffffff61195516565b600160a060020a03808516600090815260046020908152604080832094909455918716815260068252828120338252909152205461167e908363ffffffff61156016565b600160a060020a0380861660008181526006602090815260408083203384528252918290209490945580518681529051928716939192600080516020611f7f833981519152929181900390910190a35060019392505050565b611741826009836040518082805190602001908083835b6020831061170d5780518252601f1990920191602091820191016116ee565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922092915050611eef565b81600160a060020a03167fd211483f91fc6eff862467f8de606587a30c8fc9981056f051b897a418df803a826040518080602001828103825283818151815260200191508051906020019080838360005b838110156117aa578181015183820152602001611792565b50505050905090810190601f1680156117d75780820380516001836020036101000a031916815260200191505b509250505060405180910390a25050565b6000806117fd85600160a060020a0316611f11565b151561180c576000915061194c565b6040517f88a7ca5c0000000000000000000000000000000000000000000000000000000081523360048201818152600160a060020a03898116602485015260448401889052608060648501908152875160848601528751918a16946388a7ca5c94938c938b938b93909160a490910190602085019080838360005b8381101561189f578181015183820152602001611887565b50505050905090810190601f1680156118cc5780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b1580156118ee57600080fd5b505af1158015611902573d6000803e3d6000fd5b505050506040513d602081101561191857600080fd5b5051600160e060020a031981167f88a7ca5c0000000000000000000000000000000000000000000000000000000014925090505b50949350505050565b81810182811015610d7357fe5b600061199133604080519081016040528060068152602001600080516020611f5f833981519152815250610a96565b60075460a060020a900460ff16156119a857600080fd5b6005546119bb908363ffffffff61195516565b600555600160a060020a0383166000908152600460205260409020546119e7908363ffffffff61195516565b600160a060020a038416600081815260046020908152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a03851691600091600080516020611f7f8339815191529181900360200190a350600192915050565b600160a060020a038216600090815260046020526040902054811115611a9657600080fd5b600160a060020a038216600090815260046020526040902054611abf908263ffffffff61156016565b600160a060020a038316600090815260046020526040902055600554611aeb908263ffffffff61156016565b600555604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a03851691600080516020611f7f8339815191529181900360200190a35050565b611bca826009836040518082805190602001908083835b60208310611b965780518252601f199092019160209182019101611b77565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922092915050611f19565b81600160a060020a03167fbfec83d64eaa953f2708271a023ab9ee82057f8f3578d548c1a4ba0b5b70048982604051808060200182810382528381815181526020019150805190602001908083836000838110156117aa578181015183820152602001611792565b33600090815260046020526040812054821115611c4e57600080fd5b600160a060020a0383161515611c6357600080fd5b33600090815260046020526040902054611c83908363ffffffff61156016565b3360009081526004602052604080822092909255600160a060020a03851681522054611cb5908363ffffffff61195516565b600160a060020a038416600081815260046020908152604091829020939093558051858152905191923392600080516020611f7f8339815191529281900390910190a350600192915050565b600080611d1685600160a060020a0316611f11565b1515611d255760009150611e69565b84600160a060020a0316637b04a2d03386866040518463ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018084600160a060020a0316600160a060020a0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015611dbd578181015183820152602001611da5565b50505050905090810190601f168015611dea5780820380516001836020036101000a031916815260200191505b50945050505050602060405180830381600087803b158015611e0b57600080fd5b505af1158015611e1f573d6000803e3d6000fd5b505050506040513d6020811015611e3557600080fd5b5051600160e060020a031981167f7b04a2d00000000000000000000000000000000000000000000000000000000014925090505b509392505050565b600160a060020a0381161515611e8657600080fd5b600754604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36007805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a0316600090815260209190915260409020805460ff19169055565b6000903b1190565b600160a060020a0316600090815260209190915260409020805460ff1916600117905556006f70657261746f720000000000000000000000000000000000000000000000006d696e7465720000000000000000000000000000000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820d9de277dba96ba3e2eaabd49829086edc052a4f00f53ca9c619165b282f9f94f0029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000a56fa5b99019a5c8000000000000000000000000000000000000000000000000000000000000005cdf2ee0000000000000000000000000000000000000000000000000000000000000001247617374726f41647669736f72546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004464f524b00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): GastroAdvisorToken
Arg [1] : _symbol (string): FORK
Arg [2] : _decimals (uint8): 18
Arg [3] : _cap (uint256): 200000000000000000000000000
Arg [4] : _lockedUntil (uint256): 1558130400
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 000000000000000000000000000000000000000000a56fa5b99019a5c8000000
Arg [4] : 000000000000000000000000000000000000000000000000000000005cdf2ee0
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [6] : 47617374726f41647669736f72546f6b656e0000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [8] : 464f524b00000000000000000000000000000000000000000000000000000000
Swarm Source
bzzr://d9de277dba96ba3e2eaabd49829086edc052a4f00f53ca9c619165b282f9f94f
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.