ETH Price: $2,935.20 (-2.25%)
Gas: 5 Gwei

Token

TradingUsdt MiningToken (TUM)
 

Overview

Max Total Supply

2,000,000,000 TUM

Holders

89

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 7 Decimals)

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

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

Contract Source Code Verified (Exact Match)

Contract Name:
TradingUsdtMiningToken

Compiler Version
v0.5.8+commit.23d335f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-05-21
*/

// ----------------------------------------------------------------------------
// TradingUsdt MiningToken contract
// Symbol      : TUM
// Name        : TradingUsdt MiningToken
// Decimals    : 7
// ----------------------------------------------------------------------------

pragma solidity 0.5.8;

// File: node_modules\openzeppelin-solidity\contracts\token\ERC20\IERC20.sol

/**
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see `ERC20Detailed`.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a `Transfer` event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through `transferFrom`. This is
     * zero by default.
     *
     * This value changes when `approve` or `transferFrom` are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * > 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
     *
     * Emits an `Approval` event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a `Transfer` event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to `approve`. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

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

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

        return c;
    }

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

        return c;
    }

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

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

        return c;
    }

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

        return c;
    }

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

// File: node_modules\openzeppelin-solidity\contracts\token\ERC20\ERC20.sol

/**
 * @dev Implementation of the `IERC20` interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using `_mint`.
 * For a generic mechanism see `ERC20Mintable`.
 *
 * *For a detailed writeup see our guide [How to implement supply
 * mechanisms](https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226).*
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an `Approval` event is emitted on calls to `transferFrom`.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard `decreaseAllowance` and `increaseAllowance`
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See `IERC20.approve`.
 */
contract ERC20 is IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) internal _balances;

    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;

    /**
     * @dev See `IERC20.totalSupply`.
     */
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See `IERC20.balanceOf`.
     */
    function balanceOf(address account) public view returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See `IERC20.transfer`.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public returns (bool) {
        _transfer(msg.sender, recipient, amount);
        return true;
    }

    /**
     * @dev See `IERC20.allowance`.
     */
    function allowance(address owner, address spender) public view returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See `IERC20.approve`.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 value) public returns (bool) {
        _approve(msg.sender, spender, value);
        return true;
    }

    /**
     * @dev See `IERC20.transferFrom`.
     *
     * Emits an `Approval` event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of `ERC20`;
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `value`.
     * - the caller must have allowance for `sender`'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to `approve` that can be used as a mitigation for
     * problems described in `IERC20.approve`.
     *
     * Emits an `Approval` event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to `approve` that can be used as a mitigation for
     * problems described in `IERC20.approve`.
     *
     * Emits an `Approval` event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to `transfer`, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a `Transfer` event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _balances[sender] = _balances[sender].sub(amount);
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a `Transfer` event with `from` set to the zero address.
     *
     * Requirements
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: mint to the zero address");

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

     /**
     * @dev Destoys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a `Transfer` event with `to` set to the zero address.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 value) internal {
        require(account != address(0), "ERC20: burn from the zero address");

        _totalSupply = _totalSupply.sub(value);
        _balances[account] = _balances[account].sub(value);
        emit Transfer(account, address(0), value);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an `Approval` event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = value;
        emit Approval(owner, spender, value);
    }

    /**
     * @dev Destoys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See `_burn` and `_approve`.
     */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(account, msg.sender, _allowances[account][msg.sender].sub(amount));
    }
}


contract TradingUsdtMiningToken is ERC20 {
    string public constant name = "TradingUsdt MiningToken"; 
    string public constant symbol = "TUM"; 
    uint8 public constant decimals = 7; 
    uint256 public constant initialSupply = 2000000000 * (10 ** uint256(decimals));
    
    constructor() public {
        super._mint(msg.sender, initialSupply);
        owner = msg.sender;
    }

    //ownership
    address public owner;

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

    modifier onlyOwner() {
        require(msg.sender == owner, "Not 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), "Already owner");
        emit OwnershipTransferred(owner, _newOwner);
        owner = _newOwner;
    }

    //pausable
    event Pause();
    event Unpause();

    bool public paused = false;
    
    /**
    * @dev Modifier to make a function callable only when the contract is not paused.
    */
    modifier whenNotPaused() {
        require(!paused, "Paused by owner");
        _;
    }

    /**
    * @dev Modifier to make a function callable only when the contract is paused.
    */
    modifier whenPaused() {
        require(paused, "Not paused now");
        _;
    }

    /**
    * @dev called by the owner to pause, triggers stopped state
    */
    function pause() public onlyOwner whenNotPaused {
        paused = true;
        emit Pause();
    }

    /**
    * @dev called by the owner to unpause, returns to normal state
    */
    function unpause() public onlyOwner whenPaused {
        paused = false;
        emit Unpause();
    }

    //freezable
    event Frozen(address target);
    event Unfrozen(address target);

    mapping(address => bool) internal freezes;

    modifier whenNotFrozen() {
        require(!freezes[msg.sender], "Sender account is locked.");
        _;
    }

    function freeze(address _target) public onlyOwner {
        freezes[_target] = true;
        emit Frozen(_target);
    }

    function unfreeze(address _target) public onlyOwner {
        freezes[_target] = false;
        emit Unfrozen(_target);
    }

    function isFrozen(address _target) public view returns (bool) {
        return freezes[_target];
    }

    function transfer(
        address _to,
        uint256 _value
    )
      public
      whenNotFrozen
      whenNotPaused
      returns (bool)
    {
        releaseLock(msg.sender);
        return super.transfer(_to, _value);
    }

    function transferFrom(
        address _from,
        address _to,
        uint256 _value
    )
      public
      whenNotPaused
      returns (bool)
    {
        require(!freezes[_from], "From account is locked.");
        releaseLock(_from);
        return super.transferFrom(_from, _to, _value);
    }

    //mintable
    event Mint(address indexed to, uint256 amount);

    function mint(
        address _to,
        uint256 _amount
    )
      public
      onlyOwner
      returns (bool)
    {
        super._mint(_to, _amount);
        emit Mint(_to, _amount);
        return true;
    }

    //burnable
    event Burn(address indexed burner, uint256 value);

    function burn(address _who, uint256 _value) public onlyOwner {
        require(_value <= super.balanceOf(_who), "Balance is too small.");

        _burn(_who, _value);
        emit Burn(_who, _value);
    }

    //lockable
    struct LockInfo {
        uint256 releaseTime;
        uint256 balance;
    }
    mapping(address => LockInfo[]) internal lockInfo;

    event Lock(address indexed holder, uint256 value, uint256 releaseTime);
    event Unlock(address indexed holder, uint256 value);

    function balanceOf(address _holder) public view returns (uint256 balance) {
        uint256 lockedBalance = 0;
        for(uint256 i = 0; i < lockInfo[_holder].length ; i++ ) {
            lockedBalance = lockedBalance.add(lockInfo[_holder][i].balance);
        }
        return super.balanceOf(_holder).add(lockedBalance);
    }

    function releaseLock(address _holder) internal {

        for(uint256 i = 0; i < lockInfo[_holder].length ; i++ ) {
            if (lockInfo[_holder][i].releaseTime <= now) {
                _balances[_holder] = _balances[_holder].add(lockInfo[_holder][i].balance);
                emit Unlock(_holder, lockInfo[_holder][i].balance);
                lockInfo[_holder][i].balance = 0;

                if (i != lockInfo[_holder].length - 1) {
                    lockInfo[_holder][i] = lockInfo[_holder][lockInfo[_holder].length - 1];
                    i--;
                }
                lockInfo[_holder].length--;

            }
        }
    }
    function lockCount(address _holder) public view returns (uint256) {
        return lockInfo[_holder].length;
    }
    function lockState(address _holder, uint256 _idx) public view returns (uint256, uint256) {
        return (lockInfo[_holder][_idx].releaseTime, lockInfo[_holder][_idx].balance);
    }

    function lock(address _holder, uint256 _amount, uint256 _releaseTime) public onlyOwner {
        require(super.balanceOf(_holder) >= _amount, "Balance is too small.");
        _balances[_holder] = _balances[_holder].sub(_amount);
        lockInfo[_holder].push(
            LockInfo(_releaseTime, _amount)
        );
        emit Lock(_holder, _amount, _releaseTime);
    }

    function lockAfter(address _holder, uint256 _amount, uint256 _afterTime) public onlyOwner {
        require(super.balanceOf(_holder) >= _amount, "Balance is too small.");
        _balances[_holder] = _balances[_holder].sub(_amount);
        lockInfo[_holder].push(
            LockInfo(now + _afterTime, _amount)
        );
        emit Lock(_holder, _amount, now + _afterTime);
    }

    function unlock(address _holder, uint256 i) public onlyOwner {
        require(i < lockInfo[_holder].length, "No lock information.");

        _balances[_holder] = _balances[_holder].add(lockInfo[_holder][i].balance);
        emit Unlock(_holder, lockInfo[_holder][i].balance);
        lockInfo[_holder][i].balance = 0;

        if (i != lockInfo[_holder].length - 1) {
            lockInfo[_holder][i] = lockInfo[_holder][lockInfo[_holder].length - 1];
        }
        lockInfo[_holder].length--;
    }

    function transferWithLock(address _to, uint256 _value, uint256 _releaseTime) public onlyOwner returns (bool) {
        require(_to != address(0), "wrong address");
        require(_value <= super.balanceOf(owner), "Not enough balance");

        _balances[owner] = _balances[owner].sub(_value);
        lockInfo[_to].push(
            LockInfo(_releaseTime, _value)
        );
        emit Transfer(owner, _to, _value);
        emit Lock(_to, _value, _releaseTime);

        return true;
    }

    function transferWithLockAfter(address _to, uint256 _value, uint256 _afterTime) public onlyOwner returns (bool) {
        require(_to != address(0), "wrong address");
        require(_value <= super.balanceOf(owner), "Not enough balance");

        _balances[owner] = _balances[owner].sub(_value);
        lockInfo[_to].push(
            LockInfo(now + _afterTime, _value)
        );
        emit Transfer(owner, _to, _value);
        emit Lock(_to, _value, now + _afterTime);

        return true;
    }

    function currentTime() public view returns (uint256) {
        return now;
    }

    function afterTime(uint256 _value) public view returns (uint256) {
        return now + _value;
    }

    //airdrop
    mapping (address => uint256) public airDropHistory;
    event AirDrop(address _receiver, uint256 _amount);

    function dropToken(address[] memory receivers, uint256[] memory values) onlyOwner public {
    require(receivers.length != 0);
    require(receivers.length == values.length);

    for (uint256 i = 0; i < receivers.length; i++) {
      address receiver = receivers[i];
      uint256 amount = values[i];

      transfer(receiver, amount);
      airDropHistory[receiver] += amount;

      emit AirDrop(receiver, amount);
    }
  }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[{"name":"_value","type":"uint256"}],"name":"afterTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":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":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"initialSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_target","type":"address"}],"name":"unfreeze","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_holder","type":"address"},{"name":"_idx","type":"uint256"}],"name":"lockState","outputs":[{"name":"","type":"uint256"},{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_holder","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_holder","type":"address"},{"name":"i","type":"uint256"}],"name":"unlock","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_holder","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_afterTime","type":"uint256"}],"name":"lockAfter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_target","type":"address"}],"name":"freeze","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_afterTime","type":"uint256"}],"name":"transferWithLockAfter","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_who","type":"address"},{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","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":"receivers","type":"address[]"},{"name":"values","type":"uint256[]"}],"name":"dropToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"airDropHistory","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"currentTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_releaseTime","type":"uint256"}],"name":"transferWithLock","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_holder","type":"address"}],"name":"lockCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_holder","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_releaseTime","type":"uint256"}],"name":"lock","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_target","type":"address"}],"name":"isFrozen","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"target","type":"address"}],"name":"Frozen","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"target","type":"address"}],"name":"Unfrozen","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":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"holder","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"releaseTime","type":"uint256"}],"name":"Lock","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"holder","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Unlock","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_receiver","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"AirDrop","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"},{"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"}]

