ETH Price: $3,102.40 (+1.17%)
Gas: 2 Gwei

Token

Privatesale Tokamak Network Token (PrivateTON)
 

Overview

Max Total Supply

144,000.083230664748493368 PrivateTON

Holders

33

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
4000d.eth
Balance
352.000002243638669837 PrivateTON

Value
$0.00
0x6a4b25C58173976c4a2BD2151028C3759A1EaDD3
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:
VestingToken

Compiler Version
v0.5.8+commit.23d335f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-10-31
*/

// File: contracts/minime/Controlled.sol

pragma solidity ^0.5.0;

contract Controlled {
    /// @notice The address of the controller is the only address that can call
    ///  a function with this modifier
    modifier onlyController { require(msg.sender == controller, "Controlled: caller is not the controller"); _; }

    address payable public controller;

    constructor () public { controller = msg.sender;}

    /// @notice Changes the controller of the contract
    /// @param _newController The new controller of the contract
    function changeController(address payable _newController) public onlyController {
        controller = _newController;
    }
}

// File: contracts/minime/TokenController.sol

pragma solidity ^0.5.0;

/// @dev The token controller contract must implement these functions
contract TokenController {
    /// @notice Called when `_owner` sends ether to the MiniMe Token contract
    /// @param _owner The address that sent the ether to create tokens
    /// @return True if the ether is accepted, false if it throws
    function proxyPayment(address _owner) public payable returns(bool);

    /// @notice Notifies the controller about a token transfer allowing the
    ///  controller to react if desired
    /// @param _from The origin of the transfer
    /// @param _to The destination of the transfer
    /// @param _amount The amount of the transfer
    /// @return False if the controller does not authorize the transfer
    function onTransfer(address _from, address _to, uint _amount) public returns(bool);

    /// @notice Notifies the controller about an approval allowing the
    ///  controller to react if desired
    /// @param _owner The address that calls `approve()`
    /// @param _spender The spender in the `approve()` call
    /// @param _amount The amount in the `approve()` call
    /// @return False if the controller does not authorize the approval
    function onApprove(address _owner, address _spender, uint _amount) public
        returns(bool);
}

// File: contracts/minime/MiniMeToken.sol

pragma solidity ^0.5.0;

