ETH Price: $3,891.09 (-0.84%)

Token

ERC-20: Million Hashes Per Second (MHASH)
 

Overview

Max Total Supply

6,000 MHASH

Holders

11

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 6 Decimals)

Balance
1 MHASH

Value
$0.00
0x7d56867ae0fd8de19f8caa03e62fc8d95d0c065b
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
HashBay

Compiler Version
v0.6.7+commit.b8d736ae

Optimization Enabled:
Yes with 200 runs

Other Settings:
petersburg EvmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-06-11
*/

// File: @openzeppelin/contracts/GSN/Context.sol

pragma solidity ^0.6.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }

    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol

pragma solidity ^0.6.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol

pragma solidity ^0.6.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

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

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

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

// File: @openzeppelin/contracts/math/SafeMath.sol

pragma solidity ^0.6.0;

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

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

        return c;
    }

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

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

// File: @openzeppelin/contracts/utils/Address.sol

pragma solidity ^0.6.2;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol

pragma solidity ^0.6.0;





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

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol) public {
        _name = name;
        _symbol = symbol;
        _decimals = 18;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
     * called.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

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

        _beforeTokenTransfer(address(0), account, amount);

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

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

        _beforeTokenTransfer(account, address(0), amount);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

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

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

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}

// File: @openzeppelin/contracts/utils/ReentrancyGuard.sol

pragma solidity ^0.6.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
contract ReentrancyGuard {
    bool private _notEntered;

    constructor () internal {
        // Storing an initial non-zero value makes deployment a bit more
        // expensive, but in exchange the refund on every call to nonReentrant
        // will be lower in amount. Since refunds are capped to a percetange of
        // the total transaction's gas, it is best to keep them low in cases
        // like this one, to increase the likelihood of the full refund coming
        // into effect.
        _notEntered = true;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_notEntered, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _notEntered = false;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _notEntered = true;
    }
}

// File: contracts/Exponential.sol

pragma solidity ^0.6.0;


contract Exponential {

    using SafeMath for uint256;

    uint256 constant public EXP_SCALE = 1e18;
    uint256 constant HALF_EXP_SCALE = EXP_SCALE / 2;
    uint256 constant MANTISSA_ONE = EXP_SCALE;

    struct Exp {
        uint256 mantissa;
    }

    /**
     * @dev Creates an exponential from numerator and denominator values.
     */
    function getExp(uint256 numerator, uint256 denominator) pure internal returns (Exp memory) {
        uint256 scaledNumerator = numerator.mul(EXP_SCALE);

        uint256 rational = scaledNumerator.div(denominator);

        return Exp({mantissa: rational});
    }

    /**
     * @dev Multiply an Exp by a scalar, returning a new Exp.
     */
    function mulScalar(Exp memory a, uint256 scalar) pure internal returns (Exp memory) {
        uint256 scaledMantissa = a.mantissa.mul(scalar);

        return Exp({mantissa: scaledMantissa});
    }

    /**
     * @dev Multiply an Exp by a scalar, truncate, then add an to an unsigned integer, returning an unsigned integer.
     */
    function mulScalarTruncateAdd(Exp memory a, uint256 scalar, uint256 addend) pure internal returns (uint256) {
        Exp memory product = mulScalar(a, scalar);

        return truncate(product).add(addend);
    }

    /**
     * @dev Multiplies two exponentials, returning a new exponential.
     */
    function mulExp(Exp memory a, Exp memory b) pure internal returns (Exp memory) {

        uint256 doubleScaledProduct = a.mantissa.mul(b.mantissa);

        // We add half the scale before dividing so that we get rounding instead of truncation.
        //  See "Listing 6" and text above it at https://accu.org/index.php/journals/1717
        // Without this change, a result like 6.6...e-19 will be truncated to 0 instead of being rounded to 1e-18.
        uint256 doubleScaledProductWithHalfScale = HALF_EXP_SCALE.add(doubleScaledProduct);

        uint256 product = doubleScaledProductWithHalfScale.div(EXP_SCALE);

        return Exp({mantissa: product});
    }


    /**
     * @dev Truncates the given exp to a whole number value.
     *      For example, truncate(Exp{mantissa: 15 * expScale}) = 15
     */
    function truncate(Exp memory exp) pure internal returns (uint256) {
        return exp.mantissa.div(EXP_SCALE);
    }

}

// File: contracts/HashBay.sol

pragma solidity ^0.6.0;




/**
 * @title A token named Million Hashes Per Second of ETH cloud mining.
 * @notice You can use this contract for only the most basic simulation.
 * @dev All function calls are currently implemented without side effects.
 */
