ETH Price: $2,635.99 (+0.73%)

Contract

0xd35c06a2781f648c75290976ecF71E71582188B7
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

TokenTracker

Quarashi (QUA) (@$0.00)

Multichain Info

1 address found via
Transaction Hash
Method
Block
From
To
Approve199864072024-05-31 1:03:11139 days ago1717117391IN
Quarashi Network: QUA Token
0 ETH0.000296346.37789898
Transfer190625292024-01-22 13:20:11268 days ago1705929611IN
Quarashi Network: QUA Token
0 ETH0.0006710117.84992337
Transfer190274522024-01-17 15:18:47273 days ago1705504727IN
Quarashi Network: QUA Token
0 ETH0.0022249440.68131316
Transfer187843522023-12-14 12:22:11307 days ago1702556531IN
Quarashi Network: QUA Token
0 ETH0.0023253742.50828329
Transfer185440502023-11-10 20:52:47341 days ago1699649567IN
Quarashi Network: QUA Token
0 ETH0.0028892952.80532078
Approve182952142023-10-07 1:05:11376 days ago1696640711IN
Quarashi Network: QUA Token
0 ETH0.000248975.39335904
Transfer174832272023-06-15 5:30:23489 days ago1686807023IN
Quarashi Network: QUA Token
0 ETH0.0007878724
Transfer From174832262023-06-15 5:30:11489 days ago1686807011IN
Quarashi Network: QUA Token
0 ETH0.0011163820
Approve174832242023-06-15 5:29:47489 days ago1686806987IN
Quarashi Network: QUA Token
0 ETH0.000970221
Approve174824462023-06-15 2:53:11490 days ago1686797591IN
Quarashi Network: QUA Token
0 ETH0.0007793416.7730358
Approve174824432023-06-15 2:52:35490 days ago1686797555IN
Quarashi Network: QUA Token
0 ETH0.000833917.94740591
Transfer174824352023-06-15 2:50:59490 days ago1686797459IN
Quarashi Network: QUA Token
0 ETH0.0010564319.31175193
Transfer174627252023-06-12 8:14:35492 days ago1686557675IN
Quarashi Network: QUA Token
0 ETH0.000584515.54366002
Transfer174613582023-06-12 3:37:59492 days ago1686541079IN
Quarashi Network: QUA Token
0 ETH0.0005283314.0498727
Transfer174491642023-06-10 10:25:35494 days ago1686392735IN
Quarashi Network: QUA Token
0 ETH0.0007542123
Transfer From174491632023-06-10 10:25:23494 days ago1686392723IN
Quarashi Network: QUA Token
0 ETH0.0011714421
Approve174491612023-06-10 10:24:59494 days ago1686392699IN
Quarashi Network: QUA Token
0 ETH0.000970221
Transfer174487822023-06-10 9:07:35494 days ago1686388055IN
Quarashi Network: QUA Token
0 ETH0.0010999120.11107089
Transfer174478902023-06-10 6:06:47494 days ago1686377207IN
Quarashi Network: QUA Token
0 ETH0.0011984831.87133298
Transfer174298542023-06-07 17:03:35497 days ago1686157415IN
Quarashi Network: QUA Token
0 ETH0.0015647441.61110849
Transfer174252432023-06-07 1:27:47498 days ago1686101267IN
Quarashi Network: QUA Token
0 ETH0.0011149320.38128281
Transfer174159352023-06-05 17:57:23499 days ago1685987843IN
Quarashi Network: QUA Token
0 ETH0.0017285745.98254112
Transfer173528352023-05-27 20:42:35508 days ago1685220155IN
Quarashi Network: QUA Token
0 ETH0.0008583422.82578445
Transfer172181532023-05-08 20:29:59527 days ago1683577799IN
Quarashi Network: QUA Token
0 ETH0.005239995.80749928
Approve171991472023-05-06 4:21:59529 days ago1683346919IN
Quarashi Network: QUA Token
0 ETH0.00669081144
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
MainToken

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-19
*/

/*
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */

/*
 * This file was generated by MyWish Platform (https://mywish.io/)
 * The complete code could be found at https://github.com/MyWishPlatform/
 * Copyright (C) 2020 MyWish
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */
pragma solidity ^0.4.23;


