ETH Price: $2,335.18 (-0.30%)

Contract

0x32825E93394452EF0750d5AA6C0B4265b8Bb108D
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve201111332024-06-17 11:13:1185 days ago1718622791IN
0x32825E93...5b8Bb108D
0 ETH0.000169663.66988685
Transfer176086112023-07-02 20:10:23435 days ago1688328623IN
0x32825E93...5b8Bb108D
0 ETH0.0007358115.69173521
Approve169724232023-04-04 1:49:47525 days ago1680572987IN
0x32825E93...5b8Bb108D
0 ETH0.0009546720.5275181
Transfer115421042020-12-28 11:18:391352 days ago1609154319IN
0x32825E93...5b8Bb108D
0 ETH0.00658686128.7
Approve113269482020-11-25 10:17:191385 days ago1606299439IN
0x32825E93...5b8Bb108D
0 ETH0.0024867956
Approve112591482020-11-15 0:29:331395 days ago1605400173IN
0x32825E93...5b8Bb108D
0 ETH0.0005772913.00000145
Approve112164522020-11-08 11:25:161402 days ago1604834716IN
0x32825E93...5b8Bb108D
0 ETH0.0008437319
Approve112059882020-11-06 20:39:561403 days ago1604695196IN
0x32825E93...5b8Bb108D
0 ETH0.0007815617.6
Approve112059622020-11-06 20:35:171403 days ago1604694917IN
0x32825E93...5b8Bb108D
0 ETH0.001089324.53
Burn112059132020-11-06 20:24:281403 days ago1604694268IN
0x32825E93...5b8Bb108D
0 ETH0.0013889338
Approve112058892020-11-06 20:18:301403 days ago1604693910IN
0x32825E93...5b8Bb108D
0 ETH0.0007993218
Approve112058322020-11-06 20:08:251403 days ago1604693305IN
0x32825E93...5b8Bb108D
0 ETH0.0007886617.76000161
Approve112058242020-11-06 20:06:331403 days ago1604693193IN
0x32825E93...5b8Bb108D
0 ETH0.0014181131.93439277
Approve112058082020-11-06 20:02:531403 days ago1604692973IN
0x32825E93...5b8Bb108D
0 ETH0.0011989827
Approve112058012020-11-06 20:02:151403 days ago1604692935IN
0x32825E93...5b8Bb108D
0 ETH0.0011989827
Approve112058002020-11-06 20:02:031403 days ago1604692923IN
0x32825E93...5b8Bb108D
0 ETH0.0019983145
Approve112057982020-11-06 20:01:261403 days ago1604692886IN
0x32825E93...5b8Bb108D
0 ETH0.0014654333
Approve112057772020-11-06 19:55:201403 days ago1604692520IN
0x32825E93...5b8Bb108D
0 ETH0.0011989827
Approve112057762020-11-06 19:54:551403 days ago1604692495IN
0x32825E93...5b8Bb108D
0 ETH0.0017318739
Approve112057732020-11-06 19:54:231403 days ago1604692463IN
0x32825E93...5b8Bb108D
0 ETH0.001287829
Approve112057642020-11-06 19:53:121403 days ago1604692392IN
0x32825E93...5b8Bb108D
0 ETH0.0011989827
Approve112057642020-11-06 19:53:121403 days ago1604692392IN
0x32825E93...5b8Bb108D
0 ETH0.0011989827
Approve112057642020-11-06 19:53:121403 days ago1604692392IN
0x32825E93...5b8Bb108D
0 ETH0.0012211927.5
Approve112057612020-11-06 19:52:171403 days ago1604692337IN
0x32825E93...5b8Bb108D
0 ETH0.0022203550
Approve112057502020-11-06 19:49:091403 days ago1604692149IN
0x32825E93...5b8Bb108D
0 ETH0.0011989827
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
NextToken

Compiler Version
v0.6.6+commit.6c089d02

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-10-31
*/

// File: openzeppelin-solidity/contracts/GSN/Context.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
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;
    }
}

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

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

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

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

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

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

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

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

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

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

// File: openzeppelin-solidity/contracts/utils/Address.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.2;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies in 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");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        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);
            }
        }
    }
}

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;





