ETH Price: $2,642.65 (+1.07%)

Token

Lotus Token Inc (LTO)
 

Overview

Max Total Supply

90,000,000 LTO

Holders

2,111

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
100 LTO

Value
$0.00
0xc44dde2bed97f709fbf6ae2c72600169d719dcb7
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
LotusToken

Compiler Version
v0.4.18+commit.9cf6e910

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2017-12-09
*/

pragma solidity ^0.4.16;


/// This is the smart contract for the LOTUS TOKEN NETWORK (LTO)
/// It covers the deployment of the three (3) Crowdsale periods
/// As well as the distribution of:
/// (1) Collected Crowdsale fund
/// (2) Reserved tokens for Airdrop
/// (3) Reserved Token Supply (55% of total supply)
/// (4) Unsold tokens during the Crowdsale Period

/// Total Supply is 90,000,000 tokens, for test purposes we will use 90,000 tokens
/// We've set a standard rate of:
/// 1 ETH = 3,000 tokens or 1 x 10^18 wei for ICO price

/// Deployments:
/// First successful deployment of ETH-Token exchange on 11/01/2017 4AM GMT+8 done by Dondi
/// Second successful run based on approved parameters: 11/01/2017 11PM GMT+8
/// Done by Michael, Sam, and Mahlory
///
/// Final Ticker Symbol will be -- LTO (Lotus Token, Inc.) -- unless already taken.

/// Core Members are:
/// Joss Morera (Concept Designer) and Jonathan Bate (Lead Coordinator)

/// Initial Shareholders are:
/// Luke McWright, Claire Zhang, and Wanjiao Nan

/// this is a freelance collaborative work of four (4) developers:
/// @author DONDI IMPERIAL, MICHAEL DE GUZMAN, SAMUEL SENDON II

/// Initital code researched by Michael on 10/26/2017 3PM GMT + 8
/// Major coding works by Dondi
/// Minor code mods, test deployments and debugging by Samuel
/// Additional Deployment Test by Mahlory
/// smart contract development compensation is agreed at
/// 2% per developer out of the crowdsale token supply and/or funds raised
/// All other values are based on Core Team discussions



/// SafeMath helps protect against integer overflow or underflow
contract SafeMath {
     function safeMul(uint a, uint b) internal pure returns (uint) {
          uint c = a * b;
          assert(a == 0 || c / a == b);
          return c;
     }

     function safeSub(uint a, uint b) internal pure returns (uint) {
          assert(b <= a);
          return a - b;
     }

     function safeAdd(uint a, uint b) internal pure returns (uint) {
          uint c = a + b;
          assert(c>=a && c>=b);
          return c;
     }
}

// Standard token interface (ERC 20)
// https://github.com/ethereum/EIPs/issues/20
contract Token is SafeMath {
     // Functions:
     /// @return total amount of tokens

     function totalSupply() public constant returns (uint256 supply);

     /// @param _owner - The address from which the balance will be retrieved
     /// @return The balance

     function balanceOf(address _owner) public constant returns (uint256 balance);

     /// @notice send _value token to _to from msg.sender
     /// @param _to - The address of the recipient
     /// @param _value - The amount of token to be transferred

     function transfer(address _to, uint256 _value) public returns(bool);

     /// @notice send _value token to _to from _from on the condition it is approved by _from
     /// @param _from - The address of the sender
     /// @param _to - The address of the recipient
     /// @param _value - The amount of token to be transferred
     /// @return Whether the transfer was successful or not

     function transferFrom(address _from, address _to, uint256 _value) public returns(bool);

     /// @notice msg.sender approves _addr to spend _value tokens
     /// @param _spender - The address of the account able to transfer the tokens
     /// @param _value - The amount of wei to be approved for transfer
     /// @return Whether the approval was successful or not

     function approve(address _spender, uint256 _value) public returns (bool success);

     /// @param _owner - The address of the account owning tokens
     /// @param _spender - The address of the account able to transfer the tokens
     /// @return Amount of remaining tokens allowed to spent

     function allowance(address _owner, address _spender) public constant returns (uint256 remaining);

     // Events:
     event Transfer(address indexed _from, address indexed _to, uint256 _value);
     event Approval(address indexed _owner, address indexed _spender, uint256 _value);
}

contract StdToken is Token {
     // Fields:
     mapping(address => uint256) balances;
     mapping (address => mapping (address => uint256)) allowed;
     uint public supply = 0;  /// initialized supply is zero

     // Functions:
     function transfer(address _to, uint256 _value) public returns(bool) {
          require(balances[msg.sender] >= _value);
          require(balances[_to] + _value > balances[_to]);

          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, uint256 _value) public returns(bool){
          require(balances[_from] >= _value);
          require(allowed[_from][msg.sender] >= _value);
          require(balances[_to] + _value > balances[_to]);

          balances[_to] = safeAdd(balances[_to],_value);
          balances[_from] = safeSub(balances[_from],_value);
          allowed[_from][msg.sender] = safeSub(allowed[_from][msg.sender],_value);

          Transfer(_from, _to, _value);
          return true;
     }

     function totalSupply() public constant returns (uint256) {
          return supply;
     }

     function balanceOf(address _owner) public constant returns (uint256) {
          return balances[_owner];
     }

     function approve(address _spender, uint256 _value) public 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));

          allowed[msg.sender][_spender] = _value;
          Approval(msg.sender, _spender, _value);

          return true;
     }

     function allowance(address _owner, address _spender) public constant returns (uint256) {
          return allowed[_owner][_spender];
     }
}