/*
    Copyright 2016, Jordi Baylina

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

/// @title MiniMeToken Contract
/// @author Jordi Baylina
/// @dev This token contract's goal is to make it easy for anyone to clone this
///  token using the token distribution at a given block, this will allow DAO's
///  and DApps to upgrade their features in a decentralized manner without
///  affecting the original token
/// @dev It is ERC20 compliant, but still needs to under go further testing.



contract ApproveAndCallFallBack {
    function receiveApproval(address from, uint256 _amount, address _token, bytes memory _data) public;
}

/// @dev The actual token contract, the default controller is the msg.sender
///  that deploys the contract, so usually this token will be deployed by a
///  token controller contract, which Giveth will call a "Campaign"
contract MiniMeToken is Controlled {

    string public name;                //The Token's name: e.g. DigixDAO Tokens
    uint8 public decimals;             //Number of decimals of the smallest unit
    string public symbol;              //An identifier: e.g. REP
    string public version = 'MMT_0.2'; //An arbitrary versioning scheme


    /// @dev `Checkpoint` is the structure that attaches a block number to a
    ///  given value, the block number attached is the one that last changed the
    ///  value
    struct  Checkpoint {

        // `fromBlock` is the block number that the value was generated from
        uint128 fromBlock;

        // `value` is the amount of tokens at a specific block number
        uint128 value;
    }

    // `parentToken` is the Token address that was cloned to produce this token;
    //  it will be 0x0 for a token that was not cloned
    MiniMeToken public parentToken;

    // `parentSnapShotBlock` is the block number from the Parent Token that was
    //  used to determine the initial distribution of the Clone Token
    uint public parentSnapShotBlock;

    // `creationBlock` is the block number that the Clone Token was created
    uint public creationBlock;

    // `balances` is the map that tracks the balance of each address, in this
    //  contract when the balance changes the block number that the change
    //  occurred is also included in the map
    mapping (address => Checkpoint[]) balances;

    // `allowed` tracks any extra transfer rights as in all ERC20 tokens
    mapping (address => mapping (address => uint256)) allowed;

    // Tracks the history of the `totalSupply` of the token
    Checkpoint[] totalSupplyHistory;

    // Flag that determines if the token is transferable or not.
    bool public transfersEnabled;

    // The factory used to create new clone tokens
    MiniMeTokenFactory public tokenFactory;

////////////////
// Constructor
////////////////

    /// @notice Constructor to create a MiniMeToken
    /// @param _tokenFactory The address of the MiniMeTokenFactory contract that
    ///  will create the Clone token contracts, the token factory needs to be
    ///  deployed first
    /// @param _parentToken Address of the parent token, set to 0x0 if it is a
    ///  new token
    /// @param _parentSnapShotBlock Block of the parent token that will
    ///  determine the initial distribution of the clone token, set to 0 if it
    ///  is a new token
    /// @param _tokenName Name of the new token
    /// @param _decimalUnits Number of decimals of the new token
    /// @param _tokenSymbol Token Symbol for the new token
    /// @param _transfersEnabled If true, tokens will be able to be transferred
    constructor (
        address _tokenFactory,
        address payable _parentToken,
        uint _parentSnapShotBlock,
        string memory _tokenName,
        uint8 _decimalUnits,
        string memory  _tokenSymbol,
        bool _transfersEnabled
    ) public {
        tokenFactory = MiniMeTokenFactory(_tokenFactory);
        name = _tokenName;                                 // Set the name
        decimals = _decimalUnits;                          // Set the decimals
        symbol = _tokenSymbol;                             // Set the symbol
        parentToken = MiniMeToken(_parentToken);
        parentSnapShotBlock = _parentSnapShotBlock;
        transfersEnabled = _transfersEnabled;
        creationBlock = block.number;
    }


///////////////////
// ERC20 Methods
///////////////////

    /// @notice Send `_amount` tokens to `_to` from `msg.sender`
    /// @param _to The address of the recipient
    /// @param _amount The amount of tokens to be transferred
    /// @return Whether the transfer was successful or not
    function transfer(address _to, uint256 _amount) public returns (bool success) {
        require(transfersEnabled, "MiniMeToken: transfer is not enable");
        doTransfer(msg.sender, _to, _amount);
        return true;
    }

    /// @notice Send `_amount` tokens to `_to` from `_from` on the condition it
    ///  is approved by `_from`
    /// @param _from The address holding the tokens being transferred
    /// @param _to The address of the recipient
    /// @param _amount The amount of tokens to be transferred
    /// @return True if the transfer was successful
    function transferFrom(address _from, address _to, uint256 _amount
    ) public returns (bool success) {

        // The controller of this contract can move tokens around at will,
        //  this is important to recognize! Confirm that you trust the
        //  controller of this contract, which in most situations should be
        //  another open source smart contract or 0x0
        if (msg.sender != controller) {
            require(transfersEnabled, "MiniMeToken: transfer is not enable");

            // The standard ERC 20 transferFrom functionality
            require(allowed[_from][msg.sender] >= _amount);
            allowed[_from][msg.sender] -= _amount;
        }
        doTransfer(_from, _to, _amount);
        return true;
    }

    /// @dev This is the actual transfer function in the token contract, it can
    ///  only be called by other functions in this contract.
    /// @param _from The address holding the tokens being transferred
    /// @param _to The address of the recipient
    /// @param _amount The amount of tokens to be transferred
    /// @return True if the transfer was successful
    function doTransfer(address _from, address _to, uint _amount
    ) internal {

           if (_amount == 0) {
               emit Transfer(_from, _to, _amount);    // Follow the spec to louch the event when transfer 0
               return;
           }

           require(parentSnapShotBlock < block.number);

           // Do not allow transfer to 0x0 or the token contract itself
           require((_to != address(0)) && (_to != address(this)));

           // If the amount being transfered is more than the balance of the
           //  account the transfer throws
           uint previousBalanceFrom = balanceOfAt(_from, block.number);

           require(previousBalanceFrom >= _amount);

           // Alerts the token controller of the transfer
           if (isContract(controller)) {
               require(TokenController(controller).onTransfer(_from, _to, _amount));
           }

           // First update the balance array with the new value for the address
           //  sending the tokens
           updateValueAtNow(balances[_from], previousBalanceFrom - _amount);

           // Then update the balance array with the new value for the address
           //  receiving the tokens
           uint previousBalanceTo = balanceOfAt(_to, block.number);
           require(previousBalanceTo + _amount >= previousBalanceTo); // Check for overflow
           updateValueAtNow(balances[_to], previousBalanceTo + _amount);

           // An event to make the transfer easy to find on the blockchain
           emit Transfer(_from, _to, _amount);

    }

    /// @param _owner The address that's balance is being requested
    /// @return The balance of `_owner` at the current block
    function balanceOf(address _owner) public view returns (uint256 balance) {
        return balanceOfAt(_owner, block.number);
    }

    /// @notice `msg.sender` approves `_spender` to spend `_amount` tokens on
    ///  its behalf. This is a modified version of the ERC20 approve function
    ///  to be a little bit safer
    /// @param _spender The address of the account able to transfer the tokens
    /// @param _amount The amount of tokens to be approved for transfer
    /// @return True if the approval was successful
    function approve(address _spender, uint256 _amount) public returns (bool success) {
        require(transfersEnabled, "MiniMeToken: transfer is not enable");

        // 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((_amount == 0) || (allowed[msg.sender][_spender] == 0));

        // Alerts the token controller of the approve function call
        if (isContract(controller)) {
            require(TokenController(controller).onApprove(msg.sender, _spender, _amount));
        }

        allowed[msg.sender][_spender] = _amount;
        emit Approval(msg.sender, _spender, _amount);
        return true;
    }

    /// @dev This function makes it easy to read the `allowed[]` map
    /// @param _owner The address of the account that owns the token
    /// @param _spender The address of the account able to transfer the tokens
    /// @return Amount of remaining tokens of _owner that _spender is allowed
    ///  to spend
    function allowance(address _owner, address _spender
    ) public view returns (uint256 remaining) {
        return allowed[_owner][_spender];
    }

    /// @notice `msg.sender` approves `_spender` to send `_amount` tokens on
    ///  its behalf, and then a function is triggered in the contract that is
    ///  being approved, `_spender`. This allows users to use their tokens to
    ///  interact with contracts in one function call instead of two
    /// @param _spender The address of the contract able to transfer the tokens
    /// @param _amount The amount of tokens to be approved for transfer
    /// @return True if the function call was successful
    function approveAndCall(address _spender, uint256 _amount, bytes memory _extraData
    ) public returns (bool success) {
        require(approve(_spender, _amount));

        ApproveAndCallFallBack(_spender).receiveApproval(
            msg.sender,
            _amount,
            address(this),
            _extraData
        );

        return true;
    }

    /// @dev This function makes it easy to get the total number of tokens
    /// @return The total number of tokens
    function totalSupply() public view returns (uint) {
        return totalSupplyAt(block.number);
    }


////////////////
// Query balance and totalSupply in History
////////////////

    /// @dev Queries the balance of `_owner` at a specific `_blockNumber`
    /// @param _owner The address from which the balance will be retrieved
    /// @param _blockNumber The block number when the balance is queried
    /// @return The balance at `_blockNumber`
    function balanceOfAt(address _owner, uint _blockNumber) public view
        returns (uint) {

        // These next few lines are used when the balance of the token is
        //  requested before a check point was ever created for this token, it
        //  requires that the `parentToken.balanceOfAt` be queried at the
        //  genesis block for that token as this contains initial balance of
        //  this token
        if ((balances[_owner].length == 0)
            || (balances[_owner][0].fromBlock > _blockNumber)) {
            if (address(parentToken) != address(0)) {
                return parentToken.balanceOfAt(_owner, min(_blockNumber, parentSnapShotBlock));
            } else {
                // Has no parent
                return 0;
            }

        // This will return the expected balance during normal situations
        } else {
            return getValueAt(balances[_owner], _blockNumber);
        }
    }

    /// @notice Total amount of tokens at a specific `_blockNumber`.
    /// @param _blockNumber The block number when the totalSupply is queried
    /// @return The total amount of tokens at `_blockNumber`
    function totalSupplyAt(uint _blockNumber) public view returns(uint) {

        // These next few lines are used when the totalSupply of the token is
        //  requested before a check point was ever created for this token, it
        //  requires that the `parentToken.totalSupplyAt` be queried at the
        //  genesis block for this token as that contains totalSupply of this
        //  token at this block number.
        if ((totalSupplyHistory.length == 0)
            || (totalSupplyHistory[0].fromBlock > _blockNumber)) {
            if (address(parentToken) != address(0)) {
                return parentToken.totalSupplyAt(min(_blockNumber, parentSnapShotBlock));
            } else {
                return 0;
            }

        // This will return the expected totalSupply during normal situations
        } else {
            return getValueAt(totalSupplyHistory, _blockNumber);
        }
    }

////////////////
// Clone Token Method
////////////////

    /// @notice Creates a new clone token with the initial distribution being
    ///  this token at `_snapshotBlock`
    /// @param _cloneTokenName Name of the clone token
    /// @param _cloneDecimalUnits Number of decimals of the smallest unit
    /// @param _cloneTokenSymbol Symbol of the clone token
    /// @param _snapshotBlock Block when the distribution of the parent token is
    ///  copied to set the initial distribution of the new clone token;
    ///  if the block is zero than the actual block, the current block is used
    /// @param _transfersEnabled True if transfers are allowed in the clone
    /// @return The address of the new MiniMeToken Contract
    function createCloneToken(
        string memory _cloneTokenName,
        uint8 _cloneDecimalUnits,
        string memory _cloneTokenSymbol,
        uint _snapshotBlock,
        bool _transfersEnabled
        ) public returns(address) {
        if (_snapshotBlock == 0) _snapshotBlock = block.number;
        MiniMeToken cloneToken = tokenFactory.createCloneToken(
            address(this),
            _snapshotBlock,
            _cloneTokenName,
            _cloneDecimalUnits,
            _cloneTokenSymbol,
            _transfersEnabled
            );

        cloneToken.changeController(msg.sender);

        // An event to make the token easy to find on the blockchain
        emit NewCloneToken(address(cloneToken), _snapshotBlock);
        return address(cloneToken);
    }

////////////////
// Generate and destroy tokens
////////////////

    /// @notice Generates `_amount` tokens that are assigned to `_owner`
    /// @param _owner The address that will be assigned the new tokens
    /// @param _amount The quantity of tokens generated
    /// @return True if the tokens are generated correctly
    function generateTokens(address _owner, uint _amount
    ) public onlyController returns (bool) {
        uint curTotalSupply = totalSupply();
        require(curTotalSupply + _amount >= curTotalSupply); // Check for overflow
        uint previousBalanceTo = balanceOf(_owner);
        require(previousBalanceTo + _amount >= previousBalanceTo); // Check for overflow
        updateValueAtNow(totalSupplyHistory, curTotalSupply + _amount);
        updateValueAtNow(balances[_owner], previousBalanceTo + _amount);
        emit Transfer(address(0), _owner, _amount);
        return true;
    }


    /// @notice Burns `_amount` tokens from `_owner`
    /// @param _owner The address that will lose the tokens
    /// @param _amount The quantity of tokens to burn
    /// @return True if the tokens are burned correctly
    function destroyTokens(address _owner, uint _amount
    ) onlyController public returns (bool) {
        uint curTotalSupply = totalSupply();
        require(curTotalSupply >= _amount);
        uint previousBalanceFrom = balanceOf(_owner);
        require(previousBalanceFrom >= _amount);
        updateValueAtNow(totalSupplyHistory, curTotalSupply - _amount);
        updateValueAtNow(balances[_owner], previousBalanceFrom - _amount);
        emit Transfer(_owner, address(0), _amount);
        return true;
    }

////////////////
// Enable tokens transfers
////////////////


    /// @notice Enables token holders to transfer their tokens freely if true
    /// @param _transfersEnabled True if transfers are allowed in the clone
    function enableTransfers(bool _transfersEnabled) public onlyController {
        transfersEnabled = _transfersEnabled;
    }

////////////////
// Internal helper functions to query and set a value in a snapshot array
////////////////

    /// @dev `getValueAt` retrieves the number of tokens at a given block number
    /// @param checkpoints The history of values being queried
    /// @param _block The block number to retrieve the value at
    /// @return The number of tokens being queried
    function getValueAt(Checkpoint[] storage checkpoints, uint _block
    ) view internal returns (uint) {
        if (checkpoints.length == 0) return 0;

        // Shortcut for the actual value
        if (_block >= checkpoints[checkpoints.length-1].fromBlock)
            return checkpoints[checkpoints.length-1].value;
        if (_block < checkpoints[0].fromBlock) return 0;

        // Binary search of the value in the array
        uint min = 0;
        uint max = checkpoints.length-1;
        while (max > min) {
            uint mid = (max + min + 1)/ 2;
            if (checkpoints[mid].fromBlock<=_block) {
                min = mid;
            } else {
                max = mid-1;
            }
        }
        return checkpoints[min].value;
    }

    /// @dev `updateValueAtNow` used to update the `balances` map and the
    ///  `totalSupplyHistory`
    /// @param checkpoints The history of data being updated
    /// @param _value The new number of tokens
    function updateValueAtNow(Checkpoint[] storage checkpoints, uint _value
    ) internal  {
        if ((checkpoints.length == 0)
        || (checkpoints[checkpoints.length -1].fromBlock < block.number)) {
               Checkpoint storage newCheckPoint = checkpoints[ checkpoints.length++ ];
               newCheckPoint.fromBlock =  uint128(block.number);
               newCheckPoint.value = uint128(_value);
           } else {
               Checkpoint storage oldCheckPoint = checkpoints[checkpoints.length-1];
               oldCheckPoint.value = uint128(_value);
           }
    }

    /// @dev Internal function to determine if an address is a contract
    /// @param _addr The address being queried
    /// @return True if `_addr` is a contract
    function isContract(address _addr) view internal returns(bool) {
        uint size;
        if (_addr == address(0)) return false;
        assembly {
            size := extcodesize(_addr)
        }
        return size>0;
    }

    /// @dev Helper function to return a min betwen the two uints
    function min(uint a, uint b) pure internal returns (uint) {
        return a < b ? a : b;
    }

    /// @notice The fallback function: If the contract's controller has not been
    ///  set to 0, then the `proxyPayment` method is called which relays the
    ///  ether and creates tokens as described in the token controller contract
    function () external payable {
        require(isContract(controller));
        require(TokenController(controller).proxyPayment.value(msg.value)(msg.sender));
    }

//////////
// Safety Methods
//////////

    /// @notice This method can be used by the controller to extract mistakenly
    ///  sent tokens to this contract.
    /// @param _token The address of the token contract that you want to recover
    ///  set to 0 in case you want to extract ether.
    function claimTokens(address payable _token) public onlyController {
        if (_token == address(0)) {
            controller.transfer(address(this).balance);
            return;
        }

        MiniMeToken token = MiniMeToken(_token);
        uint balance = token.balanceOf(address(this));
        token.transfer(controller, balance);
        emit ClaimedTokens(_token, controller, balance);
    }

////////////////
// Events
////////////////
    event ClaimedTokens(address indexed _token, address indexed _controller, uint _amount);
    event Transfer(address indexed _from, address indexed _to, uint256 _amount);	
    event NewCloneToken(address indexed _cloneToken, uint _snapshotBlock);
    event Approval(	
        address indexed _owner,	
        address indexed _spender,	
        uint256 _amount	
        );
}


////////////////
// MiniMeTokenFactory
////////////////

/// @dev This contract is used to generate clone contracts from a contract.
///  In solidity this is the way to create a contract from a contract of the
///  same class
contract MiniMeTokenFactory {

    /// @notice Update the DApp by creating a new token with new functionalities
    ///  the msg.sender becomes the controller of this clone token
    /// @param _parentToken Address of the token being cloned
    /// @param _snapshotBlock Block of the parent token that will
    ///  determine the initial distribution of the clone token
    /// @param _tokenName Name of the new token
    /// @param _decimalUnits Number of decimals of the new token
    /// @param _tokenSymbol Token Symbol for the new token
    /// @param _transfersEnabled If true, tokens will be able to be transferred
    /// @return The address of the new token contract
    function createCloneToken(
        address payable _parentToken,
        uint _snapshotBlock,
        string memory _tokenName,
        uint8 _decimalUnits,
        string memory _tokenSymbol,
        bool _transfersEnabled
    ) public returns (MiniMeToken) {
        MiniMeToken newToken = new MiniMeToken(
            address(this),
            _parentToken,
            _snapshotBlock,
            _tokenName,
            _decimalUnits,
            _tokenSymbol,
            _transfersEnabled
            );

        newToken.changeController(msg.sender);
        return newToken;
    }
}

// File: contracts/openzeppelin-solidity/math/SafeMath.sol

pragma solidity ^0.5.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, "SafeMath: division by zero");
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b != 0, "SafeMath: modulo by zero");
        return a % b;
    }
}

// File: contracts/VestingToken.sol

pragma solidity ^0.5.0;



contract VestingToken is MiniMeToken {
    using SafeMath for uint256;

    bool private _initiated;

    // Durations and timestamps are expressed in UNIX time, the same units as block.timestamp.
    uint256 private _cliff;
    uint256 private _start;
    uint256 private _duration;

    mapping (address => uint256) private _released;

    constructor (
        address tokenFactory,
        address payable parentToken,
        uint parentSnapShotBlock,
        string memory tokenName,
        uint8 decimalUnits,
        string memory tokenSymbol,
        bool transfersEnabled
    )
        public
        MiniMeToken(tokenFactory, parentToken, parentSnapShotBlock, tokenName, decimalUnits, tokenSymbol, transfersEnabled)
    {
        // solhint-disable-previous-line no-empty-blocks
    }

    modifier beforeInitiated() {
        require(!_initiated, "VestingToken: cannot execute after initiation");
        _;
    }

    modifier afterInitiated() {
        require(_initiated, "VestingToken: cannot execute before initiation");
        _;
    }

    /**
     * @dev Returns true if the token can be released, and false otherwise.
     */
    function initiated() public view returns (bool) {
        return _initiated;
    }

    /**
     * @return the cliff time of the token vesting.
     */
    function cliff() public view returns (uint256) {
        return _cliff;
    }

    /**
     * @return the start time of the token vesting.
     */
    function start() public view returns (uint256) {
        return _start;
    }

    /**
     * @return the duration of the token vesting.
     */
    function duration() public view returns (uint256) {
        return _duration;
    }

    /**
     * @param beneficiary the beneficiary of the tokens.
     * @return the amount of the token released.
     */
    function released(address beneficiary) public view returns (uint256) {
        return _released[beneficiary];
    }

    /**
     * @notice Makes vested tokens releasable.
     * @param start the time (as Unix time) at which point vesting starts
     * @param cliffDuration duration in seconds of the cliff in which tokens will begin to vest
     * @param duration duration in seconds of the period in which the tokens will vest
     */
    function initiate(uint256 start, uint256 cliffDuration, uint256 duration) public beforeInitiated onlyController {
        _initiated = true;

        enableTransfers(false);

        // solhint-disable-next-line max-line-length
        require(cliffDuration <= duration, "VestingToken: cliff is longer than duration");
        require(duration > 0, "VestingToken: duration is 0");
        // solhint-disable-next-line max-line-length
        require(start.add(duration) > block.timestamp, "VestingToken: final time is before current time");

        _duration = duration;
        _cliff = start.add(cliffDuration);
        _start = start;
    }

    /**
     * @dev This is the actual transfer function in the token contract.
     * @param from The address holding the tokens being transferred
     * @param to The address of the recipient
     * @param amount The amount of tokens to be transferred
     */
    function doTransfer(address from, address to, uint amount) internal beforeInitiated {
        super.doTransfer(from, to, amount);
    }

    /**
     * @notice Destroys releasable tokens.
     * @param beneficiary the beneficiary of the tokens.
     */
    function destroyReleasableTokens(address beneficiary) public afterInitiated onlyController returns (uint256 unreleased) {
        unreleased = releasableAmount(beneficiary);

        require(unreleased > 0, "VestingToken: no tokens are due");

        _released[beneficiary] = _released[beneficiary].add(unreleased);

        require(destroyTokens(beneficiary, unreleased), "VestingToken: failed to destroy tokens");
    }

    /**
     * @dev Calculates the amount that has already vested but hasn't been released yet.
     * @param beneficiary the beneficiary of the tokens.
     */
    function releasableAmount(address beneficiary) public view returns (uint256) {
        return _vestedAmount(beneficiary).sub(_released[beneficiary]);
    }

    /**
     * @dev Calculates the amount that has already vested.
     * @param beneficiary the beneficiary of the tokens.
     */
    function _vestedAmount(address beneficiary) private view returns (uint256) {
        if (!_initiated) {
            return 0;
        }

        uint256 currentVestedAmount = balanceOf(beneficiary);
        uint256 totalVestedAmount = currentVestedAmount.add(_released[beneficiary]);

        if (block.timestamp < _cliff) {
            return 0;
        } else if (block.timestamp >= _start.add(_duration)) {
            return totalVestedAmount;
        } else {
            return totalVestedAmount.mul(block.timestamp.sub(_start)).div(_duration);
        }
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"duration","outputs":[{"name":"","type":"uint256"}],"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":"beneficiary","type":"address"}],"name":"releasableAmount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"creationBlock","outputs":[{"name":"","type":"uint256"}],"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":"beneficiary","type":"address"}],"name":"destroyReleasableTokens","outputs":[{"name":"unreleased","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newController","type":"address"}],"name":"changeController","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_blockNumber","type":"uint256"}],"name":"balanceOfAt","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_cloneTokenName","type":"string"},{"name":"_cloneDecimalUnits","type":"uint8"},{"name":"_cloneTokenSymbol","type":"string"},{"name":"_snapshotBlock","type":"uint256"},{"name":"_transfersEnabled","type":"bool"}],"name":"createCloneToken","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"parentToken","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"},{"name":"_amount","type":"uint256"}],"name":"generateTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_blockNumber","type":"uint256"}],"name":"totalSupplyAt","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"beneficiary","type":"address"}],"name":"released","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"initiated","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"start","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"transfersEnabled","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"parentSnapShotBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"start","type":"uint256"},{"name":"cliffDuration","type":"uint256"},{"name":"duration","type":"uint256"}],"name":"initiate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"},{"name":"_amount","type":"uint256"}],"name":"destroyTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_token","type":"address"}],"name":"claimTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"tokenFactory","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_transfersEnabled","type":"bool"}],"name":"enableTransfers","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"controller","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"tokenFactory","type":"address"},{"name":"parentToken","type":"address"},{"name":"parentSnapShotBlock","type":"uint256"},{"name":"tokenName","type":"string"},{"name":"decimalUnits","type":"uint8"},{"name":"tokenSymbol","type":"string"},{"name":"transfersEnabled","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_token","type":"address"},{"indexed":true,"name":"_controller","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"ClaimedTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_cloneToken","type":"address"},{"indexed":false,"name":"_snapshotBlock","type":"uint256"}],"name":"NewCloneToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"Approval","type":"event"}]

