ETH Price: $2,555.80 (+4.91%)

Token

CoinUs (CNUS)
 

Overview

Max Total Supply

2,000,000,000 CNUS

Holders

4,368 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
87,559.24567019 CNUS

Value
$0.00
0x8a6cdbd2c479fa03d853243d5cd6b45f86af9dce
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

CoinUs is a integrated business platform with focus on individual's value and experience to provide Human-to-Blockchain Interface.

ICO Information

Project Sector : Wallet
Token Distribution Date : Nov 13-14, 2018
Country : Singapore

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CnusToken

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2018-11-13
*/

pragma solidity 0.4.24;

/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable {
  address public owner;


  event OwnershipRenounced(address indexed previousOwner);
  event OwnershipTransferred(
    address indexed previousOwner,
    address indexed newOwner
  );


  /**
   * @dev The Ownable constructor sets the original `owner` of the contract to the sender
   * account.
   */
  constructor() public {
    owner = msg.sender;
  }

  /**
   * @dev Throws if called by any account other than the owner.
   */
  modifier onlyOwner() {
    require(msg.sender == owner);
    _;
  }

  /**
   * @dev Allows the current owner to relinquish control of the contract.
   * @notice Renouncing to ownership will leave the contract without an owner.
   * It will not be possible to call the functions with the `onlyOwner`
   * modifier anymore.
   */
  function renounceOwnership() public onlyOwner {
    emit OwnershipRenounced(owner);
    owner = address(0);
  }

  /**
   * @dev Allows the current owner to transfer control of the contract to a newOwner.
   * @param _newOwner The address to transfer ownership to.
   */
  function transferOwnership(address _newOwner) public onlyOwner {
    _transferOwnership(_newOwner);
  }

  /**
   * @dev Transfers control of the contract to a newOwner.
   * @param _newOwner The address to transfer ownership to.
   */
  function _transferOwnership(address _newOwner) internal {
    require(_newOwner != address(0));
    emit OwnershipTransferred(owner, _newOwner);
    owner = _newOwner;
  }
}

/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * See https://github.com/ethereum/EIPs/issues/179
 */
contract ERC20Basic {
  function totalSupply() public view returns (uint256);
  function balanceOf(address _who) public view returns (uint256);
  function transfer(address _to, uint256 _value) public returns (bool);
  event Transfer(address indexed from, address indexed to, uint256 value);
}

/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {

  /**
  * @dev Multiplies two numbers, throws on overflow.
  */
  function mul(uint256 _a, uint256 _b) internal pure returns (uint256 c) {
    // Gas optimization: this is cheaper than asserting '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;
    }

    c = _a * _b;
    assert(c / _a == _b);
    return c;
  }

  /**
  * @dev Integer division of two numbers, truncating the quotient.
  */
  function div(uint256 _a, uint256 _b) internal pure returns (uint256) {
    // assert(_b > 0); // Solidity automatically throws when dividing by 0
    // uint256 c = _a / _b;
    // assert(_a == _b * c + _a % _b); // There is no case in which this doesn't hold
    return _a / _b;
  }

  /**
  * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
  */
  function sub(uint256 _a, uint256 _b) internal pure returns (uint256) {
    assert(_b <= _a);
    return _a - _b;
  }

  /**
  * @dev Adds two numbers, throws on overflow.
  */
  function add(uint256 _a, uint256 _b) internal pure returns (uint256 c) {
    c = _a + _b;
    assert(c >= _a);
    return c;
  }
}

/**
 * @title Basic token
 * @dev Basic version of StandardToken, with no allowances.
 */
contract BasicToken is ERC20Basic {
  using SafeMath for uint256;

  mapping(address => uint256) internal balances;

  uint256 internal totalSupply_;

  /**
  * @dev Total number of tokens in existence
  */
  function totalSupply() public view returns (uint256) {
    return totalSupply_;
  }

  /**
  * @dev Transfer token for a specified address
  * @param _to The address to transfer to.
  * @param _value The amount to be transferred.
  */
  function transfer(address _to, uint256 _value) public returns (bool) {
    require(_value <= balances[msg.sender]);
    require(_to != address(0));

    balances[msg.sender] = balances[msg.sender].sub(_value);
    balances[_to] = balances[_to].add(_value);
    emit Transfer(msg.sender, _to, _value);
    return true;
  }

  /**
  * @dev Gets the balance of the specified address.
  * @param _owner The address to query the the balance of.
  * @return An uint256 representing the amount owned by the passed address.
  */
  function balanceOf(address _owner) public view returns (uint256) {
    return balances[_owner];
  }

}

/**
 * @title Burnable Token
 * @dev Token that can be irreversibly burned (destroyed).
 */
contract BurnableToken is BasicToken {

  event Burn(address indexed burner, uint256 value);

  /**
   * @dev Burns a specific amount of tokens.
   * @param _value The amount of token to be burned.
   */
  function burn(uint256 _value) public {
    _burn(msg.sender, _value);
  }

  function _burn(address _who, uint256 _value) internal {
    require(_value <= balances[_who]);
    // no need to require value <= totalSupply, since that would imply the
    // sender's balance is greater than the totalSupply, which *should* be an assertion failure

    balances[_who] = balances[_who].sub(_value);
    totalSupply_ = totalSupply_.sub(_value);
    emit Burn(_who, _value);
    emit Transfer(_who, address(0), _value);
  }
}

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 is ERC20Basic {
  function allowance(address _owner, address _spender)
    public view returns (uint256);

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

  function approve(address _spender, uint256 _value) public returns (bool);
  event Approval(
    address indexed owner,
    address indexed spender,
    uint256 value
  );
}

