ETH Price: $2,169.55 (+4.40%)

Token

EHash Token (EHASH)
 

Overview

Max Total Supply

20,000,000 EHASH

Holders

1

Transfers

-
0 (0%)

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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

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

Contract Source Code Verified (Exact Match)

Contract Name:
EHashToken

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 1 of 2: ehash.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.6.12;

import "./ehash_library.sol";

/**
 * @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 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 onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

/**
 * @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 {ERC20PresetMinterPauser}.
 *
 * 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;

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

    string public name;
    string public symbol;
    uint8 public decimals;
    uint256 private _totalSupply;

    /**
     * @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 override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view 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 override returns (bool) {
        require((allowance(_msgSender(), spender) == 0) || (amount == 0), "ERC20: change allowance use increaseAllowance or decreaseAllowance instead");
        _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 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 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 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 {
        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 {
        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 {
        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 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 {
        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 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 { }
}

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor () internal {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!_paused, "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(_paused, "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

contract EHashBaseToken is ERC20, Pausable, Ownable {
    /**
     * @dev Initialize the contract give all tokens to the deployer
     */
    constructor(string memory _name, string memory _symbol, uint8 _decimals, uint256 _initialSupply) public {
        name = _name;
        symbol = _symbol;
        decimals = _decimals;
        _mint(_msgSender(), _initialSupply * (10 ** uint256(_decimals)));
    }

    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public {
        _burn(_msgSender(), 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) public onlyOwner {
        _mint(account,amount);
    }
     
    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public {
        uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "EHashToken: burn amount exceeds allowance");

        _approve(account, _msgSender(), decreasedAllowance);
        _burn(account, amount);
    }

    /**
     * @dev Triggers stopped state.
     * @notice only Owner call
     */
    function pause() public onlyOwner {
        _pause();
    }

    /**
     * @dev Returns to normal state.
     * @notice only Owner call
     */
    function unpause() public onlyOwner {
        _unpause();
    }
    
    /**
     * @dev Batch transfer amount to recipient
     * @notice that excessive gas consumption causes transaction revert
     */
    function batchTransfer(address[] memory recipients, uint256[] memory amounts) public {
        require(recipients.length > 0, "EHashToken: least one recipient address");
        require(recipients.length == amounts.length, "EHashToken: number of recipient addresses does not match the number of tokens");

        for(uint256 i = 0; i < recipients.length; ++i) {
            _transfer(_msgSender(), recipients[i], amounts[i]);
        }
    }
}


contract EHashToken is EHashBaseToken, ReentrancyGuard{
    using SafeMath for uint256;
    using Address for address payable;

    // @dev a revenue share multiplier to avert divison downflow.
    uint256 internal constant REVENUE_SHARE_MULTIPLIER = 1e18;
    
    // @dev update period in secs for revenue distribution.
    uint256 public updatePeriod = 30;

    // @dev for tracking of holders' claimable revenue.
    mapping (address => uint256) internal _revenueBalance;
    
    // @dev for tracking of holders' claimed revenue.
    mapping (address => uint256) internal _revenueClaimed;
    
    /// @dev RoundData always kept for each round.
    struct RoundData {
        uint256 accTokenShare;     // accumulated unit ehash share for each settlement.
        uint256 roundEthers;    // total ethers received in this round. 
    }
    
    /// @dev round index mapping to RoundData.
    mapping (uint => RoundData) private _rounds;
    
    /// @dev mark token holders' highest settled revenue round.
    mapping (address => uint) private _settledRevenueRounds;
    
    /// @dev a monotonic increasing round index, STARTS FROM 1
    uint private _currentRound = 1;
    
    /// @dev expected next update time
    uint private _nextUpdate = block.timestamp + updatePeriod;

    /// @dev manager's address
    address payable managerAddress;

    /// @dev Revenue Claiming log
    event Claim(address indexed account, uint256 amount);
    
    /// @dev Update log
    event Update(uint256 AccTokenShare, uint256 RoundEthers);

    /// @dev Received log
    event Received(address indexed account, uint256 amount);
    
    /// @dev Settle Log
    event Settle(address indexed account, uint LastSettledRound, uint256 Revenue);
    
    constructor(string memory _name, string memory _symbol, uint8 _decimals, uint256 _initialSupply) 
        EHashBaseToken(_name, _symbol, _decimals, _initialSupply)
        public {
    }
    
    // @dev tryUpdate function
    modifier tryUpdate() {
        if (block.timestamp > _nextUpdate) {
            update();
        }
        _;
    }
    
    /**
     * @notice set manager's address
     */
    function setManagerAddress(address payable account) external onlyOwner {
        require (account != address(0), "0 address");
        managerAddress = account;
    }
    
    /** 
     * @notice set update period
     */
    function setUpdatePeriod(uint nsecs) external onlyOwner {
        require (nsecs > 0," period should be positive");
        updatePeriod = nsecs;
    }
    
    /**
     * @notice get manager's address
     */
     function getManagerAddress() external view returns(address) {
         return managerAddress;
     }
    
    /**
     * @notice default ether receiving function 
     */
    receive() external payable tryUpdate {
        _rounds[_currentRound].roundEthers += msg.value;
        emit Received(msg.sender, msg.value);
    }

    /**
     * @notice check unclaimed revenue 
     */
    function checkUnclaimedRevenue(address account) public view returns(uint256 revenue) {
        uint256 accountTokens = balanceOf(account);
        uint lastSettledRound = _settledRevenueRounds[account];

        uint256 roundRevenue = _rounds[_currentRound-1].accTokenShare.sub(_rounds[lastSettledRound].accTokenShare)
                                    .mul(accountTokens)
                                    .div(REVENUE_SHARE_MULTIPLIER);  // NOTE: div by REVENUE_SHARE_MULTIPLIER

        return _revenueBalance[account].add(roundRevenue);
    }
    
    /**
     * @notice get user's life-time gain
     */
    function checkTotalRevenue(address account) external view returns(uint256 revenue) {
        return checkUnclaimedRevenue(account) + _revenueClaimed[account];
    }
    
    /**
     * @notice get round N information
     */
    function getRoundData(uint round) external view returns(uint256 accTokenShare, uint256 roundEthers) {
        return (_rounds[round].accTokenShare, _rounds[round].roundEthers);
    }
    
    /**
     * @notice get current round
     */
    function getCurrentRound() external view returns(uint round) {
        return _currentRound;
    }

    /**
     * @notice token holders claim revenue
     */
    function claim() external whenNotPaused {
        // settle un-distributed revenue in rounds to _revenueBalance;
        _settleRevenue(msg.sender);

        // revenue balance change
        uint256 revenue = _revenueBalance[msg.sender];
        _revenueBalance[msg.sender] = 0; // zero sender's balance
        
        // transfer ETH to msg.sender
        msg.sender.sendValue(revenue);
        
        // record claimed revenue
        _revenueClaimed[msg.sender] += revenue;
        
        // log
        emit Claim(msg.sender, revenue);
    }
    
     /**
     * @notice settle revenue in rounds to _revenueBalance, 
     * settle revenue happens before any token exchange such as ERC20-transfer,mint,burn,
     * and active claim();
     */
    function _settleRevenue(address account) internal tryUpdate {
        uint256 accountTokens = balanceOf(account);
        uint lastSettledRound = _settledRevenueRounds[account];
        
        uint256 roundRevenue = _rounds[_currentRound-1].accTokenShare.sub(_rounds[lastSettledRound].accTokenShare)
                                    .mul(accountTokens)
                                    .div(REVENUE_SHARE_MULTIPLIER);  // NOTE: div by REVENUE_SHARE_MULTIPLIER

        // mark highest settled round revenue claimed.
        _settledRevenueRounds[account] = _currentRound - 1;
        // set back balance to storage
        _revenueBalance[account] += roundRevenue;
        // log
        emit Settle(account, _settledRevenueRounds[account], _revenueBalance[account]);
    }
    
    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     * - accounts must not trigger the locked `amount` during the locked period.
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal override {
        require(!paused(), "EHash: token transfer while paused");
        
        // handle revenue settlement before token number changes.
        if (from != address(0)) {
            _settleRevenue(from);
        }
        
        if (to != address(0)) {
            _settleRevenue(to);
        }
        
        super._beforeTokenTransfer(from, to, amount);
    }
    
    
    /**
     * @dev update function to settle rounds shifting and rounds share.
     */
    function update() internal nonReentrant {
        require (block.timestamp > _nextUpdate, "period not expired");
        require (managerAddress != address(0), "manager address has not set");
        
        // rules:
        // 80% of ethers in this round belongs to all token holders
        //  roundEthers * 80% / totalSupply()
        // and, 20% of ethers belongs to manager
        uint256 roundEthers = _rounds[_currentRound].roundEthers;
        uint256 managerRevenue = roundEthers.mul(20).div(100);
        uint256 holdersEthers = roundEthers.sub(managerRevenue);
        
        // send to manager
        managerAddress.sendValue(managerRevenue);
        
        // substract manager's revenue
        
        // set accmulated holder's share
        _rounds[_currentRound].accTokenShare = _rounds[_currentRound-1].accTokenShare
                                                .add(
                                                    holdersEthers
                                                    .mul(REVENUE_SHARE_MULTIPLIER) // NOTE: multiplied by REVENUE_SHARE_MULTIPLIER here
                                                    .div(totalSupply())
                                                );

        // log                                            
        emit Update(_rounds[_currentRound].accTokenShare, _rounds[_currentRound].roundEthers);
        
        // next round setting                                 
        _currentRound++;
        _nextUpdate = block.timestamp + updatePeriod;
    }
}