60806040526040518060400160405280600781526020017f4d4d545f302e32000000000000000000000000000000000000000000000000008152506004908051906020019062000051929190620002b4565b503480156200005f57600080fd5b506040516200407c3803806200407c833981018060405260e08110156200008557600080fd5b810190808051906020019092919080519060200190929190805190602001909291908051640100000000811115620000bc57600080fd5b82810190506020810184811115620000d357600080fd5b8151856001820283011164010000000082111715620000f157600080fd5b50509291906020018051906020019092919080516401000000008111156200011857600080fd5b828101905060208101848111156200012f57600080fd5b81518560018202830111640100000000821117156200014d57600080fd5b50509291906020018051906020019092919050505086868686868686336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555086600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550836001908051906020019062000202929190620002b4565b5082600260006101000a81548160ff021916908360ff160217905550816003908051906020019062000236929190620002b4565b5085600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508460068190555080600b60006101000a81548160ff02191690831515021790555043600781905550505050505050505050505050505062000363565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002f757805160ff191683800117855562000328565b8280016001018555821562000328579182015b82811115620003275782518255916020019190600101906200030a565b5b5090506200033791906200033b565b5090565b6200036091905b808211156200035c57600081600090555060010162000342565b5090565b90565b613d0980620003736000396000f3fe6080604052600436106101ee5760003560e01c8063827f32c01161010d578063c5bcc4f1116100a0578063dd62ed3e1161006f578063dd62ed3e14610ebd578063df8de3e714610f42578063e77772fe14610f93578063f41e60c514610fea578063f77c479114611027576101ee565b8063c5bcc4f114610cc6578063c99b5d4714610cf1578063cae9ca5114610d40578063d3ce77fe14610e4a576101ee565b80639f118536116100dc5780639f11853614610bca578063a9059cbb14610bf9578063be9a655514610c6c578063bef97c8714610c97576101ee565b8063827f32c014610a1357806395d89b4114610a86578063981b24d014610b165780639852595c14610b65576101ee565b806323b872dd1161018557806354fd4d501161015457806354fd4d50146107055780636638c0871461079557806370a082311461095757806380a54001146109bc576101ee565b806323b872dd14610581578063313ce567146106145780633cebb823146106455780634ee2cd7e14610696576101ee565b80631726cbc8116101c15780631726cbc81461046157806317634514146104c657806318160ddd146104f15780631f82b5251461051c576101ee565b806306fdde0314610308578063095ea7b3146103985780630fb5a6b41461040b57806313d033c014610436575b6102186000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661107e565b61022157600080fd5b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f48c305434336040518363ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019150506020604051808303818588803b1580156102c157600080fd5b505af11580156102d5573d6000803e3d6000fd5b50505050506040513d60208110156102ec57600080fd5b810190808051906020019092919050505061030657600080fd5b005b34801561031457600080fd5b5061031d6110d1565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561035d578082015181840152602081019050610342565b50505050905090810190601f16801561038a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103a457600080fd5b506103f1600480360360408110156103bb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061116f565b604051808215151515815260200191505060405180910390f35b34801561041757600080fd5b506104206114aa565b6040518082815260200191505060405180910390f35b34801561044257600080fd5b5061044b6114b4565b6040518082815260200191505060405180910390f35b34801561046d57600080fd5b506104b06004803603602081101561048457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114be565b6040518082815260200191505060405180910390f35b3480156104d257600080fd5b506104db611521565b6040518082815260200191505060405180910390f35b3480156104fd57600080fd5b50610506611527565b6040518082815260200191505060405180910390f35b34801561052857600080fd5b5061056b6004803603602081101561053f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611537565b6040518082815260200191505060405180910390f35b34801561058d57600080fd5b506105fa600480360360608110156105a457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506117bd565b604051808215151515815260200191505060405180910390f35b34801561062057600080fd5b506106296119a2565b604051808260ff1660ff16815260200191505060405180910390f35b34801561065157600080fd5b506106946004803603602081101561066857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506119b5565b005b3480156106a257600080fd5b506106ef600480360360408110156106b957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611a9d565b6040518082815260200191505060405180910390f35b34801561071157600080fd5b5061071a611d1d565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561075a57808201518184015260208101905061073f565b50505050905090810190601f1680156107875780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156107a157600080fd5b50610915600480360360a08110156107b857600080fd5b81019080803590602001906401000000008111156107d557600080fd5b8201836020820111156107e757600080fd5b8035906020019184600183028401116401000000008311171561080957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803560ff1690602001909291908035906020019064010000000081111561087957600080fd5b82018360208201111561088b57600080fd5b803590602001918460018302840111640100000000831117156108ad57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190929190803515159060200190929190505050611dbb565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561096357600080fd5b506109a66004803603602081101561097a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612097565b6040518082815260200191505060405180910390f35b3480156109c857600080fd5b506109d16120aa565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a1f57600080fd5b50610a6c60048036036040811015610a3657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506120d0565b604051808215151515815260200191505060405180910390f35b348015610a9257600080fd5b50610a9b612277565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610adb578082015181840152602081019050610ac0565b50505050905090810190601f168015610b085780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610b2257600080fd5b50610b4f60048036036020811015610b3957600080fd5b8101908080359060200190929190505050612315565b6040518082815260200191505060405180910390f35b348015610b7157600080fd5b50610bb460048036036020811015610b8857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506124a9565b6040518082815260200191505060405180910390f35b348015610bd657600080fd5b50610bdf6124f2565b604051808215151515815260200191505060405180910390f35b348015610c0557600080fd5b50610c5260048036036040811015610c1c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612509565b604051808215151515815260200191505060405180910390f35b348015610c7857600080fd5b50610c81612585565b6040518082815260200191505060405180910390f35b348015610ca357600080fd5b50610cac61258f565b604051808215151515815260200191505060405180910390f35b348015610cd257600080fd5b50610cdb6125a2565b6040518082815260200191505060405180910390f35b348015610cfd57600080fd5b50610d3e60048036036060811015610d1457600080fd5b810190808035906020019092919080359060200190929190803590602001909291905050506125a8565b005b348015610d4c57600080fd5b50610e3060048036036060811015610d6357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610daa57600080fd5b820183602082011115610dbc57600080fd5b80359060200191846001830284011164010000000083111715610dde57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061283d565b604051808215151515815260200191505060405180910390f35b348015610e5657600080fd5b50610ea360048036036040811015610e6d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061299d565b604051808215151515815260200191505060405180910390f35b348015610ec957600080fd5b50610f2c60048036036040811015610ee057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612b40565b6040518082815260200191505060405180910390f35b348015610f4e57600080fd5b50610f9160048036036020811015610f6557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612bc7565b005b348015610f9f57600080fd5b50610fa8612f56565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610ff657600080fd5b506110256004803603602081101561100d57600080fd5b81019080803515159060200190929190505050612f7c565b005b34801561103357600080fd5b5061103c61303e565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b600080600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110c05760009150506110cc565b823b9050600081119150505b919050565b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111675780601f1061113c57610100808354040283529160200191611167565b820191906000526020600020905b81548152906001019060200180831161114a57829003601f168201915b505050505081565b6000600b60009054906101000a900460ff166111d6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180613b976023913960400191505060405180910390fd5b600082148061126157506000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054145b61126a57600080fd5b6112946000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661107e565b156113ba576000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663da682aeb3385856040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b15801561137557600080fd5b505af1158015611389573d6000803e3d6000fd5b505050506040513d602081101561139f57600080fd5b81019080805190602001909291905050506113b957600080fd5b5b81600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a36001905092915050565b6000600e54905090565b6000600c54905090565b600061151a600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461150c84613063565b61316690919063ffffffff16565b9050919050565b60075481565b600061153243612315565b905090565b6000600b60159054906101000a900460ff1661159e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180613bba602e913960400191505060405180910390fd5b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611643576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180613c656028913960400191505060405180910390fd5b61164c826114be565b9050600081116116c4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f56657374696e67546f6b656e3a206e6f20746f6b656e7320617265206475650081525060200191505060405180910390fd5b61171681600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131ef90919063ffffffff16565b600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611763828261299d565b6117b8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180613c8d6026913960400191505060405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461198c57600b60009054906101000a900460ff16611878576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180613b976023913960400191505060405180910390fd5b81600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561190157600080fd5b81600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055505b611997848484613277565b600190509392505050565b600260009054906101000a900460ff1681565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180613c656028913960400191505060405180910390fd5b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490501480611b74575081600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548110611b3657fe5b9060005260206000200160000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16115b15611ccc57600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cc357600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634ee2cd7e84611c1a856006546132ed565b6040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060206040518083038186803b158015611c8157600080fd5b505afa158015611c95573d6000803e3d6000fd5b505050506040513d6020811015611cab57600080fd5b81019080805190602001909291905050509050611d17565b60009050611d17565b611d14600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083613306565b90505b92915050565b60048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611db35780601f10611d8857610100808354040283529160200191611db3565b820191906000526020600020905b815481529060010190602001808311611d9657829003601f168201915b505050505081565b600080831415611dc9574392505b6000600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635b7b72c130868a8a8a896040518763ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001868152602001806020018560ff1660ff1681526020018060200184151515158152602001838103835287818151815260200191508051906020019080838360005b83811015611eb0578082015181840152602081019050611e95565b50505050905090810190601f168015611edd5780820380516001836020036101000a031916815260200191505b50838103825285818151815260200191508051906020019080838360005b83811015611f16578082015181840152602081019050611efb565b50505050905090810190601f168015611f435780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b158015611f6857600080fd5b505af1158015611f7c573d6000803e3d6000fd5b505050506040513d6020811015611f9257600080fd5b810190808051906020019092919050505090508073ffffffffffffffffffffffffffffffffffffffff16633cebb823336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050600060405180830381600087803b15801561202457600080fd5b505af1158015612038573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff167f086c875b377f900b07ce03575813022f05dd10ed7640b5282cf6d3c3fc352ade856040518082815260200191505060405180910390a28091505095945050505050565b60006120a38243611a9d565b9050919050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612177576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180613c656028913960400191505060405180910390fd5b6000612181611527565b905080838201101561219257600080fd5b600061219d85612097565b90508084820110156121ae57600080fd5b6121bb600a858401613505565b612205600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020858301613505565b8473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a360019250505092915050565b60038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561230d5780601f106122e25761010080835404028352916020019161230d565b820191906000526020600020905b8154815290600101906020018083116122f057829003601f168201915b505050505081565b600080600a805490501480612372575081600a60008154811061233457fe5b9060005260206000200160000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16115b1561249657600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461248d57600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663981b24d0612417846006546132ed565b6040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561244b57600080fd5b505afa15801561245f573d6000803e3d6000fd5b505050506040513d602081101561247557600080fd5b810190808051906020019092919050505090506124a4565b600090506124a4565b6124a1600a83613306565b90505b919050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600b60159054906101000a900460ff16905090565b6000600b60009054906101000a900460ff16612570576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180613b976023913960400191505060405180910390fd5b61257b338484613277565b6001905092915050565b6000600d54905090565b600b60009054906101000a900460ff1681565b60065481565b600b60159054906101000a900460ff161561260e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180613c17602d913960400191505060405180910390fd5b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146126b3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180613c656028913960400191505060405180910390fd5b6001600b60156101000a81548160ff0219169083151502179055506126d86000612f7c565b80821115612731576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180613cb3602b913960400191505060405180910390fd5b600081116127a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f56657374696e67546f6b656e3a206475726174696f6e2069732030000000000081525060200191505060405180910390fd5b426127bb82856131ef90919063ffffffff16565b11612811576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180613be8602f913960400191505060405180910390fd5b80600e8190555061282b82846131ef90919063ffffffff16565b600c8190555082600d81905550505050565b6000612849848461116f565b61285257600080fd5b8373ffffffffffffffffffffffffffffffffffffffff16638f4ffcb1338530866040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018481526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561292b578082015181840152602081019050612910565b50505050905090810190601f1680156129585780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b15801561297a57600080fd5b505af115801561298e573d6000803e3d6000fd5b50505050600190509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180613c656028913960400191505060405180910390fd5b6000612a4e611527565b905082811015612a5d57600080fd5b6000612a6885612097565b905083811015612a7757600080fd5b612a84600a858403613505565b612ace600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020858303613505565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a360019250505092915050565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180613c656028913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612d25576000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050158015612d1f573d6000803e3d6000fd5b50612f53565b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015612da957600080fd5b505afa158015612dbd573d6000803e3d6000fd5b505050506040513d6020811015612dd357600080fd5b810190808051906020019092919050505090508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015612e8e57600080fd5b505af1158015612ea2573d6000803e3d6000fd5b505050506040513d6020811015612eb857600080fd5b8101908080519060200190929190505050506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167ff931edb47c50b4b4104c187b5814a9aef5f709e17e2ecf9617e860cacade929c836040518082815260200191505060405180910390a350505b50565b600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614613021576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180613c656028913960400191505060405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600b60159054906101000a900460ff166130825760009050613161565b600061308d83612097565b905060006130e3600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836131ef90919063ffffffff16565b9050600c544210156130fa57600092505050613161565b613111600e54600d546131ef90919063ffffffff16565b4210613121578092505050613161565b61315c600e5461314e61313f600d544261316690919063ffffffff16565b8461367490919063ffffffff16565b6136fa90919063ffffffff16565b925050505b919050565b6000828211156131de576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b600082840390508091505092915050565b60008082840190508381101561326d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600b60159054906101000a900460ff16156132dd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180613c17602d913960400191505060405180910390fd5b6132e8838383613789565b505050565b60008183106132fc57816132fe565b825b905092915050565b6000808380549050141561331d57600090506134ff565b8260018480549050038154811061333057fe5b9060005260206000200160000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1682106133c8578260018480549050038154811061338557fe5b9060005260206000200160000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506134ff565b826000815481106133d557fe5b9060005260206000200160000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1682101561342157600090506134ff565b60008090506000600185805490500390505b818111156134b257600060026001848401018161344c57fe5b0490508486828154811061345c57fe5b9060005260206000200160000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16116134a5578092506134ac565b6001810391505b50613433565b8482815481106134be57fe5b9060005260206000200160000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16925050505b92915050565b6000828054905014806135655750438260018480549050038154811061352757fe5b9060005260206000200160000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16105b15613612576000828380548091906001016135809190613b05565b8154811061358a57fe5b906000526020600020019050438160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550818160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555050613670565b60008260018480549050038154811061362757fe5b906000526020600020019050818160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550505b5050565b60008083141561368757600090506136f4565b600082840290508284828161369857fe5b04146136ef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613c446021913960400191505060405180910390fd5b809150505b92915050565b6000808211613771576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b600082848161377c57fe5b0490508091505092915050565b60008114156137fc578173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3613b00565b436006541061380a57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561387357503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b61387c57600080fd5b60006138888443611a9d565b90508181101561389757600080fd5b6138c16000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661107e565b156139e7576000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634a3931498585856040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b1580156139a257600080fd5b505af11580156139b6573d6000803e3d6000fd5b505050506040513d60208110156139cc57600080fd5b81019080805190602001909291905050506139e657600080fd5b5b613a31600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020838303613505565b6000613a3d8443611a9d565b9050808382011015613a4e57600080fd5b613a98600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020848301613505565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a350505b505050565b815481835581811115613b2c57818360005260206000209182019101613b2b9190613b31565b5b505050565b613b9391905b80821115613b8f57600080820160006101000a8154906fffffffffffffffffffffffffffffffff02191690556000820160106101000a8154906fffffffffffffffffffffffffffffffff021916905550600101613b37565b5090565b9056fe4d696e694d65546f6b656e3a207472616e73666572206973206e6f7420656e61626c6556657374696e67546f6b656e3a2063616e6e6f742065786563757465206265666f726520696e6974696174696f6e56657374696e67546f6b656e3a2066696e616c2074696d65206973206265666f72652063757272656e742074696d6556657374696e67546f6b656e3a2063616e6e6f74206578656375746520616674657220696e6974696174696f6e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77436f6e74726f6c6c65643a2063616c6c6572206973206e6f742074686520636f6e74726f6c6c657256657374696e67546f6b656e3a206661696c656420746f2064657374726f7920746f6b656e7356657374696e67546f6b656e3a20636c696666206973206c6f6e676572207468616e206475726174696f6ea165627a7a7230582065f06717347bb16838de0664daa333eec2550adc36588fe91501994a3b9e9974002900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000215072697661746573616c6520546f6b616d616b204e6574776f726b20546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a50726976617465544f4e00000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c8063827f32c01161010d578063c5bcc4f1116100a0578063dd62ed3e1161006f578063dd62ed3e14610ebd578063df8de3e714610f42578063e77772fe14610f93578063f41e60c514610fea578063f77c479114611027576101ee565b8063c5bcc4f114610cc6578063c99b5d4714610cf1578063cae9ca5114610d40578063d3ce77fe14610e4a576101ee565b80639f118536116100dc5780639f11853614610bca578063a9059cbb14610bf9578063be9a655514610c6c578063bef97c8714610c97576101ee565b8063827f32c014610a1357806395d89b4114610a86578063981b24d014610b165780639852595c14610b65576101ee565b806323b872dd1161018557806354fd4d501161015457806354fd4d50146107055780636638c0871461079557806370a082311461095757806380a54001146109bc576101ee565b806323b872dd14610581578063313ce567146106145780633cebb823146106455780634ee2cd7e14610696576101ee565b80631726cbc8116101c15780631726cbc81461046157806317634514146104c657806318160ddd146104f15780631f82b5251461051c576101ee565b806306fdde0314610308578063095ea7b3146103985780630fb5a6b41461040b57806313d033c014610436575b6102186000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661107e565b61022157600080fd5b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f48c305434336040518363ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019150506020604051808303818588803b1580156102c157600080fd5b505af11580156102d5573d6000803e3d6000fd5b50505050506040513d60208110156102ec57600080fd5b810190808051906020019092919050505061030657600080fd5b005b34801561031457600080fd5b5061031d6110d1565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561035d578082015181840152602081019050610342565b50505050905090810190601f16801561038a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103a457600080fd5b506103f1600480360360408110156103bb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061116f565b604051808215151515815260200191505060405180910390f35b34801561041757600080fd5b506104206114aa565b6040518082815260200191505060405180910390f35b34801561044257600080fd5b5061044b6114b4565b6040518082815260200191505060405180910390f35b34801561046d57600080fd5b506104b06004803603602081101561048457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114be565b6040518082815260200191505060405180910390f35b3480156104d257600080fd5b506104db611521565b6040518082815260200191505060405180910390f35b3480156104fd57600080fd5b50610506611527565b6040518082815260200191505060405180910390f35b34801561052857600080fd5b5061056b6004803603602081101561053f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611537565b6040518082815260200191505060405180910390f35b34801561058d57600080fd5b506105fa600480360360608110156105a457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506117bd565b604051808215151515815260200191505060405180910390f35b34801561062057600080fd5b506106296119a2565b604051808260ff1660ff16815260200191505060405180910390f35b34801561065157600080fd5b506106946004803603602081101561066857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506119b5565b005b3480156106a257600080fd5b506106ef600480360360408110156106b957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611a9d565b6040518082815260200191505060405180910390f35b34801561071157600080fd5b5061071a611d1d565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561075a57808201518184015260208101905061073f565b50505050905090810190601f1680156107875780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156107a157600080fd5b50610915600480360360a08110156107b857600080fd5b81019080803590602001906401000000008111156107d557600080fd5b8201836020820111156107e757600080fd5b8035906020019184600183028401116401000000008311171561080957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803560ff1690602001909291908035906020019064010000000081111561087957600080fd5b82018360208201111561088b57600080fd5b803590602001918460018302840111640100000000831117156108ad57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190929190803515159060200190929190505050611dbb565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561096357600080fd5b506109a66004803603602081101561097a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612097565b6040518082815260200191505060405180910390f35b3480156109c857600080fd5b506109d16120aa565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a1f57600080fd5b50610a6c60048036036040811015610a3657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506120d0565b604051808215151515815260200191505060405180910390f35b348015610a9257600080fd5b50610a9b612277565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610adb578082015181840152602081019050610ac0565b50505050905090810190601f168015610b085780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610b2257600080fd5b50610b4f60048036036020811015610b3957600080fd5b8101908080359060200190929190505050612315565b6040518082815260200191505060405180910390f35b348015610b7157600080fd5b50610bb460048036036020811015610b8857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506124a9565b6040518082815260200191505060405180910390f35b348015610bd657600080fd5b50610bdf6124f2565b604051808215151515815260200191505060405180910390f35b348015610c0557600080fd5b50610c5260048036036040811015610c1c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612509565b604051808215151515815260200191505060405180910390f35b348015610c7857600080fd5b50610c81612585565b6040518082815260200191505060405180910390f35b348015610ca357600080fd5b50610cac61258f565b604051808215151515815260200191505060405180910390f35b348015610cd257600080fd5b50610cdb6125a2565b6040518082815260200191505060405180910390f35b348015610cfd57600080fd5b50610d3e60048036036060811015610d1457600080fd5b810190808035906020019092919080359060200190929190803590602001909291905050506125a8565b005b348015610d4c57600080fd5b50610e3060048036036060811015610d6357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610daa57600080fd5b820183602082011115610dbc57600080fd5b80359060200191846001830284011164010000000083111715610dde57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061283d565b604051808215151515815260200191505060405180910390f35b348015610e5657600080fd5b50610ea360048036036040811015610e6d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061299d565b604051808215151515815260200191505060405180910390f35b348015610ec957600080fd5b50610f2c60048036036040811015610ee057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612b40565b6040518082815260200191505060405180910390f35b348015610f4e57600080fd5b50610f9160048036036020811015610f6557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612bc7565b005b348015610f9f57600080fd5b50610fa8612f56565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610ff657600080fd5b506110256004803603602081101561100d57600080fd5b81019080803515159060200190929190505050612f7c565b005b34801561103357600080fd5b5061103c61303e565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b600080600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110c05760009150506110cc565b823b9050600081119150505b919050565b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111675780601f1061113c57610100808354040283529160200191611167565b820191906000526020600020905b81548152906001019060200180831161114a57829003601f168201915b505050505081565b6000600b60009054906101000a900460ff166111d6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180613b976023913960400191505060405180910390fd5b600082148061126157506000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054145b61126a57600080fd5b6112946000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661107e565b156113ba576000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663da682aeb3385856040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b15801561137557600080fd5b505af1158015611389573d6000803e3d6000fd5b505050506040513d602081101561139f57600080fd5b81019080805190602001909291905050506113b957600080fd5b5b81600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a36001905092915050565b6000600e54905090565b6000600c54905090565b600061151a600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461150c84613063565b61316690919063ffffffff16565b9050919050565b60075481565b600061153243612315565b905090565b6000600b60159054906101000a900460ff1661159e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180613bba602e913960400191505060405180910390fd5b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611643576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180613c656028913960400191505060405180910390fd5b61164c826114be565b9050600081116116c4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f56657374696e67546f6b656e3a206e6f20746f6b656e7320617265206475650081525060200191505060405180910390fd5b61171681600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131ef90919063ffffffff16565b600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611763828261299d565b6117b8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180613c8d6026913960400191505060405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461198c57600b60009054906101000a900460ff16611878576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180613b976023913960400191505060405180910390fd5b81600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561190157600080fd5b81600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055505b611997848484613277565b600190509392505050565b600260009054906101000a900460ff1681565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180613c656028913960400191505060405180910390fd5b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490501480611b74575081600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548110611b3657fe5b9060005260206000200160000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16115b15611ccc57600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cc357600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634ee2cd7e84611c1a856006546132ed565b6040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060206040518083038186803b158015611c8157600080fd5b505afa158015611c95573d6000803e3d6000fd5b505050506040513d6020811015611cab57600080fd5b81019080805190602001909291905050509050611d17565b60009050611d17565b611d14600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083613306565b90505b92915050565b60048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611db35780601f10611d8857610100808354040283529160200191611db3565b820191906000526020600020905b815481529060010190602001808311611d9657829003601f168201915b505050505081565b600080831415611dc9574392505b6000600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635b7b72c130868a8a8a896040518763ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001868152602001806020018560ff1660ff1681526020018060200184151515158152602001838103835287818151815260200191508051906020019080838360005b83811015611eb0578082015181840152602081019050611e95565b50505050905090810190601f168015611edd5780820380516001836020036101000a031916815260200191505b50838103825285818151815260200191508051906020019080838360005b83811015611f16578082015181840152602081019050611efb565b50505050905090810190601f168015611f435780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b158015611f6857600080fd5b505af1158015611f7c573d6000803e3d6000fd5b505050506040513d6020811015611f9257600080fd5b810190808051906020019092919050505090508073ffffffffffffffffffffffffffffffffffffffff16633cebb823336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050600060405180830381600087803b15801561202457600080fd5b505af1158015612038573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff167f086c875b377f900b07ce03575813022f05dd10ed7640b5282cf6d3c3fc352ade856040518082815260200191505060405180910390a28091505095945050505050565b60006120a38243611a9d565b9050919050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612177576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180613c656028913960400191505060405180910390fd5b6000612181611527565b905080838201101561219257600080fd5b600061219d85612097565b90508084820110156121ae57600080fd5b6121bb600a858401613505565b612205600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020858301613505565b8473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a360019250505092915050565b60038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561230d5780601f106122e25761010080835404028352916020019161230d565b820191906000526020600020905b8154815290600101906020018083116122f057829003601f168201915b505050505081565b600080600a805490501480612372575081600a60008154811061233457fe5b9060005260206000200160000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16115b1561249657600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461248d57600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663981b24d0612417846006546132ed565b6040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561244b57600080fd5b505afa15801561245f573d6000803e3d6000fd5b505050506040513d602081101561247557600080fd5b810190808051906020019092919050505090506124a4565b600090506124a4565b6124a1600a83613306565b90505b919050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600b60159054906101000a900460ff16905090565b6000600b60009054906101000a900460ff16612570576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180613b976023913960400191505060405180910390fd5b61257b338484613277565b6001905092915050565b6000600d54905090565b600b60009054906101000a900460ff1681565b60065481565b600b60159054906101000a900460ff161561260e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180613c17602d913960400191505060405180910390fd5b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146126b3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180613c656028913960400191505060405180910390fd5b6001600b60156101000a81548160ff0219169083151502179055506126d86000612f7c565b80821115612731576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180613cb3602b913960400191505060405180910390fd5b600081116127a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f56657374696e67546f6b656e3a206475726174696f6e2069732030000000000081525060200191505060405180910390fd5b426127bb82856131ef90919063ffffffff16565b11612811576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180613be8602f913960400191505060405180910390fd5b80600e8190555061282b82846131ef90919063ffffffff16565b600c8190555082600d81905550505050565b6000612849848461116f565b61285257600080fd5b8373ffffffffffffffffffffffffffffffffffffffff16638f4ffcb1338530866040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018481526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561292b578082015181840152602081019050612910565b50505050905090810190601f1680156129585780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b15801561297a57600080fd5b505af115801561298e573d6000803e3d6000fd5b50505050600190509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180613c656028913960400191505060405180910390fd5b6000612a4e611527565b905082811015612a5d57600080fd5b6000612a6885612097565b905083811015612a7757600080fd5b612a84600a858403613505565b612ace600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020858303613505565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a360019250505092915050565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180613c656028913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612d25576000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050158015612d1f573d6000803e3d6000fd5b50612f53565b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015612da957600080fd5b505afa158015612dbd573d6000803e3d6000fd5b505050506040513d6020811015612dd357600080fd5b810190808051906020019092919050505090508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015612e8e57600080fd5b505af1158015612ea2573d6000803e3d6000fd5b505050506040513d6020811015612eb857600080fd5b8101908080519060200190929190505050506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167ff931edb47c50b4b4104c187b5814a9aef5f709e17e2ecf9617e860cacade929c836040518082815260200191505060405180910390a350505b50565b600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614613021576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180613c656028913960400191505060405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600b60159054906101000a900460ff166130825760009050613161565b600061308d83612097565b905060006130e3600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836131ef90919063ffffffff16565b9050600c544210156130fa57600092505050613161565b613111600e54600d546131ef90919063ffffffff16565b4210613121578092505050613161565b61315c600e5461314e61313f600d544261316690919063ffffffff16565b8461367490919063ffffffff16565b6136fa90919063ffffffff16565b925050505b919050565b6000828211156131de576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b600082840390508091505092915050565b60008082840190508381101561326d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600b60159054906101000a900460ff16156132dd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180613c17602d913960400191505060405180910390fd5b6132e8838383613789565b505050565b60008183106132fc57816132fe565b825b905092915050565b6000808380549050141561331d57600090506134ff565b8260018480549050038154811061333057fe5b9060005260206000200160000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1682106133c8578260018480549050038154811061338557fe5b9060005260206000200160000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506134ff565b826000815481106133d557fe5b9060005260206000200160000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1682101561342157600090506134ff565b60008090506000600185805490500390505b818111156134b257600060026001848401018161344c57fe5b0490508486828154811061345c57fe5b9060005260206000200160000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16116134a5578092506134ac565b6001810391505b50613433565b8482815481106134be57fe5b9060005260206000200160000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16925050505b92915050565b6000828054905014806135655750438260018480549050038154811061352757fe5b9060005260206000200160000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16105b15613612576000828380548091906001016135809190613b05565b8154811061358a57fe5b906000526020600020019050438160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550818160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555050613670565b60008260018480549050038154811061362757fe5b906000526020600020019050818160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550505b5050565b60008083141561368757600090506136f4565b600082840290508284828161369857fe5b04146136ef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613c446021913960400191505060405180910390fd5b809150505b92915050565b6000808211613771576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b600082848161377c57fe5b0490508091505092915050565b60008114156137fc578173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3613b00565b436006541061380a57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561387357503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b61387c57600080fd5b60006138888443611a9d565b90508181101561389757600080fd5b6138c16000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661107e565b156139e7576000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634a3931498585856040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b1580156139a257600080fd5b505af11580156139b6573d6000803e3d6000fd5b505050506040513d60208110156139cc57600080fd5b81019080805190602001909291905050506139e657600080fd5b5b613a31600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020838303613505565b6000613a3d8443611a9d565b9050808382011015613a4e57600080fd5b613a98600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020848301613505565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a350505b505050565b815481835581811115613b2c57818360005260206000209182019101613b2b9190613b31565b5b505050565b613b9391905b80821115613b8f57600080820160006101000a8154906fffffffffffffffffffffffffffffffff02191690556000820160106101000a8154906fffffffffffffffffffffffffffffffff021916905550600101613b37565b5090565b9056fe4d696e694d65546f6b656e3a207472616e73666572206973206e6f7420656e61626c6556657374696e67546f6b656e3a2063616e6e6f742065786563757465206265666f726520696e6974696174696f6e56657374696e67546f6b656e3a2066696e616c2074696d65206973206265666f72652063757272656e742074696d6556657374696e67546f6b656e3a2063616e6e6f74206578656375746520616674657220696e6974696174696f6e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77436f6e74726f6c6c65643a2063616c6c6572206973206e6f742074686520636f6e74726f6c6c657256657374696e67546f6b656e3a206661696c656420746f2064657374726f7920746f6b656e7356657374696e67546f6b656e3a20636c696666206973206c6f6e676572207468616e206475726174696f6ea165627a7a7230582065f06717347bb16838de0664daa333eec2550adc36588fe91501994a3b9e99740029

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

