More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 543 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Manual Contribut... | 9234885 | 1857 days ago | IN | 0 ETH | 0.00012639 | ||||
Manual Contribut... | 9234875 | 1857 days ago | IN | 0 ETH | 0.00012639 | ||||
Manual Contribut... | 9234861 | 1857 days ago | IN | 0 ETH | 0.00012639 | ||||
Manual Contribut... | 9234851 | 1857 days ago | IN | 0 ETH | 0.00012639 | ||||
Manual Contribut... | 9234849 | 1857 days ago | IN | 0 ETH | 0.00012639 | ||||
Manual Contribut... | 9234847 | 1857 days ago | IN | 0 ETH | 0.00012639 | ||||
Manual Contribut... | 9234846 | 1857 days ago | IN | 0 ETH | 0.00012639 | ||||
Manual Contribut... | 9234844 | 1857 days ago | IN | 0 ETH | 0.00012639 | ||||
Manual Contribut... | 9234839 | 1857 days ago | IN | 0 ETH | 0.00012639 | ||||
Manual Contribut... | 9234835 | 1857 days ago | IN | 0 ETH | 0.00012636 | ||||
Manual Contribut... | 9234831 | 1857 days ago | IN | 0 ETH | 0.00012636 | ||||
Manual Contribut... | 9234827 | 1857 days ago | IN | 0 ETH | 0.00012634 | ||||
Manual Contribut... | 9234826 | 1857 days ago | IN | 0 ETH | 0.00015639 | ||||
Manual Contribut... | 9234823 | 1857 days ago | IN | 0 ETH | 0.00012636 | ||||
Manual Contribut... | 9234821 | 1857 days ago | IN | 0 ETH | 0.00012639 | ||||
Manual Contribut... | 9234819 | 1857 days ago | IN | 0 ETH | 0.00012639 | ||||
Manual Contribut... | 9234817 | 1857 days ago | IN | 0 ETH | 0.00012639 | ||||
Manual Contribut... | 9234812 | 1857 days ago | IN | 0 ETH | 0.00012636 | ||||
Manual Contribut... | 9234808 | 1857 days ago | IN | 0 ETH | 0.00015639 | ||||
Manual Contribut... | 9234805 | 1857 days ago | IN | 0 ETH | 0.00012636 | ||||
Manual Contribut... | 9234799 | 1857 days ago | IN | 0 ETH | 0.00012636 | ||||
Manual Contribut... | 9234794 | 1857 days ago | IN | 0 ETH | 0.00012636 | ||||
Manual Contribut... | 9234785 | 1857 days ago | IN | 0 ETH | 0.00012636 | ||||
Manual Contribut... | 9234777 | 1857 days ago | IN | 0 ETH | 0.00012639 | ||||
Manual Contribut... | 9126888 | 1877 days ago | IN | 0 ETH | 0.00025278 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
5711446 | 2443 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
InbestDistribution
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-06-01 */ pragma solidity ^0.4.18; /** * @title ERC20Basic * @dev Simpler version of ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/179 */ contract ERC20Basic { function totalSupply() public view returns (uint256); function balanceOf(address who) public view returns (uint256); function transfer(address to, uint256 value) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); } /** * @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) { if (a == 0) { return 0; } uint256 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 c; } /** * @dev Substracts 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) { uint256 c = a + b; assert(c >= a); return c; } } /** * @title Basic token * @dev Basic version of StandardToken, with no allowances. */ contract BasicToken is ERC20Basic { using SafeMath for uint256; mapping(address => uint256) balances; uint256 totalSupply_; /** * @dev total number of tokens in existence */ function totalSupply() public view returns (uint256) { return totalSupply_; } /** * @dev transfer token for a specified address * @param _to The address to transfer to. * @param _value The amount to be transferred. */ function transfer(address _to, uint256 _value) public returns (bool) { require(_to != address(0)); require(_value <= balances[msg.sender]); // SafeMath.sub will throw if there is not enough balance. balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); Transfer(msg.sender, _to, _value); return true; } /** * @dev Gets the balance of the specified address. * @param _owner The address to query the the balance of. * @return An uint256 representing the amount owned by the passed address. */ function balanceOf(address _owner) public view returns (uint256 balance) { return balances[_owner]; } } /** * @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); } /** * @title Standard ERC20 token * * @dev Implementation of the basic standard token. * @dev https://github.com/ethereum/EIPs/issues/20 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol */ contract StandardToken is ERC20, BasicToken { mapping (address => mapping (address => uint256)) internal allowed; /** * @dev Transfer tokens from one address to another * @param _from address The address which you want to send tokens from * @param _to address The address which you want to transfer to * @param _value uint256 the amount of tokens to be transferred */ function transferFrom(address _from, address _to, uint256 _value) public returns (bool) { require(_to != address(0)); require(_value <= balances[_from]); require(_value <= allowed[_from][msg.sender]); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value); 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; Approval(msg.sender, _spender, _value); return true; } /** * @dev Function to check the amount of tokens that an owner allowed to a spender. * @param _owner address The address which owns the funds. * @param _spender address The address which will spend the funds. * @return A uint256 specifying the amount of tokens still available for the spender. */ function allowance(address _owner, address _spender) public view returns (uint256) { return allowed[_owner][_spender]; } /** * @dev Increase the amount of tokens that an owner allowed to a spender. * * approve should be called when allowed[_spender] == 0. To increment * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * @param _spender The address which will spend the funds. * @param _addedValue The amount of tokens to increase the allowance by. */ function increaseApproval(address _spender, uint _addedValue) public returns (bool) { allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue); Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } /** * @dev Decrease the amount of tokens that an owner allowed to a spender. * * approve should be called when allowed[_spender] == 0. To decrement * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * @param _spender The address which will spend the funds. * @param _subtractedValue The amount of tokens to decrease the allowance by. */ function decreaseApproval(address _spender, uint _subtractedValue) public returns (bool) { uint oldValue = allowed[msg.sender][_spender]; if (_subtractedValue > oldValue) { allowed[msg.sender][_spender] = 0; } else { allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue); } Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } } /** * @title InbestToken * @dev Very simple ERC20 Token example, where all tokens are pre-assigned to the creator. * Note they can later distribute these tokens as they wish using `transfer` and other * `StandardToken` functions. */ contract InbestToken is StandardToken { string public constant name = "Inbest Token"; string public constant symbol = "IBST"; uint8 public constant decimals = 18; // TBD uint256 public constant INITIAL_SUPPLY = 17656263110 * (10 ** uint256(decimals)); /** * @dev Constructor that gives msg.sender all of existing tokens. */ function InbestToken() public { totalSupply_ = INITIAL_SUPPLY; balances[msg.sender] = INITIAL_SUPPLY; Transfer(0x0, msg.sender, INITIAL_SUPPLY); } } /** * @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 OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ function Ownable() 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 transfer control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) public onlyOwner { require(newOwner != address(0)); OwnershipTransferred(owner, newOwner); owner = newOwner; } } /** * @title Inbest Token initial distribution * * @dev Distribute Investors' and Company's tokens */ contract InbestDistribution is Ownable { using SafeMath for uint256; // Token InbestToken public IBST; // Status of admins mapping (address => bool) public admins; // Number of decimal places for tokens uint256 private constant DECIMALFACTOR = 10**uint256(18); // Cliff period = 6 months uint256 CLIFF = 180 days; // Vesting period = 12 months after cliff uint256 VESTING = 365 days; // Total of tokens uint256 public constant INITIAL_SUPPLY = 17656263110 * DECIMALFACTOR; // 14.000.000.000 IBST // Total of available tokens uint256 public AVAILABLE_TOTAL_SUPPLY = 17656263110 * DECIMALFACTOR; // 14.000.000.000 IBST // Total of available tokens for presale allocations uint256 public AVAILABLE_PRESALE_SUPPLY = 16656263110 * DECIMALFACTOR; // 500.000.000 IBST, 18 months vesting, 6 months cliff // Total of available tokens for company allocation uint256 public AVAILABLE_COMPANY_SUPPLY = 1000000000 * DECIMALFACTOR; // 13.500.000.000 INST at token distribution event // Allocation types enum AllocationType { PRESALE, COMPANY} // Amount of total tokens claimed uint256 public grandTotalClaimed = 0; // Time when InbestDistribution goes live uint256 public startTime; // The only wallet allowed for Company supply address public companyWallet; // Allocation with vesting and cliff information struct Allocation { uint8 allocationType; // Type of allocation uint256 endCliff; // Tokens are locked until uint256 endVesting; // This is when the tokens are fully unvested uint256 totalAllocated; // Total tokens allocated uint256 amountClaimed; // Total tokens claimed } mapping (address => Allocation) public allocations; // Modifier to control who executes functions modifier onlyOwnerOrAdmin() { require(msg.sender == owner || admins[msg.sender]); _; } // Event fired when a new allocation is made event LogNewAllocation(address indexed _recipient, AllocationType indexed _fromSupply, uint256 _totalAllocated, uint256 _grandTotalAllocated); // Event fired when IBST tokens are claimed event LogIBSTClaimed(address indexed _recipient, uint8 indexed _fromSupply, uint256 _amountClaimed, uint256 _totalAllocated, uint256 _grandTotalClaimed); // Event fired when admins are modified event SetAdmin(address _caller, address _admin, bool _allowed); // Event fired when refunding tokens mistakenly sent to contract event RefundTokens(address _token, address _refund, uint256 _value); /** * @dev Constructor function - Set the inbest token address * @param _startTime The time when InbestDistribution goes live * @param _companyWallet The wallet to allocate Company tokens */ function InbestDistribution(uint256 _startTime, address _companyWallet) public { require(_companyWallet != address(0)); require(_startTime >= now); require(AVAILABLE_TOTAL_SUPPLY == AVAILABLE_PRESALE_SUPPLY.add(AVAILABLE_COMPANY_SUPPLY)); startTime = _startTime; companyWallet = _companyWallet; IBST = new InbestToken(); require(AVAILABLE_TOTAL_SUPPLY == IBST.totalSupply()); //To verify that totalSupply is correct // Allocate Company Supply uint256 tokensToAllocate = AVAILABLE_COMPANY_SUPPLY; AVAILABLE_COMPANY_SUPPLY = 0; allocations[companyWallet] = Allocation(uint8(AllocationType.COMPANY), 0, 0, tokensToAllocate, 0); AVAILABLE_TOTAL_SUPPLY = AVAILABLE_TOTAL_SUPPLY.sub(tokensToAllocate); LogNewAllocation(companyWallet, AllocationType.COMPANY, tokensToAllocate, grandTotalAllocated()); } /** * @dev Allow the owner or admins of the contract to assign a new allocation * @param _recipient The recipient of the allocation * @param _totalAllocated The total amount of IBST tokens available to the receipient (after vesting and cliff) */ function setAllocation (address _recipient, uint256 _totalAllocated) public onlyOwnerOrAdmin { require(_recipient != address(0)); require(startTime > now); //Allocations are allowed only before starTime require(AVAILABLE_PRESALE_SUPPLY >= _totalAllocated); //Current allocation must be less than remaining presale supply require(allocations[_recipient].totalAllocated == 0 && _totalAllocated > 0); // Must be the first and only allocation for this recipient require(_recipient != companyWallet); // Receipient of presale allocation can't be company wallet // Allocate AVAILABLE_PRESALE_SUPPLY = AVAILABLE_PRESALE_SUPPLY.sub(_totalAllocated); allocations[_recipient] = Allocation(uint8(AllocationType.PRESALE), startTime.add(CLIFF), startTime.add(CLIFF).add(VESTING), _totalAllocated, 0); AVAILABLE_TOTAL_SUPPLY = AVAILABLE_TOTAL_SUPPLY.sub(_totalAllocated); LogNewAllocation(_recipient, AllocationType.PRESALE, _totalAllocated, grandTotalAllocated()); } /** * @dev Transfer a recipients available allocation to their address * @param _recipient The address to withdraw tokens for */ function transferTokens (address _recipient) public { require(_recipient != address(0)); require(now >= startTime); //Tokens can't be transfered until start date require(_recipient != companyWallet); // Tokens allocated to COMPANY can't be withdrawn. require(now >= allocations[_recipient].endCliff); // Cliff period must be ended // Receipient can't claim more IBST tokens than allocated require(allocations[_recipient].amountClaimed < allocations[_recipient].totalAllocated); uint256 newAmountClaimed; if (allocations[_recipient].endVesting > now) { // Transfer available amount based on vesting schedule and allocation newAmountClaimed = allocations[_recipient].totalAllocated.mul(now.sub(allocations[_recipient].endCliff)).div(allocations[_recipient].endVesting.sub(allocations[_recipient].endCliff)); } else { // Transfer total allocated (minus previously claimed tokens) newAmountClaimed = allocations[_recipient].totalAllocated; } //Transfer uint256 tokensToTransfer = newAmountClaimed.sub(allocations[_recipient].amountClaimed); allocations[_recipient].amountClaimed = newAmountClaimed; require(IBST.transfer(_recipient, tokensToTransfer)); grandTotalClaimed = grandTotalClaimed.add(tokensToTransfer); LogIBSTClaimed(_recipient, allocations[_recipient].allocationType, tokensToTransfer, newAmountClaimed, grandTotalClaimed); } /** * @dev Transfer IBST tokens from Company allocation to reicipient address - Only owner and admins can execute * @param _recipient The address to transfer tokens for * @param _tokensToTransfer The amount of IBST tokens to transfer */ function manualContribution(address _recipient, uint256 _tokensToTransfer) public onlyOwnerOrAdmin { require(_recipient != address(0)); require(_recipient != companyWallet); // Company can't withdraw tokens for itself require(_tokensToTransfer > 0); // The amount must be valid require(now >= startTime); // Tokens cant't be transfered until start date //Company can't trasnfer more tokens than allocated require(allocations[companyWallet].amountClaimed.add(_tokensToTransfer) <= allocations[companyWallet].totalAllocated); //Transfer allocations[companyWallet].amountClaimed = allocations[companyWallet].amountClaimed.add(_tokensToTransfer); require(IBST.transfer(_recipient, _tokensToTransfer)); grandTotalClaimed = grandTotalClaimed.add(_tokensToTransfer); LogIBSTClaimed(_recipient, uint8(AllocationType.COMPANY), _tokensToTransfer, allocations[companyWallet].amountClaimed, grandTotalClaimed); } /** * @dev Returns remaining Company allocation * @return Returns remaining Company allocation */ function companyRemainingAllocation() public view returns (uint256) { return allocations[companyWallet].totalAllocated.sub(allocations[companyWallet].amountClaimed); } /** * @dev Returns the amount of IBST allocated * @return Returns the amount of IBST allocated */ function grandTotalAllocated() public view returns (uint256) { return INITIAL_SUPPLY.sub(AVAILABLE_TOTAL_SUPPLY); } /** * @dev Admin management * @param _admin Address of the admin to modify * @param _allowed Status of the admin */ function setAdmin(address _admin, bool _allowed) public onlyOwner { require(_admin != address(0)); admins[_admin] = _allowed; SetAdmin(msg.sender,_admin,_allowed); } function refundTokens(address _token, address _refund, uint256 _value) public onlyOwner { require(_refund != address(0)); require(_token != address(0)); require(_token != address(IBST)); ERC20 token = ERC20(_token); require(token.transfer(_refund, _value)); RefundTokens(_token, _refund, _value); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":false,"inputs":[{"name":"_recipient","type":"address"},{"name":"_tokensToTransfer","type":"uint256"}],"name":"manualContribution","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_recipient","type":"address"}],"name":"transferTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"AVAILABLE_PRESALE_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"companyWallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"grandTotalAllocated","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"AVAILABLE_COMPANY_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"IBST","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"admins","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_admin","type":"address"},{"name":"_allowed","type":"bool"}],"name":"setAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"allocations","outputs":[{"name":"allocationType","type":"uint8"},{"name":"endCliff","type":"uint256"},{"name":"endVesting","type":"uint256"},{"name":"totalAllocated","type":"uint256"},{"name":"amountClaimed","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"startTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_token","type":"address"},{"name":"_refund","type":"address"},{"name":"_value","type":"uint256"}],"name":"refundTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_recipient","type":"address"},{"name":"_totalAllocated","type":"uint256"}],"name":"setAllocation","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"grandTotalClaimed","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"AVAILABLE_TOTAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"companyRemainingAllocation","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":"_startTime","type":"uint256"},{"name":"_companyWallet","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_recipient","type":"address"},{"indexed":true,"name":"_fromSupply","type":"uint8"},{"indexed":false,"name":"_totalAllocated","type":"uint256"},{"indexed":false,"name":"_grandTotalAllocated","type":"uint256"}],"name":"LogNewAllocation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_recipient","type":"address"},{"indexed":true,"name":"_fromSupply","type":"uint8"},{"indexed":false,"name":"_amountClaimed","type":"uint256"},{"indexed":false,"name":"_totalAllocated","type":"uint256"},{"indexed":false,"name":"_grandTotalClaimed","type":"uint256"}],"name":"LogIBSTClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_caller","type":"address"},{"indexed":false,"name":"_admin","type":"address"},{"indexed":false,"name":"_allowed","type":"bool"}],"name":"SetAdmin","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_token","type":"address"},{"indexed":false,"name":"_refund","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"RefundTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]
Contract Creation Code
608060405262ed4e006003556301e133806004556b390ceb251785ac719b5800006005556b35d1bce877b52c34b35800006006556b033b2e3c9fd0803ce800000060075560006008553480156200005557600080fd5b5060405160408062001a9a83398101604052805160209091015160008054600160a060020a03191633178155600160a060020a03821615156200009757600080fd5b42831015620000a557600080fd5b600754600654620000c49164010000000062000dfa620002cc82021704565b60055414620000d257600080fd5b6009839055600a8054600160a060020a031916600160a060020a038416179055620000fc62000328565b604051809103906000f08015801562000119573d6000803e3d6000fd5b5060018054600160a060020a031916600160a060020a039283161790819055604080517f18160ddd000000000000000000000000000000000000000000000000000000008152905191909216916318160ddd9160048083019260209291908290030181600087803b1580156200018e57600080fd5b505af1158015620001a3573d6000803e3d6000fd5b505050506040513d6020811015620001ba57600080fd5b505160055414620001ca57600080fd5b50600780546000918290556040805160a081018252600180825260208083018681528385018781526060850187815260808601898152600a54600160a060020a03168a52600b909452959097209351845460ff191660ff909116178455519183019190915593516002820155905160038201559151600490920191909155600554620002659082640100000000620002e3810262000e141704565b6005556001600a54600160a060020a03167f1ee7c4bce4c301d0c55622a01f860f1b71b72f582250922fa662d173c32164ff83620002ab640100000000620002f6810204565b6040805192835260208301919091528051918290030190a350505062000339565b600082820183811015620002dc57fe5b9392505050565b600082821115620002f057fe5b50900390565b60055460009062000323906b390ceb251785ac719b5800009064010000000062000e14620002e382021704565b905090565b6040516108bd80620011dd83390190565b610e9480620003496000396000f3006080604052600436106101065763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416630a3a0531811461010b5780630c89a0df1461013157806312e43d92146101525780631ec32d15146101795780632b41a901146101aa5780632ff2e9dc146101bf57806337292eeb146101d457806338ca60a2146101e9578063429b62e5146101fe5780634b0bddd21461023357806352a9039c1461025957806378e97925146102a957806389519c50146102be5780638da5cb5b146102e85780639076c166146102fd5780639377530f14610321578063a92259fc14610336578063b58ee9a31461034b578063f2fde38b14610360575b600080fd5b34801561011757600080fd5b5061012f600160a060020a0360043516602435610381565b005b34801561013d57600080fd5b5061012f600160a060020a03600435166105b2565b34801561015e57600080fd5b50610167610899565b60408051918252519081900360200190f35b34801561018557600080fd5b5061018e61089f565b60408051600160a060020a039092168252519081900360200190f35b3480156101b657600080fd5b506101676108ae565b3480156101cb57600080fd5b506101676108d6565b3480156101e057600080fd5b506101676108e6565b3480156101f557600080fd5b5061018e6108ec565b34801561020a57600080fd5b5061021f600160a060020a03600435166108fb565b604080519115158252519081900360200190f35b34801561023f57600080fd5b5061012f600160a060020a03600435166024351515610910565b34801561026557600080fd5b5061027a600160a060020a03600435166109aa565b6040805160ff909616865260208601949094528484019290925260608401526080830152519081900360a00190f35b3480156102b557600080fd5b506101676109dd565b3480156102ca57600080fd5b5061012f600160a060020a03600435811690602435166044356109e3565b3480156102f457600080fd5b5061018e610b34565b34801561030957600080fd5b5061012f600160a060020a0360043516602435610b43565b34801561032d57600080fd5b50610167610d26565b34801561034257600080fd5b50610167610d2c565b34801561035757600080fd5b50610167610d32565b34801561036c57600080fd5b5061012f600160a060020a0360043516610d66565b600054600160a060020a03163314806103a957503360009081526002602052604090205460ff165b15156103b457600080fd5b600160a060020a03821615156103c957600080fd5b600a54600160a060020a03838116911614156103e457600080fd5b600081116103f157600080fd5b60095442101561040057600080fd5b600a54600160a060020a03166000908152600b602052604090206003810154600490910154610435908363ffffffff610dfa16565b111561044057600080fd5b600a54600160a060020a03166000908152600b602052604090206004015461046e908263ffffffff610dfa16565b600a54600160a060020a039081166000908152600b6020908152604080832060049081019590955560015481517fa9059cbb0000000000000000000000000000000000000000000000000000000081528886169681019690965260248601879052905193169363a9059cbb9360448083019491928390030190829087803b1580156104f857600080fd5b505af115801561050c573d6000803e3d6000fd5b505050506040513d602081101561052257600080fd5b5051151561052f57600080fd5b600854610542908263ffffffff610dfa16565b6008819055600a54600160a060020a039081166000908152600b6020908152604091829020600401548251868152918201528082019390935251600192918516917fd25a06c3403b07ef7b5e593da77676afc867e3bf6a44b4c381fca77581831a68919081900360600190a35050565b600080600160a060020a03831615156105ca57600080fd5b6009544210156105d957600080fd5b600a54600160a060020a03848116911614156105f457600080fd5b600160a060020a0383166000908152600b602052604090206001015442101561061c57600080fd5b600160a060020a0383166000908152600b6020526040902060038101546004909101541061064957600080fd5b600160a060020a0383166000908152600b602052604090206002015442101561070f57600160a060020a0383166000908152600b602052604090206001810154600290910154610708916106a3919063ffffffff610e1416565b600160a060020a0385166000908152600b60205260409020600101546106fc906106d490429063ffffffff610e1416565b600160a060020a0387166000908152600b60205260409020600301549063ffffffff610e2616565b9063ffffffff610e5116565b915061072e565b600160a060020a0383166000908152600b602052604090206003015491505b600160a060020a0383166000908152600b602052604090206004015461075b90839063ffffffff610e1416565b600160a060020a038085166000818152600b60209081526040808320600490810189905560015482517fa9059cbb00000000000000000000000000000000000000000000000000000000815291820195909552602481018790529051959650929093169363a9059cbb936044808501949193918390030190829087803b1580156107e457600080fd5b505af11580156107f8573d6000803e3d6000fd5b505050506040513d602081101561080e57600080fd5b5051151561081b57600080fd5b60085461082e908263ffffffff610dfa16565b6008819055600160a060020a0384166000818152600b602090815260409182902054825186815291820187905281830194909452905160ff909316927fd25a06c3403b07ef7b5e593da77676afc867e3bf6a44b4c381fca77581831a689181900360600190a3505050565b60065481565b600a54600160a060020a031681565b6005546000906108d1906b390ceb251785ac719b5800009063ffffffff610e1416565b905090565b6b390ceb251785ac719b58000081565b60075481565b600154600160a060020a031681565b60026020526000908152604090205460ff1681565b600054600160a060020a0316331461092757600080fd5b600160a060020a038216151561093c57600080fd5b600160a060020a038216600081815260026020908152604091829020805485151560ff19909116811790915582513381529182019390935280820192909252517fd1805363f4431503eae1e5f36c56c593ca412b7df26632d571879aeccf0190079181900360600190a15050565b600b602052600090815260409020805460018201546002830154600384015460049094015460ff90931693919290919085565b60095481565b60008054600160a060020a031633146109fb57600080fd5b600160a060020a0383161515610a1057600080fd5b600160a060020a0384161515610a2557600080fd5b600154600160a060020a0385811691161415610a4057600080fd5b50604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a038481166004830152602482018490529151859283169163a9059cbb9160448083019260209291908290030181600087803b158015610aad57600080fd5b505af1158015610ac1573d6000803e3d6000fd5b505050506040513d6020811015610ad757600080fd5b50511515610ae457600080fd5b60408051600160a060020a0380871682528516602082015280820184905290517ffab5e7a27e02736e52f60776d307340051d8bc15aee0ef211c7a4aa2a8cdc1549181900360600190a150505050565b600054600160a060020a031681565b600054600160a060020a0316331480610b6b57503360009081526002602052604090205460ff165b1515610b7657600080fd5b600160a060020a0382161515610b8b57600080fd5b6009544210610b9957600080fd5b600654811115610ba857600080fd5b600160a060020a0382166000908152600b6020526040902060030154158015610bd15750600081115b1515610bdc57600080fd5b600a54600160a060020a0383811691161415610bf757600080fd5b600654610c0a908263ffffffff610e1416565b6006556040805160a08101909152600081526003546009546020830191610c37919063ffffffff610dfa16565b8152602001610c65600454610c59600354600954610dfa90919063ffffffff16565b9063ffffffff610dfa16565b8152602080820184905260006040928301819052600160a060020a0386168152600b82528290208351815460ff191660ff90911617815590830151600182015590820151600282015560608201516003820155608090910151600490910155600554610cd19082610e14565b600555600082600160a060020a03167f1ee7c4bce4c301d0c55622a01f860f1b71b72f582250922fa662d173c32164ff83610d0a6108ae565b6040805192835260208301919091528051918290030190a35050565b60085481565b60055481565b600a54600160a060020a03166000908152600b6020526040812060048101546003909101546108d19163ffffffff610e1416565b600054600160a060020a03163314610d7d57600080fd5b600160a060020a0381161515610d9257600080fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082820183811015610e0957fe5b8091505b5092915050565b600082821115610e2057fe5b50900390565b600080831515610e395760009150610e0d565b50828202828482811515610e4957fe5b0414610e0957fe5b6000808284811515610e5f57fe5b049493505050505600a165627a7a72305820f0712b0b7667c7248bc7e8b804a2a4f8ca47c56fb7cf11c3d4d90017c19b67660029608060405234801561001057600080fd5b506b390ceb251785ac719b580000600181905533600081815260208181526040808320859055805194855251929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3610844806100796000396000f3006080604052600436106100b95763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100be578063095ea7b31461014857806318160ddd1461018057806323b872dd146101a75780632ff2e9dc146101d1578063313ce567146101e6578063661884631461021157806370a082311461023557806395d89b4114610256578063a9059cbb1461026b578063d73dd6231461028f578063dd62ed3e146102b3575b600080fd5b3480156100ca57600080fd5b506100d36102da565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561010d5781810151838201526020016100f5565b50505050905090810190601f16801561013a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561015457600080fd5b5061016c600160a060020a0360043516602435610311565b604080519115158252519081900360200190f35b34801561018c57600080fd5b50610195610377565b60408051918252519081900360200190f35b3480156101b357600080fd5b5061016c600160a060020a036004358116906024351660443561037d565b3480156101dd57600080fd5b506101956104f4565b3480156101f257600080fd5b506101fb610504565b6040805160ff9092168252519081900360200190f35b34801561021d57600080fd5b5061016c600160a060020a0360043516602435610509565b34801561024157600080fd5b50610195600160a060020a03600435166105f9565b34801561026257600080fd5b506100d3610614565b34801561027757600080fd5b5061016c600160a060020a036004351660243561064b565b34801561029b57600080fd5b5061016c600160a060020a036004351660243561072c565b3480156102bf57600080fd5b50610195600160a060020a03600435811690602435166107c5565b60408051808201909152600c81527f496e6265737420546f6b656e0000000000000000000000000000000000000000602082015281565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60015490565b6000600160a060020a038316151561039457600080fd5b600160a060020a0384166000908152602081905260409020548211156103b957600080fd5b600160a060020a03841660009081526002602090815260408083203384529091529020548211156103e957600080fd5b600160a060020a038416600090815260208190526040902054610412908363ffffffff6107f016565b600160a060020a038086166000908152602081905260408082209390935590851681522054610447908363ffffffff61080216565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610489908363ffffffff6107f016565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b6b390ceb251785ac719b58000081565b601281565b336000908152600260209081526040808320600160a060020a03861684529091528120548083111561055e57336000908152600260209081526040808320600160a060020a0388168452909152812055610593565b61056e818463ffffffff6107f016565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526020819052604090205490565b60408051808201909152600481527f4942535400000000000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a038316151561066257600080fd5b3360009081526020819052604090205482111561067e57600080fd5b3360009081526020819052604090205461069e908363ffffffff6107f016565b3360009081526020819052604080822092909255600160a060020a038516815220546106d0908363ffffffff61080216565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a0386168452909152812054610760908363ffffffff61080216565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b6000828211156107fc57fe5b50900390565b60008282018381101561081157fe5b93925050505600a165627a7a723058201bd4f1cffda80c9e86570911792d5fd77bcb2e9358a57e85d81d6d4c629954620029000000000000000000000000000000000000000000000000000000005b149e9c000000000000000000000000f8357b4913764838d2f45a5362caeedacb823ff9
Deployed Bytecode
0x6080604052600436106101065763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416630a3a0531811461010b5780630c89a0df1461013157806312e43d92146101525780631ec32d15146101795780632b41a901146101aa5780632ff2e9dc146101bf57806337292eeb146101d457806338ca60a2146101e9578063429b62e5146101fe5780634b0bddd21461023357806352a9039c1461025957806378e97925146102a957806389519c50146102be5780638da5cb5b146102e85780639076c166146102fd5780639377530f14610321578063a92259fc14610336578063b58ee9a31461034b578063f2fde38b14610360575b600080fd5b34801561011757600080fd5b5061012f600160a060020a0360043516602435610381565b005b34801561013d57600080fd5b5061012f600160a060020a03600435166105b2565b34801561015e57600080fd5b50610167610899565b60408051918252519081900360200190f35b34801561018557600080fd5b5061018e61089f565b60408051600160a060020a039092168252519081900360200190f35b3480156101b657600080fd5b506101676108ae565b3480156101cb57600080fd5b506101676108d6565b3480156101e057600080fd5b506101676108e6565b3480156101f557600080fd5b5061018e6108ec565b34801561020a57600080fd5b5061021f600160a060020a03600435166108fb565b604080519115158252519081900360200190f35b34801561023f57600080fd5b5061012f600160a060020a03600435166024351515610910565b34801561026557600080fd5b5061027a600160a060020a03600435166109aa565b6040805160ff909616865260208601949094528484019290925260608401526080830152519081900360a00190f35b3480156102b557600080fd5b506101676109dd565b3480156102ca57600080fd5b5061012f600160a060020a03600435811690602435166044356109e3565b3480156102f457600080fd5b5061018e610b34565b34801561030957600080fd5b5061012f600160a060020a0360043516602435610b43565b34801561032d57600080fd5b50610167610d26565b34801561034257600080fd5b50610167610d2c565b34801561035757600080fd5b50610167610d32565b34801561036c57600080fd5b5061012f600160a060020a0360043516610d66565b600054600160a060020a03163314806103a957503360009081526002602052604090205460ff165b15156103b457600080fd5b600160a060020a03821615156103c957600080fd5b600a54600160a060020a03838116911614156103e457600080fd5b600081116103f157600080fd5b60095442101561040057600080fd5b600a54600160a060020a03166000908152600b602052604090206003810154600490910154610435908363ffffffff610dfa16565b111561044057600080fd5b600a54600160a060020a03166000908152600b602052604090206004015461046e908263ffffffff610dfa16565b600a54600160a060020a039081166000908152600b6020908152604080832060049081019590955560015481517fa9059cbb0000000000000000000000000000000000000000000000000000000081528886169681019690965260248601879052905193169363a9059cbb9360448083019491928390030190829087803b1580156104f857600080fd5b505af115801561050c573d6000803e3d6000fd5b505050506040513d602081101561052257600080fd5b5051151561052f57600080fd5b600854610542908263ffffffff610dfa16565b6008819055600a54600160a060020a039081166000908152600b6020908152604091829020600401548251868152918201528082019390935251600192918516917fd25a06c3403b07ef7b5e593da77676afc867e3bf6a44b4c381fca77581831a68919081900360600190a35050565b600080600160a060020a03831615156105ca57600080fd5b6009544210156105d957600080fd5b600a54600160a060020a03848116911614156105f457600080fd5b600160a060020a0383166000908152600b602052604090206001015442101561061c57600080fd5b600160a060020a0383166000908152600b6020526040902060038101546004909101541061064957600080fd5b600160a060020a0383166000908152600b602052604090206002015442101561070f57600160a060020a0383166000908152600b602052604090206001810154600290910154610708916106a3919063ffffffff610e1416565b600160a060020a0385166000908152600b60205260409020600101546106fc906106d490429063ffffffff610e1416565b600160a060020a0387166000908152600b60205260409020600301549063ffffffff610e2616565b9063ffffffff610e5116565b915061072e565b600160a060020a0383166000908152600b602052604090206003015491505b600160a060020a0383166000908152600b602052604090206004015461075b90839063ffffffff610e1416565b600160a060020a038085166000818152600b60209081526040808320600490810189905560015482517fa9059cbb00000000000000000000000000000000000000000000000000000000815291820195909552602481018790529051959650929093169363a9059cbb936044808501949193918390030190829087803b1580156107e457600080fd5b505af11580156107f8573d6000803e3d6000fd5b505050506040513d602081101561080e57600080fd5b5051151561081b57600080fd5b60085461082e908263ffffffff610dfa16565b6008819055600160a060020a0384166000818152600b602090815260409182902054825186815291820187905281830194909452905160ff909316927fd25a06c3403b07ef7b5e593da77676afc867e3bf6a44b4c381fca77581831a689181900360600190a3505050565b60065481565b600a54600160a060020a031681565b6005546000906108d1906b390ceb251785ac719b5800009063ffffffff610e1416565b905090565b6b390ceb251785ac719b58000081565b60075481565b600154600160a060020a031681565b60026020526000908152604090205460ff1681565b600054600160a060020a0316331461092757600080fd5b600160a060020a038216151561093c57600080fd5b600160a060020a038216600081815260026020908152604091829020805485151560ff19909116811790915582513381529182019390935280820192909252517fd1805363f4431503eae1e5f36c56c593ca412b7df26632d571879aeccf0190079181900360600190a15050565b600b602052600090815260409020805460018201546002830154600384015460049094015460ff90931693919290919085565b60095481565b60008054600160a060020a031633146109fb57600080fd5b600160a060020a0383161515610a1057600080fd5b600160a060020a0384161515610a2557600080fd5b600154600160a060020a0385811691161415610a4057600080fd5b50604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a038481166004830152602482018490529151859283169163a9059cbb9160448083019260209291908290030181600087803b158015610aad57600080fd5b505af1158015610ac1573d6000803e3d6000fd5b505050506040513d6020811015610ad757600080fd5b50511515610ae457600080fd5b60408051600160a060020a0380871682528516602082015280820184905290517ffab5e7a27e02736e52f60776d307340051d8bc15aee0ef211c7a4aa2a8cdc1549181900360600190a150505050565b600054600160a060020a031681565b600054600160a060020a0316331480610b6b57503360009081526002602052604090205460ff165b1515610b7657600080fd5b600160a060020a0382161515610b8b57600080fd5b6009544210610b9957600080fd5b600654811115610ba857600080fd5b600160a060020a0382166000908152600b6020526040902060030154158015610bd15750600081115b1515610bdc57600080fd5b600a54600160a060020a0383811691161415610bf757600080fd5b600654610c0a908263ffffffff610e1416565b6006556040805160a08101909152600081526003546009546020830191610c37919063ffffffff610dfa16565b8152602001610c65600454610c59600354600954610dfa90919063ffffffff16565b9063ffffffff610dfa16565b8152602080820184905260006040928301819052600160a060020a0386168152600b82528290208351815460ff191660ff90911617815590830151600182015590820151600282015560608201516003820155608090910151600490910155600554610cd19082610e14565b600555600082600160a060020a03167f1ee7c4bce4c301d0c55622a01f860f1b71b72f582250922fa662d173c32164ff83610d0a6108ae565b6040805192835260208301919091528051918290030190a35050565b60085481565b60055481565b600a54600160a060020a03166000908152600b6020526040812060048101546003909101546108d19163ffffffff610e1416565b600054600160a060020a03163314610d7d57600080fd5b600160a060020a0381161515610d9257600080fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082820183811015610e0957fe5b8091505b5092915050565b600082821115610e2057fe5b50900390565b600080831515610e395760009150610e0d565b50828202828482811515610e4957fe5b0414610e0957fe5b6000808284811515610e5f57fe5b049493505050505600a165627a7a72305820f0712b0b7667c7248bc7e8b804a2a4f8ca47c56fb7cf11c3d4d90017c19b67660029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000005b149e9c000000000000000000000000f8357b4913764838d2f45a5362caeedacb823ff9
-----Decoded View---------------
Arg [0] : _startTime (uint256): 1528077980
Arg [1] : _companyWallet (address): 0xf8357B4913764838D2F45A5362CaEEDaCB823fF9
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000005b149e9c
Arg [1] : 000000000000000000000000f8357b4913764838d2f45a5362caeedacb823ff9
Swarm Source
bzzr://1bd4f1cffda80c9e86570911792d5fd77bcb2e9358a57e85d81d6d4c62995462
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.