contract LotusToken is StdToken {
    struct Sale {
        uint tokenLimit;
        uint tokenPriceInWei;
        uint tokensSold;
        uint minPurchaseInWei;
        uint maxPurchaseInWei;
        uint saleLimitPerAddress;
    }

    struct Signatory {
        address account;
        bool signed;
    }

    struct SaleTotals {
        uint earlyAdoptersSold;
        uint icoOneSold;
        uint icoTwoSold;
    }

    string public name = "Lotus Token Inc";
    string public symbol = "LTO";
    uint public decimals = 18;

    /// The address that owns this contract.
    /// Only this address is allowed to execute the functions that move the sale through stages.
    address private owner;

    /// Vesting parameters
    /// Vesting cliff. This must be set to some time in the future to allow for proper vesting.
    uint public cliff = 0;
    /// Timespan to schedule allocation of vested shares.
    uint private vestingSchedule = 30 days; // Testing code has this set to 1 minute for the production
    /// deploy set this to "30 days". <-----<<<<<<<<<

    /// wallet declarations (added 11/9/2017 1:30PM GMT + 8) by Sam
    /// venture capitalists (shareholders)
    address public vc1Wallet4Pct;
    address public vc2Wallet4Pct;
    address public vc3Wallet4Pct;

    /// co-founders
    address public cf1Wallet2Pct;
    address public cf2Wallet2Pct;

    /// dev-team
    address public dev1Wallet2Pct;
    address public dev2Wallet2Pct;
    address public dev3Wallet2Pct;
    address public dev4Wallet2Pct;

    /// branding
    address public preicobrandingWallet1Pct;

    /// management multi-sig address
    address public lotusWallet75Pct;

    /// airdrop contract address
    address public airdropWallet5Pct;

    /// tokensSold amount of tokens sold or transferred
    uint public tokensSold = 0;

    /// Allocation of collected eth from sale to respective wallets.
    mapping(address => uint256) internal ethDistribution;

    /// Allocation of tokens left over from crowdsale. Note that these are reserved under a vesting scheme described in the whitepaper.
    mapping(address => uint256) private vestingTokens;
    mapping(address => uint256) private withdrawnVestedTokens;

    Sale public EARLYADOPTERS;
    Sale public ICO_ONE;
    Sale public ICO_TWO;

    /// Per sale stage ledger. Used to track and set limits on tokens purchased by an address per sale stage.
    mapping(address => uint256) private earlyAdoptersAddressPurchased;
    mapping(address => uint256) private icoOneAddressPurchased;
    mapping(address => uint256) private icoTwoAddressPurchased;

    enum SaleStage { Waiting, EarlyAdopters, EarlyAdoptersClosed,  IcoOne, IcoOneClosed, IcoTwo, Closed }
    SaleStage currentStage = SaleStage.Waiting;

    /// var declarations to get wallet addresses (11/7/2017 1:30PM GMT + 8) by Sam
    function LotusToken(address _shareholder1Account,
                        address _shareholder2Account,
                        address _shareholder3Account,

                        /// co-founders
                        address _core1Account,
                        address _core2Account,

                        /// dev-team
                        address _dev1Account,
                        address _dev2Account,
                        address _dev3Account,
                        address _dev4Account,

                        /// branding
                        address _brandingAccount,

                        /// company wallet
                        address _lotusTokenAccount,

                        /// airdrop contract address
                        address _airdropContractAccount

    ) public {
        /// The owner is whoever initialized the contract.
        owner = msg.sender;

        // Total supply of tokens is fixed at this value (90000000).
        // Convert to the appropriate decimal place.
        supply = 90000000 * 10 ** decimals;

        /// Crowdsale parameters set by Sam (11/7/2017)

        /// EARLYADOPTERS tokens are 10% of total supply.
        /// EARLYADOPTERS value: 1 ETH at 5999 tokens
        /// 1 token = 1 ETH / 6000 = (10^18)/6000
        /// EARLYADOPTERS value in wei: 166666666666667 weis
        /// EARLYADOPTERS set tokens sold to zero at contract creation.
        /// EARLYADOPTERS min purchase in wei: 2 * 10 ** 17 or 0.2 ETH by Dondi
        /// EARLYADOPTERS max purchase in wei: 1 * 10 ** 18 or 1 ETH by Dondi (test)
        /// max purchase per transaction in wei: 5 * 10 ** 18 (5 eth on LIVE)
        /// EARLYADOPTERS max purchase per address for testing purposes: 5999 (1 ether)
        /// max purchase per address on live deployment: equivalent to 10 ethers
        /// Max Ethers to raise: 1500 (live); 1.5 ethers (test)
        uint earlyAdoptersSupply = (supply * 10 / 100); /// - 2000000000000000000;
        // EARLYADOPTERS = Sale(supply * 10 / 100, 166666666666667, 0);
        EARLYADOPTERS = Sale(earlyAdoptersSupply, 166666666666667, 0, 2 * 10 ** 17, 5 * 10 ** 18, 59990000000000000000000);

        /// PRESALE tokens are 15% of total supply.
        /// ICO1 (PRESALE) value: 1 ETH = 3750 tokens
        /// 1 token = 1/3750 = (10^18)/3750
        /// ICO1 value in wei: 266666666666666 changed from 333333333333334
        /// ICO_ONE set tokens sold to zero at contract creation.
        /// ICO_ONE min purchase in wei: 2 * 10 ** 17 or 0.2 ETH by Dondi
        /// ICO_ONE max purchase in wei: 2 * 10 ** 18 or 2 ETH by Dondi (TEST)
        /// max purchase per transaction in wei: 10 * 10 ** 18 (10 eth on LIVE)
        /// ICO_ONE max purchase per address for testing purposes: 7500 (2 ethers)
        /// max purchase per address on live deployment: equivalent to 18 ethers or
        /// max ethers to raise: 3600 (live); 3.6 (test)
        ICO_ONE = Sale(supply * 15 / 100, 266666666666666, 0, 2 * 10 ** 17, 10 * 10 ** 18, 67500000000000000000000);

        /// ICO2 (MAIN ICO) tokens are 15% of total supply.
        /// ICO2 value: 1 ETH = 3000 tokens instead of 2000
        ///  1 token = 1/3000 = (10^18)/3000
        /// ICO2 value in wei: 333333333333334 changed from 500000000000000
        /// ICO_TWO set tokens sold to zero at contract creation.
        /// ICO_TWO min purchase in wei: 2 * 10 ** 17 or 0.2 ETH by Dondi
        /// ICO_TWO max purchase in wei: 3 * 10 ** 18 or 3 ETH by Dondi (test)
        /// max purchase per transaction in wei: 20 * 10 ** 18 (20 eth on LIVE)
        /// ICO_TWO max purchase per address for testing purposes: 10000
        /// max purchase per address on live deployment: equivalent to 25 ethers (75000)
        /// max ethers to raise: 4,500 (live); 4.5 (test)
        ICO_TWO = Sale(supply * 15 / 100, 333333333333334, 0, 2 * 10 ** 17, 20 * 10 ** 18, 75000000000000000000000);

        // Technically this check should  not be required as the limits are computed above as fractions of the total supply.
        require(safeAdd(safeAdd(EARLYADOPTERS.tokenLimit, ICO_ONE.tokenLimit), ICO_ONE.tokenLimit)  <= supply);

        /// For safety zero out the allocation for the 0 address.
        ethDistribution[0X0] = 0;

        /// venture capitalist
        vc1Wallet4Pct = _shareholder1Account;
        vc2Wallet4Pct = _shareholder2Account;
        vc3Wallet4Pct = _shareholder3Account;

        /// co-founders
        cf1Wallet2Pct = _core1Account;
        cf2Wallet2Pct = _core2Account;

        /// dev-team
        dev1Wallet2Pct = _dev1Account;
        dev2Wallet2Pct = _dev2Account;
        dev3Wallet2Pct = _dev3Account;
        dev4Wallet2Pct = _dev4Account;

        /// branding
        preicobrandingWallet1Pct = _brandingAccount;

        lotusWallet75Pct = _lotusTokenAccount; /// this will go to the company controlled multi-sig wallet
        /// this replaced adminWallet, posticosdWallet, mktgWallet, legalWallet, cntgncyWallet
        /// it will contain both the 75% of ETHs collected via crowdsale
        /// it will also contain the unsold tokens via the crowdsale periods
        /// it will also contain the 55% tokens from total supply

        airdropWallet5Pct = _airdropContractAccount; /// airdrop wallet contract
    }

    /// modifier coded by Dondi
    modifier mustBeSelling {
        require(currentStage == SaleStage.EarlyAdopters || currentStage == SaleStage.IcoOne || currentStage == SaleStage.IcoTwo);
        _;
    }

    modifier ownerOnly {
        require(msg.sender == owner);
        _;
    }

    // function coded by Dondi
    function () public payable mustBeSelling {
        // Must have sent some ether.
        require(msg.value > 0);

        // Must be purchasing at least the min allowed and not more than the max allowed ETH.
        require(msg.value >= currentMinPurchase() && msg.value <= currentMaxPurchase());


        // The price at the current sale stage.
        uint priceNow = currentSalePriceInWei();
        // The total amount of tokens for sale at this stage
        uint currentLimit = currentSaleLimit();
        // The amount of tokens that have been sold at this sale stage.
        uint currentSold = currentSaleSold();
        // The total amount of tokens that a single address can purchase at this sale stage.
        uint currentLimitPerAddress = currentSaleLimitPerAddress();
        // The total amount of tokens already purchased by the current buyer.
        uint currentStageTokensBought = currentStageTokensBoughtByAddress();

        // Convert msg.value into wei (line added 11/1/2017 11PM)
        uint priceInWei = msg.value;

        // change numerator from msg.value into priceInWei 11/01/2017 11PM
        uint tokensAtPrice = (priceInWei / priceNow) * 10 ** decimals;     // total token equivalent of contributed ETH

        // make sure the payment does not exceed the supply (11/5/2017 10AM)
        //  backer with exact ETH sent equivalent to supply left will get accepted
        require(tokensAtPrice + currentSold <= currentLimit);

        // Buyer can't exceed the per address limit
        require(tokensAtPrice + currentStageTokensBought <= currentLimitPerAddress);

        // remove conditional statements and proceed with credit of tokens to backer (11/5/2017 10AM)
        balances[msg.sender] = safeAdd(balances[msg.sender], tokensAtPrice);  /// send tokens
        tokensSold = safeAdd(tokensSold, tokensAtPrice); /// Update total token sold

        // Update tokens sold for current sale.
        _addTokensSoldToCurrentSale(tokensAtPrice);

        // Distribute ether as it arrives.
        distributeCollectedEther();

        // Show transaction details on blockchain explorer
        Transfer(this, msg.sender, tokensAtPrice);
    }

    // send ether to the fund collection wallets
    // override to create custom fund forwarding mechanisms
    // taken from OpenZeppelin, added 11/7/2017 10AM
    function distributeCollectedEther() internal {

    /**
    /// November 9, 2017
    /// Distribution details: TotalSupply = 9M tokens
    /// each core member receives .9% from TotalSupply (9M * 9 / 1000)
    /// except for branding, which gets .45% (9M * 45 / 10000)
    /// seed fund venture capitalist receives 1.8% each multiplied by 3 persons (9M * 18 / 1000)
    /// In Crowdsale values (which is 45% of the TotalSupply), this divides the funds into:
    /// 25% for all core members and shareholders (10 individuals)
    /// and 75% to Lotus Post ICO Management
    **/

    /// Allocate eth to the appropriate accounts.
    /// To transfer the share of the collected ETH, accounts need to call the 'withdraw allocation' function from the addresses passed to this contract during deployment.
    /// Note that due to the implementation below it is not possible to use the same address for multiple recipients. If the same address is used twice or more, only the last allocation will apply.

    /// TODO: Update the Crowdsale Fund division (11/9/2017)
    /// Lines 361 to 392 updated on 11/9/2017 by Sam
    /// shareholders each get 4% of the Crowdsale Fund
        ethDistribution[vc1Wallet4Pct] = safeAdd(ethDistribution[vc1Wallet4Pct], msg.value * 4 / 100);
        ethDistribution[vc2Wallet4Pct] = safeAdd(ethDistribution[vc2Wallet4Pct], msg.value * 4 / 100);
        ethDistribution[vc3Wallet4Pct] = safeAdd(ethDistribution[vc3Wallet4Pct], msg.value * 4 / 100);

    /// co-founders each get 2% of the Crowdsale Fund
        ethDistribution[cf1Wallet2Pct] = safeAdd(ethDistribution[cf1Wallet2Pct], msg.value * 2 / 100);
        ethDistribution[cf2Wallet2Pct] = safeAdd(ethDistribution[cf2Wallet2Pct], msg.value * 2 / 100);

    /// dev-team members each get 2% of the Crowdsale Fund
        ethDistribution[dev1Wallet2Pct] = safeAdd(ethDistribution[dev1Wallet2Pct], msg.value * 2 / 100);
        ethDistribution[dev3Wallet2Pct] = safeAdd(ethDistribution[dev3Wallet2Pct], msg.value * 2 / 100);
        ethDistribution[dev2Wallet2Pct] = safeAdd(ethDistribution[dev2Wallet2Pct], msg.value * 2 / 100);
        ethDistribution[dev4Wallet2Pct] = safeAdd(ethDistribution[dev4Wallet2Pct], msg.value * 2 / 100);

    /// branding developer gets 1% of the Crowdsale Fund
        ethDistribution[preicobrandingWallet1Pct] = safeAdd(ethDistribution[preicobrandingWallet1Pct], msg.value * 1 / 100);

    /// management multi-sig address gets 75% of Crowdsale Fund
        ethDistribution[lotusWallet75Pct] = safeAdd(ethDistribution[lotusWallet75Pct], msg.value * 75 / 100);
    }

    /// Distribute the tokens left after the crowdsale to the pre-agreed accounts
    function distributeRemainingTokens() internal ownerOnly {
        /// @dev to sam: Remaining tokens are distributed here. (11/8/2017)
        uint crowdsaleSupply = supply * 40 / 100;
        uint unsoldTokens = crowdsaleSupply - tokensSold;

        // lines 400 to 450 updated on 11/9/2017 by Sam
        // Lotus Wallet gets 75% of the unsoldTokens
        balances[lotusWallet75Pct] = safeAdd(balances[lotusWallet75Pct], unsoldTokens * 75 / 100);
        Transfer(this, lotusWallet75Pct, unsoldTokens * 75 / 100);

        // Shareholders get 4% each (x3) of the unsoldTokens, Core Team (CT) gets 2% each (x6) and Branding gets 1%
        // Total: 25% of unsoldTokens
        // Only 25% of the actual allocations are immediately transferred to the recipients, the rest are left over for vesting.
        // The remaining tokens (75%) are reserved for vesting and are transferred to the Lotus Token Inc wallet contract address.
        // Shareholder 1: Luke McWright
        balances[vc1Wallet4Pct] = safeAdd(balances[vc1Wallet4Pct],  unsoldTokens * 4 / 100 * 25 / 100);
        Transfer(this, vc1Wallet4Pct, unsoldTokens * 4 / 100 * 25 / 100);
        // Vesting
        vestingTokens[vc1Wallet4Pct] = safeAdd(vestingTokens[vc1Wallet4Pct], unsoldTokens * 4 / 100 * 75 / 100);

        // Shareholder 2: Claire Zhang
        balances[vc2Wallet4Pct] = safeAdd(balances[vc2Wallet4Pct], unsoldTokens * 4 / 100 * 25 / 100);
        Transfer(this, vc2Wallet4Pct, unsoldTokens * 4 / 100 * 25 / 100);
        // Vesting
        vestingTokens[vc2Wallet4Pct] = safeAdd(vestingTokens[vc2Wallet4Pct], unsoldTokens * 4 / 100 * 75 / 100);

        // Shareholder 3: Wan Jiao Nan
        balances[vc3Wallet4Pct] = safeAdd(balances[vc3Wallet4Pct], unsoldTokens * 4 / 100 * 25 / 100);
        Transfer(this, vc3Wallet4Pct, unsoldTokens * 4 / 100 * 25 / 100);
        // Vesting
        vestingTokens[vc3Wallet4Pct] = safeAdd(vestingTokens[vc3Wallet4Pct], unsoldTokens * 4 / 100 * 75 / 100);

        // CT Co-Founder 1: Joss Morera
        balances[cf1Wallet2Pct] = safeAdd(balances[cf1Wallet2Pct], unsoldTokens * 2 / 100 * 25 / 100);
        Transfer(this, cf1Wallet2Pct, unsoldTokens * 2 / 100 * 25 / 100);
        // Vesting
        vestingTokens[cf1Wallet2Pct] = safeAdd(vestingTokens[cf1Wallet2Pct], unsoldTokens * 2 / 100 * 75 / 100);

        // CT Co-Founder 2: Jonathan Bate
        balances[cf2Wallet2Pct] = safeAdd(balances[cf2Wallet2Pct], unsoldTokens * 2 / 100 * 25 / 100);
        Transfer(this, cf2Wallet2Pct, unsoldTokens * 2 / 100 * 25 / 100);
        // Vesting
        vestingTokens[cf2Wallet2Pct] = safeAdd(vestingTokens[cf2Wallet2Pct], unsoldTokens * 2 / 100 * 75 / 100);

        // CT Dev-Team Leader and Social Media Manager: Michael De Guzman
        balances[dev1Wallet2Pct] = safeAdd(balances[dev1Wallet2Pct], unsoldTokens * 2 / 100 * 25 / 100);
        Transfer(this, dev1Wallet2Pct, unsoldTokens * 2 / 100 * 25 / 100);
        // Vesting
        vestingTokens[dev1Wallet2Pct] = safeAdd(vestingTokens[dev1Wallet2Pct], unsoldTokens * 2 / 100 * 75 / 100);

        // CT Senior Solidity Developer:
        balances[dev2Wallet2Pct] = safeAdd(balances[dev2Wallet2Pct], unsoldTokens * 2 / 100 * 25 / 100);
        Transfer(this, dev2Wallet2Pct, unsoldTokens * 2 / 100 * 25 / 100);
        // Vesting
        vestingTokens[dev2Wallet2Pct] = safeAdd(vestingTokens[dev2Wallet2Pct], unsoldTokens * 2 / 100 * 75 / 100);

        // CT Server Manager and Junior Developer: Mahlory Ambrosio
        balances[dev3Wallet2Pct] = safeAdd(balances[dev3Wallet2Pct], unsoldTokens * 2 / 100 * 25 / 100);
        Transfer(this, dev3Wallet2Pct, unsoldTokens * 2 / 100 * 25 / 100);
        // Vesting
        vestingTokens[dev3Wallet2Pct] = safeAdd(vestingTokens[dev3Wallet2Pct], unsoldTokens * 2 / 100 * 75 / 100);

        // CT Branding - Logo, Whitepaper Design, Website Design: Tamlyn
        balances[preicobrandingWallet1Pct] = safeAdd(balances[preicobrandingWallet1Pct], unsoldTokens * 1 / 100 * 25 / 100);
        Transfer(this, preicobrandingWallet1Pct, unsoldTokens * 1 / 100  * 25 / 100);
        // Vesting
        vestingTokens[preicobrandingWallet1Pct] = safeAdd(vestingTokens[preicobrandingWallet1Pct], unsoldTokens * 1 / 100 * 75 / 100);

        // CT Jr Solidity Developer: Samuel T Sendon II
        balances[dev4Wallet2Pct] = safeAdd(balances[dev4Wallet2Pct], unsoldTokens * 2 / 100 * 25 / 100);
        Transfer(this, dev4Wallet2Pct, unsoldTokens * 2 / 100 * 25 / 100);
        // Vesting
        vestingTokens[dev4Wallet2Pct] = safeAdd(vestingTokens[dev4Wallet2Pct], unsoldTokens * 2 / 100 * 75 / 100);

        // TODO: At this point all tokens have been allocated.
        //   1) Should the tokensSold value be updated as well?
        //   2) Verify that there are no edge cases that will result in inadverdently mining additional tokens.
        //      One possiblity is to keep a 'tokensIssued' counter and validate against that when issuing (not transfering) tokens.

        /// transfer the rest of the token supply minus the crowdsale supply to the Lotus Wallet
        uint reservedSupply = supply * 55 / 100;

        /// This should be a multi-sig wallet so that each time fund is withdrawn from the smart contract,
        /// it needs to be executed from within the multi-sig wallet, and each time funds are withdrawn,
        /// it will need signatures from all signatories
        balances[lotusWallet75Pct] = safeAdd(balances[lotusWallet75Pct], reservedSupply);
        Transfer(this, lotusWallet75Pct, reservedSupply);

        /// transfer the tokens for Airdrop on a wallet contract
        uint airdropSupply = supply * 5 / 100;
        /// UNCERTAIN whether this should be multi-sig or not
        balances[airdropWallet5Pct] = safeAdd(balances[airdropWallet5Pct], airdropSupply);
        Transfer(this, airdropWallet5Pct, airdropSupply);
    }

    function startEarlyAdopters() public ownerOnly {
        require(currentStage == SaleStage.Waiting);
        currentStage = SaleStage.EarlyAdopters;
    }

    function closeEarlyAdopters() public ownerOnly {
        require(currentStage == SaleStage.EarlyAdopters);
        currentStage = SaleStage.EarlyAdoptersClosed;
    }

    function startIcoOne() public ownerOnly {
        require(currentStage == SaleStage.EarlyAdopters || currentStage == SaleStage.EarlyAdoptersClosed);
        currentStage = SaleStage.IcoOne;
    }

    function closeIcoOne() public ownerOnly {
        require(currentStage == SaleStage.IcoOne);
        currentStage = SaleStage.IcoOneClosed;
    }

    function startIcoTwo() public ownerOnly {
        require(currentStage == SaleStage.IcoOne || currentStage == SaleStage.IcoOneClosed);
        currentStage = SaleStage.IcoTwo;

        /// optional auto exec process condition to endSale
        /// only if total tokens sold is reached (11/07/2017 3PM GMT + 8)
        /// if total tokens sold is = to sum of earlyadopters, icoone, icotwo supplies

    }

    function closeSale() public ownerOnly {
        require(currentStage == SaleStage.IcoTwo);
        currentStage = SaleStage.Closed;
        distributeRemainingTokens(); // 11/22/2017 by Dondi
        /// Start countdown to cliff
        cliff = now + 180 days; // Testing code has this set to "now + 5 minutes"
        /// in the live deploy set this to "now + 180 days".
    }

    modifier doneSelling {
        require(currentStage == SaleStage.Closed);
        _;
    }

    /// @dev Let the caller withdraw all ether allocated to it during the sale period.
    function withdrawAllocation() public {
        // Lifted from: http://solidity.readthedocs.io/en/develop/solidity-by-example.html
        // It is a good guideline to structure functions that interact
        // with other contracts (i.e. they call functions or send Ether)
        // into three phases:
        // 1. checking conditions
        // 2. performing actions (potentially changing conditions)
        // 3. interacting with other contracts

        // Checking Conditions
        require(ethDistribution[msg.sender] > 0);
        // Must be at least after a sale stage but not during a sale.
        require(currentStage == SaleStage.EarlyAdoptersClosed || currentStage == SaleStage.IcoOneClosed || currentStage == SaleStage.Closed);
        // 75% allocation can only be withdrawn when the crowd sale has completed
        require(msg.sender != lotusWallet75Pct || currentStage == SaleStage.Closed);


        // Performing actions
        // copy the current value allocated as we will change the saved value later.
        uint toTransfer = ethDistribution[msg.sender];
        // Note that in order to avoid re-entrancy the allocation is zeroed BEFORE the actual transfer.
        ethDistribution[msg.sender] = 0;

        // (Potentially) interacting with other contracts.
        msg.sender.transfer(toTransfer);
    }

    function currentSalePriceInWei() constant public mustBeSelling returns(uint) {
        if(currentStage == SaleStage.EarlyAdopters) {
            return EARLYADOPTERS.tokenPriceInWei;
        } else if (currentStage == SaleStage.IcoOne) {
            return ICO_ONE.tokenPriceInWei;
        } else if (currentStage == SaleStage.IcoTwo) {
            return ICO_TWO.tokenPriceInWei;
        }
    }


    function currentSaleLimit() constant public mustBeSelling returns(uint) {
        if(currentStage == SaleStage.EarlyAdopters) {
            return EARLYADOPTERS.tokenLimit;
        } else if (currentStage == SaleStage.IcoOne) {
            return ICO_ONE.tokenLimit;
        } else if (currentStage == SaleStage.IcoTwo) {
            return ICO_TWO.tokenLimit;
        }
    }

    function currentSaleSold() constant public mustBeSelling returns(uint) {
        if(currentStage == SaleStage.EarlyAdopters) {
            return EARLYADOPTERS.tokensSold;
        } else if (currentStage == SaleStage.IcoOne) {
            return ICO_ONE.tokensSold;
        } else if (currentStage == SaleStage.IcoTwo) {
            return ICO_TWO.tokensSold;
        }
    }

    function currentMinPurchase() constant public mustBeSelling returns(uint) {
        if(currentStage == SaleStage.EarlyAdopters) {
            return EARLYADOPTERS.minPurchaseInWei;
        } else if (currentStage == SaleStage.IcoOne) {
            return ICO_ONE.minPurchaseInWei;
        } else if (currentStage == SaleStage.IcoTwo) {
            return ICO_TWO.minPurchaseInWei;
        }
    }

    function currentMaxPurchase() constant public mustBeSelling returns(uint) {
        if(currentStage == SaleStage.EarlyAdopters) {
            return EARLYADOPTERS.maxPurchaseInWei;
        } else if (currentStage == SaleStage.IcoOne) {
            return ICO_ONE.maxPurchaseInWei;
        } else if (currentStage == SaleStage.IcoTwo) {
            return ICO_TWO.maxPurchaseInWei;
        }
    }

    function currentSaleLimitPerAddress() constant public mustBeSelling returns(uint) {
        if(currentStage == SaleStage.EarlyAdopters) {
            return EARLYADOPTERS.saleLimitPerAddress;
        } else if (currentStage == SaleStage.IcoOne) {
            return ICO_ONE.saleLimitPerAddress;
        } else if (currentStage == SaleStage.IcoTwo) {
            return ICO_TWO.saleLimitPerAddress;
        }
    }

    function currentStageTokensBoughtByAddress() constant public mustBeSelling returns(uint) {
        if(currentStage == SaleStage.EarlyAdopters) {
            return earlyAdoptersAddressPurchased[msg.sender];
        } else if (currentStage == SaleStage.IcoOne) {
            return icoOneAddressPurchased[msg.sender];
        } else if (currentStage == SaleStage.IcoTwo) {
            return icoTwoAddressPurchased[msg.sender];
        }
    }

    function _addTokensSoldToCurrentSale(uint _additionalTokensSold) internal mustBeSelling {
        if(currentStage == SaleStage.EarlyAdopters) {
            EARLYADOPTERS.tokensSold = safeAdd(EARLYADOPTERS.tokensSold, _additionalTokensSold);
            earlyAdoptersAddressPurchased[msg.sender] = safeAdd(earlyAdoptersAddressPurchased[msg.sender], _additionalTokensSold);
        } else if (currentStage == SaleStage.IcoOne) {
            ICO_ONE.tokensSold = safeAdd(ICO_ONE.tokensSold, _additionalTokensSold);
            icoOneAddressPurchased[msg.sender] = safeAdd(icoOneAddressPurchased[msg.sender], _additionalTokensSold);
        } else if (currentStage == SaleStage.IcoTwo) {
            ICO_TWO.tokensSold = safeAdd(ICO_TWO.tokensSold, _additionalTokensSold);
            icoTwoAddressPurchased[msg.sender] = safeAdd(icoTwoAddressPurchased[msg.sender], _additionalTokensSold);
        }
    }

    function withdrawVestedTokens() public doneSelling {
        // 1. checking conditions
        // Cliff must have been previously set (This is set in closeSale).
        require(cliff > 0);
        // Must be past the cliff. (and equal or greater than the initial value of cliff upon CloseSale)
        require(now >= cliff);
        // Must have some (remaining) vested tokens for withdrawal.
        require(withdrawnVestedTokens[msg.sender] < vestingTokens[msg.sender]);

        // 2. performing actions (potentially changing conditions)
        // How many scheduled allocations have passed.
        uint schedulesPassed = ((now - cliff) / vestingSchedule) + 1;
        // Number of tokens available to the user at this point (may include previously already withdrawn tokens).
        uint vestedTokens = (vestingTokens[msg.sender] / 15) * schedulesPassed;
        // Actual tokens available for withdrawal at this point.
        uint availableToWithdraw = vestedTokens - withdrawnVestedTokens[msg.sender];
        // For contract safety mark tokens as allocated before allocating.
        withdrawnVestedTokens[msg.sender] = safeAdd(withdrawnVestedTokens[msg.sender], availableToWithdraw);
        // Allocate tokens
        balances[msg.sender] = safeAdd(balances[msg.sender], availableToWithdraw);
        Transfer(this, msg.sender, availableToWithdraw);
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"currentMinPurchase","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"supply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"closeEarlyAdopters","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"dev1Wallet2Pct","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"cliff","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"airdropWallet5Pct","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"currentSaleLimit","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"currentSaleLimitPerAddress","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"preicobrandingWallet1Pct","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdrawVestedTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"dev2Wallet2Pct","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"startIcoTwo","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"cf1Wallet2Pct","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokensSold","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"vc1Wallet4Pct","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"ICO_ONE","outputs":[{"name":"tokenLimit","type":"uint256"},{"name":"tokenPriceInWei","type":"uint256"},{"name":"tokensSold","type":"uint256"},{"name":"minPurchaseInWei","type":"uint256"},{"name":"maxPurchaseInWei","type":"uint256"},{"name":"saleLimitPerAddress","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"dev4Wallet2Pct","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"startIcoOne","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"lotusWallet75Pct","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"currentMaxPurchase","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"dev3Wallet2Pct","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"ICO_TWO","outputs":[{"name":"tokenLimit","type":"uint256"},{"name":"tokenPriceInWei","type":"uint256"},{"name":"tokensSold","type":"uint256"},{"name":"minPurchaseInWei","type":"uint256"},{"name":"maxPurchaseInWei","type":"uint256"},{"name":"saleLimitPerAddress","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"closeIcoOne","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"startEarlyAdopters","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"cf2Wallet2Pct","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"currentStageTokensBoughtByAddress","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"currentSaleSold","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"vc3Wallet4Pct","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"EARLYADOPTERS","outputs":[{"name":"tokenLimit","type":"uint256"},{"name":"tokenPriceInWei","type":"uint256"},{"name":"tokensSold","type":"uint256"},{"name":"minPurchaseInWei","type":"uint256"},{"name":"maxPurchaseInWei","type":"uint256"},{"name":"saleLimitPerAddress","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"currentSalePriceInWei","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdrawAllocation","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"closeSale","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"vc2Wallet4Pct","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_shareholder1Account","type":"address"},{"name":"_shareholder2Account","type":"address"},{"name":"_shareholder3Account","type":"address"},{"name":"_core1Account","type":"address"},{"name":"_core2Account","type":"address"},{"name":"_dev1Account","type":"address"},{"name":"_dev2Account","type":"address"},{"name":"_dev3Account","type":"address"},{"name":"_dev4Account","type":"address"},{"name":"_brandingAccount","type":"address"},{"name":"_lotusTokenAccount","type":"address"},{"name":"_airdropContractAccount","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"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"}]

6060604052600060025560408051908101604052600f81527f4c6f74757320546f6b656e20496e630000000000000000000000000000000000602082015260039080516200005292916020019062000486565b5060408051908101604052600381527f4c544f0000000000000000000000000000000000000000000000000000000000602082015260049080516200009c92916020019062000486565b5060126005556000600781905562278d00600855601555602e805460ff191690553415620000c957600080fd5b6040516101808062002a8083398101604052808051919060200180519190602001805191906020018051919060200180519190602001805191906020018051919060200180519190602001805191906020018051919060200180519190602001805160068054600160a060020a03191633600160a060020a0316179055600554600a0a63055d4a808102600255909250600091506064906335a4e9000204905060c060405190810160409081528282526597951b766aab60208301526000908201526702c68af0bb1400006060820152674563918244f400006080820152690cb4107d975ba398000060a08201526019815181556020820151816001015560408201518160020155606082015181600301556080820151816004015560a08201516005909101555060c06040519081016040526002548190606490600f0204815265f2882bf0aaaa6020820152600060408201526702c68af0bb1400006060820152678ac7230489e800006080820152690e4b2ead51ac3330000060a090910152601f815181556020820151816001015560408201518160020155606082015181600301556080820151816004015560a08201516005909101555060c06040519081016040526002548190606490600f0204815266012f2a36ecd5566020820152600060408201526702c68af0bb14000060608201526801158e460913d000006080820152690fe1c215e8f838e0000060a0909101526025815181556020820151816001015560408201518160020155606082015181600301556080820151816004015560a082015160059091015550600254601954601f546200035791620003409164010000000062000d696200046082021704565b601f5464010000000062000d696200046082021704565b11156200036357600080fd5b50600080805260166020527f0263c2b778d062355049effc2dece97bc6547ff8a88a3258daa512061c2153dd5560098054600160a060020a0319908116600160a060020a039e8f1617909155600a805482169c8e169c909c17909b55600b80548c169a8d169a909a17909955600c80548b16988c1698909817909755600d80548a16968b1696909617909555600e80548916948a1694909417909355600f80548816928916929092179091556010805487169188169190911790556011805486169187169190911790556012805485169186169190911790556013805484169185169190911790556014805490921692169190911790556200052b565b6000828201838110801590620004765750828110155b15156200047f57fe5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620004c957805160ff1916838001178555620004f9565b82800160010185558215620004f9579182015b82811115620004f9578251825591602001919060010190620004dc565b50620005079291506200050b565b5090565b6200052891905b8082111562000507576000815560010162000512565b90565b612545806200053b6000396000f3006060604052600436106102025763ffffffff7c0100000000000000000000000000000000000000000000000000000000600035041662fdc73f811461039a578063047fc9aa146103bf57806306fdde03146103d2578063095ea7b31461045c5780630c26ac30146104925780630fac20e1146104a757806313d033c0146104d65780631615d035146104e957806318160ddd146104fc57806323b872dd1461050f5780632a18ca16146105375780632ca1aa161461054a578063313ce5671461055d578063341cc8171461057057806339f05521146105835780633be1c410146105965780633dbae9f9146105a95780634266806b146105bc578063518ab2a8146105cf57806366005ede146105e25780636f3ad341146105f557806370a082311461064157806390427b6c1461066057806395d89b4114610673578063a0695fc214610686578063a9059cbb14610699578063ac7b986f146106bb578063af0638f6146106ce578063b154f47c146106e1578063bb814746146106f4578063c2d2516714610707578063c467706d1461071a578063cb6b1f051461072d578063d042ce2c14610740578063dcd6561d14610753578063dd62ed3e14610766578063def1a2da1461078b578063e50e2f651461079e578063eb570b05146107b1578063ee224707146107c4578063ee55efee146107d7578063f3635a02146107ea575b60008080808080806001602e5460ff16600681111561021d57fe5b148061023957506003602e5460ff16600681111561023757fe5b145b8061025457506005602e5460ff16600681111561025257fe5b145b151561025f57600080fd5b6000341161026c57600080fd5b6102746107fd565b341015801561028a57506102866108b9565b3411155b151561029557600080fd5b61029d610976565b96506102a7610a33565b95506102b1610af0565b94506102bb610bad565b93506102c5610c6a565b9250349150600554600a0a87838115156102db57fe5b04029050848101869011156102ef57600080fd5b808301849011156102ff57600080fd5b600160a060020a0333166000908152602081905260409020546103229082610d69565b600160a060020a0333166000908152602081905260409020556015546103489082610d69565b60155561035481610d8d565b61035c610f1f565b33600160a060020a031630600160a060020a03166000805160206124fa8339815191528360405190815260200160405180910390a350505050505050005b34156103a557600080fd5b6103ad6107fd565b60405190815260200160405180910390f35b34156103ca57600080fd5b6103ad6111a9565b34156103dd57600080fd5b6103e56111af565b60405160208082528190810183818151815260200191508051906020019080838360005b83811015610421578082015183820152602001610409565b50505050905090810190601f16801561044e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561046757600080fd5b61047e600160a060020a036004351660243561124d565b604051901515815260200160405180910390f35b341561049d57600080fd5b6104a56112f3565b005b34156104b257600080fd5b6104ba611342565b604051600160a060020a03909116815260200160405180910390f35b34156104e157600080fd5b6103ad611351565b34156104f457600080fd5b6104ba611357565b341561050757600080fd5b6103ad611366565b341561051a57600080fd5b61047e600160a060020a036004358116906024351660443561136c565b341561054257600080fd5b6103ad610a33565b341561055557600080fd5b6103ad610bad565b341561056857600080fd5b6103ad6114d4565b341561057b57600080fd5b6104ba6114da565b341561058e57600080fd5b6104a56114e9565b34156105a157600080fd5b6104ba611662565b34156105b457600080fd5b6104a5611671565b34156105c757600080fd5b6104ba6116da565b34156105da57600080fd5b6103ad6116e9565b34156105ed57600080fd5b6104ba6116ef565b341561060057600080fd5b6106086116fe565b60405180878152602001868152602001858152602001848152602001838152602001828152602001965050505050505060405180910390f35b341561064c57600080fd5b6103ad600160a060020a0360043516611713565b341561066b57600080fd5b6104ba61172e565b341561067e57600080fd5b6103e561173d565b341561069157600080fd5b6104a56117a8565b34156106a457600080fd5b61047e600160a060020a0360043516602435611811565b34156106c657600080fd5b6104ba611915565b34156106d957600080fd5b6103ad6108b9565b34156106ec57600080fd5b6104ba611924565b34156106ff57600080fd5b610608611933565b341561071257600080fd5b6104a5611948565b341561072557600080fd5b6104a5611994565b341561073857600080fd5b6104ba6119df565b341561074b57600080fd5b6103ad610c6a565b341561075e57600080fd5b6103ad610af0565b341561077157600080fd5b6103ad600160a060020a03600435811690602435166119ee565b341561079657600080fd5b6104ba611a19565b34156107a957600080fd5b610608611a28565b34156107bc57600080fd5b6103ad610976565b34156107cf57600080fd5b6104a5611a3d565b34156107e257600080fd5b6104a5611b39565b34156107f557600080fd5b6104ba611b91565b60006001602e5460ff16600681111561081257fe5b148061082e57506003602e5460ff16600681111561082c57fe5b145b8061084957506005602e5460ff16600681111561084757fe5b145b151561085457600080fd5b6001602e5460ff16600681111561086757fe5b14156108765750601c546108b6565b6003602e5460ff16600681111561088957fe5b141561089857506022546108b6565b6005602e5460ff1660068111156108ab57fe5b14156108b657506028545b90565b60006001602e5460ff1660068111156108ce57fe5b14806108ea57506003602e5460ff1660068111156108e857fe5b145b8061090557506005602e5460ff16600681111561090357fe5b145b151561091057600080fd5b6001602e5460ff16600681111561092357fe5b14156109325750601d546108b6565b6003602e5460ff16600681111561094557fe5b141561095457506023546108b6565b6005602e5460ff16600681111561096757fe5b14156108b657506029546108b6565b60006001602e5460ff16600681111561098b57fe5b14806109a757506003602e5460ff1660068111156109a557fe5b145b806109c257506005602e5460ff1660068111156109c057fe5b145b15156109cd57600080fd5b6001602e5460ff1660068111156109e057fe5b14156109ef5750601a546108b6565b6003602e5460ff166006811115610a0257fe5b1415610a1157506020546108b6565b6005602e5460ff166006811115610a2457fe5b14156108b657506026546108b6565b60006001602e5460ff166006811115610a4857fe5b1480610a6457506003602e5460ff166006811115610a6257fe5b145b80610a7f57506005602e5460ff166006811115610a7d57fe5b145b1515610a8a57600080fd5b6001602e5460ff166006811115610a9d57fe5b1415610aac57506019546108b6565b6003602e5460ff166006811115610abf57fe5b1415610ace5750601f546108b6565b6005602e5460ff166006811115610ae157fe5b14156108b657506025546108b6565b60006001602e5460ff166006811115610b0557fe5b1480610b2157506003602e5460ff166006811115610b1f57fe5b145b80610b3c57506005602e5460ff166006811115610b3a57fe5b145b1515610b4757600080fd5b6001602e5460ff166006811115610b5a57fe5b1415610b695750601b546108b6565b6003602e5460ff166006811115610b7c57fe5b1415610b8b57506021546108b6565b6005602e5460ff166006811115610b9e57fe5b14156108b657506027546108b6565b60006001602e5460ff166006811115610bc257fe5b1480610bde57506003602e5460ff166006811115610bdc57fe5b145b80610bf957506005602e5460ff166006811115610bf757fe5b145b1515610c0457600080fd5b6001602e5460ff166006811115610c1757fe5b1415610c265750601e546108b6565b6003602e5460ff166006811115610c3957fe5b1415610c4857506024546108b6565b6005602e5460ff166006811115610c5b57fe5b14156108b65750602a546108b6565b60006001602e5460ff166006811115610c7f57fe5b1480610c9b57506003602e5460ff166006811115610c9957fe5b145b80610cb657506005602e5460ff166006811115610cb457fe5b145b1515610cc157600080fd5b6001602e5460ff166006811115610cd457fe5b1415610cf95750600160a060020a0333166000908152602b60205260409020546108b6565b6003602e5460ff166006811115610d0c57fe5b1415610d315750600160a060020a0333166000908152602c60205260409020546108b6565b6005602e5460ff166006811115610d4457fe5b14156108b65750600160a060020a0333166000908152602d60205260409020546108b6565b6000828201838110801590610d7e5750828110155b1515610d8657fe5b9392505050565b6001602e5460ff166006811115610da057fe5b1480610dbc57506003602e5460ff166006811115610dba57fe5b145b80610dd757506005602e5460ff166006811115610dd557fe5b145b1515610de257600080fd5b6001602e5460ff166006811115610df557fe5b1415610e4c57601b54610e089082610d69565b601b55600160a060020a0333166000908152602b6020526040902054610e2e9082610d69565b600160a060020a0333166000908152602b6020526040902055610f1c565b6003602e5460ff166006811115610e5f57fe5b1415610eb657602154610e729082610d69565b602155600160a060020a0333166000908152602c6020526040902054610e989082610d69565b600160a060020a0333166000908152602c6020526040902055610f1c565b6005602e5460ff166006811115610ec957fe5b1415610f1c57602754610edc9082610d69565b602755600160a060020a0333166000908152602d6020526040902054610f029082610d69565b600160a060020a0333166000908152602d60205260409020555b50565b600954600160a060020a0316600090815260166020526040902054610f4b906064600434025b04610d69565b600954600160a060020a0390811660009081526016602052604080822093909355600a5490911681522054610f8590606460043402610f45565b600a54600160a060020a0390811660009081526016602052604080822093909355600b5490911681522054610fbf90606460043402610f45565b600b54600160a060020a0390811660009081526016602052604080822093909355600c5490911681522054610ff990606460023402610f45565b600c54600160a060020a0390811660009081526016602052604080822093909355600d549091168152205461103390606460023402610f45565b600d54600160a060020a0390811660009081526016602052604080822093909355600e549091168152205461106d90606460023402610f45565b600e54600160a060020a0390811660009081526016602052604080822093909355601054909116815220546110a790606460023402610f45565b601054600160a060020a0390811660009081526016602052604080822093909355600f54909116815220546110e190606460023402610f45565b600f54600160a060020a03908116600090815260166020526040808220939093556011549091168152205461111b90606460023402610f45565b601154600160a060020a03908116600090815260166020526040808220939093556012549091168152205461115290606434610f45565b601254600160a060020a03908116600090815260166020526040808220939093556013549091168152205461118c906064604b3402610f45565b601354600160a060020a0316600090815260166020526040902055565b60025481565b60038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112455780601f1061121a57610100808354040283529160200191611245565b820191906000526020600020905b81548152906001019060200180831161122857829003601f168201915b505050505081565b600081158061127f5750600160a060020a03338116600090815260016020908152604080832093871683529290522054155b151561128a57600080fd5b600160a060020a03338116600081815260016020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60065433600160a060020a0390811691161461130e57600080fd5b6001602e5460ff16600681111561132157fe5b1461132b57600080fd5b602e80546002919060ff19166001835b0217905550565b600e54600160a060020a031681565b60075481565b601454600160a060020a031681565b60025490565b600160a060020a0383166000908152602081905260408120548290101561139257600080fd5b600160a060020a0380851660009081526001602090815260408083203390941683529290522054829010156113c657600080fd5b600160a060020a038316600090815260208190526040902054828101116113ec57600080fd5b600160a060020a03831660009081526020819052604090205461140f9083610d69565b600160a060020a03808516600090815260208190526040808220939093559086168152205461143e9083611ba0565b600160a060020a0380861660009081526020818152604080832094909455600181528382203390931682529190915220546114799083611ba0565b600160a060020a03808616600081815260016020908152604080832033861684529091529081902093909355908516916000805160206124fa8339815191529085905190815260200160405180910390a35060019392505050565b60055481565b601254600160a060020a031681565b600080806006602e5460ff16600681111561150057fe5b1461150a57600080fd5b6007546000901161151a57600080fd5b60075442101561152957600080fd5b600160a060020a0333166000908152601760209081526040808320546018909252909120541061155857600080fd5b600854600754420381151561156957fe5b04600101925082600f6017600033600160a060020a0316600160a060020a03168152602001908152602001600020548115156115a157fe5b600160a060020a03331660009081526018602052604090205491900491909102925080830391506115d29082610d69565b600160a060020a03331660009081526018602090815260408083209390935581905220546116009082610d69565b60008033600160a060020a0316600160a060020a031681526020019081526020016000208190555033600160a060020a031630600160a060020a03166000805160206124fa8339815191528360405190815260200160405180910390a3505050565b600f54600160a060020a031681565b60065433600160a060020a0390811691161461168c57600080fd5b6003602e5460ff16600681111561169f57fe5b14806116bb57506004602e5460ff1660068111156116b957fe5b145b15156116c657600080fd5b602e80546005919060ff191660018361133b565b600c54600160a060020a031681565b60155481565b600954600160a060020a031681565b601f5460205460215460225460235460245486565b600160a060020a031660009081526020819052604090205490565b601154600160a060020a031681565b60048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112455780601f1061121a57610100808354040283529160200191611245565b60065433600160a060020a039081169116146117c357600080fd5b6001602e5460ff1660068111156117d657fe5b14806117f257506002602e5460ff1660068111156117f057fe5b145b15156117fd57600080fd5b602e80546003919060ff191660018361133b565b600160a060020a0333166000908152602081905260408120548290101561183757600080fd5b600160a060020a0383166000908152602081905260409020548281011161185d57600080fd5b600160a060020a0333166000908152602081905260409020546118809083611ba0565b600160a060020a0333811660009081526020819052604080822093909355908516815220546118af9083610d69565b60008085600160a060020a0316600160a060020a031681526020019081526020016000208190555082600160a060020a031633600160a060020a03166000805160206124fa8339815191528460405190815260200160405180910390a350600192915050565b601354600160a060020a031681565b601054600160a060020a031681565b602554602654602754602854602954602a5486565b60065433600160a060020a0390811691161461196357600080fd5b6003602e5460ff16600681111561197657fe5b1461198057600080fd5b602e80546004919060ff191660018361133b565b60065433600160a060020a039081169116146119af57600080fd5b6000602e5460ff1660068111156119c257fe5b146119cc57600080fd5b602e80546001919060ff1916828061133b565b600d54600160a060020a031681565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b600b54600160a060020a031681565b601954601a54601b54601c54601d54601e5486565b600160a060020a033316600090815260166020526040812054819011611a6257600080fd5b6002602e5460ff166006811115611a7557fe5b1480611a9157506004602e5460ff166006811115611a8f57fe5b145b80611aac57506006602e5460ff166006811115611aaa57fe5b145b1515611ab757600080fd5b60135433600160a060020a039081169116141580611ae557506006602e5460ff166006811115611ae357fe5b145b1515611af057600080fd5b50600160a060020a033316600081815260166020526040808220805492905590919082156108fc0290839051600060405180830381858888f193505050501515610f1c57600080fd5b60065433600160a060020a03908116911614611b5457600080fd5b6005602e5460ff166006811115611b6757fe5b14611b7157600080fd5b602e805460ff19166006179055611b86611bb2565b62ed4e004201600755565b600a54600160a060020a031681565b600082821115611bac57fe5b50900390565b60065460009081908190819033600160a060020a03908116911614611bd657600080fd5b600254606490602802601554601354600160a060020a031660009081526020819052604090205492909104955085039350611c16906064604b8602610f45565b60138054600160a060020a039081166000908152602081905260409020929092555481169030166000805160206124fa8339815191526064604b87020460405190815260200160405180910390a3600954600160a060020a0316600090815260208190526040902054611c9890606480600487025b04601902811515610f4557fe5b60098054600160a060020a039081166000908152602081905260409020929092555481169030166000805160206124fa8339815191526064601960048802829004020460405190815260200160405180910390a3600954600160a060020a0316600090815260176020526040902054611d2090606480600487025b04604b02811515610f4557fe5b600954600160a060020a03908116600090815260176020908152604080832094909455600a549092168152908190522054611d619060648060048702611c8b565b600a8054600160a060020a039081166000908152602081905260409020929092555481169030166000805160206124fa8339815191526064601960048802829004020460405190815260200160405180910390a3600a54600160a060020a0316600090815260176020526040902054611de09060648060048702611d13565b600a54600160a060020a03908116600090815260176020908152604080832094909455600b549092168152908190522054611e219060648060048702611c8b565b600b8054600160a060020a039081166000908152602081905260409020929092555481169030166000805160206124fa8339815191526064601960048802829004020460405190815260200160405180910390a3600b54600160a060020a0316600090815260176020526040902054611ea09060648060048702611d13565b600b54600160a060020a03908116600090815260176020908152604080832094909455600c549092168152908190522054611ee19060648060028702611c8b565b600c8054600160a060020a039081166000908152602081905260409020929092555481169030166000805160206124fa8339815191526064601960028802829004020460405190815260200160405180910390a3600c54600160a060020a0316600090815260176020526040902054611f609060648060028702611d13565b600c54600160a060020a03908116600090815260176020908152604080832094909455600d549092168152908190522054611fa19060648060028702611c8b565b600d8054600160a060020a039081166000908152602081905260409020929092555481169030166000805160206124fa8339815191526064601960028802829004020460405190815260200160405180910390a3600d54600160a060020a03166000908152601760205260409020546120209060648060028702611d13565b600d54600160a060020a03908116600090815260176020908152604080832094909455600e5490921681529081905220546120619060648060028702611c8b565b600e8054600160a060020a039081166000908152602081905260409020929092555481169030166000805160206124fa8339815191526064601960028802829004020460405190815260200160405180910390a3600e54600160a060020a03166000908152601760205260409020546120e09060648060028702611d13565b600e54600160a060020a03908116600090815260176020908152604080832094909455600f5490921681529081905220546121219060648060028702611c8b565b600f8054600160a060020a039081166000908152602081905260409020929092555481169030166000805160206124fa8339815191526064601960028802829004020460405190815260200160405180910390a3600f54600160a060020a03166000908152601760205260409020546121a09060648060028702611d13565b600f54600160a060020a0390811660009081526017602090815260408083209490945560105490921681529081905220546121e19060648060028702611c8b565b60108054600160a060020a039081166000908152602081905260409020929092555481169030166000805160206124fa8339815191526064601960028802829004020460405190815260200160405180910390a3601054600160a060020a03166000908152601760205260409020546122609060648060028702611d13565b601054600160a060020a03908116600090815260176020908152604080832094909455601254909216815290819052205461229e9060648086611c8b565b60128054600160a060020a039081166000908152602081905260409020929092555481169030166000805160206124fa83398151915260646019818804020460405190815260200160405180910390a3601254600160a060020a03166000908152601760205260409020546123169060648086611d13565b601254600160a060020a0390811660009081526017602090815260408083209490945560115490921681529081905220546123579060648060028702611c8b565b60118054600160a060020a039081166000908152602081905260409020929092555481169030166000805160206124fa8339815191526064601960028802829004020460405190815260200160405180910390a3601154600160a060020a03166000908152601760205260409020546123d69060648060028702611d13565b601154600160a060020a0316600090815260176020526040902055600254606490603702601354600160a060020a031660009081526020819052604090205491900492506124249083610d69565b60138054600160a060020a039081166000908152602081905260409081902093909355905481169130909116906000805160206124fa8339815191529085905190815260200160405180910390a3600254606490600502601454600160a060020a031660009081526020819052604090205491900491506124a59082610d69565b60148054600160a060020a039081166000908152602081905260409081902093909355905481169130909116906000805160206124fa8339815191529084905190815260200160405180910390a3505050505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058200bf3f5a5400928b177ba947c2df908c8ce161b4d265c27be063278b6d80820b500290000000000000000000000005dd16d35365061087ca012dbc0429641e05464ce000000000000000000000000188d29a396ab5549d625393a8fc27373177488e00000000000000000000000008af13310851db450e13f0e02727ab2d1913a7c55000000000000000000000000cce52ec2410a181745e580e789bd56c17cac0066000000000000000000000000f264815a23d1e15a53aaa17bc437630e68a26ca9000000000000000000000000e1ecc9fe982499f424664631c65cc6813f198b21000000000000000000000000a49aea7555ef71f93ce2c17e9db843d81705b5e200000000000000000000000016d0f495052df4143e2895622a02dd654a87a5790000000000000000000000003393b9ab31163bb21c34bd4d463b2c593b83bea50000000000000000000000005c5e5ac3f2b5d02c123251c3f5f83dbbb044ee8900000000000000000000000075c14458e3e3239bae5204b37811ff2dedde94780000000000000000000000007af8255b543599fd5d22955dffeaf8c923022b38

Deployed Bytecode

0x6060604052600436106102025763ffffffff7c0100000000000000000000000000000000000000000000000000000000600035041662fdc73f811461039a578063047fc9aa146103bf57806306fdde03146103d2578063095ea7b31461045c5780630c26ac30146104925780630fac20e1146104a757806313d033c0146104d65780631615d035146104e957806318160ddd146104fc57806323b872dd1461050f5780632a18ca16146105375780632ca1aa161461054a578063313ce5671461055d578063341cc8171461057057806339f05521146105835780633be1c410146105965780633dbae9f9146105a95780634266806b146105bc578063518ab2a8146105cf57806366005ede146105e25780636f3ad341146105f557806370a082311461064157806390427b6c1461066057806395d89b4114610673578063a0695fc214610686578063a9059cbb14610699578063ac7b986f146106bb578063af0638f6146106ce578063b154f47c146106e1578063bb814746146106f4578063c2d2516714610707578063c467706d1461071a578063cb6b1f051461072d578063d042ce2c14610740578063dcd6561d14610753578063dd62ed3e14610766578063def1a2da1461078b578063e50e2f651461079e578063eb570b05146107b1578063ee224707146107c4578063ee55efee146107d7578063f3635a02146107ea575b60008080808080806001602e5460ff16600681111561021d57fe5b148061023957506003602e5460ff16600681111561023757fe5b145b8061025457506005602e5460ff16600681111561025257fe5b145b151561025f57600080fd5b6000341161026c57600080fd5b6102746107fd565b341015801561028a57506102866108b9565b3411155b151561029557600080fd5b61029d610976565b96506102a7610a33565b95506102b1610af0565b94506102bb610bad565b93506102c5610c6a565b9250349150600554600a0a87838115156102db57fe5b04029050848101869011156102ef57600080fd5b808301849011156102ff57600080fd5b600160a060020a0333166000908152602081905260409020546103229082610d69565b600160a060020a0333166000908152602081905260409020556015546103489082610d69565b60155561035481610d8d565b61035c610f1f565b33600160a060020a031630600160a060020a03166000805160206124fa8339815191528360405190815260200160405180910390a350505050505050005b34156103a557600080fd5b6103ad6107fd565b60405190815260200160405180910390f35b34156103ca57600080fd5b6103ad6111a9565b34156103dd57600080fd5b6103e56111af565b60405160208082528190810183818151815260200191508051906020019080838360005b83811015610421578082015183820152602001610409565b50505050905090810190601f16801561044e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561046757600080fd5b61047e600160a060020a036004351660243561124d565b604051901515815260200160405180910390f35b341561049d57600080fd5b6104a56112f3565b005b34156104b257600080fd5b6104ba611342565b604051600160a060020a03909116815260200160405180910390f35b34156104e157600080fd5b6103ad611351565b34156104f457600080fd5b6104ba611357565b341561050757600080fd5b6103ad611366565b341561051a57600080fd5b61047e600160a060020a036004358116906024351660443561136c565b341561054257600080fd5b6103ad610a33565b341561055557600080fd5b6103ad610bad565b341561056857600080fd5b6103ad6114d4565b341561057b57600080fd5b6104ba6114da565b341561058e57600080fd5b6104a56114e9565b34156105a157600080fd5b6104ba611662565b34156105b457600080fd5b6104a5611671565b34156105c757600080fd5b6104ba6116da565b34156105da57600080fd5b6103ad6116e9565b34156105ed57600080fd5b6104ba6116ef565b341561060057600080fd5b6106086116fe565b60405180878152602001868152602001858152602001848152602001838152602001828152602001965050505050505060405180910390f35b341561064c57600080fd5b6103ad600160a060020a0360043516611713565b341561066b57600080fd5b6104ba61172e565b341561067e57600080fd5b6103e561173d565b341561069157600080fd5b6104a56117a8565b34156106a457600080fd5b61047e600160a060020a0360043516602435611811565b34156106c657600080fd5b6104ba611915565b34156106d957600080fd5b6103ad6108b9565b34156106ec57600080fd5b6104ba611924565b34156106ff57600080fd5b610608611933565b341561071257600080fd5b6104a5611948565b341561072557600080fd5b6104a5611994565b341561073857600080fd5b6104ba6119df565b341561074b57600080fd5b6103ad610c6a565b341561075e57600080fd5b6103ad610af0565b341561077157600080fd5b6103ad600160a060020a03600435811690602435166119ee565b341561079657600080fd5b6104ba611a19565b34156107a957600080fd5b610608611a28565b34156107bc57600080fd5b6103ad610976565b34156107cf57600080fd5b6104a5611a3d565b34156107e257600080fd5b6104a5611b39565b34156107f557600080fd5b6104ba611b91565b60006001602e5460ff16600681111561081257fe5b148061082e57506003602e5460ff16600681111561082c57fe5b145b8061084957506005602e5460ff16600681111561084757fe5b145b151561085457600080fd5b6001602e5460ff16600681111561086757fe5b14156108765750601c546108b6565b6003602e5460ff16600681111561088957fe5b141561089857506022546108b6565b6005602e5460ff1660068111156108ab57fe5b14156108b657506028545b90565b60006001602e5460ff1660068111156108ce57fe5b14806108ea57506003602e5460ff1660068111156108e857fe5b145b8061090557506005602e5460ff16600681111561090357fe5b145b151561091057600080fd5b6001602e5460ff16600681111561092357fe5b14156109325750601d546108b6565b6003602e5460ff16600681111561094557fe5b141561095457506023546108b6565b6005602e5460ff16600681111561096757fe5b14156108b657506029546108b6565b60006001602e5460ff16600681111561098b57fe5b14806109a757506003602e5460ff1660068111156109a557fe5b145b806109c257506005602e5460ff1660068111156109c057fe5b145b15156109cd57600080fd5b6001602e5460ff1660068111156109e057fe5b14156109ef5750601a546108b6565b6003602e5460ff166006811115610a0257fe5b1415610a1157506020546108b6565b6005602e5460ff166006811115610a2457fe5b14156108b657506026546108b6565b60006001602e5460ff166006811115610a4857fe5b1480610a6457506003602e5460ff166006811115610a6257fe5b145b80610a7f57506005602e5460ff166006811115610a7d57fe5b145b1515610a8a57600080fd5b6001602e5460ff166006811115610a9d57fe5b1415610aac57506019546108b6565b6003602e5460ff166006811115610abf57fe5b1415610ace5750601f546108b6565b6005602e5460ff166006811115610ae157fe5b14156108b657506025546108b6565b60006001602e5460ff166006811115610b0557fe5b1480610b2157506003602e5460ff166006811115610b1f57fe5b145b80610b3c57506005602e5460ff166006811115610b3a57fe5b145b1515610b4757600080fd5b6001602e5460ff166006811115610b5a57fe5b1415610b695750601b546108b6565b6003602e5460ff166006811115610b7c57fe5b1415610b8b57506021546108b6565b6005602e5460ff166006811115610b9e57fe5b14156108b657506027546108b6565b60006001602e5460ff166006811115610bc257fe5b1480610bde57506003602e5460ff166006811115610bdc57fe5b145b80610bf957506005602e5460ff166006811115610bf757fe5b145b1515610c0457600080fd5b6001602e5460ff166006811115610c1757fe5b1415610c265750601e546108b6565b6003602e5460ff166006811115610c3957fe5b1415610c4857506024546108b6565b6005602e5460ff166006811115610c5b57fe5b14156108b65750602a546108b6565b60006001602e5460ff166006811115610c7f57fe5b1480610c9b57506003602e5460ff166006811115610c9957fe5b145b80610cb657506005602e5460ff166006811115610cb457fe5b145b1515610cc157600080fd5b6001602e5460ff166006811115610cd457fe5b1415610cf95750600160a060020a0333166000908152602b60205260409020546108b6565b6003602e5460ff166006811115610d0c57fe5b1415610d315750600160a060020a0333166000908152602c60205260409020546108b6565b6005602e5460ff166006811115610d4457fe5b14156108b65750600160a060020a0333166000908152602d60205260409020546108b6565b6000828201838110801590610d7e5750828110155b1515610d8657fe5b9392505050565b6001602e5460ff166006811115610da057fe5b1480610dbc57506003602e5460ff166006811115610dba57fe5b145b80610dd757506005602e5460ff166006811115610dd557fe5b145b1515610de257600080fd5b6001602e5460ff166006811115610df557fe5b1415610e4c57601b54610e089082610d69565b601b55600160a060020a0333166000908152602b6020526040902054610e2e9082610d69565b600160a060020a0333166000908152602b6020526040902055610f1c565b6003602e5460ff166006811115610e5f57fe5b1415610eb657602154610e729082610d69565b602155600160a060020a0333166000908152602c6020526040902054610e989082610d69565b600160a060020a0333166000908152602c6020526040902055610f1c565b6005602e5460ff166006811115610ec957fe5b1415610f1c57602754610edc9082610d69565b602755600160a060020a0333166000908152602d6020526040902054610f029082610d69565b600160a060020a0333166000908152602d60205260409020555b50565b600954600160a060020a0316600090815260166020526040902054610f4b906064600434025b04610d69565b600954600160a060020a0390811660009081526016602052604080822093909355600a5490911681522054610f8590606460043402610f45565b600a54600160a060020a0390811660009081526016602052604080822093909355600b5490911681522054610fbf90606460043402610f45565b600b54600160a060020a0390811660009081526016602052604080822093909355600c5490911681522054610ff990606460023402610f45565b600c54600160a060020a0390811660009081526016602052604080822093909355600d549091168152205461103390606460023402610f45565b600d54600160a060020a0390811660009081526016602052604080822093909355600e549091168152205461106d90606460023402610f45565b600e54600160a060020a0390811660009081526016602052604080822093909355601054909116815220546110a790606460023402610f45565b601054600160a060020a0390811660009081526016602052604080822093909355600f54909116815220546110e190606460023402610f45565b600f54600160a060020a03908116600090815260166020526040808220939093556011549091168152205461111b90606460023402610f45565b601154600160a060020a03908116600090815260166020526040808220939093556012549091168152205461115290606434610f45565b601254600160a060020a03908116600090815260166020526040808220939093556013549091168152205461118c906064604b3402610f45565b601354600160a060020a0316600090815260166020526040902055565b60025481565b60038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112455780601f1061121a57610100808354040283529160200191611245565b820191906000526020600020905b81548152906001019060200180831161122857829003601f168201915b505050505081565b600081158061127f5750600160a060020a03338116600090815260016020908152604080832093871683529290522054155b151561128a57600080fd5b600160a060020a03338116600081815260016020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60065433600160a060020a0390811691161461130e57600080fd5b6001602e5460ff16600681111561132157fe5b1461132b57600080fd5b602e80546002919060ff19166001835b0217905550565b600e54600160a060020a031681565b60075481565b601454600160a060020a031681565b60025490565b600160a060020a0383166000908152602081905260408120548290101561139257600080fd5b600160a060020a0380851660009081526001602090815260408083203390941683529290522054829010156113c657600080fd5b600160a060020a038316600090815260208190526040902054828101116113ec57600080fd5b600160a060020a03831660009081526020819052604090205461140f9083610d69565b600160a060020a03808516600090815260208190526040808220939093559086168152205461143e9083611ba0565b600160a060020a0380861660009081526020818152604080832094909455600181528382203390931682529190915220546114799083611ba0565b600160a060020a03808616600081815260016020908152604080832033861684529091529081902093909355908516916000805160206124fa8339815191529085905190815260200160405180910390a35060019392505050565b60055481565b601254600160a060020a031681565b600080806006602e5460ff16600681111561150057fe5b1461150a57600080fd5b6007546000901161151a57600080fd5b60075442101561152957600080fd5b600160a060020a0333166000908152601760209081526040808320546018909252909120541061155857600080fd5b600854600754420381151561156957fe5b04600101925082600f6017600033600160a060020a0316600160a060020a03168152602001908152602001600020548115156115a157fe5b600160a060020a03331660009081526018602052604090205491900491909102925080830391506115d29082610d69565b600160a060020a03331660009081526018602090815260408083209390935581905220546116009082610d69565b60008033600160a060020a0316600160a060020a031681526020019081526020016000208190555033600160a060020a031630600160a060020a03166000805160206124fa8339815191528360405190815260200160405180910390a3505050565b600f54600160a060020a031681565b60065433600160a060020a0390811691161461168c57600080fd5b6003602e5460ff16600681111561169f57fe5b14806116bb57506004602e5460ff1660068111156116b957fe5b145b15156116c657600080fd5b602e80546005919060ff191660018361133b565b600c54600160a060020a031681565b60155481565b600954600160a060020a031681565b601f5460205460215460225460235460245486565b600160a060020a031660009081526020819052604090205490565b601154600160a060020a031681565b60048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112455780601f1061121a57610100808354040283529160200191611245565b60065433600160a060020a039081169116146117c357600080fd5b6001602e5460ff1660068111156117d657fe5b14806117f257506002602e5460ff1660068111156117f057fe5b145b15156117fd57600080fd5b602e80546003919060ff191660018361133b565b600160a060020a0333166000908152602081905260408120548290101561183757600080fd5b600160a060020a0383166000908152602081905260409020548281011161185d57600080fd5b600160a060020a0333166000908152602081905260409020546118809083611ba0565b600160a060020a0333811660009081526020819052604080822093909355908516815220546118af9083610d69565b60008085600160a060020a0316600160a060020a031681526020019081526020016000208190555082600160a060020a031633600160a060020a03166000805160206124fa8339815191528460405190815260200160405180910390a350600192915050565b601354600160a060020a031681565b601054600160a060020a031681565b602554602654602754602854602954602a5486565b60065433600160a060020a0390811691161461196357600080fd5b6003602e5460ff16600681111561197657fe5b1461198057600080fd5b602e80546004919060ff191660018361133b565b60065433600160a060020a039081169116146119af57600080fd5b6000602e5460ff1660068111156119c257fe5b146119cc57600080fd5b602e80546001919060ff1916828061133b565b600d54600160a060020a031681565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b600b54600160a060020a031681565b601954601a54601b54601c54601d54601e5486565b600160a060020a033316600090815260166020526040812054819011611a6257600080fd5b6002602e5460ff166006811115611a7557fe5b1480611a9157506004602e5460ff166006811115611a8f57fe5b145b80611aac57506006602e5460ff166006811115611aaa57fe5b145b1515611ab757600080fd5b60135433600160a060020a039081169116141580611ae557506006602e5460ff166006811115611ae357fe5b145b1515611af057600080fd5b50600160a060020a033316600081815260166020526040808220805492905590919082156108fc0290839051600060405180830381858888f193505050501515610f1c57600080fd5b60065433600160a060020a03908116911614611b5457600080fd5b6005602e5460ff166006811115611b6757fe5b14611b7157600080fd5b602e805460ff19166006179055611b86611bb2565b62ed4e004201600755565b600a54600160a060020a031681565b600082821115611bac57fe5b50900390565b60065460009081908190819033600160a060020a03908116911614611bd657600080fd5b600254606490602802601554601354600160a060020a031660009081526020819052604090205492909104955085039350611c16906064604b8602610f45565b60138054600160a060020a039081166000908152602081905260409020929092555481169030166000805160206124fa8339815191526064604b87020460405190815260200160405180910390a3600954600160a060020a0316600090815260208190526040902054611c9890606480600487025b04601902811515610f4557fe5b60098054600160a060020a039081166000908152602081905260409020929092555481169030166000805160206124fa8339815191526064601960048802829004020460405190815260200160405180910390a3600954600160a060020a0316600090815260176020526040902054611d2090606480600487025b04604b02811515610f4557fe5b600954600160a060020a03908116600090815260176020908152604080832094909455600a549092168152908190522054611d619060648060048702611c8b565b600a8054600160a060020a039081166000908152602081905260409020929092555481169030166000805160206124fa8339815191526064601960048802829004020460405190815260200160405180910390a3600a54600160a060020a0316600090815260176020526040902054611de09060648060048702611d13565b600a54600160a060020a03908116600090815260176020908152604080832094909455600b549092168152908190522054611e219060648060048702611c8b565b600b8054600160a060020a039081166000908152602081905260409020929092555481169030166000805160206124fa8339815191526064601960048802829004020460405190815260200160405180910390a3600b54600160a060020a0316600090815260176020526040902054611ea09060648060048702611d13565b600b54600160a060020a03908116600090815260176020908152604080832094909455600c549092168152908190522054611ee19060648060028702611c8b565b600c8054600160a060020a039081166000908152602081905260409020929092555481169030166000805160206124fa8339815191526064601960028802829004020460405190815260200160405180910390a3600c54600160a060020a0316600090815260176020526040902054611f609060648060028702611d13565b600c54600160a060020a03908116600090815260176020908152604080832094909455600d549092168152908190522054611fa19060648060028702611c8b565b600d8054600160a060020a039081166000908152602081905260409020929092555481169030166000805160206124fa8339815191526064601960028802829004020460405190815260200160405180910390a3600d54600160a060020a03166000908152601760205260409020546120209060648060028702611d13565b600d54600160a060020a03908116600090815260176020908152604080832094909455600e5490921681529081905220546120619060648060028702611c8b565b600e8054600160a060020a039081166000908152602081905260409020929092555481169030166000805160206124fa8339815191526064601960028802829004020460405190815260200160405180910390a3600e54600160a060020a03166000908152601760205260409020546120e09060648060028702611d13565b600e54600160a060020a03908116600090815260176020908152604080832094909455600f5490921681529081905220546121219060648060028702611c8b565b600f8054600160a060020a039081166000908152602081905260409020929092555481169030166000805160206124fa8339815191526064601960028802829004020460405190815260200160405180910390a3600f54600160a060020a03166000908152601760205260409020546121a09060648060028702611d13565b600f54600160a060020a0390811660009081526017602090815260408083209490945560105490921681529081905220546121e19060648060028702611c8b565b60108054600160a060020a039081166000908152602081905260409020929092555481169030166000805160206124fa8339815191526064601960028802829004020460405190815260200160405180910390a3601054600160a060020a03166000908152601760205260409020546122609060648060028702611d13565b601054600160a060020a03908116600090815260176020908152604080832094909455601254909216815290819052205461229e9060648086611c8b565b60128054600160a060020a039081166000908152602081905260409020929092555481169030166000805160206124fa83398151915260646019818804020460405190815260200160405180910390a3601254600160a060020a03166000908152601760205260409020546123169060648086611d13565b601254600160a060020a0390811660009081526017602090815260408083209490945560115490921681529081905220546123579060648060028702611c8b565b60118054600160a060020a039081166000908152602081905260409020929092555481169030166000805160206124fa8339815191526064601960028802829004020460405190815260200160405180910390a3601154600160a060020a03166000908152601760205260409020546123d69060648060028702611d13565b601154600160a060020a0316600090815260176020526040902055600254606490603702601354600160a060020a031660009081526020819052604090205491900492506124249083610d69565b60138054600160a060020a039081166000908152602081905260409081902093909355905481169130909116906000805160206124fa8339815191529085905190815260200160405180910390a3600254606490600502601454600160a060020a031660009081526020819052604090205491900491506124a59082610d69565b60148054600160a060020a039081166000908152602081905260409081902093909355905481169130909116906000805160206124fa8339815191529084905190815260200160405180910390a3505050505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058200bf3f5a5400928b177ba947c2df908c8ce161b4d265c27be063278b6d80820b50029

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000005dd16d35365061087ca012dbc0429641e05464ce000000000000000000000000188d29a396ab5549d625393a8fc27373177488e00000000000000000000000008af13310851db450e13f0e02727ab2d1913a7c55000000000000000000000000cce52ec2410a181745e580e789bd56c17cac0066000000000000000000000000f264815a23d1e15a53aaa17bc437630e68a26ca9000000000000000000000000e1ecc9fe982499f424664631c65cc6813f198b21000000000000000000000000a49aea7555ef71f93ce2c17e9db843d81705b5e200000000000000000000000016d0f495052df4143e2895622a02dd654a87a5790000000000000000000000003393b9ab31163bb21c34bd4d463b2c593b83bea50000000000000000000000005c5e5ac3f2b5d02c123251c3f5f83dbbb044ee8900000000000000000000000075c14458e3e3239bae5204b37811ff2dedde94780000000000000000000000007af8255b543599fd5d22955dffeaf8c923022b38

-----Decoded View---------------
Arg [0] : _shareholder1Account (address): 0x5dd16d35365061087cA012DbC0429641e05464ce
Arg [1] : _shareholder2Account (address): 0x188d29A396Ab5549d625393A8fc27373177488e0
Arg [2] : _shareholder3Account (address): 0x8Af13310851db450E13f0E02727Ab2D1913a7c55
Arg [3] : _core1Account (address): 0xCCE52ec2410A181745e580E789bd56c17CaC0066
Arg [4] : _core2Account (address): 0xF264815A23d1e15A53aaA17bc437630e68a26Ca9
Arg [5] : _dev1Account (address): 0xe1ECC9FE982499f424664631c65cc6813F198b21
Arg [6] : _dev2Account (address): 0xa49Aea7555eF71F93cE2C17E9dB843d81705B5E2
Arg [7] : _dev3Account (address): 0x16d0f495052dF4143e2895622A02Dd654A87a579
Arg [8] : _dev4Account (address): 0x3393b9AB31163BB21c34bd4D463B2C593B83bea5
Arg [9] : _brandingAccount (address): 0x5C5E5Ac3F2B5D02C123251C3F5F83dbBb044eE89
Arg [10] : _lotusTokenAccount (address): 0x75c14458E3e3239bae5204b37811Ff2DedDe9478
Arg [11] : _airdropContractAccount (address): 0x7AF8255b543599Fd5d22955DfFeaF8c923022b38

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000005dd16d35365061087ca012dbc0429641e05464ce
Arg [1] : 000000000000000000000000188d29a396ab5549d625393a8fc27373177488e0
Arg [2] : 0000000000000000000000008af13310851db450e13f0e02727ab2d1913a7c55
Arg [3] : 000000000000000000000000cce52ec2410a181745e580e789bd56c17cac0066
Arg [4] : 000000000000000000000000f264815a23d1e15a53aaa17bc437630e68a26ca9
Arg [5] : 000000000000000000000000e1ecc9fe982499f424664631c65cc6813f198b21
Arg [6] : 000000000000000000000000a49aea7555ef71f93ce2c17e9db843d81705b5e2
Arg [7] : 00000000000000000000000016d0f495052df4143e2895622a02dd654a87a579
Arg [8] : 0000000000000000000000003393b9ab31163bb21c34bd4d463b2c593b83bea5
Arg [9] : 0000000000000000000000005c5e5ac3f2b5d02c123251c3f5f83dbbb044ee89
Arg [10] : 00000000000000000000000075c14458e3e3239bae5204b37811ff2dedde9478
Arg [11] : 0000000000000000000000007af8255b543599fd5d22955dffeaf8c923022b38


Swarm Source

bzzr://0bf3f5a5400928b177ba947c2df908c8ce161b4d265c27be063278b6d80820b5
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.