/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev 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) balances;

  uint256 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(_to != address(0));
    require(_value <= balances[msg.sender]);

    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.
 * @dev https://github.com/ethereum/EIPs/issues/20
 * @dev 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(_to != address(0));
    require(_value <= balances[_from]);
    require(_value <= allowed[_from][msg.sender]);

    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,
    uint _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,
    uint _subtractedValue
  )
    public
    returns (bool)
  {
    uint 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 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.
   */
  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 Mintable token
 * @dev Simple ERC20 Token example, with mintable token creation
 * @dev Issue: * https://github.com/OpenZeppelin/openzeppelin-solidity/issues/120
 * Based on code by TokenMarketNet: https://github.com/TokenMarketNet/ico/blob/master/contracts/MintableToken.sol
 */
contract MintableToken is StandardToken, Ownable {
  event Mint(address indexed to, uint256 amount);
  event MintFinished();

  bool public mintingFinished = false;


  modifier canMint() {
    require(!mintingFinished);
    _;
  }

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

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

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


contract FreezableToken is StandardToken {
    // freezing chains
    mapping (bytes32 => uint64) internal chains;
    // freezing amounts for each chain
    mapping (bytes32 => uint) internal freezings;
    // total freezing balance per address
    mapping (address => uint) internal freezingBalance;

    event Freezed(address indexed to, uint64 release, uint amount);
    event Released(address indexed owner, uint amount);

    /**
     * @dev Gets the balance of the specified address include freezing tokens.
     * @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 balance) {
        return super.balanceOf(_owner) + freezingBalance[_owner];
    }

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

    function freezingBalanceOf(address _owner) public view returns (uint256 balance) {
        return freezingBalance[_owner];
    }

    /**
     * @dev gets freezing count
     * @param _addr Address of freeze tokens owner.
     */
    function freezingCount(address _addr) public view returns (uint count) {
        uint64 release = chains[toKey(_addr, 0)];
        while (release != 0) {
            count++;
            release = chains[toKey(_addr, release)];
        }
    }

    /**
     * @dev gets freezing end date and freezing balance for the freezing portion specified by index.
     * @param _addr Address of freeze tokens owner.
     * @param _index Freezing portion index. It ordered by release date descending.
     */
    function getFreezing(address _addr, uint _index) public view returns (uint64 _release, uint _balance) {
        for (uint i = 0; i < _index + 1; i++) {
            _release = chains[toKey(_addr, _release)];
            if (_release == 0) {
                return;
            }
        }
        _balance = freezings[toKey(_addr, _release)];
    }

    /**
     * @dev freeze your tokens to the specified address.
     *      Be careful, gas usage is not deterministic,
     *      and depends on how many freezes _to address already has.
     * @param _to Address to which token will be freeze.
     * @param _amount Amount of token to freeze.
     * @param _until Release date, must be in future.
     */
    function freezeTo(address _to, uint _amount, uint64 _until) public {
        require(_to != address(0));
        require(_amount <= balances[msg.sender]);

        balances[msg.sender] = balances[msg.sender].sub(_amount);

        bytes32 currentKey = toKey(_to, _until);
        freezings[currentKey] = freezings[currentKey].add(_amount);
        freezingBalance[_to] = freezingBalance[_to].add(_amount);

        freeze(_to, _until);
        emit Transfer(msg.sender, _to, _amount);
        emit Freezed(_to, _until, _amount);
    }

    /**
     * @dev release first available freezing tokens.
     */
    function releaseOnce() public {
        bytes32 headKey = toKey(msg.sender, 0);
        uint64 head = chains[headKey];
        require(head != 0);
        require(uint64(block.timestamp) > head);
        bytes32 currentKey = toKey(msg.sender, head);

        uint64 next = chains[currentKey];

        uint amount = freezings[currentKey];
        delete freezings[currentKey];

        balances[msg.sender] = balances[msg.sender].add(amount);
        freezingBalance[msg.sender] = freezingBalance[msg.sender].sub(amount);

        if (next == 0) {
            delete chains[headKey];
        } else {
            chains[headKey] = next;
            delete chains[currentKey];
        }
        emit Released(msg.sender, amount);
    }

    /**
     * @dev release all available for release freezing tokens. Gas usage is not deterministic!
     * @return how many tokens was released
     */
    function releaseAll() public returns (uint tokens) {
        uint release;
        uint balance;
        (release, balance) = getFreezing(msg.sender, 0);
        while (release != 0 && block.timestamp > release) {
            releaseOnce();
            tokens += balance;
            (release, balance) = getFreezing(msg.sender, 0);
        }
    }

    function toKey(address _addr, uint _release) internal pure returns (bytes32 result) {
        // WISH masc to increase entropy
        result = 0x5749534800000000000000000000000000000000000000000000000000000000;
        assembly {
            result := or(result, mul(_addr, 0x10000000000000000))
            result := or(result, and(_release, 0xffffffffffffffff))
        }
    }

    function freeze(address _to, uint64 _until) internal {
        require(_until > block.timestamp);
        bytes32 key = toKey(_to, _until);
        bytes32 parentKey = toKey(_to, uint64(0));
        uint64 next = chains[parentKey];

        if (next == 0) {
            chains[parentKey] = _until;
            return;
        }

        bytes32 nextKey = toKey(_to, next);
        uint parent;

        while (next != 0 && _until > next) {
            parent = next;
            parentKey = nextKey;

            next = chains[nextKey];
            nextKey = toKey(_to, next);
        }

        if (_until == next) {
            return;
        }

        if (next != 0) {
            chains[key] = next;
        }

        chains[parentKey] = _until;
    }
}


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

  event Burn(address indexed burner, uint256 value);

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

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

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



/**
 * @title Pausable
 * @dev Base contract which allows children to implement an emergency stop mechanism.
 */
contract Pausable is Ownable {
  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);
    _;
  }

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

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

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


contract FreezableMintableToken is FreezableToken, MintableToken {
    /**
     * @dev Mint the specified amount of token to the specified address and freeze it until the specified date.
     *      Be careful, gas usage is not deterministic,
     *      and depends on how many freezes _to address already has.
     * @param _to Address to which token will be freeze.
     * @param _amount Amount of token to mint and freeze.
     * @param _until Release date, must be in future.
     * @return A boolean that indicates if the operation was successful.
     */
    function mintAndFreeze(address _to, uint _amount, uint64 _until) public onlyOwner canMint returns (bool) {
        totalSupply_ = totalSupply_.add(_amount);

        bytes32 currentKey = toKey(_to, _until);
        freezings[currentKey] = freezings[currentKey].add(_amount);
        freezingBalance[_to] = freezingBalance[_to].add(_amount);

        freeze(_to, _until);
        emit Mint(_to, _amount);
        emit Freezed(_to, _until, _amount);
        emit Transfer(msg.sender, _to, _amount);
        return true;
    }
}



contract Consts {
    uint public constant TOKEN_DECIMALS = 18;
    uint8 public constant TOKEN_DECIMALS_UINT8 = 18;
    uint public constant TOKEN_DECIMAL_MULTIPLIER = 10 ** TOKEN_DECIMALS;

    string public constant TOKEN_NAME = "Quarashi";
    string public constant TOKEN_SYMBOL = "QUA";
    bool public constant PAUSED = false;
    address public constant TARGET_USER = 0x160444CB772E871138e33c5259e20F7AF0b44B33;
    
    bool public constant CONTINUE_MINTING = false;
}




contract MainToken is Consts, FreezableMintableToken, BurnableToken, Pausable
    
{
    
    event Initialized();
    bool public initialized = false;

    constructor() public {
        init();
        transferOwnership(TARGET_USER);
    }
    

    function name() public pure returns (string _name) {
        return TOKEN_NAME;
    }

    function symbol() public pure returns (string _symbol) {
        return TOKEN_SYMBOL;
    }

    function decimals() public pure returns (uint8 _decimals) {
        return TOKEN_DECIMALS_UINT8;
    }

    function transferFrom(address _from, address _to, uint256 _value) public returns (bool _success) {
        require(!paused);
        return super.transferFrom(_from, _to, _value);
    }

    function transfer(address _to, uint256 _value) public returns (bool _success) {
        require(!paused);
        return super.transfer(_to, _value);
    }

    
    function init() private {
        require(!initialized);
        initialized = true;

        if (PAUSED) {
            pause();
        }

        
        address[1] memory addresses = [address(0x3f4e05371ae5cdc0fb0b1160ab89c4b402b907d7)];
        uint[1] memory amounts = [uint(1000000000000000000000000000)];
        uint64[1] memory freezes = [uint64(0)];

        for (uint i = 0; i < addresses.length; i++) {
            if (freezes[i] == 0) {
                mint(addresses[i], amounts[i]);
            } else {
                mintAndFreeze(addresses[i], amounts[i], freezes[i]);
            }
        }
        

        if (!CONTINUE_MINTING) {
            finishMinting();
        }

        emit Initialized();
    }
    
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"CONTINUE_MINTING","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"},{"name":"_index","type":"uint256"}],"name":"getFreezing","outputs":[{"name":"_release","type":"uint64"},{"name":"_balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"_name","type":"string"}],"payable":false,"stateMutability":"pure","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":"_to","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_until","type":"uint64"}],"name":"mintAndFreeze","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"initialized","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"actualBalanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_NAME","outputs":[{"name":"","type":"string"}],"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":"_success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_SYMBOL","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"_decimals","type":"uint8"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_until","type":"uint64"}],"name":"freezeTo","outputs":[],"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":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_DECIMAL_MULTIPLIER","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_DECIMALS","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"releaseAll","outputs":[{"name":"tokens","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"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":false,"inputs":[],"name":"releaseOnce","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"TARGET_USER","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"_symbol","type":"string"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"_success","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":"_addr","type":"address"}],"name":"freezingCount","outputs":[{"name":"count","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_DECIMALS_UINT8","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","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":true,"inputs":[{"name":"_owner","type":"address"}],"name":"freezingBalanceOf","outputs":[{"name":"balance","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":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","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":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"}],"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":"to","type":"address"},{"indexed":false,"name":"release","type":"uint64"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Freezed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Released","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"}]

60806040526006805460a060020a62ffffff02191690553480156200002357600080fd5b5060068054600160a060020a031916331790556200004964010000000062000077810204565b6200007173160444cb772e871138e33c5259e20f7af0b44b336401000000006200023b810204565b62000886565b6200008162000867565b6200008b62000867565b6200009562000867565b600654600090760100000000000000000000000000000000000000000000900460ff1615620000c357600080fd5b6006805460b060020a60ff02191676010000000000000000000000000000000000000000000017905550506040805160208181018352733f4e05371ae5cdc0fb0b1160ab89c4b402b907d78252825180820184526b033b2e3c9fd0803ce80000008152835191820190935260008082529194509192505b6001811015620001f8578181600181106200015157fe5b60200201516001604060020a03161515620001a4576200019d8482600181106200017757fe5b60200201518483600181106200018957fe5b60200201516401000000006200026a810204565b50620001ef565b620001ed848260018110620001b557fe5b6020020151848360018110620001c757fe5b6020020151848460018110620001d957fe5b602002015164010000000062000379810204565b505b6001016200013a565b6200020b6401000000006200054c810204565b506040517f5daa87a0e9463431830481fd4b6e3403442dfb9a12b9c07597e9f61d50b633c890600090a150505050565b600654600160a060020a031633146200025357600080fd5b6200026781640100000000620005e6810204565b50565b600654600090600160a060020a031633146200028557600080fd5b60065474010000000000000000000000000000000000000000900460ff1615620002ae57600080fd5b600154620002cb9083640100000000620014766200065882021704565b600155600160a060020a038316600090815260208190526040902054620003019083640100000000620014766200065882021704565b600160a060020a0384166000818152602081815260409182902093909355805185815290519192600080516020620022ed83398151915292918290030190a2604080518381529051600160a060020a03851691600091600080516020620022cd8339815191529181900360200190a350600192915050565b6006546000908190600160a060020a031633146200039657600080fd5b60065474010000000000000000000000000000000000000000900460ff1615620003bf57600080fd5b600154620003dc9085640100000000620014766200065882021704565b600155620003fd856001604060020a0385166401000000006200066c810204565b600081815260046020526040902054909150620004299085640100000000620014766200065882021704565b600082815260046020908152604080832093909355600160a060020a03881682526005905220546200046a9085640100000000620014766200065882021704565b600160a060020a038616600090815260056020526040902055620004988584640100000000620006a9810204565b604080518581529051600160a060020a03871691600080516020620022ed833981519152919081900360200190a2604080516001604060020a0385168152602081018690528151600160a060020a038816927f2ecd071e4d10ed2221b04636ed0724cce66a873aa98c1a31b4bb0e6846d3aab4928290030190a2604080518581529051600160a060020a038716913391600080516020620022cd8339815191529181900360200190a3506001949350505050565b600654600090600160a060020a031633146200056757600080fd5b60065474010000000000000000000000000000000000000000900460ff16156200059057600080fd5b6006805460a060020a60ff021916740100000000000000000000000000000000000000001790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600160a060020a0381161515620005fc57600080fd5b600654604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a360068054600160a060020a031916600160a060020a0392909216919091179055565b818101828110156200066657fe5b92915050565b6001604060020a03166801000000000000000091909102177f57495348000000000000000000000000000000000000000000000000000000001790565b600080808080426001604060020a03871611620006c557600080fd5b620006e3876001604060020a0388166401000000006200066c810204565b9450620006fb8760006401000000006200066c810204565b6000818152600360205260409020549094506001604060020a031692508215156200074d57600084815260036020526040902080546001604060020a0319166001604060020a0388161790556200085e565b6200076b876001604060020a0385166401000000006200066c810204565b91505b6001604060020a03831615801590620007985750826001604060020a0316866001604060020a0316115b15620007dd57506000818152600360205260409020549092506001604060020a0390811691839116620007d587846401000000006200066c810204565b91506200076e565b826001604060020a0316866001604060020a03161415620007fe576200085e565b6001604060020a038316156200083657600085815260036020526040902080546001604060020a0319166001604060020a0385161790555b600084815260036020526040902080546001604060020a0319166001604060020a0388161790555b50505050505050565b6020604051908101604052806001906020820280388339509192915050565b611a3780620008966000396000f3006080604052600436106101d65763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416623fd35a81146101db57806302d6f7301461020457806305d2035b1461024c57806306fdde0314610261578063095ea7b3146102eb5780630bb2cd6b1461030f578063158ef93e1461034057806317a950ac1461035557806318160ddd14610388578063188214001461039d57806323b872dd146103b25780632a905318146103dc578063313ce567146103f15780633be1e9521461041c5780633f4ba83a1461044f57806340c10f191461046457806342966c681461048857806356780085146104a05780635b7f415c146104b55780635be7fde8146104ca5780635c975abb146104df57806366188463146104f457806366a92cda1461051857806370a082311461052d578063715018a61461054e578063726a431a146105635780637d64bcb4146105945780638456cb59146105a95780638da5cb5b146105be57806395d89b41146105d3578063a9059cbb146105e8578063a9aad58c146101db578063ca63b5b81461060c578063cf3b19671461062d578063d73dd62314610642578063d8aeedf514610666578063dd62ed3e14610687578063f2fde38b146106ae575b600080fd5b3480156101e757600080fd5b506101f06106cf565b604080519115158252519081900360200190f35b34801561021057600080fd5b50610228600160a060020a03600435166024356106d4565b6040805167ffffffffffffffff909316835260208301919091528051918290030190f35b34801561025857600080fd5b506101f0610761565b34801561026d57600080fd5b50610276610771565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102b0578181015183820152602001610298565b50505050905090810190601f1680156102dd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102f757600080fd5b506101f0600160a060020a03600435166024356107a8565b34801561031b57600080fd5b506101f0600160a060020a036004351660243567ffffffffffffffff6044351661080e565b34801561034c57600080fd5b506101f06109ac565b34801561036157600080fd5b50610376600160a060020a03600435166109cf565b60408051918252519081900360200190f35b34801561039457600080fd5b506103766109e0565b3480156103a957600080fd5b506102766109e6565b3480156103be57600080fd5b506101f0600160a060020a0360043581169060243516604435610a1d565b3480156103e857600080fd5b50610276610a4a565b3480156103fd57600080fd5b50610406610a81565b6040805160ff9092168252519081900360200190f35b34801561042857600080fd5b5061044d600160a060020a036004351660243567ffffffffffffffff60443516610a86565b005b34801561045b57600080fd5b5061044d610bfa565b34801561047057600080fd5b506101f0600160a060020a0360043516602435610c73565b34801561049457600080fd5b5061044d600435610d6b565b3480156104ac57600080fd5b50610376610d78565b3480156104c157600080fd5b50610376610d84565b3480156104d657600080fd5b50610376610d89565b3480156104eb57600080fd5b506101f0610dee565b34801561050057600080fd5b506101f0600160a060020a0360043516602435610dfe565b34801561052457600080fd5b5061044d610eee565b34801561053957600080fd5b50610376600160a060020a0360043516611091565b34801561055a57600080fd5b5061044d6110ba565b34801561056f57600080fd5b50610578611128565b60408051600160a060020a039092168252519081900360200190f35b3480156105a057600080fd5b506101f0611140565b3480156105b557600080fd5b5061044d6111c4565b3480156105ca57600080fd5b50610578611242565b3480156105df57600080fd5b50610276611251565b3480156105f457600080fd5b506101f0600160a060020a0360043516602435611288565b34801561061857600080fd5b50610376600160a060020a03600435166112b3565b34801561063957600080fd5b50610406610d84565b34801561064e57600080fd5b506101f0600160a060020a0360043516602435611339565b34801561067257600080fd5b50610376600160a060020a03600435166113d2565b34801561069357600080fd5b50610376600160a060020a03600435811690602435166113ed565b3480156106ba57600080fd5b5061044d600160a060020a0360043516611418565b600081565b600080805b8360010181101561072d57600360006106fc878667ffffffffffffffff16611438565b815260208101919091526040016000205467ffffffffffffffff16925082151561072557610759565b6001016106d9565b60046000610745878667ffffffffffffffff16611438565b815260208101919091526040016000205491505b509250929050565b60065460a060020a900460ff1681565b60408051808201909152600881527f5175617261736869000000000000000000000000000000000000000000000000602082015290565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b6006546000908190600160a060020a0316331461082a57600080fd5b60065460a060020a900460ff161561084157600080fd5b600154610854908563ffffffff61147616565b60015561086b8567ffffffffffffffff8516611438565b60008181526004602052604090205490915061088d908563ffffffff61147616565b600082815260046020908152604080832093909355600160a060020a03881682526005905220546108c4908563ffffffff61147616565b600160a060020a0386166000908152600560205260409020556108e78584611483565b604080518581529051600160a060020a038716917f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885919081900360200190a26040805167ffffffffffffffff85168152602081018690528151600160a060020a038816927f2ecd071e4d10ed2221b04636ed0724cce66a873aa98c1a31b4bb0e6846d3aab4928290030190a2604080518581529051600160a060020a0387169133916000805160206119ec8339815191529181900360200190a3506001949350505050565b600654760100000000000000000000000000000000000000000000900460ff1681565b60006109da8261161d565b92915050565b60015490565b60408051808201909152600881527f5175617261736869000000000000000000000000000000000000000000000000602082015281565b60065460009060a860020a900460ff1615610a3757600080fd5b610a42848484611638565b949350505050565b60408051808201909152600381527f5155410000000000000000000000000000000000000000000000000000000000602082015281565b601290565b6000600160a060020a0384161515610a9d57600080fd5b33600090815260208190526040902054831115610ab957600080fd5b33600090815260208190526040902054610ad9908463ffffffff61179d16565b33600090815260208190526040902055610afd8467ffffffffffffffff8416611438565b600081815260046020526040902054909150610b1f908463ffffffff61147616565b600082815260046020908152604080832093909355600160a060020a0387168252600590522054610b56908463ffffffff61147616565b600160a060020a038516600090815260056020526040902055610b798483611483565b604080518481529051600160a060020a0386169133916000805160206119ec8339815191529181900360200190a36040805167ffffffffffffffff84168152602081018590528151600160a060020a038716927f2ecd071e4d10ed2221b04636ed0724cce66a873aa98c1a31b4bb0e6846d3aab4928290030190a250505050565b600654600160a060020a03163314610c1157600080fd5b60065460a860020a900460ff161515610c2957600080fd5b6006805475ff000000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b600654600090600160a060020a03163314610c8d57600080fd5b60065460a060020a900460ff1615610ca457600080fd5b600154610cb7908363ffffffff61147616565b600155600160a060020a038316600090815260208190526040902054610ce3908363ffffffff61147616565b600160a060020a03841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000916000805160206119ec8339815191529181900360200190a350600192915050565b610d7533826117af565b50565b670de0b6b3a764000081565b601281565b6000806000610d993360006106d4565b67ffffffffffffffff909116925090505b8115801590610db857508142115b15610de957610dc5610eee565b91820191610dd43360006106d4565b67ffffffffffffffff90911692509050610daa565b505090565b60065460a860020a900460ff1681565b336000908152600260209081526040808320600160a060020a038616845290915281205480831115610e5357336000908152600260209081526040808320600160a060020a0388168452909152812055610e88565b610e63818463ffffffff61179d16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000806000806000610f01336000611438565b60008181526003602052604090205490955067ffffffffffffffff169350831515610f2b57600080fd5b8367ffffffffffffffff164267ffffffffffffffff16111515610f4d57600080fd5b610f61338567ffffffffffffffff16611438565b600081815260036020908152604080832054600483528184208054908590553385529284905292205492955067ffffffffffffffff90911693509150610fad908263ffffffff61147616565b3360009081526020818152604080832093909355600590522054610fd7908263ffffffff61179d16565b3360009081526005602052604090205567ffffffffffffffff8216151561101a576000858152600360205260409020805467ffffffffffffffff19169055611054565b600085815260036020526040808220805467ffffffffffffffff861667ffffffffffffffff19918216179091558583529120805490911690555b60408051828152905133917fb21fb52d5749b80f3182f8c6992236b5e5576681880914484d7f4c9b062e619e919081900360200190a25050505050565b600160a060020a0381166000908152600560205260408120546110b38361161d565b0192915050565b600654600160a060020a031633146110d157600080fd5b600654604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26006805473ffffffffffffffffffffffffffffffffffffffff19169055565b73160444cb772e871138e33c5259e20f7af0b44b3381565b600654600090600160a060020a0316331461115a57600080fd5b60065460a060020a900460ff161561117157600080fd5b6006805474ff0000000000000000000000000000000000000000191660a060020a1790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600654600160a060020a031633146111db57600080fd5b60065460a860020a900460ff16156111f257600080fd5b6006805475ff000000000000000000000000000000000000000000191660a860020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600654600160a060020a031681565b60408051808201909152600381527f5155410000000000000000000000000000000000000000000000000000000000602082015290565b60065460009060a860020a900460ff16156112a257600080fd5b6112ac838361189e565b9392505050565b600080600360006112c5856000611438565b815260208101919091526040016000205467ffffffffffffffff1690505b67ffffffffffffffff81161561133357600190910190600360006113118567ffffffffffffffff8516611438565b815260208101919091526040016000205467ffffffffffffffff1690506112e3565b50919050565b336000908152600260209081526040808320600160a060020a038616845290915281205461136d908363ffffffff61147616565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a031660009081526005602052604090205490565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600654600160a060020a0316331461142f57600080fd5b610d758161196d565b67ffffffffffffffff166801000000000000000091909102177f57495348000000000000000000000000000000000000000000000000000000001790565b818101828110156109da57fe5b6000808080804267ffffffffffffffff87161161149f57600080fd5b6114b3878767ffffffffffffffff16611438565b94506114c0876000611438565b60008181526003602052604090205490945067ffffffffffffffff169250821515611513576000848152600360205260409020805467ffffffffffffffff191667ffffffffffffffff8816179055611614565b611527878467ffffffffffffffff16611438565b91505b67ffffffffffffffff83161580159061155657508267ffffffffffffffff168667ffffffffffffffff16115b1561158f575060008181526003602052604090205490925067ffffffffffffffff908116918391166115888784611438565b915061152a565b8267ffffffffffffffff168667ffffffffffffffff1614156115b057611614565b67ffffffffffffffff8316156115ea576000858152600360205260409020805467ffffffffffffffff191667ffffffffffffffff85161790555b6000848152600360205260409020805467ffffffffffffffff191667ffffffffffffffff88161790555b50505050505050565b600160a060020a031660009081526020819052604090205490565b6000600160a060020a038316151561164f57600080fd5b600160a060020a03841660009081526020819052604090205482111561167457600080fd5b600160a060020a03841660009081526002602090815260408083203384529091529020548211156116a457600080fd5b600160a060020a0384166000908152602081905260409020546116cd908363ffffffff61179d16565b600160a060020a038086166000908152602081905260408082209390935590851681522054611702908363ffffffff61147616565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054611744908363ffffffff61179d16565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391926000805160206119ec833981519152929181900390910190a35060019392505050565b6000828211156117a957fe5b50900390565b600160a060020a0382166000908152602081905260409020548111156117d457600080fd5b600160a060020a0382166000908152602081905260409020546117fd908263ffffffff61179d16565b600160a060020a038316600090815260208190526040902055600154611829908263ffffffff61179d16565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516916000805160206119ec8339815191529181900360200190a35050565b6000600160a060020a03831615156118b557600080fd5b336000908152602081905260409020548211156118d157600080fd5b336000908152602081905260409020546118f1908363ffffffff61179d16565b3360009081526020819052604080822092909255600160a060020a03851681522054611923908363ffffffff61147616565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233926000805160206119ec8339815191529281900390910190a350600192915050565b600160a060020a038116151561198257600080fd5b600654604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582097475aeece568a6c7f41e90a46c6fcb8637d4cd9b577da2be7e2f391cb0859250029ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885

Deployed Bytecode

0x6080604052600436106101d65763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416623fd35a81146101db57806302d6f7301461020457806305d2035b1461024c57806306fdde0314610261578063095ea7b3146102eb5780630bb2cd6b1461030f578063158ef93e1461034057806317a950ac1461035557806318160ddd14610388578063188214001461039d57806323b872dd146103b25780632a905318146103dc578063313ce567146103f15780633be1e9521461041c5780633f4ba83a1461044f57806340c10f191461046457806342966c681461048857806356780085146104a05780635b7f415c146104b55780635be7fde8146104ca5780635c975abb146104df57806366188463146104f457806366a92cda1461051857806370a082311461052d578063715018a61461054e578063726a431a146105635780637d64bcb4146105945780638456cb59146105a95780638da5cb5b146105be57806395d89b41146105d3578063a9059cbb146105e8578063a9aad58c146101db578063ca63b5b81461060c578063cf3b19671461062d578063d73dd62314610642578063d8aeedf514610666578063dd62ed3e14610687578063f2fde38b146106ae575b600080fd5b3480156101e757600080fd5b506101f06106cf565b604080519115158252519081900360200190f35b34801561021057600080fd5b50610228600160a060020a03600435166024356106d4565b6040805167ffffffffffffffff909316835260208301919091528051918290030190f35b34801561025857600080fd5b506101f0610761565b34801561026d57600080fd5b50610276610771565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102b0578181015183820152602001610298565b50505050905090810190601f1680156102dd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102f757600080fd5b506101f0600160a060020a03600435166024356107a8565b34801561031b57600080fd5b506101f0600160a060020a036004351660243567ffffffffffffffff6044351661080e565b34801561034c57600080fd5b506101f06109ac565b34801561036157600080fd5b50610376600160a060020a03600435166109cf565b60408051918252519081900360200190f35b34801561039457600080fd5b506103766109e0565b3480156103a957600080fd5b506102766109e6565b3480156103be57600080fd5b506101f0600160a060020a0360043581169060243516604435610a1d565b3480156103e857600080fd5b50610276610a4a565b3480156103fd57600080fd5b50610406610a81565b6040805160ff9092168252519081900360200190f35b34801561042857600080fd5b5061044d600160a060020a036004351660243567ffffffffffffffff60443516610a86565b005b34801561045b57600080fd5b5061044d610bfa565b34801561047057600080fd5b506101f0600160a060020a0360043516602435610c73565b34801561049457600080fd5b5061044d600435610d6b565b3480156104ac57600080fd5b50610376610d78565b3480156104c157600080fd5b50610376610d84565b3480156104d657600080fd5b50610376610d89565b3480156104eb57600080fd5b506101f0610dee565b34801561050057600080fd5b506101f0600160a060020a0360043516602435610dfe565b34801561052457600080fd5b5061044d610eee565b34801561053957600080fd5b50610376600160a060020a0360043516611091565b34801561055a57600080fd5b5061044d6110ba565b34801561056f57600080fd5b50610578611128565b60408051600160a060020a039092168252519081900360200190f35b3480156105a057600080fd5b506101f0611140565b3480156105b557600080fd5b5061044d6111c4565b3480156105ca57600080fd5b50610578611242565b3480156105df57600080fd5b50610276611251565b3480156105f457600080fd5b506101f0600160a060020a0360043516602435611288565b34801561061857600080fd5b50610376600160a060020a03600435166112b3565b34801561063957600080fd5b50610406610d84565b34801561064e57600080fd5b506101f0600160a060020a0360043516602435611339565b34801561067257600080fd5b50610376600160a060020a03600435166113d2565b34801561069357600080fd5b50610376600160a060020a03600435811690602435166113ed565b3480156106ba57600080fd5b5061044d600160a060020a0360043516611418565b600081565b600080805b8360010181101561072d57600360006106fc878667ffffffffffffffff16611438565b815260208101919091526040016000205467ffffffffffffffff16925082151561072557610759565b6001016106d9565b60046000610745878667ffffffffffffffff16611438565b815260208101919091526040016000205491505b509250929050565b60065460a060020a900460ff1681565b60408051808201909152600881527f5175617261736869000000000000000000000000000000000000000000000000602082015290565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b6006546000908190600160a060020a0316331461082a57600080fd5b60065460a060020a900460ff161561084157600080fd5b600154610854908563ffffffff61147616565b60015561086b8567ffffffffffffffff8516611438565b60008181526004602052604090205490915061088d908563ffffffff61147616565b600082815260046020908152604080832093909355600160a060020a03881682526005905220546108c4908563ffffffff61147616565b600160a060020a0386166000908152600560205260409020556108e78584611483565b604080518581529051600160a060020a038716917f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885919081900360200190a26040805167ffffffffffffffff85168152602081018690528151600160a060020a038816927f2ecd071e4d10ed2221b04636ed0724cce66a873aa98c1a31b4bb0e6846d3aab4928290030190a2604080518581529051600160a060020a0387169133916000805160206119ec8339815191529181900360200190a3506001949350505050565b600654760100000000000000000000000000000000000000000000900460ff1681565b60006109da8261161d565b92915050565b60015490565b60408051808201909152600881527f5175617261736869000000000000000000000000000000000000000000000000602082015281565b60065460009060a860020a900460ff1615610a3757600080fd5b610a42848484611638565b949350505050565b60408051808201909152600381527f5155410000000000000000000000000000000000000000000000000000000000602082015281565b601290565b6000600160a060020a0384161515610a9d57600080fd5b33600090815260208190526040902054831115610ab957600080fd5b33600090815260208190526040902054610ad9908463ffffffff61179d16565b33600090815260208190526040902055610afd8467ffffffffffffffff8416611438565b600081815260046020526040902054909150610b1f908463ffffffff61147616565b600082815260046020908152604080832093909355600160a060020a0387168252600590522054610b56908463ffffffff61147616565b600160a060020a038516600090815260056020526040902055610b798483611483565b604080518481529051600160a060020a0386169133916000805160206119ec8339815191529181900360200190a36040805167ffffffffffffffff84168152602081018590528151600160a060020a038716927f2ecd071e4d10ed2221b04636ed0724cce66a873aa98c1a31b4bb0e6846d3aab4928290030190a250505050565b600654600160a060020a03163314610c1157600080fd5b60065460a860020a900460ff161515610c2957600080fd5b6006805475ff000000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b600654600090600160a060020a03163314610c8d57600080fd5b60065460a060020a900460ff1615610ca457600080fd5b600154610cb7908363ffffffff61147616565b600155600160a060020a038316600090815260208190526040902054610ce3908363ffffffff61147616565b600160a060020a03841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000916000805160206119ec8339815191529181900360200190a350600192915050565b610d7533826117af565b50565b670de0b6b3a764000081565b601281565b6000806000610d993360006106d4565b67ffffffffffffffff909116925090505b8115801590610db857508142115b15610de957610dc5610eee565b91820191610dd43360006106d4565b67ffffffffffffffff90911692509050610daa565b505090565b60065460a860020a900460ff1681565b336000908152600260209081526040808320600160a060020a038616845290915281205480831115610e5357336000908152600260209081526040808320600160a060020a0388168452909152812055610e88565b610e63818463ffffffff61179d16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000806000806000610f01336000611438565b60008181526003602052604090205490955067ffffffffffffffff169350831515610f2b57600080fd5b8367ffffffffffffffff164267ffffffffffffffff16111515610f4d57600080fd5b610f61338567ffffffffffffffff16611438565b600081815260036020908152604080832054600483528184208054908590553385529284905292205492955067ffffffffffffffff90911693509150610fad908263ffffffff61147616565b3360009081526020818152604080832093909355600590522054610fd7908263ffffffff61179d16565b3360009081526005602052604090205567ffffffffffffffff8216151561101a576000858152600360205260409020805467ffffffffffffffff19169055611054565b600085815260036020526040808220805467ffffffffffffffff861667ffffffffffffffff19918216179091558583529120805490911690555b60408051828152905133917fb21fb52d5749b80f3182f8c6992236b5e5576681880914484d7f4c9b062e619e919081900360200190a25050505050565b600160a060020a0381166000908152600560205260408120546110b38361161d565b0192915050565b600654600160a060020a031633146110d157600080fd5b600654604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26006805473ffffffffffffffffffffffffffffffffffffffff19169055565b73160444cb772e871138e33c5259e20f7af0b44b3381565b600654600090600160a060020a0316331461115a57600080fd5b60065460a060020a900460ff161561117157600080fd5b6006805474ff0000000000000000000000000000000000000000191660a060020a1790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600654600160a060020a031633146111db57600080fd5b60065460a860020a900460ff16156111f257600080fd5b6006805475ff000000000000000000000000000000000000000000191660a860020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600654600160a060020a031681565b60408051808201909152600381527f5155410000000000000000000000000000000000000000000000000000000000602082015290565b60065460009060a860020a900460ff16156112a257600080fd5b6112ac838361189e565b9392505050565b600080600360006112c5856000611438565b815260208101919091526040016000205467ffffffffffffffff1690505b67ffffffffffffffff81161561133357600190910190600360006113118567ffffffffffffffff8516611438565b815260208101919091526040016000205467ffffffffffffffff1690506112e3565b50919050565b336000908152600260209081526040808320600160a060020a038616845290915281205461136d908363ffffffff61147616565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a031660009081526005602052604090205490565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600654600160a060020a0316331461142f57600080fd5b610d758161196d565b67ffffffffffffffff166801000000000000000091909102177f57495348000000000000000000000000000000000000000000000000000000001790565b818101828110156109da57fe5b6000808080804267ffffffffffffffff87161161149f57600080fd5b6114b3878767ffffffffffffffff16611438565b94506114c0876000611438565b60008181526003602052604090205490945067ffffffffffffffff169250821515611513576000848152600360205260409020805467ffffffffffffffff191667ffffffffffffffff8816179055611614565b611527878467ffffffffffffffff16611438565b91505b67ffffffffffffffff83161580159061155657508267ffffffffffffffff168667ffffffffffffffff16115b1561158f575060008181526003602052604090205490925067ffffffffffffffff908116918391166115888784611438565b915061152a565b8267ffffffffffffffff168667ffffffffffffffff1614156115b057611614565b67ffffffffffffffff8316156115ea576000858152600360205260409020805467ffffffffffffffff191667ffffffffffffffff85161790555b6000848152600360205260409020805467ffffffffffffffff191667ffffffffffffffff88161790555b50505050505050565b600160a060020a031660009081526020819052604090205490565b6000600160a060020a038316151561164f57600080fd5b600160a060020a03841660009081526020819052604090205482111561167457600080fd5b600160a060020a03841660009081526002602090815260408083203384529091529020548211156116a457600080fd5b600160a060020a0384166000908152602081905260409020546116cd908363ffffffff61179d16565b600160a060020a038086166000908152602081905260408082209390935590851681522054611702908363ffffffff61147616565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054611744908363ffffffff61179d16565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391926000805160206119ec833981519152929181900390910190a35060019392505050565b6000828211156117a957fe5b50900390565b600160a060020a0382166000908152602081905260409020548111156117d457600080fd5b600160a060020a0382166000908152602081905260409020546117fd908263ffffffff61179d16565b600160a060020a038316600090815260208190526040902055600154611829908263ffffffff61179d16565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516916000805160206119ec8339815191529181900360200190a35050565b6000600160a060020a03831615156118b557600080fd5b336000908152602081905260409020548211156118d157600080fd5b336000908152602081905260409020546118f1908363ffffffff61179d16565b3360009081526020819052604080822092909255600160a060020a03851681522054611923908363ffffffff61147616565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233926000805160206119ec8339815191529281900390910190a350600192915050565b600160a060020a038116151561198257600080fd5b600654604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582097475aeece568a6c7f41e90a46c6fcb8637d4cd9b577da2be7e2f391cb0859250029

Deployed Bytecode Sourcemap

21463:1706:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21404:45;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21404:45:0;;;;;;;;;;;;;;;;;;;;;;14241:355;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;14241:355:0;-1:-1:-1;;;;;14241:355:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11231:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11231:35:0;;;;21728:87;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21728:87: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;21728:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6871:192;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6871:192:0;-1:-1:-1;;;;;6871:192:0;;;;;;;20419:535;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;20419:535:0;-1:-1:-1;;;;;20419:535:0;;;;;;;;;;;21587:31;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21587:31:0;;;;13348:128;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;13348:128:0;-1:-1:-1;;;;;13348:128:0;;;;;;;;;;;;;;;;;;;;;3679:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3679:85:0;;;;21166:46;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21166:46:0;;;;22036:188;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;22036:188:0;-1:-1:-1;;;;;22036:188:0;;;;;;;;;;;;21219:43;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21219:43:0;;;;21924:104;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21924:104:0;;;;;;;;;;;;;;;;;;;;;;;14970:547;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;14970:547:0;-1:-1:-1;;;;;14970:547:0;;;;;;;;;;;;;19739:95;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19739:95:0;;;;11668:326;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11668:326:0;-1:-1:-1;;;;;11668:326:0;;;;;;;18388:75;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;18388:75:0;;;;;21089:68;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21089:68:0;;;;20988:40;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20988:40:0;;;;16520:357;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16520:357:0;;;;19118:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19118:26:0;;;;8799:440;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8799:440:0;-1:-1:-1;;;;;8799:440:0;;;;;;;15597:756;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15597:756:0;;;;12951:148;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12951:148:0;-1:-1:-1;;;;;12951:148:0;;;;;10087:114;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10087:114:0;;;;21311:80;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21311:80:0;;;;;;;;-1:-1:-1;;;;;21311:80:0;;;;;;;;;;;;;;12114:144;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12114:144:0;;;;19559:93;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19559:93:0;;;;9469:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9469:20:0;;;;21823:93;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21823:93:0;;;;22232:158;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;22232:158:0;-1:-1:-1;;;;;22232:158:0;;;;;;;13726:249;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;13726:249:0;-1:-1:-1;;;;;13726:249:0;;;;;21035:47;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21035:47:0;;;;8021:304;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8021:304:0;-1:-1:-1;;;;;8021:304:0;;;;;;;13484:130;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;13484:130:0;-1:-1:-1;;;;;13484:130:0;;;;;7390:162;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7390:162:0;-1:-1:-1;;;;;7390:162:0;;;;;;;;;;10369:105;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10369:105:0;-1:-1:-1;;;;;10369:105:0;;;;;21404:45;21444:5;21404:45;:::o;14241:355::-;14311:15;;;14354:180;14375:6;14384:1;14375:10;14371:1;:14;14354:180;;;14418:6;:30;14425:22;14431:5;14438:8;14425:22;;:5;:22::i;:::-;14418:30;;;;;;;;;;;;;;;;;-1:-1:-1;14467:13:0;;14463:60;;;14501:7;;14463:60;14387:3;;14354:180;;;14555:9;:33;14565:22;14571:5;14578:8;14565:22;;:5;:22::i;:::-;14555:33;;;;;;;;;;;;;;;-1:-1:-1;14241:355:0;;;;;;;:::o;11231:35::-;;;-1:-1:-1;;;11231:35:0;;;;;:::o;21728:87::-;21797:10;;;;;;;;;;;;;;;;;21728:87;:::o;6871:192::-;6959:10;6938:4;6951:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6951:29:0;;;;;;;;;;;:38;;;7001;;;;;;;6938:4;;6951:29;;6959:10;;7001:38;;;;;;;;-1:-1:-1;7053:4:0;6871:192;;;;:::o;20419:535::-;9972:5;;20518:4;;;;-1:-1:-1;;;;;9972:5:0;9958:10;:19;9950:28;;;;;;11310:15;;-1:-1:-1;;;11310:15:0;;;;11309:16;11301:25;;;;;;20550:12;;:25;;20567:7;20550:25;:16;:25;:::i;:::-;20535:12;:40;20609:18;20615:3;20609:18;;;:5;:18::i;:::-;20662:21;;;;:9;:21;;;;;;20588:39;;-1:-1:-1;20662:34:0;;20688:7;20662:34;:25;:34;:::i;:::-;20638:21;;;;:9;:21;;;;;;;;:58;;;;-1:-1:-1;;;;;20730:20:0;;;;:15;:20;;;;:33;;20755:7;20730:33;:24;:33;:::i;:::-;-1:-1:-1;;;;;20707:20:0;;;;;;:15;:20;;;;;:56;20776:19;20723:3;20788:6;20776;:19::i;:::-;20811:18;;;;;;;;-1:-1:-1;;;;;20811:18:0;;;;;;;;;;;;;20845:29;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20845:29:0;;;;;;;;;;;20890:34;;;;;;;;-1:-1:-1;;;;;20890:34:0;;;20899:10;;-1:-1:-1;;;;;;;;;;;20890:34:0;;;;;;;;-1:-1:-1;20942:4:0;;20419:535;-1:-1:-1;;;;20419:535:0:o;21587:31::-;;;;;;;;;:::o;13348:128::-;13410:15;13445:23;13461:6;13445:15;:23::i;:::-;13438:30;13348:128;-1:-1:-1;;13348:128:0:o;3679:85::-;3746:12;;3679:85;:::o;21166:46::-;;;;;;;;;;;;;;;;;;;:::o;22036:188::-;22153:6;;22118:13;;-1:-1:-1;;;22153:6:0;;;;22152:7;22144:16;;;;;;22178:38;22197:5;22204:3;22209:6;22178:18;:38::i;:::-;22171:45;22036:188;-1:-1:-1;;;;22036:188:0:o;21219:43::-;;;;;;;;;;;;;;;;;;;:::o;21924:104::-;21080:2;21924:104;:::o;14970:547::-;15207:18;-1:-1:-1;;;;;15056:17:0;;;;15048:26;;;;;;15113:10;15104:8;:20;;;;;;;;;;;15093:31;;;15085:40;;;;;;15170:10;15161:8;:20;;;;;;;;;;;:33;;15186:7;15161:33;:24;:33;:::i;:::-;15147:10;15138:8;:20;;;;;;;;;;:56;15228:18;15234:3;15228:18;;;:5;:18::i;:::-;15281:21;;;;:9;:21;;;;;;15207:39;;-1:-1:-1;15281:34:0;;15307:7;15281:34;:25;:34;:::i;:::-;15257:21;;;;:9;:21;;;;;;;;:58;;;;-1:-1:-1;;;;;15349:20:0;;;;:15;:20;;;;:33;;15374:7;15349:33;:24;:33;:::i;:::-;-1:-1:-1;;;;;15326:20:0;;;;;;:15;:20;;;;;:56;15395:19;15342:3;15407:6;15395;:19::i;:::-;15430:34;;;;;;;;-1:-1:-1;;;;;15430:34:0;;;15439:10;;-1:-1:-1;;;;;;;;;;;15430:34:0;;;;;;;;15480:29;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15480:29:0;;;;;;;;;;;14970:547;;;;:::o;19739:95::-;9972:5;;-1:-1:-1;;;;;9972:5:0;9958:10;:19;9950:28;;;;;;19454:6;;-1:-1:-1;;;19454:6:0;;;;19446:15;;;;;;;;19793:6;:14;;-1:-1:-1;;19793:14:0;;;19819:9;;;;19802:5;;19819:9;19739:95::o;11668:326::-;11404:5;;11789:4;;-1:-1:-1;;;;;11404:5:0;11390:10;:19;11382:28;;;;;;11310:15;;-1:-1:-1;;;11310:15:0;;;;11309:16;11301:25;;;;;;11820:12;;:25;;11837:7;11820:25;:16;:25;:::i;:::-;11805:12;:40;-1:-1:-1;;;;;11868:13:0;;:8;:13;;;;;;;;;;;:26;;11886:7;11868:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;11852:13:0;;:8;:13;;;;;;;;;;;;:42;;;;11906:18;;;;;;;11852:13;;11906:18;;;;;;;;;11936:34;;;;;;;;-1:-1:-1;;;;;11936:34:0;;;11953:1;;-1:-1:-1;;;;;;;;;;;11936:34:0;;;;;;;;-1:-1:-1;11984:4:0;11668:326;;;;:::o;18388:75::-;18432:25;18438:10;18450:6;18432:5;:25::i;:::-;18388:75;:::o;21089:68::-;21137:20;21089:68;:::o;20988:40::-;21026:2;20988:40;:::o;16520:357::-;16558:11;16582:12;16605;16649:26;16661:10;16673:1;16649:11;:26::i;:::-;16628:47;;;;;-1:-1:-1;16628:47:0;-1:-1:-1;16686:184:0;16693:12;;;;;:41;;;16727:7;16709:15;:25;16693:41;16686:184;;;16751:13;:11;:13::i;:::-;16779:17;;;;16832:26;16844:10;16856:1;16832:11;:26::i;:::-;16811:47;;;;;-1:-1:-1;16811:47:0;-1:-1:-1;16686:184:0;;;16520:357;;;:::o;19118:26::-;;;-1:-1:-1;;;19118:26:0;;;;;:::o;8799:440::-;8947:10;8907:4;8939:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;8939:29:0;;;;;;;;;;8979:27;;;8975:168;;;9025:10;9049:1;9017:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;9017:29:0;;;;;;;;;:33;8975:168;;;9105:30;:8;9118:16;9105:30;:12;:30;:::i;:::-;9081:10;9073:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;9073:29:0;;;;;;;;;:62;8975:168;9163:10;9185:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;9154:61:0;;9185:29;;;;;;;;;;;9154:61;;;;;;;;;9163:10;9154:61;;;;;;;;;;;-1:-1:-1;9229:4:0;;8799:440;-1:-1:-1;;;8799:440:0:o;15597:756::-;15638:15;15687:11;15806:18;15863:11;15908;15656:20;15662:10;15674:1;15656:5;:20::i;:::-;15701:15;;;;:6;:15;;;;;;15638:38;;-1:-1:-1;15701:15:0;;;-1:-1:-1;15735:9:0;;;15727:18;;;;;;15790:4;15764:30;;15771:15;15764:30;;;15756:39;;;;;;;;15827:23;15833:10;15845:4;15827:23;;:5;:23::i;:::-;15877:18;;;;:6;:18;;;;;;;;;15922:9;:21;;;;;;;15954:28;;;;16027:10;16018:20;;;;;;;;;15806:44;;-1:-1:-1;15877:18:0;;;;;-1:-1:-1;15922:21:0;-1:-1:-1;16018:32:0;;15922:21;16018:32;:24;:32;:::i;:::-;16004:10;15995:8;:20;;;;;;;;;;;:55;;;;16091:15;:27;;;;:39;;16123:6;16091:39;:31;:39;:::i;:::-;16077:10;16061:27;;;;:15;:27;;;;;:69;16147:9;;;;16143:159;;;16180:15;;;;:6;:15;;;;;16173:22;;-1:-1:-1;;16173:22:0;;;16143:159;;;16228:15;;;;:6;:15;;;;;;:22;;;;;-1:-1:-1;;16228:22:0;;;;;;;16272:18;;;;;16265:25;;;;;;;16143:159;16317:28;;;;;;;;16326:10;;16317:28;;;;;;;;;;15597:756;;;;;:::o;12951:148::-;-1:-1:-1;;;;;13068:23:0;;13007:15;13068:23;;;:15;:23;;;;;;13042;13084:6;13042:15;:23::i;:::-;:49;;12951:148;-1:-1:-1;;12951:148:0:o;10087:114::-;9972:5;;-1:-1:-1;;;;;9972:5:0;9958:10;:19;9950:28;;;;;;10164:5;;10145:25;;-1:-1:-1;;;;;10164:5:0;;;;10145:25;;10164:5;;10145:25;10177:5;:18;;-1:-1:-1;;10177:18:0;;;10087:114::o;21311:80::-;21349:42;21311:80;:::o;12114:144::-;9972:5;;12173:4;;-1:-1:-1;;;;;9972:5:0;9958:10;:19;9950:28;;;;;;11310:15;;-1:-1:-1;;;11310:15:0;;;;11309:16;11301:25;;;;;;12186:15;:22;;-1:-1:-1;;12186:22:0;-1:-1:-1;;;12186:22:0;;;12220:14;;;;12186:22;;12220:14;-1:-1:-1;12248:4:0;12114:144;:::o;19559:93::-;9972:5;;-1:-1:-1;;;;;9972:5:0;9958:10;:19;9950:28;;;;;;19294:6;;-1:-1:-1;;;19294:6:0;;;;19293:7;19285:16;;;;;;19614:6;:13;;-1:-1:-1;;19614:13:0;-1:-1:-1;;;19614:13:0;;;19639:7;;;;19614:13;;19639:7;19559:93::o;9469:20::-;;;-1:-1:-1;;;;;9469:20:0;;:::o;21823:93::-;21896:12;;;;;;;;;;;;;;;;;21823:93;:::o;22232:158::-;22330:6;;22295:13;;-1:-1:-1;;;22330:6:0;;;;22329:7;22321:16;;;;;;22355:27;22370:3;22375:6;22355:14;:27::i;:::-;22348:34;22232:158;-1:-1:-1;;;22232:158:0:o;13726:249::-;13785:10;13808:14;13825:6;:23;13832:15;13838:5;13845:1;13832:5;:15::i;:::-;13825:23;;;;;;;;;;;;;;;;;-1:-1:-1;13859:109:0;13866:12;;;;13859:109;;13895:7;;;;;13927:6;:29;13934:21;13940:5;13934:21;;;:5;:21::i;:::-;13927:29;;;;;;;;;;;;;;;;;-1:-1:-1;13859:109:0;;;13726:249;;;;:::o;8021:304::-;8189:10;8124:4;8181:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;8181:29:0;;;;;;;;;;:46;;8215:11;8181:46;:33;:46;:::i;:::-;8148:10;8140:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;8140:29:0;;;;;;;;;;;;:88;;;8240:61;;;;;;8140:29;;8240:61;;;;;;;;;;;-1:-1:-1;8315:4:0;8021:304;;;;:::o;13484:130::-;-1:-1:-1;;;;;13583:23:0;13548:15;13583:23;;;:15;:23;;;;;;;13484:130::o;7390:162::-;-1:-1:-1;;;;;7521:15:0;;;7495:7;7521:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;7390:162::o;10369:105::-;9972:5;;-1:-1:-1;;;;;9972:5:0;9958:10;:19;9950:28;;;;;;10439:29;10458:9;10439:18;:29::i;16885:387::-;17234:18;17220:33;17164:19;17153:31;;;;17209:45;17031:66;17209:45;;17117:148::o;3246:127::-;3326:5;;;3345:6;;;;3338:14;;;17280:789;17388:11;;;;;17361:15;17352:24;;;;17344:33;;;;;;17402:18;17408:3;17413:6;17402:18;;:5;:18::i;:::-;17388:32;-1:-1:-1;17451:21:0;17457:3;17469:1;17451:5;:21::i;:::-;17497:17;;;;:6;:17;;;;;;17431:41;;-1:-1:-1;17497:17:0;;;-1:-1:-1;17531:9:0;;17527:89;;;17557:17;;;;:6;:17;;;;;:26;;-1:-1:-1;;17557:26:0;;;;;;;17598:7;;17527:89;17646:16;17652:3;17657:4;17646:16;;:5;:16::i;:::-;17628:34;;17697:189;17704:9;;;;;;;:26;;;17726:4;17717:13;;:6;:13;;;17704:26;17697:189;;;-1:-1:-1;17818:15:0;;;;:6;:15;;;;;;17787:7;;-1:-1:-1;17747:13:0;17818:15;;;;17787:7;;17747:13;17858:16;17864:3;17818:15;17858:5;:16::i;:::-;17848:26;;17697:189;;;17912:4;17902:14;;:6;:14;;;17898:53;;;17933:7;;17898:53;17967:9;;;;17963:60;;17993:11;;;;:6;:11;;;;;:18;;-1:-1:-1;;17993:18:0;;;;;;;17963:60;18035:17;;;;:6;:17;;;;;:26;;-1:-1:-1;;18035:26:0;;;;;;;17280:789;;;;;;;;:::o;4463:101::-;-1:-1:-1;;;;;4542:16:0;4519:7;4542:16;;;;;;;;;;;;4463:101::o;5749:487::-;5861:4;-1:-1:-1;;;;;5885:17:0;;;;5877:26;;;;;;-1:-1:-1;;;;;5928:15:0;;:8;:15;;;;;;;;;;;5918:25;;;5910:34;;;;;;-1:-1:-1;;;;;5969:14:0;;;;;;:7;:14;;;;;;;;5984:10;5969:26;;;;;;;;5959:36;;;5951:45;;;;;;-1:-1:-1;;;;;6023:15:0;;:8;:15;;;;;;;;;;;:27;;6043:6;6023:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;6005:15:0;;;:8;:15;;;;;;;;;;;:45;;;;6073:13;;;;;;;:25;;6091:6;6073:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;6057:13:0;;;:8;:13;;;;;;;;;;;:41;;;;6134:14;;;;;:7;:14;;;;;6149:10;6134:26;;;;;;;:38;;6165:6;6134:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;6105:14:0;;;;;;;:7;:14;;;;;;;;6120:10;6105:26;;;;;;;;:67;;;;6184:28;;;;;;;;;;;6105:14;;-1:-1:-1;;;;;;;;;;;6184:28:0;;;;;;;;;;-1:-1:-1;6226:4:0;5749:487;;;;;:::o;3066:113::-;3124:7;3147:6;;;;3140:14;;;;-1:-1:-1;3168:5:0;;;3066:113::o;18469:447::-;-1:-1:-1;;;;;18548:14:0;;:8;:14;;;;;;;;;;;18538:24;;;18530:33;;;;;;-1:-1:-1;;;;;18762:14:0;;:8;:14;;;;;;;;;;;:26;;18781:6;18762:26;:18;:26;:::i;:::-;-1:-1:-1;;;;;18745:14:0;;:8;:14;;;;;;;;;;:43;18810:12;;:24;;18827:6;18810:24;:16;:24;:::i;:::-;18795:12;:39;18846:18;;;;;;;;-1:-1:-1;;;;;18846:18:0;;;;;;;;;;;;;18876:34;;;;;;;;18899:1;;-1:-1:-1;;;;;18876:34:0;;;-1:-1:-1;;;;;;;;;;;18876:34:0;;;;;;;;18469:447;;:::o;3925:329::-;3988:4;-1:-1:-1;;;;;4009:17:0;;;;4001:26;;;;;;4061:10;4052:8;:20;;;;;;;;;;;4042:30;;;4034:39;;;;;;4114:10;4105:8;:20;;;;;;;;;;;:32;;4130:6;4105:32;:24;:32;:::i;:::-;4091:10;4082:8;:20;;;;;;;;;;;:55;;;;-1:-1:-1;;;;;4160:13:0;;;;;;:25;;4178:6;4160:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;4144:13:0;;:8;:13;;;;;;;;;;;;:41;;;;4197:33;;;;;;;4144:13;;4206:10;;-1:-1:-1;;;;;;;;;;;4197:33:0;;;;;;;;;-1:-1:-1;4244:4:0;3925:329;;;;:::o;10615:175::-;-1:-1:-1;;;;;10686:23:0;;;;10678:32;;;;;;10743:5;;10722:38;;-1:-1:-1;;;;;10722:38:0;;;;10743:5;;10722:38;;10743:5;;10722:38;10767:5;:17;;-1:-1:-1;;10767:17:0;-1:-1:-1;;;;;10767:17:0;;;;;;;;;;10615:175::o

Swarm Source

bzzr://97475aeece568a6c7f41e90a46c6fcb8637d4cd9b577da2be7e2f391cb085925

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

A multi-chain crypto wallet.

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.