Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00Latest 25 from a total of 398 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Finalize | 3969543 | 3185 days ago | IN | 0 ETH | 0.00292342 | ||||
| Set Investor Dat... | 3969310 | 3185 days ago | IN | 0 ETH | 0.00344436 | ||||
| Set Investor Dat... | 3969310 | 3185 days ago | IN | 0 ETH | 0.00344589 | ||||
| Set Investor Dat... | 3969310 | 3185 days ago | IN | 0 ETH | 0.00344589 | ||||
| Set Investor Dat... | 3969310 | 3185 days ago | IN | 0 ETH | 0.00344436 | ||||
| Set Investor Dat... | 3969310 | 3185 days ago | IN | 0 ETH | 0.00344282 | ||||
| Set Investor Dat... | 3969310 | 3185 days ago | IN | 0 ETH | 0.00344436 | ||||
| Set Investor Dat... | 3969310 | 3185 days ago | IN | 0 ETH | 0.0022392 | ||||
| Set Investor Dat... | 3969310 | 3185 days ago | IN | 0 ETH | 0.00344589 | ||||
| Set Investor Dat... | 3969310 | 3185 days ago | IN | 0 ETH | 0.00344589 | ||||
| Set Investor Dat... | 3969309 | 3185 days ago | IN | 0 ETH | 0.00344436 | ||||
| Set Investor Dat... | 3969309 | 3185 days ago | IN | 0 ETH | 0.00344589 | ||||
| Set Investor Dat... | 3969304 | 3185 days ago | IN | 0 ETH | 0.0036371 | ||||
| Set Investor Dat... | 3969304 | 3185 days ago | IN | 0 ETH | 0.0036371 | ||||
| Set Investor Dat... | 3969304 | 3185 days ago | IN | 0 ETH | 0.00363385 | ||||
| Set Investor Dat... | 3969304 | 3185 days ago | IN | 0 ETH | 0.00363385 | ||||
| Set Investor Dat... | 3969304 | 3185 days ago | IN | 0 ETH | 0.0036371 | ||||
| Set Investor Dat... | 3969304 | 3185 days ago | IN | 0 ETH | 0.00236344 | ||||
| Set Investor Dat... | 3969304 | 3185 days ago | IN | 0 ETH | 0.00367465 | ||||
| Set Investor Dat... | 3969304 | 3185 days ago | IN | 0 ETH | 0.00370982 | ||||
| Set Investor Dat... | 3969303 | 3185 days ago | IN | 0 ETH | 0.00370817 | ||||
| Set Investor Dat... | 3969300 | 3185 days ago | IN | 0 ETH | 0.00370817 | ||||
| Set Investor Dat... | 3969300 | 3185 days ago | IN | 0 ETH | 0.00370982 | ||||
| Set Investor Dat... | 3969300 | 3185 days ago | IN | 0 ETH | 0.00370817 | ||||
| Set Investor Dat... | 3969300 | 3185 days ago | IN | 0 ETH | 0.00374661 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
This contract contains unverified libraries: SafeMathLib
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
RelaunchedCrowdsale
Compiler Version
v0.4.8+commit.60cc1668
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2017-07-03
*/
/**
* Safe unsigned safe math.
*
* https://blog.aragon.one/library-driven-development-in-solidity-2bebcaf88736#.750gwtwli
*
* Originally from https://raw.githubusercontent.com/AragonOne/zeppelin-solidity/master/contracts/SafeMathLib.sol
*
* Maintained here until merged to mainline zeppelin-solidity.
*
*/
library SafeMathLib {
function times(uint a, uint b) returns (uint) {
uint c = a * b;
assert(a == 0 || c / a == b);
return c;
}
function minus(uint a, uint b) returns (uint) {
assert(b <= a);
return a - b;
}
function plus(uint a, uint b) returns (uint) {
uint c = a + b;
assert(c>=a);
return c;
}
function assert(bool assertion) private {
if (!assertion) throw;
}
}
/*
* Ownable
*
* Base contract with an owner.
* Provides onlyOwner modifier, which prevents function from running if it is called by anyone other than the owner.
*/
contract Ownable {
address public owner;
function Ownable() {
owner = msg.sender;
}
modifier onlyOwner() {
if (msg.sender != owner) {
throw;
}
_;
}
function transferOwnership(address newOwner) onlyOwner {
if (newOwner != address(0)) {
owner = newOwner;
}
}
}
/*
* Haltable
*
* Abstract contract that allows children to implement an
* emergency stop mechanism. Differs from Pausable by causing a throw when in halt mode.
*
*
* Originally envisioned in FirstBlood ICO contract.
*/
contract Haltable is Ownable {
bool public halted;
modifier stopInEmergency {
if (halted) throw;
_;
}
modifier onlyInEmergency {
if (!halted) throw;
_;
}
// called by the owner on emergency, triggers stopped state
function halt() external onlyOwner {
halted = true;
}
// called by the owner on end of emergency, returns to normal state
function unhalt() external onlyOwner onlyInEmergency {
halted = false;
}
}
/**
* Interface for defining crowdsale pricing.
*/
contract PricingStrategy {
/** Interface declaration. */
function isPricingStrategy() public constant returns (bool) {
return true;
}
/** Self check if all references are correctly set.
*
* Checks that pricing strategy matches crowdsale parameters.
*/
function isSane(address crowdsale) public constant returns (bool) {
return true;
}
/**
* When somebody tries to buy tokens for X eth, calculate how many tokens they get.
*
*
* @param value - What is the value of the transaction send in as wei
* @param tokensSold - how much tokens have been sold this far
* @param weiRaised - how much money has been raised this far
* @param msgSender - who is the investor of this transaction
* @param decimals - how many decimal units the token has
* @return Amount of tokens the investor receives
*/
function calculatePrice(uint value, uint weiRaised, uint tokensSold, address msgSender, uint decimals) public constant returns (uint tokenAmount);
}
/**
* Finalize agent defines what happens at the end of succeseful crowdsale.
*
* - Allocate tokens for founders, bounties and community
* - Make tokens transferable
* - etc.
*/
contract FinalizeAgent {
function isFinalizeAgent() public constant returns(bool) {
return true;
}
/** Return true if we can run finalizeCrowdsale() properly.
*
* This is a safety check function that doesn't allow crowdsale to begin
* unless the finalizer has been set up properly.
*/
function isSane() public constant returns (bool);
/** Called once by crowdsale finalize() if the sale was success. */
function finalizeCrowdsale();
}
/*
* ERC20 interface
* see https://github.com/ethereum/EIPs/issues/20
*/
contract ERC20 {
uint public totalSupply;
function balanceOf(address who) constant returns (uint);
function allowance(address owner, address spender) constant returns (uint);
function transfer(address to, uint value) returns (bool ok);
function transferFrom(address from, address to, uint value) returns (bool ok);
function approve(address spender, uint value) returns (bool ok);
event Transfer(address indexed from, address indexed to, uint value);
event Approval(address indexed owner, address indexed spender, uint value);
}
/**
* A token that defines fractional units as decimals.
*/
contract FractionalERC20 is ERC20 {
uint public decimals;
}
/**
* Abstract base contract for token sales.
*
* Handle
* - start and end dates
* - accepting investments
* - minimum funding goal and refund
* - various statistics during the crowdfund
* - different pricing strategies
* - different investment policies (require server side customer id, allow only whitelisted addresses)
*
*/
contract Crowdsale is Haltable {
/* Max investment count when we are still allowed to change the multisig address */
uint public MAX_INVESTMENTS_BEFORE_MULTISIG_CHANGE = 5;
using SafeMathLib for uint;
/* The token we are selling */
FractionalERC20 public token;
/* How we are going to price our offering */
PricingStrategy public pricingStrategy;
/* Post-success callback */
FinalizeAgent public finalizeAgent;
/* tokens will be transfered from this address */
address public multisigWallet;
/* if the funding goal is not reached, investors may withdraw their funds */
uint public minimumFundingGoal;
/* the UNIX timestamp start date of the crowdsale */
uint public startsAt;
/* the UNIX timestamp end date of the crowdsale */
uint public endsAt;
/* the number of tokens already sold through this contract*/
uint public tokensSold = 0;
/* How many wei of funding we have raised */
uint public weiRaised = 0;
/* How many distinct addresses have invested */
uint public investorCount = 0;
/* How much wei we have returned back to the contract after a failed crowdfund. */
uint public loadedRefund = 0;
/* How much wei we have given back to investors.*/
uint public weiRefunded = 0;
/* Has this crowdsale been finalized */
bool public finalized;
/* Do we need to have unique contributor id for each customer */
bool public requireCustomerId;
/**
* Do we verify that contributor has been cleared on the server side (accredited investors only).
* This method was first used in FirstBlood crowdsale to ensure all contributors have accepted terms on sale (on the web).
*/
bool public requiredSignedAddress;
/* Server side address that signed allowed contributors (Ethereum addresses) that can participate the crowdsale */
address public signerAddress;
/** How much ETH each address has invested to this crowdsale */
mapping (address => uint256) public investedAmountOf;
/** How much tokens this crowdsale has credited for each investor address */
mapping (address => uint256) public tokenAmountOf;
/** Addresses that are allowed to invest even before ICO offical opens. For testing, for ICO partners, etc. */
mapping (address => bool) public earlyParticipantWhitelist;
/** This is for manul testing for the interaction from owner wallet. You can set it to any value and inspect this in blockchain explorer to see that crowdsale interaction works. */
uint public ownerTestValue;
/** State machine
*
* - Preparing: All contract initialization calls and variables have not been set yet
* - Prefunding: We have not passed start time yet
* - Funding: Active crowdsale
* - Success: Minimum funding goal reached
* - Failure: Minimum funding goal not reached before ending time
* - Finalized: The finalized has been called and succesfully executed
* - Refunding: Refunds are loaded on the contract for reclaim.
*/
enum State{Unknown, Preparing, PreFunding, Funding, Success, Failure, Finalized, Refunding}
// A new investment was made
event Invested(address investor, uint weiAmount, uint tokenAmount, uint128 customerId);
// Refund was processed for a contributor
event Refund(address investor, uint weiAmount);
// The rules were changed what kind of investments we accept
event InvestmentPolicyChanged(bool requireCustomerId, bool requiredSignedAddress, address signerAddress);
// Address early participation whitelist status changed
event Whitelisted(address addr, bool status);
// Crowdsale end time has been changed
event EndsAtChanged(uint endsAt);
function Crowdsale(address _token, PricingStrategy _pricingStrategy, address _multisigWallet, uint _start, uint _end, uint _minimumFundingGoal) {
owner = msg.sender;
token = FractionalERC20(_token);
setPricingStrategy(_pricingStrategy);
multisigWallet = _multisigWallet;
if(multisigWallet == 0) {
throw;
}
if(_start == 0) {
throw;
}
startsAt = _start;
if(_end == 0) {
throw;
}
endsAt = _end;
// Don't mess the dates
if(startsAt >= endsAt) {
throw;
}
// Minimum funding goal can be zero
minimumFundingGoal = _minimumFundingGoal;
}
/**
* Don't expect to just send in money and get tokens.
*/
function() payable {
throw;
}
/**
* Make an investment.
*
* Crowdsale must be running for one to invest.
* We must have not pressed the emergency brake.
*
* @param receiver The Ethereum address who receives the tokens
* @param customerId (optional) UUID v4 to track the successful payments on the server side
*
*/
function investInternal(address receiver, uint128 customerId) stopInEmergency private {
// Determine if it's a good time to accept investment from this participant
if(getState() == State.PreFunding) {
// Are we whitelisted for early deposit
if(!earlyParticipantWhitelist[receiver]) {
throw;
}
} else if(getState() == State.Funding) {
// Retail participants can only come in when the crowdsale is running
// pass
} else {
// Unwanted state
throw;
}
uint weiAmount = msg.value;
uint tokenAmount = pricingStrategy.calculatePrice(weiAmount, weiRaised, tokensSold, msg.sender, token.decimals());
if(tokenAmount == 0) {
// Dust transaction
throw;
}
if(investedAmountOf[receiver] == 0) {
// A new investor
investorCount++;
}
// Update investor
investedAmountOf[receiver] = investedAmountOf[receiver].plus(weiAmount);
tokenAmountOf[receiver] = tokenAmountOf[receiver].plus(tokenAmount);
// Update totals
weiRaised = weiRaised.plus(weiAmount);
tokensSold = tokensSold.plus(tokenAmount);
// Check that we did not bust the cap
if(isBreakingCap(weiAmount, tokenAmount, weiRaised, tokensSold)) {
throw;
}
assignTokens(receiver, tokenAmount);
// Pocket the money
if(!multisigWallet.send(weiAmount)) throw;
// Tell us invest was success
Invested(receiver, weiAmount, tokenAmount, customerId);
}
/**
* Preallocate tokens for the early investors.
*
* Preallocated tokens have been sold before the actual crowdsale opens.
* This function mints the tokens and moves the crowdsale needle.
*
* Investor count is not handled; it is assumed this goes for multiple investors
* and the token distribution happens outside the smart contract flow.
*
* No money is exchanged, as the crowdsale team already have received the payment.
*
* @param fullTokens tokens as full tokens - decimal places added internally
* @param weiPrice Price of a single full token in wei
*
*/
function preallocate(address receiver, uint fullTokens, uint weiPrice) public onlyOwner {
uint tokenAmount = fullTokens * 10**token.decimals();
uint weiAmount = weiPrice * fullTokens; // This can be also 0, we give out tokens for free
weiRaised = weiRaised.plus(weiAmount);
tokensSold = tokensSold.plus(tokenAmount);
investedAmountOf[receiver] = investedAmountOf[receiver].plus(weiAmount);
tokenAmountOf[receiver] = tokenAmountOf[receiver].plus(tokenAmount);
assignTokens(receiver, tokenAmount);
// Tell us invest was success
Invested(receiver, weiAmount, tokenAmount, 0);
}
/**
* Allow anonymous contributions to this crowdsale.
*/
function investWithSignedAddress(address addr, uint128 customerId, uint8 v, bytes32 r, bytes32 s) public payable {
bytes32 hash = sha256(addr);
if (ecrecover(hash, v, r, s) != signerAddress) throw;
if(customerId == 0) throw; // UUIDv4 sanity check
investInternal(addr, customerId);
}
/**
* Track who is the customer making the payment so we can send thank you email.
*/
function investWithCustomerId(address addr, uint128 customerId) public payable {
if(requiredSignedAddress) throw; // Crowdsale allows only server-side signed participants
if(customerId == 0) throw; // UUIDv4 sanity check
investInternal(addr, customerId);
}
/**
* Allow anonymous contributions to this crowdsale.
*/
function invest(address addr) public payable {
if(requireCustomerId) throw; // Crowdsale needs to track partipants for thank you email
if(requiredSignedAddress) throw; // Crowdsale allows only server-side signed participants
investInternal(addr, 0);
}
/**
* Invest to tokens, recognize the payer and clear his address.
*
*/
function buyWithSignedAddress(uint128 customerId, uint8 v, bytes32 r, bytes32 s) public payable {
investWithSignedAddress(msg.sender, customerId, v, r, s);
}
/**
* Invest to tokens, recognize the payer.
*
*/
function buyWithCustomerId(uint128 customerId) public payable {
investWithCustomerId(msg.sender, customerId);
}
/**
* The basic entry point to participate the crowdsale process.
*
* Pay for funding, get invested tokens back in the sender address.
*/
function buy() public payable {
invest(msg.sender);
}
/**
* Finalize a succcesful crowdsale.
*
* The owner can triggre a call the contract that provides post-crowdsale actions, like releasing the tokens.
*/
function finalize() public inState(State.Success) onlyOwner stopInEmergency {
// Already finalized
if(finalized) {
throw;
}
// Finalizing is optional. We only call it if we are given a finalizing agent.
if(address(finalizeAgent) != 0) {
finalizeAgent.finalizeCrowdsale();
}
finalized = true;
}
/**
* Allow to (re)set finalize agent.
*
* Design choice: no state restrictions on setting this, so that we can fix fat finger mistakes.
*/
function setFinalizeAgent(FinalizeAgent addr) onlyOwner {
finalizeAgent = addr;
// Don't allow setting bad agent
if(!finalizeAgent.isFinalizeAgent()) {
throw;
}
}
/**
* Set policy do we need to have server-side customer ids for the investments.
*
*/
function setRequireCustomerId(bool value) onlyOwner {
requireCustomerId = value;
InvestmentPolicyChanged(requireCustomerId, requiredSignedAddress, signerAddress);
}
/**
* Set policy if all investors must be cleared on the server side first.
*
* This is e.g. for the accredited investor clearing.
*
*/
function setRequireSignedAddress(bool value, address _signerAddress) onlyOwner {
requiredSignedAddress = value;
signerAddress = _signerAddress;
InvestmentPolicyChanged(requireCustomerId, requiredSignedAddress, signerAddress);
}
/**
* Allow addresses to do early participation.
*
* TODO: Fix spelling error in the name
*/
function setEarlyParicipantWhitelist(address addr, bool status) onlyOwner {
earlyParticipantWhitelist[addr] = status;
Whitelisted(addr, status);
}
/**
* Allow crowdsale owner to close early or extend the crowdsale.
*
* This is useful e.g. for a manual soft cap implementation:
* - after X amount is reached determine manual closing
*
* This may put the crowdsale to an invalid state,
* but we trust owners know what they are doing.
*
*/
function setEndsAt(uint time) onlyOwner {
if(now > time) {
throw; // Don't change past
}
endsAt = time;
EndsAtChanged(endsAt);
}
/**
* Allow to (re)set pricing strategy.
*
* Design choice: no state restrictions on the set, so that we can fix fat finger mistakes.
*/
function setPricingStrategy(PricingStrategy _pricingStrategy) onlyOwner {
pricingStrategy = _pricingStrategy;
// Don't allow setting bad agent
if(!pricingStrategy.isPricingStrategy()) {
throw;
}
}
/**
* Allow to change the team multisig address in the case of emergency.
*
* This allows to save a deployed crowdsale wallet in the case the crowdsale has not yet begun
* (we have done only few test transactions). After the crowdsale is going
* then multisig address stays locked for the safety reasons.
*/
function setMultisig(address addr) public onlyOwner {
// Change
if(investorCount > MAX_INVESTMENTS_BEFORE_MULTISIG_CHANGE) {
throw;
}
multisigWallet = addr;
}
/**
* Allow load refunds back on the contract for the refunding.
*
* The team can transfer the funds back on the smart contract in the case the minimum goal was not reached..
*/
function loadRefund() public payable inState(State.Failure) {
if(msg.value == 0) throw;
loadedRefund = loadedRefund.plus(msg.value);
}
/**
* Investors can claim refund.
*
* Note that any refunds from proxy buyers should be handled separately,
* and not through this contract.
*/
function refund() public inState(State.Refunding) {
uint256 weiValue = investedAmountOf[msg.sender];
if (weiValue == 0) throw;
investedAmountOf[msg.sender] = 0;
weiRefunded = weiRefunded.plus(weiValue);
Refund(msg.sender, weiValue);
if (!msg.sender.send(weiValue)) throw;
}
/**
* @return true if the crowdsale has raised enough money to be a successful.
*/
function isMinimumGoalReached() public constant returns (bool reached) {
return weiRaised >= minimumFundingGoal;
}
/**
* Check if the contract relationship looks good.
*/
function isFinalizerSane() public constant returns (bool sane) {
return finalizeAgent.isSane();
}
/**
* Check if the contract relationship looks good.
*/
function isPricingSane() public constant returns (bool sane) {
return pricingStrategy.isSane(address(this));
}
/**
* Crowdfund state machine management.
*
* We make it a function and do not assign the result to a variable, so there is no chance of the variable being stale.
*/
function getState() public constant returns (State) {
if(finalized) return State.Finalized;
else if (address(finalizeAgent) == 0) return State.Preparing;
else if (!finalizeAgent.isSane()) return State.Preparing;
else if (!pricingStrategy.isSane(address(this))) return State.Preparing;
else if (block.timestamp < startsAt) return State.PreFunding;
else if (block.timestamp <= endsAt && !isCrowdsaleFull()) return State.Funding;
else if (isMinimumGoalReached()) return State.Success;
else if (!isMinimumGoalReached() && weiRaised > 0 && loadedRefund >= weiRaised) return State.Refunding;
else return State.Failure;
}
/** This is for manual testing of multisig wallet interaction */
function setOwnerTestValue(uint val) onlyOwner {
ownerTestValue = val;
}
/** Interface marker. */
function isCrowdsale() public constant returns (bool) {
return true;
}
//
// Modifiers
//
/** Modified allowing execution only if the crowdsale is currently running. */
modifier inState(State state) {
if(getState() != state) throw;
_;
}
//
// Abstract functions
//
/**
* Check if the current invested breaks our cap rules.
*
*
* The child contract must define their own cap setting rules.
* We allow a lot of flexibility through different capping strategies (ETH, token count)
* Called from invest().
*
* @param weiAmount The amount of wei the investor tries to invest in the current transaction
* @param tokenAmount The amount of tokens we try to give to the investor in the current transaction
* @param weiRaisedTotal What would be our total raised balance after this transaction
* @param tokensSoldTotal What would be our total sold tokens count after this transaction
*
* @return true if taking this investment would break our cap rules
*/
function isBreakingCap(uint weiAmount, uint tokenAmount, uint weiRaisedTotal, uint tokensSoldTotal) constant returns (bool limitBroken);
/**
* Check if the current crowdsale is full and we can no longer sell any tokens.
*/
function isCrowdsaleFull() public constant returns (bool);
/**
* Create new tokens or transfer issued tokens to the investor depending on the cap model.
*/
function assignTokens(address receiver, uint tokenAmount) private;
}
/**
* Math operations with safety checks
*/
contract SafeMath {
function safeMul(uint a, uint b) internal returns (uint) {
uint c = a * b;
assert(a == 0 || c / a == b);
return c;
}
function safeDiv(uint a, uint b) internal returns (uint) {
assert(b > 0);
uint c = a / b;
assert(a == b * c + a % b);
return c;
}
function safeSub(uint a, uint b) internal returns (uint) {
assert(b <= a);
return a - b;
}
function safeAdd(uint a, uint b) internal returns (uint) {
uint c = a + b;
assert(c>=a && c>=b);
return c;
}
function max64(uint64 a, uint64 b) internal constant returns (uint64) {
return a >= b ? a : b;
}
function min64(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 min256(uint256 a, uint256 b) internal constant returns (uint256) {
return a < b ? a : b;
}
function assert(bool assertion) internal {
if (!assertion) {
throw;
}
}
}
/**
* Standard ERC20 token with Short Hand Attack and approve() race condition mitigation.
*
* Based on code by FirstBlood:
* https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
*/
contract StandardToken is ERC20, SafeMath {
/* Token supply got increased and a new owner received these tokens */
event Minted(address receiver, uint amount);
/* Actual balances of token holders */
mapping(address => uint) balances;
/* approve() allowances */
mapping (address => mapping (address => uint)) allowed;
/* Interface declaration */
function isToken() public constant returns (bool weAre) {
return true;
}
/**
*
* Fix for the ERC20 short address attack
*
* http://vessenes.com/the-erc20-short-address-attack-explained/
*/
modifier onlyPayloadSize(uint size) {
if(msg.data.length < size + 4) {
throw;
}
_;
}
function transfer(address _to, uint _value) onlyPayloadSize(2 * 32) returns (bool success) {
balances[msg.sender] = safeSub(balances[msg.sender], _value);
balances[_to] = safeAdd(balances[_to], _value);
Transfer(msg.sender, _to, _value);
return true;
}
function transferFrom(address _from, address _to, uint _value) returns (bool success) {
uint _allowance = allowed[_from][msg.sender];
balances[_to] = safeAdd(balances[_to], _value);
balances[_from] = safeSub(balances[_from], _value);
allowed[_from][msg.sender] = safeSub(_allowance, _value);
Transfer(_from, _to, _value);
return true;
}
function balanceOf(address _owner) constant returns (uint balance) {
return balances[_owner];
}
function approve(address _spender, uint _value) returns (bool success) {
// 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
if ((_value != 0) && (allowed[msg.sender][_spender] != 0)) throw;
allowed[msg.sender][_spender] = _value;
Approval(msg.sender, _spender, _value);
return true;
}
function allowance(address _owner, address _spender) constant returns (uint remaining) {
return allowed[_owner][_spender];
}
}
/**
* A token that can increase its supply by another contract.
*
* This allows uncapped crowdsale by dynamically increasing the supply when money pours in.
* Only mint agents, contracts whitelisted by owner, can mint new tokens.
*
*/
contract MintableToken is StandardToken, Ownable {
using SafeMathLib for uint;
bool public mintingFinished = false;
/** List of agents that are allowed to create new tokens */
mapping (address => bool) public mintAgents;
event MintingAgentChanged(address addr, bool state );
/**
* Create new tokens and allocate them to an address..
*
* Only callably by a crowdsale contract (mint agent).
*/
function mint(address receiver, uint amount) onlyMintAgent canMint public {
totalSupply = totalSupply.plus(amount);
balances[receiver] = balances[receiver].plus(amount);
// This will make the mint transaction apper in EtherScan.io
// We can remove this after there is a standardized minting event
Transfer(0, receiver, amount);
}
/**
* Owner can allow a crowdsale contract to mint new tokens.
*/
function setMintAgent(address addr, bool state) onlyOwner canMint public {
mintAgents[addr] = state;
MintingAgentChanged(addr, state);
}
modifier onlyMintAgent() {
// Only crowdsale contracts are allowed to mint new tokens
if(!mintAgents[msg.sender]) {
throw;
}
_;
}
/** Make sure we are not done yet. */
modifier canMint() {
if(mintingFinished) throw;
_;
}
}
/**
* ICO crowdsale contract that is capped by amout of tokens.
*
* - Tokens are dynamically created during the crowdsale
*
*
*/
contract MintedTokenCappedCrowdsale is Crowdsale {
/* Maximum amount of tokens this crowdsale can sell. */
uint public maximumSellableTokens;
function MintedTokenCappedCrowdsale(address _token, PricingStrategy _pricingStrategy, address _multisigWallet, uint _start, uint _end, uint _minimumFundingGoal, uint _maximumSellableTokens) Crowdsale(_token, _pricingStrategy, _multisigWallet, _start, _end, _minimumFundingGoal) {
maximumSellableTokens = _maximumSellableTokens;
}
/**
* Called from invest() to confirm if the curret investment does not break our cap rule.
*/
function isBreakingCap(uint weiAmount, uint tokenAmount, uint weiRaisedTotal, uint tokensSoldTotal) constant returns (bool limitBroken) {
return tokensSoldTotal > maximumSellableTokens;
}
function isCrowdsaleFull() public constant returns (bool) {
return tokensSold >= maximumSellableTokens;
}
/**
* Dynamically create tokens and assign them to the investor.
*/
function assignTokens(address receiver, uint tokenAmount) private {
MintableToken mintableToken = MintableToken(token);
mintableToken.mint(receiver, tokenAmount);
}
}
/**
* A crowdsale that retains the previous token, but changes some parameters.
*
* Investor data can be manually fed in.
*
* Mostly useful as a hot fix.
*
*/
contract RelaunchedCrowdsale is MintedTokenCappedCrowdsale {
// This transaction was restored from a previous crowdsale
event RestoredInvestment(address addr, uint originalTxHash);
mapping(uint => bool) public reissuedTransactions;
function RelaunchedCrowdsale(address _token, PricingStrategy _pricingStrategy, address _multisigWallet, uint _start, uint _end, uint _minimumFundingGoal, uint _maximumSellableTokens) MintedTokenCappedCrowdsale(_token, _pricingStrategy, _multisigWallet, _start, _end, _minimumFundingGoal, _maximumSellableTokens) {
}
/**
* Check if a particular transaction has already been written.
*/
function getRestoredTransactionStatus(uint _originalTxHash) public constant returns(bool) {
return reissuedTransactions[_originalTxHash];
}
/**
* Rebuild the previous invest data back to the crowdsale.
*/
function setInvestorData(address _addr, uint _weiAmount, uint _tokenAmount, uint _originalTxHash) onlyOwner public {
if(investedAmountOf[_addr] == 0) {
investorCount++;
}
investedAmountOf[_addr] += _weiAmount;
tokenAmountOf[_addr] += _tokenAmount;
weiRaised += _weiAmount;
tokensSold += _tokenAmount;
Invested(_addr, _weiAmount, _tokenAmount, 0);
RestoredInvestment(_addr, _originalTxHash);
}
/**
* Rebuild the previous invest data and do a token reissuance.
*/
function setInvestorDataAndIssueNewToken(address _addr, uint _weiAmount, uint _tokenAmount, uint _originalTxHash) onlyOwner public {
// This transaction has already been rebuild
if(reissuedTransactions[_originalTxHash]) {
throw;
}
setInvestorData(_addr, _weiAmount, _tokenAmount, _originalTxHash);
// Check that we did not bust the cap in the restoration process
if(isBreakingCap(_weiAmount, _tokenAmount, weiRaised, tokensSold)) {
throw;
}
// Mark transaction processed
reissuedTransactions[_originalTxHash] = true;
// Mint new token to give it to the original investor
MintableToken mintableToken = MintableToken(token);
mintableToken.mint(_addr, _tokenAmount);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"constant":true,"inputs":[],"name":"ownerTestValue","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"requireCustomerId","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"addr","type":"address"}],"name":"invest","outputs":[],"payable":true,"type":"function"},{"constant":true,"inputs":[],"name":"isPricingSane","outputs":[{"name":"sane","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"endsAt","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"minimumFundingGoal","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_addr","type":"address"},{"name":"_weiAmount","type":"uint256"},{"name":"_tokenAmount","type":"uint256"},{"name":"_originalTxHash","type":"uint256"}],"name":"setInvestorData","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"getState","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"addr","type":"address"}],"name":"setFinalizeAgent","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"addr","type":"address"},{"name":"customerId","type":"uint128"},{"name":"v","type":"uint8"},{"name":"r","type":"bytes32"},{"name":"s","type":"bytes32"}],"name":"investWithSignedAddress","outputs":[],"payable":true,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"investedAmountOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"finalizeAgent","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"receiver","type":"address"},{"name":"fullTokens","type":"uint256"},{"name":"weiPrice","type":"uint256"}],"name":"preallocate","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"maximumSellableTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"weiRaised","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"isCrowdsale","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"finalize","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_pricingStrategy","type":"address"}],"name":"setPricingStrategy","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokensSold","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"refund","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"signerAddress","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"reissuedTransactions","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"weiRefunded","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"halt","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"MAX_INVESTMENTS_BEFORE_MULTISIG_CHANGE","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"time","type":"uint256"}],"name":"setEndsAt","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"pricingStrategy","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"loadedRefund","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"isMinimumGoalReached","outputs":[{"name":"reached","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"value","type":"bool"}],"name":"setRequireCustomerId","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"loadRefund","outputs":[],"payable":true,"type":"function"},{"constant":false,"inputs":[{"name":"val","type":"uint256"}],"name":"setOwnerTestValue","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"multisigWallet","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"tokenAmountOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"customerId","type":"uint128"}],"name":"buyWithCustomerId","outputs":[],"payable":true,"type":"function"},{"constant":true,"inputs":[{"name":"weiAmount","type":"uint256"},{"name":"tokenAmount","type":"uint256"},{"name":"weiRaisedTotal","type":"uint256"},{"name":"tokensSoldTotal","type":"uint256"}],"name":"isBreakingCap","outputs":[{"name":"limitBroken","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"buy","outputs":[],"payable":true,"type":"function"},{"constant":true,"inputs":[],"name":"isFinalizerSane","outputs":[{"name":"sane","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"startsAt","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"finalized","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"halted","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"earlyParticipantWhitelist","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"unhalt","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"requiredSignedAddress","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"isCrowdsaleFull","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"investorCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"addr","type":"address"},{"name":"status","type":"bool"}],"name":"setEarlyParicipantWhitelist","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_originalTxHash","type":"uint256"}],"name":"getRestoredTransactionStatus","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"value","type":"bool"},{"name":"_signerAddress","type":"address"}],"name":"setRequireSignedAddress","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"addr","type":"address"},{"name":"customerId","type":"uint128"}],"name":"investWithCustomerId","outputs":[],"payable":true,"type":"function"},{"constant":false,"inputs":[{"name":"_addr","type":"address"},{"name":"_weiAmount","type":"uint256"},{"name":"_tokenAmount","type":"uint256"},{"name":"_originalTxHash","type":"uint256"}],"name":"setInvestorDataAndIssueNewToken","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"addr","type":"address"}],"name":"setMultisig","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"customerId","type":"uint128"},{"name":"v","type":"uint8"},{"name":"r","type":"bytes32"},{"name":"s","type":"bytes32"}],"name":"buyWithSignedAddress","outputs":[],"payable":true,"type":"function"},{"constant":true,"inputs":[],"name":"token","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"inputs":[{"name":"_token","type":"address"},{"name":"_pricingStrategy","type":"address"},{"name":"_multisigWallet","type":"address"},{"name":"_start","type":"uint256"},{"name":"_end","type":"uint256"},{"name":"_minimumFundingGoal","type":"uint256"},{"name":"_maximumSellableTokens","type":"uint256"}],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"addr","type":"address"},{"indexed":false,"name":"originalTxHash","type":"uint256"}],"name":"RestoredInvestment","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"investor","type":"address"},{"indexed":false,"name":"weiAmount","type":"uint256"},{"indexed":false,"name":"tokenAmount","type":"uint256"},{"indexed":false,"name":"customerId","type":"uint128"}],"name":"Invested","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"investor","type":"address"},{"indexed":false,"name":"weiAmount","type":"uint256"}],"name":"Refund","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"requireCustomerId","type":"bool"},{"indexed":false,"name":"requiredSignedAddress","type":"bool"},{"indexed":false,"name":"signerAddress","type":"address"}],"name":"InvestmentPolicyChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"addr","type":"address"},{"indexed":false,"name":"status","type":"bool"}],"name":"Whitelisted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"endsAt","type":"uint256"}],"name":"EndsAtChanged","type":"event"}]Contract Creation Code
6060604052600560015560006009556000600a556000600b556000600c556000600d5534620000005760405160e0806200233683398101604090815281516020830151918301516060840151608085015160a086015160c09096015193959293919290915b868686868686865b8686868686865b5b60008054600160a060020a03191633600160a060020a03161790555b60008054600160a060020a03338116600160a060020a0319928316179092556002805492891692909116919091179055620000d985640100000000620012da6200016682021704565b60058054600160a060020a031916600160a060020a038681169190911791829055161515620001085762000000565b821515620001165762000000565b6007839055811515620001295762000000565b60088290556007548290106200013f5762000000565b60068190555b50505060138490555050505b505050505050505b505050505050506200021f565b60005433600160a060020a03908116911614620001835762000000565b60038054600160a060020a031916600160a060020a038381169190911791829055604080516000602091820181905282517f04bbc255000000000000000000000000000000000000000000000000000000008152925194909316936304bbc255936004808501948390030190829087803b15620000005760325a03f1156200000057505060405151151590506200021a5762000000565b5b5b50565b612107806200022f6000396000f300606060405236156102825763ffffffff60e060020a6000350416630226401d811461028f57806303ca0eed146102ae57806303f9c793146102cf578063062b01ce146102e55780630a09284a1461030657806313f4e9771461032557806316164e15146103445780631865c57d1461036857806319b667da146103965780631a49803b146103b15780631aae3460146103df57806321d5c0f61461040a57806332013ac3146104335780633ad075ea146104545780634042b66f146104735780634551dd59146104925780634bb278f3146104b357806350c67734146104c2578063518ab2a8146104dd578063590e1ae3146104fc5780635b7633d01461050b5780635d2fea9d146105345780635da89ac0146105585780635ed7ca5b146105775780636203f09f146105865780636e50eb3f146105a557806378b99c24146105b7578063797d9437146105e05780637c2e08a3146105ff5780637f7d711e1461062057806387612102146106345780638d51faec1461063e5780638da5cb5b146106505780639075becf1461067957806397b150ca146106a257806399e9376c146106cd5780639d3c663f146106e3578063a6f2ae3a14610710578063a7ba44c31461071a578063af4686821461073b578063b3f05b971461075a578063b9b8af0b1461077b578063cb16e6d01461079c578063cb3e64fd146107c9578063d222dc04146107d8578063d5d09021146107f9578063d7e64c001461081a578063eac2493214610839578063ed2f5b1a14610859578063ed68ff2c1461087d578063ef8694431461089d578063f04cb80c146108bf578063f2fde38b146108e3578063f3283fba146108fe578063f486972614610919578063fc0c546a1461093b575b61028d5b610000565b565b005b346100005761029c610964565b60408051918252519081900360200190f35b34610000576102bb61096a565b604080519115158252519081900360200190f35b61028d600160a060020a0360043516610978565b005b34610000576102bb6109b2565b604080519115158252519081900360200190f35b346100005761029c610a1e565b60408051918252519081900360200190f35b346100005761029c610a24565b60408051918252519081900360200190f35b346100005761028d600160a060020a0360043516602435604435606435610a2a565b005b3461000057610375610b3c565b6040518082600781116100005760ff16815260200191505060405180910390f35b346100005761028d600160a060020a0360043516610ceb565b005b61028d600160a060020a03600435166001608060020a036024351660ff60443516606435608435610d9f565b005b346100005761029c600160a060020a0360043516610eaa565b60408051918252519081900360200190f35b3461000057610417610ebc565b60408051600160a060020a039092168252519081900360200190f35b346100005761028d600160a060020a0360043516602435604435610ecb565b005b346100005761029c6111e1565b60408051918252519081900360200190f35b346100005761029c6111e7565b60408051918252519081900360200190f35b34610000576102bb6111ed565b604080519115158252519081900360200190f35b346100005761028d6111f3565b005b346100005761028d600160a060020a03600435166112da565b005b346100005761029c61138d565b60408051918252519081900360200190f35b346100005761028d611393565b005b34610000576104176114de565b60408051600160a060020a039092168252519081900360200190f35b34610000576102bb6004356114f4565b604080519115158252519081900360200190f35b346100005761029c611509565b60408051918252519081900360200190f35b346100005761028d61150f565b005b346100005761029c611552565b60408051918252519081900360200190f35b346100005761028d600435611558565b005b34610000576104176115bd565b60408051600160a060020a039092168252519081900360200190f35b346100005761029c6115cc565b60408051918252519081900360200190f35b34610000576102bb6115d2565b604080519115158252519081900360200190f35b346100005761028d60043515156115de565b005b61028d611678565b005b346100005761028d60043561171a565b005b346100005761041761173f565b60408051600160a060020a039092168252519081900360200190f35b346100005761041761174e565b60408051600160a060020a039092168252519081900360200190f35b346100005761029c600160a060020a036004351661175d565b60408051918252519081900360200190f35b61028d6001608060020a036004351661176f565b005b34610000576102bb60043560243560443560643561177d565b604080519115158252519081900360200190f35b61028d61178b565b005b34610000576102bb611797565b604080519115158252519081900360200190f35b346100005761029c611808565b60408051918252519081900360200190f35b34610000576102bb61180e565b604080519115158252519081900360200190f35b34610000576102bb611817565b604080519115158252519081900360200190f35b34610000576102bb600160a060020a0360043516611827565b604080519115158252519081900360200190f35b346100005761028d61183c565b005b34610000576102bb611892565b604080519115158252519081900360200190f35b34610000576102bb6118a1565b604080519115158252519081900360200190f35b346100005761029c6118ad565b60408051918252519081900360200190f35b346100005761028d600160a060020a036004351660243515156118b3565b005b34610000576102bb600435611934565b604080519115158252519081900360200190f35b346100005761028d6004351515600160a060020a036024351661194c565b005b61028d600160a060020a03600435166001608060020a0360243516611a0a565b005b346100005761028d600160a060020a0360043516602435604435606435611a44565b005b346100005761028d600160a060020a0360043516611b21565b005b346100005761028d600160a060020a0360043516611b6c565b005b61028d6001608060020a036004351660ff60243516604435606435611bb8565b005b3461000057610417611bcc565b60408051600160a060020a039092168252519081900360200190f35b60125481565b600e54610100900460ff1681565b600e54610100900460ff161561098d57610000565b600e5462010000900460ff16156109a357610000565b6109ae816000611bdb565b5b50565b6003546040805160006020918201819052825160e360020a6311ced051028152600160a060020a033081166004830152935191949390931692638e76828892602480830193919282900301818787803b156100005760325a03f115610000575050604051519150505b90565b60085481565b60065481565b60005433600160a060020a03908116911614610a4557610000565b600160a060020a0384166000908152600f60205260409020541515610a6e57600b805460010190555b600160a060020a0384166000818152600f6020908152604080832080548801905560108252808320805487019055600a805488019055600980548701905580519384529083018690528281018590526060830191909152517f0396f60aaad038749091d273dc13aaabc63db6e2271c7bad442d5cf25cc433509181900360800190a160408051600160a060020a03861681526020810183905281517f08b1adf3440f557bc3ad64e718e68b3656a43fdde2a00cbecf89765352b76cb6929181900390910190a15b5b50505050565b600e5460009060ff1615610b5257506006610a1b565b600454600160a060020a03161515610b6c57506001610a1b565b600460009054906101000a9004600160a060020a0316600160a060020a03166382771c8e6000604051602001526040518163ffffffff1660e060020a028152600401809050602060405180830381600087803b156100005760325a03f1156100005750506040515115159050610be457506001610a1b565b6003546040805160006020918201819052825160e360020a6311ced051028152600160a060020a03308116600483015293519390941693638e768288936024808301949391928390030190829087803b156100005760325a03f1156100005750506040515115159050610c5957506001610a1b565b600754421015610c6b57506002610a1b565b6008544211158015610c825750610c806118a1565b155b15610c8f57506003610a1b565b610c976115d2565b15610ca457506004610a1b565b610cac6115d2565b158015610cbb57506000600a54115b8015610ccb5750600a54600c5410155b15610cd857506007610a1b565b506005610a1b565b5b5b5b5b5b5b5b5b90565b60005433600160a060020a03908116911614610d0657610000565b60048054600160a060020a031916600160a060020a0383811691909117808355604080516000602091820181905282517f614cb9040000000000000000000000000000000000000000000000000000000081529251939094169463614cb9049483820194929383900390910190829087803b156100005760325a03f11561000057505060405151151590506109ae57610000565b5b5b50565b60006002866000604051602001526040518082600160a060020a0316600160a060020a03166c010000000000000000000000000281526014019150506020604051808303816000866161da5a03f115610000575050604080518051600e54600083815260208085018652938501819052845183815260ff8a16818601528086018990526060810188905294519295506301000000909104600160a060020a0316936001936080808301949193601f198301938390039091019190866161da5a03f115610000575050604051601f190151600160a060020a031614610e8257610000565b6001608060020a0385161515610e9757610000565b610ea18686611bdb565b5b505050505050565b600f6020526000908152604090205481565b600454600160a060020a031681565b60008054819033600160a060020a03908116911614610ee957610000565b600254604080516000602091820181905282517f313ce5670000000000000000000000000000000000000000000000000000000081529251600160a060020a039094169363313ce5679360048082019493918390030190829087803b156100005760325a03f1156100005750505060405180519050600a0a840291508383029050600a5473cda82e76457635faa151babd2d4ca3ee54db203f6366098d4f9091836000604051602001526040518363ffffffff1660e060020a028152600401808381526020018281526020019250505060206040518083038186803b156100005760325a03f415610000575050604080518051600a556009546000602092830152825160e060020a6366098d4f028152600481019190915260248101869052915173cda82e76457635faa151babd2d4ca3ee54db203f93506366098d4f926044808201939291829003018186803b156100005760325a03f415610000575050604080518051600955600160a060020a0388166000908152600f60209081528382205492810191909152825160e060020a6366098d4f028152600481019290925260248201859052915173cda82e76457635faa151babd2d4ca3ee54db203f93506366098d4f92604480840193919291829003018186803b156100005760325a03f415610000575050604080518051600160a060020a0389166000908152600f602090815284822092909255601082528381205492820152825160e060020a6366098d4f028152600481019290925260248201869052915173cda82e76457635faa151babd2d4ca3ee54db203f93506366098d4f92604480840193919291829003018186803b156100005760325a03f4156100005750506040805151600160a060020a038816600090815260106020529190912055506111888583612074565b60408051600160a060020a0387168152602081018390528082018490526000606082015290517f0396f60aaad038749091d273dc13aaabc63db6e2271c7bad442d5cf25cc433509181900360800190a15b5b5050505050565b60135481565b600a5481565b60015b90565b6004806111fe610b3c565b60078111610000571461121057610000565b60005433600160a060020a0390811691161461122b57610000565b60005460a060020a900460ff161561124257610000565b600e5460ff161561125257610000565b600454600160a060020a0316156112c65760048054604080517f0bf318a30000000000000000000000000000000000000000000000000000000081529051600160a060020a0390921692630bf318a392828201926000929082900301818387803b156100005760325a03f115610000575050505b600e805460ff191660011790555b5b5b5b50565b60005433600160a060020a039081169116146112f557610000565b60038054600160a060020a031916600160a060020a038381169190911791829055604080516000602091820181905282517f04bbc255000000000000000000000000000000000000000000000000000000008152925194909316936304bbc255936004808501948390030190829087803b156100005760325a03f11561000057505060405151151590506109ae57610000565b5b5b50565b60095481565b60006007806113a0610b3c565b6007811161000057146113b257610000565b600160a060020a0333166000908152600f602052604090205491508115156113d957610000565b600160a060020a0333166000908152600f60209081526040808320839055600d548151830193909352805160e060020a6366098d4f0281526004810193909352602483018590525173cda82e76457635faa151babd2d4ca3ee54db203f926366098d4f926044808301939192829003018186803b156100005760325a03f415610000575050604080518051600d55600160a060020a03331681526020810185905281517fbb28353e4598c3b9199101a66e0989549b659a59a54d2c27fbb183f1932c8e6d93509081900390910190a1604051600160a060020a0333169083156108fc029084906000818181858888f1935050505015156114d857610000565b5b5b5050565b600e5463010000009004600160a060020a031681565b60146020526000908152604090205460ff1681565b600d5481565b60005433600160a060020a0390811691161461152a57610000565b6000805474ff0000000000000000000000000000000000000000191660a060020a1790555b5b565b60015481565b60005433600160a060020a0390811691161461157357610000565b8042111561158057610000565b60088190556040805182815290517fd34bb772c4ae9baa99db852f622773b31c7827e8ee818449fef20d30980bd3109181900360200190a15b5b50565b600354600160a060020a031681565b600c5481565b600654600a5410155b90565b60005433600160a060020a039081169116146115f957610000565b600e805461ff001916610100831515810291909117918290556040805160ff928404831615158152620100008404909216151560208301526301000000909204600160a060020a03168183015290517f48d826081348f5f00e8a33c9ae8ce89ed4c6e88400b585a478bc203d9e8177d3916060908290030190a15b5b50565b600580611683610b3c565b60078111610000571461169557610000565b3415156116a157610000565b600c5473cda82e76457635faa151babd2d4ca3ee54db203f6366098d4f9091346000604051602001526040518363ffffffff1660e060020a028152600401808381526020018281526020019250505060206040518083038186803b156100005760325a03f41561000057505060405151600c55505b5b50565b60005433600160a060020a0390811691161461173557610000565b60128190555b5b50565b600054600160a060020a031681565b600554600160a060020a031681565b60106020526000908152604090205481565b6109ae3382611a0a565b5b50565b60135481115b949350505050565b61028b33610978565b5b565b6000600460009054906101000a9004600160a060020a0316600160a060020a03166382771c8e6000604051602001526040518163ffffffff1660e060020a028152600401809050602060405180830381600087803b156100005760325a03f115610000575050604051519150505b90565b60075481565b600e5460ff1681565b60005460a060020a900460ff1681565b60116020526000908152604090205460ff1681565b60005433600160a060020a0390811691161461185757610000565b60005460a060020a900460ff16151561186f57610000565b6000805474ff0000000000000000000000000000000000000000191690555b5b5b565b600e5462010000900460ff1681565b60135460095410155b90565b600b5481565b60005433600160a060020a039081169116146118ce57610000565b600160a060020a038216600081815260116020908152604091829020805460ff191685151590811790915582519384529083015280517fa54714518c5d275fdcd3d2a461e4858e4e8cb04fb93cd0bca9d6d34115f264409281900390910190a15b5b5050565b60008181526014602052604090205460ff165b919050565b60005433600160a060020a0390811691161461196757610000565b600e805462ff000019166201000084151581029190911776ffffffffffffffffffffffffffffffffffffffff00000019166301000000600160a060020a03858116820292909217938490556040805160ff6101008704811615158252948604909416151560208501529304168183015290517f48d826081348f5f00e8a33c9ae8ce89ed4c6e88400b585a478bc203d9e8177d3916060908290030190a15b5b5050565b600e5462010000900460ff1615611a2057610000565b6001608060020a0381161515611a3557610000565b6114d88282611bdb565b5b5050565b6000805433600160a060020a03908116911614611a6057610000565b60008281526014602052604090205460ff1615611a7c57610000565b611a8885858585610a2a565b611a988484600a5460095461177d565b15611aa257610000565b50600081815260146020526040808220805460ff19166001179055600254815160e060020a6340c10f19028152600160a060020a038881166004830152602482018790529251929091169283926340c10f1992604480820193929182900301818387803b156100005760325a03f115610000575050505b5b5050505050565b60005433600160a060020a03908116911614611b3c57610000565b600160a060020a038116156109ae5760008054600160a060020a031916600160a060020a0383161790555b5b5b50565b60005433600160a060020a03908116911614611b8757610000565b600154600b541115611b9857610000565b60058054600160a060020a031916600160a060020a0383161790555b5b50565b610b353385858585610d9f565b5b50505050565b600254600160a060020a031681565b60008054819060a060020a900460ff1615611bf557610000565b6002611bff610b3c565b60078111610000571415611c3957600160a060020a03841660009081526011602052604090205460ff161515611c3457610000565b611c5b565b6003611c43610b3c565b6007811161000057141561028657611c5b565b610000565b5b349150600360009054906101000a9004600160a060020a0316600160a060020a03166318a4155e83600a5460095433600260009054906101000a9004600160a060020a0316600160a060020a031663313ce5676000604051602001526040518163ffffffff1660e060020a028152600401809050602060405180830381600087803b156100005760325a03f11561000057505050604051805190506000604051602001526040518663ffffffff1660e060020a0281526004018086815260200185815260200184815260200183600160a060020a0316600160a060020a0316815260200182815260200195505050505050602060405180830381600087803b156100005760325a03f11561000057505060405151915050801515611d7f57610000565b600160a060020a0384166000908152600f60205260409020541515611da857600b805460010190555b600160a060020a0384166000908152600f60209081526040808320548151830193909352805160e060020a6366098d4f0281526004810193909352602483018590525173cda82e76457635faa151babd2d4ca3ee54db203f926366098d4f926044808301939192829003018186803b156100005760325a03f415610000575050604080518051600160a060020a0388166000908152600f602090815284822092909255601082528381205492820152825160e060020a6366098d4f028152600481019290925260248201859052915173cda82e76457635faa151babd2d4ca3ee54db203f93506366098d4f92604480840193919291829003018186803b156100005760325a03f415610000575050604080518051600160a060020a03881660009081526010602090815284822092909255600a5492820152825160e060020a6366098d4f028152600481019290925260248201869052915173cda82e76457635faa151babd2d4ca3ee54db203f93506366098d4f92604480840193919291829003018186803b156100005760325a03f415610000575050604080518051600a556009546000602092830152825160e060020a6366098d4f028152600481019190915260248101859052915173cda82e76457635faa151babd2d4ca3ee54db203f93506366098d4f926044808201939291829003018186803b156100005760325a03f415610000575050604051516009819055600a54611fcc9250849184919061177d565b15611fd657610000565b611fe08482612074565b600554604051600160a060020a039091169083156108fc029084906000818181858888f19350505050151561201457610000565b60408051600160a060020a0386168152602081018490528082018390526001608060020a038516606082015290517f0396f60aaad038749091d273dc13aaabc63db6e2271c7bad442d5cf25cc433509181900360800190a15b5b50505050565b6002546040805160e060020a6340c10f19028152600160a060020a038581166004830152602482018590529151919092169182916340c10f199160448082019260009290919082900301818387803b156100005760325a03f115610000575050505b5050505600a165627a7a72305820f8f7e258e9826d30a4fc729c036de438da1f2c8041b8c58c63adb05d6c4502b70029000000000000000000000000b2e59493763d0d0be2634b2d1afe066914b0fcc2000000000000000000000000b6951dba8d2aa5156440bcc4ba1af82f12c55159000000000000000000000000e75cd82ada6200356a5a879b31d87c3c5e6f70d000000000000000000000000000000000000000000000000000000000593eba8000000000000000000000000000000000000000000000000000000000597ae0b4000000000000000000000000000000000000000000000056080c9bb6b0ec00000000000000000000000000000000000000000000000000000020aff6089c6f2e
Deployed Bytecode
0x606060405236156102825763ffffffff60e060020a6000350416630226401d811461028f57806303ca0eed146102ae57806303f9c793146102cf578063062b01ce146102e55780630a09284a1461030657806313f4e9771461032557806316164e15146103445780631865c57d1461036857806319b667da146103965780631a49803b146103b15780631aae3460146103df57806321d5c0f61461040a57806332013ac3146104335780633ad075ea146104545780634042b66f146104735780634551dd59146104925780634bb278f3146104b357806350c67734146104c2578063518ab2a8146104dd578063590e1ae3146104fc5780635b7633d01461050b5780635d2fea9d146105345780635da89ac0146105585780635ed7ca5b146105775780636203f09f146105865780636e50eb3f146105a557806378b99c24146105b7578063797d9437146105e05780637c2e08a3146105ff5780637f7d711e1461062057806387612102146106345780638d51faec1461063e5780638da5cb5b146106505780639075becf1461067957806397b150ca146106a257806399e9376c146106cd5780639d3c663f146106e3578063a6f2ae3a14610710578063a7ba44c31461071a578063af4686821461073b578063b3f05b971461075a578063b9b8af0b1461077b578063cb16e6d01461079c578063cb3e64fd146107c9578063d222dc04146107d8578063d5d09021146107f9578063d7e64c001461081a578063eac2493214610839578063ed2f5b1a14610859578063ed68ff2c1461087d578063ef8694431461089d578063f04cb80c146108bf578063f2fde38b146108e3578063f3283fba146108fe578063f486972614610919578063fc0c546a1461093b575b61028d5b610000565b565b005b346100005761029c610964565b60408051918252519081900360200190f35b34610000576102bb61096a565b604080519115158252519081900360200190f35b61028d600160a060020a0360043516610978565b005b34610000576102bb6109b2565b604080519115158252519081900360200190f35b346100005761029c610a1e565b60408051918252519081900360200190f35b346100005761029c610a24565b60408051918252519081900360200190f35b346100005761028d600160a060020a0360043516602435604435606435610a2a565b005b3461000057610375610b3c565b6040518082600781116100005760ff16815260200191505060405180910390f35b346100005761028d600160a060020a0360043516610ceb565b005b61028d600160a060020a03600435166001608060020a036024351660ff60443516606435608435610d9f565b005b346100005761029c600160a060020a0360043516610eaa565b60408051918252519081900360200190f35b3461000057610417610ebc565b60408051600160a060020a039092168252519081900360200190f35b346100005761028d600160a060020a0360043516602435604435610ecb565b005b346100005761029c6111e1565b60408051918252519081900360200190f35b346100005761029c6111e7565b60408051918252519081900360200190f35b34610000576102bb6111ed565b604080519115158252519081900360200190f35b346100005761028d6111f3565b005b346100005761028d600160a060020a03600435166112da565b005b346100005761029c61138d565b60408051918252519081900360200190f35b346100005761028d611393565b005b34610000576104176114de565b60408051600160a060020a039092168252519081900360200190f35b34610000576102bb6004356114f4565b604080519115158252519081900360200190f35b346100005761029c611509565b60408051918252519081900360200190f35b346100005761028d61150f565b005b346100005761029c611552565b60408051918252519081900360200190f35b346100005761028d600435611558565b005b34610000576104176115bd565b60408051600160a060020a039092168252519081900360200190f35b346100005761029c6115cc565b60408051918252519081900360200190f35b34610000576102bb6115d2565b604080519115158252519081900360200190f35b346100005761028d60043515156115de565b005b61028d611678565b005b346100005761028d60043561171a565b005b346100005761041761173f565b60408051600160a060020a039092168252519081900360200190f35b346100005761041761174e565b60408051600160a060020a039092168252519081900360200190f35b346100005761029c600160a060020a036004351661175d565b60408051918252519081900360200190f35b61028d6001608060020a036004351661176f565b005b34610000576102bb60043560243560443560643561177d565b604080519115158252519081900360200190f35b61028d61178b565b005b34610000576102bb611797565b604080519115158252519081900360200190f35b346100005761029c611808565b60408051918252519081900360200190f35b34610000576102bb61180e565b604080519115158252519081900360200190f35b34610000576102bb611817565b604080519115158252519081900360200190f35b34610000576102bb600160a060020a0360043516611827565b604080519115158252519081900360200190f35b346100005761028d61183c565b005b34610000576102bb611892565b604080519115158252519081900360200190f35b34610000576102bb6118a1565b604080519115158252519081900360200190f35b346100005761029c6118ad565b60408051918252519081900360200190f35b346100005761028d600160a060020a036004351660243515156118b3565b005b34610000576102bb600435611934565b604080519115158252519081900360200190f35b346100005761028d6004351515600160a060020a036024351661194c565b005b61028d600160a060020a03600435166001608060020a0360243516611a0a565b005b346100005761028d600160a060020a0360043516602435604435606435611a44565b005b346100005761028d600160a060020a0360043516611b21565b005b346100005761028d600160a060020a0360043516611b6c565b005b61028d6001608060020a036004351660ff60243516604435606435611bb8565b005b3461000057610417611bcc565b60408051600160a060020a039092168252519081900360200190f35b60125481565b600e54610100900460ff1681565b600e54610100900460ff161561098d57610000565b600e5462010000900460ff16156109a357610000565b6109ae816000611bdb565b5b50565b6003546040805160006020918201819052825160e360020a6311ced051028152600160a060020a033081166004830152935191949390931692638e76828892602480830193919282900301818787803b156100005760325a03f115610000575050604051519150505b90565b60085481565b60065481565b60005433600160a060020a03908116911614610a4557610000565b600160a060020a0384166000908152600f60205260409020541515610a6e57600b805460010190555b600160a060020a0384166000818152600f6020908152604080832080548801905560108252808320805487019055600a805488019055600980548701905580519384529083018690528281018590526060830191909152517f0396f60aaad038749091d273dc13aaabc63db6e2271c7bad442d5cf25cc433509181900360800190a160408051600160a060020a03861681526020810183905281517f08b1adf3440f557bc3ad64e718e68b3656a43fdde2a00cbecf89765352b76cb6929181900390910190a15b5b50505050565b600e5460009060ff1615610b5257506006610a1b565b600454600160a060020a03161515610b6c57506001610a1b565b600460009054906101000a9004600160a060020a0316600160a060020a03166382771c8e6000604051602001526040518163ffffffff1660e060020a028152600401809050602060405180830381600087803b156100005760325a03f1156100005750506040515115159050610be457506001610a1b565b6003546040805160006020918201819052825160e360020a6311ced051028152600160a060020a03308116600483015293519390941693638e768288936024808301949391928390030190829087803b156100005760325a03f1156100005750506040515115159050610c5957506001610a1b565b600754421015610c6b57506002610a1b565b6008544211158015610c825750610c806118a1565b155b15610c8f57506003610a1b565b610c976115d2565b15610ca457506004610a1b565b610cac6115d2565b158015610cbb57506000600a54115b8015610ccb5750600a54600c5410155b15610cd857506007610a1b565b506005610a1b565b5b5b5b5b5b5b5b5b90565b60005433600160a060020a03908116911614610d0657610000565b60048054600160a060020a031916600160a060020a0383811691909117808355604080516000602091820181905282517f614cb9040000000000000000000000000000000000000000000000000000000081529251939094169463614cb9049483820194929383900390910190829087803b156100005760325a03f11561000057505060405151151590506109ae57610000565b5b5b50565b60006002866000604051602001526040518082600160a060020a0316600160a060020a03166c010000000000000000000000000281526014019150506020604051808303816000866161da5a03f115610000575050604080518051600e54600083815260208085018652938501819052845183815260ff8a16818601528086018990526060810188905294519295506301000000909104600160a060020a0316936001936080808301949193601f198301938390039091019190866161da5a03f115610000575050604051601f190151600160a060020a031614610e8257610000565b6001608060020a0385161515610e9757610000565b610ea18686611bdb565b5b505050505050565b600f6020526000908152604090205481565b600454600160a060020a031681565b60008054819033600160a060020a03908116911614610ee957610000565b600254604080516000602091820181905282517f313ce5670000000000000000000000000000000000000000000000000000000081529251600160a060020a039094169363313ce5679360048082019493918390030190829087803b156100005760325a03f1156100005750505060405180519050600a0a840291508383029050600a5473cda82e76457635faa151babd2d4ca3ee54db203f6366098d4f9091836000604051602001526040518363ffffffff1660e060020a028152600401808381526020018281526020019250505060206040518083038186803b156100005760325a03f415610000575050604080518051600a556009546000602092830152825160e060020a6366098d4f028152600481019190915260248101869052915173cda82e76457635faa151babd2d4ca3ee54db203f93506366098d4f926044808201939291829003018186803b156100005760325a03f415610000575050604080518051600955600160a060020a0388166000908152600f60209081528382205492810191909152825160e060020a6366098d4f028152600481019290925260248201859052915173cda82e76457635faa151babd2d4ca3ee54db203f93506366098d4f92604480840193919291829003018186803b156100005760325a03f415610000575050604080518051600160a060020a0389166000908152600f602090815284822092909255601082528381205492820152825160e060020a6366098d4f028152600481019290925260248201869052915173cda82e76457635faa151babd2d4ca3ee54db203f93506366098d4f92604480840193919291829003018186803b156100005760325a03f4156100005750506040805151600160a060020a038816600090815260106020529190912055506111888583612074565b60408051600160a060020a0387168152602081018390528082018490526000606082015290517f0396f60aaad038749091d273dc13aaabc63db6e2271c7bad442d5cf25cc433509181900360800190a15b5b5050505050565b60135481565b600a5481565b60015b90565b6004806111fe610b3c565b60078111610000571461121057610000565b60005433600160a060020a0390811691161461122b57610000565b60005460a060020a900460ff161561124257610000565b600e5460ff161561125257610000565b600454600160a060020a0316156112c65760048054604080517f0bf318a30000000000000000000000000000000000000000000000000000000081529051600160a060020a0390921692630bf318a392828201926000929082900301818387803b156100005760325a03f115610000575050505b600e805460ff191660011790555b5b5b5b50565b60005433600160a060020a039081169116146112f557610000565b60038054600160a060020a031916600160a060020a038381169190911791829055604080516000602091820181905282517f04bbc255000000000000000000000000000000000000000000000000000000008152925194909316936304bbc255936004808501948390030190829087803b156100005760325a03f11561000057505060405151151590506109ae57610000565b5b5b50565b60095481565b60006007806113a0610b3c565b6007811161000057146113b257610000565b600160a060020a0333166000908152600f602052604090205491508115156113d957610000565b600160a060020a0333166000908152600f60209081526040808320839055600d548151830193909352805160e060020a6366098d4f0281526004810193909352602483018590525173cda82e76457635faa151babd2d4ca3ee54db203f926366098d4f926044808301939192829003018186803b156100005760325a03f415610000575050604080518051600d55600160a060020a03331681526020810185905281517fbb28353e4598c3b9199101a66e0989549b659a59a54d2c27fbb183f1932c8e6d93509081900390910190a1604051600160a060020a0333169083156108fc029084906000818181858888f1935050505015156114d857610000565b5b5b5050565b600e5463010000009004600160a060020a031681565b60146020526000908152604090205460ff1681565b600d5481565b60005433600160a060020a0390811691161461152a57610000565b6000805474ff0000000000000000000000000000000000000000191660a060020a1790555b5b565b60015481565b60005433600160a060020a0390811691161461157357610000565b8042111561158057610000565b60088190556040805182815290517fd34bb772c4ae9baa99db852f622773b31c7827e8ee818449fef20d30980bd3109181900360200190a15b5b50565b600354600160a060020a031681565b600c5481565b600654600a5410155b90565b60005433600160a060020a039081169116146115f957610000565b600e805461ff001916610100831515810291909117918290556040805160ff928404831615158152620100008404909216151560208301526301000000909204600160a060020a03168183015290517f48d826081348f5f00e8a33c9ae8ce89ed4c6e88400b585a478bc203d9e8177d3916060908290030190a15b5b50565b600580611683610b3c565b60078111610000571461169557610000565b3415156116a157610000565b600c5473cda82e76457635faa151babd2d4ca3ee54db203f6366098d4f9091346000604051602001526040518363ffffffff1660e060020a028152600401808381526020018281526020019250505060206040518083038186803b156100005760325a03f41561000057505060405151600c55505b5b50565b60005433600160a060020a0390811691161461173557610000565b60128190555b5b50565b600054600160a060020a031681565b600554600160a060020a031681565b60106020526000908152604090205481565b6109ae3382611a0a565b5b50565b60135481115b949350505050565b61028b33610978565b5b565b6000600460009054906101000a9004600160a060020a0316600160a060020a03166382771c8e6000604051602001526040518163ffffffff1660e060020a028152600401809050602060405180830381600087803b156100005760325a03f115610000575050604051519150505b90565b60075481565b600e5460ff1681565b60005460a060020a900460ff1681565b60116020526000908152604090205460ff1681565b60005433600160a060020a0390811691161461185757610000565b60005460a060020a900460ff16151561186f57610000565b6000805474ff0000000000000000000000000000000000000000191690555b5b5b565b600e5462010000900460ff1681565b60135460095410155b90565b600b5481565b60005433600160a060020a039081169116146118ce57610000565b600160a060020a038216600081815260116020908152604091829020805460ff191685151590811790915582519384529083015280517fa54714518c5d275fdcd3d2a461e4858e4e8cb04fb93cd0bca9d6d34115f264409281900390910190a15b5b5050565b60008181526014602052604090205460ff165b919050565b60005433600160a060020a0390811691161461196757610000565b600e805462ff000019166201000084151581029190911776ffffffffffffffffffffffffffffffffffffffff00000019166301000000600160a060020a03858116820292909217938490556040805160ff6101008704811615158252948604909416151560208501529304168183015290517f48d826081348f5f00e8a33c9ae8ce89ed4c6e88400b585a478bc203d9e8177d3916060908290030190a15b5b5050565b600e5462010000900460ff1615611a2057610000565b6001608060020a0381161515611a3557610000565b6114d88282611bdb565b5b5050565b6000805433600160a060020a03908116911614611a6057610000565b60008281526014602052604090205460ff1615611a7c57610000565b611a8885858585610a2a565b611a988484600a5460095461177d565b15611aa257610000565b50600081815260146020526040808220805460ff19166001179055600254815160e060020a6340c10f19028152600160a060020a038881166004830152602482018790529251929091169283926340c10f1992604480820193929182900301818387803b156100005760325a03f115610000575050505b5b5050505050565b60005433600160a060020a03908116911614611b3c57610000565b600160a060020a038116156109ae5760008054600160a060020a031916600160a060020a0383161790555b5b5b50565b60005433600160a060020a03908116911614611b8757610000565b600154600b541115611b9857610000565b60058054600160a060020a031916600160a060020a0383161790555b5b50565b610b353385858585610d9f565b5b50505050565b600254600160a060020a031681565b60008054819060a060020a900460ff1615611bf557610000565b6002611bff610b3c565b60078111610000571415611c3957600160a060020a03841660009081526011602052604090205460ff161515611c3457610000565b611c5b565b6003611c43610b3c565b6007811161000057141561028657611c5b565b610000565b5b349150600360009054906101000a9004600160a060020a0316600160a060020a03166318a4155e83600a5460095433600260009054906101000a9004600160a060020a0316600160a060020a031663313ce5676000604051602001526040518163ffffffff1660e060020a028152600401809050602060405180830381600087803b156100005760325a03f11561000057505050604051805190506000604051602001526040518663ffffffff1660e060020a0281526004018086815260200185815260200184815260200183600160a060020a0316600160a060020a0316815260200182815260200195505050505050602060405180830381600087803b156100005760325a03f11561000057505060405151915050801515611d7f57610000565b600160a060020a0384166000908152600f60205260409020541515611da857600b805460010190555b600160a060020a0384166000908152600f60209081526040808320548151830193909352805160e060020a6366098d4f0281526004810193909352602483018590525173cda82e76457635faa151babd2d4ca3ee54db203f926366098d4f926044808301939192829003018186803b156100005760325a03f415610000575050604080518051600160a060020a0388166000908152600f602090815284822092909255601082528381205492820152825160e060020a6366098d4f028152600481019290925260248201859052915173cda82e76457635faa151babd2d4ca3ee54db203f93506366098d4f92604480840193919291829003018186803b156100005760325a03f415610000575050604080518051600160a060020a03881660009081526010602090815284822092909255600a5492820152825160e060020a6366098d4f028152600481019290925260248201869052915173cda82e76457635faa151babd2d4ca3ee54db203f93506366098d4f92604480840193919291829003018186803b156100005760325a03f415610000575050604080518051600a556009546000602092830152825160e060020a6366098d4f028152600481019190915260248101859052915173cda82e76457635faa151babd2d4ca3ee54db203f93506366098d4f926044808201939291829003018186803b156100005760325a03f415610000575050604051516009819055600a54611fcc9250849184919061177d565b15611fd657610000565b611fe08482612074565b600554604051600160a060020a039091169083156108fc029084906000818181858888f19350505050151561201457610000565b60408051600160a060020a0386168152602081018490528082018390526001608060020a038516606082015290517f0396f60aaad038749091d273dc13aaabc63db6e2271c7bad442d5cf25cc433509181900360800190a15b5b50505050565b6002546040805160e060020a6340c10f19028152600160a060020a038581166004830152602482018590529151919092169182916340c10f199160448082019260009290919082900301818387803b156100005760325a03f115610000575050505b5050505600a165627a7a72305820f8f7e258e9826d30a4fc729c036de438da1f2c8041b8c58c63adb05d6c4502b70029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000b2e59493763d0d0be2634b2d1afe066914b0fcc2000000000000000000000000b6951dba8d2aa5156440bcc4ba1af82f12c55159000000000000000000000000e75cd82ada6200356a5a879b31d87c3c5e6f70d000000000000000000000000000000000000000000000000000000000593eba8000000000000000000000000000000000000000000000000000000000597ae0b4000000000000000000000000000000000000000000000056080c9bb6b0ec00000000000000000000000000000000000000000000000000000020aff6089c6f2e
-----Decoded View---------------
Arg [0] : _token (address): 0xB2E59493763d0D0Be2634B2d1afE066914B0fCC2
Arg [1] : _pricingStrategy (address): 0xb6951dBA8D2aA5156440bcc4ba1AF82f12C55159
Arg [2] : _multisigWallet (address): 0xe75CD82ada6200356A5A879b31D87c3C5e6F70D0
Arg [3] : _start (uint256): 1497283200
Arg [4] : _end (uint256): 1501225140
Arg [5] : _minimumFundingGoal (uint256): 1587000000000000000000
Arg [6] : _maximumSellableTokens (uint256): 9200670496026414
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 000000000000000000000000b2e59493763d0d0be2634b2d1afe066914b0fcc2
Arg [1] : 000000000000000000000000b6951dba8d2aa5156440bcc4ba1af82f12c55159
Arg [2] : 000000000000000000000000e75cd82ada6200356a5a879b31d87c3c5e6f70d0
Arg [3] : 00000000000000000000000000000000000000000000000000000000593eba80
Arg [4] : 00000000000000000000000000000000000000000000000000000000597ae0b4
Arg [5] : 000000000000000000000000000000000000000000000056080c9bb6b0ec0000
Arg [6] : 0000000000000000000000000000000000000000000000000020aff6089c6f2e
Swarm Source
bzzr://f8f7e258e9826d30a4fc729c036de438da1f2c8041b8c58c63adb05d6c4502b7
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ 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.