ETH Price: $2,641.82 (+1.04%)

Contract

0x0f1e4C4330bD0C43e5Be3E7657412BBd743BBC13
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer131315142021-08-31 5:37:081144 days ago1630388228IN
Supreme Finance: HYPEX Token
0 ETH0.0027355266.18260568
Transfer131259122021-08-30 8:54:301145 days ago1630313670IN
Supreme Finance: HYPEX Token
0 ETH0.0037347863.90250124
Transfer131243892021-08-30 3:18:541146 days ago1630293534IN
Supreme Finance: HYPEX Token
0 ETH0.0069975110.66219318
Transfer131243892021-08-30 3:18:541146 days ago1630293534IN
Supreme Finance: HYPEX Token
0 ETH0.00699883110.66219318
Transfer128619352021-07-20 6:55:331186 days ago1626764133IN
Supreme Finance: HYPEX Token
0 ETH0.0013839930
Transfer128619292021-07-20 6:54:351186 days ago1626764075IN
Supreme Finance: HYPEX Token
0 ETH0.0011994526
Transfer128617812021-07-20 6:20:471186 days ago1626762047IN
Supreme Finance: HYPEX Token
0 ETH0.0012014219
Transfer128617642021-07-20 6:18:381186 days ago1626761918IN
Supreme Finance: HYPEX Token
0 ETH0.0010961127
Transfer128617362021-07-20 6:13:501186 days ago1626761630IN
Supreme Finance: HYPEX Token
0 ETH0.0012179130
Transfer128617302021-07-20 6:12:491186 days ago1626761569IN
Supreme Finance: HYPEX Token
0 ETH0.0010961127
0x60806040128615942021-07-20 5:43:221186 days ago1626759802IN
 Contract Creation
0 ETH0.0752971157

Advanced mode:
Parent Transaction Hash Block From To
View All Internal Transactions
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xA81db53a...68ffb8139
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
HYPEXToken

Compiler Version
v0.4.26+commit.4563c3fc

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-04-05
*/

pragma solidity ^0.4.26;

/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }
        uint256 c = a * b;
        assert(c / a == b);
        return c;
    }

    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 c;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        assert(b <= a);
        return a - b;
    }

    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        assert(c >= a);
        return c;
    }
}

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

    /**
      * @dev The Ownable constructor sets the original `owner` of the contract to the sender
      * account.
      */
    function Ownable() 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 transfer control of the contract to a newOwner.
    * @param newOwner The address to transfer ownership to.
    */
    function transferOwnership(address newOwner) public onlyOwner {
        if (newOwner != address(0)) {
            owner = newOwner;
        }
    }

}

/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20Basic {
    uint public _totalSupply;
    function totalSupply() public constant returns (uint);
    function balanceOf(address who) public constant returns (uint);
    function transfer(address to, uint value) public;
    event Transfer(address indexed from, address indexed to, uint value);
}

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 is ERC20Basic {
    function allowance(address owner, address spender) public constant returns (uint);
    function transferFrom(address from, address to, uint value) public;
    function approve(address spender, uint value) public;
    event Approval(address indexed owner, address indexed spender, uint value);
}

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

    mapping(address => uint) public balances;

    // additional variables for use if transaction fees ever became necessary
    uint public basisPointsRate = 0;
    uint public maximumFee = 0;

    /**
    * @dev Fix for the ERC20 short address attack.
    */
    modifier onlyPayloadSize(uint size) {
        require(!(msg.data.length < size + 4));
        _;
    }

    /**
    * @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, uint _value) public onlyPayloadSize(2 * 32) {
        uint fee = (_value.mul(basisPointsRate)).div(10000);
        if (fee > maximumFee) {
            fee = maximumFee;
        }
        uint sendAmount = _value.sub(fee);
        balances[msg.sender] = balances[msg.sender].sub(_value);
        balances[_to] = balances[_to].add(sendAmount);
        if (fee > 0) {
            balances[owner] = balances[owner].add(fee);
            Transfer(msg.sender, owner, fee);
        }
        Transfer(msg.sender, _to, sendAmount);
    }

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

}

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

    mapping (address => mapping (address => uint)) public allowed;

    uint public constant MAX_UINT = 2**256 - 1;

    /**
    * @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 uint the amount of tokens to be transferred
    */
    function transferFrom(address _from, address _to, uint _value) public onlyPayloadSize(3 * 32) {
        var _allowance = allowed[_from][msg.sender];

        // Check is not needed because sub(_allowance, _value) will already throw if this condition is not met
        // if (_value > _allowance) throw;

        uint fee = (_value.mul(basisPointsRate)).div(10000);
        if (fee > maximumFee) {
            fee = maximumFee;
        }
        if (_allowance < MAX_UINT) {
            allowed[_from][msg.sender] = _allowance.sub(_value);
        }
        uint sendAmount = _value.sub(fee);
        balances[_from] = balances[_from].sub(_value);
        balances[_to] = balances[_to].add(sendAmount);
        if (fee > 0) {
            balances[owner] = balances[owner].add(fee);
            Transfer(_from, owner, fee);
        }
        Transfer(_from, _to, sendAmount);
    }

    /**
    * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
    * @param _spender The address which will spend the funds.
    * @param _value The amount of tokens to be spent.
    */
    function approve(address _spender, uint _value) public onlyPayloadSize(2 * 32) {

        // To change the approve amount you first have to reduce the addresses`
        //  allowance to zero by calling `approve(_spender, 0)` if it is not
        //  already 0 to mitigate the race condition described here:
        //  https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
        require(!((_value != 0) && (allowed[msg.sender][_spender] != 0)));

        allowed[msg.sender][_spender] = _value;
        Approval(msg.sender, _spender, _value);
    }

    /**
    * @dev Function to check the amount of tokens than 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 uint specifying the amount of tokens still available for the spender.
    */
    function allowance(address _owner, address _spender) public constant returns (uint remaining) {
        return allowed[_owner][_spender];
    }

}


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

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