608060405260038054600160a01b60ff02191690553480156200002157600080fd5b50620000413366470de4df82000062000059602090811b6200208117901c565b600380546001600160a01b03191633179055620001f0565b6001600160a01b038216620000cf57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620000eb816002546200017460201b620020241790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200011e9183906200202462000174821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600082820183811015620001e957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b61260780620002006000396000f3fe608060405234801561001057600080fd5b50600436106102065760003560e01c80638a57af6b1161011a578063c77828d0116100ad578063de6baccb1161007c578063de6baccb1461074f578063df03458614610781578063e2ab691d146107a7578063e5839836146107d9578063f2fde38b146107ff57610206565b8063c77828d0146105cc578063ccd28a4c146106f3578063d18e81b314610719578063dd62ed3e1461072157610206565b806395d89b41116100e957806395d89b41146105405780639dc29fac14610548578063a457c2d714610574578063a9059cbb146105a057610206565b80638a57af6b146104925780638d1fdf2f146104c45780638da5cb5b146104ea578063927a4a7b1461050e57610206565b80633f4ba83a1161019d5780635c975abb1161016c5780635c975abb1461042857806370a0823114610430578063715018a6146104565780637eee288d1461045e5780638456cb591461048a57610206565b80633f4ba83a1461038757806340c10f191461039157806345c8b1a6146103bd57806346cf1bb5146103e357610206565b806323b872dd116101d957806323b872dd146102ff578063313ce56714610335578063378dc3dc14610353578063395093511461035b57610206565b806304859ceb1461020b57806306fdde031461023a578063095ea7b3146102b757806318160ddd146102f7575b600080fd5b6102286004803603602081101561022157600080fd5b5035610825565b60408051918252519081900360200190f35b61024261082a565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561027c578181015183820152602001610264565b50505050905090810190601f1680156102a95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102e3600480360360408110156102cd57600080fd5b506001600160a01b038135169060200135610863565b604080519115158252519081900360200190f35b610228610879565b6102e36004803603606081101561031557600080fd5b506001600160a01b03813581169160208101359091169060400135610880565b61033d610967565b6040805160ff9092168252519081900360200190f35b61022861096c565b6102e36004803603604081101561037157600080fd5b506001600160a01b038135169060200135610977565b61038f6109b8565b005b6102e3600480360360408110156103a757600080fd5b506001600160a01b038135169060200135610aa5565b61038f600480360360208110156103d357600080fd5b50356001600160a01b0316610b4b565b61040f600480360360408110156103f957600080fd5b506001600160a01b038135169060200135610bf4565b6040805192835260208301919091528051918290030190f35b6102e3610c6d565b6102286004803603602081101561044657600080fd5b50356001600160a01b0316610c7d565b61038f610d17565b61038f6004803603604081101561047457600080fd5b506001600160a01b038135169060200135610db2565b61038f611060565b61038f600480360360608110156104a857600080fd5b506001600160a01b038135169060208101359060400135611149565b61038f600480360360208110156104da57600080fd5b50356001600160a01b03166112a8565b6104f2611354565b604080516001600160a01b039092168252519081900360200190f35b6102e36004803603606081101561052457600080fd5b506001600160a01b038135169060208101359060400135611363565b61024261155c565b61038f6004803603604081101561055e57600080fd5b506001600160a01b03813516906020013561157e565b6102e36004803603604081101561058a57600080fd5b506001600160a01b038135169060200135611677565b6102e3600480360360408110156105b657600080fd5b506001600160a01b0381351690602001356116b3565b61038f600480360360408110156105e257600080fd5b8101906020810181356401000000008111156105fd57600080fd5b82018360208201111561060f57600080fd5b8035906020019184602083028401116401000000008311171561063157600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929594936020810193503591505064010000000081111561068157600080fd5b82018360208201111561069357600080fd5b803590602001918460208302840111640100000000831117156106b557600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611785945050505050565b6102286004803603602081101561070957600080fd5b50356001600160a01b0316611898565b6102286118aa565b6102286004803603604081101561073757600080fd5b506001600160a01b03813581169160200135166118ae565b6102e36004803603606081101561076557600080fd5b506001600160a01b0381351690602081013590604001356118d9565b6102286004803603602081101561079757600080fd5b50356001600160a01b0316611acf565b61038f600480360360608110156107bd57600080fd5b506001600160a01b038135169060208101359060400135611aea565b6102e3600480360360208110156107ef57600080fd5b50356001600160a01b0316611c42565b61038f6004803603602081101561081557600080fd5b50356001600160a01b0316611c60565b420190565b6040518060400160405280601781526020017f54726164696e6755736474204d696e696e67546f6b656e00000000000000000081525081565b6000610870338484611cbd565b50600192915050565b6002545b90565b600354600090600160a01b900460ff16156108da5760408051600160e51b62461bcd02815260206004820152600f6024820152600160891b6e2830bab9b2b210313c9037bbb732b902604482015290519081900360640190fd5b6001600160a01b03841660009081526004602052604090205460ff161561094b5760408051600160e51b62461bcd02815260206004820152601760248201527f46726f6d206163636f756e74206973206c6f636b65642e000000000000000000604482015290519081900360640190fd5b61095484611daf565b61095f848484611fd2565b949350505050565b600781565b66470de4df82000081565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916108709185906109b3908663ffffffff61202416565b611cbd565b6003546001600160a01b03163314610a095760408051600160e51b62461bcd0281526020600482015260096024820152600160b91b682737ba1037bbb732b902604482015290519081900360640190fd5b600354600160a01b900460ff16610a6a5760408051600160e51b62461bcd02815260206004820152600e60248201527f4e6f7420706175736564206e6f77000000000000000000000000000000000000604482015290519081900360640190fd5b60038054600160a01b60ff02191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b6003546000906001600160a01b03163314610af95760408051600160e51b62461bcd0281526020600482015260096024820152600160b91b682737ba1037bbb732b902604482015290519081900360640190fd5b610b038383612081565b6040805183815290516001600160a01b038516917f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885919081900360200190a250600192915050565b6003546001600160a01b03163314610b9c5760408051600160e51b62461bcd0281526020600482015260096024820152600160b91b682737ba1037bbb732b902604482015290519081900360640190fd5b6001600160a01b038116600081815260046020908152604091829020805460ff19169055815192835290517f4feb53e305297ab8fb8f3420c95ea04737addc254a7270d8fc4605d2b9c61dba9281900390910190a150565b6001600160a01b0382166000908152600560205260408120805482919084908110610c1b57fe5b600091825260208083206002909202909101546001600160a01b038716835260059091526040909120805485908110610c5057fe5b906000526020600020906002020160010154915091509250929050565b600354600160a01b900460ff1681565b600080805b6001600160a01b038416600090815260056020526040902054811015610cf6576001600160a01b03841660009081526005602052604090208054610cec919083908110610ccb57fe5b9060005260206000209060020201600101548361202490919063ffffffff16565b9150600101610c82565b50610d1081610d0485612162565b9063ffffffff61202416565b9392505050565b6003546001600160a01b03163314610d685760408051600160e51b62461bcd0281526020600482015260096024820152600160b91b682737ba1037bbb732b902604482015290519081900360640190fd5b6003546040516001600160a01b03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a2600380546001600160a01b0319169055565b6003546001600160a01b03163314610e035760408051600160e51b62461bcd0281526020600482015260096024820152600160b91b682737ba1037bbb732b902604482015290519081900360640190fd5b6001600160a01b0382166000908152600560205260409020548110610e725760408051600160e51b62461bcd02815260206004820152601460248201527f4e6f206c6f636b20696e666f726d6174696f6e2e000000000000000000000000604482015290519081900360640190fd5b6001600160a01b03821660009081526005602052604090208054610ed4919083908110610e9b57fe5b60009182526020808320600160029093020191909101546001600160a01b0386168352908290526040909120549063ffffffff61202416565b6001600160a01b03831660008181526020818152604080832094909455600590529190912080547f6381d9813cabeb57471b5a7e05078e64845ccdb563146a6911d536f24ce960f1919084908110610f2857fe5b9060005260206000209060020201600101546040518082815260200191505060405180910390a26001600160a01b0382166000908152600560205260408120805483908110610f7357fe5b60009182526020808320600160029093020191909101929092556001600160a01b038416815260059091526040902054600019018114611032576001600160a01b038216600090815260056020526040902080546000198101908110610fd557fe5b906000526020600020906002020160056000846001600160a01b03166001600160a01b03168152602001908152602001600020828154811061101357fe5b6000918252602090912082546002909202019081556001918201549101555b6001600160a01b038216600090815260056020526040902080549061105b9060001983016124a4565b505050565b6003546001600160a01b031633146110b15760408051600160e51b62461bcd0281526020600482015260096024820152600160b91b682737ba1037bbb732b902604482015290519081900360640190fd5b600354600160a01b900460ff16156111085760408051600160e51b62461bcd02815260206004820152600f6024820152600160891b6e2830bab9b2b210313c9037bbb732b902604482015290519081900360640190fd5b60038054600160a01b60ff021916600160a01b1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b6003546001600160a01b0316331461119a5760408051600160e51b62461bcd0281526020600482015260096024820152600160b91b682737ba1037bbb732b902604482015290519081900360640190fd5b816111a484612162565b10156111f55760408051600160e51b62461bcd0281526020600482015260156024820152600160591b742130b630b731b29034b9903a37b79039b6b0b6361702604482015290519081900360640190fd5b6001600160a01b03831660009081526020819052604090205461121e908363ffffffff61217d16565b6001600160a01b0384166000818152602081815260408083209490945560058152838220845180860186524287018082528184018981528354600181810186559487529585902092516002909602909201948555905193909101929092558351868152908101919091528251919260008051602061257383398151915292918290030190a2505050565b6003546001600160a01b031633146112f95760408051600160e51b62461bcd0281526020600482015260096024820152600160b91b682737ba1037bbb732b902604482015290519081900360640190fd5b6001600160a01b038116600081815260046020908152604091829020805460ff19166001179055815192835290517f8a5c4736a33c7b7f29a2c34ea9ff9608afc5718d56f6fd6dcbd2d3711a1a49139281900390910190a150565b6003546001600160a01b031681565b6003546000906001600160a01b031633146113b75760408051600160e51b62461bcd0281526020600482015260096024820152600160b91b682737ba1037bbb732b902604482015290519081900360640190fd5b6001600160a01b0384166114085760408051600160e51b62461bcd02815260206004820152600d6024820152600160981b6c77726f6e67206164647265737302604482015290519081900360640190fd5b60035461141d906001600160a01b0316612162565b83111561146c5760408051600160e51b62461bcd0281526020600482015260126024820152600160701b714e6f7420656e6f7567682062616c616e636502604482015290519081900360640190fd5b6003546001600160a01b0316600090815260208190526040902054611497908463ffffffff61217d16565b600380546001600160a01b03908116600090815260208181526040808320959095558883168083526005825285832086518088018852428a0181528084018b81528254600181810185559387529585902091516002909602909101948555519301929092559254845188815294519194921692600080516020612532833981519152928290030190a360408051848152428401602082015281516001600160a01b03871692600080516020612573833981519152928290030190a25060019392505050565b604051806040016040528060038152602001600160e81b6254554d0281525081565b6003546001600160a01b031633146115cf5760408051600160e51b62461bcd0281526020600482015260096024820152600160b91b682737ba1037bbb732b902604482015290519081900360640190fd5b6115d882612162565b81111561162a5760408051600160e51b62461bcd0281526020600482015260156024820152600160591b742130b630b731b29034b9903a37b79039b6b0b6361702604482015290519081900360640190fd5b61163482826121dd565b6040805182815290516001600160a01b038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916108709185906109b3908663ffffffff61217d16565b3360009081526004602052604081205460ff161561171b5760408051600160e51b62461bcd02815260206004820152601960248201527f53656e646572206163636f756e74206973206c6f636b65642e00000000000000604482015290519081900360640190fd5b600354600160a01b900460ff16156117725760408051600160e51b62461bcd02815260206004820152600f6024820152600160891b6e2830bab9b2b210313c9037bbb732b902604482015290519081900360640190fd5b61177b33611daf565b610d1083836122a7565b6003546001600160a01b031633146117d65760408051600160e51b62461bcd0281526020600482015260096024820152600160b91b682737ba1037bbb732b902604482015290519081900360640190fd5b81516117e157600080fd5b80518251146117ef57600080fd5b60005b825181101561105b57600083828151811061180957fe5b60200260200101519050600083838151811061182157fe5b6020026020010151905061183582826116b3565b506001600160a01b0382166000818152600660209081526040918290208054850190558151928352820183905280517f2a2f3a6f457f222229acc6b14376a5d3f4344fae935675150a096e2f1056bd989281900390910190a150506001016117f2565b60066020526000908152604090205481565b4290565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6003546000906001600160a01b0316331461192d5760408051600160e51b62461bcd0281526020600482015260096024820152600160b91b682737ba1037bbb732b902604482015290519081900360640190fd5b6001600160a01b03841661197e5760408051600160e51b62461bcd02815260206004820152600d6024820152600160981b6c77726f6e67206164647265737302604482015290519081900360640190fd5b600354611993906001600160a01b0316612162565b8311156119e25760408051600160e51b62461bcd0281526020600482015260126024820152600160701b714e6f7420656e6f7567682062616c616e636502604482015290519081900360640190fd5b6003546001600160a01b0316600090815260208190526040902054611a0d908463ffffffff61217d16565b600380546001600160a01b039081166000908152602081815260408083209590955588831680835260058252858320865180880188528981528084018b81528254600181810185559387529585902091516002909602909101948555519301929092559254845188815294519194921692600080516020612532833981519152928290030190a3604080518481526020810184905281516001600160a01b03871692600080516020612573833981519152928290030190a25060019392505050565b6001600160a01b031660009081526005602052604090205490565b6003546001600160a01b03163314611b3b5760408051600160e51b62461bcd0281526020600482015260096024820152600160b91b682737ba1037bbb732b902604482015290519081900360640190fd5b81611b4584612162565b1015611b965760408051600160e51b62461bcd0281526020600482015260156024820152600160591b742130b630b731b29034b9903a37b79039b6b0b6361702604482015290519081900360640190fd5b6001600160a01b038316600090815260208190526040902054611bbf908363ffffffff61217d16565b6001600160a01b03841660008181526020818152604080832094909455600581528382208451808601865286815280830188815282546001818101855593865294849020915160029095029091019384555192019190915582518581529081018490528251919260008051602061257383398151915292918290030190a2505050565b6001600160a01b031660009081526004602052604090205460ff1690565b6003546001600160a01b03163314611cb15760408051600160e51b62461bcd0281526020600482015260096024820152600160b91b682737ba1037bbb732b902604482015290519081900360640190fd5b611cba816122b4565b50565b6001600160a01b038316611d0557604051600160e51b62461bcd0281526004018080602001828103825260248152602001806125b86024913960400191505060405180910390fd5b6001600160a01b038216611d4d57604051600160e51b62461bcd0281526004018080602001828103825260228152602001806125106022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60005b6001600160a01b038216600090815260056020526040902054811015611fce576001600160a01b0382166000908152600560205260409020805442919083908110611df957fe5b90600052602060002090600202016000015411611fc6576001600160a01b03821660009081526005602052604090208054611e39919083908110610e9b57fe5b6001600160a01b03831660008181526020818152604080832094909455600590529190912080547f6381d9813cabeb57471b5a7e05078e64845ccdb563146a6911d536f24ce960f1919084908110611e8d57fe5b9060005260206000209060020201600101546040518082815260200191505060405180910390a26001600160a01b0382166000908152600560205260408120805483908110611ed857fe5b60009182526020808320600160029093020191909101929092556001600160a01b038416815260059091526040902054600019018114611f9b576001600160a01b038216600090815260056020526040902080546000198101908110611f3a57fe5b906000526020600020906002020160056000846001600160a01b03166001600160a01b031681526020019081526020016000208281548110611f7857fe5b600091825260209091208254600290920201908155600191820154910155600019015b6001600160a01b0382166000908152600560205260409020805490611fc49060001983016124a4565b505b600101611db2565b5050565b6000611fdf84848461236e565b6001600160a01b03841660009081526001602090815260408083203380855292529091205461201a9186916109b3908663ffffffff61217d16565b5060019392505050565b600082820183811015610d105760408051600160e51b62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b0382166120df5760408051600160e51b62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6002546120f2908263ffffffff61202416565b6002556001600160a01b03821660009081526020819052604090205461211e908263ffffffff61202416565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391926000805160206125328339815191529281900390910190a35050565b6001600160a01b031660009081526020819052604090205490565b6000828211156121d75760408051600160e51b62461bcd02815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6001600160a01b03821661222557604051600160e51b62461bcd0281526004018080602001828103825260218152602001806125526021913960400191505060405180910390fd5b600254612238908263ffffffff61217d16565b6002556001600160a01b038216600090815260208190526040902054612264908263ffffffff61217d16565b6001600160a01b03831660008181526020818152604080832094909455835185815293519193600080516020612532833981519152929081900390910190a35050565b600061087033848461236e565b6001600160a01b0381166123125760408051600160e51b62461bcd02815260206004820152600d60248201527f416c7265616479206f776e657200000000000000000000000000000000000000604482015290519081900360640190fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166123b657604051600160e51b62461bcd0281526004018080602001828103825260258152602001806125936025913960400191505060405180910390fd5b6001600160a01b0382166123fe57604051600160e51b62461bcd0281526004018080602001828103825260238152602001806124ed6023913960400191505060405180910390fd5b6001600160a01b038316600090815260208190526040902054612427908263ffffffff61217d16565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461245c908263ffffffff61202416565b6001600160a01b0380841660008181526020818152604091829020949094558051858152905191939287169260008051602061253283398151915292918290030190a3505050565b81548183558181111561105b5760008381526020902061105b9161087d9160029182028101918502015b808211156124e857600080825560018201556002016124ce565b509056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a206275726e2066726f6d20746865207a65726f206164647265737349eaf4942f1237055eb4cfa5f31c9dfe50d5b4ade01e021f7de8be2fbbde557b45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a165627a7a72305820cacc6e1d540ffed6b0aae3804071f36e4451d9b0c1f0695395d468c8e10ef5630029

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102065760003560e01c80638a57af6b1161011a578063c77828d0116100ad578063de6baccb1161007c578063de6baccb1461074f578063df03458614610781578063e2ab691d146107a7578063e5839836146107d9578063f2fde38b146107ff57610206565b8063c77828d0146105cc578063ccd28a4c146106f3578063d18e81b314610719578063dd62ed3e1461072157610206565b806395d89b41116100e957806395d89b41146105405780639dc29fac14610548578063a457c2d714610574578063a9059cbb146105a057610206565b80638a57af6b146104925780638d1fdf2f146104c45780638da5cb5b146104ea578063927a4a7b1461050e57610206565b80633f4ba83a1161019d5780635c975abb1161016c5780635c975abb1461042857806370a0823114610430578063715018a6146104565780637eee288d1461045e5780638456cb591461048a57610206565b80633f4ba83a1461038757806340c10f191461039157806345c8b1a6146103bd57806346cf1bb5146103e357610206565b806323b872dd116101d957806323b872dd146102ff578063313ce56714610335578063378dc3dc14610353578063395093511461035b57610206565b806304859ceb1461020b57806306fdde031461023a578063095ea7b3146102b757806318160ddd146102f7575b600080fd5b6102286004803603602081101561022157600080fd5b5035610825565b60408051918252519081900360200190f35b61024261082a565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561027c578181015183820152602001610264565b50505050905090810190601f1680156102a95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102e3600480360360408110156102cd57600080fd5b506001600160a01b038135169060200135610863565b604080519115158252519081900360200190f35b610228610879565b6102e36004803603606081101561031557600080fd5b506001600160a01b03813581169160208101359091169060400135610880565b61033d610967565b6040805160ff9092168252519081900360200190f35b61022861096c565b6102e36004803603604081101561037157600080fd5b506001600160a01b038135169060200135610977565b61038f6109b8565b005b6102e3600480360360408110156103a757600080fd5b506001600160a01b038135169060200135610aa5565b61038f600480360360208110156103d357600080fd5b50356001600160a01b0316610b4b565b61040f600480360360408110156103f957600080fd5b506001600160a01b038135169060200135610bf4565b6040805192835260208301919091528051918290030190f35b6102e3610c6d565b6102286004803603602081101561044657600080fd5b50356001600160a01b0316610c7d565b61038f610d17565b61038f6004803603604081101561047457600080fd5b506001600160a01b038135169060200135610db2565b61038f611060565b61038f600480360360608110156104a857600080fd5b506001600160a01b038135169060208101359060400135611149565b61038f600480360360208110156104da57600080fd5b50356001600160a01b03166112a8565b6104f2611354565b604080516001600160a01b039092168252519081900360200190f35b6102e36004803603606081101561052457600080fd5b506001600160a01b038135169060208101359060400135611363565b61024261155c565b61038f6004803603604081101561055e57600080fd5b506001600160a01b03813516906020013561157e565b6102e36004803603604081101561058a57600080fd5b506001600160a01b038135169060200135611677565b6102e3600480360360408110156105b657600080fd5b506001600160a01b0381351690602001356116b3565b61038f600480360360408110156105e257600080fd5b8101906020810181356401000000008111156105fd57600080fd5b82018360208201111561060f57600080fd5b8035906020019184602083028401116401000000008311171561063157600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929594936020810193503591505064010000000081111561068157600080fd5b82018360208201111561069357600080fd5b803590602001918460208302840111640100000000831117156106b557600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611785945050505050565b6102286004803603602081101561070957600080fd5b50356001600160a01b0316611898565b6102286118aa565b6102286004803603604081101561073757600080fd5b506001600160a01b03813581169160200135166118ae565b6102e36004803603606081101561076557600080fd5b506001600160a01b0381351690602081013590604001356118d9565b6102286004803603602081101561079757600080fd5b50356001600160a01b0316611acf565b61038f600480360360608110156107bd57600080fd5b506001600160a01b038135169060208101359060400135611aea565b6102e3600480360360208110156107ef57600080fd5b50356001600160a01b0316611c42565b61038f6004803603602081101561081557600080fd5b50356001600160a01b0316611c60565b420190565b6040518060400160405280601781526020017f54726164696e6755736474204d696e696e67546f6b656e00000000000000000081525081565b6000610870338484611cbd565b50600192915050565b6002545b90565b600354600090600160a01b900460ff16156108da5760408051600160e51b62461bcd02815260206004820152600f6024820152600160891b6e2830bab9b2b210313c9037bbb732b902604482015290519081900360640190fd5b6001600160a01b03841660009081526004602052604090205460ff161561094b5760408051600160e51b62461bcd02815260206004820152601760248201527f46726f6d206163636f756e74206973206c6f636b65642e000000000000000000604482015290519081900360640190fd5b61095484611daf565b61095f848484611fd2565b949350505050565b600781565b66470de4df82000081565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916108709185906109b3908663ffffffff61202416565b611cbd565b6003546001600160a01b03163314610a095760408051600160e51b62461bcd0281526020600482015260096024820152600160b91b682737ba1037bbb732b902604482015290519081900360640190fd5b600354600160a01b900460ff16610a6a5760408051600160e51b62461bcd02815260206004820152600e60248201527f4e6f7420706175736564206e6f77000000000000000000000000000000000000604482015290519081900360640190fd5b60038054600160a01b60ff02191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b6003546000906001600160a01b03163314610af95760408051600160e51b62461bcd0281526020600482015260096024820152600160b91b682737ba1037bbb732b902604482015290519081900360640190fd5b610b038383612081565b6040805183815290516001600160a01b038516917f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885919081900360200190a250600192915050565b6003546001600160a01b03163314610b9c5760408051600160e51b62461bcd0281526020600482015260096024820152600160b91b682737ba1037bbb732b902604482015290519081900360640190fd5b6001600160a01b038116600081815260046020908152604091829020805460ff19169055815192835290517f4feb53e305297ab8fb8f3420c95ea04737addc254a7270d8fc4605d2b9c61dba9281900390910190a150565b6001600160a01b0382166000908152600560205260408120805482919084908110610c1b57fe5b600091825260208083206002909202909101546001600160a01b038716835260059091526040909120805485908110610c5057fe5b906000526020600020906002020160010154915091509250929050565b600354600160a01b900460ff1681565b600080805b6001600160a01b038416600090815260056020526040902054811015610cf6576001600160a01b03841660009081526005602052604090208054610cec919083908110610ccb57fe5b9060005260206000209060020201600101548361202490919063ffffffff16565b9150600101610c82565b50610d1081610d0485612162565b9063ffffffff61202416565b9392505050565b6003546001600160a01b03163314610d685760408051600160e51b62461bcd0281526020600482015260096024820152600160b91b682737ba1037bbb732b902604482015290519081900360640190fd5b6003546040516001600160a01b03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a2600380546001600160a01b0319169055565b6003546001600160a01b03163314610e035760408051600160e51b62461bcd0281526020600482015260096024820152600160b91b682737ba1037bbb732b902604482015290519081900360640190fd5b6001600160a01b0382166000908152600560205260409020548110610e725760408051600160e51b62461bcd02815260206004820152601460248201527f4e6f206c6f636b20696e666f726d6174696f6e2e000000000000000000000000604482015290519081900360640190fd5b6001600160a01b03821660009081526005602052604090208054610ed4919083908110610e9b57fe5b60009182526020808320600160029093020191909101546001600160a01b0386168352908290526040909120549063ffffffff61202416565b6001600160a01b03831660008181526020818152604080832094909455600590529190912080547f6381d9813cabeb57471b5a7e05078e64845ccdb563146a6911d536f24ce960f1919084908110610f2857fe5b9060005260206000209060020201600101546040518082815260200191505060405180910390a26001600160a01b0382166000908152600560205260408120805483908110610f7357fe5b60009182526020808320600160029093020191909101929092556001600160a01b038416815260059091526040902054600019018114611032576001600160a01b038216600090815260056020526040902080546000198101908110610fd557fe5b906000526020600020906002020160056000846001600160a01b03166001600160a01b03168152602001908152602001600020828154811061101357fe5b6000918252602090912082546002909202019081556001918201549101555b6001600160a01b038216600090815260056020526040902080549061105b9060001983016124a4565b505050565b6003546001600160a01b031633146110b15760408051600160e51b62461bcd0281526020600482015260096024820152600160b91b682737ba1037bbb732b902604482015290519081900360640190fd5b600354600160a01b900460ff16156111085760408051600160e51b62461bcd02815260206004820152600f6024820152600160891b6e2830bab9b2b210313c9037bbb732b902604482015290519081900360640190fd5b60038054600160a01b60ff021916600160a01b1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b6003546001600160a01b0316331461119a5760408051600160e51b62461bcd0281526020600482015260096024820152600160b91b682737ba1037bbb732b902604482015290519081900360640190fd5b816111a484612162565b10156111f55760408051600160e51b62461bcd0281526020600482015260156024820152600160591b742130b630b731b29034b9903a37b79039b6b0b6361702604482015290519081900360640190fd5b6001600160a01b03831660009081526020819052604090205461121e908363ffffffff61217d16565b6001600160a01b0384166000818152602081815260408083209490945560058152838220845180860186524287018082528184018981528354600181810186559487529585902092516002909602909201948555905193909101929092558351868152908101919091528251919260008051602061257383398151915292918290030190a2505050565b6003546001600160a01b031633146112f95760408051600160e51b62461bcd0281526020600482015260096024820152600160b91b682737ba1037bbb732b902604482015290519081900360640190fd5b6001600160a01b038116600081815260046020908152604091829020805460ff19166001179055815192835290517f8a5c4736a33c7b7f29a2c34ea9ff9608afc5718d56f6fd6dcbd2d3711a1a49139281900390910190a150565b6003546001600160a01b031681565b6003546000906001600160a01b031633146113b75760408051600160e51b62461bcd0281526020600482015260096024820152600160b91b682737ba1037bbb732b902604482015290519081900360640190fd5b6001600160a01b0384166114085760408051600160e51b62461bcd02815260206004820152600d6024820152600160981b6c77726f6e67206164647265737302604482015290519081900360640190fd5b60035461141d906001600160a01b0316612162565b83111561146c5760408051600160e51b62461bcd0281526020600482015260126024820152600160701b714e6f7420656e6f7567682062616c616e636502604482015290519081900360640190fd5b6003546001600160a01b0316600090815260208190526040902054611497908463ffffffff61217d16565b600380546001600160a01b03908116600090815260208181526040808320959095558883168083526005825285832086518088018852428a0181528084018b81528254600181810185559387529585902091516002909602909101948555519301929092559254845188815294519194921692600080516020612532833981519152928290030190a360408051848152428401602082015281516001600160a01b03871692600080516020612573833981519152928290030190a25060019392505050565b604051806040016040528060038152602001600160e81b6254554d0281525081565b6003546001600160a01b031633146115cf5760408051600160e51b62461bcd0281526020600482015260096024820152600160b91b682737ba1037bbb732b902604482015290519081900360640190fd5b6115d882612162565b81111561162a5760408051600160e51b62461bcd0281526020600482015260156024820152600160591b742130b630b731b29034b9903a37b79039b6b0b6361702604482015290519081900360640190fd5b61163482826121dd565b6040805182815290516001600160a01b038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916108709185906109b3908663ffffffff61217d16565b3360009081526004602052604081205460ff161561171b5760408051600160e51b62461bcd02815260206004820152601960248201527f53656e646572206163636f756e74206973206c6f636b65642e00000000000000604482015290519081900360640190fd5b600354600160a01b900460ff16156117725760408051600160e51b62461bcd02815260206004820152600f6024820152600160891b6e2830bab9b2b210313c9037bbb732b902604482015290519081900360640190fd5b61177b33611daf565b610d1083836122a7565b6003546001600160a01b031633146117d65760408051600160e51b62461bcd0281526020600482015260096024820152600160b91b682737ba1037bbb732b902604482015290519081900360640190fd5b81516117e157600080fd5b80518251146117ef57600080fd5b60005b825181101561105b57600083828151811061180957fe5b60200260200101519050600083838151811061182157fe5b6020026020010151905061183582826116b3565b506001600160a01b0382166000818152600660209081526040918290208054850190558151928352820183905280517f2a2f3a6f457f222229acc6b14376a5d3f4344fae935675150a096e2f1056bd989281900390910190a150506001016117f2565b60066020526000908152604090205481565b4290565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6003546000906001600160a01b0316331461192d5760408051600160e51b62461bcd0281526020600482015260096024820152600160b91b682737ba1037bbb732b902604482015290519081900360640190fd5b6001600160a01b03841661197e5760408051600160e51b62461bcd02815260206004820152600d6024820152600160981b6c77726f6e67206164647265737302604482015290519081900360640190fd5b600354611993906001600160a01b0316612162565b8311156119e25760408051600160e51b62461bcd0281526020600482015260126024820152600160701b714e6f7420656e6f7567682062616c616e636502604482015290519081900360640190fd5b6003546001600160a01b0316600090815260208190526040902054611a0d908463ffffffff61217d16565b600380546001600160a01b039081166000908152602081815260408083209590955588831680835260058252858320865180880188528981528084018b81528254600181810185559387529585902091516002909602909101948555519301929092559254845188815294519194921692600080516020612532833981519152928290030190a3604080518481526020810184905281516001600160a01b03871692600080516020612573833981519152928290030190a25060019392505050565b6001600160a01b031660009081526005602052604090205490565b6003546001600160a01b03163314611b3b5760408051600160e51b62461bcd0281526020600482015260096024820152600160b91b682737ba1037bbb732b902604482015290519081900360640190fd5b81611b4584612162565b1015611b965760408051600160e51b62461bcd0281526020600482015260156024820152600160591b742130b630b731b29034b9903a37b79039b6b0b6361702604482015290519081900360640190fd5b6001600160a01b038316600090815260208190526040902054611bbf908363ffffffff61217d16565b6001600160a01b03841660008181526020818152604080832094909455600581528382208451808601865286815280830188815282546001818101855593865294849020915160029095029091019384555192019190915582518581529081018490528251919260008051602061257383398151915292918290030190a2505050565b6001600160a01b031660009081526004602052604090205460ff1690565b6003546001600160a01b03163314611cb15760408051600160e51b62461bcd0281526020600482015260096024820152600160b91b682737ba1037bbb732b902604482015290519081900360640190fd5b611cba816122b4565b50565b6001600160a01b038316611d0557604051600160e51b62461bcd0281526004018080602001828103825260248152602001806125b86024913960400191505060405180910390fd5b6001600160a01b038216611d4d57604051600160e51b62461bcd0281526004018080602001828103825260228152602001806125106022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60005b6001600160a01b038216600090815260056020526040902054811015611fce576001600160a01b0382166000908152600560205260409020805442919083908110611df957fe5b90600052602060002090600202016000015411611fc6576001600160a01b03821660009081526005602052604090208054611e39919083908110610e9b57fe5b6001600160a01b03831660008181526020818152604080832094909455600590529190912080547f6381d9813cabeb57471b5a7e05078e64845ccdb563146a6911d536f24ce960f1919084908110611e8d57fe5b9060005260206000209060020201600101546040518082815260200191505060405180910390a26001600160a01b0382166000908152600560205260408120805483908110611ed857fe5b60009182526020808320600160029093020191909101929092556001600160a01b038416815260059091526040902054600019018114611f9b576001600160a01b038216600090815260056020526040902080546000198101908110611f3a57fe5b906000526020600020906002020160056000846001600160a01b03166001600160a01b031681526020019081526020016000208281548110611f7857fe5b600091825260209091208254600290920201908155600191820154910155600019015b6001600160a01b0382166000908152600560205260409020805490611fc49060001983016124a4565b505b600101611db2565b5050565b6000611fdf84848461236e565b6001600160a01b03841660009081526001602090815260408083203380855292529091205461201a9186916109b3908663ffffffff61217d16565b5060019392505050565b600082820183811015610d105760408051600160e51b62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b0382166120df5760408051600160e51b62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6002546120f2908263ffffffff61202416565b6002556001600160a01b03821660009081526020819052604090205461211e908263ffffffff61202416565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391926000805160206125328339815191529281900390910190a35050565b6001600160a01b031660009081526020819052604090205490565b6000828211156121d75760408051600160e51b62461bcd02815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6001600160a01b03821661222557604051600160e51b62461bcd0281526004018080602001828103825260218152602001806125526021913960400191505060405180910390fd5b600254612238908263ffffffff61217d16565b6002556001600160a01b038216600090815260208190526040902054612264908263ffffffff61217d16565b6001600160a01b03831660008181526020818152604080832094909455835185815293519193600080516020612532833981519152929081900390910190a35050565b600061087033848461236e565b6001600160a01b0381166123125760408051600160e51b62461bcd02815260206004820152600d60248201527f416c7265616479206f776e657200000000000000000000000000000000000000604482015290519081900360640190fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166123b657604051600160e51b62461bcd0281526004018080602001828103825260258152602001806125936025913960400191505060405180910390fd5b6001600160a01b0382166123fe57604051600160e51b62461bcd0281526004018080602001828103825260238152602001806124ed6023913960400191505060405180910390fd5b6001600160a01b038316600090815260208190526040902054612427908263ffffffff61217d16565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461245c908263ffffffff61202416565b6001600160a01b0380841660008181526020818152604091829020949094558051858152905191939287169260008051602061253283398151915292918290030190a3505050565b81548183558181111561105b5760008381526020902061105b9161087d9160029182028101918502015b808211156124e857600080825560018201556002016124ce565b509056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a206275726e2066726f6d20746865207a65726f206164647265737349eaf4942f1237055eb4cfa5f31c9dfe50d5b4ade01e021f7de8be2fbbde557b45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a165627a7a72305820cacc6e1d540ffed6b0aae3804071f36e4451d9b0c1f0695395d468c8e10ef5630029