contract HashBay is ERC20, Ownable, ReentrancyGuard, Exponential {

  mapping (address => uint256) private rewardIndex;

  struct Record {
    address holder;
    uint256 reward;
  }

  Record[] private rewardRecords;

  uint256 public startDate;
  uint256 public endDate;
  string public contractName;

  event NewReward(address holder, uint256 reward);
  event Claim(address claimer, uint256 amount);
  event NewRecord(address holder);
  event NewDate(uint256 newStartDate, uint256 newEndDate);

  /**
   * @notice Init the smart contract and token name as "Million Hashes Per Second" and symbbol "MHASH", the decimals is 6 as default.
   * @param initialSupply Init the token total supply.
   * @param initOwner Init the owner address.
   * @param initStartDate Init the start date only modified by owner.
   * @param initEndDate Init the end date only modified by owner.
   * @param initContractName Init the contract name cannot be modified.
   */
  constructor(uint256 initialSupply, address initOwner, uint256 initStartDate, uint256 initEndDate, string memory initContractName) ERC20("Million Hashes Per Second", "MHASH") public {

    _setupDecimals(6);
    _mint(initOwner, initialSupply);
    transferOwnership(initOwner);
    _setDate(initStartDate, initEndDate);
    contractName = initContractName;

    rewardRecords.push(Record(address(0x0), 0));
    _updateRewardRecords(initOwner);
  }

  /**
   * @notice Receiving the eth reward and update every holder's reward record according to the token balance.
   */
  receive() external payable {

    require(msg.value != 0, "Only eth entry is accepted");

    Exp memory rewardRateExp = _getRewardRate(msg.value);

    for (uint256 i = 1; i < rewardRecords.length; i++) {
        address holder = rewardRecords[i].holder;
        uint256 rewardAmount = truncate(mulScalar(rewardRateExp, balanceOf(holder)));
        if (rewardAmount > 0) {
          rewardRecords[i].reward = rewardRecords[i].reward.add(rewardAmount);
          emit NewReward(holder, rewardRecords[i].reward);
        }
    }
  }

  /**
   * @notice Get the reward without being claimed for holder self.
   * @return The houlder's reward in eth.
   */
  function myReward() external view returns (uint256) {
    return rewardRecords[rewardIndex[msg.sender]].reward;
  }

  /**
   * @notice Claim the reward by holder and clean the reward record.
   * @return The amount of reward which the holder will receive.
   */
  function claim() external nonReentrant returns (uint256) {

    uint256 index = rewardIndex[msg.sender];
    require(msg.sender == rewardRecords[index].holder, "houlder address error");

    uint256 rewardAmount = rewardRecords[index].reward;
    require(rewardAmount > 0, "eth reward record should be larger than 0");

    rewardRecords[index].reward = 0;
    msg.sender.transfer(rewardAmount);

    emit Claim(msg.sender, rewardAmount);

    return rewardAmount; 
  }

  /**
   * @notice Holder can transfer their token to others. 
   * @param recipient The recipient address who transfer to.
   * @param amount The amount token transfered.
   * @return bool return true if the token transfered successfully.
   */
  function transfer(address recipient, uint256 amount) public override returns (bool) {

      _updateRewardRecords(recipient);
      super.transfer(recipient, amount);
  }

  /**
   * @notice Spender can transfer sender's token to others.
   * @param sender The holder who send the token
   * @param recipient The recipient address who transfer to.
   * @param amount The amount token transfered.
   * @return bool return true if the token transfered successfully.
   */
  function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {

      _updateRewardRecords(recipient);
      super.transferFrom(sender, recipient, amount);
  }

  /**
   * @notice Modefy the start date and end date of mining.
   * @param newStartDate The new start date.
   * @param newEndDate The new end date.
   * @dev onlyOwner
   */
  function setDate(uint256 newStartDate, uint256 newEndDate) external onlyOwner {
    _setDate(newStartDate, newEndDate);
  }

  /**
   * @notice Modefy the start date and end date of mining.
   * @param newStartDate The new start date.
   * @param newEndDate The new end date.
   * @dev internal function
   */
  function _setDate(uint256 newStartDate, uint256 newEndDate) internal {
    startDate = newStartDate;
    endDate = newEndDate;
    emit NewDate(startDate, endDate);
  }

  /**
   * @notice If a new recipient will be addedinto the reward record and update the reward index
   * @param recipient The address of recipient
   * @dev internal function
   */
  function _updateRewardRecords(address recipient) internal {

      if (rewardIndex[recipient] == 0) {
        rewardRecords.push(Record(recipient, 0));
        rewardIndex[recipient] = rewardRecords.length.sub(1);
        emit NewRecord(recipient);
      }
  }

  function _getRewardRate(uint256 reward) internal view returns (Exp memory) {
    return getExp(reward, totalSupply());
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"address","name":"initOwner","type":"address"},{"internalType":"uint256","name":"initStartDate","type":"uint256"},{"internalType":"uint256","name":"initEndDate","type":"uint256"},{"internalType":"string","name":"initContractName","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"claimer","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Claim","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newStartDate","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newEndDate","type":"uint256"}],"name":"NewDate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"holder","type":"address"}],"name":"NewRecord","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"holder","type":"address"},{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"NewReward","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"EXP_SCALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"myReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newStartDate","type":"uint256"},{"internalType":"uint256","name":"newEndDate","type":"uint256"}],"name":"setDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b50604051620020d7380380620020d7833981810160405260a08110156200003757600080fd5b81516020830151604080850151606086015160808701805193519597949692959194919392820192846401000000008211156200007357600080fd5b9083019060208201858111156200008957600080fd5b8251640100000000811182820188101715620000a457600080fd5b82525081516020918201929091019080838360005b83811015620000d3578181015183820152602001620000b9565b50505050905090810190601f168015620001015780820380516001836020036101000a031916815260200191505b5060408181018152601982527f4d696c6c696f6e2048617368657320506572205365636f6e640000000000000060208084019182528251808401909352600583527f4d484153480000000000000000000000000000000000000000000000000000009083015282519295509093506200017e925060039162000875565b5080516200019490600490602084019062000875565b50506005805460ff19166012179055506000620001b96001600160e01b036200031116565b60058054610100600160a81b0319166101006001600160a01b038416908102919091179091556040519192509060009060008051602062002097833981519152908290a3506005805460ff60a81b191675010000000000000000000000000000000000000000001790556200023860066001600160e01b036200031616565b6200024d84866001600160e01b036200032c16565b62000261846001600160e01b036200045e16565b6200027683836001600160e01b03620005aa16565b80516200028b90600a90602084019062000875565b5060408051808201909152600080825260208201818152600780546001810182559252915160008051602062002077833981519152600290920291820180546001600160a01b0319166001600160a01b039092169190911790559051600080516020620020b7833981519152909101556200030684620005f3565b505050505062000917565b335b90565b6005805460ff191660ff92909216919091179055565b6001600160a01b038216620003a257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620003b9600083836001600160e01b03620006f516565b620003d581600254620006fa60201b620007071790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200040891839062000707620006fa821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b620004716001600160e01b036200031116565b60055461010090046001600160a01b03908116911614620004f357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03811662000554576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180620020516026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416906000805160206200209783398151915290600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b60088290556009819055604080518381526020810183905281517f375b632ad96269dc9a7a4ecce31f7db1be55fa1b31816be51ec759791f02afab929181900390910190a15050565b6001600160a01b038116600090815260066020526040902054620006f257604080518082019091526001600160a01b03828116825260006020808401828152600780546001808201835594829052955160008051602062002077833981519152600290970296870180546001600160a01b031916919096161790945551600080516020620020b7833981519152909401939093559054620006a09290919062000776811b620013c217901c565b6001600160a01b038216600081815260066020908152604091829020939093558051918252517f053e817c29ea70251ca45f97ad02f5259543b010172316e59ad53e2eab9e496c929181900390910190a15b50565b505050565b6000828201838110156200076f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60006200076f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250620007c060201b60201c565b600081848411156200086d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156200083157818101518382015260200162000817565b50505050905090810190601f1680156200085f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620008b857805160ff1916838001178555620008e8565b82800160010185558215620008e8579182015b82811115620008e8578251825591602001919060010190620008cb565b50620008f6929150620008fa565b5090565b6200031391905b80821115620008f6576000815560010162000901565b61172a80620009276000396000f3fe60806040526004361061012e5760003560e01c8063715018a6116100ab578063a9059cbb1161006f578063a9059cbb1461057c578063bbba205d146105b5578063c24a0f8b146105ca578063dd62ed3e146105df578063f2fde38b1461061a578063f3587e461461064d576102b5565b8063715018a6146104d157806375d0c0dc146104e85780638da5cb5b146104fd57806395d89b411461052e578063a457c2d714610543576102b5565b8063313ce567116100f2578063313ce56714610410578063395093511461043b57806342849570146104745780634e71d92d1461048957806370a082311461049e576102b5565b806306fdde03146102ba578063095ea7b3146103445780630b97bc861461039157806318160ddd146103b857806323b872dd146103cd576102b5565b366102b55734610185576040805162461bcd60e51b815260206004820152601a60248201527f4f6e6c792065746820656e747279206973206163636570746564000000000000604482015290519081900360640190fd5b61018d611570565b6101963461067d565b905060015b6007548110156102b1576000600782815481106101b457fe5b600091825260208220600290910201546001600160a01b031691506101e96101e4856101df8561069c565b6106b7565b6106ea565b905080156102a757610222816007858154811061020257fe5b90600052602060002090600202016001015461070790919063ffffffff16565b6007848154811061022f57fe5b9060005260206000209060020201600101819055507f01f132e60506239e8c7aeeb029ac2aa3a506bd76fda96ffa1f02e2b193399905826007858154811061027357fe5b600091825260209182902060016002909202010154604080516001600160a01b039094168452918301528051918290030190a15b505060010161019b565b5050005b600080fd5b3480156102c657600080fd5b506102cf610768565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103095781810151838201526020016102f1565b50505050905090810190601f1680156103365780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561035057600080fd5b5061037d6004803603604081101561036757600080fd5b506001600160a01b0381351690602001356107fe565b604080519115158252519081900360200190f35b34801561039d57600080fd5b506103a661081b565b60408051918252519081900360200190f35b3480156103c457600080fd5b506103a6610821565b3480156103d957600080fd5b5061037d600480360360608110156103f057600080fd5b506001600160a01b03813581169160208101359091169060400135610827565b34801561041c57600080fd5b50610425610845565b6040805160ff9092168252519081900360200190f35b34801561044757600080fd5b5061037d6004803603604081101561045e57600080fd5b506001600160a01b03813516906020013561084e565b34801561048057600080fd5b506103a66108a7565b34801561049557600080fd5b506103a66108dd565b3480156104aa57600080fd5b506103a6600480360360208110156104c157600080fd5b50356001600160a01b031661069c565b3480156104dd57600080fd5b506104e6610ad5565b005b3480156104f457600080fd5b506102cf610b94565b34801561050957600080fd5b50610512610c22565b604080516001600160a01b039092168252519081900360200190f35b34801561053a57600080fd5b506102cf610c36565b34801561054f57600080fd5b5061037d6004803603604081101561056657600080fd5b506001600160a01b038135169060200135610c97565b34801561058857600080fd5b5061037d6004803603604081101561059f57600080fd5b506001600160a01b038135169060200135610d05565b3480156105c157600080fd5b506103a6610d21565b3480156105d657600080fd5b506103a6610d2d565b3480156105eb57600080fd5b506103a66004803603604081101561060257600080fd5b506001600160a01b0381358116916020013516610d33565b34801561062657600080fd5b506104e66004803603602081101561063d57600080fd5b50356001600160a01b0316610d5e565b34801561065957600080fd5b506104e66004803603604081101561067057600080fd5b5080359060200135610e79565b610685611570565b61069682610691610821565b610ef6565b92915050565b6001600160a01b031660009081526020819052604090205490565b6106bf611570565b82516000906106d4908463ffffffff610f4316565b6040805160208101909152908152949350505050565b805160009061069690670de0b6b3a764000063ffffffff610f9c16565b600082820183811015610761576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107f45780601f106107c9576101008083540402835291602001916107f4565b820191906000526020600020905b8154815290600101906020018083116107d757829003601f168201915b5050505050905090565b600061081261080b610fde565b8484610fe2565b50600192915050565b60085481565b60025490565b6000610832836110ce565b61083d8484846111e1565b509392505050565b60055460ff1690565b600061081261085b610fde565b846108a2856001600061086c610fde565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61070716565b610fe2565b336000908152600660205260408120546007805490919081106108c657fe5b906000526020600020906002020160010154905090565b600554600090600160a81b900460ff1661093e576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6005805460ff60a81b1916905533600090815260066020526040902054600780548290811061096957fe5b60009182526020909120600290910201546001600160a01b031633146109ce576040805162461bcd60e51b81526020600482015260156024820152743437bab63232b91030b2323932b9b99032b93937b960591b604482015290519081900360640190fd5b6000600782815481106109dd57fe5b906000526020600020906002020160010154905060008111610a305760405162461bcd60e51b81526004018080602001828103825260298152602001806115ef6029913960400191505060405180910390fd5b600060078381548110610a3f57fe5b60009182526020822060016002909202010191909155604051339183156108fc02918491818181858888f19350505050158015610a80573d6000803e3d6000fd5b50604080513381526020810183905281517f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d4929181900390910190a19150506005805460ff60a81b1916600160a81b17905590565b610add610fde565b60055461010090046001600160a01b03908116911614610b44576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b600a805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610c1a5780601f10610bef57610100808354040283529160200191610c1a565b820191906000526020600020905b815481529060010190602001808311610bfd57829003601f168201915b505050505081565b60055461010090046001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107f45780601f106107c9576101008083540402835291602001916107f4565b6000610812610ca4610fde565b846108a2856040518060600160405280602581526020016116d06025913960016000610cce610fde565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61126916565b6000610d10836110ce565b610d1a8383611300565b5092915050565b670de0b6b3a764000081565b60095481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610d66610fde565b60055461010090046001600160a01b03908116911614610dcd576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116610e125760405162461bcd60e51b81526004018080602001828103825260268152602001806115a76026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b610e81610fde565b60055461010090046001600160a01b03908116911614610ee8576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610ef28282611314565b5050565b610efe611570565b6000610f1884670de0b6b3a764000063ffffffff610f4316565b90506000610f2c828563ffffffff610f9c16565b604080516020810190915290815295945050505050565b600082610f5257506000610696565b82820282848281610f5f57fe5b04146107615760405162461bcd60e51b815260040180806020018281038252602181526020018061163e6021913960400191505060405180910390fd5b600061076183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061135d565b3390565b6001600160a01b0383166110275760405162461bcd60e51b81526004018080602001828103825260248152602001806116ac6024913960400191505060405180910390fd5b6001600160a01b03821661106c5760405162461bcd60e51b81526004018080602001828103825260228152602001806115cd6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0381166000908152600660205260409020546111de57604080518082019091526001600160a01b03828116825260006020830181815260078054600180820183559382905294517fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c688600290960295860180546001600160a01b0319169190951617909355517fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c689909301929092555461118c916113c2565b6001600160a01b038216600081815260066020908152604091829020939093558051918252517f053e817c29ea70251ca45f97ad02f5259543b010172316e59ad53e2eab9e496c929181900390910190a15b50565b60006111ee848484611404565b61125f846111fa610fde565b6108a28560405180606001604052806028815260200161165f602891396001600160a01b038a16600090815260016020526040812090611238610fde565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61126916565b5060019392505050565b600081848411156112f85760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156112bd5781810151838201526020016112a5565b50505050905090810190601f1680156112ea5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600061081261130d610fde565b8484611404565b60088290556009819055604080518381526020810183905281517f375b632ad96269dc9a7a4ecce31f7db1be55fa1b31816be51ec759791f02afab929181900390910190a15050565b600081836113ac5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156112bd5781810151838201526020016112a5565b5060008385816113b857fe5b0495945050505050565b600061076183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611269565b6001600160a01b0383166114495760405162461bcd60e51b81526004018080602001828103825260258152602001806116876025913960400191505060405180910390fd5b6001600160a01b03821661148e5760405162461bcd60e51b81526004018080602001828103825260238152602001806115846023913960400191505060405180910390fd5b61149983838361156b565b6114dc81604051806060016040528060268152602001611618602691396001600160a01b038616600090815260208190526040902054919063ffffffff61126916565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611511908263ffffffff61070716565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b505050565b604051806020016040528060008152509056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737365746820726577617264207265636f72642073686f756c64206265206c6172676572207468616e203045524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212208f9248a6d265f6608adffcb671f68546f8541c278cd4169185c2612b120e325064736f6c634300060700334f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373a66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6888be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0a66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6890000000000000000000000000000000000000000000000000000000165a0bc00000000000000000000000000c267da714ddb007bc198cb9bdb722c66e652c687000000000000000000000000000000000000000000000000000000005ee6ba00000000000000000000000000000000000000000000000000000000005f5eb28000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000f4554482d4a554c323032302d3930440000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061012e5760003560e01c8063715018a6116100ab578063a9059cbb1161006f578063a9059cbb1461057c578063bbba205d146105b5578063c24a0f8b146105ca578063dd62ed3e146105df578063f2fde38b1461061a578063f3587e461461064d576102b5565b8063715018a6146104d157806375d0c0dc146104e85780638da5cb5b146104fd57806395d89b411461052e578063a457c2d714610543576102b5565b8063313ce567116100f2578063313ce56714610410578063395093511461043b57806342849570146104745780634e71d92d1461048957806370a082311461049e576102b5565b806306fdde03146102ba578063095ea7b3146103445780630b97bc861461039157806318160ddd146103b857806323b872dd146103cd576102b5565b366102b55734610185576040805162461bcd60e51b815260206004820152601a60248201527f4f6e6c792065746820656e747279206973206163636570746564000000000000604482015290519081900360640190fd5b61018d611570565b6101963461067d565b905060015b6007548110156102b1576000600782815481106101b457fe5b600091825260208220600290910201546001600160a01b031691506101e96101e4856101df8561069c565b6106b7565b6106ea565b905080156102a757610222816007858154811061020257fe5b90600052602060002090600202016001015461070790919063ffffffff16565b6007848154811061022f57fe5b9060005260206000209060020201600101819055507f01f132e60506239e8c7aeeb029ac2aa3a506bd76fda96ffa1f02e2b193399905826007858154811061027357fe5b600091825260209182902060016002909202010154604080516001600160a01b039094168452918301528051918290030190a15b505060010161019b565b5050005b600080fd5b3480156102c657600080fd5b506102cf610768565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103095781810151838201526020016102f1565b50505050905090810190601f1680156103365780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561035057600080fd5b5061037d6004803603604081101561036757600080fd5b506001600160a01b0381351690602001356107fe565b604080519115158252519081900360200190f35b34801561039d57600080fd5b506103a661081b565b60408051918252519081900360200190f35b3480156103c457600080fd5b506103a6610821565b3480156103d957600080fd5b5061037d600480360360608110156103f057600080fd5b506001600160a01b03813581169160208101359091169060400135610827565b34801561041c57600080fd5b50610425610845565b6040805160ff9092168252519081900360200190f35b34801561044757600080fd5b5061037d6004803603604081101561045e57600080fd5b506001600160a01b03813516906020013561084e565b34801561048057600080fd5b506103a66108a7565b34801561049557600080fd5b506103a66108dd565b3480156104aa57600080fd5b506103a6600480360360208110156104c157600080fd5b50356001600160a01b031661069c565b3480156104dd57600080fd5b506104e6610ad5565b005b3480156104f457600080fd5b506102cf610b94565b34801561050957600080fd5b50610512610c22565b604080516001600160a01b039092168252519081900360200190f35b34801561053a57600080fd5b506102cf610c36565b34801561054f57600080fd5b5061037d6004803603604081101561056657600080fd5b506001600160a01b038135169060200135610c97565b34801561058857600080fd5b5061037d6004803603604081101561059f57600080fd5b506001600160a01b038135169060200135610d05565b3480156105c157600080fd5b506103a6610d21565b3480156105d657600080fd5b506103a6610d2d565b3480156105eb57600080fd5b506103a66004803603604081101561060257600080fd5b506001600160a01b0381358116916020013516610d33565b34801561062657600080fd5b506104e66004803603602081101561063d57600080fd5b50356001600160a01b0316610d5e565b34801561065957600080fd5b506104e66004803603604081101561067057600080fd5b5080359060200135610e79565b610685611570565b61069682610691610821565b610ef6565b92915050565b6001600160a01b031660009081526020819052604090205490565b6106bf611570565b82516000906106d4908463ffffffff610f4316565b6040805160208101909152908152949350505050565b805160009061069690670de0b6b3a764000063ffffffff610f9c16565b600082820183811015610761576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107f45780601f106107c9576101008083540402835291602001916107f4565b820191906000526020600020905b8154815290600101906020018083116107d757829003601f168201915b5050505050905090565b600061081261080b610fde565b8484610fe2565b50600192915050565b60085481565b60025490565b6000610832836110ce565b61083d8484846111e1565b509392505050565b60055460ff1690565b600061081261085b610fde565b846108a2856001600061086c610fde565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61070716565b610fe2565b336000908152600660205260408120546007805490919081106108c657fe5b906000526020600020906002020160010154905090565b600554600090600160a81b900460ff1661093e576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6005805460ff60a81b1916905533600090815260066020526040902054600780548290811061096957fe5b60009182526020909120600290910201546001600160a01b031633146109ce576040805162461bcd60e51b81526020600482015260156024820152743437bab63232b91030b2323932b9b99032b93937b960591b604482015290519081900360640190fd5b6000600782815481106109dd57fe5b906000526020600020906002020160010154905060008111610a305760405162461bcd60e51b81526004018080602001828103825260298152602001806115ef6029913960400191505060405180910390fd5b600060078381548110610a3f57fe5b60009182526020822060016002909202010191909155604051339183156108fc02918491818181858888f19350505050158015610a80573d6000803e3d6000fd5b50604080513381526020810183905281517f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d4929181900390910190a19150506005805460ff60a81b1916600160a81b17905590565b610add610fde565b60055461010090046001600160a01b03908116911614610b44576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b600a805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610c1a5780601f10610bef57610100808354040283529160200191610c1a565b820191906000526020600020905b815481529060010190602001808311610bfd57829003601f168201915b505050505081565b60055461010090046001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107f45780601f106107c9576101008083540402835291602001916107f4565b6000610812610ca4610fde565b846108a2856040518060600160405280602581526020016116d06025913960016000610cce610fde565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61126916565b6000610d10836110ce565b610d1a8383611300565b5092915050565b670de0b6b3a764000081565b60095481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610d66610fde565b60055461010090046001600160a01b03908116911614610dcd576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116610e125760405162461bcd60e51b81526004018080602001828103825260268152602001806115a76026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b610e81610fde565b60055461010090046001600160a01b03908116911614610ee8576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610ef28282611314565b5050565b610efe611570565b6000610f1884670de0b6b3a764000063ffffffff610f4316565b90506000610f2c828563ffffffff610f9c16565b604080516020810190915290815295945050505050565b600082610f5257506000610696565b82820282848281610f5f57fe5b04146107615760405162461bcd60e51b815260040180806020018281038252602181526020018061163e6021913960400191505060405180910390fd5b600061076183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061135d565b3390565b6001600160a01b0383166110275760405162461bcd60e51b81526004018080602001828103825260248152602001806116ac6024913960400191505060405180910390fd5b6001600160a01b03821661106c5760405162461bcd60e51b81526004018080602001828103825260228152602001806115cd6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0381166000908152600660205260409020546111de57604080518082019091526001600160a01b03828116825260006020830181815260078054600180820183559382905294517fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c688600290960295860180546001600160a01b0319169190951617909355517fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c689909301929092555461118c916113c2565b6001600160a01b038216600081815260066020908152604091829020939093558051918252517f053e817c29ea70251ca45f97ad02f5259543b010172316e59ad53e2eab9e496c929181900390910190a15b50565b60006111ee848484611404565b61125f846111fa610fde565b6108a28560405180606001604052806028815260200161165f602891396001600160a01b038a16600090815260016020526040812090611238610fde565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61126916565b5060019392505050565b600081848411156112f85760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156112bd5781810151838201526020016112a5565b50505050905090810190601f1680156112ea5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600061081261130d610fde565b8484611404565b60088290556009819055604080518381526020810183905281517f375b632ad96269dc9a7a4ecce31f7db1be55fa1b31816be51ec759791f02afab929181900390910190a15050565b600081836113ac5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156112bd5781810151838201526020016112a5565b5060008385816113b857fe5b0495945050505050565b600061076183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611269565b6001600160a01b0383166114495760405162461bcd60e51b81526004018080602001828103825260258152602001806116876025913960400191505060405180910390fd5b6001600160a01b03821661148e5760405162461bcd60e51b81526004018080602001828103825260238152602001806115846023913960400191505060405180910390fd5b61149983838361156b565b6114dc81604051806060016040528060268152602001611618602691396001600160a01b038616600090815260208190526040902054919063ffffffff61126916565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611511908263ffffffff61070716565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b505050565b604051806020016040528060008152509056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737365746820726577617264207265636f72642073686f756c64206265206c6172676572207468616e203045524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212208f9248a6d265f6608adffcb671f68546f8541c278cd4169185c2612b120e325064736f6c63430006070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000165a0bc00000000000000000000000000c267da714ddb007bc198cb9bdb722c66e652c687000000000000000000000000000000000000000000000000000000005ee6ba00000000000000000000000000000000000000000000000000000000005f5eb28000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000f4554482d4a554c323032302d3930440000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initialSupply (uint256): 6000000000
Arg [1] : initOwner (address): 0xC267dA714ddB007bc198cb9BdB722c66e652C687
Arg [2] : initStartDate (uint256): 1592179200
Arg [3] : initEndDate (uint256): 1600041600
Arg [4] : initContractName (string): ETH-JUL2020-90D

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000165a0bc00
Arg [1] : 000000000000000000000000c267da714ddb007bc198cb9bdb722c66e652c687
Arg [2] : 000000000000000000000000000000000000000000000000000000005ee6ba00
Arg [3] : 000000000000000000000000000000000000000000000000000000005f5eb280
Arg [4] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [6] : 4554482d4a554c323032302d3930440000000000000000000000000000000000