contract BlackList is Ownable, BasicToken {

    /////// Getters to allow the same blacklist to be used also by other contracts (including upgraded Tether) ///////
    function getBlackListStatus(address _maker) external constant returns (bool) {
        return isBlackListed[_maker];
    }

    function getOwner() external constant returns (address) {
        return owner;
    }

    mapping (address => bool) public isBlackListed;
    
    function addBlackList (address _evilUser) public onlyOwner {
        isBlackListed[_evilUser] = true;
        AddedBlackList(_evilUser);
    }

    function removeBlackList (address _clearedUser) public onlyOwner {
        isBlackListed[_clearedUser] = false;
        RemovedBlackList(_clearedUser);
    }

    function destroyBlackFunds (address _blackListedUser) public onlyOwner {
        require(isBlackListed[_blackListedUser]);
        uint dirtyFunds = balanceOf(_blackListedUser);
        balances[_blackListedUser] = 0;
        _totalSupply -= dirtyFunds;
        DestroyedBlackFunds(_blackListedUser, dirtyFunds);
    }

    event DestroyedBlackFunds(address _blackListedUser, uint _balance);

    event AddedBlackList(address _user);

    event RemovedBlackList(address _user);

}

contract UpgradedStandardToken is StandardToken{
    // those methods are called by the legacy contract
    // and they must ensure msg.sender to be the contract address
    function transferByLegacy(address from, address to, uint value) public;
    function transferFromByLegacy(address sender, address from, address spender, uint value) public;
    function approveByLegacy(address from, address spender, uint value) public;
}

