ERC-20
Marketing
Overview
Max Total Supply
12,500,000,000 GOI
Holders
69 (0.00%)
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GoForItToken
Compiler Version
v0.5.1+commit.c8a2cb62
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2019-08-13 */ // File: openzeppelin-solidity/contracts/token/ERC20/IERC20.sol pragma solidity ^0.5.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see `ERC20Detailed`. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a `Transfer` event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through `transferFrom`. This is * zero by default. * * This value changes when `approve` or `transferFrom` are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * > 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 * * Emits an `Approval` event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a `Transfer` event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to `approve`. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: openzeppelin-solidity/contracts/math/SafeMath.sol pragma solidity ^0.5.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring '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; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, "SafeMath: division by zero"); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b != 0, "SafeMath: modulo by zero"); return a % b; } } // File: openzeppelin-solidity/contracts/token/ERC20/ERC20.sol pragma solidity ^0.5.0; /** * @dev Implementation of the `IERC20` interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using `_mint`. * For a generic mechanism see `ERC20Mintable`. * * *For a detailed writeup see our guide [How to implement supply * mechanisms](https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226).* * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an `Approval` event is emitted on calls to `transferFrom`. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard `decreaseAllowance` and `increaseAllowance` * functions have been added to mitigate the well-known issues around setting * allowances. See `IERC20.approve`. */ contract ERC20 is IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; /** * @dev See `IERC20.totalSupply`. */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev See `IERC20.balanceOf`. */ function balanceOf(address account) public view returns (uint256) { return _balances[account]; } /** * @dev See `IERC20.transfer`. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public returns (bool) { _transfer(msg.sender, recipient, amount); return true; } /** * @dev See `IERC20.allowance`. */ function allowance(address owner, address spender) public view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See `IERC20.approve`. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public returns (bool) { _approve(msg.sender, spender, value); return true; } /** * @dev See `IERC20.transferFrom`. * * Emits an `Approval` event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of `ERC20`; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `value`. * - the caller must have allowance for `sender`'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) { _transfer(sender, recipient, amount); _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount)); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to `approve` that can be used as a mitigation for * problems described in `IERC20.approve`. * * Emits an `Approval` event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to `approve` that can be used as a mitigation for * problems described in `IERC20.approve`. * * Emits an `Approval` event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue)); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to `transfer`, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a `Transfer` event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _balances[sender] = _balances[sender].sub(amount); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a `Transfer` event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal { require(account != address(0), "ERC20: mint to the zero address"); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destoys `amount` tokens from `account`, reducing the * total supply. * * Emits a `Transfer` event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 value) internal { require(account != address(0), "ERC20: burn from the zero address"); _totalSupply = _totalSupply.sub(value); _balances[account] = _balances[account].sub(value); emit Transfer(account, address(0), value); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an `Approval` event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 value) internal { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = value; emit Approval(owner, spender, value); } /** * @dev Destoys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See `_burn` and `_approve`. */ function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve(account, msg.sender, _allowances[account][msg.sender].sub(amount)); } } // File: openzeppelin-solidity/contracts/token/ERC20/ERC20Burnable.sol pragma solidity ^0.5.0; /** * @dev Extension of `ERC20` that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ contract ERC20Burnable is ERC20 { /** * @dev Destoys `amount` tokens from the caller. * * See `ERC20._burn`. */ function burn(uint256 amount) public { _burn(msg.sender, amount); } /** * @dev See `ERC20._burnFrom`. */ function burnFrom(address account, uint256 amount) public { _burnFrom(account, amount); } } // File: openzeppelin-solidity/contracts/utils/Address.sol pragma solidity ^0.5.0; /** * @dev Collection of functions related to the address type, */ library Address { /** * @dev Returns true if `account` is a contract. * * This test is non-exhaustive, and there may be false-negatives: during the * execution of a contract's constructor, its address will be reported as * not containing a contract. * * > It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. */ function isContract(address account) internal view returns (bool) { // This method relies in extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } } // File: openzeppelin-solidity/contracts/token/ERC20/SafeERC20.sol pragma solidity ^0.5.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for ERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value); callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. // A Solidity high level call has three parts: // 1. The target address is checked to verify it contains contract code // 2. The call itself is made, and success asserted // 3. The return value is decoded, which in turn checks the size of the returned data. // solhint-disable-next-line max-line-length require(address(token).isContract(), "SafeERC20: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = address(token).call(data); require(success, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // File: openzeppelin-solidity/contracts/ownership/Ownable.sol pragma solidity ^0.5.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be aplied to your functions to restrict their use to * the owner. */ contract Ownable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { _owner = msg.sender; emit OwnershipTransferred(address(0), _owner); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(isOwner(), "Ownable: caller is not the owner"); _; } /** * @dev Returns true if the caller is the current owner. */ function isOwner() public view returns (bool) { return msg.sender == _owner; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * > Note: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: openzeppelin-solidity/contracts/drafts/TokenVesting.sol pragma solidity ^0.5.0; /** * @title TokenVesting * @dev A token holder contract that can release its token balance gradually like a * typical vesting scheme, with a cliff and vesting period. Optionally revocable by the * owner. */ contract TokenVesting is Ownable { // The vesting schedule is time-based (i.e. using block timestamps as opposed to e.g. block numbers), and is // therefore sensitive to timestamp manipulation (which is something miners can do, to a certain degree). Therefore, // it is recommended to avoid using short time durations (less than a minute). Typical vesting schemes, with a // cliff period of a year and a duration of four years, are safe to use. // solhint-disable not-rely-on-time using SafeMath for uint256; using SafeERC20 for IERC20; event TokensReleased(address token, uint256 amount); event TokenVestingRevoked(address token); // beneficiary of tokens after they are released address private _beneficiary; // Durations and timestamps are expressed in UNIX time, the same units as block.timestamp. uint256 private _cliff; uint256 private _start; uint256 private _duration; bool private _revocable; mapping (address => uint256) private _released; mapping (address => bool) private _revoked; /** * @dev Creates a vesting contract that vests its balance of any ERC20 token to the * beneficiary, gradually in a linear fashion until start + duration. By then all * of the balance will have vested. * @param beneficiary address of the beneficiary to whom vested tokens are transferred * @param cliffDuration duration in seconds of the cliff in which tokens will begin to vest * @param start the time (as Unix time) at which point vesting starts * @param duration duration in seconds of the period in which the tokens will vest * @param revocable whether the vesting is revocable or not */ constructor (address beneficiary, uint256 start, uint256 cliffDuration, uint256 duration, bool revocable) public { require(beneficiary != address(0), "TokenVesting: beneficiary is the zero address"); // solhint-disable-next-line max-line-length require(cliffDuration <= duration, "TokenVesting: cliff is longer than duration"); require(duration > 0, "TokenVesting: duration is 0"); // solhint-disable-next-line max-line-length require(start.add(duration) > block.timestamp, "TokenVesting: final time is before current time"); _beneficiary = beneficiary; _revocable = revocable; _duration = duration; _cliff = start.add(cliffDuration); _start = start; } /** * @return the beneficiary of the tokens. */ function beneficiary() public view returns (address) { return _beneficiary; } /** * @return the cliff time of the token vesting. */ function cliff() public view returns (uint256) { return _cliff; } /** * @return the start time of the token vesting. */ function start() public view returns (uint256) { return _start; } /** * @return the duration of the token vesting. */ function duration() public view returns (uint256) { return _duration; } /** * @return true if the vesting is revocable. */ function revocable() public view returns (bool) { return _revocable; } /** * @return the amount of the token released. */ function released(address token) public view returns (uint256) { return _released[token]; } /** * @return true if the token is revoked. */ function revoked(address token) public view returns (bool) { return _revoked[token]; } /** * @notice Transfers vested tokens to beneficiary. * @param token ERC20 token which is being vested */ function release(IERC20 token) public { uint256 unreleased = _releasableAmount(token); require(unreleased > 0, "TokenVesting: no tokens are due"); _released[address(token)] = _released[address(token)].add(unreleased); token.safeTransfer(_beneficiary, unreleased); emit TokensReleased(address(token), unreleased); } /** * @notice Allows the owner to revoke the vesting. Tokens already vested * remain in the contract, the rest are returned to the owner. * @param token ERC20 token which is being vested */ function revoke(IERC20 token) public onlyOwner { require(_revocable, "TokenVesting: cannot revoke"); require(!_revoked[address(token)], "TokenVesting: token already revoked"); uint256 balance = token.balanceOf(address(this)); uint256 unreleased = _releasableAmount(token); uint256 refund = balance.sub(unreleased); _revoked[address(token)] = true; token.safeTransfer(owner(), refund); emit TokenVestingRevoked(address(token)); } /** * @dev Calculates the amount that has already vested but hasn't been released yet. * @param token ERC20 token which is being vested */ function _releasableAmount(IERC20 token) private view returns (uint256) { return _vestedAmount(token).sub(_released[address(token)]); } /** * @dev Calculates the amount that has already vested. * @param token ERC20 token which is being vested */ function _vestedAmount(IERC20 token) private view returns (uint256) { uint256 currentBalance = token.balanceOf(address(this)); uint256 totalBalance = currentBalance.add(_released[address(token)]); if (block.timestamp < _cliff) { return 0; } else if (block.timestamp >= _start.add(_duration) || _revoked[address(token)]) { return totalBalance; } else { return totalBalance.mul(block.timestamp.sub(_start)).div(_duration); } } } // File: contracts/GoFotItToken.sol pragma solidity 0.5.1; contract GoForItToken is ERC20Burnable { uint constant TOTALTOKENSUPPLY = 12500000000 ether; string public name = "Goin Token"; string public symbol = "GOI"; uint8 public decimals = 18; mapping(address => address) public vestingContracts; event TokenVested(address beneficiary, address contractAddress, uint amount); /// @dev Constructor constructor(address[] memory beneficiaries, uint[] memory vestingInDays, uint[] memory amounts ) public { require(beneficiaries.length == vestingInDays.length && amounts.length == vestingInDays.length, "array length does not match"); for(uint i=0;i<beneficiaries.length;i++) { uint vestingDays = vestingInDays[i]; require(vestingContracts[beneficiaries[i]]== address(0), "only 1 contract per address"); if(vestingDays>0) { TokenVesting vestingContract =new TokenVesting(beneficiaries[i],now,vestingDays* 1 days,vestingInDays[i]* 1 days, false); _mint(address(vestingContract),amounts[i]); vestingContracts[beneficiaries[i]]=address(vestingContract); emit TokenVested(beneficiaries[i],address(vestingContract),amounts[i]); } else { _mint(beneficiaries[i],amounts[i]); } } require(totalSupply()== TOTALTOKENSUPPLY, "totalsupply does not match"); } function release() public { require(vestingContracts[msg.sender] != address(0),"no tokens vested"); TokenVesting(vestingContracts[msg.sender]).release(IERC20(address(this))); } }
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":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"sender","type":"address"},{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"vestingContracts","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"},{"name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"release","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"beneficiaries","type":"address[]"},{"name":"vestingInDays","type":"uint256[]"},{"name":"amounts","type":"uint256[]"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"beneficiary","type":"address"},{"indexed":false,"name":"contractAddress","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"TokenVested","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"},{"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"}]
Contract Creation Code
60c0604052600a60808190527f476f696e20546f6b656e0000000000000000000000000000000000000000000060a090815262000040916003919062000746565b506040805180820190915260038082527f474f4900000000000000000000000000000000000000000000000000000000006020909201918252620000879160049162000746565b506005805460ff19166012179055348015620000a257600080fd5b50604051620027e0380380620027e083398101806040526060811015620000c857600080fd5b810190808051640100000000811115620000e157600080fd5b82016020810184811115620000f557600080fd5b81518560208202830111640100000000821117156200011357600080fd5b505092919060200180516401000000008111156200013057600080fd5b820160208101848111156200014457600080fd5b81518560208202830111640100000000821117156200016257600080fd5b505092919060200180516401000000008111156200017f57600080fd5b820160208101848111156200019357600080fd5b8151856020820283011164010000000082111715620001b157600080fd5b505092919050505081518351148015620001cc575081518151145b15156200023a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f6172726179206c656e67746820646f6573206e6f74206d617463680000000000604482015290519081900360640190fd5b60005b83518110156200050b57600083828151811015156200025857fe5b9060200190602002015190506000600160a060020a03166006600087858151811015156200028257fe5b6020908102909101810151600160a060020a039081168352908201929092526040016000205416146200031657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f6f6e6c79203120636f6e74726163742070657220616464726573730000000000604482015290519081900360640190fd5b6000811115620004d557600085838151811015156200033157fe5b906020019060200201514283620151800287868151811015156200035157fe5b90602001906020020151620151800260006200036c620007cb565b600160a060020a039095168552602085019390935260408085019290925260608401529015156080830152519081900360a001906000f080158015620003b6573d6000803e3d6000fd5b509050620003ec818585815181101515620003cd57fe5b90602001906020020151620005a2640100000000026401000000009004565b806006600088868151811015156200040057fe5b90602001906020020151600160a060020a0316600160a060020a0316815260200190815260200160002060006101000a815481600160a060020a030219169083600160a060020a031602179055507f83a699f2fda2c137aa4f84b56d51b608b27c8374db4b74444a2a7b6303e4a5ed86848151811015156200047e57fe5b906020019060200201518286868151811015156200049857fe5b602090810290910181015160408051600160a060020a03958616815293909416918301919091528183015290519081900360600190a15062000501565b620005018583815181101515620004e857fe5b906020019060200201518484815181101515620003cd57fe5b506001016200023d565b506b2863c1f5cdae42f9540000006200052c640100000000620006c3810204565b146200059957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f746f74616c737570706c7920646f6573206e6f74206d61746368000000000000604482015290519081900360640190fd5b505050620007f9565b600160a060020a03821615156200061a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b60025462000637908264010000000062000b28620006ca82021704565b600255600160a060020a0382166000908152602081905260409020546200066d908264010000000062000b28620006ca82021704565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6002545b90565b6000828201838110156200073f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200078957805160ff1916838001178555620007b9565b82800160010185558215620007b9579182015b82811115620007b95782518255916020019190600101906200079c565b50620007c7929150620007dc565b5090565b6040516112c0806200152083390190565b620006c791905b80821115620007c75760008155600101620007e3565b610d1780620008096000396000f3fe6080604052600436106100d4577c0100000000000000000000000000000000000000000000000000000000600035046306fdde0381146100d9578063095ea7b31461016357806318160ddd146101b057806323b872dd146101d7578063313ce5671461021a5780633791587414610245578063395093511461029457806342966c68146102cd57806370a08231146102f957806379cc67901461032c57806386d1a69f1461036557806395d89b411461037a578063a457c2d71461038f578063a9059cbb146103c8578063dd62ed3e14610401575b600080fd5b3480156100e557600080fd5b506100ee61043c565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610128578181015183820152602001610110565b50505050905090810190601f1680156101555780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561016f57600080fd5b5061019c6004803603604081101561018657600080fd5b50600160a060020a0381351690602001356104ca565b604080519115158252519081900360200190f35b3480156101bc57600080fd5b506101c56104e0565b60408051918252519081900360200190f35b3480156101e357600080fd5b5061019c600480360360608110156101fa57600080fd5b50600160a060020a038135811691602081013590911690604001356104e6565b34801561022657600080fd5b5061022f61053d565b6040805160ff9092168252519081900360200190f35b34801561025157600080fd5b506102786004803603602081101561026857600080fd5b5035600160a060020a0316610546565b60408051600160a060020a039092168252519081900360200190f35b3480156102a057600080fd5b5061019c600480360360408110156102b757600080fd5b50600160a060020a038135169060200135610561565b3480156102d957600080fd5b506102f7600480360360208110156102f057600080fd5b503561059d565b005b34801561030557600080fd5b506101c56004803603602081101561031c57600080fd5b5035600160a060020a03166105aa565b34801561033857600080fd5b506102f76004803603604081101561034f57600080fd5b50600160a060020a0381351690602001356105c5565b34801561037157600080fd5b506102f76105d3565b34801561038657600080fd5b506100ee6106c8565b34801561039b57600080fd5b5061019c600480360360408110156103b257600080fd5b50600160a060020a038135169060200135610723565b3480156103d457600080fd5b5061019c600480360360408110156103eb57600080fd5b50600160a060020a03813516906020013561075f565b34801561040d57600080fd5b506101c56004803603604081101561042457600080fd5b50600160a060020a038135811691602001351661076c565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104c25780601f10610497576101008083540402835291602001916104c2565b820191906000526020600020905b8154815290600101906020018083116104a557829003601f168201915b505050505081565b60006104d7338484610797565b50600192915050565b60025490565b60006104f3848484610904565b600160a060020a03841660009081526001602090815260408083203380855292529091205461053391869161052e908663ffffffff610ac816565b610797565b5060019392505050565b60055460ff1681565b600660205260009081526040902054600160a060020a031681565b336000818152600160209081526040808320600160a060020a038716845290915281205490916104d791859061052e908663ffffffff610b2816565b6105a73382610b8c565b50565b600160a060020a031660009081526020819052604090205490565b6105cf8282610ca6565b5050565b33600090815260066020526040902054600160a060020a03161515610642576040805160e560020a62461bcd02815260206004820152601060248201527f6e6f20746f6b656e732076657374656400000000000000000000000000000000604482015290519081900360640190fd5b336000908152600660205260408082205481517f191655870000000000000000000000000000000000000000000000000000000081523060048201529151600160a060020a03909116926319165587926024808201939182900301818387803b1580156106ae57600080fd5b505af11580156106c2573d6000803e3d6000fd5b50505050565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104c25780601f10610497576101008083540402835291602001916104c2565b336000818152600160209081526040808320600160a060020a038716845290915281205490916104d791859061052e908663ffffffff610ac816565b60006104d7338484610904565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b600160a060020a038316151561081c576040805160e560020a62461bcd028152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03821615156108a2576040805160e560020a62461bcd02815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600160a060020a038316151561098a576040805160e560020a62461bcd02815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0382161515610a10576040805160e560020a62461bcd02815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a038316600090815260208190526040902054610a39908263ffffffff610ac816565b600160a060020a038085166000908152602081905260408082209390935590841681522054610a6e908263ffffffff610b2816565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082821115610b22576040805160e560020a62461bcd02815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600082820183811015610b85576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600160a060020a0382161515610c12576040805160e560020a62461bcd02815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600254610c25908263ffffffff610ac816565b600255600160a060020a038216600090815260208190526040902054610c51908263ffffffff610ac816565b600160a060020a038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b610cb08282610b8c565b600160a060020a0382166000908152600160209081526040808320338085529252909120546105cf91849161052e908563ffffffff610ac81656fea165627a7a7230582049845c497e994c72b852bc0a8fecdec3aba720ab72153ba8650709d505723aaf0029608060405234801561001057600080fd5b5060405160a0806112c0833981018060405260a081101561003057600080fd5b5080516020820151604080840151606085015160809095015160008054600160a060020a03191633178082559351959694959294939192600160a060020a0392909216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3600160a060020a038516151561013657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f546f6b656e56657374696e673a2062656e65666963696172792069732074686560448201527f207a65726f206164647265737300000000000000000000000000000000000000606482015290519081900360840190fd5b818311156101cb57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f546f6b656e56657374696e673a20636c696666206973206c6f6e67657220746860448201527f616e206475726174696f6e000000000000000000000000000000000000000000606482015290519081900360840190fd5b6000821161023a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f546f6b656e56657374696e673a206475726174696f6e20697320300000000000604482015290519081900360640190fd5b42610252858464010000000061081e61033882021704565b116102e457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f546f6b656e56657374696e673a2066696e616c2074696d65206973206265666f60448201527f72652063757272656e742074696d650000000000000000000000000000000000606482015290519081900360840190fd5b60018054600160a060020a031916600160a060020a0387161790556005805460ff191682151517905560048290556103298484640100000000610338810261081e1704565b600255505050600355506103b3565b6000828201838110156103ac57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b610efe806103c26000396000f3fe6080604052600436106100be577c010000000000000000000000000000000000000000000000000000000060003504630fb5a6b481146100c357806313d033c0146100ea57806319165587146100ff57806338af3eed14610134578063715018a61461016557806374a8f1031461017a578063872a7810146101ad5780638da5cb5b146101d65780638f32d59b146101eb5780639852595c14610200578063be9a655514610233578063f2fde38b14610248578063fa01dc061461027b575b600080fd5b3480156100cf57600080fd5b506100d86102ae565b60408051918252519081900360200190f35b3480156100f657600080fd5b506100d86102b4565b34801561010b57600080fd5b506101326004803603602081101561012257600080fd5b5035600160a060020a03166102ba565b005b34801561014057600080fd5b506101496103c2565b60408051600160a060020a039092168252519081900360200190f35b34801561017157600080fd5b506101326103d1565b34801561018657600080fd5b506101326004803603602081101561019d57600080fd5b5035600160a060020a0316610486565b3480156101b957600080fd5b506101c2610710565b604080519115158252519081900360200190f35b3480156101e257600080fd5b50610149610719565b3480156101f757600080fd5b506101c2610728565b34801561020c57600080fd5b506100d86004803603602081101561022357600080fd5b5035600160a060020a0316610739565b34801561023f57600080fd5b506100d8610758565b34801561025457600080fd5b506101326004803603602081101561026b57600080fd5b5035600160a060020a031661075e565b34801561028757600080fd5b506101c26004803603602081101561029e57600080fd5b5035600160a060020a03166107c8565b60045490565b60025490565b60006102c5826107e6565b90506000811161031f576040805160e560020a62461bcd02815260206004820152601f60248201527f546f6b656e56657374696e673a206e6f20746f6b656e73206172652064756500604482015290519081900360640190fd5b600160a060020a038216600090815260066020526040902054610348908263ffffffff61081e16565b600160a060020a0380841660008181526006602052604090209290925560015461037a9291168363ffffffff61088216565b60408051600160a060020a03841681526020810183905281517fc7798891864187665ac6dd119286e44ec13f014527aeeb2b8eb3fd413df93179929181900390910190a15050565b600154600160a060020a031690565b6103d9610728565b151561042f576040805160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60008054604051600160a060020a03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36000805473ffffffffffffffffffffffffffffffffffffffff19169055565b61048e610728565b15156104e4576040805160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60055460ff161515610540576040805160e560020a62461bcd02815260206004820152601b60248201527f546f6b656e56657374696e673a2063616e6e6f74207265766f6b650000000000604482015290519081900360640190fd5b600160a060020a03811660009081526007602052604090205460ff16156105d7576040805160e560020a62461bcd02815260206004820152602360248201527f546f6b656e56657374696e673a20746f6b656e20616c7265616479207265766f60448201527f6b65640000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051600091600160a060020a038416916370a0823191602480820192602092909190829003018186803b15801561063a57600080fd5b505afa15801561064e573d6000803e3d6000fd5b505050506040513d602081101561066457600080fd5b505190506000610673836107e6565b90506000610687838363ffffffff61090716565b600160a060020a0385166000908152600760205260409020805460ff1916600117905590506106ce6106b7610719565b600160a060020a038616908363ffffffff61088216565b60408051600160a060020a038616815290517f39983c6d4d174a7aee564f449d4a5c3c7ac9649d72b7793c56901183996f8af69181900360200190a150505050565b60055460ff1690565b600054600160a060020a031690565b600054600160a060020a0316331490565b600160a060020a0381166000908152600660205260409020545b919050565b60035490565b610766610728565b15156107bc576040805160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6107c581610967565b50565b600160a060020a031660009081526007602052604090205460ff1690565b600160a060020a0381166000908152600660205260408120546108189061080c84610a55565b9063ffffffff61090716565b92915050565b60008282018381101561087b576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60408051600160a060020a038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610902908490610bb3565b505050565b600082821115610961576040805160e560020a62461bcd02815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600160a060020a03811615156109ed576040805160e560020a62461bcd02815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b604080517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015290516000918291600160a060020a038516916370a08231916024808301926020929190829003018186803b158015610ab957600080fd5b505afa158015610acd573d6000803e3d6000fd5b505050506040513d6020811015610ae357600080fd5b5051600160a060020a03841660009081526006602052604081205491925090610b1390839063ffffffff61081e16565b9050600254421015610b2a57600092505050610753565b600454600354610b3f9163ffffffff61081e16565b42101580610b655750600160a060020a03841660009081526007602052604090205460ff165b15610b735791506107539050565b610baa600454610b9e610b916003544261090790919063ffffffff16565b849063ffffffff610dbf16565b9063ffffffff610e5b16565b92505050610753565b610bc582600160a060020a0316610eca565b1515610c1b576040805160e560020a62461bcd02815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b6000606083600160a060020a0316836040518082805190602001908083835b60208310610c595780518252601f199092019160209182019101610c3a565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114610cbb576040519150601f19603f3d011682016040523d82523d6000602084013e610cc0565b606091505b5091509150811515610d1c576040805160e560020a62461bcd02815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b600081511115610db957808060200190516020811015610d3b57600080fd5b50511515610db9576040805160e560020a62461bcd02815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f74207375636365656400000000000000000000000000000000000000000000606482015290519081900360840190fd5b50505050565b6000821515610dd057506000610818565b828202828482811515610ddf57fe5b041461087b576040805160e560020a62461bcd02815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60448201527f7700000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b6000808211610eb4576040805160e560020a62461bcd02815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b60008284811515610ec157fe5b04949350505050565b6000903b119056fea165627a7a723058201ffc989dbf08d69511caa88182363c78af4048813e90ef1ac9b253d47d1ef94c00290000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000000080000000000000000000000009638b2d9d91a8a8aad9bbd0b1a01738685401030000000000000000000000000d4ad3064767b14da487d2dfaf4635c4f8c992077000000000000000000000000dc83c9096e292420367bb515f5b6cc88c8c35c2e000000000000000000000000f71cc6059b659bea48a9171d02bd78ad22e3b5a0000000000000000000000000dd807dc20c1176f39fc5d4b8d753187b610061f10000000000000000000000003fab86a7eef83631e425fe8f7bc030f912d6cc2e000000000000000000000000047123122015491df4064ec443602daeffa8cac6000000000000000000000000047123122015491df4064ec443602daeffa8cac60000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000016d000000000000000000000000000000000000000000000000000000000000016d00000000000000000000000000000000000000000000000000000000000002da000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b600000000000000000000000000000000000000000000000000000000000002da0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016d0000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000011cf4a088661b5e05ee0000000000000000000000000000000000000000000000ae31bceb1c53d095a6000000000000000000000000000000000000000000000038de60f7c988d0fcc00000000000000000000000000000000000000000000000438813263f52782c2400000000000000000000000000000000000000000000000e0e3c5483fe2dd5be00000000000000000000000000000000000000000000002a2ab4fd8bfa89813a0000000000000000000000000000000000000000000000033b2e3c9fd0803ce80000000000000000000000000000000000000000000000033b2e3c9fd0803ce800000
Deployed Bytecode
0x6080604052600436106100d4577c0100000000000000000000000000000000000000000000000000000000600035046306fdde0381146100d9578063095ea7b31461016357806318160ddd146101b057806323b872dd146101d7578063313ce5671461021a5780633791587414610245578063395093511461029457806342966c68146102cd57806370a08231146102f957806379cc67901461032c57806386d1a69f1461036557806395d89b411461037a578063a457c2d71461038f578063a9059cbb146103c8578063dd62ed3e14610401575b600080fd5b3480156100e557600080fd5b506100ee61043c565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610128578181015183820152602001610110565b50505050905090810190601f1680156101555780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561016f57600080fd5b5061019c6004803603604081101561018657600080fd5b50600160a060020a0381351690602001356104ca565b604080519115158252519081900360200190f35b3480156101bc57600080fd5b506101c56104e0565b60408051918252519081900360200190f35b3480156101e357600080fd5b5061019c600480360360608110156101fa57600080fd5b50600160a060020a038135811691602081013590911690604001356104e6565b34801561022657600080fd5b5061022f61053d565b6040805160ff9092168252519081900360200190f35b34801561025157600080fd5b506102786004803603602081101561026857600080fd5b5035600160a060020a0316610546565b60408051600160a060020a039092168252519081900360200190f35b3480156102a057600080fd5b5061019c600480360360408110156102b757600080fd5b50600160a060020a038135169060200135610561565b3480156102d957600080fd5b506102f7600480360360208110156102f057600080fd5b503561059d565b005b34801561030557600080fd5b506101c56004803603602081101561031c57600080fd5b5035600160a060020a03166105aa565b34801561033857600080fd5b506102f76004803603604081101561034f57600080fd5b50600160a060020a0381351690602001356105c5565b34801561037157600080fd5b506102f76105d3565b34801561038657600080fd5b506100ee6106c8565b34801561039b57600080fd5b5061019c600480360360408110156103b257600080fd5b50600160a060020a038135169060200135610723565b3480156103d457600080fd5b5061019c600480360360408110156103eb57600080fd5b50600160a060020a03813516906020013561075f565b34801561040d57600080fd5b506101c56004803603604081101561042457600080fd5b50600160a060020a038135811691602001351661076c565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104c25780601f10610497576101008083540402835291602001916104c2565b820191906000526020600020905b8154815290600101906020018083116104a557829003601f168201915b505050505081565b60006104d7338484610797565b50600192915050565b60025490565b60006104f3848484610904565b600160a060020a03841660009081526001602090815260408083203380855292529091205461053391869161052e908663ffffffff610ac816565b610797565b5060019392505050565b60055460ff1681565b600660205260009081526040902054600160a060020a031681565b336000818152600160209081526040808320600160a060020a038716845290915281205490916104d791859061052e908663ffffffff610b2816565b6105a73382610b8c565b50565b600160a060020a031660009081526020819052604090205490565b6105cf8282610ca6565b5050565b33600090815260066020526040902054600160a060020a03161515610642576040805160e560020a62461bcd02815260206004820152601060248201527f6e6f20746f6b656e732076657374656400000000000000000000000000000000604482015290519081900360640190fd5b336000908152600660205260408082205481517f191655870000000000000000000000000000000000000000000000000000000081523060048201529151600160a060020a03909116926319165587926024808201939182900301818387803b1580156106ae57600080fd5b505af11580156106c2573d6000803e3d6000fd5b50505050565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104c25780601f10610497576101008083540402835291602001916104c2565b336000818152600160209081526040808320600160a060020a038716845290915281205490916104d791859061052e908663ffffffff610ac816565b60006104d7338484610904565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b600160a060020a038316151561081c576040805160e560020a62461bcd028152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03821615156108a2576040805160e560020a62461bcd02815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600160a060020a038316151561098a576040805160e560020a62461bcd02815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0382161515610a10576040805160e560020a62461bcd02815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a038316600090815260208190526040902054610a39908263ffffffff610ac816565b600160a060020a038085166000908152602081905260408082209390935590841681522054610a6e908263ffffffff610b2816565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082821115610b22576040805160e560020a62461bcd02815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600082820183811015610b85576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600160a060020a0382161515610c12576040805160e560020a62461bcd02815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600254610c25908263ffffffff610ac816565b600255600160a060020a038216600090815260208190526040902054610c51908263ffffffff610ac816565b600160a060020a038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b610cb08282610b8c565b600160a060020a0382166000908152600160209081526040808320338085529252909120546105cf91849161052e908563ffffffff610ac81656fea165627a7a7230582049845c497e994c72b852bc0a8fecdec3aba720ab72153ba8650709d505723aaf0029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000000080000000000000000000000009638b2d9d91a8a8aad9bbd0b1a01738685401030000000000000000000000000d4ad3064767b14da487d2dfaf4635c4f8c992077000000000000000000000000dc83c9096e292420367bb515f5b6cc88c8c35c2e000000000000000000000000f71cc6059b659bea48a9171d02bd78ad22e3b5a0000000000000000000000000dd807dc20c1176f39fc5d4b8d753187b610061f10000000000000000000000003fab86a7eef83631e425fe8f7bc030f912d6cc2e000000000000000000000000047123122015491df4064ec443602daeffa8cac6000000000000000000000000047123122015491df4064ec443602daeffa8cac60000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000016d000000000000000000000000000000000000000000000000000000000000016d00000000000000000000000000000000000000000000000000000000000002da000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b600000000000000000000000000000000000000000000000000000000000002da0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016d0000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000011cf4a088661b5e05ee0000000000000000000000000000000000000000000000ae31bceb1c53d095a6000000000000000000000000000000000000000000000038de60f7c988d0fcc00000000000000000000000000000000000000000000000438813263f52782c2400000000000000000000000000000000000000000000000e0e3c5483fe2dd5be00000000000000000000000000000000000000000000002a2ab4fd8bfa89813a0000000000000000000000000000000000000000000000033b2e3c9fd0803ce80000000000000000000000000000000000000000000000033b2e3c9fd0803ce800000
-----Decoded View---------------
Arg [0] : beneficiaries (address[]): 0x9638B2d9D91a8A8aAD9BbD0b1a01738685401030,0xd4ad3064767B14da487D2DfAF4635c4F8C992077,0xdc83c9096e292420367BB515f5B6cC88C8C35c2e,0xF71CC6059B659BeA48a9171d02Bd78aD22e3b5A0,0xDD807dC20C1176F39Fc5D4b8d753187b610061F1,0x3FAb86A7EEf83631e425fE8f7BC030f912D6cc2E,0x047123122015491dF4064Ec443602DAefFA8cAC6,0x047123122015491dF4064Ec443602DAefFA8cAC6
Arg [1] : vestingInDays (uint256[]): 365,365,730,0,182,730,0,365
Arg [2] : amounts (uint256[]): 5511842424000000000000000000,3369407576000000000000000000,1100000000000000000000000000,1306250000000000000000000000,271875000000000000000000000,815625000000000000000000000,62500000000000000000000000,62500000000000000000000000
-----Encoded View---------------
30 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [2] : 00000000000000000000000000000000000000000000000000000000000002a0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : 0000000000000000000000009638b2d9d91a8a8aad9bbd0b1a01738685401030
Arg [5] : 000000000000000000000000d4ad3064767b14da487d2dfaf4635c4f8c992077
Arg [6] : 000000000000000000000000dc83c9096e292420367bb515f5b6cc88c8c35c2e
Arg [7] : 000000000000000000000000f71cc6059b659bea48a9171d02bd78ad22e3b5a0
Arg [8] : 000000000000000000000000dd807dc20c1176f39fc5d4b8d753187b610061f1
Arg [9] : 0000000000000000000000003fab86a7eef83631e425fe8f7bc030f912d6cc2e
Arg [10] : 000000000000000000000000047123122015491df4064ec443602daeffa8cac6
Arg [11] : 000000000000000000000000047123122015491df4064ec443602daeffa8cac6
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [13] : 000000000000000000000000000000000000000000000000000000000000016d
Arg [14] : 000000000000000000000000000000000000000000000000000000000000016d
Arg [15] : 00000000000000000000000000000000000000000000000000000000000002da
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [17] : 00000000000000000000000000000000000000000000000000000000000000b6
Arg [18] : 00000000000000000000000000000000000000000000000000000000000002da
Arg [19] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [20] : 000000000000000000000000000000000000000000000000000000000000016d
Arg [21] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [22] : 000000000000000000000000000000000000000011cf4a088661b5e05ee00000
Arg [23] : 00000000000000000000000000000000000000000ae31bceb1c53d095a600000
Arg [24] : 0000000000000000000000000000000000000000038de60f7c988d0fcc000000
Arg [25] : 00000000000000000000000000000000000000000438813263f52782c2400000
Arg [26] : 000000000000000000000000000000000000000000e0e3c5483fe2dd5be00000
Arg [27] : 000000000000000000000000000000000000000002a2ab4fd8bfa89813a00000
Arg [28] : 00000000000000000000000000000000000000000033b2e3c9fd0803ce800000
Arg [29] : 00000000000000000000000000000000000000000033b2e3c9fd0803ce800000
Deployed Bytecode Sourcemap
28934:1712:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29041:33;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29041:33:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;29041:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9118:148;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9118:148:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;9118:148:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;8141:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8141:91:0;;;:::i;:::-;;;;;;;;;;;;;;;;9737:256;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9737:256:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;9737:256:0;;;;;;;;;;;;;;;;;:::i;29116:26::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29116:26:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29151:51;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29151:51:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29151:51:0;-1:-1:-1;;;;;29151:51:0;;:::i;:::-;;;;-1:-1:-1;;;;;29151:51:0;;;;;;;;;;;;;;10402:206;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10402:206:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10402:206:0;;;;;;;;:::i;15091:81::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15091:81:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;15091:81:0;;:::i;:::-;;8295:110;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8295:110:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;8295:110:0;-1:-1:-1;;;;;8295:110:0;;:::i;15234:103::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15234:103:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15234:103:0;;;;;;;;:::i;30442:193::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30442:193:0;;;:::i;29081:28::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29081:28:0;;;:::i;11111:216::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11111:216:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11111:216:0;;;;;;;;:::i;8618:156::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8618:156:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8618:156:0;;;;;;;;:::i;8837:134::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8837:134:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8837:134:0;;;;;;;;;;:::i;29041:33::-;;;;;;;;;;;;;;;-1:-1:-1;;29041:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;9118:148::-;9183:4;9200:36;9209:10;9221:7;9230:5;9200:8;:36::i;:::-;-1:-1:-1;9254:4:0;9118:148;;;;:::o;8141:91::-;8212:12;;8141:91;:::o;9737:256::-;9826:4;9843:36;9853:6;9861:9;9872:6;9843:9;:36::i;:::-;-1:-1:-1;;;;;9919:19:0;;;;;;:11;:19;;;;;;;;9907:10;9919:31;;;;;;;;;9890:73;;9899:6;;9919:43;;9955:6;9919:43;:35;:43;:::i;:::-;9890:8;:73::i;:::-;-1:-1:-1;9981:4:0;9737:256;;;;;:::o;29116:26::-;;;;;;:::o;29151:51::-;;;;;;;;;;;;-1:-1:-1;;;;;29151:51:0;;:::o;10402:206::-;10508:10;10482:4;10529:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;10529:32:0;;;;;;;;;;10482:4;;10499:79;;10520:7;;10529:48;;10566:10;10529:48;:36;:48;:::i;15091:81::-;15139:25;15145:10;15157:6;15139:5;:25::i;:::-;15091:81;:::o;8295:110::-;-1:-1:-1;;;;;8379:18:0;8352:7;8379:18;;;;;;;;;;;;8295:110::o;15234:103::-;15303:26;15313:7;15322:6;15303:9;:26::i;:::-;15234:103;;:::o;30442:193::-;30502:10;30525:1;30485:28;;;:16;:28;;;;;;-1:-1:-1;;;;;30485:28:0;:42;;30477:70;;;;;-1:-1:-1;;;;;30477:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;30586:10;30569:28;;;;:16;:28;;;;;;;30556:73;;;;;30622:4;30556:73;;;;;;-1:-1:-1;;;;;30569:28:0;;;;30556:50;;:73;;;;;;;;;;;30569:28;;30556:73;;;5:2:-1;;;;30:1;27;20:12;5:2;30556:73:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;30556:73:0;;;;30442:193::o;29081:28::-;;;;;;;;;;;;;;;-1:-1:-1;;29081:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11111:216;11222:10;11196:4;11243:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;11243:32:0;;;;;;;;;;11196:4;;11213:84;;11234:7;;11243:53;;11280:15;11243:53;:36;:53;:::i;8618:156::-;8687:4;8704:40;8714:10;8726:9;8737:6;8704:9;:40::i;8837:134::-;-1:-1:-1;;;;;8936:18:0;;;8909:7;8936:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8837:134::o;13913:335::-;-1:-1:-1;;;;;14006:19:0;;;;13998:68;;;;;-1:-1:-1;;;;;13998:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14085:21:0;;;;14077:68;;;;;-1:-1:-1;;;;;14077:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14158:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:35;;;14209:31;;;;;;;;;;;;;;;;;13913:335;;;:::o;11817:429::-;-1:-1:-1;;;;;11915:20:0;;;;11907:70;;;;;-1:-1:-1;;;;;11907:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11996:23:0;;;;11988:71;;;;;-1:-1:-1;;;;;11988:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12092:17:0;;:9;:17;;;;;;;;;;;:29;;12114:6;12092:29;:21;:29;:::i;:::-;-1:-1:-1;;;;;12072:17:0;;;:9;:17;;;;;;;;;;;:49;;;;12155:20;;;;;;;:32;;12180:6;12155:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;12132:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;12203:35;;;;;;;12132:20;;12203:35;;;;;;;;;;;;;11817:429;;;:::o;4256:184::-;4314:7;4342:6;;;;4334:49;;;;;-1:-1:-1;;;;;4334:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4406:5:0;;;4256:184::o;3800:181::-;3858:7;3890:5;;;3914:6;;;;3906:46;;;;;-1:-1:-1;;;;;3906:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;3972:1;3800:181;-1:-1:-1;;;3800:181:0:o;13167:306::-;-1:-1:-1;;;;;13242:21:0;;;;13234:67;;;;;-1:-1:-1;;;;;13234:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13329:12;;:23;;13346:5;13329:23;:16;:23;:::i;:::-;13314:12;:38;-1:-1:-1;;;;;13384:18:0;;:9;:18;;;;;;;;;;;:29;;13407:5;13384:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;13363:18:0;;:9;:18;;;;;;;;;;;:50;;;;13429:36;;;;;;;13363:9;;13429:36;;;;;;;;;;;13167:306;;:::o;14433:188::-;14505:22;14511:7;14520:6;14505:5;:22::i;:::-;-1:-1:-1;;;;;14568:20:0;;;;;;:11;:20;;;;;;;;14556:10;14568:32;;;;;;;;;14538:75;;14547:7;;14568:44;;14605:6;14568:44;:36;:44;:::i
Swarm Source
bzzr://1ffc989dbf08d69511caa88182363c78af4048813e90ef1ac9b253d47d1ef94c
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.