ETH Price: $3,104.00 (+4.43%)
Gas: 5 Gwei

Token

CYBR - Cyber Security Ecosystem Token (CYBR)
 

Overview

Max Total Supply

509,861,352 CYBR

Holders

952

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

CYBR is a holistic, cyber security solution which ensures secure smart transactions via a portal designed to provide real-time safeguards, countermeasures and threat intelligence to crypto communities, entities and exchanges.

ICO Information

ICO Start Date : Sep 1, 2018 
ICO End Date : Jun 1, 2019
Total Cap : $400,000
Token Distribution Date : Jul 20, 2019
ICO Price  : $0.08 / 0.03ETH
Bonus : 10%
Country : USA

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CYBRToken

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 2019-07-18
*/

/*
Copyright 2018 Binod Nirvan @ CYBRToken (https://cybrtoken.io)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
    http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

pragma solidity ^0.4.24;

/*
Copyright 2018 Binod Nirvan @ CYBRToken (https://cybrtoken.io)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
    http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/











/**
 * @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 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 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);
  }
}

/*
Copyright 2018 Binod Nirvan

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
 */



/*
Copyright 2018 Binod Nirvan

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
 */



/*
Copyright 2018 Binod Nirvan

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
 */





/**
 * @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 Custom Ownable
///@notice Custom ownable contract.
contract CustomOwnable is Ownable {
  ///The trustee wallet.
  address private _trustee;

  event TrusteeAssigned(address indexed account);

  ///@notice Validates if the sender is actually the trustee.
  modifier onlyTrustee() {
    require(msg.sender == _trustee, "Access is denied.");
    _;
  }

  ///@notice Assigns or changes the trustee wallet.
  ///@param _account A wallet address which will become the new trustee.
  ///@return Returns true if the operation was successful.
  function assignTrustee(address _account) external onlyOwner returns(bool) {
    require(_account != address(0), "Please provide a valid address for trustee.");

    _trustee = _account;
    emit TrusteeAssigned(_account);
    return true;
  }

  ///@notice Changes the owner of this contract.
  ///@param _newOwner Specify a wallet address which will become the new owner.
  ///@return Returns true if the operation was successful.
  function reassignOwner(address _newOwner) external onlyTrustee returns(bool) {
    super._transferOwnership(_newOwner);
    return true;
  }

  ///@notice The trustee wallet has the power to change the owner in case of unforeseen or unavoidable situation.
  ///@return Wallet address of the trustee account.
  function getTrustee() external view returns(address) {
    return _trustee;
  }
}


///@title This contract enables to create multiple contract administrators.
contract CustomAdmin is CustomOwnable {
  ///@notice List of administrators.
  mapping(address => bool) public admins;

  event AdminAdded(address indexed _address);
  event AdminRemoved(address indexed _address);

  ///@notice Validates if the sender is actually an administrator.
  modifier onlyAdmin() {
    require(isAdmin(msg.sender), "Access is denied.");
    _;
  }

  ///@notice Adds the specified address to the list of administrators.
  ///@param _address The address to add to the administrator list.
  function addAdmin(address _address) external onlyAdmin returns(bool) {
    require(_address != address(0), "Invalid address.");
    require(!admins[_address], "This address is already an administrator.");

    require(_address != owner, "The owner cannot be added or removed to or from the administrator list.");

    admins[_address] = true;

    emit AdminAdded(_address);
    return true;
  }

  ///@notice Adds multiple addresses to the administrator list.
  ///@param _accounts The wallet addresses to add to the administrator list.
  function addManyAdmins(address[] _accounts) external onlyAdmin returns(bool) {
    for(uint8 i = 0; i < _accounts.length; i++) {
      address account = _accounts[i];

      ///Zero address cannot be an admin.
      ///The owner is already an admin and cannot be assigned.
      ///The address cannot be an existing admin.
      if(account != address(0) && !admins[account] && account != owner) {
        admins[account] = true;

        emit AdminAdded(_accounts[i]);
      }
    }

    return true;
  }

  ///@notice Removes the specified address from the list of administrators.
  ///@param _address The address to remove from the administrator list.
  function removeAdmin(address _address) external onlyAdmin returns(bool) {
    require(_address != address(0), "Invalid address.");
    require(admins[_address], "This address isn't an administrator.");

    //The owner cannot be removed as admin.
    require(_address != owner, "The owner cannot be added or removed to or from the administrator list.");

    admins[_address] = false;
    emit AdminRemoved(_address);
    return true;
  }

  ///@notice Removes multiple addresses to the administrator list.
  ///@param _accounts The wallet addresses to add to the administrator list.
  function removeManyAdmins(address[] _accounts) external onlyAdmin returns(bool) {
    for(uint8 i = 0; i < _accounts.length; i++) {
      address account = _accounts[i];

      ///Zero address can neither be added or removed from this list.
      ///The owner is the super admin and cannot be removed.
      ///The address must be an existing admin in order for it to be removed.
      if(account != address(0) && admins[account] && account != owner) {
        admins[account] = false;

        emit AdminRemoved(_accounts[i]);
      }
    }

    return true;
  }

  ///@notice Checks if an address is an administrator.
  function isAdmin(address _address) public view returns(bool) {
    if(_address == owner) {
      return true;
    }

    return admins[_address];
  }
}



///@title This contract enables you to create pausable mechanism to stop in case of emergency.
contract CustomPausable is CustomAdmin {
  event Paused();
  event Unpaused();

  bool public paused = false;

  ///@notice Verifies whether the contract is not paused.
  modifier whenNotPaused() {
    require(!paused, "Sorry but the contract isn't paused.");
    _;
  }

  ///@notice Verifies whether the contract is paused.
  modifier whenPaused() {
    require(paused, "Sorry but the contract is paused.");
    _;
  }

  ///@notice Pauses the contract.
  function pause() external onlyAdmin whenNotPaused {
    paused = true;
    emit Paused();
  }

  ///@notice Unpauses the contract and returns to normal state.
  function unpause() external onlyAdmin whenPaused {
    paused = false;
    emit Unpaused();
  }
}
/*
Copyright 2018 Binod Nirvan

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http:///www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
 */