contract HYPEXToken is Pausable, StandardToken, BlackList {

    string public name;
    string public symbol;
    uint public decimals;
    address public upgradedAddress;
    bool public deprecated;

    //  The contract can be initialized with a number of tokens
    //  All the tokens are deposited to the owner address
    //
    // @param _balance Initial supply of the contract
    // @param _name Token Name
    // @param _symbol Token symbol
    // @param _decimals Token decimals
    function HYPEXToken(uint _initialSupply, string _name, string _symbol, uint _decimals) public {
        _totalSupply = _initialSupply;
        name = _name;
        symbol = _symbol;
        decimals = _decimals;
        balances[owner] = _initialSupply;
        deprecated = false;
    }

    // Forward ERC20 methods to upgraded contract if this one is deprecated
    function transfer(address _to, uint _value) public whenNotPaused {
        require(!isBlackListed[msg.sender]);
        if (deprecated) {
            return UpgradedStandardToken(upgradedAddress).transferByLegacy(msg.sender, _to, _value);
        } else {
            return super.transfer(_to, _value);
        }
    }

    // Forward ERC20 methods to upgraded contract if this one is deprecated
    function transferFrom(address _from, address _to, uint _value) public whenNotPaused {
        require(!isBlackListed[_from]);
        if (deprecated) {
            return UpgradedStandardToken(upgradedAddress).transferFromByLegacy(msg.sender, _from, _to, _value);
        } else {
            return super.transferFrom(_from, _to, _value);
        }
    }

    // Forward ERC20 methods to upgraded contract if this one is deprecated
    function balanceOf(address who) public constant returns (uint) {
        if (deprecated) {
            return UpgradedStandardToken(upgradedAddress).balanceOf(who);
        } else {
            return super.balanceOf(who);
        }
    }

    // Forward ERC20 methods to upgraded contract if this one is deprecated
    function approve(address _spender, uint _value) public onlyPayloadSize(2 * 32) {
        if (deprecated) {
            return UpgradedStandardToken(upgradedAddress).approveByLegacy(msg.sender, _spender, _value);
        } else {
            return super.approve(_spender, _value);
        }
    }

    // Forward ERC20 methods to upgraded contract if this one is deprecated
    function allowance(address _owner, address _spender) public constant returns (uint remaining) {
        if (deprecated) {
            return StandardToken(upgradedAddress).allowance(_owner, _spender);
        } else {
            return super.allowance(_owner, _spender);
        }
    }

    // deprecate current contract in favozhdlsur of a new one
    function deprecate(address _upgradedAddress) public onlyOwner {
        deprecated = true;
        upgradedAddress = _upgradedAddress;
        Deprecate(_upgradedAddress);
    }

    // deprecate current contract if favour of a new one
    function totalSupply() public constant returns (uint) {
        if (deprecated) {
            return StandardToken(upgradedAddress).totalSupply();
        } else {
            return _totalSupply;
        }
    }
   
    // Called when contract is deprecated
    event Deprecate(address newAddress);

}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_upgradedAddress","type":"address"}],"name":"deprecate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"deprecated","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_evilUser","type":"address"}],"name":"addBlackList","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"upgradedAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balances","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"maximumFee","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_maker","type":"address"}],"name":"getBlackListStatus","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowed","outputs":[{"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":"who","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"basisPointsRate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"isBlackListed","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_clearedUser","type":"address"}],"name":"removeBlackList","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"MAX_UINT","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"},{"constant":false,"inputs":[{"name":"_blackListedUser","type":"address"}],"name":"destroyBlackFunds","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_initialSupply","type":"uint256"},{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_decimals","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newAddress","type":"address"}],"name":"Deprecate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_blackListedUser","type":"address"},{"indexed":false,"name":"_balance","type":"uint256"}],"name":"DestroyedBlackFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_user","type":"address"}],"name":"AddedBlackList","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_user","type":"address"}],"name":"RemovedBlackList","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"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"}]

Deployed Bytecode