File 2 of 2: ehash_library.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.12;

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

/*
 * @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.
 */
abstract contract Context {
    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;
    }
}

/**
 * @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.
     *
     * _Available since v2.4.0._
     */
    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.
     *
     * _Available since v2.4.0._
     */
    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.
     *
     * _Available since v2.4.0._
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

/**
 * @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) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.3._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.3._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

library SafeERC20 {
    using SafeMath for uint256;
    using Address for address;

    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        // solhint-disable-next-line max-line-length
        require((value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).add(value);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero");
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) { // Return data is optional
            // solhint-disable-next-line max-line-length
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

library Strings {
    /**
     * @dev Converts a `uint256` to its ASCII `string` representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        uint256 index = digits - 1;
        temp = value;
        while (temp != 0) {
            buffer[index--] = byte(uint8(48 + temp % 10));
            temp /= 10;
        }
        return string(buffer);
    }
}

abstract contract ReentrancyGuard {
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor () public {
        _status = _NOT_ENTERED;
    }
    
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

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

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint8","name":"_decimals","type":"uint8"},{"internalType":"uint256","name":"_initialSupply","type":"uint256"}],"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":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Claim","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Received","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"LastSettledRound","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"Revenue","type":"uint256"}],"name":"Settle","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"AccTokenShare","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"RoundEthers","type":"uint256"}],"name":"Update","type":"event"},{"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":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"batchTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"checkTotalRevenue","outputs":[{"internalType":"uint256","name":"revenue","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"checkUnclaimedRevenue","outputs":[{"internalType":"uint256","name":"revenue","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","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":"getCurrentRound","outputs":[{"internalType":"uint256","name":"round","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getManagerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"round","type":"uint256"}],"name":"getRoundData","outputs":[{"internalType":"uint256","name":"accTokenShare","type":"uint256"},{"internalType":"uint256","name":"roundEthers","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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"setManagerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"nsecs","type":"uint256"}],"name":"setUpdatePeriod","outputs":[],"stateMutability":"nonpayable","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"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"updatePeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052601e6008556001600d556008544201600e553480156200002357600080fd5b5060405162002eb738038062002eb7833981810160405260808110156200004957600080fd5b81019080805160405193929190846401000000008211156200006a57600080fd5b9083019060208201858111156200008057600080fd5b82516401000000008111828201881017156200009b57600080fd5b82525081516020918201929091019080838360005b83811015620000ca578181015183820152602001620000b0565b50505050905090810190601f168015620000f85780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011c57600080fd5b9083019060208201858111156200013257600080fd5b82516401000000008111828201881017156200014d57600080fd5b82525081516020918201929091019080838360005b838110156200017c57818101518382015260200162000162565b50505050905090810190601f168015620001aa5780820380516001836020036101000a031916815260200191505b50604090815260208201519101516006805460ff191690559092509050838383836000620001d762000299565b60068054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35083516200024290600290602087019062000b3f565b5082516200025890600390602086019062000b3f565b506004805460ff191660ff8416179055620002856200027662000299565b60ff8416600a0a83026200029d565b505060016007555062000bdb945050505050565b3390565b6001600160a01b038216620002f9576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6200030760008383620003ac565b62000323816005546200044760201b620015481790919060201c565b6005556001600160a01b03821660009081526020818152604090912054620003569183906200154862000447821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b620003b6620004ab565b15620003f45760405162461bcd60e51b815260040180806020018281038252602281526020018062002e3a6022913960400191505060405180910390fd5b6001600160a01b038316156200040f576200040f83620004b4565b6001600160a01b038216156200042a576200042a82620004b4565b620004428383836200044260201b620010601760201c565b505050565b600082820183811015620004a2576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b90505b92915050565b60065460ff1690565b600e54421115620004c957620004c9620005dc565b6000620004d6826200083e565b6001600160a01b0383166000908152600c6020908152604080832054808452600b835281842054600d5460001901855291842054949550936200056192670de0b6b3a7640000926200054d928892620005399290620015a962000859821b17901c565b620008a360201b620015eb1790919060201c565b6200090160201b620016441790919060201c565b600d546001600160a01b0386166000818152600c602090815260408083206000199095018555600982529182902080548601908190559354825190815290810193909352805193945090927f4fbc32cd3e6036f5cb98e166f4396ae4cf37448523e3b9f8659759384d2b2a289281900390910190a250505050565b6002600754141562000635576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600755600e54421162000686576040805162461bcd60e51b81526020600482015260126024820152711c195c9a5bd9081b9bdd08195e1c1a5c995960721b604482015290519081900360640190fd5b600f546001600160a01b0316620006e4576040805162461bcd60e51b815260206004820152601b60248201527f6d616e61676572206164647265737320686173206e6f74207365740000000000604482015290519081900360640190fd5b600d546000908152600b6020908152604082206001015491906200071e906064906200054d908590601490620015eb620008a3821b17901c565b905060006200073c82846200085960201b620015a91790919060201c565b600f5490915062000763906001600160a01b0316836200094b602090811b6200168617901c565b620007c1620007976200077562000a35565b6200054d670de0b6b3a764000085620008a360201b620015eb1790919060201c565b600d54600019016000908152600b602090815260409091205491906200154862000447821b17901c565b600d80546000908152600b602090815260408083209490945591548152829020805460019091015483519182529181019190915281517f8ecf343d22d1934aea3fb34b7332371552b19286c5bc696adae16c7690a90d54929181900390910190a15050600d805460019081019091556008544201600e5560075550565b6001600160a01b031660009081526020819052604090205490565b6000620004a283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525062000a3b60201b60201c565b600082620008b457506000620004a5565b82820282848281620008c257fe5b0414620004a25760405162461bcd60e51b815260040180806020018281038252602181526020018062002e966021913960400191505060405180910390fd5b6000620004a283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525062000ad660201b60201c565b80471015620009a1576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015290519081900360640190fd5b6040516000906001600160a01b0384169083908381818185875af1925050503d8060008114620009ee576040519150601f19603f3d011682016040523d82523d6000602084013e620009f3565b606091505b5050905080620004425760405162461bcd60e51b815260040180806020018281038252603a81526020018062002e5c603a913960400191505060405180910390fd5b60055490565b6000818484111562000ace5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101562000a9257818101518382015260200162000a78565b50505050905090810190601f16801562000ac05780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000818362000b285760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831562000a9257818101518382015260200162000a78565b50600083858162000b3557fe5b0495945050505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000b8257805160ff191683800117855562000bb2565b8280016001018555821562000bb2579182015b8281111562000bb257825182559160200191906001019062000b95565b5062000bc092915062000bc4565b5090565b5b8082111562000bc0576000815560010162000bc5565b61224f8062000beb6000396000f3fe6080604052600436106101d15760003560e01c806379cc6790116100f7578063a457c2d711610095578063dd62ed3e11610064578063dd62ed3e146107f5578063e55fae7714610830578063e829f95b1461085a578063f2fde38b1461088d5761023d565b8063a457c2d714610759578063a83627de14610792578063a9059cbb146107a7578063c162d7da146107e05761023d565b80638da5cb5b116100d15780638da5cb5b146106cb57806395d89b41146106fc578063966fa49014610711578063a32bf597146107445761023d565b806379cc6790146105495780638456cb591461058257806388d695b2146105975761023d565b80633f4ba83a1161016f5780634e71d92d1161013e5780634e71d92d146104d75780635c975abb146104ec57806370a0823114610501578063715018a6146105345761023d565b80633f4ba83a1461042a57806340c10f1914610441578063414319081461047a57806342966c68146104ad5761023d565b806318160ddd116101ab57806318160ddd1461035c57806323b872dd14610383578063313ce567146103c657806339509351146103f15761023d565b806306fdde03146102425780630720da52146102cc578063095ea7b31461030f5761023d565b3661023d57600e544211156101e8576101e86108c0565b600d546000908152600b60209081526040918290206001018054349081019091558251908152915133927f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f8852587492908290030190a2005b600080fd5b34801561024e57600080fd5b50610257610ad1565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610291578181015183820152602001610279565b50505050905090810190601f1680156102be5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102d857600080fd5b506102f6600480360360208110156102ef57600080fd5b5035610b5c565b6040805192835260208301919091528051918290030190f35b34801561031b57600080fd5b506103486004803603604081101561033257600080fd5b506001600160a01b038135169060200135610b76565b604080519115158252519081900360200190f35b34801561036857600080fd5b50610371610bea565b60408051918252519081900360200190f35b34801561038f57600080fd5b50610348600480360360608110156103a657600080fd5b506001600160a01b03813581169160208101359091169060400135610bf0565b3480156103d257600080fd5b506103db610c77565b6040805160ff9092168252519081900360200190f35b3480156103fd57600080fd5b506103486004803603604081101561041457600080fd5b506001600160a01b038135169060200135610c80565b34801561043657600080fd5b5061043f610cce565b005b34801561044d57600080fd5b5061043f6004803603604081101561046457600080fd5b506001600160a01b038135169060200135610d35565b34801561048657600080fd5b5061043f6004803603602081101561049d57600080fd5b50356001600160a01b0316610da0565b3480156104b957600080fd5b5061043f600480360360208110156104d057600080fd5b5035610e66565b3480156104e357600080fd5b5061043f610e7a565b3480156104f857600080fd5b50610348610f3a565b34801561050d57600080fd5b506103716004803603602081101561052457600080fd5b50356001600160a01b0316610f43565b34801561054057600080fd5b5061043f610f5e565b34801561055557600080fd5b5061043f6004803603604081101561056c57600080fd5b506001600160a01b03813516906020013561100b565b34801561058e57600080fd5b5061043f611065565b3480156105a357600080fd5b5061043f600480360360408110156105ba57600080fd5b8101906020810181356401000000008111156105d557600080fd5b8201836020820111156105e757600080fd5b8035906020019184602083028401116401000000008311171561060957600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929594936020810193503591505064010000000081111561065957600080fd5b82018360208201111561066b57600080fd5b8035906020019184602083028401116401000000008311171561068d57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295506110ca945050505050565b3480156106d757600080fd5b506106e0611196565b604080516001600160a01b039092168252519081900360200190f35b34801561070857600080fd5b506102576111aa565b34801561071d57600080fd5b506103716004803603602081101561073457600080fd5b50356001600160a01b0316611205565b34801561075057600080fd5b5061037161129d565b34801561076557600080fd5b506103486004803603604081101561077c57600080fd5b506001600160a01b0381351690602001356112a3565b34801561079e57600080fd5b5061037161130b565b3480156107b357600080fd5b50610348600480360360408110156107ca57600080fd5b506001600160a01b038135169060200135611311565b3480156107ec57600080fd5b506106e0611325565b34801561080157600080fd5b506103716004803603604081101561081857600080fd5b506001600160a01b0381358116916020013516611334565b34801561083c57600080fd5b5061043f6004803603602081101561085357600080fd5b503561135f565b34801561086657600080fd5b506103716004803603602081101561087d57600080fd5b50356001600160a01b0316611416565b34801561089957600080fd5b5061043f600480360360208110156108b057600080fd5b50356001600160a01b031661143f565b60026007541415610918576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600755600e544211610968576040805162461bcd60e51b81526020600482015260126024820152711c195c9a5bd9081b9bdd08195e1c1a5c995960721b604482015290519081900360640190fd5b600f546001600160a01b03166109c5576040805162461bcd60e51b815260206004820152601b60248201527f6d616e61676572206164647265737320686173206e6f74207365740000000000604482015290519081900360640190fd5b600d546000908152600b6020526040812060010154906109f160646109eb8460146115eb565b90611644565b905060006109ff83836115a9565b600f54909150610a18906001600160a01b031683611686565b610a54610a38610a26610bea565b6109eb84670de0b6b3a76400006115eb565b600d54600019016000908152600b602052604090205490611548565b600d80546000908152600b602090815260408083209490945591548152829020805460019091015483519182529181019190915281517f8ecf343d22d1934aea3fb34b7332371552b19286c5bc696adae16c7690a90d54929181900390910190a15050600d805460019081019091556008544201600e5560075550565b6002805460408051602060018416156101000260001901909316849004601f81018490048402820184019092528181529291830182828015610b545780601f10610b2957610100808354040283529160200191610b54565b820191906000526020600020905b815481529060010190602001808311610b3757829003601f168201915b505050505081565b6000908152600b6020526040902080546001909101549091565b6000610b89610b8361176b565b84611334565b1580610b93575081155b610bce5760405162461bcd60e51b815260040180806020018281038252604a8152602001806121ab604a913960600191505060405180910390fd5b610be0610bd961176b565b848461176f565b5060015b92915050565b60055490565b6000610bfd84848461185b565b610c6d84610c0961176b565b610c68856040518060600160405280602881526020016120d0602891396001600160a01b038a16600090815260016020526040812090610c4761176b565b6001600160a01b0316815260208101919091526040016000205491906119b6565b61176f565b5060019392505050565b60045460ff1681565b6000610be0610c8d61176b565b84610c688560016000610c9e61176b565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611548565b610cd661176b565b60065461010090046001600160a01b03908116911614610d2b576040805162461bcd60e51b815260206004820181905260248201526000805160206120f8833981519152604482015290519081900360640190fd5b610d33611a4d565b565b610d3d61176b565b60065461010090046001600160a01b03908116911614610d92576040805162461bcd60e51b815260206004820181905260248201526000805160206120f8833981519152604482015290519081900360640190fd5b610d9c8282611aeb565b5050565b610da861176b565b60065461010090046001600160a01b03908116911614610dfd576040805162461bcd60e51b815260206004820181905260248201526000805160206120f8833981519152604482015290519081900360640190fd5b6001600160a01b038116610e44576040805162461bcd60e51b815260206004820152600960248201526830206164647265737360b81b604482015290519081900360640190fd5b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b610e77610e7161176b565b82611bdb565b50565b60065460ff1615610ec5576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b610ece33611cd7565b336000818152600960205260408120805491905590610eed9082611686565b336000818152600a6020908152604091829020805485019055815184815291517f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d49281900390910190a250565b60065460ff1690565b6001600160a01b031660009081526020819052604090205490565b610f6661176b565b60065461010090046001600160a01b03908116911614610fbb576040805162461bcd60e51b815260206004820181905260248201526000805160206120f8833981519152604482015290519081900360640190fd5b60065460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360068054610100600160a81b0319169055565b6000611042826040518060600160405280602981526020016121826029913961103b8661103661176b565b611334565b91906119b6565b90506110568361105061176b565b8361176f565b6110608383611bdb565b505050565b61106d61176b565b60065461010090046001600160a01b039081169116146110c2576040805162461bcd60e51b815260206004820181905260248201526000805160206120f8833981519152604482015290519081900360640190fd5b610d33611dc6565b600082511161110a5760405162461bcd60e51b8152600401808060200182810382526027815260200180611f716027913960400191505060405180910390fd5b805182511461114a5760405162461bcd60e51b815260040180806020018281038252604d815260200180611f98604d913960600191505060405180910390fd5b60005b82518110156110605761118e61116161176b565b84838151811061116d57fe5b602002602001015184848151811061118157fe5b602002602001015161185b565b60010161114d565b60065461010090046001600160a01b031690565b6003805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610b545780601f10610b2957610100808354040283529160200191610b54565b60008061121183610f43565b6001600160a01b0384166000908152600c6020908152604080832054808452600b90925280832054600d5460001901845290832054939450909261126e91670de0b6b3a7640000916109eb918791611268916115a9565b906115eb565b6001600160a01b0386166000908152600960205260409020549091506112949082611548565b95945050505050565b600d5490565b6000610be06112b061176b565b84610c68856040518060600160405280602581526020016121f560259139600160006112da61176b565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906119b6565b60085481565b6000610be061131e61176b565b848461185b565b600f546001600160a01b031690565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61136761176b565b60065461010090046001600160a01b039081169116146113bc576040805162461bcd60e51b815260206004820181905260248201526000805160206120f8833981519152604482015290519081900360640190fd5b60008111611411576040805162461bcd60e51b815260206004820152601a60248201527f20706572696f642073686f756c6420626520706f736974697665000000000000604482015290519081900360640190fd5b600855565b6001600160a01b0381166000908152600a602052604081205461143883611205565b0192915050565b61144761176b565b60065461010090046001600160a01b0390811691161461149c576040805162461bcd60e51b815260206004820181905260248201526000805160206120f8833981519152604482015290519081900360640190fd5b6001600160a01b0381166114e15760405162461bcd60e51b8152600401808060200182810382526026815260200180611fe56026913960400191505060405180910390fd5b6006546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600680546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000828201838110156115a2576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60006115a283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506119b6565b6000826115fa57506000610be4565b8282028284828161160757fe5b04146115a25760405162461bcd60e51b81526004018080602001828103825260218152602001806120af6021913960400191505060405180910390fd5b60006115a283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e47565b804710156116db576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015290519081900360640190fd5b6040516000906001600160a01b0384169083908381818185875af1925050503d8060008114611726576040519150601f19603f3d011682016040523d82523d6000602084013e61172b565b606091505b50509050806110605760405162461bcd60e51b815260040180806020018281038252603a815260200180612075603a913960400191505060405180910390fd5b3390565b6001600160a01b0383166117b45760405162461bcd60e51b815260040180806020018281038252602481526020018061215e6024913960400191505060405180910390fd5b6001600160a01b0382166117f95760405162461bcd60e51b815260040180806020018281038252602281526020018061200b6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166118a05760405162461bcd60e51b81526004018080602001828103825260258152602001806121396025913960400191505060405180910390fd5b6001600160a01b0382166118e55760405162461bcd60e51b8152600401808060200182810382526023815260200180611f2c6023913960400191505060405180910390fd5b6118f0838383611eac565b61192d8160405180606001604052806026815260200161204f602691396001600160a01b03861660009081526020819052604090205491906119b6565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461195c9082611548565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115611a455760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611a0a5781810151838201526020016119f2565b50505050905090810190601f168015611a375780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60065460ff16611a9b576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6006805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611ace61176b565b604080516001600160a01b039092168252519081900360200190a1565b6001600160a01b038216611b46576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611b5260008383611eac565b600554611b5f9082611548565b6005556001600160a01b038216600090815260208190526040902054611b859082611548565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038216611c205760405162461bcd60e51b81526004018080602001828103825260218152602001806121186021913960400191505060405180910390fd5b611c2c82600083611eac565b611c6981604051806060016040528060228152602001611f4f602291396001600160a01b03851660009081526020819052604090205491906119b6565b6001600160a01b038316600090815260208190526040902055600554611c8f90826115a9565b6005556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600e54421115611ce957611ce96108c0565b6000611cf482610f43565b6001600160a01b0383166000908152600c6020908152604080832054808452600b90925280832054600d54600019018452908320549394509092611d4b91670de0b6b3a7640000916109eb918791611268916115a9565b600d546001600160a01b0386166000818152600c602090815260408083206000199095018555600982529182902080548601908190559354825190815290810193909352805193945090927f4fbc32cd3e6036f5cb98e166f4396ae4cf37448523e3b9f8659759384d2b2a289281900390910190a250505050565b60065460ff1615611e11576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6006805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611ace61176b565b60008183611e965760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611a0a5781810151838201526020016119f2565b506000838581611ea257fe5b0495945050505050565b611eb4610f3a565b15611ef05760405162461bcd60e51b815260040180806020018281038252602281526020018061202d6022913960400191505060405180910390fd5b6001600160a01b03831615611f0857611f0883611cd7565b6001600160a01b03821615611f2057611f2082611cd7565b61106083838361106056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654548617368546f6b656e3a206c65617374206f6e6520726563697069656e7420616464726573734548617368546f6b656e3a206e756d626572206f6620726563697069656e742061646472657373657320646f6573206e6f74206d6174636820746865206e756d626572206f6620746f6b656e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345486173683a20746f6b656e207472616e73666572207768696c652070617573656445524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416464726573733a20756e61626c6520746f2073656e642076616c75652c20726563697069656e74206d61792068617665207265766572746564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734548617368546f6b656e3a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206368616e676520616c6c6f77616e63652075736520696e637265617365416c6c6f77616e6365206f72206465637265617365416c6c6f77616e636520696e737465616445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220fefcd8c215a57d7725634e98091bc21700be86db48c3134d8f19eee8c1ed0b1464736f6c634300060c003345486173683a20746f6b656e207472616e73666572207768696c6520706175736564416464726573733a20756e61626c6520746f2073656e642076616c75652c20726563697069656e74206d61792068617665207265766572746564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000001312d00000000000000000000000000000000000000000000000000000000000000000b454861736820546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054548415348000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101d15760003560e01c806379cc6790116100f7578063a457c2d711610095578063dd62ed3e11610064578063dd62ed3e146107f5578063e55fae7714610830578063e829f95b1461085a578063f2fde38b1461088d5761023d565b8063a457c2d714610759578063a83627de14610792578063a9059cbb146107a7578063c162d7da146107e05761023d565b80638da5cb5b116100d15780638da5cb5b146106cb57806395d89b41146106fc578063966fa49014610711578063a32bf597146107445761023d565b806379cc6790146105495780638456cb591461058257806388d695b2146105975761023d565b80633f4ba83a1161016f5780634e71d92d1161013e5780634e71d92d146104d75780635c975abb146104ec57806370a0823114610501578063715018a6146105345761023d565b80633f4ba83a1461042a57806340c10f1914610441578063414319081461047a57806342966c68146104ad5761023d565b806318160ddd116101ab57806318160ddd1461035c57806323b872dd14610383578063313ce567146103c657806339509351146103f15761023d565b806306fdde03146102425780630720da52146102cc578063095ea7b31461030f5761023d565b3661023d57600e544211156101e8576101e86108c0565b600d546000908152600b60209081526040918290206001018054349081019091558251908152915133927f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f8852587492908290030190a2005b600080fd5b34801561024e57600080fd5b50610257610ad1565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610291578181015183820152602001610279565b50505050905090810190601f1680156102be5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102d857600080fd5b506102f6600480360360208110156102ef57600080fd5b5035610b5c565b6040805192835260208301919091528051918290030190f35b34801561031b57600080fd5b506103486004803603604081101561033257600080fd5b506001600160a01b038135169060200135610b76565b604080519115158252519081900360200190f35b34801561036857600080fd5b50610371610bea565b60408051918252519081900360200190f35b34801561038f57600080fd5b50610348600480360360608110156103a657600080fd5b506001600160a01b03813581169160208101359091169060400135610bf0565b3480156103d257600080fd5b506103db610c77565b6040805160ff9092168252519081900360200190f35b3480156103fd57600080fd5b506103486004803603604081101561041457600080fd5b506001600160a01b038135169060200135610c80565b34801561043657600080fd5b5061043f610cce565b005b34801561044d57600080fd5b5061043f6004803603604081101561046457600080fd5b506001600160a01b038135169060200135610d35565b34801561048657600080fd5b5061043f6004803603602081101561049d57600080fd5b50356001600160a01b0316610da0565b3480156104b957600080fd5b5061043f600480360360208110156104d057600080fd5b5035610e66565b3480156104e357600080fd5b5061043f610e7a565b3480156104f857600080fd5b50610348610f3a565b34801561050d57600080fd5b506103716004803603602081101561052457600080fd5b50356001600160a01b0316610f43565b34801561054057600080fd5b5061043f610f5e565b34801561055557600080fd5b5061043f6004803603604081101561056c57600080fd5b506001600160a01b03813516906020013561100b565b34801561058e57600080fd5b5061043f611065565b3480156105a357600080fd5b5061043f600480360360408110156105ba57600080fd5b8101906020810181356401000000008111156105d557600080fd5b8201836020820111156105e757600080fd5b8035906020019184602083028401116401000000008311171561060957600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929594936020810193503591505064010000000081111561065957600080fd5b82018360208201111561066b57600080fd5b8035906020019184602083028401116401000000008311171561068d57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295506110ca945050505050565b3480156106d757600080fd5b506106e0611196565b604080516001600160a01b039092168252519081900360200190f35b34801561070857600080fd5b506102576111aa565b34801561071d57600080fd5b506103716004803603602081101561073457600080fd5b50356001600160a01b0316611205565b34801561075057600080fd5b5061037161129d565b34801561076557600080fd5b506103486004803603604081101561077c57600080fd5b506001600160a01b0381351690602001356112a3565b34801561079e57600080fd5b5061037161130b565b3480156107b357600080fd5b50610348600480360360408110156107ca57600080fd5b506001600160a01b038135169060200135611311565b3480156107ec57600080fd5b506106e0611325565b34801561080157600080fd5b506103716004803603604081101561081857600080fd5b506001600160a01b0381358116916020013516611334565b34801561083c57600080fd5b5061043f6004803603602081101561085357600080fd5b503561135f565b34801561086657600080fd5b506103716004803603602081101561087d57600080fd5b50356001600160a01b0316611416565b34801561089957600080fd5b5061043f600480360360208110156108b057600080fd5b50356001600160a01b031661143f565b60026007541415610918576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600755600e544211610968576040805162461bcd60e51b81526020600482015260126024820152711c195c9a5bd9081b9bdd08195e1c1a5c995960721b604482015290519081900360640190fd5b600f546001600160a01b03166109c5576040805162461bcd60e51b815260206004820152601b60248201527f6d616e61676572206164647265737320686173206e6f74207365740000000000604482015290519081900360640190fd5b600d546000908152600b6020526040812060010154906109f160646109eb8460146115eb565b90611644565b905060006109ff83836115a9565b600f54909150610a18906001600160a01b031683611686565b610a54610a38610a26610bea565b6109eb84670de0b6b3a76400006115eb565b600d54600019016000908152600b602052604090205490611548565b600d80546000908152600b602090815260408083209490945591548152829020805460019091015483519182529181019190915281517f8ecf343d22d1934aea3fb34b7332371552b19286c5bc696adae16c7690a90d54929181900390910190a15050600d805460019081019091556008544201600e5560075550565b6002805460408051602060018416156101000260001901909316849004601f81018490048402820184019092528181529291830182828015610b545780601f10610b2957610100808354040283529160200191610b54565b820191906000526020600020905b815481529060010190602001808311610b3757829003601f168201915b505050505081565b6000908152600b6020526040902080546001909101549091565b6000610b89610b8361176b565b84611334565b1580610b93575081155b610bce5760405162461bcd60e51b815260040180806020018281038252604a8152602001806121ab604a913960600191505060405180910390fd5b610be0610bd961176b565b848461176f565b5060015b92915050565b60055490565b6000610bfd84848461185b565b610c6d84610c0961176b565b610c68856040518060600160405280602881526020016120d0602891396001600160a01b038a16600090815260016020526040812090610c4761176b565b6001600160a01b0316815260208101919091526040016000205491906119b6565b61176f565b5060019392505050565b60045460ff1681565b6000610be0610c8d61176b565b84610c688560016000610c9e61176b565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611548565b610cd661176b565b60065461010090046001600160a01b03908116911614610d2b576040805162461bcd60e51b815260206004820181905260248201526000805160206120f8833981519152604482015290519081900360640190fd5b610d33611a4d565b565b610d3d61176b565b60065461010090046001600160a01b03908116911614610d92576040805162461bcd60e51b815260206004820181905260248201526000805160206120f8833981519152604482015290519081900360640190fd5b610d9c8282611aeb565b5050565b610da861176b565b60065461010090046001600160a01b03908116911614610dfd576040805162461bcd60e51b815260206004820181905260248201526000805160206120f8833981519152604482015290519081900360640190fd5b6001600160a01b038116610e44576040805162461bcd60e51b815260206004820152600960248201526830206164647265737360b81b604482015290519081900360640190fd5b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b610e77610e7161176b565b82611bdb565b50565b60065460ff1615610ec5576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b610ece33611cd7565b336000818152600960205260408120805491905590610eed9082611686565b336000818152600a6020908152604091829020805485019055815184815291517f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d49281900390910190a250565b60065460ff1690565b6001600160a01b031660009081526020819052604090205490565b610f6661176b565b60065461010090046001600160a01b03908116911614610fbb576040805162461bcd60e51b815260206004820181905260248201526000805160206120f8833981519152604482015290519081900360640190fd5b60065460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360068054610100600160a81b0319169055565b6000611042826040518060600160405280602981526020016121826029913961103b8661103661176b565b611334565b91906119b6565b90506110568361105061176b565b8361176f565b6110608383611bdb565b505050565b61106d61176b565b60065461010090046001600160a01b039081169116146110c2576040805162461bcd60e51b815260206004820181905260248201526000805160206120f8833981519152604482015290519081900360640190fd5b610d33611dc6565b600082511161110a5760405162461bcd60e51b8152600401808060200182810382526027815260200180611f716027913960400191505060405180910390fd5b805182511461114a5760405162461bcd60e51b815260040180806020018281038252604d815260200180611f98604d913960600191505060405180910390fd5b60005b82518110156110605761118e61116161176b565b84838151811061116d57fe5b602002602001015184848151811061118157fe5b602002602001015161185b565b60010161114d565b60065461010090046001600160a01b031690565b6003805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610b545780601f10610b2957610100808354040283529160200191610b54565b60008061121183610f43565b6001600160a01b0384166000908152600c6020908152604080832054808452600b90925280832054600d5460001901845290832054939450909261126e91670de0b6b3a7640000916109eb918791611268916115a9565b906115eb565b6001600160a01b0386166000908152600960205260409020549091506112949082611548565b95945050505050565b600d5490565b6000610be06112b061176b565b84610c68856040518060600160405280602581526020016121f560259139600160006112da61176b565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906119b6565b60085481565b6000610be061131e61176b565b848461185b565b600f546001600160a01b031690565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61136761176b565b60065461010090046001600160a01b039081169116146113bc576040805162461bcd60e51b815260206004820181905260248201526000805160206120f8833981519152604482015290519081900360640190fd5b60008111611411576040805162461bcd60e51b815260206004820152601a60248201527f20706572696f642073686f756c6420626520706f736974697665000000000000604482015290519081900360640190fd5b600855565b6001600160a01b0381166000908152600a602052604081205461143883611205565b0192915050565b61144761176b565b60065461010090046001600160a01b0390811691161461149c576040805162461bcd60e51b815260206004820181905260248201526000805160206120f8833981519152604482015290519081900360640190fd5b6001600160a01b0381166114e15760405162461bcd60e51b8152600401808060200182810382526026815260200180611fe56026913960400191505060405180910390fd5b6006546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600680546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000828201838110156115a2576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60006115a283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506119b6565b6000826115fa57506000610be4565b8282028284828161160757fe5b04146115a25760405162461bcd60e51b81526004018080602001828103825260218152602001806120af6021913960400191505060405180910390fd5b60006115a283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e47565b804710156116db576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015290519081900360640190fd5b6040516000906001600160a01b0384169083908381818185875af1925050503d8060008114611726576040519150601f19603f3d011682016040523d82523d6000602084013e61172b565b606091505b50509050806110605760405162461bcd60e51b815260040180806020018281038252603a815260200180612075603a913960400191505060405180910390fd5b3390565b6001600160a01b0383166117b45760405162461bcd60e51b815260040180806020018281038252602481526020018061215e6024913960400191505060405180910390fd5b6001600160a01b0382166117f95760405162461bcd60e51b815260040180806020018281038252602281526020018061200b6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166118a05760405162461bcd60e51b81526004018080602001828103825260258152602001806121396025913960400191505060405180910390fd5b6001600160a01b0382166118e55760405162461bcd60e51b8152600401808060200182810382526023815260200180611f2c6023913960400191505060405180910390fd5b6118f0838383611eac565b61192d8160405180606001604052806026815260200161204f602691396001600160a01b03861660009081526020819052604090205491906119b6565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461195c9082611548565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115611a455760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611a0a5781810151838201526020016119f2565b50505050905090810190601f168015611a375780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60065460ff16611a9b576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6006805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611ace61176b565b604080516001600160a01b039092168252519081900360200190a1565b6001600160a01b038216611b46576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611b5260008383611eac565b600554611b5f9082611548565b6005556001600160a01b038216600090815260208190526040902054611b859082611548565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038216611c205760405162461bcd60e51b81526004018080602001828103825260218152602001806121186021913960400191505060405180910390fd5b611c2c82600083611eac565b611c6981604051806060016040528060228152602001611f4f602291396001600160a01b03851660009081526020819052604090205491906119b6565b6001600160a01b038316600090815260208190526040902055600554611c8f90826115a9565b6005556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600e54421115611ce957611ce96108c0565b6000611cf482610f43565b6001600160a01b0383166000908152600c6020908152604080832054808452600b90925280832054600d54600019018452908320549394509092611d4b91670de0b6b3a7640000916109eb918791611268916115a9565b600d546001600160a01b0386166000818152600c602090815260408083206000199095018555600982529182902080548601908190559354825190815290810193909352805193945090927f4fbc32cd3e6036f5cb98e166f4396ae4cf37448523e3b9f8659759384d2b2a289281900390910190a250505050565b60065460ff1615611e11576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6006805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611ace61176b565b60008183611e965760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611a0a5781810151838201526020016119f2565b506000838581611ea257fe5b0495945050505050565b611eb4610f3a565b15611ef05760405162461bcd60e51b815260040180806020018281038252602281526020018061202d6022913960400191505060405180910390fd5b6001600160a01b03831615611f0857611f0883611cd7565b6001600160a01b03821615611f2057611f2082611cd7565b61106083838361106056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654548617368546f6b656e3a206c65617374206f6e6520726563697069656e7420616464726573734548617368546f6b656e3a206e756d626572206f6620726563697069656e742061646472657373657320646f6573206e6f74206d6174636820746865206e756d626572206f6620746f6b656e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345486173683a20746f6b656e207472616e73666572207768696c652070617573656445524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416464726573733a20756e61626c6520746f2073656e642076616c75652c20726563697069656e74206d61792068617665207265766572746564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734548617368546f6b656e3a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206368616e676520616c6c6f77616e63652075736520696e637265617365416c6c6f77616e6365206f72206465637265617365416c6c6f77616e636520696e737465616445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220fefcd8c215a57d7725634e98091bc21700be86db48c3134d8f19eee8c1ed0b1464736f6c634300060c0033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000001312d00000000000000000000000000000000000000000000000000000000000000000b454861736820546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054548415348000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): EHash Token
Arg [1] : _symbol (string): EHASH
Arg [2] : _decimals (uint8): 18
Arg [3] : _initialSupply (uint256): 20000000

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 0000000000000000000000000000000000000000000000000000000001312d00
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [5] : 454861736820546f6b656e000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 4548415348000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

15942:8324:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18021:11;;18003:15;:29;17999:70;;;18049:8;:6;:8::i;:::-;18851:13:::1;::::0;18843:22:::1;::::0;;;:7:::1;:22;::::0;;;;;;;;:34:::1;;:47:::0;;18881:9:::1;18843:47:::0;;::::1;::::0;;;18906:31;;;;;;;18915:10:::1;::::0;18906:31:::1;::::0;;;;;;;::::1;15942:8324:::0;;;;;3677:18;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19879:184;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19879:184:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4866:315;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;4866:315:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;3851:100;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;5663:313;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;5663:313:0;;;;;;;;;;;;;;;;;:::i;3729:21::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6385:210;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;6385:210:0;;;;;;;;:::i;15268:65::-;;;;;;;;;;;;;:::i;:::-;;14296:104;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;14296:104:0;;;;;;;;:::i;18156:169::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18156:169:0;-1:-1:-1;;;;;18156:169:0;;:::i;13927:83::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13927:83:0;;:::i;20297:568::-;;;;;;;;;;;;;:::i;12237:78::-;;;;;;;;;;;;;:::i;4014:119::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4014:119:0;-1:-1:-1;;;;;4014:119:0;;:::i;1745:140::-;;;;;;;;;;;;;:::i;14724:292::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;14724:292:0;;;;;;;;:::i;15111:61::-;;;;;;;;;;;;;:::i;15484:449::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15484:449:0;;;;;;;;-1:-1:-1;15484:449:0;;-1:-1:-1;;15484:449:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15484:449:0;;-1:-1:-1;15484:449:0;;-1:-1:-1;;;;;15484:449:0:i;1103:79::-;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;1103:79:0;;;;;;;;;;;;;;3702:20;;;;;;;;;;;;;:::i;19012:559::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19012:559:0;-1:-1:-1;;;;;19012:559:0;;:::i;20127:100::-;;;;;;;;;;;;;:::i;7098:261::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;7098:261:0;;;;;;;;:::i;16276:32::-;;;;;;;;;;;;;:::i;4346:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;4346:167:0;;;;;;;;:::i;18613:102::-;;;;;;;;;;;;;:::i;4576:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;4576:143:0;;;;;;;;;;:::i;18390:154::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18390:154:0;;:::i;19643:166::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19643:166:0;-1:-1:-1;;;;;19643:166:0;;:::i;2040:236::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2040:236:0;-1:-1:-1;;;;;2040:236:0;;:::i;22696:1567::-;21196:1:1;21428:7;;:19;;21420:63;;;;;-1:-1:-1;;;21420:63:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;21196:1;21561:7;:18;22774:11:0::1;::::0;22756:15:::1;:29;22747:61;;;::::0;;-1:-1:-1;;;22747:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;22747:61:0;;;;;;;;;;;;;::::1;;22828:14;::::0;-1:-1:-1;;;;;22828:14:0::1;22819:69;;;::::0;;-1:-1:-1;;;22819:69:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;23124:13;::::0;23094:19:::1;23116:22:::0;;;:7:::1;:22;::::0;;;;:34:::1;;::::0;;23186:28:::1;23210:3;23186:19;23116:34:::0;23202:2:::1;23186:15;:19::i;:::-;:23:::0;::::1;:28::i;:::-;23161:53:::0;-1:-1:-1;23225:21:0::1;23249:31;:11:::0;23161:53;23249:15:::1;:31::i;:::-;23329:14;::::0;23225:55;;-1:-1:-1;23329:40:0::1;::::0;-1:-1:-1;;;;;23329:14:0::1;23354::::0;23329:24:::1;:40::i;:::-;23521:421;23668:223;23877:13;:11;:13::i;:::-;23668:97;:13:::0;16198:4:::1;23668:71;:97::i;:223::-;23529:13;::::0;-1:-1:-1;;23529:15:0;23521:24:::1;::::0;;;:7:::1;:24;::::0;;;;:38;;:92:::1;:421::i;:::-;23490:13;::::0;;23482:22:::1;::::0;;;:7:::1;:22;::::0;;;;;;;:460;;;;24035:13;;24027:22;;;;;:36;;24065:34:::1;::::0;;::::1;::::0;24020:80;;;;;;;::::1;::::0;;;;;;::::1;::::0;;;;;;;;;::::1;-1:-1:-1::0;;24185:13:0::1;:15:::0;;::::1;::::0;;::::1;::::0;;;24243:12:::1;::::0;24225:15:::1;:30;24211:11;:44:::0;21740:7:1;:22;-1:-1:-1;22696:1567:0:o;3677:18::-;;;;;;;;;;;;;;-1:-1:-1;;3677:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;19879:184::-;19935:21;19998:14;;;:7;:14;;;;;:28;;20028:26;;;;;19998:28;;19879:184::o;4866:315::-;4941:4;4967:32;4977:12;:10;:12::i;:::-;4991:7;4967:9;:32::i;:::-;:37;;4966:56;;-1:-1:-1;5010:11:0;;4966:56;4958:143;;;;-1:-1:-1;;;4958:143:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5112:39;5121:12;:10;:12::i;:::-;5135:7;5144:6;5112:8;:39::i;:::-;-1:-1:-1;5169:4:0;4866:315;;;;;:::o;3851:100::-;3931:12;;3851:100;:::o;5663:313::-;5761:4;5778:36;5788:6;5796:9;5807:6;5778:9;:36::i;:::-;5825:121;5834:6;5842:12;:10;:12::i;:::-;5856:89;5894:6;5856:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;5856:19:0;;;;;;:11;:19;;;;;;5876:12;:10;:12::i;:::-;-1:-1:-1;;;;;5856:33:0;;;;;;;;;;;;-1:-1:-1;5856:33:0;;;:89;:37;:89::i;:::-;5825:8;:121::i;:::-;-1:-1:-1;5964:4:0;5663:313;;;;;:::o;3729:21::-;;;;;;:::o;6385:210::-;6465:4;6482:83;6491:12;:10;:12::i;:::-;6505:7;6514:50;6553:10;6514:11;:25;6526:12;:10;:12::i;:::-;-1:-1:-1;;;;;6514:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;6514:25:0;;;:34;;;;;;;;;;;:38;:50::i;15268:65::-;1325:12;:10;:12::i;:::-;1315:6;;;;;-1:-1:-1;;;;;1315:6:0;;;:22;;;1307:67;;;;;-1:-1:-1;;;1307:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1307:67:0;;;;;;;;;;;;;;;15315:10:::1;:8;:10::i;:::-;15268:65::o:0;14296:104::-;1325:12;:10;:12::i;:::-;1315:6;;;;;-1:-1:-1;;;;;1315:6:0;;;:22;;;1307:67;;;;;-1:-1:-1;;;1307:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1307:67:0;;;;;;;;;;;;;;;14371:21:::1;14377:7;14385:6;14371:5;:21::i;:::-;14296:104:::0;;:::o;18156:169::-;1325:12;:10;:12::i;:::-;1315:6;;;;;-1:-1:-1;;;;;1315:6:0;;;:22;;;1307:67;;;;;-1:-1:-1;;;1307:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1307:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;18247:21:0;::::1;18238:44;;;::::0;;-1:-1:-1;;;18238:44:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;18238:44:0;;;;;;;;;;;;;::::1;;18293:14;:24:::0;;-1:-1:-1;;;;;;18293:24:0::1;-1:-1:-1::0;;;;;18293:24:0;;;::::1;::::0;;;::::1;::::0;;18156:169::o;13927:83::-;13975:27;13981:12;:10;:12::i;:::-;13995:6;13975:5;:27::i;:::-;13927:83;:::o;20297:568::-;12555:7;;;;12554:8;12546:37;;;;;-1:-1:-1;;;12546:37:0;;;;;;;;;;;;-1:-1:-1;;;12546:37:0;;;;;;;;;;;;;;;20420:26:::1;20435:10;20420:14;:26::i;:::-;20528:10;20494:15;20512:27:::0;;;:15:::1;:27;::::0;;;;;;20550:31;;;20512:27;20666:29:::1;::::0;20512:27;20666:20:::1;:29::i;:::-;20767:10;20751:27;::::0;;;:15:::1;:27;::::0;;;;;;;;:38;;;::::1;::::0;;20831:26;;;;;;;::::1;::::0;;;;;;;;::::1;12594:1;20297:568::o:0;12237:78::-;12300:7;;;;12237:78;:::o;4014:119::-;-1:-1:-1;;;;;4107:18:0;4080:7;4107:18;;;;;;;;;;;;4014:119::o;1745:140::-;1325:12;:10;:12::i;:::-;1315:6;;;;;-1:-1:-1;;;;;1315:6:0;;;:22;;;1307:67;;;;;-1:-1:-1;;;1307:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1307:67:0;;;;;;;;;;;;;;;1828:6:::1;::::0;1807:40:::1;::::0;1844:1:::1;::::0;1828:6:::1;::::0;::::1;-1:-1:-1::0;;;;;1828:6:0::1;::::0;1807:40:::1;::::0;1844:1;;1807:40:::1;1858:6;:19:::0;;-1:-1:-1;;;;;;1858:19:0::1;::::0;;1745:140::o;14724:292::-;14793:26;14822:89;14859:6;14822:89;;;;;;;;;;;;;;;;;:32;14832:7;14841:12;:10;:12::i;:::-;14822:9;:32::i;:::-;:36;:89;:36;:89::i;:::-;14793:118;;14924:51;14933:7;14942:12;:10;:12::i;:::-;14956:18;14924:8;:51::i;:::-;14986:22;14992:7;15001:6;14986:5;:22::i;:::-;14724:292;;;:::o;15111:61::-;1325:12;:10;:12::i;:::-;1315:6;;;;;-1:-1:-1;;;;;1315:6:0;;;:22;;;1307:67;;;;;-1:-1:-1;;;1307:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1307:67:0;;;;;;;;;;;;;;;15156:8:::1;:6;:8::i;15484:449::-:0;15608:1;15588:10;:17;:21;15580:73;;;;-1:-1:-1;;;15580:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15693:7;:14;15672:10;:17;:35;15664:125;;;;-1:-1:-1;;;15664:125:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15806:9;15802:124;15825:10;:17;15821:1;:21;15802:124;;;15864:50;15874:12;:10;:12::i;:::-;15888:10;15899:1;15888:13;;;;;;;;;;;;;;15903:7;15911:1;15903:10;;;;;;;;;;;;;;15864:9;:50::i;:::-;15844:3;;15802:124;;1103:79;1168:6;;;;;-1:-1:-1;;;;;1168:6:0;;1103:79::o;3702:20::-;;;;;;;;;;;;;;;-1:-1:-1;;3702:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19012:559;19080:15;19108:21;19132:18;19142:7;19132:9;:18::i;:::-;-1:-1:-1;;;;;19185:30:0;;19161:21;19185:30;;;:21;:30;;;;;;;;;19294:25;;;:7;:25;;;;;;:39;19259:13;;-1:-1:-1;;19259:15:0;19251:24;;;;;:38;19108:42;;-1:-1:-1;19185:30:0;;19251:208;;16198:4;;19251:140;;19108:42;;19251:83;;:42;:83::i;:::-;:125;;:140::i;:208::-;-1:-1:-1;;;;;19521:24:0;;;;;;:15;:24;;;;;;19228:231;;-1:-1:-1;19521:42:0;;19228:231;19521:28;:42::i;:::-;19514:49;19012:559;-1:-1:-1;;;;;19012:559:0:o;20127:100::-;20206:13;;20127:100;:::o;7098:261::-;7183:4;7200:129;7209:12;:10;:12::i;:::-;7223:7;7232:96;7271:15;7232:96;;;;;;;;;;;;;;;;;:11;:25;7244:12;:10;:12::i;:::-;-1:-1:-1;;;;;7232:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;7232:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;16276:32::-;;;;:::o;4346:167::-;4424:4;4441:42;4451:12;:10;:12::i;:::-;4465:9;4476:6;4441:9;:42::i;18613:102::-;18692:14;;-1:-1:-1;;;;;18692:14:0;18613:102;:::o;4576:143::-;-1:-1:-1;;;;;4684:18:0;;;4657:7;4684:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;4576:143::o;18390:154::-;1325:12;:10;:12::i;:::-;1315:6;;;;;-1:-1:-1;;;;;1315:6:0;;;:22;;;1307:67;;;;;-1:-1:-1;;;1307:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1307:67:0;;;;;;;;;;;;;;;18474:1:::1;18466:5;:9;18457:48;;;::::0;;-1:-1:-1;;;18457:48:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;18516:12;:20:::0;18390:154::o;19643:166::-;-1:-1:-1;;;;;19777:24:0;;19709:15;19777:24;;;:15;:24;;;;;;19744:30;19793:7;19744:21;:30::i;:::-;:57;;19643:166;-1:-1:-1;;19643:166:0:o;2040:236::-;1325:12;:10;:12::i;:::-;1315:6;;;;;-1:-1:-1;;;;;1315:6:0;;;:22;;;1307:67;;;;;-1:-1:-1;;;1307:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1307:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;2121:22:0;::::1;2113:73;;;;-1:-1:-1::0;;;2113:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2223:6;::::0;2202:38:::1;::::0;-1:-1:-1;;;;;2202:38:0;;::::1;::::0;2223:6:::1;::::0;::::1;;::::0;2202:38:::1;::::0;;;::::1;2251:6;:17:::0;;-1:-1:-1;;;;;2251:17:0;;::::1;;;-1:-1:-1::0;;;;;;2251:17:0;;::::1;::::0;;;::::1;::::0;;2040:236::o;4505:181:1:-;4563:7;4595:5;;;4619:6;;;;4611:46;;;;;-1:-1:-1;;;4611:46:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4677:1;4505:181;-1:-1:-1;;;4505:181:1:o;4961:136::-;5019:7;5046:43;5050:1;5053;5046:43;;;;;;;;;;;;;;;;;:3;:43::i;5877:471::-;5935:7;6180:6;6176:47;;-1:-1:-1;6210:1:1;6203:8;;6176:47;6247:5;;;6251:1;6247;:5;:1;6271:5;;;;;:10;6263:56;;;;-1:-1:-1;;;6263:56:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6816:132;6874:7;6901:39;6905:1;6908;6901:39;;;;;;;;;;;;;;;;;:3;:39::i;11140:397::-;11255:6;11230:21;:31;;11222:73;;;;;-1:-1:-1;;;11222:73:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;11405:35;;11387:12;;-1:-1:-1;;;;;11405:14:1;;;11428:6;;11387:12;11405:35;11387:12;11405:35;11428:6;11405:14;:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11386:54;;;11459:7;11451:78;;;;-1:-1:-1;;;11451:78:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3319:106;3407:10;3319:106;:::o;10213:338:0:-;-1:-1:-1;;;;;10307:19:0;;10299:68;;;;-1:-1:-1;;;10299:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10386:21:0;;10378:68;;;;-1:-1:-1;;;10378:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10459:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10511:32;;;;;;;;;;;;;;;;;10213:338;;;:::o;7849:531::-;-1:-1:-1;;;;;7947:20:0;;7939:70;;;;-1:-1:-1;;;7939:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8028:23:0;;8020:71;;;;-1:-1:-1;;;8020:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8104:47;8125:6;8133:9;8144:6;8104:20;:47::i;:::-;8184:71;8206:6;8184:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8184:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;8164:17:0;;;:9;:17;;;;;;;;;;;:91;;;;8289:20;;;;;;;:32;;8314:6;8289:24;:32::i;:::-;-1:-1:-1;;;;;8266:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;8337:35;;;;;;;8266:20;;8337:35;;;;;;;;;;;;;7849:531;;;:::o;5434:192:1:-;5520:7;5556:12;5548:6;;;;5540:29;;;;-1:-1:-1;;;5540:29:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5592:5:1;;;5434:192::o;13278:112:0:-;12831:7;;;;12823:40;;;;;-1:-1:-1;;;12823:40:0;;;;;;;;;;;;-1:-1:-1;;;12823:40:0;;;;;;;;;;;;;;;13329:7:::1;:15:::0;;-1:-1:-1;;13329:15:0::1;::::0;;13360:22:::1;13369:12;:10;:12::i;:::-;13360:22;::::0;;-1:-1:-1;;;;;13360:22:0;;::::1;::::0;;;;;;;::::1;::::0;;::::1;13278:112::o:0;8662:370::-;-1:-1:-1;;;;;8738:21:0;;8730:65;;;;;-1:-1:-1;;;8730:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;8808:49;8837:1;8841:7;8850:6;8808:20;:49::i;:::-;8885:12;;:24;;8902:6;8885:16;:24::i;:::-;8870:12;:39;-1:-1:-1;;;;;8941:18:0;;:9;:18;;;;;;;;;;;:30;;8964:6;8941:22;:30::i;:::-;-1:-1:-1;;;;;8920:18:0;;:9;:18;;;;;;;;;;;:51;;;;8987:37;;;;;;;8920:18;;:9;;8987:37;;;;;;;;;;8662:370;;:::o;9365:410::-;-1:-1:-1;;;;;9441:21:0;;9433:67;;;;-1:-1:-1;;;9433:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9513:49;9534:7;9551:1;9555:6;9513:20;:49::i;:::-;9596:68;9619:6;9596:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9596:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;9575:18:0;;:9;:18;;;;;;;;;;:89;9690:12;;:24;;9707:6;9690:16;:24::i;:::-;9675:12;:39;9730:37;;;;;;;;9756:1;;-1:-1:-1;;;;;9730:37:0;;;;;;;;;;;;9365:410;;:::o;21077:795::-;18021:11;;18003:15;:29;17999:70;;;18049:8;:6;:8::i;:::-;21148:21:::1;21172:18;21182:7;21172:9;:18::i;:::-;-1:-1:-1::0;;;;;21225:30:0;::::1;21201:21;21225:30:::0;;;:21:::1;:30;::::0;;;;;;;;21342:25;;;:7:::1;:25:::0;;;;;;:39;21307:13:::1;::::0;-1:-1:-1;;21307:15:0;21299:24;;;;;:38;21148:42;;-1:-1:-1;21225:30:0;;21299:208:::1;::::0;16198:4:::1;::::0;21299:140:::1;::::0;21148:42;;21299:83:::1;::::0;:42:::1;:83::i;:208::-;21651:13;::::0;-1:-1:-1;;;;;21618:30:0;::::1;;::::0;;;:21:::1;:30;::::0;;;;;;;-1:-1:-1;;21651:17:0;;;21618:50;;21719:15:::1;:24:::0;;;;;;:40;;;::::1;::::0;;;;21807:30;;21791:73;;;;;;;::::1;::::0;;;;;;21719:40;;-1:-1:-1;21618:30:0;;21791:73:::1;::::0;;;;;;;;::::1;18079:1;;;21077:795:::0;:::o;13027:110::-;12555:7;;;;12554:8;12546:37;;;;;-1:-1:-1;;;12546:37:0;;;;;;;;;;;;-1:-1:-1;;;12546:37:0;;;;;;;;;;;;;;;13079:7:::1;:14:::0;;-1:-1:-1;;13079:14:0::1;13089:4;13079:14;::::0;;13109:20:::1;13116:12;:10;:12::i;7478:345:1:-:0;7564:7;7666:12;7659:5;7651:28;;;;-1:-1:-1;;;7651:28:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7690:9;7706:1;7702;:5;;;;;;;7478:345;-1:-1:-1;;;;;7478:345:1:o;22112:475:0:-;22222:8;:6;:8::i;:::-;22221:9;22213:56;;;;-1:-1:-1;;;22213:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22361:18:0;;;22357:71;;22396:20;22411:4;22396:14;:20::i;:::-;-1:-1:-1;;;;;22452:16:0;;;22448:67;;22485:18;22500:2;22485:14;:18::i;:::-;22535:44;22562:4;22568:2;22572:6;22535:26;:44::i

Swarm Source

ipfs://fefcd8c215a57d7725634e98091bc21700be86db48c3134d8f19eee8c1ed0b14
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.