///@title Custom Lockable Contract
///@author Binod Nirvan
///@notice This contract enables Cyber Security Ecosystem Token admins
///to lock tokens on an individual-wallet basis.
///When tokens are locked for specific wallet,
///they cannot transfer their balances
///until the end of their locking period.
///Furthermore, this feature is created to specifically
///lock bounty, advisory, and team tokens
///for a set period of time.
///This feature once turned off cannot be switched on back again.
contract CustomLockable is CustomAdmin {
  ///Locking list contains list of wallets and their respective release dates.
  mapping(address => uint256) public lockingList;

  ///Signifies if the locking feature can be used.
  bool public canLock = true;

  event TokenLocked(address indexed _address, uint256 _releaseDate);
  event TokenUnlocked(address indexed _address);
  event LockingDisabled();

  ///@notice Reverts this transfer if the wallet is in the locking list.
  modifier revertIfLocked(address _wallet) {
    require(!isLocked(_wallet), "The operation was cancelled because your tokens are locked.");
    _;
  }

  ///@notice Checks if a wallet is locked for transfers.
  function isLocked(address _wallet) public view returns(bool) {
    uint256 _lockedUntil = lockingList[_wallet];

    //solium-disable-next-line
    if(_lockedUntil > now) {
      return true;
    }

    return false;
  }

  ///@notice Adds the specified address to the locking list.
  ///@param _address The address to add to the locking list.
  ///@param _releaseDate The date when the tokens become avaiable for transfer.
  function addLock(address _address, uint256 _releaseDate) external onlyAdmin returns(bool) {
    require(canLock, "Access is denied. This feature was already disabled by an administrator.");
    require(_address != address(0), "Invalid address.");
    require(!admins[_address], "Cannot lock administrators.");
    require(_address != owner, "Cannot lock the owner.");

    lockingList[_address] = _releaseDate;

    if(_releaseDate > 0) {
      emit TokenLocked(_address, _releaseDate);
    } else {
      emit TokenUnlocked(_address);
    }

    return true;
  }

  ///@notice Adds multiple addresses to the locking list.
  ///@param _accounts The wallet addresses to add to the locking list.
  ///@param _releaseDate The date when the tokens become avaiable for transfer.
  function addManyLocks(address[] _accounts, uint256 _releaseDate) external onlyAdmin returns(bool) {
    require(canLock, "Access is denied. This feature was already disabled by an administrator.");
    require(_releaseDate > 0, "Invalid release date.");

    for(uint8 i = 0; i < _accounts.length; i++) {
      address _account = _accounts[i];

      ///Zero address, admins, and owner cannot be locked.
      if(_account != address(0) && !admins[_account] && _account != owner) {
        lockingList[_account] = _releaseDate;
        emit TokenLocked(_account, _releaseDate);
      }
    }

    return true;
  }

  ///@notice Removes multiple addresses from the locking list.
  ///@param _accounts The wallet addresses to unlock.
  function removeManyLocks(address[] _accounts) external onlyAdmin returns(bool) {
    require(canLock, "Access is denied. This feature was already disabled by an administrator.");

    for(uint8 i = 0; i < _accounts.length; i++) {
      address _account = _accounts[i];

      lockingList[_account] = 0;
      emit TokenUnlocked(_account);
    }

    return true;
  }

  ///@notice Once locking feature is disable, it cannot be
  ///truned back on thenceforth.
  function disableLocking() external onlyAdmin returns(bool) {
    require(canLock, "The token lock feature is already disabled.");

    canLock = false;
    emit LockingDisabled();
    return true;
  }
}
/*
Copyright 2018 Binod Nirvan
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
    http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/






///@title Transfer State Contract
///@author Binod Nirvan
///@notice Enables the admins to maintain the transfer state.
///Transfer state when disabled disallows everyone but admins to transfer tokens.
contract TransferState is CustomPausable {
  bool public released = false;

  event TokenReleased(bool _state);

  ///@notice Checks if the supplied address is able to perform transfers.
  ///@param _from The address to check against if the transfer is allowed.
  modifier canTransfer(address _from) {
    if(paused || !released) {
      if(!isAdmin(_from)) {
        revert("Operation not allowed. The transfer state is restricted.");
      }
    }

    _;
  }

  ///@notice This function enables token transfers for everyone.
  ///Can only be enabled after the end of the ICO.
  function enableTransfers() external onlyAdmin whenNotPaused returns(bool) {
    require(!released, "Invalid operation. The transfer state is no more restricted.");

    released = true;

    emit TokenReleased(released);
    return true;
  }

  ///@notice This function disables token transfers for everyone.
  function disableTransfers() external onlyAdmin whenNotPaused returns(bool) {
    require(released, "Invalid operation. The transfer state is already restricted.");

    released = false;

    emit TokenReleased(released);
    return true;
  }
}
/*
Copyright 2018 Binod Nirvan
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
    http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/







///@title Bulk Transfer Contract
///@author Binod Nirvan
///@notice This contract provides features for admins to perform bulk transfers.
contract BulkTransfer is StandardToken, CustomAdmin {
  event BulkTransferPerformed(address[] _destinations, uint256[] _amounts);

  ///@notice Allows only the admins and/or whitelisted applications to perform bulk transfer operation.
  ///@param _destinations The destination wallet addresses to send funds to.
  ///@param _amounts The respective amount of fund to send to the specified addresses.
  function bulkTransfer(address[] _destinations, uint256[] _amounts) public onlyAdmin returns(bool) {
    require(_destinations.length == _amounts.length, "Invalid operation.");

    //Saving gas by determining if the sender has enough balance
    //to post this transaction.
    uint256 requiredBalance = sumOf(_amounts);
    require(balances[msg.sender] >= requiredBalance, "You don't have sufficient funds to transfer amount that large.");

    for (uint256 i = 0; i < _destinations.length; i++) {
      transfer(_destinations[i], _amounts[i]);
    }

    emit BulkTransferPerformed(_destinations, _amounts);
    return true;
  }

  ///@notice Returns the sum of supplied values.
  ///@param _values The collection of values to create the sum from.
  function sumOf(uint256[] _values) private pure returns(uint256) {
    uint256 total = 0;

    for (uint256 i = 0; i < _values.length; i++) {
      total = total.add(_values[i]);
    }

    return total;
  }
}
/*
Copyright 2018 Binod Nirvan
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
    http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/










/**
 * @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));
  }
}




///@title Reclaimable Contract
///@author Binod Nirvan
///@notice Reclaimable contract enables the administrators
///to reclaim accidentally sent Ethers and ERC20 token(s)
///to this contract.
contract Reclaimable is CustomAdmin {
  using SafeERC20 for ERC20;

  ///@notice Transfers all Ether held by the contract to the owner.
  function reclaimEther() external onlyAdmin {
    msg.sender.transfer(address(this).balance);
  }

  ///@notice Transfers all ERC20 tokens held by the contract to the owner.
  ///@param _token The amount of token to reclaim.
  function reclaimToken(address _token) external onlyAdmin {
    ERC20 erc20 = ERC20(_token);
    uint256 balance = erc20.balanceOf(this);
    erc20.safeTransfer(msg.sender, balance);
  }
}


///@title CYBRToken Base Contract
///@author Binod Nirvan
///@notice Cyber Security Ecosystem Tokens are designed to incentivize and provide
///functionality for the three-pronged CYBR solution.
///Subscription services and the provision of blockchain related services
///will be solely transacted utilizing Cyber Security Ecosystem Tokens.
///Rewards for CYBR community members will be a determined allocation of Cyber Security Ecosystem Tokens.
///CYBR is a standard ERC20 smart contract-based to- ken running
///on the Ethereum network and is implemented
///within the business logic set forth by the Company’s developers.
///&nbsp;
///The CYBR utility token is redeemable for usage with BlindSpot
///and global threat intelligence feeds. The CYBR initiative provides
///protection to individual networks, SMEs and large-scale enterprise users.
///Intelligence feeds are based on risk scores; packaged in a series of
///products/services and delivered via a subscription model which can provide:
///&nbsp;
///- Assessed zero-day global threat feeds o Json, CSV and XML formats
///  - Utilizing IP tables firewall rules
///  - Magento, Wordpress and related plugins
///- Global threat intelligence reports
///- Email alerts
///- Mobile apps
///- API key to access CYBR via apps/dapps
///&nbsp;
///Data feeds will be based on number of user licenses, to be purchased
///on a yearly-based subscription model. Special needs assessments, customized solutions,
///or any appliance applications can be purchased at an additional cost.
///&nbsp;
///The CYBR business model is simple: a subscription-based value-added service
///with recurring revenues. The company has identified a number of ancillary
///revenue streams, ranging from customized packages to the sale of propriety
///and modded hardware devices. However, it should be noted that the potent
///solution that is BlindSpot will drive our quest for adoption.
contract TokenBase is StandardToken, TransferState, BulkTransfer, Reclaimable, BurnableToken, CustomLockable {
  //solhint-disable
  uint8 public constant decimals = 18;
  string public constant name = "CYBR - Cyber Security Ecosystem Token";
  string public constant symbol = "CYBR";
  //solhint-enable

  uint256 internal constant MILLION = 1000000 * 1 ether;
  uint256 internal constant BILLION = 1000000000 * 1 ether;
  uint256 public constant MAX_SUPPLY = BILLION;
  uint256 public constant INITIAL_SUPPLY = 510 * MILLION;//51%

  event Mint(address indexed to, uint256 amount);

  constructor() public {
    mintTokens(msg.sender, INITIAL_SUPPLY);
  }

  ///@notice Transfers the specified value of Cyber Security Ecosystem Tokens to the destination address.
  //Transfers can only happen when the transfer state is enabled.
  //Transfer state can only be enabled after the end of the crowdsale.
  ///@param _to The destination wallet address to transfer funds to.
  ///@param _value The amount of tokens to send to the destination address.
  function transfer(address _to, uint256 _value)
  public
  revertIfLocked(msg.sender)
  canTransfer(msg.sender)
  returns(bool) {
    require(_to != address(0), "Invalid address.");
    return super.transfer(_to, _value);
  }

  ///@notice Transfers tokens from a specified wallet address.
  ///@dev This function is overridden to leverage transfer state feature.
  ///@param _from The address to transfer funds from.
  ///@param _to The address to transfer funds to.
  ///@param _value The amount of tokens to transfer.
  function transferFrom(address _from, address _to, uint256 _value)
  public
  revertIfLocked(_from)
  canTransfer(_from)
  returns(bool) {
    require(_to != address(0), "Invalid address.");
    return super.transferFrom(_from, _to, _value);
  }

  ///@notice Approves a wallet address to spend on behalf of the sender.
  ///@dev This function is overridden to leverage transfer state feature.
  ///@param _spender The address which is approved to spend on behalf of the sender.
  ///@param _value The amount of tokens approve to spend.
  function approve(address _spender, uint256 _value)
  public
  revertIfLocked(msg.sender)
  canTransfer(msg.sender)
  returns(bool) {
    require(_spender != address(0), "Invalid address.");
    return super.approve(_spender, _value);
  }

  ///@notice Increases the approval of the spender.
  ///@dev This function is overridden to leverage transfer state feature.
  ///@param _spender The address which is approved to spend on behalf of the sender.
  ///@param _addedValue The added amount of tokens approved to spend.
  function increaseApproval(address _spender, uint256 _addedValue)
  public
  revertIfLocked(msg.sender)
  canTransfer(msg.sender)
  returns(bool) {
    require(_spender != address(0), "Invalid address.");
    return super.increaseApproval(_spender, _addedValue);
  }

  ///@notice Decreases the approval of the spender.
  ///@dev This function is overridden to leverage transfer state feature.
  ///@param _spender The address of the spender to decrease the allocation from.
  ///@param _subtractedValue The amount of tokens to subtract from the approved allocation.
  function decreaseApproval(address _spender, uint256 _subtractedValue)
  public
  revertIfLocked(msg.sender)
  canTransfer(msg.sender)
  returns(bool) {
    require(_spender != address(0), "Invalid address.");
    return super.decreaseApproval(_spender, _subtractedValue);
  }

  ///@notice Burns the coins held by the sender.
  ///@param _value The amount of coins to burn.
  ///@dev This function is overridden to leverage Pausable feature.
  function burn(uint256 _value)
  public
  revertIfLocked(msg.sender)
  canTransfer(msg.sender)
  whenNotPaused {
    super.burn(_value);
  }

  ///@notice Mints the supplied value of the tokens to the destination address.
  //Minting cannot be performed any further once the maximum supply is reached.
  //This function cannot be used by anyone except for this contract.
  ///@param _to The address which will receive the minted tokens.
  ///@param _value The amount of tokens to mint.
  function mintTokens(address _to, uint _value) internal returns(bool) {
    require(_to != address(0), "Invalid address.");
    require(totalSupply_.add(_value) <= MAX_SUPPLY, "Sorry but the total supply can't exceed the maximum supply.");

    balances[_to] = balances[_to].add(_value);
    totalSupply_ = totalSupply_.add(_value);

    emit Transfer(address(0), _to, _value);
    emit Mint(_to, _value);

    return true;
  }
}


///@title Cyber Security Ecosystem Token
///@author Binod Nirvan
///@notice Cyber Security Ecosystem Tokens are designed to incentivize and provide
///functionality for the three-pronged CYBR solution.
///Subscription services and the provision of blockchain related services
///will be solely transacted utilizing Cyber Security Ecosystem Tokens.
///Rewards for CYBR community members will be a determined allocation of Cyber Security Ecosystem Tokens.
///CYBR is a standard ERC20 smart contract-based to- ken running
///on the Ethereum network and is implemented
///within the business logic set forth by the Company’s developers.
///&nbsp;
///The CYBR utility token is redeemable for usage with BlindSpot
///and global threat intelligence feeds. The CYBR initiative provides
///protection to individual networks, SMEs and large-scale enterprise users.
///Intelligence feeds are based on risk scores; packaged in a series of
///products/services and delivered via a subscription model which can provide:
///&nbsp;
///- Assessed zero-day global threat feeds o Json, CSV and XML formats
///  - Utilizing IP tables firewall rules
///  - Magento, Wordpress and related plugins
///- Global threat intelligence reports
///- Email alerts
///- Mobile apps
///- API key to access CYBR via apps/dapps
///&nbsp;
///Data feeds will be based on number of user licenses, to be purchased
///on a yearly-based subscription model. Special needs assessments, customized solutions,
///or any appliance applications can be purchased at an additional cost.
///&nbsp;
///The CYBR business model is simple: a subscription-based value-added service
///with recurring revenues. The company has identified a number of ancillary
///revenue streams, ranging from customized packages to the sale of propriety
///and modded hardware devices. However, it should be noted that the potent
///solution that is BlindSpot will drive our quest for adoption.
contract CYBRToken is TokenBase {
  //solhint-disable not-rely-on-time
  //solium-disable security/no-block-members

  uint256 public icoEndDate;

  uint256 public constant ALLOCATION_FOR_FOUNDERS = 100 * MILLION;//10%
  uint256 public constant ALLOCATION_FOR_TEAM = 100 * MILLION;//10%
  uint256 public constant ALLOCATION_FOR_RESERVE = 100 * MILLION;//10%
  uint256 public constant ALLOCATION_FOR_INITIAL_PARTNERSHIPS = 50 * MILLION;//5%
  uint256 public constant ALLOCATION_FOR_PARTNERSHIPS = 50 * MILLION;//5%
  uint256 public constant ALLOCATION_FOR_ADVISORS = 60 * MILLION;//6%
  uint256 public constant ALLOCATION_FOR_PROMOTION = 30 * MILLION;//3%

  bool public targetReached = false;

  mapping(bytes32 => bool) private mintingList;

  event ICOEndDateSet(uint256 _date);
  event TargetReached();

  ///@notice Checks if the minting for the supplied key was already performed.
  ///@param _key The key or category name of minting.
  modifier whenNotMinted(string _key) {
    if(mintingList[computeHash(_key)]) {
      revert("Duplicate minting key supplied.");
    }

    _;
  }

  ///@notice This function signifies that the minimum fundraising target was met.
  ///Please note that this can only be called once.
  function setSuccess() external onlyAdmin returns(bool) {
    require(!targetReached, "Access is denied.");
    targetReached = true;

    emit TargetReached();
  }

  ///@notice This function enables the whitelisted application (internal application) to set the
  ///ICO end date and can only be used once.
  ///@param _date The date to set as the ICO end date.
  function setICOEndDate(uint _date) external onlyAdmin returns(bool) {
    require(icoEndDate == 0, "The ICO end date was already set.");

    icoEndDate = _date;

    emit ICOEndDateSet(_date);
    return true;
  }

  ///@notice Mints the 100 million Cyber Security Ecosystem Tokens allocated to the CYBRToken founders.
  ///The tokens are only available to the founders after 18 months of the ICO end.
  function mintTokensForFounders() external onlyAdmin returns(bool) {
    require(targetReached, "Sorry, you can't mint at this time because the target hasn't been reached yet.");
    require(icoEndDate != 0, "You need to specify the ICO end date before minting the tokens.");
    require(now > (icoEndDate + 548 days), "Access is denied, it's too early to mint founder tokens.");

    return mintOnce("founders", msg.sender, ALLOCATION_FOR_FOUNDERS);
  }

  ///@notice Mints 100 million Cyber Security Ecosystem Tokens allocated to the CYBRToken team.
  ///The tokens are only available to the founders after 1 year of the ICO end.
  function mintTokensForTeam() external onlyAdmin returns(bool) {
    require(targetReached, "Sorry, you can't mint at this time because the target hasn't been reached yet.");
    require(icoEndDate != 0, "You need to specify the ICO end date before minting the tokens.");
    require(now > (icoEndDate + 365 days), "Access is denied, it's too early to mint team tokens.");

    return mintOnce("team", msg.sender, ALLOCATION_FOR_TEAM);
  }

  ///@notice Mints the 100 million Cyber Security Ecosystem Tokens allocated to the operational reserves.
  ///The tokens are only available in the reserves after 1 year of the ICO end.
  function mintReserveTokens() external onlyAdmin returns(bool) {
    require(targetReached, "Sorry, you can't mint at this time because the target hasn't been reached yet.");
    require(icoEndDate != 0, "You need to specify the ICO end date before minting the tokens.");
    require(now > (icoEndDate + 365 days), "Access is denied, it's too early to mint the reserve tokens.");

    return mintOnce("reserve", msg.sender, ALLOCATION_FOR_RESERVE);
  }

  ///@notice Mints the 50 million tokens allocated for initial partnerships.
  ///The tokens are only available to the partners after 6 months of the ICO end.
  function mintTokensForInitialPartnerships() external onlyAdmin returns(bool) {
    return mintOnce("initialPartnerships", msg.sender, ALLOCATION_FOR_INITIAL_PARTNERSHIPS);
  }

  ///@notice Mints the 50 million tokens allocated for partnerships.
  ///The tokens are only available to the partners after 6 months of the ICO end.
  function mintTokensForPartnerships() external onlyAdmin returns(bool) {
    require(targetReached, "Sorry, you can't mint at this time because the target hasn't been reached yet.");
    require(icoEndDate != 0, "You need to specify the ICO end date before minting the tokens.");
    require(now > (icoEndDate + 182 days), "Access is denied, it's too early to mint the partnership tokens.");

    return mintOnce("partnerships", msg.sender, ALLOCATION_FOR_PARTNERSHIPS);
  }

  ///@notice Mints the 60 million tokens allocated to the CYBRToken advisors.
  ///The tokens are only available to the advisors after 1 year of the ICO end.
  function mintTokensForAdvisors() external onlyAdmin returns(bool) {
    require(targetReached, "Sorry, you can't mint at this time because the target hasn't been reached yet.");
    require(icoEndDate != 0, "You need to specify the ICO end date before minting the tokens.");
    require(now > (icoEndDate + 365 days), "Access is denied, it's too early to mint advisory tokens.");

    return mintOnce("advisors", msg.sender, ALLOCATION_FOR_ADVISORS);
  }

  ///@notice Mints the 30 million Cyber Security Ecosystem Tokens allocated to promotion.
  ///The tokens are available at the end of the ICO.
  function mintTokensForPromotion() external onlyAdmin returns(bool) {
    require(targetReached, "Sorry, you can't mint at this time because the target hasn't been reached yet.");
    require(icoEndDate != 0, "You need to specify the ICO end date before minting the tokens.");
    require(now > icoEndDate, "Access is denied, it's too early to mint the promotion tokens.");

    return mintOnce("promotion", msg.sender, ALLOCATION_FOR_PROMOTION);
  }

  ///@notice Computes keccak256 hash of the supplied value.
  ///@param _key The string value to compute hash from.
  function computeHash(string _key) private pure returns(bytes32) {
    return keccak256(abi.encodePacked(_key));
  }

  ///@notice Mints the tokens only once against the supplied key (category).
  ///@param _key The key or the category of the allocation to mint the tokens for.
  ///@param _to The address receiving the minted tokens.
  ///@param _amount The amount of tokens to mint.
  function mintOnce(string _key, address _to, uint256 _amount) private whenNotPaused whenNotMinted(_key) returns(bool) {
    mintingList[computeHash(_key)] = true;
    return mintTokens(_to, _amount);
  }
}

Contract Security Audit

Contract ABI

[{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"reassignOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_destinations","type":"address[]"},{"name":"_amounts","type":"uint256[]"}],"name":"bulkTransfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"removeAdmin","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_token","type":"address"}],"name":"reclaimToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_address","type":"address"}],"name":"isAdmin","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"icoEndDate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"ALLOCATION_FOR_INITIAL_PARTNERSHIPS","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MAX_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"disableTransfers","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"targetReached","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"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":"","type":"address"}],"name":"admins","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_date","type":"uint256"}],"name":"setICOEndDate","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_wallet","type":"address"}],"name":"isLocked","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"mintTokensForPartnerships","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"mintTokensForPromotion","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"mintTokensForInitialPartnerships","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_account","type":"address"}],"name":"assignTrustee","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getTrustee","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":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"canLock","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_accounts","type":"address[]"},{"name":"_releaseDate","type":"uint256"}],"name":"addManyLocks","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"addAdmin","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":"_accounts","type":"address[]"}],"name":"removeManyLocks","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"setSuccess","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"mintTokensForAdvisors","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"mintTokensForTeam","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"ALLOCATION_FOR_ADVISORS","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"ALLOCATION_FOR_RESERVE","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":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"released","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"mintReserveTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"reclaimEther","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"lockingList","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_accounts","type":"address[]"}],"name":"addManyAdmins","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"enableTransfers","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"ALLOCATION_FOR_FOUNDERS","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"ALLOCATION_FOR_TEAM","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"ALLOCATION_FOR_PROMOTION","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"},{"name":"_releaseDate","type":"uint256"}],"name":"addLock","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"disableLocking","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"mintTokensForFounders","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_accounts","type":"address[]"}],"name":"removeManyAdmins","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":"ALLOCATION_FOR_PARTNERSHIPS","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_date","type":"uint256"}],"name":"ICOEndDateSet","type":"event"},{"anonymous":false,"inputs":[],"name":"TargetReached","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_address","type":"address"},{"indexed":false,"name":"_releaseDate","type":"uint256"}],"name":"TokenLocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_address","type":"address"}],"name":"TokenUnlocked","type":"event"},{"anonymous":false,"inputs":[],"name":"LockingDisabled","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":false,"name":"_destinations","type":"address[]"},{"indexed":false,"name":"_amounts","type":"uint256[]"}],"name":"BulkTransferPerformed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_state","type":"bool"}],"name":"TokenReleased","type":"event"},{"anonymous":false,"inputs":[],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_address","type":"address"}],"name":"AdminAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_address","type":"address"}],"name":"AdminRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"TrusteeAssigned","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"}]

60806040526006805461ffff191690556008805460ff19908116600117909155600a8054909116905560038054600160a060020a031916339081179091556200005e906b01a5dcb365fc4166be00000064010000000062000065810204565b50620002a7565b6000600160a060020a0383161515620000df57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f496e76616c696420616464726573732e00000000000000000000000000000000604482015290519081900360640190fd5b6001546b033b2e3c9fd0803ce8000000906200010a90846401000000006200412c6200029382021704565b11156200019e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603b60248201527f536f727279206275742074686520746f74616c20737570706c792063616e277460448201527f2065786365656420746865206d6178696d756d20737570706c792e0000000000606482015290519081900360840190fd5b600160a060020a038316600090815260208190526040902054620001d190836401000000006200412c6200029382021704565b600160a060020a0384166000908152602081905260409020556001546200020790836401000000006200412c6200029382021704565b600155604080518381529051600160a060020a038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3604080518381529051600160a060020a038516917f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885919081900360200190a250600192915050565b81810182811015620002a157fe5b92915050565b6146b280620002b76000396000f3006080604052600436106102c95763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166304a7b94c81146102ce57806306fdde0314610303578063095ea7b31461038d578063153a1f3e146103b15780631785f53c1461043f57806317ffc3201461046057806318160ddd1461048357806323b872dd146104aa57806324d7806c146104d45780632a62738b146104f55780632bcf25df1461050a5780632ff2e9dc1461051f578063313ce5671461053457806332cb6b0c1461055f5780633a67a0f6146105745780633bde5ba8146105895780633f4ba83a1461059e57806342966c68146105b3578063429b62e5146105cb57806343e91384146105ec5780634a4fbeec146106045780634cae8471146106255780634ff7c3921461063a578063546756e61461064f5780635a2f0085146106645780635c975abb146106855780636216b6e31461069a57806366188463146106cb5780636cbb721f146106ef5780636d8c96f414610704578063704802751461072857806370a0823114610749578063715018a61461076a578063726fdac11461077f578063728b42931461079f57806372c174db146107b45780637bfea090146107c95780637f0aab32146107de5780638456cb59146107f357806388304abb146108085780638da5cb5b1461081d57806395d89b4114610832578063961325211461084757806398e502691461085c5780639f727c2714610871578063a576316414610886578063a8e6e77b146108a7578063a9059cbb146108c7578063af35c6c7146108eb578063bd84458914610808578063beff0b9514610808578063c006640a14610900578063c83da63514610915578063ccc8801914610939578063d73dd6231461094e578063daec812814610972578063dd62ed3e14610987578063f1bca30f146109ae578063f2fde38b146109ce578063fa9e4a191461050a575b600080fd5b3480156102da57600080fd5b506102ef600160a060020a03600435166109ef565b604080519115158252519081900360200190f35b34801561030f57600080fd5b50610318610a54565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561035257818101518382015260200161033a565b50505050905090810190601f16801561037f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561039957600080fd5b506102ef600160a060020a0360043516602435610ab4565b3480156103bd57600080fd5b50604080516020600480358082013583810280860185019096528085526102ef95369593946024949385019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a998901989297509082019550935083925085019084908082843750949750610bf99650505050505050565b34801561044b57600080fd5b506102ef600160a060020a0360043516610e51565b34801561046c57600080fd5b50610481600160a060020a0360043516611085565b005b34801561048f57600080fd5b50610498611186565b60408051918252519081900360200190f35b3480156104b657600080fd5b506102ef600160a060020a036004358116906024351660443561118c565b3480156104e057600080fd5b506102ef600160a060020a03600435166112d3565b34801561050157600080fd5b50610498611313565b34801561051657600080fd5b50610498611319565b34801561052b57600080fd5b50610498611328565b34801561054057600080fd5b50610549611338565b6040805160ff9092168252519081900360200190f35b34801561056b57600080fd5b5061049861133d565b34801561058057600080fd5b506102ef61134d565b34801561059557600080fd5b506102ef6114ca565b3480156105aa57600080fd5b506104816114d3565b3480156105bf57600080fd5b506104816004356115d7565b3480156105d757600080fd5b506102ef600160a060020a036004351661171a565b3480156105f857600080fd5b506102ef60043561172f565b34801561061057600080fd5b506102ef600160a060020a036004351661183c565b34801561063157600080fd5b506102ef611871565b34801561064657600080fd5b506102ef611a4e565b34801561065b57600080fd5b506102ef611c21565b34801561067057600080fd5b506102ef600160a060020a0360043516611cba565b34801561069157600080fd5b506102ef611db6565b3480156106a657600080fd5b506106af611dbf565b60408051600160a060020a039092168252519081900360200190f35b3480156106d757600080fd5b506102ef600160a060020a0360043516602435611dce565b3480156106fb57600080fd5b506102ef611f0a565b34801561071057600080fd5b506102ef602460048035828101929101359035611f13565b34801561073457600080fd5b506102ef600160a060020a0360043516612159565b34801561075557600080fd5b50610498600160a060020a0360043516612390565b34801561077657600080fd5b506104816123ab565b34801561078b57600080fd5b506102ef6004803560248101910135612419565b3480156107ab57600080fd5b506102ef612598565b3480156107c057600080fd5b506102ef612669565b3480156107d557600080fd5b506102ef612842565b3480156107ea57600080fd5b50610498612a1b565b3480156107ff57600080fd5b50610481612a2a565b34801561081457600080fd5b50610498612b07565b34801561082957600080fd5b506106af612b16565b34801561083e57600080fd5b50610318612b25565b34801561085357600080fd5b506102ef612b5c565b34801561086857600080fd5b506102ef612b6a565b34801561087d57600080fd5b50610481612d43565b34801561089257600080fd5b50610498600160a060020a0360043516612dc0565b3480156108b357600080fd5b506102ef6004803560248101910135612dd2565b3480156108d357600080fd5b506102ef600160a060020a0360043516602435612f33565b3480156108f757600080fd5b506102ef61306f565b34801561090c57600080fd5b506104986131f0565b34801561092157600080fd5b506102ef600160a060020a03600435166024356131ff565b34801561094557600080fd5b506102ef6134bf565b34801561095a57600080fd5b506102ef600160a060020a03600435166024356135c9565b34801561097e57600080fd5b506102ef613705565b34801561099357600080fd5b50610498600160a060020a03600435811690602435166138de565b3480156109ba57600080fd5b506102ef6004803560248101910135613909565b3480156109da57600080fd5b50610481600160a060020a0360043516613a66565b600454600090600160a060020a03163314610a42576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b610a4b82613a82565b5060015b919050565b606060405190810160405280602581526020017f43594252202d2043796265722053656375726974792045636f73797374656d2081526020017f546f6b656e00000000000000000000000000000000000000000000000000000081525081565b600033610ac08161183c565b15610b17576040805160e560020a62461bcd02815260206004820152603b60248201526000805160206146678339815191526044820152600080516020614647833981519152606482015290519081900360840190fd5b600654339060ff1680610b325750600654610100900460ff16155b15610b9857610b40816112d3565b1515610b98576040805160e560020a62461bcd02815260206004820152603860248201526000805160206145278339815191526044820152600080516020614507833981519152606482015290519081900360840190fd5b600160a060020a0385161515610be6576040805160e560020a62461bcd0281526020600482015260106024820152600080516020614587833981519152604482015290519081900360640190fd5b610bf08585613b00565b95945050505050565b6000806000610c07336112d3565b1515610c4b576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b8351855114610ca4576040805160e560020a62461bcd02815260206004820152601260248201527f496e76616c6964206f7065726174696f6e2e0000000000000000000000000000604482015290519081900360640190fd5b610cad84613b66565b33600090815260208190526040902054909250821115610d3d576040805160e560020a62461bcd02815260206004820152603e60248201527f596f7520646f6e277420686176652073756666696369656e742066756e64732060448201527f746f207472616e7366657220616d6f756e742074686174206c617267652e0000606482015290519081900360840190fd5b5060005b8451811015610d8b57610d828582815181101515610d5b57fe5b906020019060200201518583815181101515610d7357fe5b90602001906020020151612f33565b50600101610d41565b7f9c1a54ca5f41a3eaa7ccf54ca1d1b659718f8da05cb67ddefe376ddbe38511bd8585604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b83811015610df2578181015183820152602001610dda565b50505050905001838103825284818151815260200191508051906020019060200280838360005b83811015610e31578181015183820152602001610e19565b5050505090500194505050505060405180910390a1506001949350505050565b6000610e5c336112d3565b1515610ea0576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b600160a060020a0382161515610eee576040805160e560020a62461bcd0281526020600482015260106024820152600080516020614587833981519152604482015290519081900360640190fd5b600160a060020a03821660009081526005602052604090205460ff161515610f85576040805160e560020a62461bcd028152602060048201526024808201527f5468697320616464726573732069736e277420616e2061646d696e697374726160448201527f746f722e00000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600354600160a060020a0383811691161415611037576040805160e560020a62461bcd02815260206004820152604760248201527f546865206f776e65722063616e6e6f74206265206164646564206f722072656d60448201527f6f76656420746f206f722066726f6d207468652061646d696e6973747261746f60648201527f72206c6973742e00000000000000000000000000000000000000000000000000608482015290519081900360a40190fd5b600160a060020a038216600081815260056020526040808220805460ff19169055517fa3b62bc36326052d97ea62d63c3d60308ed4c3ea8ac079dd8499f1e9c4f80c0f9190a2506001919050565b600080611091336112d3565b15156110d5576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051849350600160a060020a038416916370a082319160248083019260209291908290030181600087803b15801561113957600080fd5b505af115801561114d573d6000803e3d6000fd5b505050506040513d602081101561116357600080fd5b50519050611181600160a060020a038316338363ffffffff613bad16565b505050565b60015490565b6000836111988161183c565b156111ef576040805160e560020a62461bcd02815260206004820152603b60248201526000805160206146678339815191526044820152600080516020614647833981519152606482015290519081900360840190fd5b600654859060ff168061120a5750600654610100900460ff16155b1561127057611218816112d3565b1515611270576040805160e560020a62461bcd02815260206004820152603860248201526000805160206145278339815191526044820152600080516020614507833981519152606482015290519081900360840190fd5b600160a060020a03851615156112be576040805160e560020a62461bcd0281526020600482015260106024820152600080516020614587833981519152604482015290519081900360640190fd5b6112c9868686613c60565b9695505050505050565b600354600090600160a060020a03838116911614156112f457506001610a4f565b50600160a060020a031660009081526005602052604090205460ff1690565b60095481565b6a295be96e6406697200000081565b6b01a5dcb365fc4166be00000081565b601281565b6b033b2e3c9fd0803ce800000081565b6000611358336112d3565b151561139c576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b60065460ff16156113f4576040805160e560020a62461bcd028152602060048201526024808201526000805160206145a7833981519152604482015260e160020a6339b2b21702606482015290519081900360840190fd5b600654610100900460ff16151561147b576040805160e560020a62461bcd02815260206004820152603c60248201527f496e76616c6964206f7065726174696f6e2e20546865207472616e736665722060448201527f737461746520697320616c726561647920726573747269637465642e00000000606482015290519081900360840190fd5b6006805461ff001916908190556040805161010090920460ff1615158252517fcbdf0fab2b7a1540009af97a79f3ea7944943c175155b588639cec284eebc8049181900360200190a150600190565b600a5460ff1681565b6114dc336112d3565b1515611520576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b60065460ff1615156115a2576040805160e560020a62461bcd02815260206004820152602160248201527f536f727279206275742074686520636f6e74726163742069732070617573656460448201527f2e00000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b6006805460ff191690556040517fa45f47fdea8a1efdd9029a5691c7f759c32b7c698632b563573e155625d1693390600090a1565b336115e18161183c565b15611638576040805160e560020a62461bcd02815260206004820152603b60248201526000805160206146678339815191526044820152600080516020614647833981519152606482015290519081900360840190fd5b600654339060ff16806116535750600654610100900460ff16155b156116b957611661816112d3565b15156116b9576040805160e560020a62461bcd02815260206004820152603860248201526000805160206145278339815191526044820152600080516020614507833981519152606482015290519081900360840190fd5b60065460ff1615611711576040805160e560020a62461bcd028152602060048201526024808201526000805160206145a7833981519152604482015260e160020a6339b2b21702606482015290519081900360840190fd5b61118183613dc3565b60056020526000908152604090205460ff1681565b600061173a336112d3565b151561177e576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b600954156117fc576040805160e560020a62461bcd02815260206004820152602160248201527f5468652049434f20656e6420646174652077617320616c72656164792073657460448201527f2e00000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b60098290556040805183815290517f8af2dc49ef865a055c56e19964fd4e43183a7143e12813a8246daef30a2b6e0f9181900360200190a1506001919050565b600160a060020a03811660009081526007602052604081205442811115611866576001915061186b565b600091505b50919050565b600061187c336112d3565b15156118c0576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b600a5460ff161515611932576040805160e560020a62461bcd02815260206004820152604e602482015260008051602061460783398151915260448201526000805160206144c78339815191526064820152600080516020614627833981519152608482015290519081900360a40190fd5b600954151561198d576040805160e560020a62461bcd02815260206004820152603f60248201526000805160206145e78339815191526044820152600080516020614567833981519152606482015290519081900360840190fd5b60095462eff1000142116119ff576040805160e560020a62461bcd028152602060048201526024810182905260008051602061454783398151915260448201527f20746f206d696e742074686520706172746e65727368697020746f6b656e732e606482015290519081900360840190fd5b60408051808201909152600c81527f706172746e6572736869707300000000000000000000000000000000000000006020820152611a4990336a295be96e64066972000000613dcd565b905090565b6000611a59336112d3565b1515611a9d576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b600a5460ff161515611b0f576040805160e560020a62461bcd02815260206004820152604e602482015260008051602061460783398151915260448201526000805160206144c78339815191526064820152600080516020614627833981519152608482015290519081900360a40190fd5b6009541515611b6a576040805160e560020a62461bcd02815260206004820152603f60248201526000805160206145e78339815191526044820152600080516020614567833981519152606482015290519081900360840190fd5b6009544211611bd7576040805160e560020a62461bcd02815260206004820152603e602482015260008051602061454783398151915260448201527f20746f206d696e74207468652070726f6d6f74696f6e20746f6b656e732e0000606482015290519081900360840190fd5b60408051808201909152600981527f70726f6d6f74696f6e00000000000000000000000000000000000000000000006020820152611a4990336a18d0bf423c03d8de000000613dcd565b6000611c2c336112d3565b1515611c70576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b60408051808201909152601381527f696e697469616c506172746e65727368697073000000000000000000000000006020820152611a4990336a295be96e64066972000000613dcd565b600354600090600160a060020a03163314611cd457600080fd5b600160a060020a0382161515611d5a576040805160e560020a62461bcd02815260206004820152602b60248201527f506c656173652070726f7669646520612076616c69642061646472657373206660448201527f6f7220747275737465652e000000000000000000000000000000000000000000606482015290519081900360840190fd5b6004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0384169081179091556040517f4632317bd23ea8e7eb1c7ae89f69d7b287bc1d1d47ca5d178f3078c84bc1f48190600090a2506001919050565b60065460ff1681565b600454600160a060020a031690565b600033611dda8161183c565b15611e31576040805160e560020a62461bcd02815260206004820152603b60248201526000805160206146678339815191526044820152600080516020614647833981519152606482015290519081900360840190fd5b600654339060ff1680611e4c5750600654610100900460ff16155b15611eb257611e5a816112d3565b1515611eb2576040805160e560020a62461bcd02815260206004820152603860248201526000805160206145278339815191526044820152600080516020614507833981519152606482015290519081900360840190fd5b600160a060020a0385161515611f00576040805160e560020a62461bcd0281526020600482015260106024820152600080516020614587833981519152604482015290519081900360640190fd5b610bf08585613ed7565b60085460ff1681565b6000806000611f21336112d3565b1515611f65576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b60085460ff16151561200d576040805160e560020a62461bcd02815260206004820152604860248201527f4163636573732069732064656e6965642e20546869732066656174757265207760448201527f617320616c72656164792064697361626c656420627920616e2061646d696e6960648201527f73747261746f722e000000000000000000000000000000000000000000000000608482015290519081900360a40190fd5b60008411612065576040805160e560020a62461bcd02815260206004820152601560248201527f496e76616c69642072656c6561736520646174652e0000000000000000000000604482015290519081900360640190fd5b600091505b60ff821685111561214d57858560ff841681811061208457fe5b90506020020135600160a060020a031690506000600160a060020a031681600160a060020a0316141580156120d25750600160a060020a03811660009081526005602052604090205460ff16155b80156120ec5750600354600160a060020a03828116911614155b1561214257600160a060020a038116600081815260076020908152604091829020879055815187815291517ff9626bca62c59d77fa45a204dc096874ee066a5c5e124aa9ce6c438dbdf7387a9281900390910190a25b60019091019061206a565b50600195945050505050565b6000612164336112d3565b15156121a8576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b600160a060020a03821615156121f6576040805160e560020a62461bcd0281526020600482015260106024820152600080516020614587833981519152604482015290519081900360640190fd5b600160a060020a03821660009081526005602052604090205460ff161561228d576040805160e560020a62461bcd02815260206004820152602960248201527f54686973206164647265737320697320616c726561647920616e2061646d696e60448201527f6973747261746f722e0000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600354600160a060020a038381169116141561233f576040805160e560020a62461bcd02815260206004820152604760248201527f546865206f776e65722063616e6e6f74206265206164646564206f722072656d60448201527f6f76656420746f206f722066726f6d207468652061646d696e6973747261746f60648201527f72206c6973742e00000000000000000000000000000000000000000000000000608482015290519081900360a40190fd5b600160a060020a038216600081815260056020526040808220805460ff19166001179055517f44d6d25963f097ad14f29f06854a01f575648a1ef82f30e562ccd3889717e3399190a2506001919050565b600160a060020a031660009081526020819052604090205490565b600354600160a060020a031633146123c257600080fd5b600354604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26003805473ffffffffffffffffffffffffffffffffffffffff19169055565b6000806000612427336112d3565b151561246b576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b60085460ff161515612513576040805160e560020a62461bcd02815260206004820152604860248201527f4163636573732069732064656e6965642e20546869732066656174757265207760448201527f617320616c72656164792064697361626c656420627920616e2061646d696e6960648201527f73747261746f722e000000000000000000000000000000000000000000000000608482015290519081900360a40190fd5b600091505b60ff821684111561258d57848460ff841681811061253257fe5b60209081029290920135600160a060020a03166000818152600790935260408084208490555190935083927f81ec08d3372506e176c49e626d8beb7e091712ef92908a130f4ccc6524fe2eec925090a2600190910190612518565b506001949350505050565b60006125a3336112d3565b15156125e7576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b600a5460ff1615612630576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b600a805460ff191660011790556040517f8735407ca1ae8b74dd5770f504b2e8150f9a70d8eebb2ead3961051c814bda6c90600090a190565b6000612674336112d3565b15156126b8576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b600a5460ff16151561272a576040805160e560020a62461bcd02815260206004820152604e602482015260008051602061460783398151915260448201526000805160206144c78339815191526064820152600080516020614627833981519152608482015290519081900360a40190fd5b6009541515612785576040805160e560020a62461bcd02815260206004820152603f60248201526000805160206145e78339815191526044820152600080516020614567833981519152606482015290519081900360840190fd5b6009546301e133800142116127f8576040805160e560020a62461bcd028152602060048201526039602482015260008051602061454783398151915260448201527f20746f206d696e742061647669736f727920746f6b656e732e00000000000000606482015290519081900360840190fd5b60408051808201909152600881527f61647669736f72730000000000000000000000000000000000000000000000006020820152611a4990336a31a17e847807b1bc000000613dcd565b600061284d336112d3565b1515612891576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b600a5460ff161515612903576040805160e560020a62461bcd02815260206004820152604e602482015260008051602061460783398151915260448201526000805160206144c78339815191526064820152600080516020614627833981519152608482015290519081900360a40190fd5b600954151561295e576040805160e560020a62461bcd02815260206004820152603f60248201526000805160206145e78339815191526044820152600080516020614567833981519152606482015290519081900360840190fd5b6009546301e133800142116129d1576040805160e560020a62461bcd028152602060048201526035602482015260008051602061454783398151915260448201527f20746f206d696e74207465616d20746f6b656e732e0000000000000000000000606482015290519081900360840190fd5b60408051808201909152600481527f7465616d000000000000000000000000000000000000000000000000000000006020820152611a4990336a52b7d2dcc80cd2e4000000613dcd565b6a31a17e847807b1bc00000081565b612a33336112d3565b1515612a77576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b60065460ff1615612acf576040805160e560020a62461bcd028152602060048201526024808201526000805160206145a7833981519152604482015260e160020a6339b2b21702606482015290519081900360840190fd5b6006805460ff191660011790556040517f9e87fac88ff661f02d44f95383c817fece4bce600a3dab7a54406878b965e75290600090a1565b6a52b7d2dcc80cd2e400000081565b600354600160a060020a031681565b60408051808201909152600481527f4359425200000000000000000000000000000000000000000000000000000000602082015281565b600654610100900460ff1681565b6000612b75336112d3565b1515612bb9576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b600a5460ff161515612c2b576040805160e560020a62461bcd02815260206004820152604e602482015260008051602061460783398151915260448201526000805160206144c78339815191526064820152600080516020614627833981519152608482015290519081900360a40190fd5b6009541515612c86576040805160e560020a62461bcd02815260206004820152603f60248201526000805160206145e78339815191526044820152600080516020614567833981519152606482015290519081900360840190fd5b6009546301e13380014211612cf9576040805160e560020a62461bcd02815260206004820152603c602482015260008051602061454783398151915260448201527f20746f206d696e7420746865207265736572766520746f6b656e732e00000000606482015290519081900360840190fd5b60408051808201909152600781527f72657365727665000000000000000000000000000000000000000000000000006020820152611a4990336a52b7d2dcc80cd2e4000000613dcd565b612d4c336112d3565b1515612d90576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b6040513390303180156108fc02916000818181858888f19350505050158015612dbd573d6000803e3d6000fd5b50565b60076020526000908152604090205481565b6000806000612de0336112d3565b1515612e24576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b600091505b60ff821684111561258d57848460ff8416818110612e4357fe5b90506020020135600160a060020a031690506000600160a060020a031681600160a060020a031614158015612e915750600160a060020a03811660009081526005602052604090205460ff16155b8015612eab5750600354600160a060020a03828116911614155b15612f2857600160a060020a0381166000908152600560205260409020805460ff19166001179055848460ff8416818110612ee257fe5b90506020020135600160a060020a0316600160a060020a03167f44d6d25963f097ad14f29f06854a01f575648a1ef82f30e562ccd3889717e33960405160405180910390a25b600190910190612e29565b600033612f3f8161183c565b15612f96576040805160e560020a62461bcd02815260206004820152603b60248201526000805160206146678339815191526044820152600080516020614647833981519152606482015290519081900360840190fd5b600654339060ff1680612fb15750600654610100900460ff16155b1561301757612fbf816112d3565b1515613017576040805160e560020a62461bcd02815260206004820152603860248201526000805160206145278339815191526044820152600080516020614507833981519152606482015290519081900360840190fd5b600160a060020a0385161515613065576040805160e560020a62461bcd0281526020600482015260106024820152600080516020614587833981519152604482015290519081900360640190fd5b610bf08585613fc6565b600061307a336112d3565b15156130be576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b60065460ff1615613116576040805160e560020a62461bcd028152602060048201526024808201526000805160206145a7833981519152604482015260e160020a6339b2b21702606482015290519081900360840190fd5b600654610100900460ff161561319c576040805160e560020a62461bcd02815260206004820152603c60248201527f496e76616c6964206f7065726174696f6e2e20546865207472616e736665722060448201527f7374617465206973206e6f206d6f726520726573747269637465642e00000000606482015290519081900360840190fd5b6006805461ff00191661010090811791829055604080519190920460ff161515815290517fcbdf0fab2b7a1540009af97a79f3ea7944943c175155b588639cec284eebc8049181900360200190a150600190565b6a18d0bf423c03d8de00000081565b600061320a336112d3565b151561324e576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b60085460ff1615156132f6576040805160e560020a62461bcd02815260206004820152604860248201527f4163636573732069732064656e6965642e20546869732066656174757265207760448201527f617320616c72656164792064697361626c656420627920616e2061646d696e6960648201527f73747261746f722e000000000000000000000000000000000000000000000000608482015290519081900360a40190fd5b600160a060020a0383161515613344576040805160e560020a62461bcd0281526020600482015260106024820152600080516020614587833981519152604482015290519081900360640190fd5b600160a060020a03831660009081526005602052604090205460ff16156133b5576040805160e560020a62461bcd02815260206004820152601b60248201527f43616e6e6f74206c6f636b2061646d696e6973747261746f72732e0000000000604482015290519081900360640190fd5b600354600160a060020a038481169116141561341b576040805160e560020a62461bcd02815260206004820152601660248201527f43616e6e6f74206c6f636b20746865206f776e65722e00000000000000000000604482015290519081900360640190fd5b600160a060020a038316600090815260076020526040812083905582111561348157604080518381529051600160a060020a038516917ff9626bca62c59d77fa45a204dc096874ee066a5c5e124aa9ce6c438dbdf7387a919081900360200190a26134b6565b604051600160a060020a038416907f81ec08d3372506e176c49e626d8beb7e091712ef92908a130f4ccc6524fe2eec90600090a25b50600192915050565b60006134ca336112d3565b151561350e576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b60085460ff161515613590576040805160e560020a62461bcd02815260206004820152602b60248201527f54686520746f6b656e206c6f636b206665617475726520697320616c7265616460448201527f792064697361626c65642e000000000000000000000000000000000000000000606482015290519081900360840190fd5b6008805460ff191690556040517f3d8bbfb713a983ff1ab8a4ef63d7bd63e4b8d1b0a0797d196f196e204c0e98a090600090a150600190565b6000336135d58161183c565b1561362c576040805160e560020a62461bcd02815260206004820152603b60248201526000805160206146678339815191526044820152600080516020614647833981519152606482015290519081900360840190fd5b600654339060ff16806136475750600654610100900460ff16155b156136ad57613655816112d3565b15156136ad576040805160e560020a62461bcd02815260206004820152603860248201526000805160206145278339815191526044820152600080516020614507833981519152606482015290519081900360840190fd5b600160a060020a03851615156136fb576040805160e560020a62461bcd0281526020600482015260106024820152600080516020614587833981519152604482015290519081900360640190fd5b610bf08585614093565b6000613710336112d3565b1515613754576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b600a5460ff1615156137c6576040805160e560020a62461bcd02815260206004820152604e602482015260008051602061460783398151915260448201526000805160206144c78339815191526064820152600080516020614627833981519152608482015290519081900360a40190fd5b6009541515613821576040805160e560020a62461bcd02815260206004820152603f60248201526000805160206145e78339815191526044820152600080516020614567833981519152606482015290519081900360840190fd5b6009546302d27600014211613894576040805160e560020a62461bcd028152602060048201526038602482015260008051602061454783398151915260448201527f20746f206d696e7420666f756e64657220746f6b656e732e0000000000000000606482015290519081900360840190fd5b60408051808201909152600881527f666f756e646572730000000000000000000000000000000000000000000000006020820152611a4990336a52b7d2dcc80cd2e4000000613dcd565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b6000806000613917336112d3565b151561395b576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b600091505b60ff821684111561258d57848460ff841681811061397a57fe5b90506020020135600160a060020a031690506000600160a060020a031681600160a060020a0316141580156139c75750600160a060020a03811660009081526005602052604090205460ff165b80156139e15750600354600160a060020a03828116911614155b15613a5b57600160a060020a0381166000908152600560205260409020805460ff19169055848460ff8416818110613a1557fe5b90506020020135600160a060020a0316600160a060020a03167fa3b62bc36326052d97ea62d63c3d60308ed4c3ea8ac079dd8499f1e9c4f80c0f60405160405180910390a25b600190910190613960565b600354600160a060020a03163314613a7d57600080fd5b612dbd815b600160a060020a0381161515613a9757600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b600080805b8351811015613ba657613b9c8482815181101515613b8557fe5b60209081029091010151839063ffffffff61412c16565b9150600101613b6b565b5092915050565b82600160a060020a031663a9059cbb83836040518363ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018083600160a060020a0316600160a060020a0316815260200182815260200192505050602060405180830381600087803b158015613c2957600080fd5b505af1158015613c3d573d6000803e3d6000fd5b505050506040513d6020811015613c5357600080fd5b5051151561118157600080fd5b600160a060020a038316600090815260208190526040812054821115613c8557600080fd5b600160a060020a0384166000908152600260209081526040808320338452909152902054821115613cb557600080fd5b600160a060020a0383161515613cca57600080fd5b600160a060020a038416600090815260208190526040902054613cf3908363ffffffff61413f16565b600160a060020a038086166000908152602081905260408082209390935590851681522054613d28908363ffffffff61412c16565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054613d6a908363ffffffff61413f16565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391926000805160206145c7833981519152929181900390910190a35060019392505050565b612dbd3382614151565b60065460009060ff1615613e28576040805160e560020a62461bcd028152602060048201526024808201526000805160206145a7833981519152604482015260e160020a6339b2b21702606482015290519081900360840190fd5b83600b6000613e3683614240565b815260208101919091526040016000205460ff1615613e9f576040805160e560020a62461bcd02815260206004820152601f60248201527f4475706c6963617465206d696e74696e67206b657920737570706c6965642e00604482015290519081900360640190fd5b6001600b6000613eae88614240565b81526020810191909152604001600020805460ff1916911515919091179055610bf0848461430a565b336000908152600260209081526040808320600160a060020a0386168452909152812054808310613f2b57336000908152600260209081526040808320600160a060020a0388168452909152812055613f60565b613f3b818463ffffffff61413f16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b33600090815260208190526040812054821115613fe257600080fd5b600160a060020a0383161515613ff757600080fd5b33600090815260208190526040902054614017908363ffffffff61413f16565b3360009081526020819052604080822092909255600160a060020a03851681522054614049908363ffffffff61412c16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233926000805160206145c78339815191529281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a03861684529091528120546140c7908363ffffffff61412c16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b8181018281101561413957fe5b92915050565b60008282111561414b57fe5b50900390565b600160a060020a03821660009081526020819052604090205481111561417657600080fd5b600160a060020a03821660009081526020819052604090205461419f908263ffffffff61413f16565b600160a060020a0383166000908152602081905260409020556001546141cb908263ffffffff61413f16565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516916000805160206145c78339815191529181900360200190a35050565b6000816040516020018082805190602001908083835b602083106142755780518252601f199092019160209182019101614256565b6001836020036101000a0380198251168184511680821785525050505050509050019150506040516020818303038152906040526040518082805190602001908083835b602083106142d85780518252601f1990920191602091820191016142b9565b5181516020939093036101000a6000190180199091169216919091179052604051920182900390912095945050505050565b6000600160a060020a038316151561435a576040805160e560020a62461bcd0281526020600482015260106024820152600080516020614587833981519152604482015290519081900360640190fd5b6001546b033b2e3c9fd0803ce80000009061437b908463ffffffff61412c16565b11156143f7576040805160e560020a62461bcd02815260206004820152603b60248201527f536f727279206275742074686520746f74616c20737570706c792063616e277460448201527f2065786365656420746865206d6178696d756d20737570706c792e0000000000606482015290519081900360840190fd5b600160a060020a038316600090815260208190526040902054614420908363ffffffff61412c16565b600160a060020a03841660009081526020819052604090205560015461444c908363ffffffff61412c16565b600155604080518381529051600160a060020a038516916000916000805160206145c78339815191529181900360200190a3604080518381529051600160a060020a038516917f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885919081900360200190a25060019291505056006d6520626563617573652074686520746172676574206861736e2774206265654163636573732069732064656e6965642e00000000000000000000000000000066657220737461746520697320726573747269637465642e00000000000000004f7065726174696f6e206e6f7420616c6c6f7765642e20546865207472616e734163636573732069732064656e6965642c206974277320746f6f206561726c7964617465206265666f7265206d696e74696e672074686520746f6b656e732e00496e76616c696420616464726573732e00000000000000000000000000000000536f727279206275742074686520636f6e74726163742069736e277420706175ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef596f75206e65656420746f2073706563696679207468652049434f20656e6420536f7272792c20796f752063616e2774206d696e7420617420746869732074696e2072656163686564207965742e00000000000000000000000000000000000075736520796f757220746f6b656e7320617265206c6f636b65642e0000000000546865206f7065726174696f6e207761732063616e63656c6c65642062656361a165627a7a7230582024746cf2156cd314b0a8d3f37453b6bcf8aab99411d7ecfcda507e2c84d3c7190029

Deployed Bytecode

0x6080604052600436106102c95763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166304a7b94c81146102ce57806306fdde0314610303578063095ea7b31461038d578063153a1f3e146103b15780631785f53c1461043f57806317ffc3201461046057806318160ddd1461048357806323b872dd146104aa57806324d7806c146104d45780632a62738b146104f55780632bcf25df1461050a5780632ff2e9dc1461051f578063313ce5671461053457806332cb6b0c1461055f5780633a67a0f6146105745780633bde5ba8146105895780633f4ba83a1461059e57806342966c68146105b3578063429b62e5146105cb57806343e91384146105ec5780634a4fbeec146106045780634cae8471146106255780634ff7c3921461063a578063546756e61461064f5780635a2f0085146106645780635c975abb146106855780636216b6e31461069a57806366188463146106cb5780636cbb721f146106ef5780636d8c96f414610704578063704802751461072857806370a0823114610749578063715018a61461076a578063726fdac11461077f578063728b42931461079f57806372c174db146107b45780637bfea090146107c95780637f0aab32146107de5780638456cb59146107f357806388304abb146108085780638da5cb5b1461081d57806395d89b4114610832578063961325211461084757806398e502691461085c5780639f727c2714610871578063a576316414610886578063a8e6e77b146108a7578063a9059cbb146108c7578063af35c6c7146108eb578063bd84458914610808578063beff0b9514610808578063c006640a14610900578063c83da63514610915578063ccc8801914610939578063d73dd6231461094e578063daec812814610972578063dd62ed3e14610987578063f1bca30f146109ae578063f2fde38b146109ce578063fa9e4a191461050a575b600080fd5b3480156102da57600080fd5b506102ef600160a060020a03600435166109ef565b604080519115158252519081900360200190f35b34801561030f57600080fd5b50610318610a54565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561035257818101518382015260200161033a565b50505050905090810190601f16801561037f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561039957600080fd5b506102ef600160a060020a0360043516602435610ab4565b3480156103bd57600080fd5b50604080516020600480358082013583810280860185019096528085526102ef95369593946024949385019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a998901989297509082019550935083925085019084908082843750949750610bf99650505050505050565b34801561044b57600080fd5b506102ef600160a060020a0360043516610e51565b34801561046c57600080fd5b50610481600160a060020a0360043516611085565b005b34801561048f57600080fd5b50610498611186565b60408051918252519081900360200190f35b3480156104b657600080fd5b506102ef600160a060020a036004358116906024351660443561118c565b3480156104e057600080fd5b506102ef600160a060020a03600435166112d3565b34801561050157600080fd5b50610498611313565b34801561051657600080fd5b50610498611319565b34801561052b57600080fd5b50610498611328565b34801561054057600080fd5b50610549611338565b6040805160ff9092168252519081900360200190f35b34801561056b57600080fd5b5061049861133d565b34801561058057600080fd5b506102ef61134d565b34801561059557600080fd5b506102ef6114ca565b3480156105aa57600080fd5b506104816114d3565b3480156105bf57600080fd5b506104816004356115d7565b3480156105d757600080fd5b506102ef600160a060020a036004351661171a565b3480156105f857600080fd5b506102ef60043561172f565b34801561061057600080fd5b506102ef600160a060020a036004351661183c565b34801561063157600080fd5b506102ef611871565b34801561064657600080fd5b506102ef611a4e565b34801561065b57600080fd5b506102ef611c21565b34801561067057600080fd5b506102ef600160a060020a0360043516611cba565b34801561069157600080fd5b506102ef611db6565b3480156106a657600080fd5b506106af611dbf565b60408051600160a060020a039092168252519081900360200190f35b3480156106d757600080fd5b506102ef600160a060020a0360043516602435611dce565b3480156106fb57600080fd5b506102ef611f0a565b34801561071057600080fd5b506102ef602460048035828101929101359035611f13565b34801561073457600080fd5b506102ef600160a060020a0360043516612159565b34801561075557600080fd5b50610498600160a060020a0360043516612390565b34801561077657600080fd5b506104816123ab565b34801561078b57600080fd5b506102ef6004803560248101910135612419565b3480156107ab57600080fd5b506102ef612598565b3480156107c057600080fd5b506102ef612669565b3480156107d557600080fd5b506102ef612842565b3480156107ea57600080fd5b50610498612a1b565b3480156107ff57600080fd5b50610481612a2a565b34801561081457600080fd5b50610498612b07565b34801561082957600080fd5b506106af612b16565b34801561083e57600080fd5b50610318612b25565b34801561085357600080fd5b506102ef612b5c565b34801561086857600080fd5b506102ef612b6a565b34801561087d57600080fd5b50610481612d43565b34801561089257600080fd5b50610498600160a060020a0360043516612dc0565b3480156108b357600080fd5b506102ef6004803560248101910135612dd2565b3480156108d357600080fd5b506102ef600160a060020a0360043516602435612f33565b3480156108f757600080fd5b506102ef61306f565b34801561090c57600080fd5b506104986131f0565b34801561092157600080fd5b506102ef600160a060020a03600435166024356131ff565b34801561094557600080fd5b506102ef6134bf565b34801561095a57600080fd5b506102ef600160a060020a03600435166024356135c9565b34801561097e57600080fd5b506102ef613705565b34801561099357600080fd5b50610498600160a060020a03600435811690602435166138de565b3480156109ba57600080fd5b506102ef6004803560248101910135613909565b3480156109da57600080fd5b50610481600160a060020a0360043516613a66565b600454600090600160a060020a03163314610a42576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b610a4b82613a82565b5060015b919050565b606060405190810160405280602581526020017f43594252202d2043796265722053656375726974792045636f73797374656d2081526020017f546f6b656e00000000000000000000000000000000000000000000000000000081525081565b600033610ac08161183c565b15610b17576040805160e560020a62461bcd02815260206004820152603b60248201526000805160206146678339815191526044820152600080516020614647833981519152606482015290519081900360840190fd5b600654339060ff1680610b325750600654610100900460ff16155b15610b9857610b40816112d3565b1515610b98576040805160e560020a62461bcd02815260206004820152603860248201526000805160206145278339815191526044820152600080516020614507833981519152606482015290519081900360840190fd5b600160a060020a0385161515610be6576040805160e560020a62461bcd0281526020600482015260106024820152600080516020614587833981519152604482015290519081900360640190fd5b610bf08585613b00565b95945050505050565b6000806000610c07336112d3565b1515610c4b576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b8351855114610ca4576040805160e560020a62461bcd02815260206004820152601260248201527f496e76616c6964206f7065726174696f6e2e0000000000000000000000000000604482015290519081900360640190fd5b610cad84613b66565b33600090815260208190526040902054909250821115610d3d576040805160e560020a62461bcd02815260206004820152603e60248201527f596f7520646f6e277420686176652073756666696369656e742066756e64732060448201527f746f207472616e7366657220616d6f756e742074686174206c617267652e0000606482015290519081900360840190fd5b5060005b8451811015610d8b57610d828582815181101515610d5b57fe5b906020019060200201518583815181101515610d7357fe5b90602001906020020151612f33565b50600101610d41565b7f9c1a54ca5f41a3eaa7ccf54ca1d1b659718f8da05cb67ddefe376ddbe38511bd8585604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b83811015610df2578181015183820152602001610dda565b50505050905001838103825284818151815260200191508051906020019060200280838360005b83811015610e31578181015183820152602001610e19565b5050505090500194505050505060405180910390a1506001949350505050565b6000610e5c336112d3565b1515610ea0576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b600160a060020a0382161515610eee576040805160e560020a62461bcd0281526020600482015260106024820152600080516020614587833981519152604482015290519081900360640190fd5b600160a060020a03821660009081526005602052604090205460ff161515610f85576040805160e560020a62461bcd028152602060048201526024808201527f5468697320616464726573732069736e277420616e2061646d696e697374726160448201527f746f722e00000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600354600160a060020a0383811691161415611037576040805160e560020a62461bcd02815260206004820152604760248201527f546865206f776e65722063616e6e6f74206265206164646564206f722072656d60448201527f6f76656420746f206f722066726f6d207468652061646d696e6973747261746f60648201527f72206c6973742e00000000000000000000000000000000000000000000000000608482015290519081900360a40190fd5b600160a060020a038216600081815260056020526040808220805460ff19169055517fa3b62bc36326052d97ea62d63c3d60308ed4c3ea8ac079dd8499f1e9c4f80c0f9190a2506001919050565b600080611091336112d3565b15156110d5576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051849350600160a060020a038416916370a082319160248083019260209291908290030181600087803b15801561113957600080fd5b505af115801561114d573d6000803e3d6000fd5b505050506040513d602081101561116357600080fd5b50519050611181600160a060020a038316338363ffffffff613bad16565b505050565b60015490565b6000836111988161183c565b156111ef576040805160e560020a62461bcd02815260206004820152603b60248201526000805160206146678339815191526044820152600080516020614647833981519152606482015290519081900360840190fd5b600654859060ff168061120a5750600654610100900460ff16155b1561127057611218816112d3565b1515611270576040805160e560020a62461bcd02815260206004820152603860248201526000805160206145278339815191526044820152600080516020614507833981519152606482015290519081900360840190fd5b600160a060020a03851615156112be576040805160e560020a62461bcd0281526020600482015260106024820152600080516020614587833981519152604482015290519081900360640190fd5b6112c9868686613c60565b9695505050505050565b600354600090600160a060020a03838116911614156112f457506001610a4f565b50600160a060020a031660009081526005602052604090205460ff1690565b60095481565b6a295be96e6406697200000081565b6b01a5dcb365fc4166be00000081565b601281565b6b033b2e3c9fd0803ce800000081565b6000611358336112d3565b151561139c576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b60065460ff16156113f4576040805160e560020a62461bcd028152602060048201526024808201526000805160206145a7833981519152604482015260e160020a6339b2b21702606482015290519081900360840190fd5b600654610100900460ff16151561147b576040805160e560020a62461bcd02815260206004820152603c60248201527f496e76616c6964206f7065726174696f6e2e20546865207472616e736665722060448201527f737461746520697320616c726561647920726573747269637465642e00000000606482015290519081900360840190fd5b6006805461ff001916908190556040805161010090920460ff1615158252517fcbdf0fab2b7a1540009af97a79f3ea7944943c175155b588639cec284eebc8049181900360200190a150600190565b600a5460ff1681565b6114dc336112d3565b1515611520576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b60065460ff1615156115a2576040805160e560020a62461bcd02815260206004820152602160248201527f536f727279206275742074686520636f6e74726163742069732070617573656460448201527f2e00000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b6006805460ff191690556040517fa45f47fdea8a1efdd9029a5691c7f759c32b7c698632b563573e155625d1693390600090a1565b336115e18161183c565b15611638576040805160e560020a62461bcd02815260206004820152603b60248201526000805160206146678339815191526044820152600080516020614647833981519152606482015290519081900360840190fd5b600654339060ff16806116535750600654610100900460ff16155b156116b957611661816112d3565b15156116b9576040805160e560020a62461bcd02815260206004820152603860248201526000805160206145278339815191526044820152600080516020614507833981519152606482015290519081900360840190fd5b60065460ff1615611711576040805160e560020a62461bcd028152602060048201526024808201526000805160206145a7833981519152604482015260e160020a6339b2b21702606482015290519081900360840190fd5b61118183613dc3565b60056020526000908152604090205460ff1681565b600061173a336112d3565b151561177e576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b600954156117fc576040805160e560020a62461bcd02815260206004820152602160248201527f5468652049434f20656e6420646174652077617320616c72656164792073657460448201527f2e00000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b60098290556040805183815290517f8af2dc49ef865a055c56e19964fd4e43183a7143e12813a8246daef30a2b6e0f9181900360200190a1506001919050565b600160a060020a03811660009081526007602052604081205442811115611866576001915061186b565b600091505b50919050565b600061187c336112d3565b15156118c0576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b600a5460ff161515611932576040805160e560020a62461bcd02815260206004820152604e602482015260008051602061460783398151915260448201526000805160206144c78339815191526064820152600080516020614627833981519152608482015290519081900360a40190fd5b600954151561198d576040805160e560020a62461bcd02815260206004820152603f60248201526000805160206145e78339815191526044820152600080516020614567833981519152606482015290519081900360840190fd5b60095462eff1000142116119ff576040805160e560020a62461bcd028152602060048201526024810182905260008051602061454783398151915260448201527f20746f206d696e742074686520706172746e65727368697020746f6b656e732e606482015290519081900360840190fd5b60408051808201909152600c81527f706172746e6572736869707300000000000000000000000000000000000000006020820152611a4990336a295be96e64066972000000613dcd565b905090565b6000611a59336112d3565b1515611a9d576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b600a5460ff161515611b0f576040805160e560020a62461bcd02815260206004820152604e602482015260008051602061460783398151915260448201526000805160206144c78339815191526064820152600080516020614627833981519152608482015290519081900360a40190fd5b6009541515611b6a576040805160e560020a62461bcd02815260206004820152603f60248201526000805160206145e78339815191526044820152600080516020614567833981519152606482015290519081900360840190fd5b6009544211611bd7576040805160e560020a62461bcd02815260206004820152603e602482015260008051602061454783398151915260448201527f20746f206d696e74207468652070726f6d6f74696f6e20746f6b656e732e0000606482015290519081900360840190fd5b60408051808201909152600981527f70726f6d6f74696f6e00000000000000000000000000000000000000000000006020820152611a4990336a18d0bf423c03d8de000000613dcd565b6000611c2c336112d3565b1515611c70576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b60408051808201909152601381527f696e697469616c506172746e65727368697073000000000000000000000000006020820152611a4990336a295be96e64066972000000613dcd565b600354600090600160a060020a03163314611cd457600080fd5b600160a060020a0382161515611d5a576040805160e560020a62461bcd02815260206004820152602b60248201527f506c656173652070726f7669646520612076616c69642061646472657373206660448201527f6f7220747275737465652e000000000000000000000000000000000000000000606482015290519081900360840190fd5b6004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0384169081179091556040517f4632317bd23ea8e7eb1c7ae89f69d7b287bc1d1d47ca5d178f3078c84bc1f48190600090a2506001919050565b60065460ff1681565b600454600160a060020a031690565b600033611dda8161183c565b15611e31576040805160e560020a62461bcd02815260206004820152603b60248201526000805160206146678339815191526044820152600080516020614647833981519152606482015290519081900360840190fd5b600654339060ff1680611e4c5750600654610100900460ff16155b15611eb257611e5a816112d3565b1515611eb2576040805160e560020a62461bcd02815260206004820152603860248201526000805160206145278339815191526044820152600080516020614507833981519152606482015290519081900360840190fd5b600160a060020a0385161515611f00576040805160e560020a62461bcd0281526020600482015260106024820152600080516020614587833981519152604482015290519081900360640190fd5b610bf08585613ed7565b60085460ff1681565b6000806000611f21336112d3565b1515611f65576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b60085460ff16151561200d576040805160e560020a62461bcd02815260206004820152604860248201527f4163636573732069732064656e6965642e20546869732066656174757265207760448201527f617320616c72656164792064697361626c656420627920616e2061646d696e6960648201527f73747261746f722e000000000000000000000000000000000000000000000000608482015290519081900360a40190fd5b60008411612065576040805160e560020a62461bcd02815260206004820152601560248201527f496e76616c69642072656c6561736520646174652e0000000000000000000000604482015290519081900360640190fd5b600091505b60ff821685111561214d57858560ff841681811061208457fe5b90506020020135600160a060020a031690506000600160a060020a031681600160a060020a0316141580156120d25750600160a060020a03811660009081526005602052604090205460ff16155b80156120ec5750600354600160a060020a03828116911614155b1561214257600160a060020a038116600081815260076020908152604091829020879055815187815291517ff9626bca62c59d77fa45a204dc096874ee066a5c5e124aa9ce6c438dbdf7387a9281900390910190a25b60019091019061206a565b50600195945050505050565b6000612164336112d3565b15156121a8576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b600160a060020a03821615156121f6576040805160e560020a62461bcd0281526020600482015260106024820152600080516020614587833981519152604482015290519081900360640190fd5b600160a060020a03821660009081526005602052604090205460ff161561228d576040805160e560020a62461bcd02815260206004820152602960248201527f54686973206164647265737320697320616c726561647920616e2061646d696e60448201527f6973747261746f722e0000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600354600160a060020a038381169116141561233f576040805160e560020a62461bcd02815260206004820152604760248201527f546865206f776e65722063616e6e6f74206265206164646564206f722072656d60448201527f6f76656420746f206f722066726f6d207468652061646d696e6973747261746f60648201527f72206c6973742e00000000000000000000000000000000000000000000000000608482015290519081900360a40190fd5b600160a060020a038216600081815260056020526040808220805460ff19166001179055517f44d6d25963f097ad14f29f06854a01f575648a1ef82f30e562ccd3889717e3399190a2506001919050565b600160a060020a031660009081526020819052604090205490565b600354600160a060020a031633146123c257600080fd5b600354604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26003805473ffffffffffffffffffffffffffffffffffffffff19169055565b6000806000612427336112d3565b151561246b576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b60085460ff161515612513576040805160e560020a62461bcd02815260206004820152604860248201527f4163636573732069732064656e6965642e20546869732066656174757265207760448201527f617320616c72656164792064697361626c656420627920616e2061646d696e6960648201527f73747261746f722e000000000000000000000000000000000000000000000000608482015290519081900360a40190fd5b600091505b60ff821684111561258d57848460ff841681811061253257fe5b60209081029290920135600160a060020a03166000818152600790935260408084208490555190935083927f81ec08d3372506e176c49e626d8beb7e091712ef92908a130f4ccc6524fe2eec925090a2600190910190612518565b506001949350505050565b60006125a3336112d3565b15156125e7576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b600a5460ff1615612630576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b600a805460ff191660011790556040517f8735407ca1ae8b74dd5770f504b2e8150f9a70d8eebb2ead3961051c814bda6c90600090a190565b6000612674336112d3565b15156126b8576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b600a5460ff16151561272a576040805160e560020a62461bcd02815260206004820152604e602482015260008051602061460783398151915260448201526000805160206144c78339815191526064820152600080516020614627833981519152608482015290519081900360a40190fd5b6009541515612785576040805160e560020a62461bcd02815260206004820152603f60248201526000805160206145e78339815191526044820152600080516020614567833981519152606482015290519081900360840190fd5b6009546301e133800142116127f8576040805160e560020a62461bcd028152602060048201526039602482015260008051602061454783398151915260448201527f20746f206d696e742061647669736f727920746f6b656e732e00000000000000606482015290519081900360840190fd5b60408051808201909152600881527f61647669736f72730000000000000000000000000000000000000000000000006020820152611a4990336a31a17e847807b1bc000000613dcd565b600061284d336112d3565b1515612891576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b600a5460ff161515612903576040805160e560020a62461bcd02815260206004820152604e602482015260008051602061460783398151915260448201526000805160206144c78339815191526064820152600080516020614627833981519152608482015290519081900360a40190fd5b600954151561295e576040805160e560020a62461bcd02815260206004820152603f60248201526000805160206145e78339815191526044820152600080516020614567833981519152606482015290519081900360840190fd5b6009546301e133800142116129d1576040805160e560020a62461bcd028152602060048201526035602482015260008051602061454783398151915260448201527f20746f206d696e74207465616d20746f6b656e732e0000000000000000000000606482015290519081900360840190fd5b60408051808201909152600481527f7465616d000000000000000000000000000000000000000000000000000000006020820152611a4990336a52b7d2dcc80cd2e4000000613dcd565b6a31a17e847807b1bc00000081565b612a33336112d3565b1515612a77576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b60065460ff1615612acf576040805160e560020a62461bcd028152602060048201526024808201526000805160206145a7833981519152604482015260e160020a6339b2b21702606482015290519081900360840190fd5b6006805460ff191660011790556040517f9e87fac88ff661f02d44f95383c817fece4bce600a3dab7a54406878b965e75290600090a1565b6a52b7d2dcc80cd2e400000081565b600354600160a060020a031681565b60408051808201909152600481527f4359425200000000000000000000000000000000000000000000000000000000602082015281565b600654610100900460ff1681565b6000612b75336112d3565b1515612bb9576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b600a5460ff161515612c2b576040805160e560020a62461bcd02815260206004820152604e602482015260008051602061460783398151915260448201526000805160206144c78339815191526064820152600080516020614627833981519152608482015290519081900360a40190fd5b6009541515612c86576040805160e560020a62461bcd02815260206004820152603f60248201526000805160206145e78339815191526044820152600080516020614567833981519152606482015290519081900360840190fd5b6009546301e13380014211612cf9576040805160e560020a62461bcd02815260206004820152603c602482015260008051602061454783398151915260448201527f20746f206d696e7420746865207265736572766520746f6b656e732e00000000606482015290519081900360840190fd5b60408051808201909152600781527f72657365727665000000000000000000000000000000000000000000000000006020820152611a4990336a52b7d2dcc80cd2e4000000613dcd565b612d4c336112d3565b1515612d90576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b6040513390303180156108fc02916000818181858888f19350505050158015612dbd573d6000803e3d6000fd5b50565b60076020526000908152604090205481565b6000806000612de0336112d3565b1515612e24576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b600091505b60ff821684111561258d57848460ff8416818110612e4357fe5b90506020020135600160a060020a031690506000600160a060020a031681600160a060020a031614158015612e915750600160a060020a03811660009081526005602052604090205460ff16155b8015612eab5750600354600160a060020a03828116911614155b15612f2857600160a060020a0381166000908152600560205260409020805460ff19166001179055848460ff8416818110612ee257fe5b90506020020135600160a060020a0316600160a060020a03167f44d6d25963f097ad14f29f06854a01f575648a1ef82f30e562ccd3889717e33960405160405180910390a25b600190910190612e29565b600033612f3f8161183c565b15612f96576040805160e560020a62461bcd02815260206004820152603b60248201526000805160206146678339815191526044820152600080516020614647833981519152606482015290519081900360840190fd5b600654339060ff1680612fb15750600654610100900460ff16155b1561301757612fbf816112d3565b1515613017576040805160e560020a62461bcd02815260206004820152603860248201526000805160206145278339815191526044820152600080516020614507833981519152606482015290519081900360840190fd5b600160a060020a0385161515613065576040805160e560020a62461bcd0281526020600482015260106024820152600080516020614587833981519152604482015290519081900360640190fd5b610bf08585613fc6565b600061307a336112d3565b15156130be576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b60065460ff1615613116576040805160e560020a62461bcd028152602060048201526024808201526000805160206145a7833981519152604482015260e160020a6339b2b21702606482015290519081900360840190fd5b600654610100900460ff161561319c576040805160e560020a62461bcd02815260206004820152603c60248201527f496e76616c6964206f7065726174696f6e2e20546865207472616e736665722060448201527f7374617465206973206e6f206d6f726520726573747269637465642e00000000606482015290519081900360840190fd5b6006805461ff00191661010090811791829055604080519190920460ff161515815290517fcbdf0fab2b7a1540009af97a79f3ea7944943c175155b588639cec284eebc8049181900360200190a150600190565b6a18d0bf423c03d8de00000081565b600061320a336112d3565b151561324e576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b60085460ff1615156132f6576040805160e560020a62461bcd02815260206004820152604860248201527f4163636573732069732064656e6965642e20546869732066656174757265207760448201527f617320616c72656164792064697361626c656420627920616e2061646d696e6960648201527f73747261746f722e000000000000000000000000000000000000000000000000608482015290519081900360a40190fd5b600160a060020a0383161515613344576040805160e560020a62461bcd0281526020600482015260106024820152600080516020614587833981519152604482015290519081900360640190fd5b600160a060020a03831660009081526005602052604090205460ff16156133b5576040805160e560020a62461bcd02815260206004820152601b60248201527f43616e6e6f74206c6f636b2061646d696e6973747261746f72732e0000000000604482015290519081900360640190fd5b600354600160a060020a038481169116141561341b576040805160e560020a62461bcd02815260206004820152601660248201527f43616e6e6f74206c6f636b20746865206f776e65722e00000000000000000000604482015290519081900360640190fd5b600160a060020a038316600090815260076020526040812083905582111561348157604080518381529051600160a060020a038516917ff9626bca62c59d77fa45a204dc096874ee066a5c5e124aa9ce6c438dbdf7387a919081900360200190a26134b6565b604051600160a060020a038416907f81ec08d3372506e176c49e626d8beb7e091712ef92908a130f4ccc6524fe2eec90600090a25b50600192915050565b60006134ca336112d3565b151561350e576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b60085460ff161515613590576040805160e560020a62461bcd02815260206004820152602b60248201527f54686520746f6b656e206c6f636b206665617475726520697320616c7265616460448201527f792064697361626c65642e000000000000000000000000000000000000000000606482015290519081900360840190fd5b6008805460ff191690556040517f3d8bbfb713a983ff1ab8a4ef63d7bd63e4b8d1b0a0797d196f196e204c0e98a090600090a150600190565b6000336135d58161183c565b1561362c576040805160e560020a62461bcd02815260206004820152603b60248201526000805160206146678339815191526044820152600080516020614647833981519152606482015290519081900360840190fd5b600654339060ff16806136475750600654610100900460ff16155b156136ad57613655816112d3565b15156136ad576040805160e560020a62461bcd02815260206004820152603860248201526000805160206145278339815191526044820152600080516020614507833981519152606482015290519081900360840190fd5b600160a060020a03851615156136fb576040805160e560020a62461bcd0281526020600482015260106024820152600080516020614587833981519152604482015290519081900360640190fd5b610bf08585614093565b6000613710336112d3565b1515613754576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b600a5460ff1615156137c6576040805160e560020a62461bcd02815260206004820152604e602482015260008051602061460783398151915260448201526000805160206144c78339815191526064820152600080516020614627833981519152608482015290519081900360a40190fd5b6009541515613821576040805160e560020a62461bcd02815260206004820152603f60248201526000805160206145e78339815191526044820152600080516020614567833981519152606482015290519081900360840190fd5b6009546302d27600014211613894576040805160e560020a62461bcd028152602060048201526038602482015260008051602061454783398151915260448201527f20746f206d696e7420666f756e64657220746f6b656e732e0000000000000000606482015290519081900360840190fd5b60408051808201909152600881527f666f756e646572730000000000000000000000000000000000000000000000006020820152611a4990336a52b7d2dcc80cd2e4000000613dcd565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b6000806000613917336112d3565b151561395b576040805160e560020a62461bcd02815260206004820152601160248201526000805160206144e7833981519152604482015290519081900360640190fd5b600091505b60ff821684111561258d57848460ff841681811061397a57fe5b90506020020135600160a060020a031690506000600160a060020a031681600160a060020a0316141580156139c75750600160a060020a03811660009081526005602052604090205460ff165b80156139e15750600354600160a060020a03828116911614155b15613a5b57600160a060020a0381166000908152600560205260409020805460ff19169055848460ff8416818110613a1557fe5b90506020020135600160a060020a0316600160a060020a03167fa3b62bc36326052d97ea62d63c3d60308ed4c3ea8ac079dd8499f1e9c4f80c0f60405160405180910390a25b600190910190613960565b600354600160a060020a03163314613a7d57600080fd5b612dbd815b600160a060020a0381161515613a9757600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b600080805b8351811015613ba657613b9c8482815181101515613b8557fe5b60209081029091010151839063ffffffff61412c16565b9150600101613b6b565b5092915050565b82600160a060020a031663a9059cbb83836040518363ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018083600160a060020a0316600160a060020a0316815260200182815260200192505050602060405180830381600087803b158015613c2957600080fd5b505af1158015613c3d573d6000803e3d6000fd5b505050506040513d6020811015613c5357600080fd5b5051151561118157600080fd5b600160a060020a038316600090815260208190526040812054821115613c8557600080fd5b600160a060020a0384166000908152600260209081526040808320338452909152902054821115613cb557600080fd5b600160a060020a0383161515613cca57600080fd5b600160a060020a038416600090815260208190526040902054613cf3908363ffffffff61413f16565b600160a060020a038086166000908152602081905260408082209390935590851681522054613d28908363ffffffff61412c16565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054613d6a908363ffffffff61413f16565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391926000805160206145c7833981519152929181900390910190a35060019392505050565b612dbd3382614151565b60065460009060ff1615613e28576040805160e560020a62461bcd028152602060048201526024808201526000805160206145a7833981519152604482015260e160020a6339b2b21702606482015290519081900360840190fd5b83600b6000613e3683614240565b815260208101919091526040016000205460ff1615613e9f576040805160e560020a62461bcd02815260206004820152601f60248201527f4475706c6963617465206d696e74696e67206b657920737570706c6965642e00604482015290519081900360640190fd5b6001600b6000613eae88614240565b81526020810191909152604001600020805460ff1916911515919091179055610bf0848461430a565b336000908152600260209081526040808320600160a060020a0386168452909152812054808310613f2b57336000908152600260209081526040808320600160a060020a0388168452909152812055613f60565b613f3b818463ffffffff61413f16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b33600090815260208190526040812054821115613fe257600080fd5b600160a060020a0383161515613ff757600080fd5b33600090815260208190526040902054614017908363ffffffff61413f16565b3360009081526020819052604080822092909255600160a060020a03851681522054614049908363ffffffff61412c16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233926000805160206145c78339815191529281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a03861684529091528120546140c7908363ffffffff61412c16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b8181018281101561413957fe5b92915050565b60008282111561414b57fe5b50900390565b600160a060020a03821660009081526020819052604090205481111561417657600080fd5b600160a060020a03821660009081526020819052604090205461419f908263ffffffff61413f16565b600160a060020a0383166000908152602081905260409020556001546141cb908263ffffffff61413f16565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516916000805160206145c78339815191529181900360200190a35050565b6000816040516020018082805190602001908083835b602083106142755780518252601f199092019160209182019101614256565b6001836020036101000a0380198251168184511680821785525050505050509050019150506040516020818303038152906040526040518082805190602001908083835b602083106142d85780518252601f1990920191602091820191016142b9565b5181516020939093036101000a6000190180199091169216919091179052604051920182900390912095945050505050565b6000600160a060020a038316151561435a576040805160e560020a62461bcd0281526020600482015260106024820152600080516020614587833981519152604482015290519081900360640190fd5b6001546b033b2e3c9fd0803ce80000009061437b908463ffffffff61412c16565b11156143f7576040805160e560020a62461bcd02815260206004820152603b60248201527f536f727279206275742074686520746f74616c20737570706c792063616e277460448201527f2065786365656420746865206d6178696d756d20737570706c792e0000000000606482015290519081900360840190fd5b600160a060020a038316600090815260208190526040902054614420908363ffffffff61412c16565b600160a060020a03841660009081526020819052604090205560015461444c908363ffffffff61412c16565b600155604080518381529051600160a060020a038516916000916000805160206145c78339815191529181900360200190a3604080518381529051600160a060020a038516917f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885919081900360200190a25060019291505056006d6520626563617573652074686520746172676574206861736e2774206265654163636573732069732064656e6965642e00000000000000000000000000000066657220737461746520697320726573747269637465642e00000000000000004f7065726174696f6e206e6f7420616c6c6f7765642e20546865207472616e734163636573732069732064656e6965642c206974277320746f6f206561726c7964617465206265666f7265206d696e74696e672074686520746f6b656e732e00496e76616c696420616464726573732e00000000000000000000000000000000536f727279206275742074686520636f6e74726163742069736e277420706175ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef596f75206e65656420746f2073706563696679207468652049434f20656e6420536f7272792c20796f752063616e2774206d696e7420617420746869732074696e2072656163686564207965742e00000000000000000000000000000000000075736520796f757220746f6b656e7320617265206c6f636b65642e0000000000546865206f7065726174696f6e207761732063616e63656c6c65642062656361a165627a7a7230582024746cf2156cd314b0a8d3f37453b6bcf8aab99411d7ecfcda507e2c84d3c7190029

Deployed Bytecode Sourcemap

38127:6726:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14306:143;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;14306:143:0;-1:-1:-1;;;;;14306:143:0;;;;;;;;;;;;;;;;;;;;;;;31666:69;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31666:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;31666:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33650:244;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;33650:244:0;-1:-1:-1;;;;;33650:244:0;;;;;;;26365:644;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;26365:644:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;26365:644:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26365:644:0;;;;-1:-1:-1;26365:644:0;-1:-1:-1;26365:644:0;;-1:-1:-1;26365:644:0;;;;;;;;;-1:-1:-1;26365:644:0;;-1:-1:-1;26365:644:0;;-1:-1:-1;;;;;;;26365:644:0;16548:448;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;16548:448:0;-1:-1:-1;;;;;16548:448:0;;;;;29341:189;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;29341:189:0;-1:-1:-1;;;;;29341:189:0;;;;;;;3403:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3403:85:0;;;;;;;;;;;;;;;;;;;;33099:251;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;33099:251:0;-1:-1:-1;;;;;33099:251:0;;;;;;;;;;;;17788:155;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;17788:155:0;-1:-1:-1;;;;;17788:155:0;;;;;38250:25;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38250:25:0;;;;38496:74;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38496:74:0;;;;31973:54;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31973:54:0;;;;31626:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31626:35:0;;;;;;;;;;;;;;;;;;;;;;;31924:44;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31924:44:0;;;;24981:249;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24981:249:0;;;;38799:33;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38799:33:0;;;;18694:98;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18694:98:0;;;;35222:145;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;35222:145:0;;;;;14871:38;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;14871:38:0;-1:-1:-1;;;;;14871:38:0;;;;;39759:221;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;39759:221:0;;;;;20598:229;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;20598:229:0;-1:-1:-1;;;;;20598:229:0;;;;;42416:479;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42416:479:0;;;;43672:455;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43672:455:0;;;;42080:177;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42080:177:0;;;;13861:248;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;13861:248:0;-1:-1:-1;;;;;13861:248:0;;;;;18136:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18136:26:0;;;;14623:81;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14623:81:0;;;;;;;;-1:-1:-1;;;;;14623:81:0;;;;;;;;;;;;;;34766:282;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;34766:282:0;-1:-1:-1;;;;;34766:282:0;;;;;;;20125:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20125:26:0;;;;21834:627;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;21834:627:0;;;;;;;;;;;;;;;;15319:405;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;15319:405:0;-1:-1:-1;;;;;15319:405:0;;;;;4187:101;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4187:101:0;-1:-1:-1;;;;;4187:101:0;;;;;12585:114;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12585:114:0;;;;22586:377;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;22586:377:0;;;;;;;;;;;;39385:168;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39385:168:0;;;;43061:460;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43061:460:0;;;;40818:444;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40818:444:0;;;;38654:62;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38654:62:0;;;;18527:96;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18527:96:0;;;;38424:62;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38424:62:0;;;;11790:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11790:20:0;;;;31740:38;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31740:38:0;;;;24106:28;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24106:28:0;;;;41456:457;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41456:457:0;;;;29109:98;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29109:98:0;;;;20020:46;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;20020:46:0;-1:-1:-1;;;;;20020:46:0;;;;;15873:519;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;15873:519:0;;;;;;;;;;;;32563:231;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;32563:231:0;-1:-1:-1;;;;;32563:231:0;;;;;;;24660:248;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24660:248:0;;;;38725:63;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38725:63:0;;;;21038:578;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;21038:578:0;-1:-1:-1;;;;;21038:578:0;;;;;;;23063:206;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23063:206:0;;;;34185:272;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;34185:272:0;-1:-1:-1;;;;;34185:272:0;;;;;;;40175:459;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40175:459:0;;;;7115:162;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7115:162:0;-1:-1:-1;;;;;7115:162:0;;;;;;;;;;17148:578;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;17148:578:0;;;;;;;;;;;;12867:105;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12867:105:0;-1:-1:-1;;;;;12867:105:0;;;;;14306:143;13624:8;;14377:4;;-1:-1:-1;;;;;13624:8:0;13610:10;:22;13602:52;;;;;-1:-1:-1;;;;;13602:52:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;13602:52:0;;;;;;;;;;;;;;;14390:35;14415:9;14390:24;:35::i;:::-;-1:-1:-1;14439:4:0;13661:1;14306:143;;;:::o;31666:69::-;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33650:244::-;33779:4;33729:10;20439:17;20448:7;20439:8;:17::i;:::-;20438:18;20430:90;;;;;-1:-1:-1;;;;;20430:90:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20430:90:0;;;;-1:-1:-1;;;;;;;;;;;20430:90:0;;;;;;;;;;;;;;;24377:6;;33756:10;;24377:6;;;:19;;-1:-1:-1;24388:8:0;;;;;;;24387:9;24377:19;24374:147;;;24411:14;24419:5;24411:7;:14::i;:::-;24410:15;24407:107;;;24438:66;;;-1:-1:-1;;;;;24438:66:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24438:66:0;;;;-1:-1:-1;;;;;;;;;;;24438:66:0;;;;;;;;;;;;;;24407:107;-1:-1:-1;;;;;33800:22:0;;;;33792:51;;;;;-1:-1:-1;;;;;33792:51:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;33792:51:0;;;;;;;;;;;;;;;33857:31;33871:8;33881:6;33857:13;:31::i;:::-;33850:38;33650:244;-1:-1:-1;;;;;33650:244:0:o;26365:644::-;26457:4;26648:23;26824:9;15118:19;15126:10;15118:7;:19::i;:::-;15110:49;;;;;;;-1:-1:-1;;;;;15110:49:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15110:49:0;;;;;;;;;;;;;;;26502:15;;26478:20;;:39;26470:70;;;;;-1:-1:-1;;;;;26470:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;26674:15;26680:8;26674:5;:15::i;:::-;26713:10;26704:8;:20;;;;;;;;;;;26648:41;;-1:-1:-1;26704:39:0;-1:-1:-1;26704:39:0;26696:114;;;;;-1:-1:-1;;;;;26696:114:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26836:1:0;26819:107;26843:13;:20;26839:1;:24;26819:107;;;26879:39;26888:13;26902:1;26888:16;;;;;;;;;;;;;;;;;;26906:8;26915:1;26906:11;;;;;;;;;;;;;;;;;;26879:8;:39::i;:::-;-1:-1:-1;26865:3:0;;26819:107;;;26939:46;26961:13;26976:8;26939:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;26939:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;26939:46:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;26999:4:0;;26365:644;-1:-1:-1;;;;26365:644:0:o;16548:448::-;16614:4;15118:19;15126:10;15118:7;:19::i;:::-;15110:49;;;;;;;-1:-1:-1;;;;;15110:49:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15110:49:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;16635:22:0;;;;16627:51;;;;;-1:-1:-1;;;;;16627:51:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16627:51:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;16693:16:0;;;;;;:6;:16;;;;;;;;16685:65;;;;;;;-1:-1:-1;;;;;16685:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16824:5;;-1:-1:-1;;;;;16812:17:0;;;16824:5;;16812:17;;16804:101;;;;;-1:-1:-1;;;;;16804:101:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16914:16:0;;16933:5;16914:16;;;:6;:16;;;;;;:24;;-1:-1:-1;;16914:24:0;;;16950:22;;;16933:5;16950:22;-1:-1:-1;16986:4:0;16548:448;;;:::o;29341:189::-;29405:11;29439:15;15118:19;15126:10;15118:7;:19::i;:::-;15110:49;;;;;;;-1:-1:-1;;;;;15110:49:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15110:49:0;;;;;;;;;;;;;;;29457:21;;;;;;29473:4;29457:21;;;;;;29425:6;;-1:-1:-1;;;;;;29457:15:0;;;;;:21;;;;;;;;;;;;;;-1:-1:-1;29457:15:0;:21;;;5:2:-1;;;;30:1;27;20:12;5:2;29457:21:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;29457:21:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29457:21:0;;-1:-1:-1;29485:39:0;-1:-1:-1;;;;;29485:18:0;;29504:10;29457:21;29485:39;:18;:39;:::i;:::-;29341:189;;;:::o;3403:85::-;3470:12;;3403:85;:::o;33099:251::-;33233:4;33193:5;20439:17;20448:7;20439:8;:17::i;:::-;20438:18;20430:90;;;;;-1:-1:-1;;;;;20430:90:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20430:90:0;;;;-1:-1:-1;;;;;;;;;;;20430:90:0;;;;;;;;;;;;;;;24377:6;;33215:5;;24377:6;;;:19;;-1:-1:-1;24388:8:0;;;;;;;24387:9;24377:19;24374:147;;;24411:14;24419:5;24411:7;:14::i;:::-;24410:15;24407:107;;;24438:66;;;-1:-1:-1;;;;;24438:66:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24438:66:0;;;;-1:-1:-1;;;;;;;;;;;24438:66:0;;;;;;;;;;;;;;24407:107;-1:-1:-1;;;;;33254:17:0;;;;33246:46;;;;;-1:-1:-1;;;;;33246:46:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;33246:46:0;;;;;;;;;;;;;;;33306:38;33325:5;33332:3;33337:6;33306:18;:38::i;:::-;33299:45;33099:251;-1:-1:-1;;;;;;33099:251:0:o;17788:155::-;17871:5;;17843:4;;-1:-1:-1;;;;;17859:17:0;;;17871:5;;17859:17;17856:50;;;-1:-1:-1;17894:4:0;17887:11;;17856:50;-1:-1:-1;;;;;;17921:16:0;;;;;:6;:16;;;;;;;;;17788:155::o;38250:25::-;;;;:::o;38496:74::-;38558:12;38496:74;:::o;31973:54::-;32014:13;31973:54;:::o;31626:35::-;31659:2;31626:35;:::o;31924:44::-;31899:20;31924:44;:::o;24981:249::-;25050:4;15118:19;15126:10;15118:7;:19::i;:::-;15110:49;;;;;;;-1:-1:-1;;;;;15110:49:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15110:49:0;;;;;;;;;;;;;;;18269:6;;;;18268:7;18260:56;;;;;-1:-1:-1;;;;;18260:56:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18260:56:0;;;;-1:-1:-1;;;;;18260:56:0;;;;;;;;;;;;;;;25071:8;;;;;;;25063:81;;;;;;;-1:-1:-1;;;;;25063:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25153:8;:16;;-1:-1:-1;;25153:16:0;;;;;25183:23;;;25153:16;25197:8;;;25153:16;25197:8;25183:23;;;;;;;;;;;;;;-1:-1:-1;25220:4:0;24981:249;:::o;38799:33::-;;;;;;:::o;18694:98::-;15118:19;15126:10;15118:7;:19::i;:::-;15110:49;;;;;;;-1:-1:-1;;;;;15110:49:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15110:49:0;;;;;;;;;;;;;;;18428:6;;;;18420:52;;;;;;;-1:-1:-1;;;;;18420:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18750:6;:14;;-1:-1:-1;;18750:14:0;;;18776:10;;;;18759:5;;18776:10;18694:98::o;35222:145::-;35280:10;20439:17;20448:7;20439:8;:17::i;:::-;20438:18;20430:90;;;;;-1:-1:-1;;;;;20430:90:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20430:90:0;;;;-1:-1:-1;;;;;;;;;;;20430:90:0;;;;;;;;;;;;;;;24377:6;;35307:10;;24377:6;;;:19;;-1:-1:-1;24388:8:0;;;;;;;24387:9;24377:19;24374:147;;;24411:14;24419:5;24411:7;:14::i;:::-;24410:15;24407:107;;;24438:66;;;-1:-1:-1;;;;;24438:66:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24438:66:0;;;;-1:-1:-1;;;;;;;;;;;24438:66:0;;;;;;;;;;;;;;24407:107;18269:6;;;;18268:7;18260:56;;;;;-1:-1:-1;;;;;18260:56:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18260:56:0;;;;-1:-1:-1;;;;;18260:56:0;;;;;;;;;;;;;;;35343:18;35354:6;35343:10;:18::i;14871:38::-;;;;;;;;;;;;;;;:::o;39759:221::-;39821:4;15118:19;15126:10;15118:7;:19::i;:::-;15110:49;;;;;;;-1:-1:-1;;;;;15110:49:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15110:49:0;;;;;;;;;;;;;;;39842:10;;:15;39834:61;;;;;-1:-1:-1;;;;;39834:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39904:10;:18;;;39936:20;;;;;;;;;;;;;;;;;-1:-1:-1;39970:4:0;39759:221;;;:::o;20598:229::-;-1:-1:-1;;;;;20689:20:0;;20653:4;20689:20;;;:11;:20;;;;;;20768:3;20753:18;;20750:51;;;20789:4;20782:11;;;;20750:51;20816:5;20809:12;;20598:229;;;;;:::o;42416:479::-;42480:4;15118:19;15126:10;15118:7;:19::i;:::-;15110:49;;;;;;;-1:-1:-1;;;;;15110:49:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15110:49:0;;;;;;;;;;;;;;;42501:13;;;;42493:104;;;;;;;-1:-1:-1;;;;;42493:104:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;42493:104:0;;;;-1:-1:-1;;;;;;;;;;;42493:104:0;;;;-1:-1:-1;;;;;;;;;;;42493:104:0;;;;;;;;;;;;;;;42612:10;;:15;;42604:91;;;;;-1:-1:-1;;;;;42604:91:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;42604:91:0;;;;-1:-1:-1;;;;;;;;;;;42604:91:0;;;;;;;;;;;;;;;42717:10;;42730:8;42717:21;42710:3;:29;42702:106;;;;;-1:-1:-1;;;;;42702:106:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;42702:106:0;;;;;;;;;;;;;;;;;;;;42824:65;;;;;;;;;;;;;;;;;;;42849:10;38633:12;42824:8;:65::i;:::-;42817:72;;42416:479;:::o;43672:455::-;43733:4;15118:19;15126:10;15118:7;:19::i;:::-;15110:49;;;;;;;-1:-1:-1;;;;;15110:49:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15110:49:0;;;;;;;;;;;;;;;43754:13;;;;43746:104;;;;;;;-1:-1:-1;;;;;43746:104:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43746:104:0;;;;-1:-1:-1;;;;;;;;;;;43746:104:0;;;;-1:-1:-1;;;;;;;;;;;43746:104:0;;;;;;;;;;;;;;;43865:10;;:15;;43857:91;;;;;-1:-1:-1;;;;;43857:91:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43857:91:0;;;;-1:-1:-1;;;;;;;;;;;43857:91:0;;;;;;;;;;;;;;;43969:10;;43963:3;:16;43955:91;;;;;-1:-1:-1;;;;;43955:91:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43955:91:0;;;;;;;;;;;;;;;;;;;;44062:59;;;;;;;;;;;;;;;;;;;44084:10;38776:12;44062:8;:59::i;42080:177::-;42151:4;15118:19;15126:10;15118:7;:19::i;:::-;15110:49;;;;;;;-1:-1:-1;;;;;15110:49:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15110:49:0;;;;;;;;;;;;;;;42171:80;;;;;;;;;;;;;;;;;;;42203:10;38558:12;42171:8;:80::i;13861:248::-;12293:5;;13929:4;;-1:-1:-1;;;;;12293:5:0;12279:10;:19;12271:28;;;;;;-1:-1:-1;;;;;13950:22:0;;;;13942:78;;;;;-1:-1:-1;;;;;13942:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14029:8;:19;;-1:-1:-1;;14029:19:0;-1:-1:-1;;;;;14029:19:0;;;;;;;;14060:25;;;;-1:-1:-1;;14060:25:0;-1:-1:-1;14099:4:0;13861:248;;;:::o;18136:26::-;;;;;;:::o;14623:81::-;14690:8;;-1:-1:-1;;;;;14690:8:0;14623:81;:::o;34766:282::-;34914:4;34864:10;20439:17;20448:7;20439:8;:17::i;:::-;20438:18;20430:90;;;;;-1:-1:-1;;;;;20430:90:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20430:90:0;;;;-1:-1:-1;;;;;;;;;;;20430:90:0;;;;;;;;;;;;;;;24377:6;;34891:10;;24377:6;;;:19;;-1:-1:-1;24388:8:0;;;;;;;24387:9;24377:19;24374:147;;;24411:14;24419:5;24411:7;:14::i;:::-;24410:15;24407:107;;;24438:66;;;-1:-1:-1;;;;;24438:66:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24438:66:0;;;;-1:-1:-1;;;;;;;;;;;24438:66:0;;;;;;;;;;;;;;24407:107;-1:-1:-1;;;;;34935:22:0;;;;34927:51;;;;;-1:-1:-1;;;;;34927:51:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;34927:51:0;;;;;;;;;;;;;;;34992:50;35015:8;35025:16;34992:22;:50::i;20125:26::-;;;;;;:::o;21834:627::-;21926:4;22101:7;22150:16;15118:19;15126:10;15118:7;:19::i;:::-;15110:49;;;;;;;-1:-1:-1;;;;;15110:49:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15110:49:0;;;;;;;;;;;;;;;21947:7;;;;21939:92;;;;;;;-1:-1:-1;;;;;21939:92:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22061:1;22046:16;;22038:50;;;;;-1:-1:-1;;;;;22038:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;22111:1;22101:11;;22097:339;22114:20;;;;-1:-1:-1;22097:339:0;;;22169:9;;:12;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22169:12:0;22150:31;;22275:1;-1:-1:-1;;;;;22255:22:0;:8;-1:-1:-1;;;;;22255:22:0;;;:43;;;;-1:-1:-1;;;;;;22282:16:0;;;;;;:6;:16;;;;;;;;22281:17;22255:43;:64;;;;-1:-1:-1;22314:5:0;;-1:-1:-1;;;;;22302:17:0;;;22314:5;;22302:17;;22255:64;22252:177;;;-1:-1:-1;;;;;22332:21:0;;;;;;:11;:21;;;;;;;;;:36;;;22384:35;;;;;;;;;;;;;;;;;22252:177;22136:3;;;;;22097:339;;;-1:-1:-1;22451:4:0;;21834:627;-1:-1:-1;;;;;21834:627:0:o;15319:405::-;15382:4;15118:19;15126:10;15118:7;:19::i;:::-;15110:49;;;;;;;-1:-1:-1;;;;;15110:49:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15110:49:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;15403:22:0;;;;15395:51;;;;;-1:-1:-1;;;;;15395:51:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15395:51:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;15462:16:0;;;;;;:6;:16;;;;;;;;15461:17;15453:71;;;;;-1:-1:-1;;;;;15453:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15553:5;;-1:-1:-1;;;;;15541:17:0;;;15553:5;;15541:17;;15533:101;;;;;-1:-1:-1;;;;;15533:101:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15643:16:0;;;;;;:6;:16;;;;;;:23;;-1:-1:-1;;15643:23:0;15662:4;15643:23;;;15680:20;;;15643:16;15680:20;-1:-1:-1;15714:4:0;15319:405;;;:::o;4187:101::-;-1:-1:-1;;;;;4266:16:0;4243:7;4266:16;;;;;;;;;;;;4187:101::o;12585:114::-;12293:5;;-1:-1:-1;;;;;12293:5:0;12279:10;:19;12271:28;;;;;;12662:5;;12643:25;;-1:-1:-1;;;;;12662:5:0;;;;12643:25;;12662:5;;12643:25;12675:5;:18;;-1:-1:-1;;12675:18:0;;;12585:114::o;22586:377::-;22659:4;22777:7;22826:16;15118:19;15126:10;15118:7;:19::i;:::-;15110:49;;;;;;;-1:-1:-1;;;;;15110:49:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15110:49:0;;;;;;;;;;;;;;;22680:7;;;;22672:92;;;;;;;-1:-1:-1;;;;;22672:92:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22787:1;22777:11;;22773:165;22790:20;;;;-1:-1:-1;22773:165:0;;;22845:9;;:12;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22845:12:0;22892:1;22868:21;;;:11;:21;;;;;;;:25;;;22907:23;22845:12;;-1:-1:-1;22845:12:0;;22907:23;;-1:-1:-1;22892:1:0;22907:23;22812:3;;;;;22773:165;;;-1:-1:-1;22953:4:0;;22586:377;-1:-1:-1;;;;22586:377:0:o;39385:168::-;39434:4;15118:19;15126:10;15118:7;:19::i;:::-;15110:49;;;;;;;-1:-1:-1;;;;;15110:49:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15110:49:0;;;;;;;;;;;;;;;39456:13;;;;39455:14;39447:44;;;;;-1:-1:-1;;;;;39447:44:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;39447:44:0;;;;;;;;;;;;;;;39498:13;:20;;-1:-1:-1;;39498:20:0;39514:4;39498:20;;;39532:15;;;;39498:13;;39532:15;39385:168;:::o;43061:460::-;43121:4;15118:19;15126:10;15118:7;:19::i;:::-;15110:49;;;;;;;-1:-1:-1;;;;;15110:49:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15110:49:0;;;;;;;;;;;;;;;43142:13;;;;43134:104;;;;;;;-1:-1:-1;;;;;43134:104:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43134:104:0;;;;-1:-1:-1;;;;;;;;;;;43134:104:0;;;;-1:-1:-1;;;;;;;;;;;43134:104:0;;;;;;;;;;;;;;;43253:10;;:15;;43245:91;;;;;-1:-1:-1;;;;;43245:91:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43245:91:0;;;;-1:-1:-1;;;;;;;;;;;43245:91:0;;;;;;;;;;;;;;;43358:10;;43371:8;43358:21;43351:3;:29;43343:99;;;;;-1:-1:-1;;;;;43343:99:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;43343:99:0;;;;;;;;;;;;;;;;;;;;43458:57;;;;;;;;;;;;;;;;;;;43479:10;38704:12;43458:8;:57::i;40818:444::-;40874:4;15118:19;15126:10;15118:7;:19::i;:::-;15110:49;;;;;;;-1:-1:-1;;;;;15110:49:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15110:49:0;;;;;;;;;;;;;;;40895:13;;;;40887:104;;;;;;;-1:-1:-1;;;;;40887:104:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;40887:104:0;;;;-1:-1:-1;;;;;;;;;;;40887:104:0;;;;-1:-1:-1;;;;;;;;;;;40887:104:0;;;;;;;;;;;;;;;41006:10;;:15;;40998:91;;;;;-1:-1:-1;;;;;40998:91:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;40998:91:0;;;;-1:-1:-1;;;;;;;;;;;40998:91:0;;;;;;;;;;;;;;;41111:10;;41124:8;41111:21;41104:3;:29;41096:95;;;;;-1:-1:-1;;;;;41096:95:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;41096:95:0;;;;;;;;;;;;;;;;;;;;41207:49;;;;;;;;;;;;;;;;;;;41224:10;38401:13;41207:8;:49::i;38654:62::-;38704:12;38654:62;:::o;18527:96::-;15118:19;15126:10;15118:7;:19::i;:::-;15110:49;;;;;;;-1:-1:-1;;;;;15110:49:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15110:49:0;;;;;;;;;;;;;;;18269:6;;;;18268:7;18260:56;;;;;-1:-1:-1;;;;;18260:56:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18260:56:0;;;;-1:-1:-1;;;;;18260:56:0;;;;;;;;;;;;;;;18584:6;:13;;-1:-1:-1;;18584:13:0;18593:4;18584:13;;;18609:8;;;;18584:6;;18609:8;18527:96::o;38424:62::-;38473:13;38424:62;:::o;11790:20::-;;;-1:-1:-1;;;;;11790:20:0;;:::o;31740:38::-;;;;;;;;;;;;;;;;;;;:::o;24106:28::-;;;;;;;;;:::o;41456:457::-;41512:4;15118:19;15126:10;15118:7;:19::i;:::-;15110:49;;;;;;;-1:-1:-1;;;;;15110:49:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15110:49:0;;;;;;;;;;;;;;;41533:13;;;;41525:104;;;;;;;-1:-1:-1;;;;;41525:104:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;41525:104:0;;;;-1:-1:-1;;;;;;;;;;;41525:104:0;;;;-1:-1:-1;;;;;;;;;;;41525:104:0;;;;;;;;;;;;;;;41644:10;;:15;;41636:91;;;;;-1:-1:-1;;;;;41636:91:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;41636:91:0;;;;-1:-1:-1;;;;;;;;;;;41636:91:0;;;;;;;;;;;;;;;41749:10;;41762:8;41749:21;41742:3;:29;41734:102;;;;;-1:-1:-1;;;;;41734:102:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;41734:102:0;;;;;;;;;;;;;;;;;;;;41852:55;;;;;;;;;;;;;;;;;;;41872:10;38473:13;41852:8;:55::i;29109:98::-;15118:19;15126:10;15118:7;:19::i;:::-;15110:49;;;;;;;-1:-1:-1;;;;;15110:49:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15110:49:0;;;;;;;;;;;;;;;29159:42;;:10;;29187:4;29179:21;29159:42;;;;;;;;;29179:21;29159:10;:42;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;29159:42:0;29109:98::o;20020:46::-;;;;;;;;;;;;;:::o;15873:519::-;15944:4;15961:7;16010:15;15118:19;15126:10;15118:7;:19::i;:::-;15110:49;;;;;;;-1:-1:-1;;;;;15110:49:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15110:49:0;;;;;;;;;;;;;;;15971:1;15961:11;;15957:410;15974:20;;;;-1:-1:-1;15957:410:0;;;16028:9;;:12;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16028:12:0;16010:30;;16231:1;-1:-1:-1;;;;;16212:21:0;:7;-1:-1:-1;;;;;16212:21:0;;;:41;;;;-1:-1:-1;;;;;;16238:15:0;;;;;;:6;:15;;;;;;;;16237:16;16212:41;:61;;;;-1:-1:-1;16268:5:0;;-1:-1:-1;;;;;16257:16:0;;;16268:5;;16257:16;;16212:61;16209:151;;;-1:-1:-1;;;;;16286:15:0;;;;;;:6;:15;;;;;:22;;-1:-1:-1;;16286:22:0;16304:4;16286:22;;;16337:9;;16286:22;16337:12;;;;;;;;;;;;;;;-1:-1:-1;;;;;16337:12:0;-1:-1:-1;;;;;16326:24:0;;;;;;;;;;;16209:151;15996:3;;;;;15957:410;;32563:231;32688:4;32638:10;20439:17;20448:7;20439:8;:17::i;:::-;20438:18;20430:90;;;;;-1:-1:-1;;;;;20430:90:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20430:90:0;;;;-1:-1:-1;;;;;;;;;;;20430:90:0;;;;;;;;;;;;;;;24377:6;;32665:10;;24377:6;;;:19;;-1:-1:-1;24388:8:0;;;;;;;24387:9;24377:19;24374:147;;;24411:14;24419:5;24411:7;:14::i;:::-;24410:15;24407:107;;;24438:66;;;-1:-1:-1;;;;;24438:66:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24438:66:0;;;;-1:-1:-1;;;;;;;;;;;24438:66:0;;;;;;;;;;;;;;24407:107;-1:-1:-1;;;;;32709:17:0;;;;32701:46;;;;;-1:-1:-1;;;;;32701:46:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;32701:46:0;;;;;;;;;;;;;;;32761:27;32776:3;32781:6;32761:14;:27::i;24660:248::-;24728:4;15118:19;15126:10;15118:7;:19::i;:::-;15110:49;;;;;;;-1:-1:-1;;;;;15110:49:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15110:49:0;;;;;;;;;;;;;;;18269:6;;;;18268:7;18260:56;;;;;-1:-1:-1;;;;;18260:56:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18260:56:0;;;;-1:-1:-1;;;;;18260:56:0;;;;;;;;;;;;;;;24750:8;;;;;;;24749:9;24741:82;;;;;-1:-1:-1;;;;;24741:82:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24832:8;:15;;-1:-1:-1;;24832:15:0;;;;;;;;;24861:23;;;24875:8;;;;24832:15;24875:8;24861:23;;;;;;;;;;;;;;;-1:-1:-1;24898:4:0;24660:248;:::o;38725:63::-;38776:12;38725:63;:::o;21038:578::-;21122:4;15118:19;15126:10;15118:7;:19::i;:::-;15110:49;;;;;;;-1:-1:-1;;;;;15110:49:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15110:49:0;;;;;;;;;;;;;;;21143:7;;;;21135:92;;;;;;;-1:-1:-1;;;;;21135:92:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21242:22:0;;;;21234:51;;;;;-1:-1:-1;;;;;21234:51:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21234:51:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;21301:16:0;;;;;;:6;:16;;;;;;;;21300:17;21292:57;;;;;-1:-1:-1;;;;;21292:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21376:5;;-1:-1:-1;;;;;21364:17:0;;;21376:5;;21364:17;;21356:52;;;;;-1:-1:-1;;;;;21356:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21417:21:0;;;;;;:11;:21;;;;;:36;;;21465:16;;21462:129;;;21497:35;;;;;;;;-1:-1:-1;;;;;21497:35:0;;;;;;;;;;;;;21462:129;;;21560:23;;-1:-1:-1;;;;;21560:23:0;;;;;;;;21462:129;-1:-1:-1;21606:4:0;21038:578;;;;:::o;23063:206::-;23116:4;15118:19;15126:10;15118:7;:19::i;:::-;15110:49;;;;;;;-1:-1:-1;;;;;15110:49:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15110:49:0;;;;;;;;;;;;;;;23137:7;;;;23129:63;;;;;;;-1:-1:-1;;;;;23129:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23201:7;:15;;-1:-1:-1;;23201:15:0;;;23228:17;;;;23211:5;;23228:17;-1:-1:-1;23259:4:0;23063:206;:::o;34185:272::-;34328:4;34278:10;20439:17;20448:7;20439:8;:17::i;:::-;20438:18;20430:90;;;;;-1:-1:-1;;;;;20430:90:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20430:90:0;;;;-1:-1:-1;;;;;;;;;;;20430:90:0;;;;;;;;;;;;;;;24377:6;;34305:10;;24377:6;;;:19;;-1:-1:-1;24388:8:0;;;;;;;24387:9;24377:19;24374:147;;;24411:14;24419:5;24411:7;:14::i;:::-;24410:15;24407:107;;;24438:66;;;-1:-1:-1;;;;;24438:66:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24438:66:0;;;;-1:-1:-1;;;;;;;;;;;24438:66:0;;;;;;;;;;;;;;24407:107;-1:-1:-1;;;;;34349:22:0;;;;34341:51;;;;;-1:-1:-1;;;;;34341:51:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;34341:51:0;;;;;;;;;;;;;;;34406:45;34429:8;34439:11;34406:22;:45::i;40175:459::-;40235:4;15118:19;15126:10;15118:7;:19::i;:::-;15110:49;;;;;;;-1:-1:-1;;;;;15110:49:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15110:49:0;;;;;;;;;;;;;;;40256:13;;;;40248:104;;;;;;;-1:-1:-1;;;;;40248:104:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;40248:104:0;;;;-1:-1:-1;;;;;;;;;;;40248:104:0;;;;-1:-1:-1;;;;;;;;;;;40248:104:0;;;;;;;;;;;;;;;40367:10;;:15;;40359:91;;;;;-1:-1:-1;;;;;40359:91:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;40359:91:0;;;;-1:-1:-1;;;;;;;;;;;40359:91:0;;;;;;;;;;;;;;;40472:10;;40485:8;40472:21;40465:3;:29;40457:98;;;;;-1:-1:-1;;;;;40457:98:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;40457:98:0;;;;;;;;;;;;;;;;;;;;40571:57;;;;;;;;;;;;;;;;;;;40592:10;38332:13;40571:8;:57::i;7115:162::-;-1:-1:-1;;;;;7246:15:0;;;7220:7;7246:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;7115:162::o;17148:578::-;17222:4;17239:7;17288:15;15118:19;15126:10;15118:7;:19::i;:::-;15110:49;;;;;;;-1:-1:-1;;;;;15110:49:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15110:49:0;;;;;;;;;;;;;;;17249:1;17239:11;;17235:466;17252:20;;;;-1:-1:-1;17235:466:0;;;17306:9;;:12;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17306:12:0;17288:30;;17563:1;-1:-1:-1;;;;;17544:21:0;:7;-1:-1:-1;;;;;17544:21:0;;;:40;;;;-1:-1:-1;;;;;;17569:15:0;;;;;;:6;:15;;;;;;;;17544:40;:60;;;;-1:-1:-1;17599:5:0;;-1:-1:-1;;;;;17588:16:0;;;17599:5;;17588:16;;17544:60;17541:153;;;-1:-1:-1;;;;;17617:15:0;;17635:5;17617:15;;;:6;:15;;;;;:23;;-1:-1:-1;;17617:23:0;;;17671:9;;17617:23;17671:12;;;;;;;;;;;;;;;-1:-1:-1;;;;;17671:12:0;-1:-1:-1;;;;;17658:26:0;;;;;;;;;;;17541:153;17274:3;;;;;17235:466;;12867:105;12293:5;;-1:-1:-1;;;;;12293:5:0;12279:10;:19;12271:28;;;;;;12937:29;12956:9;13113:175;-1:-1:-1;;;;;13184:23:0;;;;13176:32;;;;;;13241:5;;13220:38;;-1:-1:-1;;;;;13220:38:0;;;;13241:5;;13220:38;;13241:5;;13220:38;13265:5;:17;;-1:-1:-1;;13265:17:0;-1:-1:-1;;;;;13265:17:0;;;;;;;;;;13113:175::o;6596:192::-;6684:10;6663:4;6676:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6676:29:0;;;;;;;;;;;:38;;;6726;;;;;;;6663:4;;6676:29;;6684:10;;6726:38;;;;;;;;-1:-1:-1;6778:4:0;6596:192;;;;:::o;27135:214::-;27190:7;;;27232:91;27256:7;:14;27252:1;:18;27232:91;;;27294:21;27304:7;27312:1;27304:10;;;;;;;;;;;;;;;;;;;27294:5;;:21;:9;:21;:::i;:::-;27286:29;-1:-1:-1;27272:3:0;;27232:91;;;-1:-1:-1;27338:5:0;27135:214;-1:-1:-1;;27135:214:0:o;28240:157::-;28362:6;-1:-1:-1;;;;;28362:15:0;;28378:3;28383:6;28362:28;;;;;;;;;;;;;-1:-1:-1;;;;;28362:28:0;-1:-1:-1;;;;;28362:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28362:28:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;28362:28:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;28362:28:0;28354:37;;;;;;;5480:487;-1:-1:-1;;;;;5626:15:0;;5592:4;5626:15;;;;;;;;;;;5616:25;;;5608:34;;;;;;-1:-1:-1;;;;;5667:14:0;;;;;;:7;:14;;;;;;;;5682:10;5667:26;;;;;;;;5657:36;;;5649:45;;;;;;-1:-1:-1;;;;;5709:17:0;;;;5701:26;;;;;;-1:-1:-1;;;;;5754:15:0;;:8;:15;;;;;;;;;;;:27;;5774:6;5754:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;5736:15:0;;;:8;:15;;;;;;;;;;;:45;;;;5804:13;;;;;;;:25;;5822:6;5804:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;5788:13:0;;;:8;:13;;;;;;;;;;;:41;;;;5865:14;;;;;:7;:14;;;;;5880:10;5865:26;;;;;;;:38;;5896:6;5865:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;5836:14:0;;;;;;;:7;:14;;;;;;;;5851:10;5836:26;;;;;;;;:67;;;;5915:28;;;;;;;;;;;5836:14;;-1:-1:-1;;;;;;;;;;;5915:28:0;;;;;;;;;;-1:-1:-1;5957:4:0;5480:487;;;;;:::o;9291:75::-;9335:25;9341:10;9353:6;9335:5;:25::i;44645:205::-;18269:6;;44756:4;;18269:6;;18268:7;18260:56;;;;;-1:-1:-1;;;;;18260:56:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18260:56:0;;;;-1:-1:-1;;;;;18260:56:0;;;;;;;;;;;;;;;44742:4;39138:11;:30;39150:17;39162:4;39150:11;:17::i;:::-;39138:30;;;;;;;;;;;;;;;;39135:93;;;39179:41;;;-1:-1:-1;;;;;39179:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;39135:93;44802:4;44769:11;:30;44781:17;44793:4;44781:11;:17::i;:::-;44769:30;;;;;;;;;;;-1:-1:-1;44769:30:0;:37;;-1:-1:-1;;44769:37:0;;;;;;;;;;44820:24;44831:3;44836:7;44820:10;:24::i;8515:447::-;8669:10;8626:4;8661:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;8661:29:0;;;;;;;;;;8701:28;;;8697:169;;8748:10;8772:1;8740:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;8740:29:0;;;;;;;;;:33;8697:169;;;8828:30;:8;8841:16;8828:30;:12;:30;:::i;:::-;8804:10;8796:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;8796:29:0;;;;;;;;;:62;8697:169;8886:10;8908:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;8877:61:0;;8908:29;;;;;;;;;;;8877:61;;;;;;;;;8886:10;8877:61;;;;;;;;;;;-1:-1:-1;8952:4:0;;8515:447;-1:-1:-1;;;8515:447:0:o;3649:329::-;3752:10;3712:4;3743:20;;;;;;;;;;;3733:30;;;3725:39;;;;;;-1:-1:-1;;;;;3779:17:0;;;;3771:26;;;;;;3838:10;3829:8;:20;;;;;;;;;;;:32;;3854:6;3829:32;:24;:32;:::i;:::-;3815:10;3806:8;:20;;;;;;;;;;;:55;;;;-1:-1:-1;;;;;3884:13:0;;;;;;:25;;3902:6;3884:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;3868:13:0;;:8;:13;;;;;;;;;;;;:41;;;;3921:33;;;;;;;3868:13;;3930:10;;-1:-1:-1;;;;;;;;;;;3921:33:0;;;;;;;;;-1:-1:-1;3968:4:0;3649:329;;;;:::o;7740:307::-;7911:10;7846:4;7903:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7903:29:0;;;;;;;;;;:46;;7937:11;7903:46;:33;:46;:::i;:::-;7870:10;7862:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7862:29:0;;;;;;;;;;;;:88;;;7962:61;;;;;;7862:29;;7962:61;;;;;;;;;;;-1:-1:-1;8037:4:0;7740:307;;;;:::o;2947:132::-;3029:7;;;3050;;;;3043:15;;;;2947:132;;;;:::o;2761:119::-;2821:7;2844:8;;;;2837:16;;;;-1:-1:-1;2867:7:0;;;2761:119::o;9372:447::-;-1:-1:-1;;;;;9451:14:0;;:8;:14;;;;;;;;;;;9441:24;;;9433:33;;;;;;-1:-1:-1;;;;;9665:14:0;;:8;:14;;;;;;;;;;;:26;;9684:6;9665:26;:18;:26;:::i;:::-;-1:-1:-1;;;;;9648:14:0;;:8;:14;;;;;;;;;;:43;9713:12;;:24;;9730:6;9713:24;:16;:24;:::i;:::-;9698:12;:39;9749:18;;;;;;;;-1:-1:-1;;;;;9749:18:0;;;;;;;;;;;;;9779:34;;;;;;;;9802:1;;-1:-1:-1;;;;;9779:34:0;;;-1:-1:-1;;;;;;;;;;;9779:34:0;;;;;;;;9372:447;;:::o;44251:117::-;44306:7;44356:4;44339:22;;;;;;;;;;;;;;;36:153:-1;66:2;58:11;;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;44339:22:0;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;44339:22:0;;;44329:33;;;;;;;;;;;;;36:153:-1;66:2;58:11;;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;;;;365:33;;44329::0;;;;;;;;;;;;-1:-1:-1;;;;;44251:117:0:o;35722:437::-;35785:4;-1:-1:-1;;;;;35806:17:0;;;;35798:46;;;;;-1:-1:-1;;;;;35798:46:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;35798:46:0;;;;;;;;;;;;;;;35859:12;;31899:20;;35859:24;;35876:6;35859:24;:16;:24;:::i;:::-;:38;;35851:110;;;;;-1:-1:-1;;;;;35851:110:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35986:13:0;;:8;:13;;;;;;;;;;;:25;;36004:6;35986:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;35970:13:0;;:8;:13;;;;;;;;;;:41;36033:12;;:24;;36050:6;36033:24;:16;:24;:::i;:::-;36018:12;:39;36071:33;;;;;;;;-1:-1:-1;;;;;36071:33:0;;;36088:1;;-1:-1:-1;;;;;;;;;;;36071:33:0;;;;;;;;36116:17;;;;;;;;-1:-1:-1;;;;;36116:17:0;;;;;;;;;;;;;-1:-1:-1;36149:4:0;35722:437;;;;:::o

Swarm Source

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