0x6080604052600436106101745763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146101795780630753c30c14610203578063095ea7b3146102265780630e136b191461024a5780630ecb93c01461027357806318160ddd1461029457806323b872dd146102bb57806326976e3f146102e557806327e235e314610316578063313ce56714610337578063353907141461034c5780633eaaf86b146103615780633f4ba83a1461037657806359bf1abe1461038b5780635c658165146103ac5780635c975abb146103d357806370a08231146103e85780638456cb5914610409578063893d20e81461041e5780638da5cb5b1461043357806395d89b4114610448578063a9059cbb1461045d578063dd62ed3e14610481578063dd644f72146104a8578063e47d6060146104bd578063e4997dc5146104de578063e5b5019a146104ff578063f2fde38b14610514578063f3bdc22814610535575b600080fd5b34801561018557600080fd5b5061018e610556565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101c85781810151838201526020016101b0565b50505050905090810190601f1680156101f55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561020f57600080fd5b50610224600160a060020a03600435166105e4565b005b34801561023257600080fd5b50610224600160a060020a036004351660243561067c565b34801561025657600080fd5b5061025f61073e565b604080519115158252519081900360200190f35b34801561027f57600080fd5b50610224600160a060020a036004351661074e565b3480156102a057600080fd5b506102a96107c0565b60408051918252519081900360200190f35b3480156102c757600080fd5b50610224600160a060020a036004358116906024351660443561087c565b3480156102f157600080fd5b506102fa610952565b60408051600160a060020a039092168252519081900360200190f35b34801561032257600080fd5b506102a9600160a060020a0360043516610961565b34801561034357600080fd5b506102a9610973565b34801561035857600080fd5b506102a9610979565b34801561036d57600080fd5b506102a961097f565b34801561038257600080fd5b50610224610985565b34801561039757600080fd5b5061025f600160a060020a03600435166109fb565b3480156103b857600080fd5b506102a9600160a060020a0360043581169060243516610a1d565b3480156103df57600080fd5b5061025f610a3a565b3480156103f457600080fd5b506102a9600160a060020a0360043516610a4a565b34801561041557600080fd5b50610224610b0a565b34801561042a57600080fd5b506102fa610b85565b34801561043f57600080fd5b506102fa610b94565b34801561045457600080fd5b5061018e610ba3565b34801561046957600080fd5b50610224600160a060020a0360043516602435610bfe565b34801561048d57600080fd5b506102a9600160a060020a0360043581169060243516610ce3565b3480156104b457600080fd5b506102a9610dae565b3480156104c957600080fd5b5061025f600160a060020a0360043516610db4565b3480156104ea57600080fd5b50610224600160a060020a0360043516610dc9565b34801561050b57600080fd5b506102a9610e38565b34801561052057600080fd5b50610224600160a060020a0360043516610e3e565b34801561054157600080fd5b50610224600160a060020a0360043516610e90565b6007805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105dc5780601f106105b1576101008083540402835291602001916105dc565b820191906000526020600020905b8154815290600101906020018083116105bf57829003601f168201915b505050505081565b600054600160a060020a031633146105fb57600080fd5b600a805460a060020a74ff0000000000000000000000000000000000000000199091161773ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03831690811790915560408051918252517fcc358699805e9a8b7f77b522628c7cb9abd07d9efb86b6fb616af1609036a99e916020908290030190a150565b6040604436101561068c57600080fd5b600a5460a060020a900460ff161561072f57600a54604080517faee92d33000000000000000000000000000000000000000000000000000000008152336004820152600160a060020a038681166024830152604482018690529151919092169163aee92d3391606480830192600092919082900301818387803b15801561071257600080fd5b505af1158015610726573d6000803e3d6000fd5b50505050610739565b6107398383610f3c565b505050565b600a5460a060020a900460ff1681565b600054600160a060020a0316331461076557600080fd5b600160a060020a038116600081815260066020908152604091829020805460ff19166001179055815192835290517f42e160154868087d6bfdc0ca23d96a1c1cfa32f1b72ba9ba27b69b98a0d819dc9281900390910190a150565b600a5460009060a060020a900460ff161561087457600a60009054906101000a9004600160a060020a0316600160a060020a03166318160ddd6040518163ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401602060405180830381600087803b15801561084157600080fd5b505af1158015610855573d6000803e3d6000fd5b505050506040513d602081101561086b57600080fd5b50519050610879565b506001545b90565b60005460a060020a900460ff161561089357600080fd5b600160a060020a03831660009081526006602052604090205460ff16156108b957600080fd5b600a5460a060020a900460ff161561094757600a54604080517f8b477adb000000000000000000000000000000000000000000000000000000008152336004820152600160a060020a03868116602483015285811660448301526064820185905291519190921691638b477adb91608480830192600092919082900301818387803b15801561071257600080fd5b610739838383610fea565b600a54600160a060020a031681565b60026020526000908152604090205481565b60095481565b60045481565b60015481565b600054600160a060020a0316331461099c57600080fd5b60005460a060020a900460ff1615156109b457600080fd5b6000805474ff0000000000000000000000000000000000000000191681556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b339190a1565b600160a060020a03811660009081526006602052604090205460ff165b919050565b600560209081526000928352604080842090915290825290205481565b60005460a060020a900460ff1681565b600a5460009060a060020a900460ff1615610afa57600a54604080517f70a08231000000000000000000000000000000000000000000000000000000008152600160a060020a038581166004830152915191909216916370a082319160248083019260209291908290030181600087803b158015610ac757600080fd5b505af1158015610adb573d6000803e3d6000fd5b505050506040513d6020811015610af157600080fd5b50519050610a18565b610b03826111e6565b9050610a18565b600054600160a060020a03163314610b2157600080fd5b60005460a060020a900460ff1615610b3857600080fd5b6000805474ff0000000000000000000000000000000000000000191660a060020a1781556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff6259190a1565b600054600160a060020a031690565b600054600160a060020a031681565b6008805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105dc5780601f106105b1576101008083540402835291602001916105dc565b60005460a060020a900460ff1615610c1557600080fd5b3360009081526006602052604090205460ff1615610c3257600080fd5b600a5460a060020a900460ff1615610cd557600a54604080517f6e18980a000000000000000000000000000000000000000000000000000000008152336004820152600160a060020a0385811660248301526044820185905291519190921691636e18980a91606480830192600092919082900301818387803b158015610cb857600080fd5b505af1158015610ccc573d6000803e3d6000fd5b50505050610cdf565b610cdf8282611201565b5050565b600a5460009060a060020a900460ff1615610d9b57600a54604080517fdd62ed3e000000000000000000000000000000000000000000000000000000008152600160a060020a03868116600483015285811660248301529151919092169163dd62ed3e9160448083019260209291908290030181600087803b158015610d6857600080fd5b505af1158015610d7c573d6000803e3d6000fd5b505050506040513d6020811015610d9257600080fd5b50519050610da8565b610da5838361136e565b90505b92915050565b60035481565b60066020526000908152604090205460ff1681565b600054600160a060020a03163314610de057600080fd5b600160a060020a038116600081815260066020908152604091829020805460ff19169055815192835290517fd7e9ec6e6ecd65492dce6bf513cd6867560d49544421d0783ddf06e76c24470c9281900390910190a150565b60001981565b600054600160a060020a03163314610e5557600080fd5b600160a060020a03811615610e8d576000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b60008054600160a060020a03163314610ea857600080fd5b600160a060020a03821660009081526006602052604090205460ff161515610ecf57600080fd5b610ed882610a4a565b600160a060020a0383166000818152600260209081526040808320929092556001805485900390558151928352820183905280519293507f61e6e66b0d6339b2980aecc6ccc0039736791f0ccde9ed512e789a7fbdd698c692918290030190a15050565b60406044361015610f4c57600080fd5b8115801590610f7d5750336000908152600560209081526040808320600160a060020a038716845290915290205415155b15610f8757600080fd5b336000818152600560209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a3505050565b6000808060606064361015610ffe57600080fd5b600160a060020a038716600090815260056020908152604080832033845290915290205460035490945061104d906127109061104190889063ffffffff61139916565b9063ffffffff6113cf16565b925060045483111561105f5760045492505b60001984101561109e57611079848663ffffffff6113e616565b600160a060020a03881660009081526005602090815260408083203384529091529020555b6110ae858463ffffffff6113e616565b600160a060020a0388166000908152600260205260409020549092506110da908663ffffffff6113e616565b600160a060020a03808916600090815260026020526040808220939093559088168152205461110f908363ffffffff6113f816565b600160a060020a0387166000908152600260205260408120919091558311156111a45760008054600160a060020a031681526002602052604090205461115b908463ffffffff6113f816565b60008054600160a060020a0390811682526002602090815260408084209490945591548351878152935190821693918b1692600080516020611408833981519152928290030190a35b85600160a060020a031687600160a060020a0316600080516020611408833981519152846040518082815260200191505060405180910390a350505050505050565b600160a060020a031660009081526002602052604090205490565b6000806040604436101561121457600080fd5b61122f6127106110416003548761139990919063ffffffff16565b92506004548311156112415760045492505b611251848463ffffffff6113e616565b33600090815260026020526040902054909250611274908563ffffffff6113e616565b3360009081526002602052604080822092909255600160a060020a038716815220546112a6908363ffffffff6113f816565b600160a060020a0386166000908152600260205260408120919091558311156113395760008054600160a060020a03168152600260205260409020546112f2908463ffffffff6113f816565b60008054600160a060020a03908116825260026020908152604080842094909455915483518781529351911692339260008051602061140883398151915292918290030190a35b604080518381529051600160a060020a0387169133916000805160206114088339815191529181900360200190a35050505050565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b6000808315156113ac57600091506113c8565b508282028284828115156113bc57fe5b04146113c457fe5b8091505b5092915050565b60008082848115156113dd57fe5b04949350505050565b6000828211156113f257fe5b50900390565b6000828201838110156113c457fe00ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058204694293ea51515fabe0a5c45b57ec028f293a7f8276a88a6699043d787e2a67e0029