Deployed Bytecode Sourcemap

14896:9202:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14896:9202:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23414:103;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23414:103:0;;:::i;:::-;;;;;;;;;;;;;;;;14944:55;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;14944:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9384:148;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;9384:148:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;8407:91;;;:::i;18425:317::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;18425:317:0;;;;;;;;;;;;;;;;;:::i;15052:34::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15094:78;;;:::i;10668:206::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10668:206:0;;;;;;;;:::i;17420:105::-;;;:::i;:::-;;18821:227;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;18821:227:0;;;;;;;;:::i;17927:128::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;17927:128:0;-1:-1:-1;;;;;17927:128:0;;:::i;20783:185::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20783:185:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;16706:26;;;:::i;19645:335::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19645:335:0;-1:-1:-1;;;;;19645:335:0;;:::i;15884:124::-;;;:::i;21763:516::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;21763:516:0;;;;;;;;:::i;17224:103::-;;;:::i;21364:391::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;21364:391:0;;;;;;;;;;;;;:::i;17796:123::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;17796:123:0;-1:-1:-1;;;;;17796:123:0;;:::i;15317:20::-;;;:::i;:::-;;;;-1:-1:-1;;;;;15317:20:0;;;;;;;;;;;;;;22800:516;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;22800:516:0;;;;;;;;;;;;;:::i;15007:37::-;;;:::i;19130:211::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;19130:211:0;;;;;;;;:::i;11377:216::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11377:216:0;;;;;;;;:::i;18175:242::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;18175:242:0;;;;;;;;:::i;23655:440::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23655:440:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;23655:440:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;23655:440:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;23655:440:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;23655:440:0;;;;;;;;-1:-1:-1;23655:440:0;;-1:-1:-1;;21:11;5:28;;2:2;;;46:1;43;36:12;2:2;23655:440:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;23655:440:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;23655:440:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;23655:440:0;;-1:-1:-1;23655:440:0;;-1:-1:-1;;;;;23655:440:0:i;23540:50::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23540:50:0;-1:-1:-1;;;;;23540:50:0;;:::i;23324:82::-;;;:::i;9103:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;9103:134:0;;;;;;;;;;:::i;22287:505::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;22287:505:0;;;;;;;;;;;;;:::i;20661:116::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20661:116:0;-1:-1:-1;;;;;20661:116:0;;:::i;20976:380::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20976:380:0;;;;;;;;;;;;;:::i;18063:104::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18063:104:0;-1:-1:-1;;;;;18063:104:0;;:::i;16178:111::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16178:111:0;-1:-1:-1;;;;;16178:111:0;;:::i;23414:103::-;23497:3;:12;;23414:103::o;14944:55::-;;;;;;;;;;;;;;;;;;;:::o;9384:148::-;9449:4;9466:36;9475:10;9487:7;9496:5;9466:8;:36::i;:::-;-1:-1:-1;9520:4:0;9384:148;;;;:::o;8407:91::-;8478:12;;8407:91;;:::o;18425:317::-;16894:6;;18576:4;;-1:-1:-1;;;16894:6:0;;;;16893:7;16885:35;;;;;-1:-1:-1;;;;;16885:35:0;;;;;;;;;;;;-1:-1:-1;;;;;16885:35:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;18607:14:0;;;;;;:7;:14;;;;;;;;18606:15;18598:51;;;;;-1:-1:-1;;;;;18598:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;18660:18;18672:5;18660:11;:18::i;:::-;18696:38;18715:5;18722:3;18727:6;18696:18;:38::i;:::-;18689:45;18425:317;-1:-1:-1;;;;18425:317:0:o;15052:34::-;15085:1;15052:34;:::o;15094:78::-;15134:38;15094:78;:::o;10668:206::-;10774:10;10748:4;10795:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;10795:32:0;;;;;;;;;;10748:4;;10765:79;;10786:7;;10795:48;;10832:10;10795:48;:36;:48;:::i;:::-;10765:8;:79::i;17420:105::-;15571:5;;-1:-1:-1;;;;;15571:5:0;15557:10;:19;15549:41;;;;;-1:-1:-1;;;;;15549:41:0;;;;;;;;;;;;-1:-1:-1;;;;;15549:41:0;;;;;;;;;;;;;;;17089:6;;-1:-1:-1;;;17089:6:0;;;;17081:33;;;;;-1:-1:-1;;;;;17081:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17478:6;:14;;-1:-1:-1;;;;;;17478:14:0;;;17508:9;;;;17487:5;;17508:9;17420:105::o;18821:227::-;15571:5;;18937:4;;-1:-1:-1;;;;;15571:5:0;15557:10;:19;15549:41;;;;;-1:-1:-1;;;;;15549:41:0;;;;;;;;;;;;-1:-1:-1;;;;;15549:41:0;;;;;;;;;;;;;;;18959:25;18971:3;18976:7;18959:11;:25::i;:::-;19000:18;;;;;;;;-1:-1:-1;;;;;19000:18:0;;;;;;;;;;;;;-1:-1:-1;19036:4:0;18821:227;;;;:::o;17927:128::-;15571:5;;-1:-1:-1;;;;;15571:5:0;15557:10;:19;15549:41;;;;;-1:-1:-1;;;;;15549:41:0;;;;;;;;;;;;-1:-1:-1;;;;;15549:41:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;17990:16:0;;18009:5;17990:16;;;:7;:16;;;;;;;;;:24;;-1:-1:-1;;17990:24:0;;;18030:17;;;;;;;;;;;;;;;;;17927:128;:::o;20783:185::-;-1:-1:-1;;;;;20891:17:0;;20854:7;20891:17;;;:8;:17;;;;;:23;;20854:7;;20891:17;20909:4;;20891:23;;;;;;;;;;;;;;;;;;;;;:35;-1:-1:-1;;;;;20928:17:0;;;;:8;:17;;;;;;;:23;;20946:4;;20928:23;;;;;;;;;;;;;;;;:31;;;20883:77;;;;20783:185;;;;;:::o;16706:26::-;;;-1:-1:-1;;;16706:26:0;;;;;:::o;19645:335::-;19702:15;;;19766:146;-1:-1:-1;;;;;19789:17:0;;;;;;:8;:17;;;;;:24;19785:28;;19766:146;;;-1:-1:-1;;;;;19871:17:0;;;;;;:8;:17;;;;;:20;;19853:47;;19871:17;19889:1;;19871:20;;;;;;;;;;;;;;;;:28;;;19853:13;:17;;:47;;;;:::i;:::-;19837:63;-1:-1:-1;19816:3:0;;19766:146;;;;19929:43;19958:13;19929:24;19945:7;19929:15;:24::i;:::-;:28;:43;:28;:43;:::i;:::-;19922:50;19645:335;-1:-1:-1;;;19645:335:0:o;15884:124::-;15571:5;;-1:-1:-1;;;;;15571:5:0;15557:10;:19;15549:41;;;;;-1:-1:-1;;;;;15549:41:0;;;;;;;;;;;;-1:-1:-1;;;;;15549:41:0;;;;;;;;;;;;;;;15965:5;;15946:25;;-1:-1:-1;;;;;15965:5:0;;;;15946:25;;15965:5;;15946:25;15982:5;:18;;-1:-1:-1;;;;;;15982:18:0;;;15884:124::o;21763:516::-;15571:5;;-1:-1:-1;;;;;15571:5:0;15557:10;:19;15549:41;;;;;-1:-1:-1;;;;;15549:41:0;;;;;;;;;;;;-1:-1:-1;;;;;15549:41:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;21847:17:0;;;;;;:8;:17;;;;;:24;21843:28;;21835:61;;;;;-1:-1:-1;;;;;21835:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21953:17:0;;;;;;:8;:17;;;;;:20;;21930:52;;21953:17;21971:1;;21953:20;;;;;;;;;;;;;;:28;:20;;;;;:28;;;;;-1:-1:-1;;;;;21930:18:0;;;;;;;;;;;;;;:52;:22;:52;:::i;:::-;-1:-1:-1;;;;;21909:18:0;;:9;:18;;;;;;;;;;;:73;;;;22014:8;:17;;;;;;:20;;21998:45;;22014:17;22032:1;;22014:20;;;;;;;;;;;;;;;;:28;;;21998:45;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22054:17:0;;22085:1;22054:17;;;:8;:17;;;;;:20;;22072:1;;22054:20;;;;;;;;;;;;;;:28;:20;;;;;:28;;;;:32;;;;-1:-1:-1;;;;;22108:17:0;;;;:8;:17;;;;;;:24;-1:-1:-1;;22108:28:0;22103:33;;22099:136;;-1:-1:-1;;;;;22176:17:0;;;;;;:8;:17;;;;;22194:24;;-1:-1:-1;;22194:28:0;;;22176:47;;;;;;;;;;;;;;;;22153:8;:17;22162:7;-1:-1:-1;;;;;22153:17:0;-1:-1:-1;;;;;22153:17:0;;;;;;;;;;;;22171:1;22153:20;;;;;;;;;;;;;;;;:70;;:20;;;;;:70;;;;;;;;;;;22099:136;-1:-1:-1;;;;;22245:17:0;;;;;;:8;:17;;;;;:26;;;;;-1:-1:-1;;22245:26:0;;;:::i;:::-;;21763:516;;:::o;17224:103::-;15571:5;;-1:-1:-1;;;;;15571:5:0;15557:10;:19;15549:41;;;;;-1:-1:-1;;;;;15549:41:0;;;;;;;;;;;;-1:-1:-1;;;;;15549:41:0;;;;;;;;;;;;;;;16894:6;;-1:-1:-1;;;16894:6:0;;;;16893:7;16885:35;;;;;-1:-1:-1;;;;;16885:35:0;;;;;;;;;;;;-1:-1:-1;;;;;16885:35:0;;;;;;;;;;;;;;;17283:6;:13;;-1:-1:-1;;;;;;17283:13:0;-1:-1:-1;;;17283:13:0;;;17312:7;;;;17283:13;;17312:7;17224:103::o;21364:391::-;15571:5;;-1:-1:-1;;;;;15571:5:0;15557:10;:19;15549:41;;;;;-1:-1:-1;;;;;15549:41:0;;;;;;;;;;;;-1:-1:-1;;;;;15549:41:0;;;;;;;;;;;;;;;21501:7;21473:24;21489:7;21473:15;:24::i;:::-;:35;;21465:69;;;;;-1:-1:-1;;;;;21465:69:0;;;;;;;;;;;;-1:-1:-1;;;;;21465:69:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;21566:18:0;;:9;:18;;;;;;;;;;;:31;;21589:7;21566:31;:22;:31;:::i;:::-;-1:-1:-1;;;;;21545:18:0;;:9;:18;;;;;;;;;;;:52;;;;21608:8;:17;;;;;21645:35;;;;;;;21654:3;:16;;21645:35;;;;;;;;;27:10:-1;;39:1;23:18;;;45:23;;21608:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21707:40;;;;;;;;;;;;;;21545:18;;-1:-1:-1;;;;;;;;;;;21707:40:0;;;;;;;;21364:391;;;:::o;17796:123::-;15571:5;;-1:-1:-1;;;;;15571:5:0;15557:10;:19;15549:41;;;;;-1:-1:-1;;;;;15549:41:0;;;;;;;;;;;;-1:-1:-1;;;;;15549:41:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;17857:16:0;;;;;;:7;:16;;;;;;;;;:23;;-1:-1:-1;;17857:23:0;17876:4;17857:23;;;17896:15;;;;;;;;;;;;;;;;;17796:123;:::o;15317:20::-;;;-1:-1:-1;;;;;15317:20:0;;:::o;22800:516::-;15571:5;;22906:4;;-1:-1:-1;;;;;15571:5:0;15557:10;:19;15549:41;;;;;-1:-1:-1;;;;;15549:41:0;;;;;;;;;;;;-1:-1:-1;;;;;15549:41:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;22931:17:0;;22923:43;;;;;-1:-1:-1;;;;;22923:43:0;;;;;;;;;;;;-1:-1:-1;;;;;22923:43:0;;;;;;;;;;;;;;;23011:5;;22995:22;;-1:-1:-1;;;;;23011:5:0;22995:15;:22::i;:::-;22985:6;:32;;22977:63;;;;;-1:-1:-1;;;;;22977:63:0;;;;;;;;;;;;-1:-1:-1;;;;;22977:63:0;;;;;;;;;;;;;;;23082:5;;-1:-1:-1;;;;;23082:5:0;23072:9;:16;;;;;;;;;;;:28;;23093:6;23072:28;:20;:28;:::i;:::-;23063:5;;;-1:-1:-1;;;;;23063:5:0;;;23053:9;:16;;;;;;;;;;;:47;;;;23111:13;;;;;;:8;:13;;;;;23144:34;;;;;;;23153:3;:16;;23144:34;;;;;;;;27:10:-1;;23063:5:0;23:18:-1;;;45:23;;23111:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;23214:5;;23205:28;;;;;;;23111:13;;23214:5;;;-1:-1:-1;;;;;;;;;;;23205:28:0;;;;;;;23249:35;;;;;;23267:3;:16;;23249:35;;;;;;-1:-1:-1;;;;;23249:35:0;;;-1:-1:-1;;;;;;;;;;;23249:35:0;;;;;;;-1:-1:-1;23304:4:0;22800:516;;;;;:::o;15007:37::-;;;;;;;;;;;;;;-1:-1:-1;;;;;15007:37:0;;;;:::o;19130:211::-;15571:5;;-1:-1:-1;;;;;15571:5:0;15557:10;:19;15549:41;;;;;-1:-1:-1;;;;;15549:41:0;;;;;;;;;;;;-1:-1:-1;;;;;15549:41:0;;;;;;;;;;;;;;;19220:21;19236:4;19220:15;:21::i;:::-;19210:6;:31;;19202:65;;;;;-1:-1:-1;;;;;19202:65:0;;;;;;;;;;;;-1:-1:-1;;;;;19202:65:0;;;;;;;;;;;;;;;19280:19;19286:4;19292:6;19280:5;:19::i;:::-;19315:18;;;;;;;;-1:-1:-1;;;;;19315:18:0;;;;;;;;;;;;;19130:211;;:::o;11377:216::-;11488:10;11462:4;11509:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;11509:32:0;;;;;;;;;;11462:4;;11479:84;;11500:7;;11509:53;;11546:15;11509:53;:36;:53;:::i;18175:242::-;17727:10;18319:4;17719:19;;;:7;:19;;;;;;;;17718:20;17710:58;;;;;-1:-1:-1;;;;;17710:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;16894:6;;-1:-1:-1;;;16894:6:0;;;;16893:7;16885:35;;;;;-1:-1:-1;;;;;16885:35:0;;;;;;;;;;;;-1:-1:-1;;;;;16885:35:0;;;;;;;;;;;;;;;18341:23;18353:10;18341:11;:23::i;:::-;18382:27;18397:3;18402:6;18382:14;:27::i;23655:440::-;15571:5;;-1:-1:-1;;;;;15571:5:0;15557:10;:19;15549:41;;;;;-1:-1:-1;;;;;15549:41:0;;;;;;;;;;;;-1:-1:-1;;;;;15549:41:0;;;;;;;;;;;;;;;23759:16;;23751:30;;;;;;23816:6;:13;23796:9;:16;:33;23788:42;;;;;;23844:9;23839:251;23863:9;:16;23859:1;:20;23839:251;;;23895:16;23914:9;23924:1;23914:12;;;;;;;;;;;;;;23895:31;;23935:14;23952:6;23959:1;23952:9;;;;;;;;;;;;;;23935:26;;23972;23981:8;23991:6;23972:8;:26::i;:::-;-1:-1:-1;;;;;;24007:24:0;;;;;;:14;:24;;;;;;;;;:34;;;;;;24057:25;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;23881:3:0;;23839:251;;23540:50;;;;;;;;;;;;;:::o;23324:82::-;23395:3;23324:82;:::o;9103:134::-;-1:-1:-1;;;;;9202:18:0;;;9175:7;9202:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9103:134::o;22287:505::-;15571:5;;22390:4;;-1:-1:-1;;;;;15571:5:0;15557:10;:19;15549:41;;;;;-1:-1:-1;;;;;15549:41:0;;;;;;;;;;;;-1:-1:-1;;;;;15549:41:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;22415:17:0;;22407:43;;;;;-1:-1:-1;;;;;22407:43:0;;;;;;;;;;;;-1:-1:-1;;;;;22407:43:0;;;;;;;;;;;;;;;22495:5;;22479:22;;-1:-1:-1;;;;;22495:5:0;22479:15;:22::i;:::-;22469:6;:32;;22461:63;;;;;-1:-1:-1;;;;;22461:63:0;;;;;;;;;;;;-1:-1:-1;;;;;22461:63:0;;;;;;;;;;;;;;;22566:5;;-1:-1:-1;;;;;22566:5:0;22556:9;:16;;;;;;;;;;;:28;;22577:6;22556:28;:20;:28;:::i;:::-;22547:5;;;-1:-1:-1;;;;;22547:5:0;;;22537:9;:16;;;;;;;;;;;:47;;;;22595:13;;;;;;:8;:13;;;;;22628:30;;;;;;;;;;;;;;;;27:10:-1;;22547:5:0;23:18:-1;;;45:23;;22595:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;22694:5;;22685:28;;;;;;;22595:13;;22694:5;;;-1:-1:-1;;;;;;;;;;;22685:28:0;;;;;;;22729:31;;;;;;;;;;;;;;-1:-1:-1;;;;;22729:31:0;;;-1:-1:-1;;;;;;;;;;;22729:31:0;;;;;;;-1:-1:-1;22780:4:0;22287:505;;;;;:::o;20661:116::-;-1:-1:-1;;;;;20745:17:0;20718:7;20745:17;;;:8;:17;;;;;:24;;20661:116::o;20976:380::-;15571:5;;-1:-1:-1;;;;;15571:5:0;15557:10;:19;15549:41;;;;;-1:-1:-1;;;;;15549:41:0;;;;;;;;;;;;-1:-1:-1;;;;;15549:41:0;;;;;;;;;;;;;;;21110:7;21082:24;21098:7;21082:15;:24::i;:::-;:35;;21074:69;;;;;-1:-1:-1;;;;;21074:69:0;;;;;;;;;;;;-1:-1:-1;;;;;21074:69:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;21175:18:0;;:9;:18;;;;;;;;;;;:31;;21198:7;21175:31;:22;:31;:::i;:::-;-1:-1:-1;;;;;21154:18:0;;:9;:18;;;;;;;;;;;:52;;;;21217:8;:17;;;;;21254:31;;;;;;;;;;;;;;;;27:10:-1;;39:1;23:18;;;45:23;;21217:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;21312:36;;;;;;;;;;;;;21154:18;;-1:-1:-1;;;;;;;;;;;21312:36:0;;;;;;;;20976:380;;;:::o;18063:104::-;-1:-1:-1;;;;;18143:16:0;18119:4;18143:16;;;:7;:16;;;;;;;;;18063:104::o;16178:111::-;15571:5;;-1:-1:-1;;;;;15571:5:0;15557:10;:19;15549:41;;;;;-1:-1:-1;;;;;15549:41:0;;;;;;;;;;;;-1:-1:-1;;;;;15549:41:0;;;;;;;;;;;;;;;16252:29;16271:9;16252:18;:29::i;:::-;16178:111;:::o;14179:335::-;-1:-1:-1;;;;;14272:19:0;;14264:68;;;;-1:-1:-1;;;;;14264:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14351:21:0;;14343:68;;;;-1:-1:-1;;;;;14343:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14424:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:35;;;14475:31;;;;;;;;;;;;;;;;;14179:335;;;:::o;19988:667::-;20052:9;20048:600;-1:-1:-1;;;;;20071:17:0;;;;;;:8;:17;;;;;:24;20067:28;;20048:600;;;-1:-1:-1;;;;;20123:17:0;;;;;;:8;:17;;;;;:20;;20159:3;;20123:17;20141:1;;20123:20;;;;;;;;;;;;;;;;:32;;;:39;20119:518;;-1:-1:-1;;;;;20227:17:0;;;;;;:8;:17;;;;;:20;;20204:52;;20227:17;20245:1;;20227:20;;;;;20204:52;-1:-1:-1;;;;;20183:18:0;;:9;:18;;;;;;;;;;;:73;;;;20296:8;:17;;;;;;:20;;20280:45;;20296:17;20314:1;;20296:20;;;;;;;;;;;;;;;;:28;;;20280:45;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20344:17:0;;20375:1;20344:17;;;:8;:17;;;;;:20;;20362:1;;20344:20;;;;;;;;;;;;;;:28;:20;;;;;:28;;;;:32;;;;-1:-1:-1;;;;;20406:17:0;;;;:8;:17;;;;;;:24;-1:-1:-1;;20406:28:0;20401:33;;20397:178;;-1:-1:-1;;;;;20482:17:0;;;;;;:8;:17;;;;;20500:24;;-1:-1:-1;;20500:28:0;;;20482:47;;;;;;;;;;;;;;;;20459:8;:17;20468:7;-1:-1:-1;;;;;20459:17:0;-1:-1:-1;;;;;20459:17:0;;;;;;;;;;;;20477:1;20459:20;;;;;;;;;;;;;;;;:70;;:20;;;;;:70;;;;;;;;;;;-1:-1:-1;;20552:3:0;20397:178;-1:-1:-1;;;;;20593:17:0;;;;;;:8;:17;;;;;:26;;;;;-1:-1:-1;;20593:26:0;;;:::i;:::-;;20119:518;20098:3;;20048:600;;;;19988:667;:::o;10003:256::-;10092:4;10109:36;10119:6;10127:9;10138:6;10109:9;:36::i;:::-;-1:-1:-1;;;;;10185:19:0;;;;;;:11;:19;;;;;;;;10173:10;10185:31;;;;;;;;;10156:73;;10165:6;;10185:43;;10221:6;10185:43;:35;:43;:::i;10156:73::-;-1:-1:-1;10247:4:0;10003:256;;;;;:::o;4083:181::-;4141:7;4173:5;;;4197:6;;;;4189:46;;;;;-1:-1:-1;;;;;4189:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;12793:308;-1:-1:-1;;;;;12869:21:0;;12861:65;;;;;-1:-1:-1;;;;;12861:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;12954:12;;:24;;12971:6;12954:24;:16;:24;:::i;:::-;12939:12;:39;-1:-1:-1;;;;;13010:18:0;;:9;:18;;;;;;;;;;;:30;;13033:6;13010:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;12989:18:0;;:9;:18;;;;;;;;;;;:51;;;;13056:37;;;;;;;12989:18;;:9;;-1:-1:-1;;;;;;;;;;;13056:37:0;;;;;;;;;12793:308;;:::o;8561:110::-;-1:-1:-1;;;;;8645:18:0;8618:7;8645:18;;;;;;;;;;;;8561:110::o;4539:184::-;4597:7;4630:1;4625;:6;;4617:49;;;;;-1:-1:-1;;;;;4617:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4689:5:0;;;4539:184::o;13433:306::-;-1:-1:-1;;;;;13508:21:0;;13500:67;;;;-1:-1:-1;;;;;13500:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13595:12;;:23;;13612:5;13595:23;:16;:23;:::i;:::-;13580:12;:38;-1:-1:-1;;;;;13650:18:0;;:9;:18;;;;;;;;;;;:29;;13673:5;13650:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;13629:18:0;;:9;:18;;;;;;;;;;;:50;;;;13695:36;;;;;;;13629:9;;-1:-1:-1;;;;;;;;;;;13695:36:0;;;;;;;;;;13433:306;;:::o;8884:156::-;8953:4;8970:40;8980:10;8992:9;9003:6;8970:9;:40::i;16432:206::-;-1:-1:-1;;;;;16507:23:0;;16499:49;;;;;-1:-1:-1;;;;;16499:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;16585:5;;16564:38;;-1:-1:-1;;;;;16564:38:0;;;;16585:5;;16564:38;;16585:5;;16564:38;16613:5;:17;;-1:-1:-1;;;;;;16613:17:0;-1:-1:-1;;;;;16613:17:0;;;;;;;;;;16432:206::o;12083:429::-;-1:-1:-1;;;;;12181:20:0;;12173:70;;;;-1:-1:-1;;;;;12173:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12262:23:0;;12254:71;;;;-1:-1:-1;;;;;12254:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12358:17:0;;:9;:17;;;;;;;;;;;:29;;12380:6;12358:29;:21;:29;:::i;:::-;-1:-1:-1;;;;;12338:17:0;;;:9;:17;;;;;;;;;;;:49;;;;12421:20;;;;;;;:32;;12446:6;12421:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;12398:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;12469:35;;;;;;;12398:20;;12469:35;;;;-1:-1:-1;;;;;;;;;;;12469:35:0;;;;;;;;12083:429;;;:::o;14896:9202::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Swarm Source

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