/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {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;
    using Address for address;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/LeafPruned.sol

pragma solidity ^0.6.0;



/**
 * @dev {ERC20} token, including:
 *
 *  - ability for holders to burn (destroy) their tokens
 *  - a minter role that allows for token minting (creation)
 *  - a pauser role that allows to stop all token transfers
 *
 * This contract uses {AccessControl} to lock permissioned functions using the
 * different roles - head to its documentation for details.
 *
 * The account that deploys the contract will be granted the minter and pauser
 * roles, as well as the default admin role, which will let it grant both minter
 * and pauser roles to aother accounts
 */
contract NextToken is Context, ERC20 {

    address internal owner;
    /**
    * @dev Error messages for require statements
    */
    string internal constant ALREADY_LOCKED = 'Tokens already locked';
    string internal constant NOT_LOCKED = 'No tokens locked';
    string internal constant AMOUNT_ZERO = 'Amount can not be 0';

    /**
     * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE` to the
     * account that deploys the contract.
     *
     * See {ERC20-constructor}.
     */
    constructor(string memory name, string memory symbol, uint256 amount) public ERC20(name, symbol) {
        owner = _msgSender();
        _mint(_msgSender(), amount);
    }

    modifier onlyOwner {
        require( _msgSender() == owner, "Only owner can call this function.");
        _;
    }

    function burn(uint256 amount) public onlyOwner {
        _burn(_msgSender(), amount);
    }

    function multiTransfer(address[] memory _recipients, uint[] memory _values) public returns (bool) {
        require(_recipients.length == _values.length);
        for (uint i = 0; i < _values.length; i++) {
            require(transfer(_recipients[i], _values[i]));
        }
        return true;
    }

    /**
     * @dev Reasons why a user's tokens have been locked
     */
    mapping(address => bytes32[]) public lockReason;

    /**
     * @dev locked token structure
     */
    struct lockToken {
        uint256 amount;
        uint256 validity;
        bool claimed;
    }
    /**
     * @dev Holds number & validity of tokens locked for a given reason for
     *      a specified address
     */
    mapping(address => mapping(bytes32 => lockToken)) public locked;

    /**
     * @dev Records data of all the tokens Locked
     */
    event Locked(
        address indexed _of,
        bytes32 indexed _reason,
        uint256 _amount,
        uint256 _validity
    );

    /**
     * @dev Records data of all the tokens unlocked
     */
    event Unlocked(
        address indexed _of,
        bytes32 indexed _reason,
        uint256 _amount
    );
    
    /**
     * @dev Transfers and Locks a specified amount of tokens,
     *      for a specified reason and time
     * @param _to adress to which tokens are to be transfered
     * @param _reason The reason to lock tokens
     * @param _amount Number of tokens to be transfered and locked
     * @param _time Lock time in seconds
     */
    function transferWithLock(address _to, bytes32 _reason, uint256 _amount, uint256 _time) public onlyOwner returns (bool) {
        uint256 validUntil = now.add(_time); //solhint-disable-line

        require(tokensLocked(_to, _reason) == 0, ALREADY_LOCKED);
        require(_amount != 0, AMOUNT_ZERO);

        if (locked[_to][_reason].amount == 0)
            lockReason[_to].push(_reason);

        transfer(address(this), _amount);

        locked[_to][_reason] = lockToken(_amount, validUntil, false);
        
        emit Locked(_to, _reason, _amount, validUntil);
        return true;
    }

    /**
     * @dev Returns tokens locked for a specified address for a
     *      specified reason
     *
     * @param _of The address whose tokens are locked
     * @param _reason The reason to query the lock tokens for
     */
    function tokensLocked(address _of, bytes32 _reason) public view returns (uint256 amount) {
        if (!locked[_of][_reason].claimed)
            amount = locked[_of][_reason].amount;
    }

    /**
     * @dev Returns unlockable tokens for a specified address for a specified reason
     * @param _of The address to query the the unlockable token count of
     * @param _reason The reason to query the unlockable tokens for
     */
    function tokensUnlockable(address _of, bytes32 _reason) public view returns (uint256 amount) {
        if (locked[_of][_reason].validity <= now && !locked[_of][_reason].claimed) //solhint-disable-line
            amount = locked[_of][_reason].amount;
    }

    /**
     * @dev Unlocks the unlockable tokens of a specified address
     * @param _of Address of user, claiming back unlockable tokens
     */
    function unlock(address _of) public onlyOwner returns (uint256 unlockableTokens){
        uint256 lockedTokens;

        for (uint256 i = 0; i < lockReason[_of].length; i++) {
            lockedTokens = tokensUnlockable(_of, lockReason[_of][i]);
            if (lockedTokens > 0) {
                unlockableTokens = unlockableTokens.add(lockedTokens);
                locked[_of][lockReason[_of][i]].claimed = true;
                emit Unlocked(_of, lockReason[_of][i], lockedTokens);
            }
        }  

        if (unlockableTokens > 0)
            this.transfer(_of, unlockableTokens);
    }

    /**
     * @dev Gets the unlockable tokens of a specified address
     * @param _of The address to query the the unlockable token count of
     */
    function getUnlockableTokens(address _of) public view returns (uint256 unlockableTokens){
        for (uint256 i = 0; i < lockReason[_of].length; i++) {
            unlockableTokens = unlockableTokens.add(tokensUnlockable(_of, lockReason[_of][i]));
        }  
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"amount","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":"_of","type":"address"},{"indexed":true,"internalType":"bytes32","name":"_reason","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_validity","type":"uint256"}],"name":"Locked","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":true,"internalType":"address","name":"_of","type":"address"},{"indexed":true,"internalType":"bytes32","name":"_reason","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"Unlocked","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":"uint256","name":"amount","type":"uint256"}],"name":"burn","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":[{"internalType":"address","name":"_of","type":"address"}],"name":"getUnlockableTokens","outputs":[{"internalType":"uint256","name":"unlockableTokens","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":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"lockReason","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"locked","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"validity","type":"uint256"},{"internalType":"bool","name":"claimed","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_recipients","type":"address[]"},{"internalType":"uint256[]","name":"_values","type":"uint256[]"}],"name":"multiTransfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_of","type":"address"},{"internalType":"bytes32","name":"_reason","type":"bytes32"}],"name":"tokensLocked","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_of","type":"address"},{"internalType":"bytes32","name":"_reason","type":"bytes32"}],"name":"tokensUnlockable","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"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":"_to","type":"address"},{"internalType":"bytes32","name":"_reason","type":"bytes32"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"transferWithLock","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_of","type":"address"}],"name":"unlock","outputs":[{"internalType":"uint256","name":"unlockableTokens","type":"uint256"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162001a8b38038062001a8b833981810160405260608110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b9083019060208201858111156200006e57600080fd5b82516401000000008111828201881017156200008957600080fd5b82525081516020918201929091019080838360005b83811015620000b85781810151838201526020016200009e565b50505050905090810190601f168015620000e65780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200010a57600080fd5b9083019060208201858111156200012057600080fd5b82516401000000008111828201881017156200013b57600080fd5b82525081516020918201929091019080838360005b838110156200016a57818101518382015260200162000150565b50505050905090810190601f168015620001985780820380516001836020036101000a031916815260200191505b5060405260209081015185519093508592508491620001bd91600391850190620003d1565b508051620001d3906004906020840190620003d1565b50506005805460ff1916601217905550620001f66001600160e01b036200024d16565b600580546001600160a01b039290921661010002610100600160a81b031990921691909117905562000244620002346001600160e01b036200024d16565b826001600160e01b036200025216565b50505062000473565b335b90565b6001600160a01b038216620002ae576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620002c5600083836001600160e01b036200036a16565b620002e1816002546200036f60201b620012bc1790919060201c565b6002556001600160a01b0382166000908152602081815260409091205462000314918390620012bc6200036f821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b600082820183811015620003ca576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200041457805160ff191683800117855562000444565b8280016001018555821562000444579182015b828111156200044457825182559160200191906001019062000427565b506200045292915062000456565b5090565b6200024f91905b808211156200045257600081556001016200045d565b61160880620004836000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c80635294d0e8116100ad578063a457c2d711610071578063a457c2d7146104de578063a9059cbb1461050a578063ab4a2eb314610536578063d71be8db1461055c578063dd62ed3e146105a85761012c565b80635294d0e81461042c5780635ca48d8c1461045857806370a082311461048457806371d66f00146104aa57806395d89b41146104d65761012c565b80632f6c493c116100f45780632f6c493c14610365578063313ce5671461038b57806339509351146103a957806342966c68146103d55780634cb5465f146103f45761012c565b806306fdde0314610131578063095ea7b3146101ae57806318160ddd146101ee5780631e89d5451461020857806323b872dd1461032f575b600080fd5b6101396105d6565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017357818101518382015260200161015b565b50505050905090810190601f1680156101a05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101da600480360360408110156101c457600080fd5b506001600160a01b03813516906020013561066c565b604080519115158252519081900360200190f35b6101f661068a565b60408051918252519081900360200190f35b6101da6004803603604081101561021e57600080fd5b81019060208101813564010000000081111561023957600080fd5b82018360208201111561024b57600080fd5b8035906020019184602083028401116401000000008311171561026d57600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092959493602081019350359150506401000000008111156102bd57600080fd5b8201836020820111156102cf57600080fd5b803590602001918460208302840111640100000000831117156102f157600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610690945050505050565b6101da6004803603606081101561034557600080fd5b506001600160a01b038135811691602081013590911690604001356106f7565b6101f66004803603602081101561037b57600080fd5b50356001600160a01b031661077a565b6103936109b7565b6040805160ff9092168252519081900360200190f35b6101da600480360360408110156103bf57600080fd5b506001600160a01b0381351690602001356109c0565b6103f2600480360360208110156103eb57600080fd5b5035610a14565b005b6101da6004803603608081101561040a57600080fd5b506001600160a01b038135169060208101359060408101359060600135610a86565b6101f66004803603604081101561044257600080fd5b506001600160a01b038135169060200135610d31565b6101f66004803603604081101561046e57600080fd5b506001600160a01b038135169060200135610dbc565b6101f66004803603602081101561049a57600080fd5b50356001600160a01b0316610e13565b6101f6600480360360408110156104c057600080fd5b506001600160a01b038135169060200135610e2e565b610139610e5c565b6101da600480360360408110156104f457600080fd5b506001600160a01b038135169060200135610ebd565b6101da6004803603604081101561052057600080fd5b506001600160a01b038135169060200135610f2b565b6101f66004803603602081101561054c57600080fd5b50356001600160a01b0316610f3f565b6105886004803603604081101561057257600080fd5b506001600160a01b038135169060200135610fb1565b604080519384526020840192909252151582820152519081900360600190f35b6101f6600480360360408110156105be57600080fd5b506001600160a01b0381358116916020013516610fe0565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106625780601f1061063757610100808354040283529160200191610662565b820191906000526020600020905b81548152906001019060200180831161064557829003601f168201915b5050505050905090565b600061068061067961100b565b848461100f565b5060015b92915050565b60025490565b600081518351146106a057600080fd5b60005b82518110156106ed576106dc8482815181106106bb57fe5b60200260200101518483815181106106cf57fe5b6020026020010151610f2b565b6106e557600080fd5b6001016106a3565b5060019392505050565b60006107048484846110fb565b6106ed8461071061100b565b6107758560405180606001604052806028815260200161151c602891396001600160a01b038a1660009081526001602052604081209061074e61100b565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61126216565b61100f565b60055460009061010090046001600160a01b031661079661100b565b6001600160a01b0316146107db5760405162461bcd60e51b81526004018080602001828103825260228152602001806114906022913960400191505060405180910390fd5b6000805b6001600160a01b03841660009081526006602052604090205481101561092e576001600160a01b038416600090815260066020526040902080546108399186918490811061082957fe5b9060005260206000200154610d31565b9150811561092657610851838363ffffffff6112bc16565b6001600160a01b03851660009081526007602090815260408083206006909252822080549396506001939192918590811061088857fe5b60009182526020808320919091015483528281019390935260409182018120600201805460ff1916941515949094179093556001600160a01b0387168352600690915290208054829081106108d957fe5b9060005260206000200154846001600160a01b03167f11f87fd5adcd05786919b8b868f59a70d78ae4eb6f305c5927f9c5b1659841a4846040518082815260200191505060405180910390a35b6001016107df565b5081156109b1576040805163a9059cbb60e01b81526001600160a01b0385166004820152602481018490529051309163a9059cbb9160448083019260209291908290030181600087803b15801561098457600080fd5b505af1158015610998573d6000803e3d6000fd5b505050506040513d60208110156109ae57600080fd5b50505b50919050565b60055460ff1690565b60006106806109cd61100b565b8461077585600160006109de61100b565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6112bc16565b60055461010090046001600160a01b0316610a2d61100b565b6001600160a01b031614610a725760405162461bcd60e51b81526004018080602001828103825260228152602001806114906022913960400191505060405180910390fd5b610a83610a7d61100b565b8261131d565b50565b60055460009061010090046001600160a01b0316610aa261100b565b6001600160a01b031614610ae75760405162461bcd60e51b81526004018080602001828103825260228152602001806114906022913960400191505060405180910390fd5b6000610af9428463ffffffff6112bc16565b9050610b058686610dbc565b604080518082019091526015815274151bdad95b9cc8185b1c9958591e481b1bd8dad959605a1b60208201529015610bbb5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610b80578181015183820152602001610b68565b50505050905090810190601f168015610bad5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506040805180820190915260138152720416d6f756e742063616e206e6f74206265203606c1b602082015284610c325760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610b80578181015183820152602001610b68565b506001600160a01b0386166000908152600760209081526040808320888452909152902054610c87576001600160a01b0386166000908152600660209081526040822080546001810182559083529120018590555b610c913085610f2b565b5060408051606081018252858152602080820184815260008385018181526001600160a01b038c16808352600785528683208c8452855291869020945185559151600185015590516002909301805460ff1916931515939093179092558251878152908101849052825188937fea90ef40963535482537f0689e05cb8d259e459ebd21530e826702294d0eafdd928290030190a350600195945050505050565b6001600160a01b03821660009081526007602090815260408083208484529091528120600101544210801590610d8e57506001600160a01b038316600090815260076020908152604080832085845290915290206002015460ff16155b1561068457506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6001600160a01b038216600090815260076020908152604080832084845290915281206002015460ff1661068457506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6001600160a01b031660009081526020819052604090205490565b60066020528160005260406000208181548110610e4757fe5b90600052602060002001600091509150505481565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106625780601f1061063757610100808354040283529160200191610662565b6000610680610eca61100b565b84610775856040518060600160405280602581526020016115ae6025913960016000610ef461100b565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61126216565b6000610680610f3861100b565b84846110fb565b6000805b6001600160a01b0383166000908152600660205260409020548110156109b157610fa7610f9a8460066000876001600160a01b03166001600160a01b03168152602001908152602001600020848154811061082957fe5b839063ffffffff6112bc16565b9150600101610f43565b600760209081526000928352604080842090915290825290208054600182015460029092015490919060ff1683565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3390565b6001600160a01b0383166110545760405162461bcd60e51b815260040180806020018281038252602481526020018061158a6024913960400191505060405180910390fd5b6001600160a01b0382166110995760405162461bcd60e51b81526004018080602001828103825260228152602001806114d46022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166111405760405162461bcd60e51b81526004018080602001828103825260258152602001806115656025913960400191505060405180910390fd5b6001600160a01b0382166111855760405162461bcd60e51b815260040180806020018281038252602381526020018061146d6023913960400191505060405180910390fd5b611190838383611425565b6111d3816040518060600160405280602681526020016114f6602691396001600160a01b038616600090815260208190526040902054919063ffffffff61126216565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611208908263ffffffff6112bc16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156112b45760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610b80578181015183820152602001610b68565b505050900390565b600082820183811015611316576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b0382166113625760405162461bcd60e51b81526004018080602001828103825260218152602001806115446021913960400191505060405180910390fd5b61136e82600083611425565b6113b1816040518060600160405280602281526020016114b2602291396001600160a01b038516600090815260208190526040902054919063ffffffff61126216565b6001600160a01b0383166000908152602081905260409020556002546113dd908263ffffffff61142a16565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b505050565b600061131683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061126256fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f6e6c79206f776e65722063616e2063616c6c20746869732066756e6374696f6e2e45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a4379fce410e04527df1268e6599242a74dd7119e0acf80c9fb903b0590ae1b164736f6c63430006060033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000034f086f3b33b68400000000000000000000000000000000000000000000000000000000000000000000094e4558542044654669000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034e58540000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c80635294d0e8116100ad578063a457c2d711610071578063a457c2d7146104de578063a9059cbb1461050a578063ab4a2eb314610536578063d71be8db1461055c578063dd62ed3e146105a85761012c565b80635294d0e81461042c5780635ca48d8c1461045857806370a082311461048457806371d66f00146104aa57806395d89b41146104d65761012c565b80632f6c493c116100f45780632f6c493c14610365578063313ce5671461038b57806339509351146103a957806342966c68146103d55780634cb5465f146103f45761012c565b806306fdde0314610131578063095ea7b3146101ae57806318160ddd146101ee5780631e89d5451461020857806323b872dd1461032f575b600080fd5b6101396105d6565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017357818101518382015260200161015b565b50505050905090810190601f1680156101a05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101da600480360360408110156101c457600080fd5b506001600160a01b03813516906020013561066c565b604080519115158252519081900360200190f35b6101f661068a565b60408051918252519081900360200190f35b6101da6004803603604081101561021e57600080fd5b81019060208101813564010000000081111561023957600080fd5b82018360208201111561024b57600080fd5b8035906020019184602083028401116401000000008311171561026d57600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092959493602081019350359150506401000000008111156102bd57600080fd5b8201836020820111156102cf57600080fd5b803590602001918460208302840111640100000000831117156102f157600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610690945050505050565b6101da6004803603606081101561034557600080fd5b506001600160a01b038135811691602081013590911690604001356106f7565b6101f66004803603602081101561037b57600080fd5b50356001600160a01b031661077a565b6103936109b7565b6040805160ff9092168252519081900360200190f35b6101da600480360360408110156103bf57600080fd5b506001600160a01b0381351690602001356109c0565b6103f2600480360360208110156103eb57600080fd5b5035610a14565b005b6101da6004803603608081101561040a57600080fd5b506001600160a01b038135169060208101359060408101359060600135610a86565b6101f66004803603604081101561044257600080fd5b506001600160a01b038135169060200135610d31565b6101f66004803603604081101561046e57600080fd5b506001600160a01b038135169060200135610dbc565b6101f66004803603602081101561049a57600080fd5b50356001600160a01b0316610e13565b6101f6600480360360408110156104c057600080fd5b506001600160a01b038135169060200135610e2e565b610139610e5c565b6101da600480360360408110156104f457600080fd5b506001600160a01b038135169060200135610ebd565b6101da6004803603604081101561052057600080fd5b506001600160a01b038135169060200135610f2b565b6101f66004803603602081101561054c57600080fd5b50356001600160a01b0316610f3f565b6105886004803603604081101561057257600080fd5b506001600160a01b038135169060200135610fb1565b604080519384526020840192909252151582820152519081900360600190f35b6101f6600480360360408110156105be57600080fd5b506001600160a01b0381358116916020013516610fe0565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106625780601f1061063757610100808354040283529160200191610662565b820191906000526020600020905b81548152906001019060200180831161064557829003601f168201915b5050505050905090565b600061068061067961100b565b848461100f565b5060015b92915050565b60025490565b600081518351146106a057600080fd5b60005b82518110156106ed576106dc8482815181106106bb57fe5b60200260200101518483815181106106cf57fe5b6020026020010151610f2b565b6106e557600080fd5b6001016106a3565b5060019392505050565b60006107048484846110fb565b6106ed8461071061100b565b6107758560405180606001604052806028815260200161151c602891396001600160a01b038a1660009081526001602052604081209061074e61100b565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61126216565b61100f565b60055460009061010090046001600160a01b031661079661100b565b6001600160a01b0316146107db5760405162461bcd60e51b81526004018080602001828103825260228152602001806114906022913960400191505060405180910390fd5b6000805b6001600160a01b03841660009081526006602052604090205481101561092e576001600160a01b038416600090815260066020526040902080546108399186918490811061082957fe5b9060005260206000200154610d31565b9150811561092657610851838363ffffffff6112bc16565b6001600160a01b03851660009081526007602090815260408083206006909252822080549396506001939192918590811061088857fe5b60009182526020808320919091015483528281019390935260409182018120600201805460ff1916941515949094179093556001600160a01b0387168352600690915290208054829081106108d957fe5b9060005260206000200154846001600160a01b03167f11f87fd5adcd05786919b8b868f59a70d78ae4eb6f305c5927f9c5b1659841a4846040518082815260200191505060405180910390a35b6001016107df565b5081156109b1576040805163a9059cbb60e01b81526001600160a01b0385166004820152602481018490529051309163a9059cbb9160448083019260209291908290030181600087803b15801561098457600080fd5b505af1158015610998573d6000803e3d6000fd5b505050506040513d60208110156109ae57600080fd5b50505b50919050565b60055460ff1690565b60006106806109cd61100b565b8461077585600160006109de61100b565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6112bc16565b60055461010090046001600160a01b0316610a2d61100b565b6001600160a01b031614610a725760405162461bcd60e51b81526004018080602001828103825260228152602001806114906022913960400191505060405180910390fd5b610a83610a7d61100b565b8261131d565b50565b60055460009061010090046001600160a01b0316610aa261100b565b6001600160a01b031614610ae75760405162461bcd60e51b81526004018080602001828103825260228152602001806114906022913960400191505060405180910390fd5b6000610af9428463ffffffff6112bc16565b9050610b058686610dbc565b604080518082019091526015815274151bdad95b9cc8185b1c9958591e481b1bd8dad959605a1b60208201529015610bbb5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610b80578181015183820152602001610b68565b50505050905090810190601f168015610bad5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506040805180820190915260138152720416d6f756e742063616e206e6f74206265203606c1b602082015284610c325760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610b80578181015183820152602001610b68565b506001600160a01b0386166000908152600760209081526040808320888452909152902054610c87576001600160a01b0386166000908152600660209081526040822080546001810182559083529120018590555b610c913085610f2b565b5060408051606081018252858152602080820184815260008385018181526001600160a01b038c16808352600785528683208c8452855291869020945185559151600185015590516002909301805460ff1916931515939093179092558251878152908101849052825188937fea90ef40963535482537f0689e05cb8d259e459ebd21530e826702294d0eafdd928290030190a350600195945050505050565b6001600160a01b03821660009081526007602090815260408083208484529091528120600101544210801590610d8e57506001600160a01b038316600090815260076020908152604080832085845290915290206002015460ff16155b1561068457506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6001600160a01b038216600090815260076020908152604080832084845290915281206002015460ff1661068457506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6001600160a01b031660009081526020819052604090205490565b60066020528160005260406000208181548110610e4757fe5b90600052602060002001600091509150505481565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106625780601f1061063757610100808354040283529160200191610662565b6000610680610eca61100b565b84610775856040518060600160405280602581526020016115ae6025913960016000610ef461100b565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61126216565b6000610680610f3861100b565b84846110fb565b6000805b6001600160a01b0383166000908152600660205260409020548110156109b157610fa7610f9a8460066000876001600160a01b03166001600160a01b03168152602001908152602001600020848154811061082957fe5b839063ffffffff6112bc16565b9150600101610f43565b600760209081526000928352604080842090915290825290208054600182015460029092015490919060ff1683565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3390565b6001600160a01b0383166110545760405162461bcd60e51b815260040180806020018281038252602481526020018061158a6024913960400191505060405180910390fd5b6001600160a01b0382166110995760405162461bcd60e51b81526004018080602001828103825260228152602001806114d46022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166111405760405162461bcd60e51b81526004018080602001828103825260258152602001806115656025913960400191505060405180910390fd5b6001600160a01b0382166111855760405162461bcd60e51b815260040180806020018281038252602381526020018061146d6023913960400191505060405180910390fd5b611190838383611425565b6111d3816040518060600160405280602681526020016114f6602691396001600160a01b038616600090815260208190526040902054919063ffffffff61126216565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611208908263ffffffff6112bc16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156112b45760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610b80578181015183820152602001610b68565b505050900390565b600082820183811015611316576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b0382166113625760405162461bcd60e51b81526004018080602001828103825260218152602001806115446021913960400191505060405180910390fd5b61136e82600083611425565b6113b1816040518060600160405280602281526020016114b2602291396001600160a01b038516600090815260208190526040902054919063ffffffff61126216565b6001600160a01b0383166000908152602081905260409020556002546113dd908263ffffffff61142a16565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b505050565b600061131683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061126256fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f6e6c79206f776e65722063616e2063616c6c20746869732066756e6374696f6e2e45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a4379fce410e04527df1268e6599242a74dd7119e0acf80c9fb903b0590ae1b164736f6c63430006060033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000034f086f3b33b68400000000000000000000000000000000000000000000000000000000000000000000094e4558542044654669000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034e58540000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): NEXT DeFi
Arg [1] : symbol (string): NXT
Arg [2] : amount (uint256): 4000000000000000000000000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000000000000000000000034f086f3b33b684000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [4] : 4e45585420446546690000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4e58540000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

27064:5266:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;27064:5266:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;17600:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;17600:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19706:169;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;19706:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;18675:100;;;:::i;:::-;;;;;;;;;;;;;;;;27985:308;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;27985:308:0;;;;;;;;27:11:-1;11:28;;8:2;;;52:1;49;42:12;8:2;27985:308:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;27985:308:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;27985:308:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;27985:308:0;;;;;;;;-1:-1:-1;27985:308:0;;-1:-1:-1;;27:11;11:28;;8:2;;;52:1;49;42:12;8:2;27985:308:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;27985:308:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;27985:308:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;27985:308:0;;-1:-1:-1;27985:308:0;;-1:-1:-1;;;;;27985:308:0:i;20349:321::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;20349:321:0;;;;;;;;;;;;;;;;;:::i;31275:617::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;31275:617:0;-1:-1:-1;;;;;31275:617:0;;:::i;18527:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21079:218;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;21079:218:0;;;;;;;;:::i;27884:93::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;27884:93:0;;:::i;:::-;;29551:611;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;-1:-1;;;;;;29551:611:0;;;;;;;;;;;;;;;;;;:::i;30856:259::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;30856:259:0;;;;;;;;:::i;30409:192::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;30409:192:0;;;;;;;;:::i;18838:119::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;18838:119:0;-1:-1:-1;;;;;18838:119:0;;:::i;28377:47::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;28377:47:0;;;;;;;;:::i;17802:87::-;;;:::i;21800:269::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;21800:269:0;;;;;;;;:::i;19170:175::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;19170:175:0;;;;;;;;:::i;32055:270::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;32055:270:0;-1:-1:-1;;;;;32055:270:0;;:::i;28721:63::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;28721:63:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19408:151;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;19408:151:0;;;;;;;;;;:::i;17600:83::-;17670:5;17663:12;;;;;;;;-1:-1:-1;;17663:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17637:13;;17663:12;;17670:5;;17663:12;;17670:5;17663:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17600:83;:::o;19706:169::-;19789:4;19806:39;19815:12;:10;:12::i;:::-;19829:7;19838:6;19806:8;:39::i;:::-;-1:-1:-1;19863:4:0;19706:169;;;;;:::o;18675:100::-;18755:12;;18675:100;:::o;27985:308::-;28077:4;28124:7;:14;28102:11;:18;:36;28094:45;;12:1:-1;9;2:12;28094:45:0;28155:6;28150:114;28171:7;:14;28167:1;:18;28150:114;;;28215:36;28224:11;28236:1;28224:14;;;;;;;;;;;;;;28240:7;28248:1;28240:10;;;;;;;;;;;;;;28215:8;:36::i;:::-;28207:45;;12:1:-1;9;2:12;28207:45:0;28187:3;;28150:114;;;-1:-1:-1;28281:4:0;;27985:308;-1:-1:-1;;;27985:308:0:o;20349:321::-;20455:4;20472:36;20482:6;20490:9;20501:6;20472:9;:36::i;:::-;20519:121;20528:6;20536:12;:10;:12::i;:::-;20550:89;20588:6;20550:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20550:19:0;;;;;;:11;:19;;;;;;20570:12;:10;:12::i;:::-;-1:-1:-1;;;;;20550:33:0;;;;;;;;;;;;-1:-1:-1;20550:33:0;;;:89;;:37;:89;:::i;:::-;20519:8;:121::i;31275:617::-;27812:5;;31330:24;;27812:5;;;-1:-1:-1;;;;;27812:5:0;27796:12;:10;:12::i;:::-;-1:-1:-1;;;;;27796:21:0;;27787:69;;;;-1:-1:-1;;;27787:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31366:20:::1;::::0;31399:396:::1;-1:-1:-1::0;;;;;31423:15:0;::::1;;::::0;;;:10:::1;:15;::::0;;;;:22;31419:26;::::1;31399:396;;;-1:-1:-1::0;;;;;31504:15:0;::::1;;::::0;;;:10:::1;:15;::::0;;;;:18;;31482:41:::1;::::0;31499:3;;31520:1;;31504:18;::::1;;;;;;;;;;;;;31482:16;:41::i;:::-;31467:56:::0;-1:-1:-1;31542:16:0;;31538:246:::1;;31598:34;:16:::0;31619:12;31598:34:::1;:20;:34;:::i;:::-;-1:-1:-1::0;;;;;31651:11:0;::::1;;::::0;;;:6:::1;:11;::::0;;;;;;;31663:10:::1;:15:::0;;;;;:18;;31579:53;;-1:-1:-1;31693:4:0::1;::::0;31651:11;;;31679:1;;31663:18;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;::::0;31651:31;;;;::::1;::::0;;;;;;;;;;:39:::1;;:46:::0;;-1:-1:-1;;31651:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;-1:-1:-1;;;;;31735:15:0;::::1;::::0;;:10:::1;:15:::0;;;;;:18;;31751:1;;31735:18;::::1;;;;;;;;;;;;;31730:3;-1:-1:-1::0;;;;;31721:47:0::1;;31755:12;31721:47;;;;;;;;;;;;;;;;;;31538:246;31447:3;;31399:396;;;-1:-1:-1::0;31813:20:0;;31809:75:::1;;31848:36;::::0;;-1:-1:-1;;;31848:36:0;;-1:-1:-1;;;;;31848:36:0;::::1;;::::0;::::1;::::0;;;;;;;;;:4:::1;::::0;:13:::1;::::0;:36;;;;;::::1;::::0;;;;;;;;-1:-1:-1;31848:4:0;:36;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;31848:36:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;31848:36:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;;31809:75:0::1;27867:1;31275:617:::0;;;:::o;18527:83::-;18593:9;;;;18527:83;:::o;21079:218::-;21167:4;21184:83;21193:12;:10;:12::i;:::-;21207:7;21216:50;21255:10;21216:11;:25;21228:12;:10;:12::i;:::-;-1:-1:-1;;;;;21216:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;21216:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;27884:93::-;27812:5;;;;;-1:-1:-1;;;;;27812:5:0;27796:12;:10;:12::i;:::-;-1:-1:-1;;;;;27796:21:0;;27787:69;;;;-1:-1:-1;;;27787:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27942:27:::1;27948:12;:10;:12::i;:::-;27962:6;27942:5;:27::i;:::-;27884:93:::0;:::o;29551:611::-;27812:5;;29665:4;;27812:5;;;-1:-1:-1;;;;;27812:5:0;27796:12;:10;:12::i;:::-;-1:-1:-1;;;;;27796:21:0;;27787:69;;;;-1:-1:-1;;;27787:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29682:18:::1;29703:14;:3;29711:5:::0;29703:14:::1;:7;:14;:::i;:::-;29682:35;;29761:26;29774:3;29779:7;29761:12;:26::i;:::-;29794:14;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;29794:14:0::1;::::0;::::1;::::0;;29761:31;29753:56:::1;;;;-1:-1:-1::0;;;29753:56:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11:::0;;::::1;84:18:::0;71:11;;::::1;64:39:::0;52:2:::1;45:10;8:100;;;12:14;29753:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;29842:11:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;29842:11:0::1;::::0;::::1;::::0;29828:12;29820:34:::1;;;::::0;-1:-1:-1;;;29820:34:0;;::::1;;::::0;::::1;::::0;;;;;;;;;;;;;;;;;;;;;;::::1;::::0;;;;;27:10:-1;;8:100:::1;;90:11:::0;;::::1;84:18:::0;71:11;;::::1;64:39:::0;52:2:::1;45:10;8:100;;29820:34:0;-1:-1:-1::0;;;;;;29871:11:0;::::1;;::::0;;;:6:::1;:11;::::0;;;;;;;:20;;;;;;;;:27;29867:80:::1;;-1:-1:-1::0;;;;;29918:15:0;::::1;;::::0;;;:10:::1;:15;::::0;;;;;;27:10:-1;;39:1:::1;23:18:::0;::::1;45:23:::0;;29918:29:0;;;;;::::1;::::0;;;29867:80:::1;29960:32;29977:4;29984:7;29960:8;:32::i;:::-;-1:-1:-1::0;30028:37:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;::::1;::::0;;;-1:-1:-1;30028:37:0;;;;;;-1:-1:-1;;;;;30005:11:0;::::1;::::0;;;:6:::1;:11:::0;;;;;:20;;;;;;;;;:60;;;;;;30028:37;30005:60;::::1;::::0;;;::::1;::::0;;::::1;::::0;;-1:-1:-1;;30005:60:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;30091:41;;;;;;;::::1;::::0;;;;;30005:20;;30091:41:::1;::::0;;;;;;::::1;-1:-1:-1::0;30150:4:0::1;::::0;29551:611;-1:-1:-1;;;;;29551:611:0:o;30856:259::-;-1:-1:-1;;;;;30964:11:0;;30933:14;30964:11;;;:6;:11;;;;;;;;:20;;;;;;;;:29;;;30997:3;-1:-1:-1;30964:36:0;;;:69;;-1:-1:-1;;;;;;31005:11:0;;;;;;:6;:11;;;;;;;;:20;;;;;;;;:28;;;;;31004:29;30964:69;30960:147;;;-1:-1:-1;;;;;;31080:11:0;;;;;;;;:6;:11;;;;;;;;:20;;;;;;;:27;;30856:259::o;30409:192::-;-1:-1:-1;;;;;30514:11:0;;30482:14;30514:11;;;:6;:11;;;;;;;;:20;;;;;;;;:28;;;;;30509:84;;-1:-1:-1;;;;;;30566:11:0;;;;;;;;:6;:11;;;;;;;;:20;;;;;;;:27;;30409:192::o;18838:119::-;-1:-1:-1;;;;;18931:18:0;18904:7;18931:18;;;;;;;;;;;;18838:119::o;28377:47::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;17802:87::-;17874:7;17867:14;;;;;;;;-1:-1:-1;;17867:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17841:13;;17867:14;;17874:7;;17867:14;;17874:7;17867:14;;;;;;;;;;;;;;;;;;;;;;;;21800:269;21893:4;21910:129;21919:12;:10;:12::i;:::-;21933:7;21942:96;21981:15;21942:96;;;;;;;;;;;;;;;;;:11;:25;21954:12;:10;:12::i;:::-;-1:-1:-1;;;;;21942:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;21942:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;19170:175::-;19256:4;19273:42;19283:12;:10;:12::i;:::-;19297:9;19308:6;19273:9;:42::i;32055:270::-;32118:24;;32154:162;-1:-1:-1;;;;;32178:15:0;;;;;;:10;:15;;;;;:22;32174:26;;32154:162;;;32241:63;32262:41;32279:3;32284:10;:15;32295:3;-1:-1:-1;;;;;32284:15:0;-1:-1:-1;;;;;32284:15:0;;;;;;;;;;;;32300:1;32284:18;;;;;;;32262:41;32241:16;;:63;:20;:63;:::i;:::-;32222:82;-1:-1:-1;32202:3:0;;32154:162;;28721:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;19408:151::-;-1:-1:-1;;;;;19524:18:0;;;19497:7;19524:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19408:151::o;665:106::-;753:10;665:106;:::o;24945:346::-;-1:-1:-1;;;;;25047:19:0;;25039:68;;;;-1:-1:-1;;;25039:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25126:21:0;;25118:68;;;;-1:-1:-1;;;25118:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25199:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25251:32;;;;;;;;;;;;;;;;;24945:346;;;:::o;22559:539::-;-1:-1:-1;;;;;22665:20:0;;22657:70;;;;-1:-1:-1;;;22657:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22746:23:0;;22738:71;;;;-1:-1:-1;;;22738:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22822:47;22843:6;22851:9;22862:6;22822:20;:47::i;:::-;22902:71;22924:6;22902:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22902:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;22882:17:0;;;:9;:17;;;;;;;;;;;:91;;;;23007:20;;;;;;;:32;;23032:6;23007:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;22984:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;23055:35;;;;;;;22984:20;;23055:35;;;;;;;;;;;;;22559:539;;;:::o;5728:192::-;5814:7;5850:12;5842:6;;;;5834:29;;;;-1:-1:-1;;;5834:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;5834:29:0;-1:-1:-1;;;5886:5:0;;;5728:192::o;4825:181::-;4883:7;4915:5;;;4939:6;;;;4931:46;;;;;-1:-1:-1;;;4931:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;4997:1;4825:181;-1:-1:-1;;;4825:181:0:o;24089:418::-;-1:-1:-1;;;;;24173:21:0;;24165:67;;;;-1:-1:-1;;;24165:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24245:49;24266:7;24283:1;24287:6;24245:20;:49::i;:::-;24328:68;24351:6;24328:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24328:18:0;;:9;:18;;;;;;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;24307:18:0;;:9;:18;;;;;;;;;;:89;24422:12;;:24;;24439:6;24422:24;:16;:24;:::i;:::-;24407:12;:39;24462:37;;;;;;;;24488:1;;-1:-1:-1;;;;;24462:37:0;;;;;;;;;;;;24089:418;;:::o;26316:92::-;;;;:::o;5289:136::-;5347:7;5374:43;5378:1;5381;5374:43;;;;;;;;;;;;;;;;;:3;:43::i

Swarm Source

ipfs://a4379fce410e04527df1268e6599242a74dd7119e0acf80c9fb903b0590ae1b1

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

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

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