/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * https://github.com/ethereum/EIPs/issues/20
 * Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract StandardToken is ERC20, BasicToken {

  mapping (address => mapping (address => uint256)) internal allowed;


  /**
   * @dev Transfer tokens from one address to another
   * @param _from address The address which you want to send tokens from
   * @param _to address The address which you want to transfer to
   * @param _value uint256 the amount of tokens to be transferred
   */
  function transferFrom(
    address _from,
    address _to,
    uint256 _value
  )
    public
    returns (bool)
  {
    require(_value <= balances[_from]);
    require(_value <= allowed[_from][msg.sender]);
    require(_to != address(0));

    balances[_from] = balances[_from].sub(_value);
    balances[_to] = balances[_to].add(_value);
    allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
    emit Transfer(_from, _to, _value);
    return true;
  }

  /**
   * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
   * Beware that changing an allowance with this method brings the risk that someone may use both the old
   * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this
   * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards:
   * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
   * @param _spender The address which will spend the funds.
   * @param _value The amount of tokens to be spent.
   */
  function approve(address _spender, uint256 _value) public returns (bool) {
    allowed[msg.sender][_spender] = _value;
    emit Approval(msg.sender, _spender, _value);
    return true;
  }

  /**
   * @dev Function to check the amount of tokens that an owner allowed to a spender.
   * @param _owner address The address which owns the funds.
   * @param _spender address The address which will spend the funds.
   * @return A uint256 specifying the amount of tokens still available for the spender.
   */
  function allowance(
    address _owner,
    address _spender
   )
    public
    view
    returns (uint256)
  {
    return allowed[_owner][_spender];
  }

  /**
   * @dev Increase the amount of tokens that an owner allowed to a spender.
   * approve should be called when allowed[_spender] == 0. To increment
   * allowed value is better to use this function to avoid 2 calls (and wait until
   * the first transaction is mined)
   * From MonolithDAO Token.sol
   * @param _spender The address which will spend the funds.
   * @param _addedValue The amount of tokens to increase the allowance by.
   */
  function increaseApproval(
    address _spender,
    uint256 _addedValue
  )
    public
    returns (bool)
  {
    allowed[msg.sender][_spender] = (
      allowed[msg.sender][_spender].add(_addedValue));
    emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

  /**
   * @dev Decrease the amount of tokens that an owner allowed to a spender.
   * approve should be called when allowed[_spender] == 0. To decrement
   * allowed value is better to use this function to avoid 2 calls (and wait until
   * the first transaction is mined)
   * From MonolithDAO Token.sol
   * @param _spender The address which will spend the funds.
   * @param _subtractedValue The amount of tokens to decrease the allowance by.
   */
  function decreaseApproval(
    address _spender,
    uint256 _subtractedValue
  )
    public
    returns (bool)
  {
    uint256 oldValue = allowed[msg.sender][_spender];
    if (_subtractedValue >= oldValue) {
      allowed[msg.sender][_spender] = 0;
    } else {
      allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
    }
    emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

}

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure.
 * To use this library you can add a `using SafeERC20 for ERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
  function safeTransfer(
    ERC20Basic _token,
    address _to,
    uint256 _value
  )
    internal
  {
    require(_token.transfer(_to, _value));
  }

  function safeTransferFrom(
    ERC20 _token,
    address _from,
    address _to,
    uint256 _value
  )
    internal
  {
    require(_token.transferFrom(_from, _to, _value));
  }

  function safeApprove(
    ERC20 _token,
    address _spender,
    uint256 _value
  )
    internal
  {
    require(_token.approve(_spender, _value));
  }
}

/* solium-disable security/no-block-members */

pragma solidity ^0.4.24;






/**
 * @title TokenVesting
 * @dev A token holder contract that can release its token balance gradually like a
 * typical vesting scheme, with a cliff and vesting period. Optionally revocable by the
 * owner.
 */
contract TokenVesting is Ownable {
  using SafeMath for uint256;
  using SafeERC20 for ERC20Basic;

  event Released(uint256 amount);
  event Revoked();

  // beneficiary of tokens after they are released
  address public beneficiary;

  uint256 public cliff;
  uint256 public start;
  uint256 public duration;

  bool public revocable;

  mapping (address => uint256) public released;
  mapping (address => bool) public revoked;

  /**
   * @dev Creates a vesting contract that vests its balance of any ERC20 token to the
   * _beneficiary, gradually in a linear fashion until _start + _duration. By then all
   * of the balance will have vested.
   * @param _beneficiary address of the beneficiary to whom vested tokens are transferred
   * @param _cliff duration in seconds of the cliff in which tokens will begin to vest
   * @param _start the time (as Unix time) at which point vesting starts
   * @param _duration duration in seconds of the period in which the tokens will vest
   * @param _revocable whether the vesting is revocable or not
   */
  constructor(
    address _beneficiary,
    uint256 _start,
    uint256 _cliff,
    uint256 _duration,
    bool _revocable
  )
    public
  {
    require(_beneficiary != address(0));
    require(_cliff <= _duration);

    beneficiary = _beneficiary;
    revocable = _revocable;
    duration = _duration;
    cliff = _start.add(_cliff);
    start = _start;
  }

  /**
   * @notice Transfers vested tokens to beneficiary.
   * @param _token ERC20 token which is being vested
   */
  function release(ERC20Basic _token) public {
    uint256 unreleased = releasableAmount(_token);

    require(unreleased > 0);

    released[_token] = released[_token].add(unreleased);

    _token.safeTransfer(beneficiary, unreleased);

    emit Released(unreleased);
  }

  /**
   * @notice Allows the owner to revoke the vesting. Tokens already vested
   * remain in the contract, the rest are returned to the owner.
   * @param _token ERC20 token which is being vested
   */
  function revoke(ERC20Basic _token) public onlyOwner {
    require(revocable);
    require(!revoked[_token]);

    uint256 balance = _token.balanceOf(address(this));

    uint256 unreleased = releasableAmount(_token);
    uint256 refund = balance.sub(unreleased);

    revoked[_token] = true;

    _token.safeTransfer(owner, refund);

    emit Revoked();
  }

  /**
   * @dev Calculates the amount that has already vested but hasn't been released yet.
   * @param _token ERC20 token which is being vested
   */
  function releasableAmount(ERC20Basic _token) public view returns (uint256) {
    return vestedAmount(_token).sub(released[_token]);
  }

  /**
   * @dev Calculates the amount that has already vested.
   * @param _token ERC20 token which is being vested
   */
  function vestedAmount(ERC20Basic _token) public view returns (uint256) {
    uint256 currentBalance = _token.balanceOf(address(this));
    uint256 totalBalance = currentBalance.add(released[_token]);

    if (block.timestamp < cliff) {
      return 0;
    } else if (block.timestamp >= start.add(duration) || revoked[_token]) {
      return totalBalance;
    } else {
      return totalBalance.mul(block.timestamp.sub(start)).div(duration);
    }
  }
}

/** @title Periodic Token Vesting
  * @dev A token holder contract that can release its token balance periodically like a
  * typical vesting scheme. Optionally revocable by the owner.
  */
contract PeriodicTokenVesting is TokenVesting {
    using SafeMath for uint256;

    uint256 public releasePeriod;
    uint256 public releaseCount;

    mapping (address => uint256) public revokedAmount;

    constructor(
        address _beneficiary,
        uint256 _startInUnixEpochTime,
        uint256 _releasePeriodInSeconds,
        uint256 _releaseCount
    )
        public
        TokenVesting(_beneficiary, _startInUnixEpochTime, 0, _releasePeriodInSeconds.mul(_releaseCount), true)
    {
        require(_releasePeriodInSeconds.mul(_releaseCount) > 0, "Vesting Duration cannot be 0");
        require(_startInUnixEpochTime.add(_releasePeriodInSeconds.mul(_releaseCount)) > block.timestamp, "Worthless vesting");
        releasePeriod = _releasePeriodInSeconds;
        releaseCount = _releaseCount;
    }

    function initialTokenAmountInVesting(ERC20Basic _token) public view returns (uint256) {
        return _token.balanceOf(address(this)).add(released[_token]).add(revokedAmount[_token]);
    }

    function tokenAmountLockedInVesting(ERC20Basic _token) public view returns (uint256) {
        return _token.balanceOf(address(this)).sub(releasableAmount(_token));
    }

    function nextVestingTime(ERC20Basic _token) public view returns (uint256) {
        if (block.timestamp >= start.add(duration) || revoked[_token]) {
            return 0;
        } else {
            return start.add(((block.timestamp.sub(start)).div(releasePeriod).add(1)).mul(releasePeriod));
        }
    }

    function vestingCompletionTime(ERC20Basic _token) public view returns (uint256) {
        if (block.timestamp >= start.add(duration) || revoked[_token]) {
            return 0;
        } else {
            return start.add(duration);
        }
    }

    function remainingVestingCount(ERC20Basic _token) public view returns (uint256) {
        if (block.timestamp >= start.add(duration) || revoked[_token]) {
            return 0;
        } else {
            return releaseCount.sub((block.timestamp.sub(start)).div(releasePeriod));
        }
    }

    /**
     * @notice Allows the owner to revoke the vesting. Tokens already vested
     * remain in the contract, the rest are returned to the owner.
     * @param _token ERC20 token which is being vested
     */
    function revoke(ERC20Basic _token) public onlyOwner {
      require(revocable);
      require(!revoked[_token]);

      uint256 balance = _token.balanceOf(address(this));

      uint256 unreleased = releasableAmount(_token);
      uint256 refund = balance.sub(unreleased);

      revoked[_token] = true;
      revokedAmount[_token] = refund;

      _token.safeTransfer(owner, refund);

      emit Revoked();
    }

    /**
     * @dev Calculates the amount that has already vested.
     * @param _token ERC20 token which is being vested
     */
    function vestedAmount(ERC20Basic _token) public view returns (uint256) {
        uint256 currentBalance = _token.balanceOf(address(this));
        uint256 totalBalance = currentBalance.add(released[_token]);

        if (block.timestamp < cliff) {
            return 0;
        } else if (block.timestamp >= start.add(duration) || revoked[_token]) {
            return totalBalance;
        } else {
            return totalBalance.mul((block.timestamp.sub(start)).div(releasePeriod)).div(releaseCount);
        }
    }
}

/** @title Cnus Token
  * An ERC20-compliant token.
  */
contract CnusToken is StandardToken, Ownable, BurnableToken {
    using SafeMath for uint256;

    // global token transfer lock
    bool public globalTokenTransferLock = false;
    bool public mintingFinished = false;
    bool public lockingDisabled = false;

    string public name = "CoinUs";
    string public symbol = "CNUS";
    uint256 public decimals = 18;

    address public mintContractOwner;

    address[] public vestedAddresses;

    // mapping that provides address based lock.
    mapping( address => bool ) public lockedStatusAddress;
    mapping( address => PeriodicTokenVesting ) private tokenVestingContracts;

    event LockingDisabled();
    event GlobalLocked();
    event GlobalUnlocked();
    event Locked(address indexed lockedAddress);
    event Unlocked(address indexed unlockedaddress);
    event Mint(address indexed to, uint256 amount);
    event MintFinished();
    event MintOwnershipTransferred(address indexed previousOwner, address indexed newOwner);
    event VestingCreated(address indexed beneficiary, uint256 startTime, uint256 period, uint256 releaseCount);
    event InitialVestingDeposited(address indexed beneficiary, uint256 amount);
    event AllVestedTokenReleased();
    event VestedTokenReleased(address indexed beneficiary);
    event RevokedTokenVesting(address indexed beneficiary);

    // Check for global lock status to be unlocked
    modifier checkGlobalTokenTransferLock {
        if (!lockingDisabled) {
            require(!globalTokenTransferLock, "Global lock is active");
        }
        _;
    }

    // Check for address lock to be unlocked
    modifier checkAddressLock {
        require(!lockedStatusAddress[msg.sender], "Address is locked");
        _;
    }

    modifier canMint() {
        require(!mintingFinished, "Minting is finished");
        _;
    }

    modifier hasMintPermission() {
        require(msg.sender == mintContractOwner, "Minting is not authorized from this account");
        _;
    }

    constructor() public {
        uint256 initialSupply = 2000000000;
        initialSupply = initialSupply.mul(10**18);
        totalSupply_ = initialSupply;
        balances[msg.sender] = initialSupply;
        mintContractOwner = msg.sender;
    }

    function disableLockingForever() public
    onlyOwner
    {
        lockingDisabled = true;
        emit LockingDisabled();
    }

    function setGlobalTokenTransferLock(bool locked) public
    onlyOwner
    {
        require(!lockingDisabled);
        require(globalTokenTransferLock != locked);
        globalTokenTransferLock = locked;
        if (globalTokenTransferLock) {
            emit GlobalLocked();
        } else {
            emit GlobalUnlocked();
        }
    }

    /**
      * @dev Allows token issuer to lock token transfer for an address.
      * @param target Target address to lock token transfer.
      */
    function lockAddress(
        address target
    )
        public
        onlyOwner
    {
        require(!lockingDisabled);
        require(owner != target);
        require(!lockedStatusAddress[target]);
        for(uint256 i = 0; i < vestedAddresses.length; i++) {
            require(tokenVestingContracts[vestedAddresses[i]] != target);
        }
        lockedStatusAddress[target] = true;
        emit Locked(target);
    }

    /**
      * @dev Allows token issuer to unlock token transfer for an address.
      * @param target Target address to unlock token transfer.
      */
    function unlockAddress(
        address target
    )
        public
        onlyOwner
    {
        require(!lockingDisabled);
        require(lockedStatusAddress[target]);
        lockedStatusAddress[target] = false;
        emit Unlocked(target);
    }

    /**
     * @dev Creates a vesting contract that vests its balance of Cnus token to the
     * _beneficiary, gradually in periodic interval until all of the balance will have
     * vested by period * release count time.
     * @param _beneficiary address of the beneficiary to whom vested tokens are transferred
     * @param _startInUnixEpochTime the time (as Unix time) at which point vesting starts
     * @param _releasePeriodInSeconds period in seconds in which tokens will vest to beneficiary
     * @param _releaseCount count of period required to have all of the balance vested
     */
    function createNewVesting(
        address _beneficiary,
        uint256 _startInUnixEpochTime,
        uint256 _releasePeriodInSeconds,
        uint256 _releaseCount
    )
        public
        onlyOwner
    {
        require(tokenVestingContracts[_beneficiary] == address(0));
        tokenVestingContracts[_beneficiary] = new PeriodicTokenVesting(
            _beneficiary, _startInUnixEpochTime, _releasePeriodInSeconds, _releaseCount);
        vestedAddresses.push(_beneficiary);
        emit VestingCreated(_beneficiary, _startInUnixEpochTime, _releasePeriodInSeconds, _releaseCount);
    }

    /**
      * @dev Transfers token vesting amount from token issuer to vesting contract created for the
      * beneficiary. Token Issuer must first approve token spending from owner's account.
      * @param _beneficiary beneficiary for whom vesting has been created with createNewVesting function.
      * @param _vestAmount vesting amount for the beneficiary
      */
    function transferInitialVestAmountFromOwner(
        address _beneficiary,
        uint256 _vestAmount
    )
        public
        onlyOwner
        returns (bool)
    {
        require(tokenVestingContracts[_beneficiary] != address(0));
        ERC20 cnusToken = ERC20(address(this));
        require(cnusToken.allowance(owner, address(this)) >= _vestAmount);
        require(cnusToken.transferFrom(owner, tokenVestingContracts[_beneficiary], _vestAmount));
        emit InitialVestingDeposited(_beneficiary, cnusToken.balanceOf(tokenVestingContracts[_beneficiary]));
        return true;
    }

    function checkVestedAddressCount()
        public
        view
        returns (uint256)
    {
        return vestedAddresses.length;
    }

    function checkCurrentTotolVestedAmount()
        public
        view
        returns (uint256)
    {
        uint256 vestedAmountSum = 0;
        for (uint256 i = 0; i < vestedAddresses.length; i++) {
            vestedAmountSum = vestedAmountSum.add(
                tokenVestingContracts[vestedAddresses[i]].vestedAmount(ERC20(address(this))));
        }
        return vestedAmountSum;
    }

    function checkCurrentTotalReleasableAmount()
        public
        view
        returns (uint256)
    {
        uint256 releasableAmountSum = 0;
        for (uint256 i = 0; i < vestedAddresses.length; i++) {
            releasableAmountSum = releasableAmountSum.add(
                tokenVestingContracts[vestedAddresses[i]].releasableAmount(ERC20(address(this))));
        }
        return releasableAmountSum;
    }

    function checkCurrentTotalAmountLockedInVesting()
        public
        view
        returns (uint256)
    {
        uint256 lockedAmountSum = 0;
        for (uint256 i = 0; i < vestedAddresses.length; i++) {
            lockedAmountSum = lockedAmountSum.add(
               tokenVestingContracts[vestedAddresses[i]].tokenAmountLockedInVesting(ERC20(address(this))));
        }
        return lockedAmountSum;
    }

    function checkInitialTotalTokenAmountInVesting()
        public
        view
        returns (uint256)
    {
        uint256 initialTokenVesting = 0;
        for (uint256 i = 0; i < vestedAddresses.length; i++) {
            initialTokenVesting = initialTokenVesting.add(
                tokenVestingContracts[vestedAddresses[i]].initialTokenAmountInVesting(ERC20(address(this))));
        }
        return initialTokenVesting;
    }

    function checkNextVestingTimeForBeneficiary(
        address _beneficiary
    )
        public
        view
        returns (uint256)
    {
        require(tokenVestingContracts[_beneficiary] != address(0));
        return tokenVestingContracts[_beneficiary].nextVestingTime(ERC20(address(this)));
    }

    function checkVestingCompletionTimeForBeneficiary(
        address _beneficiary
    )
        public
        view
        returns (uint256)
    {
        require(tokenVestingContracts[_beneficiary] != address(0));
        return tokenVestingContracts[_beneficiary].vestingCompletionTime(ERC20(address(this)));
    }

    function checkRemainingVestingCountForBeneficiary(
        address _beneficiary
    )
        public
        view
        returns (uint256)
    {
        require(tokenVestingContracts[_beneficiary] != address(0));
        return tokenVestingContracts[_beneficiary].remainingVestingCount(ERC20(address(this)));
    }

    function checkReleasableAmountForBeneficiary(
        address _beneficiary
    )
        public
        view
        returns (uint256)
    {
        require(tokenVestingContracts[_beneficiary] != address(0));
        return tokenVestingContracts[_beneficiary].releasableAmount(ERC20(address(this)));
    }

    function checkVestedAmountForBeneficiary(
        address _beneficiary
    )
        public
        view
        returns (uint256)
    {
        require(tokenVestingContracts[_beneficiary] != address(0));
        return tokenVestingContracts[_beneficiary].vestedAmount(ERC20(address(this)));
    }

    function checkTokenAmountLockedInVestingForBeneficiary(
        address _beneficiary
    )
        public
        view
        returns (uint256)
    {
        require(tokenVestingContracts[_beneficiary] != address(0));
        return tokenVestingContracts[_beneficiary].tokenAmountLockedInVesting(ERC20(address(this)));
    }

    /**
     * @notice Transfers vested tokens to all beneficiaries.
     */
    function releaseAllVestedToken()
        public
        checkGlobalTokenTransferLock
        returns (bool)
    {
        emit AllVestedTokenReleased();
        PeriodicTokenVesting tokenVesting;
        for(uint256 i = 0; i < vestedAddresses.length; i++) {
            tokenVesting = tokenVestingContracts[vestedAddresses[i]];
            if(tokenVesting.releasableAmount(ERC20(address(this))) > 0) {
                tokenVesting.release(ERC20(address(this)));
                emit VestedTokenReleased(vestedAddresses[i]);
            }
        }
        return true;
    }

    /**
     * @notice Transfers vested tokens to beneficiary.
     * @param _beneficiary Beneficiary to whom cnus token is being vested
     */
    function releaseVestedToken(
        address _beneficiary
    )
        public
        checkGlobalTokenTransferLock
        returns (bool)
    {
        require(tokenVestingContracts[_beneficiary] != address(0));
        tokenVestingContracts[_beneficiary].release(ERC20(address(this)));
        emit VestedTokenReleased(_beneficiary);
        return true;
    }

    /**
     * @notice Allows the owner to revoke the vesting. Tokens already vested
     * remain in the contract, the rest are returned to the owner.
     * @param _beneficiary Beneficiary to whom cnus token is being vested
     */
    function revokeTokenVesting(
        address _beneficiary
    )
        public
        onlyOwner
        checkGlobalTokenTransferLock
        returns (bool)
    {
        require(tokenVestingContracts[_beneficiary] != address(0));
        tokenVestingContracts[_beneficiary].revoke(ERC20(address(this)));
        _transferMisplacedToken(owner, address(this), ERC20(address(this)).balanceOf(address(this)));
        emit RevokedTokenVesting(_beneficiary);
        return true;
    }

    /** @dev Transfer `_value` token to `_to` from `msg.sender`, on the condition
      * that global token lock and individual address lock in the `msg.sender`
      * accountare both released.
      * @param _to The address of the recipient.
      * @param _value The amount of token to be transferred.
      * @return Whether the transfer was successful or not.
      */
    function transfer(
        address _to,
        uint256 _value
    )
        public
        checkGlobalTokenTransferLock
        checkAddressLock
        returns (bool)
    {
        return super.transfer(_to, _value);
    }

    /**
     * @dev Transfer tokens from one address to another
     * @param _from address The address which you want to send tokens from
     * @param _to address The address which you want to transfer to
     * @param _value uint256 the amount of tokens to be transferred
     */
    function transferFrom(
        address _from,
        address _to,
        uint256 _value
    )
        public
        checkGlobalTokenTransferLock
        returns (bool)
    {
        require(!lockedStatusAddress[_from], "Address is locked.");
        return super.transferFrom(_from, _to, _value);
    }

    /**
     * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
     * @param _spender address The address which will spend the funds.
     * @param _value uint256 The amount of tokens to be spent.
     */
    function approve(
        address _spender,
        uint256 _value
    )
        public
        checkGlobalTokenTransferLock
        checkAddressLock
        returns (bool)
    {
        return super.approve(_spender, _value);
    }

    /**
     * @dev Increase the amount of tokens that an owner allowed to a spender.
     * approve should be called when allowed[_spender] == 0. To increment
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * From MonolithDAO Token.sol
     * @param _spender The address which will spend the funds.
     * @param _addedValue The amount of tokens to increase the allowance by.
     */
    function increaseApproval(
        address _spender,
        uint _addedValue
    )
        public
        checkGlobalTokenTransferLock
        checkAddressLock
        returns (bool success)
    {
        return super.increaseApproval(_spender, _addedValue);
    }

    /**
     * @dev Decrease the amount of tokens that an owner allowed to a spender.
     * approve should be called when allowed[_spender] == 0. To decrement
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * From MonolithDAO Token.sol
     * @param _spender The address which will spend the funds.
     * @param _subtractedValue The amount of tokens to decrease the allowance by.
     */
    function decreaseApproval(
        address _spender,
        uint _subtractedValue
    )
        public
        checkGlobalTokenTransferLock
        checkAddressLock
        returns (bool success)
    {
        return super.decreaseApproval(_spender, _subtractedValue);
    }

    /**
     * @dev Function to transfer mint ownership.
     * @param _newOwner The address that will have the mint ownership.
     */
    function transferMintOwnership(
        address _newOwner
    )
        public
        onlyOwner
    {
        _transferMintOwnership(_newOwner);
    }

    /**
     * @dev Function to mint tokens
     * @param _to The address that will receive the minted tokens.
     * @param _amount The amount of tokens to mint.
     * @return A boolean that indicates if the operation was successful.
     */
    function mint(
        address _to,
        uint256 _amount
    )
        public
        hasMintPermission
        canMint
        returns (bool)
    {
        totalSupply_ = totalSupply_.add(_amount);
        balances[_to] = balances[_to].add(_amount);
        emit Mint(_to, _amount);
        emit Transfer(address(0), _to, _amount);
        return true;
    }

    /**
     * @dev Function to stop minting new tokens.
     * @return True if the operation was successful.
     */
    function finishMinting()
        public
        onlyOwner
        canMint
        returns (bool)
    {
        mintingFinished = true;
        emit MintFinished();
        return true;
    }

    function checkMisplacedTokenBalance(
        address _tokenAddress
    )
        public
        view
        returns (uint256)
    {
        ERC20 unknownToken = ERC20(_tokenAddress);
        return unknownToken.balanceOf(address(this));
    }

    // Allow transfer of accidentally sent ERC20 tokens
    function refundMisplacedToken(
        address _recipient,
        address _tokenAddress,
        uint256 _value
    )
        public
        onlyOwner
    {
        _transferMisplacedToken(_recipient, _tokenAddress, _value);
    }

    function _transferMintOwnership(
        address _newOwner
    )
        internal
    {
        require(_newOwner != address(0));
        emit MintOwnershipTransferred(mintContractOwner, _newOwner);
        mintContractOwner = _newOwner;
    }

    function _transferMisplacedToken(
        address _recipient,
        address _tokenAddress,
        uint256 _value
    )
        internal
    {
        require(_recipient != address(0));
        ERC20 unknownToken = ERC20(_tokenAddress);
        require(unknownToken.balanceOf(address(this)) >= _value, "Insufficient token balance.");
        require(unknownToken.transfer(_recipient, _value));
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"lockedStatusAddress","outputs":[{"name":"","type":"bool"}],"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":"_newOwner","type":"address"}],"name":"transferMintOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_beneficiary","type":"address"},{"name":"_startInUnixEpochTime","type":"uint256"},{"name":"_releasePeriodInSeconds","type":"uint256"},{"name":"_releaseCount","type":"uint256"}],"name":"createNewVesting","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"}],"name":"lockAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"checkInitialTotalTokenAmountInVesting","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"checkCurrentTotalReleasableAmount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_tokenAddress","type":"address"}],"name":"checkMisplacedTokenBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_beneficiary","type":"address"},{"name":"_vestAmount","type":"uint256"}],"name":"transferInitialVestAmountFromOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"globalTokenTransferLock","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"disableLockingForever","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_recipient","type":"address"},{"name":"_tokenAddress","type":"address"},{"name":"_value","type":"uint256"}],"name":"refundMisplacedToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"releaseAllVestedToken","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_beneficiary","type":"address"}],"name":"checkVestingCompletionTimeForBeneficiary","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"mintContractOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_beneficiary","type":"address"}],"name":"checkTokenAmountLockedInVestingForBeneficiary","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"locked","type":"bool"}],"name":"setGlobalTokenTransferLock","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"checkVestedAddressCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"vestedAddresses","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"checkCurrentTotolVestedAmount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_beneficiary","type":"address"}],"name":"checkVestedAmountForBeneficiary","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"}],"name":"unlockAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_beneficiary","type":"address"}],"name":"checkRemainingVestingCountForBeneficiary","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_beneficiary","type":"address"}],"name":"releaseVestedToken","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"checkCurrentTotalAmountLockedInVesting","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_beneficiary","type":"address"}],"name":"checkNextVestingTimeForBeneficiary","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_beneficiary","type":"address"}],"name":"revokeTokenVesting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"lockingDisabled","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_beneficiary","type":"address"}],"name":"checkReleasableAmountForBeneficiary","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[],"name":"LockingDisabled","type":"event"},{"anonymous":false,"inputs":[],"name":"GlobalLocked","type":"event"},{"anonymous":false,"inputs":[],"name":"GlobalUnlocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"lockedAddress","type":"address"}],"name":"Locked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"unlockedaddress","type":"address"}],"name":"Unlocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"MintOwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"beneficiary","type":"address"},{"indexed":false,"name":"startTime","type":"uint256"},{"indexed":false,"name":"period","type":"uint256"},{"indexed":false,"name":"releaseCount","type":"uint256"}],"name":"VestingCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"beneficiary","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"InitialVestingDeposited","type":"event"},{"anonymous":false,"inputs":[],"name":"AllVestedTokenReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"beneficiary","type":"address"}],"name":"VestedTokenReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"beneficiary","type":"address"}],"name":"RevokedTokenVesting","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"}],"name":"OwnershipRenounced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]

6003805460a060020a62ffffff021916905560c0604052600660808190527f436f696e5573000000000000000000000000000000000000000000000000000060a09081526200005291600491906200014b565b506040805180820190915260048082527f434e555300000000000000000000000000000000000000000000000000000000602090920191825262000099916005916200014b565b506012600655348015620000ac57600080fd5b5060038054600160a060020a031916331790556377359400620000e681670de0b6b3a764000064010000000062002e866200011882021704565b60018190553360008181526020819052604090209190915560078054600160a060020a031916909117905550620001f0565b60008215156200012b5750600062000145565b508181028183828115156200013c57fe5b04146200014557fe5b92915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200018e57805160ff1916838001178555620001be565b82800160010185558215620001be579182015b82811115620001be578251825591602001919060010190620001a1565b50620001cc929150620001d0565b5090565b620001ed91905b80821115620001cc5760008155600101620001d7565b90565b613eb680620002006000396000f3006080604052600436106200025e5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b81146200026357806306fdde03146200028f578063095ea7b3146200031f5780631701c1fa146200034657806318160ddd146200036a5780631861355b146200039457806323b872dd14620003ba578063313ce56714620003e75780633420b07b14620003ff57806334a90d02146200042c57806340c10f19146200045057806342966c681462000477578063435cbebe146200049257806345b74a1c14620004aa5780634eb99f1414620004c2578063533c02b214620004e657806354a598b0146200050d57806355f61e041462000525578063565dc0ed146200053d57806356ff9813146200056a5780635c6fee29146200058257806365e0666714620005a65780636618846314620005da5780636cbf4d7e146200060157806370a082311462000625578063715018a6146200064957806374398d4514620006615780637d64bcb4146200067e57806389e03a4b14620006965780638da5cb5b14620006ae578063946b6a3814620006c657806395d89b4114620006e1578063a5f4bc3214620006f9578063a9059cbb1462000711578063afabfb4b1462000738578063b7eb5e0a146200075c578063c3abfe0d1462000780578063d129262414620007a4578063d622769814620007c8578063d6a3b80014620007e0578063d73dd6231462000804578063dd62ed3e146200082b578063e2c1fd331462000855578063f2fde38b1462000879578063fb815efe146200089d578063ffc3837514620008b5575b600080fd5b3480156200027057600080fd5b506200027b620008d9565b604080519115158252519081900360200190f35b3480156200029c57600080fd5b50620002a7620008fb565b6040805160208082528351818301528351919283929083019185019080838360005b83811015620002e3578181015183820152602001620002c9565b50505050905090810190601f168015620003115780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156200032c57600080fd5b506200027b600160a060020a03600435166024356200098d565b3480156200035357600080fd5b506200027b600160a060020a036004351662000a63565b3480156200037757600080fd5b506200038262000a78565b60408051918252519081900360200190f35b348015620003a157600080fd5b50620003b8600160a060020a036004351662000a7e565b005b348015620003c757600080fd5b506200027b600160a060020a036004358116906024351660443562000aa4565b348015620003f457600080fd5b506200038262000b94565b3480156200040c57600080fd5b50620003b8600160a060020a036004351660243560443560643562000b9a565b3480156200043957600080fd5b50620003b8600160a060020a036004351662000ceb565b3480156200045d57600080fd5b506200027b600160a060020a036004351660243562000e1b565b3480156200048457600080fd5b50620003b860043562000fe8565b3480156200049f57600080fd5b506200038262000ff4565b348015620004b757600080fd5b5062000382620010e7565b348015620004cf57600080fd5b5062000382600160a060020a036004351662001198565b348015620004f357600080fd5b506200027b600160a060020a03600435166024356200121d565b3480156200051a57600080fd5b506200027b6200149b565b3480156200053257600080fd5b50620003b8620014ab565b3480156200054a57600080fd5b50620003b8600160a060020a036004358116906024351660443562001514565b3480156200057757600080fd5b506200027b6200153e565b3480156200058f57600080fd5b5062000382600160a060020a03600435166200178a565b348015620005b357600080fd5b50620005be62001858565b60408051600160a060020a039092168252519081900360200190f35b348015620005e757600080fd5b506200027b600160a060020a036004351660243562001867565b3480156200060e57600080fd5b5062000382600160a060020a036004351662001934565b3480156200063257600080fd5b5062000382600160a060020a0360043516620019ce565b3480156200065657600080fd5b50620003b8620019e9565b3480156200066e57600080fd5b50620003b8600435151562001a58565b3480156200068b57600080fd5b506200027b62001b3b565b348015620006a357600080fd5b506200038262001c31565b348015620006bb57600080fd5b50620005be62001c37565b348015620006d357600080fd5b50620005be60043562001c46565b348015620006ee57600080fd5b50620002a762001c6f565b3480156200070657600080fd5b506200038262001ccd565b3480156200071e57600080fd5b506200027b600160a060020a036004351660243562001d7e565b3480156200074557600080fd5b5062000382600160a060020a036004351662001e4b565b3480156200076957600080fd5b50620003b8600160a060020a036004351662001ee5565b3480156200078d57600080fd5b5062000382600160a060020a036004351662001f86565b348015620007b157600080fd5b506200027b600160a060020a036004351662002020565b348015620007d557600080fd5b506200038262002175565b348015620007ed57600080fd5b5062000382600160a060020a036004351662002226565b3480156200081157600080fd5b506200027b600160a060020a0360043516602435620022c0565b3480156200083857600080fd5b5062000382600160a060020a03600435811690602435166200238d565b3480156200086257600080fd5b506200027b600160a060020a0360043516620023b8565b3480156200088657600080fd5b50620003b8600160a060020a0360043516620025b4565b348015620008aa57600080fd5b506200027b620025d7565b348015620008c257600080fd5b5062000382600160a060020a0360043516620025e7565b6003547501000000000000000000000000000000000000000000900460ff1681565b6004805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015620009855780601f10620009595761010080835404028352916020019162000985565b820191906000526020600020905b8154815290600101906020018083116200096757829003601f168201915b505050505081565b60035460009060b060020a900460ff161515620009f65760035460a060020a900460ff1615620009f6576040805160e560020a62461bcd028152602060048201526015602482015260008051602062003e2b833981519152604482015290519081900360640190fd5b3360009081526009602052604090205460ff161562000a4e576040805160e560020a62461bcd028152602060048201526011602482015260008051602062003e6b833981519152604482015290519081900360640190fd5b62000a5a838362002681565b90505b92915050565b60096020526000908152604090205460ff1681565b60015490565b600354600160a060020a0316331462000a9657600080fd5b62000aa181620026e7565b50565b60035460009060b060020a900460ff16151562000b0d5760035460a060020a900460ff161562000b0d576040805160e560020a62461bcd028152602060048201526015602482015260008051602062003e2b833981519152604482015290519081900360640190fd5b600160a060020a03841660009081526009602052604090205460ff161562000b7f576040805160e560020a62461bcd02815260206004820152601260248201527f41646472657373206973206c6f636b65642e0000000000000000000000000000604482015290519081900360640190fd5b62000b8c84848462002766565b949350505050565b60065481565b600354600160a060020a0316331462000bb257600080fd5b600160a060020a038481166000908152600a6020526040902054161562000bd857600080fd5b8383838362000be662002e75565b600160a060020a039094168452602084019290925260408084019190915260608301919091525190819003608001906000f08015801562000c2b573d6000803e3d6000fd5b50600160a060020a038086166000818152600a6020908152604080832080549690951673ffffffffffffffffffffffffffffffffffffffff19968716179094556008805460018101825592527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee3909101805490941682179093558151868152928301859052828201849052905190917f0d6c6184269aab4c45eaecc5cc21da2c4bc93cf48439a2aea39245d8e66e3d1b919081900360600190a250505050565b600354600090600160a060020a0316331462000d0657600080fd5b60035460b060020a900460ff161562000d1e57600080fd5b600354600160a060020a038381169116141562000d3a57600080fd5b600160a060020a03821660009081526009602052604090205460ff161562000d6157600080fd5b5060005b60085481101562000dce5781600160a060020a0316600a600060088481548110151562000d8e57fe5b6000918252602080832090910154600160a060020a03908116845290830193909352604090910190205416141562000dc557600080fd5b60010162000d65565b600160a060020a038216600081815260096020526040808220805460ff19166001179055517f44427e3003a08f22cf803894075ac0297524e09e521fc1c15bc91741ce3dc1599190a25050565b600754600090600160a060020a0316331462000ea7576040805160e560020a62461bcd02815260206004820152602b60248201527f4d696e74696e67206973206e6f7420617574686f72697a65642066726f6d207460448201527f686973206163636f756e74000000000000000000000000000000000000000000606482015290519081900360840190fd5b6003547501000000000000000000000000000000000000000000900460ff161562000f1c576040805160e560020a62461bcd02815260206004820152601360248201527f4d696e74696e672069732066696e697368656400000000000000000000000000604482015290519081900360640190fd5b60015462000f31908363ffffffff620028d316565b600155600160a060020a03831660009081526020819052604090205462000f5f908363ffffffff620028d316565b600160a060020a03841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a0385169160009160008051602062003e4b8339815191529181900360200190a350600192915050565b62000aa13382620028e1565b600080805b600854811015620010e157620010d6600a60006008848154811015156200101c57fe5b6000918252602080832090910154600160a060020a03908116845283820194909452604092830182205483517f2a0102bf0000000000000000000000000000000000000000000000000000000081523060048201529351941693632a0102bf93602480820194918390030190829087803b1580156200109a57600080fd5b505af1158015620010af573d6000803e3d6000fd5b505050506040513d6020811015620010c657600080fd5b5051839063ffffffff620028d316565b915060010162000ff9565b50919050565b600080805b600854811015620010e1576200118d600a60006008848154811015156200110f57fe5b6000918252602080832090910154600160a060020a03908116845283820194909452604092830182205483517f1726cbc80000000000000000000000000000000000000000000000000000000081523060048201529351941693631726cbc893602480820194918390030190829087803b1580156200109a57600080fd5b9150600101620010ec565b6040805160e060020a6370a0823102815230600482015290516000918391600160a060020a038316916370a0823191602480830192602092919082900301818887803b158015620011e857600080fd5b505af1158015620011fd573d6000803e3d6000fd5b505050506040513d60208110156200121457600080fd5b50519392505050565b6003546000908190600160a060020a031633146200123a57600080fd5b600160a060020a038481166000908152600a60205260409020541615156200126157600080fd5b50600354604080517fdd62ed3e000000000000000000000000000000000000000000000000000000008152600160a060020a0390921660048301523060248301819052905190918491839163dd62ed3e9160448083019260209291908290030181600087803b158015620012d457600080fd5b505af1158015620012e9573d6000803e3d6000fd5b505050506040513d60208110156200130057600080fd5b505110156200130e57600080fd5b600354600160a060020a038581166000908152600a602090815260408083205481517f23b872dd0000000000000000000000000000000000000000000000000000000081529585166004870152841660248601526044850188905251928516936323b872dd9360648083019491928390030190829087803b1580156200139357600080fd5b505af1158015620013a8573d6000803e3d6000fd5b505050506040513d6020811015620013bf57600080fd5b50511515620013cd57600080fd5b600160a060020a038085166000818152600a6020908152604080832054815160e060020a6370a082310281529086166004820152905193947f7dc0cf0a9515051e1e4842ed6998c7413c810f5070fbb063992c61d88c83c43794908716936370a0823193602480850194919392918390030190829087803b1580156200145257600080fd5b505af115801562001467573d6000803e3d6000fd5b505050506040513d60208110156200147e57600080fd5b505160408051918252519081900360200190a25060019392505050565b60035460a060020a900460ff1681565b600354600160a060020a03163314620014c357600080fd5b6003805476ff00000000000000000000000000000000000000000000191660b060020a1790556040517f3d8bbfb713a983ff1ab8a4ef63d7bd63e4b8d1b0a0797d196f196e204c0e98a090600090a1565b600354600160a060020a031633146200152c57600080fd5b62001539838383620029d6565b505050565b6000806000600360169054906101000a900460ff161515620015ac5760035460a060020a900460ff1615620015ac576040805160e560020a62461bcd028152602060048201526015602482015260008051602062003e2b833981519152604482015290519081900360640190fd5b6040517fef90073324d17047610883f743a78d3fcb75e5fd7e4780d5700af464d2f79e2b90600090a15060005b6008548110156200178157600a6000600883815481101515620015f857fe5b6000918252602080832090910154600160a060020a03908116845283820194909452604092830182205483517f1726cbc800000000000000000000000000000000000000000000000000000000815230600482015293519416955090928592631726cbc892602480830193919282900301818787803b1580156200167b57600080fd5b505af115801562001690573d6000803e3d6000fd5b505050506040513d6020811015620016a757600080fd5b505111156200177857604080517f191655870000000000000000000000000000000000000000000000000000000081523060048201529051600160a060020a03841691631916558791602480830192600092919082900301818387803b1580156200171157600080fd5b505af115801562001726573d6000803e3d6000fd5b505050506008818154811015156200173a57fe5b6000918252602082200154604051600160a060020a03909116917f76245777b3eed03cd565610e7c772445b248c694fcde93a29ffc245c8bd8a64391a25b600101620015d9565b60019250505090565b600160a060020a038181166000908152600a60205260408120549091161515620017b357600080fd5b600160a060020a038083166000908152600a602090815260408083205481517fc09c5943000000000000000000000000000000000000000000000000000000008152306004820152915194169363c09c594393602480840194938390030190829087803b1580156200182457600080fd5b505af115801562001839573d6000803e3d6000fd5b505050506040513d60208110156200185057600080fd5b505192915050565b600754600160a060020a031681565b60035460009060b060020a900460ff161515620018d05760035460a060020a900460ff1615620018d0576040805160e560020a62461bcd028152602060048201526015602482015260008051602062003e2b833981519152604482015290519081900360640190fd5b3360009081526009602052604090205460ff161562001928576040805160e560020a62461bcd028152602060048201526011602482015260008051602062003e6b833981519152604482015290519081900360640190fd5b62000a5a838362002b81565b600160a060020a038181166000908152600a602052604081205490911615156200195d57600080fd5b600160a060020a038083166000908152600a602090815260408083205481517f7e6495980000000000000000000000000000000000000000000000000000000081523060048201529151941693637e64959893602480840194938390030190829087803b1580156200182457600080fd5b600160a060020a031660009081526020819052604090205490565b600354600160a060020a0316331462001a0157600080fd5b600354604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26003805473ffffffffffffffffffffffffffffffffffffffff19169055565b600354600160a060020a0316331462001a7057600080fd5b60035460b060020a900460ff161562001a8857600080fd5b60035460ff60a060020a909104161515811515141562001aa757600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a8315158102919091179182905560ff9104161562001b0f576040517fb85cf10bd822b94b5eab69d0f78f0333175064b551dab3bccd6ac8b2d4ec2d2390600090a162000aa1565b6040517f1a8206594b2958f00beef441f19318b0b0577e2c96d44c262017b20b10f2f0a390600090a150565b600354600090600160a060020a0316331462001b5657600080fd5b6003547501000000000000000000000000000000000000000000900460ff161562001bcb576040805160e560020a62461bcd02815260206004820152601360248201527f4d696e74696e672069732066696e697368656400000000000000000000000000604482015290519081900360640190fd5b6003805475ff000000000000000000000000000000000000000000191675010000000000000000000000000000000000000000001790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b60085490565b600354600160a060020a031681565b600880548290811062001c5557fe5b600091825260209091200154600160a060020a0316905081565b6005805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015620009855780601f10620009595761010080835404028352916020019162000985565b600080805b600854811015620010e15762001d73600a600060088481548110151562001cf557fe5b6000918252602080832090910154600160a060020a03908116845283820194909452604092830182205483517f384711cc000000000000000000000000000000000000000000000000000000008152306004820152935194169363384711cc93602480820194918390030190829087803b1580156200109a57600080fd5b915060010162001cd2565b60035460009060b060020a900460ff16151562001de75760035460a060020a900460ff161562001de7576040805160e560020a62461bcd028152602060048201526015602482015260008051602062003e2b833981519152604482015290519081900360640190fd5b3360009081526009602052604090205460ff161562001e3f576040805160e560020a62461bcd028152602060048201526011602482015260008051602062003e6b833981519152604482015290519081900360640190fd5b62000a5a838362002c74565b600160a060020a038181166000908152600a6020526040812054909116151562001e7457600080fd5b600160a060020a038083166000908152600a602090815260408083205481517f384711cc000000000000000000000000000000000000000000000000000000008152306004820152915194169363384711cc93602480840194938390030190829087803b1580156200182457600080fd5b600354600160a060020a0316331462001efd57600080fd5b60035460b060020a900460ff161562001f1557600080fd5b600160a060020a03811660009081526009602052604090205460ff16151562001f3d57600080fd5b600160a060020a038116600081815260096020526040808220805460ff19169055517f7e6adfec7e3f286831a0200a754127c171a2da564078722cb97704741bbdb0ea9190a250565b600160a060020a038181166000908152600a6020526040812054909116151562001faf57600080fd5b600160a060020a038083166000908152600a602090815260408083205481517f6343a64a0000000000000000000000000000000000000000000000000000000081523060048201529151941693636343a64a93602480840194938390030190829087803b1580156200182457600080fd5b60035460009060b060020a900460ff161515620020895760035460a060020a900460ff161562002089576040805160e560020a62461bcd028152602060048201526015602482015260008051602062003e2b833981519152604482015290519081900360640190fd5b600160a060020a038281166000908152600a6020526040902054161515620020b057600080fd5b600160a060020a038083166000908152600a60205260408082205481517f19165587000000000000000000000000000000000000000000000000000000008152306004820152915193169263191655879260248084019391929182900301818387803b1580156200212057600080fd5b505af115801562002135573d6000803e3d6000fd5b5050604051600160a060020a03851692507f76245777b3eed03cd565610e7c772445b248c694fcde93a29ffc245c8bd8a6439150600090a2506001919050565b600080805b600854811015620010e1576200221b600a60006008848154811015156200219d57fe5b6000918252602080832090910154600160a060020a03908116845283820194909452604092830182205483517f7e6495980000000000000000000000000000000000000000000000000000000081523060048201529351941693637e64959893602480820194918390030190829087803b1580156200109a57600080fd5b91506001016200217a565b600160a060020a038181166000908152600a602052604081205490911615156200224f57600080fd5b600160a060020a038083166000908152600a602090815260408083205481517f04cabcde00000000000000000000000000000000000000000000000000000000815230600482015291519416936304cabcde93602480840194938390030190829087803b1580156200182457600080fd5b60035460009060b060020a900460ff161515620023295760035460a060020a900460ff161562002329576040805160e560020a62461bcd028152602060048201526015602482015260008051602062003e2b833981519152604482015290519081900360640190fd5b3360009081526009602052604090205460ff161562002381576040805160e560020a62461bcd028152602060048201526011602482015260008051602062003e6b833981519152604482015290519081900360640190fd5b62000a5a838362002d48565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600090600160a060020a03163314620023d357600080fd5b60035460b060020a900460ff161515620024395760035460a060020a900460ff161562002439576040805160e560020a62461bcd028152602060048201526015602482015260008051602062003e2b833981519152604482015290519081900360640190fd5b600160a060020a038281166000908152600a60205260409020541615156200246057600080fd5b600160a060020a038083166000908152600a60205260408082205481517f74a8f10300000000000000000000000000000000000000000000000000000000815230600482015291519316926374a8f1039260248084019391929182900301818387803b158015620024d057600080fd5b505af1158015620024e5573d6000803e3d6000fd5b50506003546040805160e060020a6370a0823102815230600482018190529151620025789550600160a060020a039093169350909182916370a082319160248083019260209291908290030181600087803b1580156200254457600080fd5b505af115801562002559573d6000803e3d6000fd5b505050506040513d60208110156200257057600080fd5b5051620029d6565b604051600160a060020a038316907f63fa80005c7fc9bb98fc4702d520c753638275914bb9b324a1958ac7ed35c66a90600090a2506001919050565b600354600160a060020a03163314620025cc57600080fd5b62000aa18162002de3565b60035460b060020a900460ff1681565b600160a060020a038181166000908152600a602052604081205490911615156200261057600080fd5b600160a060020a038083166000908152600a602090815260408083205481517f1726cbc80000000000000000000000000000000000000000000000000000000081523060048201529151941693631726cbc893602480840194938390030190829087803b1580156200182457600080fd5b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b600160a060020a0381161515620026fd57600080fd5b600754604051600160a060020a038084169216907fd101401b0bfdc046da585b826bc2a57b481f26c1b93a83b503fb30990bc241f690600090a36007805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a0383166000908152602081905260408120548211156200278c57600080fd5b600160a060020a0384166000908152600260209081526040808320338452909152902054821115620027bd57600080fd5b600160a060020a0383161515620027d357600080fd5b600160a060020a038416600090815260208190526040902054620027fe908363ffffffff62002e6216565b600160a060020a03808616600090815260208190526040808220939093559085168152205462002835908363ffffffff620028d316565b600160a060020a0380851660009081526020818152604080832094909455918716815260028252828120338252909152205462002879908363ffffffff62002e6216565b600160a060020a038086166000818152600260209081526040808320338452825291829020949094558051868152905192871693919260008051602062003e4b833981519152929181900390910190a35060019392505050565b8181018281101562000a5d57fe5b600160a060020a0382166000908152602081905260409020548111156200290757600080fd5b600160a060020a03821660009081526020819052604090205462002932908263ffffffff62002e6216565b600160a060020a03831660009081526020819052604090205560015462002960908263ffffffff62002e6216565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a0385169160008051602062003e4b8339815191529181900360200190a35050565b6000600160a060020a0384161515620029ee57600080fd5b506040805160e060020a6370a08231028152306004820152905183918391600160a060020a038416916370a082319160248083019260209291908290030181600087803b15801562002a3f57600080fd5b505af115801562002a54573d6000803e3d6000fd5b505050506040513d602081101562002a6b57600080fd5b5051101562002ac4576040805160e560020a62461bcd02815260206004820152601b60248201527f496e73756666696369656e7420746f6b656e2062616c616e63652e0000000000604482015290519081900360640190fd5b80600160a060020a031663a9059cbb85846040518363ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018083600160a060020a0316600160a060020a0316815260200182815260200192505050602060405180830381600087803b15801562002b4157600080fd5b505af115801562002b56573d6000803e3d6000fd5b505050506040513d602081101562002b6d57600080fd5b5051151562002b7b57600080fd5b50505050565b336000908152600260209081526040808320600160a060020a038616845290915281205480831062002bd757336000908152600260209081526040808320600160a060020a038816845290915281205562002c0e565b62002be9818463ffffffff62002e6216565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b3360009081526020819052604081205482111562002c9157600080fd5b600160a060020a038316151562002ca757600080fd5b3360009081526020819052604090205462002cc9908363ffffffff62002e6216565b3360009081526020819052604080822092909255600160a060020a0385168152205462002cfd908363ffffffff620028d316565b600160a060020a0384166000818152602081815260409182902093909355805185815290519192339260008051602062003e4b8339815191529281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a038616845290915281205462002d7e908363ffffffff620028d316565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a038116151562002df957600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60008282111562002e6f57fe5b50900390565b604051610f778062002eb483390190565b600082151562002e995750600062000a5d565b5081810281838281151562002eaa57fe5b041462000a5d57fe0060806040523480156200001157600080fd5b5060405160808062000f7783398101604090815281516020830151918301516060909301519092908383600062000057858564010000000062000b976200021e82021704565b60008054600160a060020a031916331790556001600160a060020a03851615156200008157600080fd5b818311156200008f57600080fd5b60018054600160a060020a031916600160a060020a0387161790556005805460ff19168215151790556004829055620000d7848464010000000062000251810262000b5d1704565b600255505050600355506000620000fd838364010000000062000b976200021e82021704565b116200016a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f56657374696e67204475726174696f6e2063616e6e6f74206265203000000000604482015290519081900360640190fd5b426200019f62000189848464010000000062000b976200021e82021704565b859064010000000062000b5d6200025182021704565b116200020c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f576f7274686c6573732076657374696e67000000000000000000000000000000604482015290519081900360640190fd5b600891909155600955506200025f9050565b600082151562000231575060006200024b565b508181028183828115156200024257fe5b04146200024b57fe5b92915050565b818101828110156200024b57fe5b610d08806200026f6000396000f30060806040526004361061010e5763ffffffff60e060020a60003504166304cabcde81146101135780630fb5a6b41461014657806313d033c01461015b5780631726cbc81461017057806319165587146101915780632a0102bf146101b4578063384711cc146101d557806338af3eed146101f65780636343a64a1461022757806363af1a2a1461024857806363ef162714610269578063715018a61461027e57806374a8f103146102935780637e649598146102b4578063872a7810146102d55780638da5cb5b146102fe5780639852595c14610313578063b8d08db214610334578063be9a655514610349578063c09c59431461035e578063f2fde38b1461037f578063fa01dc06146103a0575b600080fd5b34801561011f57600080fd5b50610134600160a060020a03600435166103c1565b60408051918252519081900360200190f35b34801561015257600080fd5b50610134610471565b34801561016757600080fd5b50610134610477565b34801561017c57600080fd5b50610134600160a060020a036004351661047d565b34801561019d57600080fd5b506101b2600160a060020a03600435166104af565b005b3480156101c057600080fd5b50610134600160a060020a036004351661055b565b3480156101e157600080fd5b50610134600160a060020a0360043516610616565b34801561020257600080fd5b5061020b610767565b60408051600160a060020a039092168252519081900360200190f35b34801561023357600080fd5b50610134600160a060020a0360043516610776565b34801561025457600080fd5b50610134600160a060020a03600435166107ef565b34801561027557600080fd5b50610134610801565b34801561028a57600080fd5b506101b2610807565b34801561029f57600080fd5b506101b2600160a060020a0360043516610873565b3480156102c057600080fd5b50610134600160a060020a03600435166109e7565b3480156102e157600080fd5b506102ea610a8e565b604080519115158252519081900360200190f35b34801561030a57600080fd5b5061020b610a97565b34801561031f57600080fd5b50610134600160a060020a0360043516610aa6565b34801561034057600080fd5b50610134610ab8565b34801561035557600080fd5b50610134610abe565b34801561036a57600080fd5b50610134600160a060020a0360043516610ac4565b34801561038b57600080fd5b506101b2600160a060020a0360043516610b25565b3480156103ac57600080fd5b506102ea600160a060020a0360043516610b48565b60006103da600454600354610b5d90919063ffffffff16565b421015806104005750600160a060020a03821660009081526007602052604090205460ff165b1561040d5750600061046c565b61046961045a60085461044e600161044260085461043660035442610b7090919063ffffffff16565b9063ffffffff610b8216565b9063ffffffff610b5d16565b9063ffffffff610b9716565b6003549063ffffffff610b5d16565b90505b919050565b60045481565b60025481565b600160a060020a038116600090815260066020526040812054610469906104a384610616565b9063ffffffff610b7016565b60006104ba8261047d565b9050600081116104c957600080fd5b600160a060020a0382166000908152600660205260409020546104f2908263ffffffff610b5d16565b600160a060020a038084166000818152600660205260409020929092556001546105249291168363ffffffff610bc016565b6040805182815290517ffb81f9b30d73d830c3544b34d827c08142579ee75710b490bab0b3995468c5659181900360200190a15050565b600160a060020a0381166000818152600a6020908152604080832054600683528184205482517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529251949561046995929461044294929391926370a08231926024808301939282900301818b87803b1580156105de57600080fd5b505af11580156105f2573d6000803e3d6000fd5b505050506040513d602081101561060857600080fd5b50519063ffffffff610b5d16565b600080600083600160a060020a03166370a08231306040518263ffffffff1660e060020a0281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b15801561067657600080fd5b505af115801561068a573d6000803e3d6000fd5b505050506040513d60208110156106a057600080fd5b5051600160a060020a0385166000908152600660205260409020549092506106cf90839063ffffffff610b5d16565b90506002544210156106e45760009250610760565b6004546003546106f99163ffffffff610b5d16565b4210158061071f5750600160a060020a03841660009081526007602052604090205460ff165b1561072c57809250610760565b61075d60095461043661075060085461043660035442610b7090919063ffffffff16565b849063ffffffff610b9716565b92505b5050919050565b600154600160a060020a031681565b600061078f600454600354610b5d90919063ffffffff16565b421015806107b55750600160a060020a03821660009081526007602052604090205460ff165b156107c25750600061046c565b6104696107e060085461043660035442610b7090919063ffffffff16565b6009549063ffffffff610b7016565b600a6020526000908152604090205481565b60085481565b600054600160a060020a0316331461081e57600080fd5b60008054604051600160a060020a03909116917ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482091a26000805473ffffffffffffffffffffffffffffffffffffffff19169055565b6000805481908190600160a060020a0316331461088f57600080fd5b60055460ff1615156108a057600080fd5b600160a060020a03841660009081526007602052604090205460ff16156108c657600080fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051600160a060020a038616916370a082319160248083019260209291908290030181600087803b15801561092757600080fd5b505af115801561093b573d6000803e3d6000fd5b505050506040513d602081101561095157600080fd5b5051925061095e8461047d565b9150610970838363ffffffff610b7016565b600160a060020a038086166000818152600760209081526040808320805460ff19166001179055600a9091528120849055549293506109b8929091168363ffffffff610bc016565b6040517f44825a4b2df8acb19ce4e1afba9aa850c8b65cdb7942e2078f27d0b0960efee690600090a150505050565b60006104696109f58361047d565b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051600160a060020a038616916370a082319160248083019260209291908290030181600087803b158015610a5657600080fd5b505af1158015610a6a573d6000803e3d6000fd5b505050506040513d6020811015610a8057600080fd5b50519063ffffffff610b7016565b60055460ff1681565b600054600160a060020a031681565b60066020526000908152604090205481565b60095481565b60035481565b6000610add600454600354610b5d90919063ffffffff16565b42101580610b035750600160a060020a03821660009081526007602052604090205460ff165b15610b105750600061046c565b6004546003546104699163ffffffff610b5d16565b600054600160a060020a03163314610b3c57600080fd5b610b4581610c5f565b50565b60076020526000908152604090205460ff1681565b81810182811015610b6a57fe5b92915050565b600082821115610b7c57fe5b50900390565b60008183811515610b8f57fe5b049392505050565b6000821515610ba857506000610b6a565b50818102818382811515610bb857fe5b0414610b6a57fe5b82600160a060020a031663a9059cbb83836040518363ffffffff1660e060020a0281526004018083600160a060020a0316600160a060020a0316815260200182815260200192505050602060405180830381600087803b158015610c2357600080fd5b505af1158015610c37573d6000803e3d6000fd5b505050506040513d6020811015610c4d57600080fd5b50511515610c5a57600080fd5b505050565b600160a060020a0381161515610c7457600080fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600a165627a7a723058205aeebab1c6eeb0145ecc9210c203aa7ea1ad53282570334a9375c9bc5ea4ec010029476c6f62616c206c6f636b206973206163746976650000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef41646472657373206973206c6f636b6564000000000000000000000000000000a165627a7a72305820f04abac9bb4e7d72f4033c8c997791f10220a672c24b6d69da3c7785fc3fb0dd0029

Deployed Bytecode

0x6080604052600436106200025e5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b81146200026357806306fdde03146200028f578063095ea7b3146200031f5780631701c1fa146200034657806318160ddd146200036a5780631861355b146200039457806323b872dd14620003ba578063313ce56714620003e75780633420b07b14620003ff57806334a90d02146200042c57806340c10f19146200045057806342966c681462000477578063435cbebe146200049257806345b74a1c14620004aa5780634eb99f1414620004c2578063533c02b214620004e657806354a598b0146200050d57806355f61e041462000525578063565dc0ed146200053d57806356ff9813146200056a5780635c6fee29146200058257806365e0666714620005a65780636618846314620005da5780636cbf4d7e146200060157806370a082311462000625578063715018a6146200064957806374398d4514620006615780637d64bcb4146200067e57806389e03a4b14620006965780638da5cb5b14620006ae578063946b6a3814620006c657806395d89b4114620006e1578063a5f4bc3214620006f9578063a9059cbb1462000711578063afabfb4b1462000738578063b7eb5e0a146200075c578063c3abfe0d1462000780578063d129262414620007a4578063d622769814620007c8578063d6a3b80014620007e0578063d73dd6231462000804578063dd62ed3e146200082b578063e2c1fd331462000855578063f2fde38b1462000879578063fb815efe146200089d578063ffc3837514620008b5575b600080fd5b3480156200027057600080fd5b506200027b620008d9565b604080519115158252519081900360200190f35b3480156200029c57600080fd5b50620002a7620008fb565b6040805160208082528351818301528351919283929083019185019080838360005b83811015620002e3578181015183820152602001620002c9565b50505050905090810190601f168015620003115780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156200032c57600080fd5b506200027b600160a060020a03600435166024356200098d565b3480156200035357600080fd5b506200027b600160a060020a036004351662000a63565b3480156200037757600080fd5b506200038262000a78565b60408051918252519081900360200190f35b348015620003a157600080fd5b50620003b8600160a060020a036004351662000a7e565b005b348015620003c757600080fd5b506200027b600160a060020a036004358116906024351660443562000aa4565b348015620003f457600080fd5b506200038262000b94565b3480156200040c57600080fd5b50620003b8600160a060020a036004351660243560443560643562000b9a565b3480156200043957600080fd5b50620003b8600160a060020a036004351662000ceb565b3480156200045d57600080fd5b506200027b600160a060020a036004351660243562000e1b565b3480156200048457600080fd5b50620003b860043562000fe8565b3480156200049f57600080fd5b506200038262000ff4565b348015620004b757600080fd5b5062000382620010e7565b348015620004cf57600080fd5b5062000382600160a060020a036004351662001198565b348015620004f357600080fd5b506200027b600160a060020a03600435166024356200121d565b3480156200051a57600080fd5b506200027b6200149b565b3480156200053257600080fd5b50620003b8620014ab565b3480156200054a57600080fd5b50620003b8600160a060020a036004358116906024351660443562001514565b3480156200057757600080fd5b506200027b6200153e565b3480156200058f57600080fd5b5062000382600160a060020a03600435166200178a565b348015620005b357600080fd5b50620005be62001858565b60408051600160a060020a039092168252519081900360200190f35b348015620005e757600080fd5b506200027b600160a060020a036004351660243562001867565b3480156200060e57600080fd5b5062000382600160a060020a036004351662001934565b3480156200063257600080fd5b5062000382600160a060020a0360043516620019ce565b3480156200065657600080fd5b50620003b8620019e9565b3480156200066e57600080fd5b50620003b8600435151562001a58565b3480156200068b57600080fd5b506200027b62001b3b565b348015620006a357600080fd5b506200038262001c31565b348015620006bb57600080fd5b50620005be62001c37565b348015620006d357600080fd5b50620005be60043562001c46565b348015620006ee57600080fd5b50620002a762001c6f565b3480156200070657600080fd5b506200038262001ccd565b3480156200071e57600080fd5b506200027b600160a060020a036004351660243562001d7e565b3480156200074557600080fd5b5062000382600160a060020a036004351662001e4b565b3480156200076957600080fd5b50620003b8600160a060020a036004351662001ee5565b3480156200078d57600080fd5b5062000382600160a060020a036004351662001f86565b348015620007b157600080fd5b506200027b600160a060020a036004351662002020565b348015620007d557600080fd5b506200038262002175565b348015620007ed57600080fd5b5062000382600160a060020a036004351662002226565b3480156200081157600080fd5b506200027b600160a060020a0360043516602435620022c0565b3480156200083857600080fd5b5062000382600160a060020a03600435811690602435166200238d565b3480156200086257600080fd5b506200027b600160a060020a0360043516620023b8565b3480156200088657600080fd5b50620003b8600160a060020a0360043516620025b4565b348015620008aa57600080fd5b506200027b620025d7565b348015620008c257600080fd5b5062000382600160a060020a0360043516620025e7565b6003547501000000000000000000000000000000000000000000900460ff1681565b6004805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015620009855780601f10620009595761010080835404028352916020019162000985565b820191906000526020600020905b8154815290600101906020018083116200096757829003601f168201915b505050505081565b60035460009060b060020a900460ff161515620009f65760035460a060020a900460ff1615620009f6576040805160e560020a62461bcd028152602060048201526015602482015260008051602062003e2b833981519152604482015290519081900360640190fd5b3360009081526009602052604090205460ff161562000a4e576040805160e560020a62461bcd028152602060048201526011602482015260008051602062003e6b833981519152604482015290519081900360640190fd5b62000a5a838362002681565b90505b92915050565b60096020526000908152604090205460ff1681565b60015490565b600354600160a060020a0316331462000a9657600080fd5b62000aa181620026e7565b50565b60035460009060b060020a900460ff16151562000b0d5760035460a060020a900460ff161562000b0d576040805160e560020a62461bcd028152602060048201526015602482015260008051602062003e2b833981519152604482015290519081900360640190fd5b600160a060020a03841660009081526009602052604090205460ff161562000b7f576040805160e560020a62461bcd02815260206004820152601260248201527f41646472657373206973206c6f636b65642e0000000000000000000000000000604482015290519081900360640190fd5b62000b8c84848462002766565b949350505050565b60065481565b600354600160a060020a0316331462000bb257600080fd5b600160a060020a038481166000908152600a6020526040902054161562000bd857600080fd5b8383838362000be662002e75565b600160a060020a039094168452602084019290925260408084019190915260608301919091525190819003608001906000f08015801562000c2b573d6000803e3d6000fd5b50600160a060020a038086166000818152600a6020908152604080832080549690951673ffffffffffffffffffffffffffffffffffffffff19968716179094556008805460018101825592527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee3909101805490941682179093558151868152928301859052828201849052905190917f0d6c6184269aab4c45eaecc5cc21da2c4bc93cf48439a2aea39245d8e66e3d1b919081900360600190a250505050565b600354600090600160a060020a0316331462000d0657600080fd5b60035460b060020a900460ff161562000d1e57600080fd5b600354600160a060020a038381169116141562000d3a57600080fd5b600160a060020a03821660009081526009602052604090205460ff161562000d6157600080fd5b5060005b60085481101562000dce5781600160a060020a0316600a600060088481548110151562000d8e57fe5b6000918252602080832090910154600160a060020a03908116845290830193909352604090910190205416141562000dc557600080fd5b60010162000d65565b600160a060020a038216600081815260096020526040808220805460ff19166001179055517f44427e3003a08f22cf803894075ac0297524e09e521fc1c15bc91741ce3dc1599190a25050565b600754600090600160a060020a0316331462000ea7576040805160e560020a62461bcd02815260206004820152602b60248201527f4d696e74696e67206973206e6f7420617574686f72697a65642066726f6d207460448201527f686973206163636f756e74000000000000000000000000000000000000000000606482015290519081900360840190fd5b6003547501000000000000000000000000000000000000000000900460ff161562000f1c576040805160e560020a62461bcd02815260206004820152601360248201527f4d696e74696e672069732066696e697368656400000000000000000000000000604482015290519081900360640190fd5b60015462000f31908363ffffffff620028d316565b600155600160a060020a03831660009081526020819052604090205462000f5f908363ffffffff620028d316565b600160a060020a03841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a0385169160009160008051602062003e4b8339815191529181900360200190a350600192915050565b62000aa13382620028e1565b600080805b600854811015620010e157620010d6600a60006008848154811015156200101c57fe5b6000918252602080832090910154600160a060020a03908116845283820194909452604092830182205483517f2a0102bf0000000000000000000000000000000000000000000000000000000081523060048201529351941693632a0102bf93602480820194918390030190829087803b1580156200109a57600080fd5b505af1158015620010af573d6000803e3d6000fd5b505050506040513d6020811015620010c657600080fd5b5051839063ffffffff620028d316565b915060010162000ff9565b50919050565b600080805b600854811015620010e1576200118d600a60006008848154811015156200110f57fe5b6000918252602080832090910154600160a060020a03908116845283820194909452604092830182205483517f1726cbc80000000000000000000000000000000000000000000000000000000081523060048201529351941693631726cbc893602480820194918390030190829087803b1580156200109a57600080fd5b9150600101620010ec565b6040805160e060020a6370a0823102815230600482015290516000918391600160a060020a038316916370a0823191602480830192602092919082900301818887803b158015620011e857600080fd5b505af1158015620011fd573d6000803e3d6000fd5b505050506040513d60208110156200121457600080fd5b50519392505050565b6003546000908190600160a060020a031633146200123a57600080fd5b600160a060020a038481166000908152600a60205260409020541615156200126157600080fd5b50600354604080517fdd62ed3e000000000000000000000000000000000000000000000000000000008152600160a060020a0390921660048301523060248301819052905190918491839163dd62ed3e9160448083019260209291908290030181600087803b158015620012d457600080fd5b505af1158015620012e9573d6000803e3d6000fd5b505050506040513d60208110156200130057600080fd5b505110156200130e57600080fd5b600354600160a060020a038581166000908152600a602090815260408083205481517f23b872dd0000000000000000000000000000000000000000000000000000000081529585166004870152841660248601526044850188905251928516936323b872dd9360648083019491928390030190829087803b1580156200139357600080fd5b505af1158015620013a8573d6000803e3d6000fd5b505050506040513d6020811015620013bf57600080fd5b50511515620013cd57600080fd5b600160a060020a038085166000818152600a6020908152604080832054815160e060020a6370a082310281529086166004820152905193947f7dc0cf0a9515051e1e4842ed6998c7413c810f5070fbb063992c61d88c83c43794908716936370a0823193602480850194919392918390030190829087803b1580156200145257600080fd5b505af115801562001467573d6000803e3d6000fd5b505050506040513d60208110156200147e57600080fd5b505160408051918252519081900360200190a25060019392505050565b60035460a060020a900460ff1681565b600354600160a060020a03163314620014c357600080fd5b6003805476ff00000000000000000000000000000000000000000000191660b060020a1790556040517f3d8bbfb713a983ff1ab8a4ef63d7bd63e4b8d1b0a0797d196f196e204c0e98a090600090a1565b600354600160a060020a031633146200152c57600080fd5b62001539838383620029d6565b505050565b6000806000600360169054906101000a900460ff161515620015ac5760035460a060020a900460ff1615620015ac576040805160e560020a62461bcd028152602060048201526015602482015260008051602062003e2b833981519152604482015290519081900360640190fd5b6040517fef90073324d17047610883f743a78d3fcb75e5fd7e4780d5700af464d2f79e2b90600090a15060005b6008548110156200178157600a6000600883815481101515620015f857fe5b6000918252602080832090910154600160a060020a03908116845283820194909452604092830182205483517f1726cbc800000000000000000000000000000000000000000000000000000000815230600482015293519416955090928592631726cbc892602480830193919282900301818787803b1580156200167b57600080fd5b505af115801562001690573d6000803e3d6000fd5b505050506040513d6020811015620016a757600080fd5b505111156200177857604080517f191655870000000000000000000000000000000000000000000000000000000081523060048201529051600160a060020a03841691631916558791602480830192600092919082900301818387803b1580156200171157600080fd5b505af115801562001726573d6000803e3d6000fd5b505050506008818154811015156200173a57fe5b6000918252602082200154604051600160a060020a03909116917f76245777b3eed03cd565610e7c772445b248c694fcde93a29ffc245c8bd8a64391a25b600101620015d9565b60019250505090565b600160a060020a038181166000908152600a60205260408120549091161515620017b357600080fd5b600160a060020a038083166000908152600a602090815260408083205481517fc09c5943000000000000000000000000000000000000000000000000000000008152306004820152915194169363c09c594393602480840194938390030190829087803b1580156200182457600080fd5b505af115801562001839573d6000803e3d6000fd5b505050506040513d60208110156200185057600080fd5b505192915050565b600754600160a060020a031681565b60035460009060b060020a900460ff161515620018d05760035460a060020a900460ff1615620018d0576040805160e560020a62461bcd028152602060048201526015602482015260008051602062003e2b833981519152604482015290519081900360640190fd5b3360009081526009602052604090205460ff161562001928576040805160e560020a62461bcd028152602060048201526011602482015260008051602062003e6b833981519152604482015290519081900360640190fd5b62000a5a838362002b81565b600160a060020a038181166000908152600a602052604081205490911615156200195d57600080fd5b600160a060020a038083166000908152600a602090815260408083205481517f7e6495980000000000000000000000000000000000000000000000000000000081523060048201529151941693637e64959893602480840194938390030190829087803b1580156200182457600080fd5b600160a060020a031660009081526020819052604090205490565b600354600160a060020a0316331462001a0157600080fd5b600354604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26003805473ffffffffffffffffffffffffffffffffffffffff19169055565b600354600160a060020a0316331462001a7057600080fd5b60035460b060020a900460ff161562001a8857600080fd5b60035460ff60a060020a909104161515811515141562001aa757600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a8315158102919091179182905560ff9104161562001b0f576040517fb85cf10bd822b94b5eab69d0f78f0333175064b551dab3bccd6ac8b2d4ec2d2390600090a162000aa1565b6040517f1a8206594b2958f00beef441f19318b0b0577e2c96d44c262017b20b10f2f0a390600090a150565b600354600090600160a060020a0316331462001b5657600080fd5b6003547501000000000000000000000000000000000000000000900460ff161562001bcb576040805160e560020a62461bcd02815260206004820152601360248201527f4d696e74696e672069732066696e697368656400000000000000000000000000604482015290519081900360640190fd5b6003805475ff000000000000000000000000000000000000000000191675010000000000000000000000000000000000000000001790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b60085490565b600354600160a060020a031681565b600880548290811062001c5557fe5b600091825260209091200154600160a060020a0316905081565b6005805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015620009855780601f10620009595761010080835404028352916020019162000985565b600080805b600854811015620010e15762001d73600a600060088481548110151562001cf557fe5b6000918252602080832090910154600160a060020a03908116845283820194909452604092830182205483517f384711cc000000000000000000000000000000000000000000000000000000008152306004820152935194169363384711cc93602480820194918390030190829087803b1580156200109a57600080fd5b915060010162001cd2565b60035460009060b060020a900460ff16151562001de75760035460a060020a900460ff161562001de7576040805160e560020a62461bcd028152602060048201526015602482015260008051602062003e2b833981519152604482015290519081900360640190fd5b3360009081526009602052604090205460ff161562001e3f576040805160e560020a62461bcd028152602060048201526011602482015260008051602062003e6b833981519152604482015290519081900360640190fd5b62000a5a838362002c74565b600160a060020a038181166000908152600a6020526040812054909116151562001e7457600080fd5b600160a060020a038083166000908152600a602090815260408083205481517f384711cc000000000000000000000000000000000000000000000000000000008152306004820152915194169363384711cc93602480840194938390030190829087803b1580156200182457600080fd5b600354600160a060020a0316331462001efd57600080fd5b60035460b060020a900460ff161562001f1557600080fd5b600160a060020a03811660009081526009602052604090205460ff16151562001f3d57600080fd5b600160a060020a038116600081815260096020526040808220805460ff19169055517f7e6adfec7e3f286831a0200a754127c171a2da564078722cb97704741bbdb0ea9190a250565b600160a060020a038181166000908152600a6020526040812054909116151562001faf57600080fd5b600160a060020a038083166000908152600a602090815260408083205481517f6343a64a0000000000000000000000000000000000000000000000000000000081523060048201529151941693636343a64a93602480840194938390030190829087803b1580156200182457600080fd5b60035460009060b060020a900460ff161515620020895760035460a060020a900460ff161562002089576040805160e560020a62461bcd028152602060048201526015602482015260008051602062003e2b833981519152604482015290519081900360640190fd5b600160a060020a038281166000908152600a6020526040902054161515620020b057600080fd5b600160a060020a038083166000908152600a60205260408082205481517f19165587000000000000000000000000000000000000000000000000000000008152306004820152915193169263191655879260248084019391929182900301818387803b1580156200212057600080fd5b505af115801562002135573d6000803e3d6000fd5b5050604051600160a060020a03851692507f76245777b3eed03cd565610e7c772445b248c694fcde93a29ffc245c8bd8a6439150600090a2506001919050565b600080805b600854811015620010e1576200221b600a60006008848154811015156200219d57fe5b6000918252602080832090910154600160a060020a03908116845283820194909452604092830182205483517f7e6495980000000000000000000000000000000000000000000000000000000081523060048201529351941693637e64959893602480820194918390030190829087803b1580156200109a57600080fd5b91506001016200217a565b600160a060020a038181166000908152600a602052604081205490911615156200224f57600080fd5b600160a060020a038083166000908152600a602090815260408083205481517f04cabcde00000000000000000000000000000000000000000000000000000000815230600482015291519416936304cabcde93602480840194938390030190829087803b1580156200182457600080fd5b60035460009060b060020a900460ff161515620023295760035460a060020a900460ff161562002329576040805160e560020a62461bcd028152602060048201526015602482015260008051602062003e2b833981519152604482015290519081900360640190fd5b3360009081526009602052604090205460ff161562002381576040805160e560020a62461bcd028152602060048201526011602482015260008051602062003e6b833981519152604482015290519081900360640190fd5b62000a5a838362002d48565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600090600160a060020a03163314620023d357600080fd5b60035460b060020a900460ff161515620024395760035460a060020a900460ff161562002439576040805160e560020a62461bcd028152602060048201526015602482015260008051602062003e2b833981519152604482015290519081900360640190fd5b600160a060020a038281166000908152600a60205260409020541615156200246057600080fd5b600160a060020a038083166000908152600a60205260408082205481517f74a8f10300000000000000000000000000000000000000000000000000000000815230600482015291519316926374a8f1039260248084019391929182900301818387803b158015620024d057600080fd5b505af1158015620024e5573d6000803e3d6000fd5b50506003546040805160e060020a6370a0823102815230600482018190529151620025789550600160a060020a039093169350909182916370a082319160248083019260209291908290030181600087803b1580156200254457600080fd5b505af115801562002559573d6000803e3d6000fd5b505050506040513d60208110156200257057600080fd5b5051620029d6565b604051600160a060020a038316907f63fa80005c7fc9bb98fc4702d520c753638275914bb9b324a1958ac7ed35c66a90600090a2506001919050565b600354600160a060020a03163314620025cc57600080fd5b62000aa18162002de3565b60035460b060020a900460ff1681565b600160a060020a038181166000908152600a602052604081205490911615156200261057600080fd5b600160a060020a038083166000908152600a602090815260408083205481517f1726cbc80000000000000000000000000000000000000000000000000000000081523060048201529151941693631726cbc893602480840194938390030190829087803b1580156200182457600080fd5b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b600160a060020a0381161515620026fd57600080fd5b600754604051600160a060020a038084169216907fd101401b0bfdc046da585b826bc2a57b481f26c1b93a83b503fb30990bc241f690600090a36007805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a0383166000908152602081905260408120548211156200278c57600080fd5b600160a060020a0384166000908152600260209081526040808320338452909152902054821115620027bd57600080fd5b600160a060020a0383161515620027d357600080fd5b600160a060020a038416600090815260208190526040902054620027fe908363ffffffff62002e6216565b600160a060020a03808616600090815260208190526040808220939093559085168152205462002835908363ffffffff620028d316565b600160a060020a0380851660009081526020818152604080832094909455918716815260028252828120338252909152205462002879908363ffffffff62002e6216565b600160a060020a038086166000818152600260209081526040808320338452825291829020949094558051868152905192871693919260008051602062003e4b833981519152929181900390910190a35060019392505050565b8181018281101562000a5d57fe5b600160a060020a0382166000908152602081905260409020548111156200290757600080fd5b600160a060020a03821660009081526020819052604090205462002932908263ffffffff62002e6216565b600160a060020a03831660009081526020819052604090205560015462002960908263ffffffff62002e6216565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a0385169160008051602062003e4b8339815191529181900360200190a35050565b6000600160a060020a0384161515620029ee57600080fd5b506040805160e060020a6370a08231028152306004820152905183918391600160a060020a038416916370a082319160248083019260209291908290030181600087803b15801562002a3f57600080fd5b505af115801562002a54573d6000803e3d6000fd5b505050506040513d602081101562002a6b57600080fd5b5051101562002ac4576040805160e560020a62461bcd02815260206004820152601b60248201527f496e73756666696369656e7420746f6b656e2062616c616e63652e0000000000604482015290519081900360640190fd5b80600160a060020a031663a9059cbb85846040518363ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018083600160a060020a0316600160a060020a0316815260200182815260200192505050602060405180830381600087803b15801562002b4157600080fd5b505af115801562002b56573d6000803e3d6000fd5b505050506040513d602081101562002b6d57600080fd5b5051151562002b7b57600080fd5b50505050565b336000908152600260209081526040808320600160a060020a038616845290915281205480831062002bd757336000908152600260209081526040808320600160a060020a038816845290915281205562002c0e565b62002be9818463ffffffff62002e6216565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b3360009081526020819052604081205482111562002c9157600080fd5b600160a060020a038316151562002ca757600080fd5b3360009081526020819052604090205462002cc9908363ffffffff62002e6216565b3360009081526020819052604080822092909255600160a060020a0385168152205462002cfd908363ffffffff620028d316565b600160a060020a0384166000818152602081815260409182902093909355805185815290519192339260008051602062003e4b8339815191529281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a038616845290915281205462002d7e908363ffffffff620028d316565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a038116151562002df957600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60008282111562002e6f57fe5b50900390565b604051610f778062002eb483390190565b600082151562002e995750600062000a5d565b5081810281838281151562002eaa57fe5b041462000a5d57fe0060806040523480156200001157600080fd5b5060405160808062000f7783398101604090815281516020830151918301516060909301519092908383600062000057858564010000000062000b976200021e82021704565b60008054600160a060020a031916331790556001600160a060020a03851615156200008157600080fd5b818311156200008f57600080fd5b60018054600160a060020a031916600160a060020a0387161790556005805460ff19168215151790556004829055620000d7848464010000000062000251810262000b5d1704565b600255505050600355506000620000fd838364010000000062000b976200021e82021704565b116200016a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f56657374696e67204475726174696f6e2063616e6e6f74206265203000000000604482015290519081900360640190fd5b426200019f62000189848464010000000062000b976200021e82021704565b859064010000000062000b5d6200025182021704565b116200020c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f576f7274686c6573732076657374696e67000000000000000000000000000000604482015290519081900360640190fd5b600891909155600955506200025f9050565b600082151562000231575060006200024b565b508181028183828115156200024257fe5b04146200024b57fe5b92915050565b818101828110156200024b57fe5b610d08806200026f6000396000f30060806040526004361061010e5763ffffffff60e060020a60003504166304cabcde81146101135780630fb5a6b41461014657806313d033c01461015b5780631726cbc81461017057806319165587146101915780632a0102bf146101b4578063384711cc146101d557806338af3eed146101f65780636343a64a1461022757806363af1a2a1461024857806363ef162714610269578063715018a61461027e57806374a8f103146102935780637e649598146102b4578063872a7810146102d55780638da5cb5b146102fe5780639852595c14610313578063b8d08db214610334578063be9a655514610349578063c09c59431461035e578063f2fde38b1461037f578063fa01dc06146103a0575b600080fd5b34801561011f57600080fd5b50610134600160a060020a03600435166103c1565b60408051918252519081900360200190f35b34801561015257600080fd5b50610134610471565b34801561016757600080fd5b50610134610477565b34801561017c57600080fd5b50610134600160a060020a036004351661047d565b34801561019d57600080fd5b506101b2600160a060020a03600435166104af565b005b3480156101c057600080fd5b50610134600160a060020a036004351661055b565b3480156101e157600080fd5b50610134600160a060020a0360043516610616565b34801561020257600080fd5b5061020b610767565b60408051600160a060020a039092168252519081900360200190f35b34801561023357600080fd5b50610134600160a060020a0360043516610776565b34801561025457600080fd5b50610134600160a060020a03600435166107ef565b34801561027557600080fd5b50610134610801565b34801561028a57600080fd5b506101b2610807565b34801561029f57600080fd5b506101b2600160a060020a0360043516610873565b3480156102c057600080fd5b50610134600160a060020a03600435166109e7565b3480156102e157600080fd5b506102ea610a8e565b604080519115158252519081900360200190f35b34801561030a57600080fd5b5061020b610a97565b34801561031f57600080fd5b50610134600160a060020a0360043516610aa6565b34801561034057600080fd5b50610134610ab8565b34801561035557600080fd5b50610134610abe565b34801561036a57600080fd5b50610134600160a060020a0360043516610ac4565b34801561038b57600080fd5b506101b2600160a060020a0360043516610b25565b3480156103ac57600080fd5b506102ea600160a060020a0360043516610b48565b60006103da600454600354610b5d90919063ffffffff16565b421015806104005750600160a060020a03821660009081526007602052604090205460ff165b1561040d5750600061046c565b61046961045a60085461044e600161044260085461043660035442610b7090919063ffffffff16565b9063ffffffff610b8216565b9063ffffffff610b5d16565b9063ffffffff610b9716565b6003549063ffffffff610b5d16565b90505b919050565b60045481565b60025481565b600160a060020a038116600090815260066020526040812054610469906104a384610616565b9063ffffffff610b7016565b60006104ba8261047d565b9050600081116104c957600080fd5b600160a060020a0382166000908152600660205260409020546104f2908263ffffffff610b5d16565b600160a060020a038084166000818152600660205260409020929092556001546105249291168363ffffffff610bc016565b6040805182815290517ffb81f9b30d73d830c3544b34d827c08142579ee75710b490bab0b3995468c5659181900360200190a15050565b600160a060020a0381166000818152600a6020908152604080832054600683528184205482517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529251949561046995929461044294929391926370a08231926024808301939282900301818b87803b1580156105de57600080fd5b505af11580156105f2573d6000803e3d6000fd5b505050506040513d602081101561060857600080fd5b50519063ffffffff610b5d16565b600080600083600160a060020a03166370a08231306040518263ffffffff1660e060020a0281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b15801561067657600080fd5b505af115801561068a573d6000803e3d6000fd5b505050506040513d60208110156106a057600080fd5b5051600160a060020a0385166000908152600660205260409020549092506106cf90839063ffffffff610b5d16565b90506002544210156106e45760009250610760565b6004546003546106f99163ffffffff610b5d16565b4210158061071f5750600160a060020a03841660009081526007602052604090205460ff165b1561072c57809250610760565b61075d60095461043661075060085461043660035442610b7090919063ffffffff16565b849063ffffffff610b9716565b92505b5050919050565b600154600160a060020a031681565b600061078f600454600354610b5d90919063ffffffff16565b421015806107b55750600160a060020a03821660009081526007602052604090205460ff165b156107c25750600061046c565b6104696107e060085461043660035442610b7090919063ffffffff16565b6009549063ffffffff610b7016565b600a6020526000908152604090205481565b60085481565b600054600160a060020a0316331461081e57600080fd5b60008054604051600160a060020a03909116917ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482091a26000805473ffffffffffffffffffffffffffffffffffffffff19169055565b6000805481908190600160a060020a0316331461088f57600080fd5b60055460ff1615156108a057600080fd5b600160a060020a03841660009081526007602052604090205460ff16156108c657600080fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051600160a060020a038616916370a082319160248083019260209291908290030181600087803b15801561092757600080fd5b505af115801561093b573d6000803e3d6000fd5b505050506040513d602081101561095157600080fd5b5051925061095e8461047d565b9150610970838363ffffffff610b7016565b600160a060020a038086166000818152600760209081526040808320805460ff19166001179055600a9091528120849055549293506109b8929091168363ffffffff610bc016565b6040517f44825a4b2df8acb19ce4e1afba9aa850c8b65cdb7942e2078f27d0b0960efee690600090a150505050565b60006104696109f58361047d565b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051600160a060020a038616916370a082319160248083019260209291908290030181600087803b158015610a5657600080fd5b505af1158015610a6a573d6000803e3d6000fd5b505050506040513d6020811015610a8057600080fd5b50519063ffffffff610b7016565b60055460ff1681565b600054600160a060020a031681565b60066020526000908152604090205481565b60095481565b60035481565b6000610add600454600354610b5d90919063ffffffff16565b42101580610b035750600160a060020a03821660009081526007602052604090205460ff165b15610b105750600061046c565b6004546003546104699163ffffffff610b5d16565b600054600160a060020a03163314610b3c57600080fd5b610b4581610c5f565b50565b60076020526000908152604090205460ff1681565b81810182811015610b6a57fe5b92915050565b600082821115610b7c57fe5b50900390565b60008183811515610b8f57fe5b049392505050565b6000821515610ba857506000610b6a565b50818102818382811515610bb857fe5b0414610b6a57fe5b82600160a060020a031663a9059cbb83836040518363ffffffff1660e060020a0281526004018083600160a060020a0316600160a060020a0316815260200182815260200192505050602060405180830381600087803b158015610c2357600080fd5b505af1158015610c37573d6000803e3d6000fd5b505050506040513d6020811015610c4d57600080fd5b50511515610c5a57600080fd5b505050565b600160a060020a0381161515610c7457600080fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600a165627a7a723058205aeebab1c6eeb0145ecc9210c203aa7ea1ad53282570334a9375c9bc5ea4ec010029476c6f62616c206c6f636b206973206163746976650000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef41646472657373206973206c6f636b6564000000000000000000000000000000a165627a7a72305820f04abac9bb4e7d72f4033c8c997791f10220a672c24b6d69da3c7785fc3fb0dd0029

Swarm Source

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