Deployed Bytecode Sourcemap

9971:3387:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10038:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10038:18: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;10038:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12798:181;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12798:181:0;-1:-1:-1;;;;;12798:181:0;;;;;;;12047:302;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12047:302:0;-1:-1:-1;;;;;12047:302:0;;;;;;;10154:22;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10154:22:0;;;;;;;;;;;;;;;;;;;;;;8714:145;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8714:145:0;-1:-1:-1;;;;;8714:145:0;;;;;13045:218;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13045:218:0;;;;;;;;;;;;;;;;;;;;11271:362;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11271:362:0;-1:-1:-1;;;;;11271:362:0;;;;;;;;;;;;10117:30;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10117:30:0;;;;;;;;-1:-1:-1;;;;;10117:30:0;;;;;;;;;;;;;;2951:40;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2951:40:0;-1:-1:-1;;;;;2951:40:0;;;;;10090:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10090:20:0;;;;3117:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3117:26:0;;;;2053:24;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2053:24:0;;;;8160:90;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8160:90:0;;;;8428:124;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8428:124:0;-1:-1:-1;;;;;8428:124:0;;;;;4741:61;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4741:61:0;-1:-1:-1;;;;;4741:61:0;;;;;;;;;;7544:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7544:26:0;;;;11718:244;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11718:244:0;-1:-1:-1;;;;;11718:244:0;;;;;7985:88;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7985:88:0;;;;8560:87;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8560:87:0;;;;1162:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1162:20:0;;;;10063;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10063:20:0;;;;10860:326;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10860:326:0;-1:-1:-1;;;;;10860:326:0;;;;;;;12434:293;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12434:293:0;-1:-1:-1;;;;;12434:293:0;;;;;;;;;;3079:31;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3079:31:0;;;;8655:46;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8655:46:0;-1:-1:-1;;;;;8655:46:0;;;;;8867:160;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8867:160:0;-1:-1:-1;;;;;8867:160:0;;;;;4811:42;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4811:42:0;;;;1734:151;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;1734:151:0;-1:-1:-1;;;;;1734:151:0;;;;;9035:324;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9035:324:0;-1:-1:-1;;;;;9035:324:0;;;;;10038:18;;;;;;;;;;;;;;;-1:-1:-1;;10038:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;12798:181::-;1534:5;;-1:-1:-1;;;;;1534:5:0;1520:10;:19;1512:28;;;;;;12871:10;:17;;-1:-1:-1;;;;;12871:17:0;;;;-1:-1:-1;;12899:34:0;-1:-1:-1;;;;;12899:34:0;;;;;;;;12944:27;;;;;;;;;;;;;;;;;12798:181;:::o;12047:302::-;12118:6;3296:8;3278;:26;3276:29;3268:38;;;;;;12141:10;;-1:-1:-1;;;12141:10:0;;;;12137:205;;;12197:15;;12175:84;;;;;;12230:10;12175:84;;;;-1:-1:-1;;;;;12175:84:0;;;;;;;;;;;;;;;12197:15;;;;;12175:54;;:84;;;;;12197:15;;12175:84;;;;;;;12197:15;;12175:84;;;5:2:-1;;;;30:1;27;20:12;5:2;12175:84:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;12175:84:0;;;;12168:91;;12137:205;12299:31;12313:8;12323:6;12299:13;:31::i;:::-;12047:302;;;:::o;10154:22::-;;;-1:-1:-1;;;10154:22:0;;;;;:::o;8714:145::-;1534:5;;-1:-1:-1;;;;;1534:5:0;1520:10;:19;1512:28;;;;;;-1:-1:-1;;;;;8784:24:0;;;;;;:13;:24;;;;;;;;;:31;;-1:-1:-1;;8784:31:0;8811:4;8784:31;;;8826:25;;;;;;;;;;;;;;;;;8714:145;:::o;13045:218::-;13114:10;;13093:4;;-1:-1:-1;;;13114:10:0;;;;13110:146;;;13162:15;;;;;;;;;-1:-1:-1;;;;;13162:15:0;-1:-1:-1;;;;;13148:42:0;;:44;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13148:44:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;13148:44:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;13148:44:0;;-1:-1:-1;13141:51:0;;13110:146;-1:-1:-1;13232:12:0;;13110:146;13045:218;:::o;11271:362::-;7720:6;;-1:-1:-1;;;7720:6:0;;;;7719:7;7711:16;;;;;;-1:-1:-1;;;;;11375:20:0;;;;;;:13;:20;;;;;;;;11374:21;11366:30;;;;;;11411:10;;-1:-1:-1;;;11411:10:0;;;;11407:219;;;11467:15;;11445:91;;;;;;11505:10;11445:91;;;;-1:-1:-1;;;;;11445:91:0;;;;;;;;;;;;;;;;;;;;;;11467:15;;;;;11445:59;;:91;;;;;11467:15;;11445:91;;;;;;;11467:15;;11445:91;;;5:2:-1;;;;30:1;27;20:12;11407:219:0;11576:38;11595:5;11602:3;11607:6;11576:18;:38::i;10117:30::-;;;-1:-1:-1;;;;;10117:30:0;;:::o;2951:40::-;;;;;;;;;;;;;:::o;10090:20::-;;;;:::o;3117:26::-;;;;:::o;2053:24::-;;;;:::o;8160:90::-;1534:5;;-1:-1:-1;;;;;1534:5:0;1520:10;:19;1512:28;;;;;;7880:6;;-1:-1:-1;;;7880:6:0;;;;7872:15;;;;;;;;8223:5;8214:14;;-1:-1:-1;;8214:14:0;;;8235:9;;;;8223:5;8235:9;8160:90::o;8428:124::-;-1:-1:-1;;;;;8523:21:0;;8499:4;8523:21;;;:13;:21;;;;;;;;8428:124;;;;:::o;4741:61::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;7544:26::-;;;-1:-1:-1;;;7544:26:0;;;;;:::o;11718:244::-;11796:10;;11775:4;;-1:-1:-1;;;11796:10:0;;;;11792:163;;;11852:15;;11830:53;;;;;;-1:-1:-1;;;;;11830:53:0;;;;;;;;;11852:15;;;;;11830:48;;:53;;;;;;;;;;;;;;11852:15;;11830:53;;;5:2:-1;;;;30:1;27;20:12;5:2;11830:53:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;11830:53:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;11830:53:0;;-1:-1:-1;11823:60:0;;11792:163;11923:20;11939:3;11923:15;:20::i;:::-;11916:27;;;;7985:88;1534:5;;-1:-1:-1;;;;;1534:5:0;1520:10;:19;1512:28;;;;;;7720:6;;-1:-1:-1;;;7720:6:0;;;;7719:7;7711:16;;;;;;8040:6;:13;;-1:-1:-1;;8040:13:0;-1:-1:-1;;;8040:13:0;;;8060:7;;;;8040:6;8060:7;7985:88::o;8560:87::-;8607:7;8634:5;-1:-1:-1;;;;;8634:5:0;8560:87;:::o;1162:20::-;;;-1:-1:-1;;;;;1162:20:0;;:::o;10063:::-;;;;;;;;;;;;;;;-1:-1:-1;;10063:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10860:326;7720:6;;-1:-1:-1;;;7720:6:0;;;;7719:7;7711:16;;;;;;10959:10;10945:25;;;;:13;:25;;;;;;;;10944:26;10936:35;;;;;;10986:10;;-1:-1:-1;;;10986:10:0;;;;10982:197;;;11042:15;;11020:80;;;;;;11076:10;11020:80;;;;-1:-1:-1;;;;;11020:80:0;;;;;;;;;;;;;;;11042:15;;;;;11020:55;;:80;;;;;11042:15;;11020:80;;;;;;;11042:15;;11020:80;;;5:2:-1;;;;30:1;27;20:12;5:2;11020:80:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;11020:80:0;;;;11013:87;;10982:197;11140:27;11155:3;11160:6;11140:14;:27::i;:::-;10860:326;;:::o;12434:293::-;12543:10;;12512:14;;-1:-1:-1;;;12543:10:0;;;;12539:181;;;12591:15;;12577:58;;;;;;-1:-1:-1;;;;;12577:58:0;;;;;;;;;;;;;;;;12591:15;;;;;12577:40;;:58;;;;;;;;;;;;;;12591:15;;12577:58;;;5:2:-1;;;;30:1;27;20:12;5:2;12577:58:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;12577:58:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;12577:58:0;;-1:-1:-1;12570:65:0;;12539:181;12675:33;12691:6;12699:8;12675:15;:33::i;:::-;12668:40;;12539:181;12434:293;;;;:::o;3079:31::-;;;;:::o;8655:46::-;;;;;;;;;;;;;;;:::o;8867:160::-;1534:5;;-1:-1:-1;;;;;1534:5:0;1520:10;:19;1512:28;;;;;;-1:-1:-1;;;;;8943:27:0;;8973:5;8943:27;;;:13;:27;;;;;;;;;:35;;-1:-1:-1;;8943:35:0;;;8989:30;;;;;;;;;;;;;;;;;8867:160;:::o;4811:42::-;-1:-1:-1;;4811:42:0;:::o;1734:151::-;1534:5;;-1:-1:-1;;;;;1534:5:0;1520:10;:19;1512:28;;;;;;-1:-1:-1;;;;;1811:22:0;;;1807:71;;1850:5;:16;;-1:-1:-1;;1850:16:0;-1:-1:-1;;;;;1850:16:0;;;;;1807:71;1734:151;:::o;9035:324::-;9168:15;1534:5;;-1:-1:-1;;;;;1534:5:0;1520:10;:19;1512:28;;;;;;-1:-1:-1;;;;;9125:31:0;;;;;;:13;:31;;;;;;;;9117:40;;;;;;;;9186:27;9196:16;9186:9;:27::i;:::-;-1:-1:-1;;;;;9224:26:0;;9253:1;9224:26;;;:8;:26;;;;;;;;:30;;;;9265:12;:26;;;;;;;9302:49;;;;;;;;;;;;9168:45;;-1:-1:-1;9302:49:0;;;;;;;;;9035:324;;:::o;6291:573::-;6362:6;3296:8;3278;:26;3276:29;3268:38;;;;;;6702:11;;;;;6701:53;;-1:-1:-1;6727:10:0;6719:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6719:29:0;;;;;;;;;;:34;;6701:53;6699:56;6691:65;;;;;;6777:10;6769:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6769:29:0;;;;;;;;;;;;:38;;;6818;;;;;;;6769:29;;6777:10;6818:38;;;;;;;;;;;6291:573;;;:::o;5143:901::-;5248:14;;;5229:6;3296:8;3278;:26;3276:29;3268:38;;;;;;-1:-1:-1;;;;;5265:14:0;;;;;;:7;:14;;;;;;;;5280:10;5265:26;;;;;;;;5485:15;;5265:26;;-1:-1:-1;5473:40:0;;5507:5;;5474:27;;:6;;:27;:10;:27;:::i;:::-;5473:33;:40;:33;:40;:::i;:::-;5462:51;;5534:10;;5528:3;:16;5524:65;;;5567:10;;5561:16;;5524:65;-1:-1:-1;;5603:10:0;:21;5599:105;;;5670:22;:10;5685:6;5670:22;:14;:22;:::i;:::-;-1:-1:-1;;;;;5641:14:0;;;;;;:7;:14;;;;;;;;5656:10;5641:26;;;;;;;:51;5599:105;5732:15;:6;5743:3;5732:15;:10;:15;:::i;:::-;-1:-1:-1;;;;;5776:15:0;;;;;;:8;:15;;;;;;5714:33;;-1:-1:-1;5776:27:0;;5796:6;5776:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;5758:15:0;;;;;;;:8;:15;;;;;;:45;;;;5830:13;;;;;;;:29;;5848:10;5830:29;:17;:29;:::i;:::-;-1:-1:-1;;;;;5814:13:0;;;;;;:8;:13;;;;;:45;;;;5874:7;;5870:124;;;5916:15;5925:5;;-1:-1:-1;;;;;5925:5:0;5916:15;;:8;:15;;;;;;:24;;5936:3;5916:24;:19;:24;:::i;:::-;5898:15;5907:5;;-1:-1:-1;;;;;5907:5:0;;;5898:15;;:8;:15;;;;;;;;:42;;;;5971:5;;5955:27;;;;;;;5971:5;;;;5955:27;;;;-1:-1:-1;;;;;;;;;;;5955:27:0;;;;;;;5870:124;6020:3;-1:-1:-1;;;;;6004:32:0;6013:5;-1:-1:-1;;;;;6004:32:0;-1:-1:-1;;;;;;;;;;;6025:10:0;6004:32;;;;;;;;;;;;;;;;;;5143:901;;;;;;;:::o;4290:116::-;-1:-1:-1;;;;;4382:16:0;4350:12;4382:16;;;:8;:16;;;;;;;4290:116::o;3499:573::-;3585:8;;3566:6;3296:8;3278;:26;3276:29;3268:38;;;;;;3596:40;3630:5;3597:27;3608:15;;3597:6;:10;;:27;;;;:::i;3596:40::-;3585:51;;3657:10;;3651:3;:16;3647:65;;;3690:10;;3684:16;;3647:65;3740:15;:6;3751:3;3740:15;:10;:15;:::i;:::-;3798:10;3789:20;;;;:8;:20;;;;;;3722:33;;-1:-1:-1;3789:32:0;;3814:6;3789:32;:24;:32;:::i;:::-;3775:10;3766:20;;;;:8;:20;;;;;;:55;;;;-1:-1:-1;;;;;3848:13:0;;;;;;:29;;3866:10;3848:29;:17;:29;:::i;:::-;-1:-1:-1;;;;;3832:13:0;;;;;;:8;:13;;;;;:45;;;;3892:7;;3888:129;;;3934:15;3943:5;;-1:-1:-1;;;;;3943:5:0;3934:15;;:8;:15;;;;;;:24;;3954:3;3934:24;:19;:24;:::i;:::-;3916:15;3925:5;;-1:-1:-1;;;;;3925:5:0;;;3916:15;;:8;:15;;;;;;;;:42;;;;3994:5;;3973:32;;;;;;;3994:5;;;3982:10;;-1:-1:-1;;;;;;;;;;;3973:32:0;;;;;;;;3888:129;4027:37;;;;;;;;-1:-1:-1;;;;;4027:37:0;;;4036:10;;-1:-1:-1;;;;;;;;;;;4027:37:0;;;;;;;;3499:573;;;;;:::o;7197:145::-;-1:-1:-1;;;;;7309:15:0;;;7275:14;7309:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;7197:145::o;146:208::-;204:7;;228:6;;224:47;;;258:1;251:8;;;;224:47;-1:-1:-1;293:5:0;;;297:1;293;:5;316;;;;;;;;:10;309:18;;;;345:1;338:8;;146:208;;;;;;:::o;362:288::-;420:7;519:9;535:1;531;:5;;;;;;;;;362:288;-1:-1:-1;;;;362:288:0:o;658:123::-;716:7;743:6;;;;736:14;;;;-1:-1:-1;768:5:0;;;658:123::o;789:147::-;847:7;879:5;;;902:6;;;;895:14;;

Swarm Source

bzzr://4694293ea51515fabe0a5c45b57ec028f293a7f8276a88a6699043d787e2a67e

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

HYPEX is an independent Governance Token issued by Supreme Finance. HYPEX will be used for all Supreme Finance policy decisions, DeFi Pool and NFT Staking purposes.

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.