ERC-20
Overview
Max Total Supply
13,050,000 CRN
Holders
1,068
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:
CareerXonToken
Compiler Version
v0.4.11+commit.68ef5810
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2017-10-17 */ pragma solidity ^0.4.11; /** * SafeMath * Math operations with safety checks that throw on error */ library SafeMath { function mul(uint256 a, uint256 b) internal constant returns (uint256) { uint256 c = a * b; assert(a == 0 || c / a == b); return c; } function div(uint256 a, uint256 b) internal constant 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; } function sub(uint256 a, uint256 b) internal constant returns (uint256) { assert(b <= a); return a - b; } function add(uint256 a, uint256 b) internal constant returns (uint256) { uint256 c = a + b; assert(c >= a); return c; } function max64(uint64 a, uint64 b) internal constant returns (uint64) { return a >= b ? a : b; } function max256(uint256 a, uint256 b) internal constant returns (uint256) { return a >= b ? a : b; } function min64(uint64 a, uint64 b) internal constant returns (uint64) { return a < b ? a : b; } function min256(uint256 a, uint256 b) internal constant returns (uint256) { return a < b ? a : b; } } /** * title ERC20 interface * dev see https://github.com/ethereum/EIPs/issues/20 */ contract ERC20 { uint256 public totalSupply; bool public transferlocked; bool public wallocked; function balanceOf(address who) constant returns (uint256 balance); function transfer(address _to, uint256 _value) returns (bool success); function allowance(address _owner, address _spender) constant returns (uint256 remaining); function transferFrom(address _from, address _to, uint256 _value) returns (bool success); function approve(address spender, uint256 value) returns (bool success); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); event Burn(address indexed burner, uint indexed value); } /** * Basic token * Basic version of StandardToken, with no allowances. */ contract BasicToken is ERC20 { using SafeMath for uint256; mapping(address => uint256) balances; /** * transfer token for a specified address * _to The address to transfer to. * _value The amount to be transferred. */ function transfer(address _to, uint256 _value) returns (bool success) { require( balances[msg.sender] >= _value && _value > 0 ); if (transferlocked) { throw; } balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); Transfer(msg.sender, _to, _value); return true; } /** * Gets the balance of the specified address. * _owner The address to query the the balance of. * An uint256 representing the amount owned by the passed address. */ function balanceOf(address _owner) constant returns (uint256 balance) { return balances[_owner]; } } /** * Ownable * The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". * Thanks https://github.com/OpenZeppelin/zeppelin-solidity/ */ contract Ownable { address public owner; /** * The Ownable constructor sets the original `owner` of the contract to the sender * account. */ function Ownable() { owner = msg.sender; } /** * Throws if called by any account other than the owner. */ modifier onlyOwner() { assert(msg.sender == owner); _; } /** * Allows the current owner to transfer control of the contract to a newOwner. * newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) onlyOwner { if (newOwner != address(0)) { owner = newOwner; } } } /** * Standard ERC20 token * * Implementation of the basic standard token. * https://github.com/ethereum/EIPs/issues/20 */ contract StandardToken is BasicToken { mapping (address => mapping (address => uint256)) allowed; /** * Transfer tokens from one address to another * _from address The address which you want to send tokens from * _to address The address which you want to transfer to * _value uint256 the amout of tokens to be transfered */ function transferFrom(address _from, address _to, uint256 _value) returns (bool) { require( allowed[_from][msg.sender] >=_value && balances[_from] >= _value && _value > 0 ); if (transferlocked) { throw; } // Check is not needed because sub(_allowance, _value) will already throw if this condition is not met // require (_value <= _allowed); balances[_to] = balances[_to].add(_value); balances[_from] = balances[_from].sub(_value); allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value); Transfer(_from, _to, _value); return true; } /** * Aprove the passed address to spend the specified amount of tokens on behalf of msg.sender. * _spender The address which will spend the funds. * _value The -amount of tokens to be spent. */ function approve(address _spender, uint256 _value) returns (bool) { // To change the approve amount you first have to reduce the addresses` // allowance to zero by calling `approve(_spender, 0)` if it is not // already 0 to mitigate the race condition described here: // https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 require((_value == 0) || (allowed[msg.sender][_spender] == 0)); if (transferlocked) { throw; } allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); return true; } /** * Function to check the amount of tokens that an owner allowed to a spender. * _owner address The address which owns the funds. * _spender address The address which will spend the funds. * A uint256 specifing the amount of tokens still avaible for the spender. */ function allowance(address _owner, address _spender) constant returns (uint256 remaining) { return allowed[_owner][_spender]; } } /** * Mintable token * Simple ERC20 Token example, with mintable token creation * Issue: * https://github.com/OpenZeppelin/zeppelin-solidity/issues/120 * Based on code by TokenMarketNet: https://github.com/TokenMarketNet/ico/blob/master/contracts/MintableToken.sol */ contract MintburnToken is StandardToken, Ownable { event Mint(address indexed to, uint256 amount); event MintFinished(); bool public mintingFinished = false; modifier canMint() { require(!mintingFinished); _; } /** * Function to mint tokens * _to The address that will receive the minted tokens. * _amount The amount of tokens to mint. * A boolean that indicates if the operation was successful. */ function mint(address _to, uint256 _amount) onlyOwner canMint returns (bool) { totalSupply = totalSupply.add(_amount); balances[_to] = balances[_to].add(_amount); Mint(_to, _amount); Transfer(0x0, _to, _amount); return true; } /** * Burn away the specified amount of CareerXon tokens */ function burn(uint256 _value) onlyOwner returns (bool) { balances[msg.sender] = balances[msg.sender].sub(_value); totalSupply = totalSupply.sub(_value); Transfer(msg.sender, 0x0, _value); return true; } function burnFrom(address _from, uint256 _value) onlyOwner returns (bool success) { require(balances[_from] >= _value); // Check if the targeted balance is enough require(_value <= allowed[_from][msg.sender]); // Check allowance balances[_from] = balances[_from].sub(_value); // Subtract from the targeted balance allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value); // Subtract from the sender's allowance totalSupply = totalSupply.sub(_value); // Update totalSupply Burn(_from, _value); return true; } /** * Function to stop minting new tokens. * True if the operation was successful. */ function finishMinting() onlyOwner returns (bool) { mintingFinished = true; MintFinished(); return true; } } /** * CRN (CareerXon) Token * * Implements ERC 20 Token standard: https://github.com/ethereum/EIPs/issues/20 with the addition * of ownership, a lock and issuing. * * created 08/20/2017 * */ contract CareerXonToken is MintburnToken{ string public constant name = "CareerXon"; string public constant symbol = "CRN"; uint public constant decimals = 18; string public standard = "Token 0.1"; uint256 public maxSupply = 1500000000000000000000000; //15,000,000 CareerXon tokens max supply // timestamps for first presale and ICO uint public startPreSale; uint public endPreSale; uint public startICO; uint public endICO; // how many token units a buyer gets per wei uint256 public rate; uint256 public minTransactionAmount; uint256 public raisedForEther = 0; modifier inActivePeriod() { require((startPreSale < now && now <= endPreSale) || (startICO < now && now <= endICO)); _; } //prevent short address attack modifier onlyPayloadSize(uint size) { if(msg.data.length < size + 4) revert(); _; } function CareerXonToken(uint _startP, uint _endP, uint _startI, uint _endI) { require(_startP < _endP); require(_startI < _endI); //12,900,000 for eth supply //2,000,000 for bitcoin and bitcoin cash sales supply minted //100,000 for bounty and transalation minted //After all these distribution, Remaining minted coins will be burned. totalSupply = 12900000000000000000000000; // 1 ETH = 1300 CareerXon + 50% bonus in presale on first day rate = 1300; // minimal invest 0.01 ETH minTransactionAmount = 0.01 ether; startPreSale = _startP; endPreSale = _endP; startICO = _startI; endICO = _endI; transferlocked = true; // wallet withdrawal lock for protection wallocked = true; } modifier onlyOwner() { require(msg.sender == owner); _; } //Allows owner to stop & start presale. //For PreSale starting date visit http://careerxon.com. function setupPeriodForPreSale(uint _start, uint _end) onlyOwner { require(_start < _end); startPreSale = _start; endPreSale = _end; } //For ICO and project details visit http://careerxon.com //Total Amount to be sold 15,000,000 //Left over OR unsold coins will be burned. function setupPeriodForICO(uint _start, uint _end) onlyOwner { require(_start < _end); startICO = _start; endICO = _end; } // fallback function can be used to buy tokens function () inActivePeriod payable { buyTokens(msg.sender); } // token auto purchase function function buyTokens(address _youraddress) inActivePeriod payable { require(_youraddress != 0x0); require(msg.value >= minTransactionAmount); uint256 weiAmount = msg.value; raisedForEther = raisedForEther.add(weiAmount); // calculate token amount to be created uint256 tokens = weiAmount.mul(rate); tokens += getBonus(tokens); tokens += getBonustwo(tokens); tokenReserved(_youraddress, tokens); } function withdraw(uint256 _value) onlyOwner returns (bool){ if (wallocked) { throw; } owner.transfer(_value); return true; } function walunlock() onlyOwner returns (bool success) { wallocked = false; return true; } function wallock() onlyOwner returns (bool success) { wallocked = true; return true; } /* * PreSale: * Day 1: +50% bonus * Day 2: +33% bonus * Day 3: +20% bonus * Day 4: +10% bonus */ function getBonus(uint256 _tokens) constant returns (uint256 bonus) { require(_tokens != 0); if (1 == getCurrentPeriod()) { if (startPreSale <= now && now < startPreSale + 1 days) { return _tokens.div(2); } else if (startPreSale + 1 days <= now && now < startPreSale + 2 days ) { return _tokens.div(3); } else if (startPreSale + 2 days <= now && now < startPreSale + 3 days ) { return _tokens.div(5); }else if (startPreSale + 3 days <= now && now < startPreSale + 4 days ) { return _tokens.div(10); } } return 0; } /* * ICO: * Day 1: +20% bonus * Day 2: +10% bonus * Day 3: +5% bonus * Day 4 & onwards: No bonuses */ function getBonustwo(uint256 _tokens) constant returns (uint256 bonus) { require(_tokens != 0); if (2 == getCurrentPeriod()) { if (startICO <= now && now < startICO + 1 days) { return _tokens.div(5); } else if (startICO + 1 days <= now && now < startICO + 2 days ) { return _tokens.div(10); } else if (startICO + 2 days <= now && now < startICO + 3 days ) { return _tokens.mul(5).div(100); } } // Return 0 means token sales are closed return 0; } //start date & end date of presale and future ICO function getCurrentPeriod() inActivePeriod constant returns (uint){ if ((startPreSale < now && now <= endPreSale)) { return 1; } else if ((startICO < now && now <= endICO)) { return 2; } else { return 0; } } function tokenReserved(address _to, uint256 _value) internal returns (bool) { balances[_to] = balances[_to].add(_value); Transfer(msg.sender, _to, _value); return true; } // token transfer lock. Unlock at end of Presale,ICO function transferunlock() onlyOwner returns (bool success) { transferlocked = false; return true; } function transferlock() onlyOwner returns (bool success) { transferlocked = true; return true; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":false,"inputs":[],"name":"transferlock","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"getCurrentPeriod","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"minTransactionAmount","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"rate","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"withdraw","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"raisedForEther","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"wallock","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_tokens","type":"uint256"}],"name":"getBonus","outputs":[{"name":"bonus","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"endICO","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"startPreSale","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"standard","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_start","type":"uint256"},{"name":"_end","type":"uint256"}],"name":"setupPeriodForPreSale","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_start","type":"uint256"},{"name":"_end","type":"uint256"}],"name":"setupPeriodForICO","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"startICO","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_tokens","type":"uint256"}],"name":"getBonustwo","outputs":[{"name":"bonus","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"walunlock","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"transferunlock","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"maxSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"transferlocked","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"wallocked","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_youraddress","type":"address"}],"name":"buyTokens","outputs":[],"payable":true,"type":"function"},{"constant":true,"inputs":[],"name":"endPreSale","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"inputs":[{"name":"_startP","type":"uint256"},{"name":"_endP","type":"uint256"},{"name":"_startI","type":"uint256"},{"name":"_endI","type":"uint256"}],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"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"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":true,"name":"value","type":"uint256"}],"name":"Burn","type":"event"}]
Contract Creation Code
6004805460a060020a60ff021916905560a0604052600960608190527f546f6b656e20302e310000000000000000000000000000000000000000000000608090815262000050916005919062000125565b506a013da329b63364718000006006556000600d5534156200006e57fe5b604051608080620019e783398101604090815281516020830151918301516060909301519092905b5b60048054600160a060020a03191633600160a060020a03161790555b828410620000c15760006000fd5b808210620000cf5760006000fd5b6a0aabae66b886c636800000600055610514600b55662386f26fc10000600c55600784905560088390556009829055600a8190556001805461ff001960ff199091168217166101001790555b50505050620001cf565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200016857805160ff191683800117855562000198565b8280016001018555821562000198579182015b82811115620001985782518255916020019190600101906200017b565b5b50620001a7929150620001ab565b5090565b620001cc91905b80821115620001a75760008155600101620001b2565b5090565b90565b61180880620001df6000396000f300606060405236156101d55763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166304517225811461022157806305d2035b1461024557806306fdde0314610269578063086146d2146102f9578063095ea7b31461031b57806317a5d4df1461034e57806318160ddd1461037057806323b872dd146103925780632c4e722e146103cb5780632e1a7d4d146103ed5780632f90daf414610414578063313ce5671461043657806340c10f191461045857806342966c681461048b57806349f298c6146104b25780634aa66b28146104d65780634f248409146104fb57806355dd574c1461051d5780635a3b7e421461053f5780636b8c7180146105cf57806370a08231146105e75780637710f29f1461061557806379cc67901461062d5780637d64bcb4146106605780637fa8c1581461068457806384dc1028146106a657806384eff1d0146106cb5780638da5cb5b146106ef57806395d89b411461071b578063a9059cbb146107ab578063ca7430ea146107de578063d5abeb0114610802578063d7816f4514610824578063dd62ed3e14610848578063e66dda4e1461087c578063ec8ac4d8146108a0578063ee889ed0146108b6578063f2fde38b146108d8575b61021f5b426007541080156101ec57506008544211155b806102055750426009541080156102055750600a544211155b5b15156102125760006000fd5b61021b336108f6565b5b5b565b005b341561022957fe5b6102316109ae565b604080519115158252519081900360200190f35b341561024d57fe5b6102316109df565b604080519115158252519081900360200190f35b341561027157fe5b610279610a00565b6040805160208082528351818301528351919283929083019185019080838382156102bf575b8051825260208311156102bf57601f19909201916020918201910161029f565b505050905090810190601f1680156102eb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561030157fe5b610309610a37565b60408051918252519081900360200190f35b341561032357fe5b610231600160a060020a0360043516602435610ac0565b604080519115158252519081900360200190f35b341561035657fe5b610309610b76565b60408051918252519081900360200190f35b341561037857fe5b610309610b7c565b60408051918252519081900360200190f35b341561039a57fe5b610231600160a060020a0360043581169060243516604435610b82565b604080519115158252519081900360200190f35b34156103d357fe5b610309610cfa565b60408051918252519081900360200190f35b34156103f557fe5b610231600435610d00565b604080519115158252519081900360200190f35b341561041c57fe5b610309610d70565b60408051918252519081900360200190f35b341561043e57fe5b610309610d76565b60408051918252519081900360200190f35b341561046057fe5b610231600160a060020a0360043516602435610d7b565b604080519115158252519081900360200190f35b341561049357fe5b610231600435610e8e565b604080519115158252519081900360200190f35b34156104ba57fe5b610231610f3f565b604080519115158252519081900360200190f35b34156104de57fe5b610309600435610f73565b60408051918252519081900360200190f35b341561050357fe5b610309611082565b60408051918252519081900360200190f35b341561052557fe5b610309611088565b60408051918252519081900360200190f35b341561054757fe5b61027961108e565b6040805160208082528351818301528351919283929083019185019080838382156102bf575b8051825260208311156102bf57601f19909201916020918201910161029f565b505050905090810190601f1680156102eb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156105d757fe5b61021f60043560243561111c565b005b34156105ef57fe5b610309600160a060020a0360043516611155565b60408051918252519081900360200190f35b341561061d57fe5b61021f600435602435611174565b005b341561063557fe5b610231600160a060020a03600435166024356111ad565b604080519115158252519081900360200190f35b341561066857fe5b610231611314565b604080519115158252519081900360200190f35b341561068c57fe5b610309611399565b60408051918252519081900360200190f35b34156106ae57fe5b61030960043561139f565b60408051918252519081900360200190f35b34156106d357fe5b610231611484565b604080519115158252519081900360200190f35b34156106f757fe5b6106ff6114b4565b60408051600160a060020a039092168252519081900360200190f35b341561072357fe5b6102796114c3565b6040805160208082528351818301528351919283929083019185019080838382156102bf575b8051825260208311156102bf57601f19909201916020918201910161029f565b505050905090810190601f1680156102eb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156107b357fe5b610231600160a060020a03600435166024356114fa565b604080519115158252519081900360200190f35b34156107e657fe5b6102316115ee565b604080519115158252519081900360200190f35b341561080a57fe5b61030961161d565b60408051918252519081900360200190f35b341561082c57fe5b610231611623565b604080519115158252519081900360200190f35b341561085057fe5b610309600160a060020a036004358116906024351661162c565b60408051918252519081900360200190f35b341561088457fe5b610231611659565b604080519115158252519081900360200190f35b61021f600160a060020a03600435166108f6565b005b34156108be57fe5b610309611667565b60408051918252519081900360200190f35b34156108e057fe5b61021f600160a060020a036004351661166d565b005b600060004260075410801561090d57506008544211155b806109265750426009541080156109265750600a544211155b5b15156109335760006000fd5b600160a060020a03831615156109495760006000fd5b600c543410156109595760006000fd5b600d5434925061096f908363ffffffff6116c616565b600d55600b5461098690839063ffffffff6116e016565b905061099181610f73565b0161099b8161139f565b016109a6838261170f565b505b5b505050565b60045460009033600160a060020a039081169116146109cd5760006000fd5b506001805460ff1916811781555b5b90565b60045474010000000000000000000000000000000000000000900460ff1681565b60408051808201909152600981527f436172656572586f6e0000000000000000000000000000000000000000000000602082015281565b600042600754108015610a4c57506008544211155b80610a65575042600954108015610a655750600a544211155b5b1515610a725760006000fd5b42600754108015610a8557506008544211155b15610a92575060016109db565b42600954108015610aa55750600a544211155b15610ab2575060026109db565b5060006109db565b5b5b5b90565b6000811580610af25750600160a060020a03338116600090815260036020908152604080832093871683529290522054155b1515610afe5760006000fd5b60015460ff1615610b0f5760006000fd5b600160a060020a03338116600081815260036020908152604080832094881680845294825291829020869055815186815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35060015b92915050565b600c5481565b60005481565b600160a060020a03808416600090815260036020908152604080832033909416835292905290812054829010801590610bd45750600160a060020a038416600090815260026020526040902054829010155b8015610be05750600082115b1515610bec5760006000fd5b60015460ff1615610bfd5760006000fd5b600160a060020a038316600090815260026020526040902054610c26908363ffffffff6116c616565b600160a060020a038085166000908152600260205260408082209390935590861681522054610c5b908363ffffffff61178816565b600160a060020a0380861660009081526002602090815260408083209490945560038152838220339093168252919091522054610c9e908363ffffffff61178816565b600160a060020a038086166000818152600360209081526040808320338616845282529182902094909455805186815290519287169391926000805160206117bd833981519152929181900390910190a35060015b9392505050565b600b5481565b60045460009033600160a060020a03908116911614610d1f5760006000fd5b600154610100900460ff1615610d355760006000fd5b600454604051600160a060020a039091169083156108fc029084906000818181858888f193505050501515610d6657fe5b5060015b5b919050565b600d5481565b601281565b60045460009033600160a060020a03908116911614610d9a5760006000fd5b60045474010000000000000000000000000000000000000000900460ff1615610dc35760006000fd5b600054610dd6908363ffffffff6116c616565b6000908155600160a060020a038416815260026020526040902054610e01908363ffffffff6116c616565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000916000805160206117bd8339815191529181900360200190a35060015b5b5b92915050565b60045460009033600160a060020a03908116911614610ead5760006000fd5b600160a060020a033316600090815260026020526040902054610ed6908363ffffffff61178816565b600160a060020a03331660009081526002602052604081209190915554610f03908363ffffffff61178816565b6000908155604080518481529051600160a060020a033316916000805160206117bd833981519152919081900360200190a35060015b5b919050565b60045460009033600160a060020a03908116911614610f5e5760006000fd5b506001805461ff0019166101001781555b5b90565b6000811515610f825760006000fd5b610f8a610a37565b60011415611075574260075411158015610faa5750600754620151800142105b15610fc757610fc082600263ffffffff61179f16565b9050610d6a565b42600754620151800111158015610fe457506007546202a3000142105b1561100157610fc082600363ffffffff61179f16565b9050610d6a565b426007546202a300011115801561101e57506007546203f4800142105b1561103b57610fc082600563ffffffff61179f16565b9050610d6a565b426007546203f48001111580156110585750600754620546000142105b1561107557610fc082600a63ffffffff61179f16565b9050610d6a565b5b5b5b5b5060005b919050565b600a5481565b60075481565b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156111145780601f106110e957610100808354040283529160200191611114565b820191906000526020600020905b8154815290600101906020018083116110f757829003601f168201915b505050505081565b60045433600160a060020a039081169116146111385760006000fd5b8082106111455760006000fd5b600782905560088190555b5b5050565b600160a060020a0381166000908152600260205260409020545b919050565b60045433600160a060020a039081169116146111905760006000fd5b80821061119d5760006000fd5b6009829055600a8190555b5b5050565b60045460009033600160a060020a039081169116146111cc5760006000fd5b600160a060020a038316600090815260026020526040902054829010156111f35760006000fd5b600160a060020a03808416600090815260036020908152604080832033909416835292905220548211156112275760006000fd5b600160a060020a038316600090815260026020526040902054611250908363ffffffff61178816565b600160a060020a0380851660009081526002602090815260408083209490945560038152838220339093168252919091522054611293908363ffffffff61178816565b600160a060020a03808516600090815260036020908152604080832033909416835292905290812091909155546112d0908363ffffffff61178816565b60009081556040518391600160a060020a038616917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59190a35060015b5b92915050565b60045460009033600160a060020a039081169116146113335760006000fd5b6004805474ff00000000000000000000000000000000000000001916740100000000000000000000000000000000000000001790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a15060015b5b90565b60095481565b60008115156113ae5760006000fd5b6113b6610a37565b600214156110755742600954111580156113d65750600954620151800142105b156113f357610fc082600563ffffffff61179f16565b9050610d6a565b4260095462015180011115801561141057506009546202a3000142105b1561142d57610fc082600a63ffffffff61179f16565b9050610d6a565b426009546202a300011115801561144a57506009546203f4800142105b1561107557610fc0606461146584600563ffffffff6116e016565b9063ffffffff61179f16565b9050610d6a565b5b5b5b5060005b919050565b60045460009033600160a060020a039081169116146114a35760006000fd5b506001805461ff00191681555b5b90565b600454600160a060020a031681565b60408051808201909152600381527f43524e0000000000000000000000000000000000000000000000000000000000602082015281565b600160a060020a0333166000908152600260205260408120548290108015906115235750600082115b151561152f5760006000fd5b60015460ff16156115405760006000fd5b600160a060020a033316600090815260026020526040902054611569908363ffffffff61178816565b600160a060020a03338116600090815260026020526040808220939093559085168152205461159e908363ffffffff6116c616565b600160a060020a038085166000818152600260209081526040918290209490945580518681529051919333909316926000805160206117bd83398151915292918290030190a35060015b92915050565b60045460009033600160a060020a0390811691161461160d5760006000fd5b506001805460ff191681555b5b90565b60065481565b60015460ff1681565b600160a060020a038083166000908152600360209081526040808320938516835292905220545b92915050565b600154610100900460ff1681565b60085481565b60045433600160a060020a039081169116146116895760006000fd5b600160a060020a038116156116c1576004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b5b50565b6000828201838110156116d557fe5b8091505b5092915050565b60008282028315806116fc57508284828115156116f957fe5b04145b15156116d557fe5b8091505b5092915050565b600160a060020a03821660009081526002602052604081205461159e908363ffffffff6116c616565b600160a060020a038085166000818152600260209081526040918290209490945580518681529051919333909316926000805160206117bd83398151915292918290030190a35060015b92915050565b60008282111561179457fe5b508082035b92915050565b6000600082848115156117ae57fe5b0490508091505b50929150505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582064125c0c4fca7da27341daaf44af808646338002b6f877311183aa1d4ce2f79700290000000000000000000000000000000000000000000000000000000059fcf4f0000000000000000000000000000000000000000000000000000000005a0f7800000000000000000000000000000000000000000000000000000000005a2481f0000000000000000000000000000000000000000000000000000000005a403170
Deployed Bytecode
0x606060405236156101d55763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166304517225811461022157806305d2035b1461024557806306fdde0314610269578063086146d2146102f9578063095ea7b31461031b57806317a5d4df1461034e57806318160ddd1461037057806323b872dd146103925780632c4e722e146103cb5780632e1a7d4d146103ed5780632f90daf414610414578063313ce5671461043657806340c10f191461045857806342966c681461048b57806349f298c6146104b25780634aa66b28146104d65780634f248409146104fb57806355dd574c1461051d5780635a3b7e421461053f5780636b8c7180146105cf57806370a08231146105e75780637710f29f1461061557806379cc67901461062d5780637d64bcb4146106605780637fa8c1581461068457806384dc1028146106a657806384eff1d0146106cb5780638da5cb5b146106ef57806395d89b411461071b578063a9059cbb146107ab578063ca7430ea146107de578063d5abeb0114610802578063d7816f4514610824578063dd62ed3e14610848578063e66dda4e1461087c578063ec8ac4d8146108a0578063ee889ed0146108b6578063f2fde38b146108d8575b61021f5b426007541080156101ec57506008544211155b806102055750426009541080156102055750600a544211155b5b15156102125760006000fd5b61021b336108f6565b5b5b565b005b341561022957fe5b6102316109ae565b604080519115158252519081900360200190f35b341561024d57fe5b6102316109df565b604080519115158252519081900360200190f35b341561027157fe5b610279610a00565b6040805160208082528351818301528351919283929083019185019080838382156102bf575b8051825260208311156102bf57601f19909201916020918201910161029f565b505050905090810190601f1680156102eb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561030157fe5b610309610a37565b60408051918252519081900360200190f35b341561032357fe5b610231600160a060020a0360043516602435610ac0565b604080519115158252519081900360200190f35b341561035657fe5b610309610b76565b60408051918252519081900360200190f35b341561037857fe5b610309610b7c565b60408051918252519081900360200190f35b341561039a57fe5b610231600160a060020a0360043581169060243516604435610b82565b604080519115158252519081900360200190f35b34156103d357fe5b610309610cfa565b60408051918252519081900360200190f35b34156103f557fe5b610231600435610d00565b604080519115158252519081900360200190f35b341561041c57fe5b610309610d70565b60408051918252519081900360200190f35b341561043e57fe5b610309610d76565b60408051918252519081900360200190f35b341561046057fe5b610231600160a060020a0360043516602435610d7b565b604080519115158252519081900360200190f35b341561049357fe5b610231600435610e8e565b604080519115158252519081900360200190f35b34156104ba57fe5b610231610f3f565b604080519115158252519081900360200190f35b34156104de57fe5b610309600435610f73565b60408051918252519081900360200190f35b341561050357fe5b610309611082565b60408051918252519081900360200190f35b341561052557fe5b610309611088565b60408051918252519081900360200190f35b341561054757fe5b61027961108e565b6040805160208082528351818301528351919283929083019185019080838382156102bf575b8051825260208311156102bf57601f19909201916020918201910161029f565b505050905090810190601f1680156102eb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156105d757fe5b61021f60043560243561111c565b005b34156105ef57fe5b610309600160a060020a0360043516611155565b60408051918252519081900360200190f35b341561061d57fe5b61021f600435602435611174565b005b341561063557fe5b610231600160a060020a03600435166024356111ad565b604080519115158252519081900360200190f35b341561066857fe5b610231611314565b604080519115158252519081900360200190f35b341561068c57fe5b610309611399565b60408051918252519081900360200190f35b34156106ae57fe5b61030960043561139f565b60408051918252519081900360200190f35b34156106d357fe5b610231611484565b604080519115158252519081900360200190f35b34156106f757fe5b6106ff6114b4565b60408051600160a060020a039092168252519081900360200190f35b341561072357fe5b6102796114c3565b6040805160208082528351818301528351919283929083019185019080838382156102bf575b8051825260208311156102bf57601f19909201916020918201910161029f565b505050905090810190601f1680156102eb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156107b357fe5b610231600160a060020a03600435166024356114fa565b604080519115158252519081900360200190f35b34156107e657fe5b6102316115ee565b604080519115158252519081900360200190f35b341561080a57fe5b61030961161d565b60408051918252519081900360200190f35b341561082c57fe5b610231611623565b604080519115158252519081900360200190f35b341561085057fe5b610309600160a060020a036004358116906024351661162c565b60408051918252519081900360200190f35b341561088457fe5b610231611659565b604080519115158252519081900360200190f35b61021f600160a060020a03600435166108f6565b005b34156108be57fe5b610309611667565b60408051918252519081900360200190f35b34156108e057fe5b61021f600160a060020a036004351661166d565b005b600060004260075410801561090d57506008544211155b806109265750426009541080156109265750600a544211155b5b15156109335760006000fd5b600160a060020a03831615156109495760006000fd5b600c543410156109595760006000fd5b600d5434925061096f908363ffffffff6116c616565b600d55600b5461098690839063ffffffff6116e016565b905061099181610f73565b0161099b8161139f565b016109a6838261170f565b505b5b505050565b60045460009033600160a060020a039081169116146109cd5760006000fd5b506001805460ff1916811781555b5b90565b60045474010000000000000000000000000000000000000000900460ff1681565b60408051808201909152600981527f436172656572586f6e0000000000000000000000000000000000000000000000602082015281565b600042600754108015610a4c57506008544211155b80610a65575042600954108015610a655750600a544211155b5b1515610a725760006000fd5b42600754108015610a8557506008544211155b15610a92575060016109db565b42600954108015610aa55750600a544211155b15610ab2575060026109db565b5060006109db565b5b5b5b90565b6000811580610af25750600160a060020a03338116600090815260036020908152604080832093871683529290522054155b1515610afe5760006000fd5b60015460ff1615610b0f5760006000fd5b600160a060020a03338116600081815260036020908152604080832094881680845294825291829020869055815186815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35060015b92915050565b600c5481565b60005481565b600160a060020a03808416600090815260036020908152604080832033909416835292905290812054829010801590610bd45750600160a060020a038416600090815260026020526040902054829010155b8015610be05750600082115b1515610bec5760006000fd5b60015460ff1615610bfd5760006000fd5b600160a060020a038316600090815260026020526040902054610c26908363ffffffff6116c616565b600160a060020a038085166000908152600260205260408082209390935590861681522054610c5b908363ffffffff61178816565b600160a060020a0380861660009081526002602090815260408083209490945560038152838220339093168252919091522054610c9e908363ffffffff61178816565b600160a060020a038086166000818152600360209081526040808320338616845282529182902094909455805186815290519287169391926000805160206117bd833981519152929181900390910190a35060015b9392505050565b600b5481565b60045460009033600160a060020a03908116911614610d1f5760006000fd5b600154610100900460ff1615610d355760006000fd5b600454604051600160a060020a039091169083156108fc029084906000818181858888f193505050501515610d6657fe5b5060015b5b919050565b600d5481565b601281565b60045460009033600160a060020a03908116911614610d9a5760006000fd5b60045474010000000000000000000000000000000000000000900460ff1615610dc35760006000fd5b600054610dd6908363ffffffff6116c616565b6000908155600160a060020a038416815260026020526040902054610e01908363ffffffff6116c616565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000916000805160206117bd8339815191529181900360200190a35060015b5b5b92915050565b60045460009033600160a060020a03908116911614610ead5760006000fd5b600160a060020a033316600090815260026020526040902054610ed6908363ffffffff61178816565b600160a060020a03331660009081526002602052604081209190915554610f03908363ffffffff61178816565b6000908155604080518481529051600160a060020a033316916000805160206117bd833981519152919081900360200190a35060015b5b919050565b60045460009033600160a060020a03908116911614610f5e5760006000fd5b506001805461ff0019166101001781555b5b90565b6000811515610f825760006000fd5b610f8a610a37565b60011415611075574260075411158015610faa5750600754620151800142105b15610fc757610fc082600263ffffffff61179f16565b9050610d6a565b42600754620151800111158015610fe457506007546202a3000142105b1561100157610fc082600363ffffffff61179f16565b9050610d6a565b426007546202a300011115801561101e57506007546203f4800142105b1561103b57610fc082600563ffffffff61179f16565b9050610d6a565b426007546203f48001111580156110585750600754620546000142105b1561107557610fc082600a63ffffffff61179f16565b9050610d6a565b5b5b5b5b5060005b919050565b600a5481565b60075481565b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156111145780601f106110e957610100808354040283529160200191611114565b820191906000526020600020905b8154815290600101906020018083116110f757829003601f168201915b505050505081565b60045433600160a060020a039081169116146111385760006000fd5b8082106111455760006000fd5b600782905560088190555b5b5050565b600160a060020a0381166000908152600260205260409020545b919050565b60045433600160a060020a039081169116146111905760006000fd5b80821061119d5760006000fd5b6009829055600a8190555b5b5050565b60045460009033600160a060020a039081169116146111cc5760006000fd5b600160a060020a038316600090815260026020526040902054829010156111f35760006000fd5b600160a060020a03808416600090815260036020908152604080832033909416835292905220548211156112275760006000fd5b600160a060020a038316600090815260026020526040902054611250908363ffffffff61178816565b600160a060020a0380851660009081526002602090815260408083209490945560038152838220339093168252919091522054611293908363ffffffff61178816565b600160a060020a03808516600090815260036020908152604080832033909416835292905290812091909155546112d0908363ffffffff61178816565b60009081556040518391600160a060020a038616917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59190a35060015b5b92915050565b60045460009033600160a060020a039081169116146113335760006000fd5b6004805474ff00000000000000000000000000000000000000001916740100000000000000000000000000000000000000001790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a15060015b5b90565b60095481565b60008115156113ae5760006000fd5b6113b6610a37565b600214156110755742600954111580156113d65750600954620151800142105b156113f357610fc082600563ffffffff61179f16565b9050610d6a565b4260095462015180011115801561141057506009546202a3000142105b1561142d57610fc082600a63ffffffff61179f16565b9050610d6a565b426009546202a300011115801561144a57506009546203f4800142105b1561107557610fc0606461146584600563ffffffff6116e016565b9063ffffffff61179f16565b9050610d6a565b5b5b5b5060005b919050565b60045460009033600160a060020a039081169116146114a35760006000fd5b506001805461ff00191681555b5b90565b600454600160a060020a031681565b60408051808201909152600381527f43524e0000000000000000000000000000000000000000000000000000000000602082015281565b600160a060020a0333166000908152600260205260408120548290108015906115235750600082115b151561152f5760006000fd5b60015460ff16156115405760006000fd5b600160a060020a033316600090815260026020526040902054611569908363ffffffff61178816565b600160a060020a03338116600090815260026020526040808220939093559085168152205461159e908363ffffffff6116c616565b600160a060020a038085166000818152600260209081526040918290209490945580518681529051919333909316926000805160206117bd83398151915292918290030190a35060015b92915050565b60045460009033600160a060020a0390811691161461160d5760006000fd5b506001805460ff191681555b5b90565b60065481565b60015460ff1681565b600160a060020a038083166000908152600360209081526040808320938516835292905220545b92915050565b600154610100900460ff1681565b60085481565b60045433600160a060020a039081169116146116895760006000fd5b600160a060020a038116156116c1576004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b5b50565b6000828201838110156116d557fe5b8091505b5092915050565b60008282028315806116fc57508284828115156116f957fe5b04145b15156116d557fe5b8091505b5092915050565b600160a060020a03821660009081526002602052604081205461159e908363ffffffff6116c616565b600160a060020a038085166000818152600260209081526040918290209490945580518681529051919333909316926000805160206117bd83398151915292918290030190a35060015b92915050565b60008282111561179457fe5b508082035b92915050565b6000600082848115156117ae57fe5b0490508091505b50929150505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582064125c0c4fca7da27341daaf44af808646338002b6f877311183aa1d4ce2f7970029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000059fcf4f0000000000000000000000000000000000000000000000000000000005a0f7800000000000000000000000000000000000000000000000000000000005a2481f0000000000000000000000000000000000000000000000000000000005a403170
-----Decoded View---------------
Arg [0] : _startP (uint256): 1509750000
Arg [1] : _endP (uint256): 1510963200
Arg [2] : _startI (uint256): 1512342000
Arg [3] : _endI (uint256): 1514156400
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000059fcf4f0
Arg [1] : 000000000000000000000000000000000000000000000000000000005a0f7800
Arg [2] : 000000000000000000000000000000000000000000000000000000005a2481f0
Arg [3] : 000000000000000000000000000000000000000000000000000000005a403170
Swarm Source
bzzr://64125c0c4fca7da27341daaf44af808646338002b6f877311183aa1d4ce2f797
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.