00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000215072697661746573616c6520546f6b616d616b204e6574776f726b20546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a50726976617465544f4e00000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : tokenFactory (address): 0x0000000000000000000000000000000000000000
Arg [1] : parentToken (address): 0x0000000000000000000000000000000000000000
Arg [2] : parentSnapShotBlock (uint256): 0
Arg [3] : tokenName (string): Privatesale Tokamak Network Token
Arg [4] : decimalUnits (uint8): 18
Arg [5] : tokenSymbol (string): PrivateTON
Arg [6] : transfersEnabled (bool): True

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000021
Arg [8] : 5072697661746573616c6520546f6b616d616b204e6574776f726b20546f6b65
Arg [9] : 6e00000000000000000000000000000000000000000000000000000000000000
Arg [10] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [11] : 50726976617465544f4e00000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

29546:5027:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22952:22;22963:10;;;;;;;;;;;22952;:22::i;:::-;22944:31;;;;;;23010:10;;;;;;;;;;;22994:40;;;23041:9;23052:10;22994:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22994:69:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;22994:69:0;;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22994:69:0;;;;;;;;;;;;;;;;22986:78;;;;;;29546:5027;3678:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3678:18:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;3678:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11493:890;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11493:890:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11493:890:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;31216:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31216:85:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30902:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30902:79:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33688:157;;8:9:-1;5:2;;;30:1;27;20:12;5:2;33688:157:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;33688:157:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4846:25;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4846:25:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13883:103;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13883:103:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33085:430;;8:9:-1;5:2;;;30:1;27;20:12;5:2;33085:430:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;33085:430:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;8060:766;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8060:766:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;8060:766:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;3759:21;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3759:21:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;557:126;;8:9:-1;5:2;;;30:1;27;20:12;5:2;557:126:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;557:126:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;14351:964;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14351:964:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14351:964:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3907:33;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3907:33:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;3907:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17220:805;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17220:805:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;17220:805:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;17220:805:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;17220:805:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;17220:805:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;17220:805:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;17220:805:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;17220:805:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;17220:805:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;17220:805:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;10954:132;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10954:132:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;10954:132:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4538:30;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4538:30:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;18366:600;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18366:600:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;18366:600:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;3841:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3841:20:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;3841:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15533:934;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15533:934:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15533:934:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31435:117;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31435:117:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;31435:117:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30739:84;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30739:84:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;7472:230;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7472:230:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;7472:230:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;31060:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31060:79:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5439:28;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5439:28:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4729:31;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4729:31:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31886:658;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31886:658:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;31886:658:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;13385:370;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13385:370:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13385:370:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;13385:370:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;13385:370:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;13385:370:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;13385:370:0;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;19203:524;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19203:524:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19203:524:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12709:150;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12709:150:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12709:150:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23382:413;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23382:413:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23382:413:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;5528:38;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5528:38:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;19959:126;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19959:126:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19959:126:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;336:33;;8:9:-1;5:2;;;30:1;27;20:12;5:2;336:33:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;22249:234;22306:4;22323:9;22364:1;22347:19;;:5;:19;;;22343:37;;;22375:5;22368:12;;;;;22343:37;22435:5;22423:18;22415:26;;22474:1;22469:4;:6;22462:13;;;22249:234;;;;:::o;3678:18::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;11493:890::-;11561:12;11594:16;;;;;;;;;;;11586:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11990:1;11979:7;:12;11978:54;;;;12030:1;11997:7;:19;12005:10;11997:19;;;;;;;;;;;;;;;:29;12017:8;11997:29;;;;;;;;;;;;;;;;:34;11978:54;11970:63;;;;;;12119:22;12130:10;;;;;;;;;;;12119;:22::i;:::-;12115:132;;;12182:10;;;;;;;;;;;12166:37;;;12204:10;12216:8;12226:7;12166:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12166:68:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;12166:68:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12166:68:0;;;;;;;;;;;;;;;;12158:77;;;;;;12115:132;12291:7;12259;:19;12267:10;12259:19;;;;;;;;;;;;;;;:29;12279:8;12259:29;;;;;;;;;;;;;;;:39;;;;12335:8;12314:39;;12323:10;12314:39;;;12345:7;12314:39;;;;;;;;;;;;;;;;;;12371:4;12364:11;;11493:890;;;;:::o;31216:85::-;31257:7;31284:9;;31277:16;;31216:85;:::o;30902:79::-;30940:7;30967:6;;30960:13;;30902:79;:::o;33688:157::-;33756:7;33783:54;33814:9;:22;33824:11;33814:22;;;;;;;;;;;;;;;;33783:26;33797:11;33783:13;:26::i;:::-;:30;;:54;;;;:::i;:::-;33776:61;;33688:157;;;:::o;4846:25::-;;;;:::o;13883:103::-;13927:4;13951:27;13965:12;13951:13;:27::i;:::-;13944:34;;13883:103;:::o;33085:430::-;33185:18;30555:10;;;;;;;;;;;30547:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;267:10;;;;;;;;;;;253:24;;:10;:24;;;245:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33229:29;33246:11;33229:16;:29::i;:::-;33216:42;;33292:1;33279:10;:14;33271:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33367:38;33394:10;33367:9;:22;33377:11;33367:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;33342:9;:22;33352:11;33342:22;;;;;;;;;;;;;;;:63;;;;33426:38;33440:11;33453:10;33426:13;:38::i;:::-;33418:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33085:430;;;:::o;8060:766::-;8149:12;8474:10;;;;;;;;;;;8460:24;;:10;:24;;;8456:299;;8509:16;;;;;;;;;;;8501:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8683:7;8653;:14;8661:5;8653:14;;;;;;;;;;;;;;;:26;8668:10;8653:26;;;;;;;;;;;;;;;;:37;;8645:46;;;;;;8736:7;8706;:14;8714:5;8706:14;;;;;;;;;;;;;;;:26;8721:10;8706:26;;;;;;;;;;;;;;;;:37;;;;;;;;;;;8456:299;8765:31;8776:5;8783:3;8788:7;8765:10;:31::i;:::-;8814:4;8807:11;;8060:766;;;;;:::o;3759:21::-;;;;;;;;;;;;;:::o;557:126::-;267:10;;;;;;;;;;;253:24;;:10;:24;;;245:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;661:14;648:10;;:27;;;;;;;;;;;;;;;;;;557:126;:::o;14351:964::-;14437:4;14820:1;14793:8;:16;14802:6;14793:16;;;;;;;;;;;;;;;:23;;;;:28;14792:93;;;;14872:12;14840:8;:16;14849:6;14840:16;;;;;;;;;;;;;;;14857:1;14840:19;;;;;;;;;;;;;;;:29;;;;;;;;;;;;:44;;;14792:93;14788:520;;;14938:1;14906:34;;14914:11;;;;;;;;;;;14906:34;;;14902:236;;14968:11;;;;;;;;;;;:23;;;14992:6;15000:38;15004:12;15018:19;;15000:3;:38::i;:::-;14968:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14968:71:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;14968:71:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14968:71:0;;;;;;;;;;;;;;;;14961:78;;;;14902:236;15121:1;15114:8;;;;14788:520;15254:42;15265:8;:16;15274:6;15265:16;;;;;;;;;;;;;;;15283:12;15254:10;:42::i;:::-;15247:49;;14351:964;;;;;:::o;3907:33::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;17220:805::-;17452:7;17494:1;17476:14;:19;17472:54;;;17514:12;17497:29;;17472:54;17537:22;17562:12;;;;;;;;;;;:29;;;17614:4;17634:14;17663:15;17693:18;17726:17;17758;17562:228;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;17562:228:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;17562:228:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17562:228:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;17562:228:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;17562:228:0;;;;;;;;;;;;;;;;17537:253;;17803:10;:27;;;17831:10;17803:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17803:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;17803:39:0;;;;17952:10;17930:50;;;17965:14;17930:50;;;;;;;;;;;;;;;;;;18006:10;17991:26;;;17220:805;;;;;;;:::o;10954:132::-;11010:15;11045:33;11057:6;11065:12;11045:11;:33::i;:::-;11038:40;;10954:132;;;:::o;4538:30::-;;;;;;;;;;;;;:::o;18366:600::-;18457:4;267:10;;;;;;;;;;;253:24;;:10;:24;;;245:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18474:19;18496:13;:11;:13::i;:::-;18474:35;;18556:14;18545:7;18528:14;:24;:42;;18520:51;;;;;;18604:22;18629:17;18639:6;18629:9;:17::i;:::-;18604:42;;18696:17;18685:7;18665:17;:27;:48;;18657:57;;;;;;18747:62;18764:18;18801:7;18784:14;:24;18747:16;:62::i;:::-;18820:63;18837:8;:16;18846:6;18837:16;;;;;;;;;;;;;;;18875:7;18855:17;:27;18820:16;:63::i;:::-;18920:6;18899:37;;18916:1;18899:37;;;18928:7;18899:37;;;;;;;;;;;;;;;;;;18954:4;18947:11;;;;18366:600;;;;:::o;3841:20::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;15533:934::-;15595:4;16004:1;15975:18;:25;;;;:30;15974:97;;;;16058:12;16024:18;16043:1;16024:21;;;;;;;;;;;;;;;:31;;;;;;;;;;;;:46;;;15974:97;15970:490;;;16124:1;16092:34;;16100:11;;;;;;;;;;;16092:34;;;16088:196;;16154:11;;;;;;;;;;;:25;;;16180:38;16184:12;16198:19;;16180:3;:38::i;:::-;16154:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16154:65:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;16154:65:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16154:65:0;;;;;;;;;;;;;;;;16147:72;;;;16088:196;16267:1;16260:8;;;;15970:490;16404:44;16415:18;16435:12;16404:10;:44::i;:::-;16397:51;;15533:934;;;;:::o;31435:117::-;31495:7;31522:9;:22;31532:11;31522:22;;;;;;;;;;;;;;;;31515:29;;31435:117;;;:::o;30739:84::-;30781:4;30805:10;;;;;;;;;;;30798:17;;30739:84;:::o;7472:230::-;7536:12;7569:16;;;;;;;;;;;7561:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7636:36;7647:10;7659:3;7664:7;7636:10;:36::i;:::-;7690:4;7683:11;;7472:230;;;;:::o;31060:79::-;31098:7;31125:6;;31118:13;;31060:79;:::o;5439:28::-;;;;;;;;;;;;;:::o;4729:31::-;;;;:::o;31886:658::-;30422:10;;;;;;;;;;;30421:11;30413:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;267:10;;;;;;;;;;;253:24;;:10;:24;;;245:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32022:4;32009:10;;:17;;;;;;;;;;;;;;;;;;32039:22;32055:5;32039:15;:22::i;:::-;32153:8;32136:13;:25;;32128:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32239:1;32228:8;:12;32220:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32367:15;32345:19;32355:8;32345:5;:9;;:19;;;;:::i;:::-;:37;32337:97;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32459:8;32447:9;:20;;;;32487:24;32497:13;32487:5;:9;;:24;;;;:::i;:::-;32478:6;:33;;;;32531:5;32522:6;:14;;;;31886:658;;;:::o;13385:370::-;13491:12;13524:26;13532:8;13542:7;13524;:26::i;:::-;13516:35;;;;;;13587:8;13564:48;;;13627:10;13652:7;13682:4;13702:10;13564:159;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;13564:159:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13564:159:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;13564:159:0;;;;13743:4;13736:11;;13385:370;;;;;:::o;19203:524::-;19293:4;267:10;;;;;;;;;;;253:24;;:10;:24;;;245:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19310:19;19332:13;:11;:13::i;:::-;19310:35;;19382:7;19364:14;:25;;19356:34;;;;;;19401:24;19428:17;19438:6;19428:9;:17::i;:::-;19401:44;;19487:7;19464:19;:30;;19456:39;;;;;;19506:62;19523:18;19560:7;19543:14;:24;19506:16;:62::i;:::-;19579:65;19596:8;:16;19605:6;19596:16;;;;;;;;;;;;;;;19636:7;19614:19;:29;19579:16;:65::i;:::-;19685:1;19660:37;;19669:6;19660:37;;;19689:7;19660:37;;;;;;;;;;;;;;;;;;19715:4;19708:11;;;;19203:524;;;;:::o;12709:150::-;12789:17;12826:7;:15;12834:6;12826:15;;;;;;;;;;;;;;;:25;12842:8;12826:25;;;;;;;;;;;;;;;;12819:32;;12709:150;;;;:::o;23382:413::-;267:10;;;;;;;;;;;253:24;;:10;:24;;;245:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23482:1;23464:20;;:6;:20;;;23460:116;;;23501:10;;;;;;;;;;;:19;;:42;23529:4;23521:21;;;23501:42;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;23501:42:0;23558:7;;23460:116;23588:17;23620:6;23588:39;;23638:12;23653:5;:15;;;23677:4;23653:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23653:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;23653:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23653:30:0;;;;;;;;;;;;;;;;23638:45;;23694:5;:14;;;23709:10;;;;;;;;;;;23721:7;23694:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23694:35:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;23694:35:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23694:35:0;;;;;;;;;;;;;;;;;23767:10;;;;;;;;;;;23745:42;;23759:6;23745:42;;;23779:7;23745:42;;;;;;;;;;;;;;;;;;324:1;;;23382:413;:::o;5528:38::-;;;;;;;;;;;;;:::o;19959:126::-;267:10;;;;;;;;;;;253:24;;:10;:24;;;245:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20060:17;20041:16;;:36;;;;;;;;;;;;;;;;;;19959:126;:::o;336:33::-;;;;;;;;;;;;;:::o;33989:581::-;34055:7;34080:10;;;;;;;;;;;34075:52;;34114:1;34107:8;;;;34075:52;34139:27;34169:22;34179:11;34169:9;:22::i;:::-;34139:52;;34202:25;34230:47;34254:9;:22;34264:11;34254:22;;;;;;;;;;;;;;;;34230:19;:23;;:47;;;;:::i;:::-;34202:75;;34312:6;;34294:15;:24;34290:273;;;34342:1;34335:8;;;;;;34290:273;34384:21;34395:9;;34384:6;;:10;;:21;;;;:::i;:::-;34365:15;:40;34361:202;;34429:17;34422:24;;;;;;34361:202;34486:65;34541:9;;34486:50;34508:27;34528:6;;34508:15;:19;;:27;;;;:::i;:::-;34486:17;:21;;:50;;;;:::i;:::-;:54;;:65;;;;:::i;:::-;34479:72;;;;33989:581;;;;:::o;27154:184::-;27212:7;27245:1;27240;:6;;27232:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27292:9;27308:1;27304;:5;27292:17;;27329:1;27322:8;;;27154:184;;;;:::o;26698:181::-;26756:7;26776:9;26792:1;26788;:5;26776:17;;26817:1;26812;:6;;26804:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26870:1;26863:8;;;26698:181;;;;:::o;32820:137::-;30422:10;;;;;;;;;;;30421:11;30413:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32915:34;32932:4;32938:2;32942:6;32915:16;:34::i;:::-;32820:137;;;:::o;22558:97::-;22610:4;22638:1;22634;:5;:13;;22646:1;22634:13;;;22642:1;22634:13;22627:20;;22558:97;;;;:::o;20469:782::-;20565:4;20608:1;20586:11;:18;;;;:23;20582:37;;;20618:1;20611:8;;;;20582:37;20688:11;20719:1;20700:11;:18;;;;:20;20688:33;;;;;;;;;;;;;;;:43;;;;;;;;;;;;20678:53;;:6;:53;20674:118;;20753:11;20784:1;20765:11;:18;;;;:20;20753:33;;;;;;;;;;;;;;;:39;;;;;;;;;;;;20746:46;;;;;;20674:118;20816:11;20828:1;20816:14;;;;;;;;;;;;;;;:24;;;;;;;;;;;;20807:33;;:6;:33;20803:47;;;20849:1;20842:8;;;;20803:47;20915:8;20926:1;20915:12;;20938:8;20968:1;20949:11;:18;;;;:20;20938:31;;20980:224;20993:3;20987;:9;20980:224;;;21013:8;21041:1;21037;21031:3;21025;:9;:13;21024:18;;;;;;21013:29;;21089:6;21061:11;21073:3;21061:16;;;;;;;;;;;;;;;:26;;;;;;;;;;;;:34;;;21057:136;;21122:3;21116:9;;21057:136;;;21176:1;21172:3;:5;21166:11;;21057:136;20980:224;;;;21221:11;21233:3;21221:16;;;;;;;;;;;;;;;:22;;;;;;;;;;;;21214:29;;;;;;20469:782;;;;;:::o;21475:598::-;21602:1;21580:11;:18;;;;:23;21579:99;;;;21665:12;21618:11;21650:1;21630:11;:18;;;;:21;21618:34;;;;;;;;;;;;;;;:44;;;;;;;;;;;;:59;;;21579:99;21575:491;;;21698:32;21733:11;21746;:20;;;;;;;;;;;:::i;:::-;21733:35;;;;;;;;;;;;;;;21698:70;;21821:12;21786:13;:23;;;:48;;;;;;;;;;;;;;;;;;21882:6;21852:13;:19;;;:37;;;;;;;;;;;;;;;;;;21575:491;;;;21928:32;21963:11;21994:1;21975:11;:18;;;;:20;21963:33;;;;;;;;;;;;;;;21928:68;;22044:6;22014:13;:19;;;:37;;;;;;;;;;;;;;;;;;21575:491;;21475:598;;:::o;27589:470::-;27647:7;27896:1;27891;:6;27887:47;;;27921:1;27914:8;;;;27887:47;27946:9;27962:1;27958;:5;27946:17;;27991:1;27986;27982;:5;;;;;;:10;27974:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28050:1;28043:8;;;27589:470;;;;;:::o;28527:333::-;28585:7;28684:1;28680;:5;28672:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28727:9;28743:1;28739;:5;;;;;;28727:17;;28851:1;28844:8;;;28527:333;;;;:::o;9213:1602::-;9321:1;9310:7;:12;9306:166;;;9363:3;9347:29;;9356:5;9347:29;;;9368:7;9347:29;;;;;;;;;;;;;;;;;;9451:7;;9306:166;9517:12;9495:19;;:34;9487:43;;;;;;9643:1;9628:17;;:3;:17;;;;9627:45;;;;;9666:4;9651:20;;:3;:20;;;;9627:45;9619:54;;;;;;9811:24;9838:32;9850:5;9857:12;9838:11;:32::i;:::-;9811:59;;9917:7;9894:19;:30;;9886:39;;;;;;10004:22;10015:10;;;;;;;;;;;10004;:22::i;:::-;10000:129;;;10070:10;;;;;;;;;;;10054:38;;;10093:5;10100:3;10105:7;10054:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10054:59:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;10054:59:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;10054:59:0;;;;;;;;;;;;;;;;10046:68;;;;;;10000:129;10260:64;10277:8;:15;10286:5;10277:15;;;;;;;;;;;;;;;10316:7;10294:19;:29;10260:16;:64::i;:::-;10457:22;10482:30;10494:3;10499:12;10482:11;:30::i;:::-;10457:55;;10565:17;10554:7;10534:17;:27;:48;;10526:57;;;;;;10619:60;10636:8;:13;10645:3;10636:13;;;;;;;;;;;;;;;10671:7;10651:17;:27;10619:16;:60::i;:::-;10792:3;10776:29;;10785:5;10776:29;;;10797:7;10776:29;;;;;;;;;;;;;;;;;;9213:1602;;;;;;:::o;29546:5027::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

bzzr://65f06717347bb16838de0664daa333eec2550adc36588fe91501994a3b9e9974
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.