Deployed Bytecode Sourcemap

30293:5229:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31908:9;31900:53;;;;;-1:-1:-1;;;31900:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;31962:24;;:::i;:::-;31989:25;32004:9;31989:14;:25::i;:::-;31962:52;-1:-1:-1;32040:1:0;32023:381;32047:13;:20;32043:24;;32023:381;;;32085:14;32102:13;32116:1;32102:16;;;;;;;;;;;;;;;;;;;;:23;-1:-1:-1;;;;;32102:23:0;;-1:-1:-1;32159:53:0;32168:43;32178:13;32193:17;32102:23;32193:9;:17::i;:::-;32168:9;:43::i;:::-;32159:8;:53::i;:::-;32136:76;-1:-1:-1;32227:16:0;;32223:174;;32284:41;32312:12;32284:13;32298:1;32284:16;;;;;;;;;;;;;;;;;;:23;;;:27;;:41;;;;:::i;:::-;32258:13;32272:1;32258:16;;;;;;;;;;;;;;;;;;:23;;:67;;;;32343:42;32353:6;32361:13;32375:1;32361:16;;;;;;;;;;;;;;;;;:23;:16;;;;;:23;;32343:42;;;-1:-1:-1;;;;;32343:42:0;;;;;;;;;;;;;;;;;;32223:174;-1:-1:-1;;32069:3:0;;32023:381;;;;31864:545;30293:5229;;12:1:-1;9;2:12;16527:83:0;;5:9:-1;2:2;;;27:1;24;17:12;2:2;16527:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;16527:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18633:169;;5:9:-1;2:2;;;27:1;24;17:12;2:2;18633:169:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;18633:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;30525:24;;5:9:-1;2:2;;;27:1;24;17:12;2:2;30525:24:0;;;:::i;:::-;;;;;;;;;;;;;;;;17602:100;;5:9:-1;2:2;;;27:1;24;17:12;2:2;17602:100:0;;;:::i;34039:206::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;34039:206:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;34039:206:0;;;;;;;;;;;;;;;;;:::i;17454:83::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;17454:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20006:218;;5:9:-1;2:2;;;27:1;24;17:12;2:2;20006:218:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;20006:218:0;;;;;;;;:::i;32540:117::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;32540:117:0;;;:::i;32813:483::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;32813:483:0;;;:::i;17765:119::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;17765:119:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;17765:119:0;-1:-1:-1;;;;;17765:119:0;;:::i;2890:148::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;2890:148:0;;;:::i;:::-;;30581:26;;5:9:-1;2:2;;;27:1;24;17:12;2:2;30581:26:0;;;:::i;2248:79::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;2248:79:0;;;:::i;:::-;;;;-1:-1:-1;;;;;2248:79:0;;;;;;;;;;;;;;16729:87;;5:9:-1;2:2;;;27:1;24;17:12;2:2;16729:87:0;;;:::i;20727:269::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;20727:269:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;20727:269:0;;;;;;;;:::i;33554:174::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;33554:174:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;33554:174:0;;;;;;;;:::i;27713:40::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;27713:40:0;;;:::i;30554:22::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;30554:22:0;;;:::i;18335:151::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;18335:151:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;18335:151:0;;;;;;;;;;:::i;3193:244::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;3193:244:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;3193:244:0;-1:-1:-1;;;;;3193:244:0;;:::i;34434:125::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;34434:125:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;34434:125:0;;;;;;;:::i;35395:124::-;35458:10;;:::i;:::-;35484:29;35491:6;35499:13;:11;:13::i;:::-;35484:6;:29::i;:::-;35477:36;35395:124;-1:-1:-1;;35395:124:0:o;17765:119::-;-1:-1:-1;;;;;17858:18:0;17831:7;17858:18;;;;;;;;;;;;17765:119::o;28369:201::-;28441:10;;:::i;:::-;28489;;28464:22;;28489;;28504:6;28489:22;:14;:22;:::i;:::-;28531:31;;;;;;;;;;;;;28369:201;-1:-1:-1;;;;28369:201:0:o;29866:119::-;29950:12;;29923:7;;29950:27;;27749:4;29950:27;:16;:27;:::i;7156:181::-;7214:7;7246:5;;;7270:6;;;;7262:46;;;;;-1:-1:-1;;;7262:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;7328:1;7156:181;-1:-1:-1;;;7156:181:0:o;16527:83::-;16597:5;16590:12;;;;;;;;-1:-1:-1;;16590:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16564:13;;16590:12;;16597:5;;16590:12;;16597:5;16590:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16527:83;:::o;18633:169::-;18716:4;18733:39;18742:12;:10;:12::i;:::-;18756:7;18765:6;18733:8;:39::i;:::-;-1:-1:-1;18790:4:0;18633:169;;;;:::o;30525:24::-;;;;:::o;17602:100::-;17682:12;;17602:100;:::o;34039:206::-;34137:4;34154:31;34175:9;34154:20;:31::i;:::-;34194:45;34213:6;34221:9;34232:6;34194:18;:45::i;:::-;;34039:206;;;;;:::o;17454:83::-;17520:9;;;;17454:83;:::o;20006:218::-;20094:4;20111:83;20120:12;:10;:12::i;:::-;20134:7;20143:50;20182:10;20143:11;:25;20155:12;:10;:12::i;:::-;-1:-1:-1;;;;;20143:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;20143:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;:::-;20111:8;:83::i;32540:117::-;32632:10;32583:7;32620:23;;;:11;:23;;;;;;32606:13;:38;;:13;;32620:23;32606:38;;;;;;;;;;;;;;;;:45;;;32599:52;;32540:117;:::o;32813:483::-;27243:11;;32861:7;;-1:-1:-1;;;27243:11:0;;;;27235:55;;;;;-1:-1:-1;;;27235:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;27368:11;:19;;-1:-1:-1;;;;27368:19:0;;;32907:10:::1;27382:5:::0;32895:23;;;:11:::1;:23;::::0;;;;;32947:13:::1;:20:::0;;32895:23;;32947:20;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;;:27:::0;-1:-1:-1;;;;;32947:27:0::1;32933:10;:41;32925:75;;;::::0;;-1:-1:-1;;;32925:75:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;32925:75:0;;;;;;;;;;;;;::::1;;33009:20;33032:13;33046:5;33032:20;;;;;;;;;;;;;;;;;;:27;;;33009:50;;33089:1;33074:12;:16;33066:70;;;;-1:-1:-1::0;;;33066:70:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33175:1;33145:13;33159:5;33145:20;;;;;;;;;::::0;;;::::1;::::0;;:27:::1;:20;::::0;;::::1;;:27;:31:::0;;;;33183:33:::1;::::0;:10:::1;::::0;:33;::::1;;;::::0;33203:12;;33183:33;33145:20;33183:33;33203:12;33183:10;:33;::::1;;;;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;-1:-1:::0;33230:31:0::1;::::0;;33236:10:::1;33230:31:::0;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;;;;;;;;::::1;33277:12:::0;-1:-1:-1;;27548:11:0;:18;;-1:-1:-1;;;;27548:18:0;-1:-1:-1;;;27548:18:0;;;32813:483;:::o;2890:148::-;2470:12;:10;:12::i;:::-;2460:6;;;;;-1:-1:-1;;;;;2460:6:0;;;:22;;;2452:67;;;;;-1:-1:-1;;;2452:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2981:6:::1;::::0;2960:40:::1;::::0;2997:1:::1;::::0;2981:6:::1;::::0;::::1;-1:-1:-1::0;;;;;2981:6:0::1;::::0;2960:40:::1;::::0;2997:1;;2960:40:::1;3011:6;:19:::0;;-1:-1:-1;;;;;;3011:19:0::1;::::0;;2890:148::o;30581:26::-;;;;;;;;;;;;;;;-1:-1:-1;;30581:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2248:79::-;2313:6;;;;;-1:-1:-1;;;;;2313:6:0;;2248:79::o;16729:87::-;16801:7;16794:14;;;;;;;;-1:-1:-1;;16794:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16768:13;;16794:14;;16801:7;;16794:14;;16801:7;16794:14;;;;;;;;;;;;;;;;;;;;;;;;20727:269;20820:4;20837:129;20846:12;:10;:12::i;:::-;20860:7;20869:96;20908:15;20869:96;;;;;;;;;;;;;;;;;:11;:25;20881:12;:10;:12::i;:::-;-1:-1:-1;;;;;20869:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;20869:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;33554:174::-;33632:4;33649:31;33670:9;33649:20;:31::i;:::-;33689:33;33704:9;33715:6;33689:14;:33::i;:::-;;33554:174;;;;:::o;27713:40::-;27749:4;27713:40;:::o;30554:22::-;;;;:::o;18335:151::-;-1:-1:-1;;;;;18451:18:0;;;18424:7;18451:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;18335:151::o;3193:244::-;2470:12;:10;:12::i;:::-;2460:6;;;;;-1:-1:-1;;;;;2460:6:0;;;:22;;;2452:67;;;;;-1:-1:-1;;;2452:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3282:22:0;::::1;3274:73;;;;-1:-1:-1::0;;;3274:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3384:6;::::0;3363:38:::1;::::0;-1:-1:-1;;;;;3363:38:0;;::::1;::::0;3384:6:::1;::::0;::::1;;::::0;3363:38:::1;::::0;;;::::1;3412:6;:17:::0;;-1:-1:-1;;;;;3412:17:0;;::::1;;;-1:-1:-1::0;;;;;;3412:17:0;;::::1;::::0;;;::::1;::::0;;3193:244::o;34434:125::-;2470:12;:10;:12::i;:::-;2460:6;;;;;-1:-1:-1;;;;;2460:6:0;;;:22;;;2452:67;;;;;-1:-1:-1;;;2452:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34519:34:::1;34528:12;34542:10;34519:8;:34::i;:::-;34434:125:::0;;:::o;28011:269::-;28090:10;;:::i;:::-;28113:23;28139:24;:9;27749:4;28139:24;:13;:24;:::i;:::-;28113:50;-1:-1:-1;28176:16:0;28195:32;28113:50;28215:11;28195:32;:19;:32;:::i;:::-;28247:25;;;;;;;;;;;;;28011:269;-1:-1:-1;;;;;28011:269:0:o;8486:471::-;8544:7;8789:6;8785:47;;-1:-1:-1;8819:1:0;8812:8;;8785:47;8856:5;;;8860:1;8856;:5;:1;8880:5;;;;;:10;8872:56;;;;-1:-1:-1;;;8872:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9425:132;9483:7;9510:39;9514:1;9517;9510:39;;;;;;;;;;;;;;;;;:3;:39::i;804:106::-;892:10;804:106;:::o;23874:346::-;-1:-1:-1;;;;;23976:19:0;;23968:68;;;;-1:-1:-1;;;23968:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24055:21:0;;24047:68;;;;-1:-1:-1;;;24047:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24128:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;24180:32;;;;;;;;;;;;;;;;;23874:346;;;:::o;35122:267::-;-1:-1:-1;;;;;35195:22:0;;;;;;:11;:22;;;;;;35191:193;;35254:20;;;;;;;;;-1:-1:-1;;;;;35254:20:0;;;;;-1:-1:-1;35254:20:0;;;;;;35235:13;27:10:-1;;39:1;23:18;;;45:23;;35235:40:0;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;35235:40:0;;;;;;;;;;;;;;;;;;35311:20;:27;;:24;:27::i;:::-;-1:-1:-1;;;;;35286:22:0;;;;;;:11;:22;;;;;;;;;:52;;;;35354:20;;;;;;;;;;;;;;;;;35191:193;35122:267;:::o;19276:321::-;19382:4;19399:36;19409:6;19417:9;19428:6;19399:9;:36::i;:::-;19446:121;19455:6;19463:12;:10;:12::i;:::-;19477:89;19515:6;19477:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19477:19:0;;;;;;:11;:19;;;;;;19497:12;:10;:12::i;:::-;-1:-1:-1;;;;;19477:33:0;;;;;;;;;;;;-1:-1:-1;19477:33:0;;;:89;;:37;:89;:::i;19446:121::-;-1:-1:-1;19585:4:0;19276:321;;;;;:::o;8043:192::-;8129:7;8165:12;8157:6;;;;8149:29;;;;-1:-1:-1;;;8149:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;8149:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;8201:5:0;;;8043:192::o;18097:175::-;18183:4;18200:42;18210:12;:10;:12::i;:::-;18224:9;18235:6;18200:9;:42::i;34756:172::-;34832:9;:24;;;34863:7;:20;;;34895:27;;;;;;;;;;;;;;;;;;;;;;;;;34756:172;;:::o;10045:345::-;10131:7;10233:12;10226:5;10218:28;;;;-1:-1:-1;;;10218:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;10218:28:0;;10257:9;10273:1;10269;:5;;;;;;;10045:345;-1:-1:-1;;;;;10045:345:0:o;7612:136::-;7670:7;7697:43;7701:1;7704;7697:43;;;;;;;;;;;;;;;;;:3;:43::i;21486:539::-;-1:-1:-1;;;;;21592:20:0;;21584:70;;;;-1:-1:-1;;;21584:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21673:23:0;;21665:71;;;;-1:-1:-1;;;21665:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21749:47;21770:6;21778:9;21789:6;21749:20;:47::i;:::-;21829:71;21851:6;21829:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21829:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;21809:17:0;;;:9;:17;;;;;;;;;;;:91;;;;21934:20;;;;;;;:32;;21959:6;21934:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;21911:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;21982:35;;;;;;;21911:20;;21982:35;;;;;;;;;;;;;21486:539;;;:::o;25245:92::-;;;;:::o;30293:5229::-;;;;;;;;;;;;;;:::o

Swarm Source

ipfs://8f9248a6d265f6608adffcb671f68546f8541c278cd4169185c2612b120e3250
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.