ETH Price: $3,456.17 (-1.88%)
Gas: 3 Gwei

Contract

0x07D89649602C2ADaBB5E011a73B78305dCCC602B
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Claim169713492023-04-03 22:08:47477 days ago1680559727IN
0x07D89649...5dCCC602B
0 ETH0.0022387231.45561401
Claim169095072023-03-26 5:25:35486 days ago1679808335IN
0x07D89649...5dCCC602B
0 ETH0.0009524313.25976269
Claim168180642023-03-13 9:04:47499 days ago1678698287IN
0x07D89649...5dCCC602B
0 ETH0.0019677322.28892592
Claim167535742023-03-04 7:23:59508 days ago1677914639IN
0x07D89649...5dCCC602B
0 ETH0.0019846918.71840344
Claim162734342022-12-27 3:35:23575 days ago1672112123IN
0x07D89649...5dCCC602B
0 ETH0.0010511911.82064754
Claim162733892022-12-27 3:26:23575 days ago1672111583IN
0x07D89649...5dCCC602B
0 ETH0.0011919311.31053524
Retrieve Tokens162733712022-12-27 3:22:47575 days ago1672111367IN
0x07D89649...5dCCC602B
0 ETH0.0005447422.80408491
Retrieve Tokens162733602022-12-27 3:20:35575 days ago1672111235IN
0x07D89649...5dCCC602B
0 ETH0.0003026412.6500666
Claim158697692022-10-31 18:15:35631 days ago1667240135IN
0x07D89649...5dCCC602B
0 ETH0.0034446548.39160065
Claim158671592022-10-31 9:31:23632 days ago1667208683IN
0x07D89649...5dCCC602B
0 ETH0.0012787512.13436516
Claim158339772022-10-26 18:15:35636 days ago1666808135IN
0x07D89649...5dCCC602B
0 ETH0.0013609318.94692231
Claim158270602022-10-25 19:04:35637 days ago1666724675IN
0x07D89649...5dCCC602B
0 ETH0.0037805535.65588765
Claim155408642022-09-15 18:26:59677 days ago1663266419IN
0x07D89649...5dCCC602B
0 ETH0.0011113315.47198925
Claim154336562022-08-29 10:47:28694 days ago1661770048IN
0x07D89649...5dCCC602B
0 ETH0.0011806113.27591427
Claim149931642022-06-19 22:26:59765 days ago1655677619IN
0x07D89649...5dCCC602B
0 ETH0.0035876940.34886158
Claim145147012022-04-03 18:14:30842 days ago1649009670IN
0x07D89649...5dCCC602B
0 ETH0.0045697951.38705555
Claim143987052022-03-16 16:31:07860 days ago1647448267IN
0x07D89649...5dCCC602B
0 ETH0.0065091173.19456826
Claim142086182022-02-15 4:33:57890 days ago1644899637IN
0x07D89649...5dCCC602B
0 ETH0.0046322943.68891792
Claim141074932022-01-30 13:49:01905 days ago1643550541IN
0x07D89649...5dCCC602B
0 ETH0.0049178355.30074391
Claim139345082022-01-03 19:54:32932 days ago1641239672IN
0x07D89649...5dCCC602B
0 ETH0.01766901166.64318791
Claim138581872021-12-23 0:16:19944 days ago1640218579IN
0x07D89649...5dCCC602B
0 ETH0.0070818879.63521731
Claim137484382021-12-05 21:42:14961 days ago1638740534IN
0x07D89649...5dCCC602B
0 ETH0.01096011152.58626522
Claim136297622021-11-17 0:28:25980 days ago1637108905IN
0x07D89649...5dCCC602B
0 ETH0.01257991118.65942193
Claim135464692021-11-03 22:08:08993 days ago1635977288IN
0x07D89649...5dCCC602B
0 ETH0.0131901124.40095539
Claim133826802021-10-09 5:23:141019 days ago1633756994IN
0x07D89649...5dCCC602B
0 ETH0.0086743481.81108684
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:
TokenVesting

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-07-08
*/

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

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.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/contracts/access/Ownable.sol


pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

pragma solidity >=0.6.0 <0.8.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, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, 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 (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @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) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @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) {
        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, reverting 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) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * 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);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * 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);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

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


pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

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

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


pragma solidity >=0.6.2 <0.8.0;

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

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


pragma solidity >=0.6.0 <0.8.0;




/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
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");
        }
    }
}

// File: contracts/TokenVesting.sol

pragma solidity ^0.6.12;
pragma experimental ABIEncoderV2;




contract TokenVesting is Ownable {
    // The vesting schedule is time-based (i.e. using block timestamps as opposed to e.g. block numbers), and is
    // therefore sensitive to timestamp manipulation (which is something miners can do, to a certain degree). Therefore,
    // it is recommended to avoid using short time durations (less than a minute). Typical vesting schemes, with a
    // cliff period of a year and a duration of four years, are safe to use.
    using SafeMath for uint256;
    using SafeERC20 for IERC20;

    event Registered(address account, uint256 amount);
    event Revoked(address account);
    event Claimed(address account, uint256 amount);

    address public vestingToken;
    uint256 public totalReleased;
    uint256 public totalAllocated;

    struct Beneficiary {
        uint256 start;
        uint256 cliff;
        uint256 duration;
        uint256 amount;
        uint256 released;
        bool revocable;
        bool revoked;
        bool initialized;
    }

    mapping(address => Beneficiary) private _vestingBeneficiaries;

    modifier isRegistered(address account) {
        require(
            _vestingBeneficiaries[account].initialized,
            "TokenVesting: not registered"
        );
        _;
    }

    /**
     * @dev Sets the values for vestingToken. VestingToken is immutable:
     * they can only be set once during construction.
     */

    constructor(address token) public {
        vestingToken = token;
    }

    /* ========== External View FUNCTIONS ========== */

    /**
     * @return The cliff time of the token vesting.
     */
    function cliff(address account) external view returns (uint256) {
        return _vestingBeneficiaries[account].cliff;
    }

    /**
     * @return The start time of the token vesting.
     */
    function start(address account) external view returns (uint256) {
        return _vestingBeneficiaries[account].start;
    }

    /**
     * @return The duration of the token vesting.
     */
    function duration(address account) external view returns (uint256) {
        return _vestingBeneficiaries[account].duration;
    }

    /**
     * @return True if the vesting is revocable.
     */
    function revocable(address account) external view returns (bool) {
        return _vestingBeneficiaries[account].revocable;
    }

    /**
     * @return The amount of the token released.
     */
    function released(address account) external view returns (uint256) {
        return _vestingBeneficiaries[account].released;
    }

    /**
     * @return True if the token is revoked.
     */
    function revoked(address account) external view returns (bool) {
        return _vestingBeneficiaries[account].revoked;
    }

    /**
     * @return The amount of vesting token
     */
    function amount(address account) external view returns (uint256) {
        return _vestingBeneficiaries[account].amount;
    }

    /**
     * @return True if the account is initialized.
     */
    function initialized(address account) external view returns (bool) {
        return _vestingBeneficiaries[account].initialized;
    }

    function releasableAmount(address account) external view returns (uint256) {
        return _releasableAmount(_vestingBeneficiaries[account]);
    }

    /**
     * @dev Add beneficiary with related information to the vesting contract
     * @param _account address of the beneficiary to whom vested tokens are transferred
     * @param _start the time (as Unix time) at which point vesting starts
     * @param _cliffDuration duration in seconds of the cliff in which tokens will begin to vest
     * @param _duration duration in seconds of the period in which the tokens will vest
     * @param _amount the vesting amount of beneficiary
     * @param _revocable whether the vesting is revocable or not
     */
    function register(
        address _account,
        uint256 _start,
        uint256 _cliffDuration,
        uint256 _duration,
        uint256 _amount,
        bool _revocable
    ) external onlyOwner {
        require(
            !_vestingBeneficiaries[_account].initialized,
            "TokenVesting: account has been registered"
        );
        require(
            _account != address(0),
            "TokenVesting: account is zero address"
        );
        require(
            _cliffDuration <= _duration,
            "TokenVesting: cliff is longer than duration"
        );
        require(_duration > 0, "TokenVesting: duration is 0");
        require(
            _start.add(_duration) > block.timestamp,
            "TokenVesting: final time is before current time"
        );
        require(
            totalAllocated.sub(totalReleased).add(_amount) <=
                IERC20(vestingToken).balanceOf(address(this)),
            "TokenVesting: insufficient balance"
        );

        Beneficiary memory beneficiary = Beneficiary(
            _start,
            _start.add(_cliffDuration),
            _duration,
            _amount,
            0,
            _revocable,
            false,
            true
        );
        _vestingBeneficiaries[_account] = beneficiary;
        totalAllocated = totalAllocated.add(_amount);
    }

    /**
     * @notice Transfers vested tokens to beneficiary.
     * @param _account The address of beneficiary
     */
    function claim(address _account)
        external
        isRegistered(_account)
        returns (uint256)
    {
        Beneficiary storage beneficiary = _vestingBeneficiaries[_account];
        uint256 unreleasedAmt = _releasableAmount(beneficiary);
        require(unreleasedAmt > 0, "TokenVesting: no tokens are due");

        beneficiary.released = beneficiary.released.add(unreleasedAmt);
        totalReleased = totalReleased.add(unreleasedAmt);
        IERC20(vestingToken).safeTransfer(_account, unreleasedAmt);
        emit Claimed(_account, unreleasedAmt);
        return unreleasedAmt;
    }

    /**
     * @notice Allows the owner to revoke the vesting. Tokens already vested
     * remain in the contract, but the amount will be updated.
     * @param _account The address of beneficiary
     */
    function revoke(address _account)
        external
        onlyOwner
        isRegistered(_account)
    {
        Beneficiary storage beneficiary = _vestingBeneficiaries[_account];
        require(beneficiary.revocable, "TokenVesting: cannot revoke");
        require(!beneficiary.revoked, "TokenVesting: account already revoked");

        uint256 unreleasedAmt = _releasableAmount(beneficiary);
        uint256 refund = beneficiary.amount.sub(
            beneficiary.released.add(unreleasedAmt)
        );

        // the amount of beneficiary will minus refund amount
        // claim amount = new amount - released amount
        beneficiary.amount = beneficiary.amount.sub(refund);
        beneficiary.revoked = true;
        totalAllocated = totalAllocated.sub(refund);
        emit Revoked(_account);
    }

    /**
     * @notice Allows the owner to retrieve tokens in case of emergency
     * @param _amount Amount of tokens to retrieve
     */
    function retrieveTokens(uint256 _amount) external onlyOwner {
        IERC20(vestingToken).safeTransfer(msg.sender, _amount);
    }

    /* ========== INTERNAL FUNCTIONS ========== */

    /**
     * @dev Calculates the amount that has already vested but hasn't been released yet.
     * @param _beneficiary The related information of beneficiary
     */
    function _releasableAmount(Beneficiary storage _beneficiary)
        private
        view
        returns (uint256)
    {
        return _vestedAmount(_beneficiary).sub(_beneficiary.released);
    }

    /**
     * @dev Calculates the amount that has already vested.
     * @param _beneficiary The related information of beneficiary
     */
    function _vestedAmount(Beneficiary storage _beneficiary)
        private
        view
        returns (uint256)
    {
        if (block.timestamp < _beneficiary.cliff) {
            return 0;
        } else if (
            block.timestamp >= _beneficiary.start.add(_beneficiary.duration) ||
            _beneficiary.revoked
        ) {
            return _beneficiary.amount;
        } else {
            return
                _beneficiary
                    .amount
                    .mul(block.timestamp.sub(_beneficiary.start))
                    .div(_beneficiary.duration);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"token","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Claimed","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"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Registered","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Revoked","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"amount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"claim","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"cliff","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"duration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"initialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_start","type":"uint256"},{"internalType":"uint256","name":"_cliffDuration","type":"uint256"},{"internalType":"uint256","name":"_duration","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bool","name":"_revocable","type":"bool"}],"name":"register","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"releasableAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"retrieveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"revocable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"revoke","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"revoked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"start","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAllocated","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vestingToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

608060405234801561001057600080fd5b5060405161165138038061165183398101604081905261002f916100ac565b60006100396100a8565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600180546001600160a01b0319166001600160a01b03929092169190911790556100da565b3390565b6000602082840312156100bd578081fd5b81516001600160a01b03811681146100d3578182fd5b9392505050565b611568806100e96000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c80638da5cb5b116100ad578063cdce101b11610071578063cdce101b14610236578063dd0b281e14610249578063e33b7de31461025c578063f2fde38b14610264578063fa01dc061461027757610121565b80638da5cb5b146101e25780639852595c146101ea578063b36760a3146101fd578063b9f0bf6614610210578063cbca47db1461022357610121565b80632489050c116100f45780632489050c1461018c57806345f7f249146101ac5780634c2501b3146101b4578063715018a6146101c757806374a8f103146101cf57610121565b806309f29d1b146101265780631726cbc81461013b57806319d152fa146101645780631e83409a14610179575b600080fd5b610139610134366004610f81565b61028a565b005b61014e610149366004610eee565b6102ec565b60405161015b91906114eb565b60405180910390f35b61016c610315565b60405161015b9190610fcd565b61014e610187366004610eee565b610324565b61019f61019a366004610eee565b610427565b60405161015b9190610ffa565b61014e610448565b6101396101c2366004610f09565b61044e565b61013961074f565b6101396101dd366004610eee565b6107d8565b61016c61096d565b61014e6101f8366004610eee565b61097c565b61014e61020b366004610eee565b61099b565b61014e61021e366004610eee565b6109b9565b61019f610231366004610eee565b6109d7565b61014e610244366004610eee565b6109fe565b61014e610257366004610eee565b610a1c565b61014e610a37565b610139610272366004610eee565b610a3d565b61019f610285366004610eee565b610afd565b610292610b23565b6001600160a01b03166102a361096d565b6001600160a01b0316146102d25760405162461bcd60e51b81526004016102c990611385565b60405180910390fd5b6001546102e9906001600160a01b03163383610b27565b50565b6001600160a01b038116600090815260046020526040812061030d90610b82565b90505b919050565b6001546001600160a01b031681565b6001600160a01b038116600090815260046020526040812060050154829062010000900460ff166103675760405162461bcd60e51b81526004016102c9906113f1565b6001600160a01b03831660009081526004602052604081209061038982610b82565b9050600081116103ab5760405162461bcd60e51b81526004016102c990611180565b60048201546103ba9082610b9b565b60048301556002546103cc9082610b9b565b6002556001546103e6906001600160a01b03168683610b27565b7fd8138f8a3f377c5259ca548e70e4c2de94f129f5a11036a15b69513cba2b426a8582604051610417929190610fe1565b60405180910390a1949350505050565b6001600160a01b031660009081526004602052604090206005015460ff1690565b60035481565b610456610b23565b6001600160a01b031661046761096d565b6001600160a01b03161461048d5760405162461bcd60e51b81526004016102c990611385565b6001600160a01b03861660009081526004602052604090206005015462010000900460ff16156104cf5760405162461bcd60e51b81526004016102c9906112fb565b6001600160a01b0386166104f55760405162461bcd60e51b81526004016102c990611038565b828411156105155760405162461bcd60e51b81526004016102c9906111ee565b600083116105355760405162461bcd60e51b81526004016102c990611472565b426105408685610b9b565b1161055d5760405162461bcd60e51b81526004016102c9906110b4565b6001546040516370a0823160e01b81526001600160a01b03909116906370a082319061058d903090600401610fcd565b60206040518083038186803b1580156105a557600080fd5b505afa1580156105b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105dd9190610f99565b6105fe836105f8600254600354610bc990919063ffffffff16565b90610b9b565b111561061c5760405162461bcd60e51b81526004016102c9906114a9565b610624610e8c565b604080516101008101909152868152602081016106418888610b9b565b81526020018581526020018481526020016000815260200183151581526020016000151581526020016001151581525090508060046000896001600160a01b03166001600160a01b03168152602001908152602001600020600082015181600001556020820151816001015560408201518160020155606082015181600301556080820151816004015560a08201518160050160006101000a81548160ff02191690831515021790555060c08201518160050160016101000a81548160ff02191690831515021790555060e08201518160050160026101000a81548160ff02191690831515021790555090505061074383600354610b9b90919063ffffffff16565b60035550505050505050565b610757610b23565b6001600160a01b031661076861096d565b6001600160a01b03161461078e5760405162461bcd60e51b81526004016102c990611385565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6107e0610b23565b6001600160a01b03166107f161096d565b6001600160a01b0316146108175760405162461bcd60e51b81526004016102c990611385565b6001600160a01b038116600090815260046020526040902060050154819062010000900460ff1661085a5760405162461bcd60e51b81526004016102c9906113f1565b6001600160a01b0382166000908152600460205260409020600581015460ff166108965760405162461bcd60e51b81526004016102c99061107d565b6005810154610100900460ff16156108c05760405162461bcd60e51b81526004016102c9906112b6565b60006108cb82610b82565b905060006108f46108e9838560040154610b9b90919063ffffffff16565b600385015490610bc9565b60038401549091506109069082610bc9565b60038085019190915560058401805461ff0019166101001790555461092b9082610bc9565b6003556040517fb6fa8b8bd5eab60f292eca876e3ef90722275b785309d84b1de113ce0b8c4e749061095e908790610fcd565b60405180910390a15050505050565b6000546001600160a01b031690565b6001600160a01b03166000908152600460208190526040909120015490565b6001600160a01b031660009081526004602052604090206002015490565b6001600160a01b031660009081526004602052604090206003015490565b6001600160a01b031660009081526004602052604090206005015462010000900460ff1690565b6001600160a01b031660009081526004602052604090206001015490565b6001600160a01b031660009081526004602052604090205490565b60025481565b610a45610b23565b6001600160a01b0316610a5661096d565b6001600160a01b031614610a7c5760405162461bcd60e51b81526004016102c990611385565b6001600160a01b038116610aa25760405162461bcd60e51b81526004016102c990611103565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0316600090815260046020526040902060050154610100900460ff1690565b3390565b610b7d8363a9059cbb60e01b8484604051602401610b46929190610fe1565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152610bf1565b505050565b600061030d8260040154610b9584610c80565b90610bc9565b600082820183811015610bc05760405162461bcd60e51b81526004016102c990611149565b90505b92915050565b600082821115610beb5760405162461bcd60e51b81526004016102c9906111b7565b50900390565b6060610c46826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610d079092919063ffffffff16565b805190915015610b7d5780806020019051810190610c649190610f65565b610b7d5760405162461bcd60e51b81526004016102c990611428565b60008160010154421015610c9657506000610310565b60028201548254610ca691610b9b565b42101580610cbd57506005820154610100900460ff165b15610ccd57506003810154610310565b610d008260020154610cfa610cef856000015442610bc990919063ffffffff16565b600386015490610d20565b90610d5a565b9050610310565b6060610d168484600085610d8c565b90505b9392505050565b600082610d2f57506000610bc3565b82820282848281610d3c57fe5b0414610bc05760405162461bcd60e51b81526004016102c990611344565b6000808211610d7b5760405162461bcd60e51b81526004016102c99061127f565b818381610d8457fe5b049392505050565b606082471015610dae5760405162461bcd60e51b81526004016102c990611239565b610db785610e4d565b610dd35760405162461bcd60e51b81526004016102c9906113ba565b60006060866001600160a01b03168587604051610df09190610fb1565b60006040518083038185875af1925050503d8060008114610e2d576040519150601f19603f3d011682016040523d82523d6000602084013e610e32565b606091505b5091509150610e42828286610e53565b979650505050505050565b3b151590565b60608315610e62575081610d19565b825115610e725782518084602001fd5b8160405162461bcd60e51b81526004016102c99190611005565b60405180610100016040528060008152602001600081526020016000815260200160008152602001600081526020016000151581526020016000151581526020016000151581525090565b80356001600160a01b0381168114610bc357600080fd5b600060208284031215610eff578081fd5b610d198383610ed7565b60008060008060008060c08789031215610f21578182fd5b610f2b8888610ed7565b95506020870135945060408701359350606087013592506080870135915060a0870135610f5781611524565b809150509295509295509295565b600060208284031215610f76578081fd5b8151610bc081611524565b600060208284031215610f92578081fd5b5035919050565b600060208284031215610faa578081fd5b5051919050565b60008251610fc38184602087016114f4565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b60006020825282518060208401526110248160408501602087016114f4565b601f01601f19169190910160400192915050565b60208082526025908201527f546f6b656e56657374696e673a206163636f756e74206973207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252601b908201527f546f6b656e56657374696e673a2063616e6e6f74207265766f6b650000000000604082015260600190565b6020808252602f908201527f546f6b656e56657374696e673a2066696e616c2074696d65206973206265666f60408201526e72652063757272656e742074696d6560881b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601f908201527f546f6b656e56657374696e673a206e6f20746f6b656e73206172652064756500604082015260600190565b6020808252601e908201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604082015260600190565b6020808252602b908201527f546f6b656e56657374696e673a20636c696666206973206c6f6e67657220746860408201526a30b710323ab930ba34b7b760a91b606082015260800190565b60208082526026908201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6040820152651c8818d85b1b60d21b606082015260800190565b6020808252601a908201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604082015260600190565b60208082526025908201527f546f6b656e56657374696e673a206163636f756e7420616c72656164792072656040820152641d9bdad95960da1b606082015260800190565b60208082526029908201527f546f6b656e56657374696e673a206163636f756e7420686173206265656e20726040820152681959da5cdd195c995960ba1b606082015260800190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b6020808252601c908201527f546f6b656e56657374696e673a206e6f74207265676973746572656400000000604082015260600190565b6020808252602a908201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6040820152691bdd081cdd58d8d9595960b21b606082015260800190565b6020808252601b908201527f546f6b656e56657374696e673a206475726174696f6e20697320300000000000604082015260600190565b60208082526022908201527f546f6b656e56657374696e673a20696e73756666696369656e742062616c616e604082015261636560f01b606082015260800190565b90815260200190565b60005b8381101561150f5781810151838201526020016114f7565b8381111561151e576000848401525b50505050565b80151581146102e957600080fdfea26469706673582212209090811008d1c8db3dc53c6fbca3cd9b8260b22a826a53af122d0baa6232a40b64736f6c634300060c00330000000000000000000000007f3edcdd180dbe4819bd98fee8929b5cedb3adeb

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c80638da5cb5b116100ad578063cdce101b11610071578063cdce101b14610236578063dd0b281e14610249578063e33b7de31461025c578063f2fde38b14610264578063fa01dc061461027757610121565b80638da5cb5b146101e25780639852595c146101ea578063b36760a3146101fd578063b9f0bf6614610210578063cbca47db1461022357610121565b80632489050c116100f45780632489050c1461018c57806345f7f249146101ac5780634c2501b3146101b4578063715018a6146101c757806374a8f103146101cf57610121565b806309f29d1b146101265780631726cbc81461013b57806319d152fa146101645780631e83409a14610179575b600080fd5b610139610134366004610f81565b61028a565b005b61014e610149366004610eee565b6102ec565b60405161015b91906114eb565b60405180910390f35b61016c610315565b60405161015b9190610fcd565b61014e610187366004610eee565b610324565b61019f61019a366004610eee565b610427565b60405161015b9190610ffa565b61014e610448565b6101396101c2366004610f09565b61044e565b61013961074f565b6101396101dd366004610eee565b6107d8565b61016c61096d565b61014e6101f8366004610eee565b61097c565b61014e61020b366004610eee565b61099b565b61014e61021e366004610eee565b6109b9565b61019f610231366004610eee565b6109d7565b61014e610244366004610eee565b6109fe565b61014e610257366004610eee565b610a1c565b61014e610a37565b610139610272366004610eee565b610a3d565b61019f610285366004610eee565b610afd565b610292610b23565b6001600160a01b03166102a361096d565b6001600160a01b0316146102d25760405162461bcd60e51b81526004016102c990611385565b60405180910390fd5b6001546102e9906001600160a01b03163383610b27565b50565b6001600160a01b038116600090815260046020526040812061030d90610b82565b90505b919050565b6001546001600160a01b031681565b6001600160a01b038116600090815260046020526040812060050154829062010000900460ff166103675760405162461bcd60e51b81526004016102c9906113f1565b6001600160a01b03831660009081526004602052604081209061038982610b82565b9050600081116103ab5760405162461bcd60e51b81526004016102c990611180565b60048201546103ba9082610b9b565b60048301556002546103cc9082610b9b565b6002556001546103e6906001600160a01b03168683610b27565b7fd8138f8a3f377c5259ca548e70e4c2de94f129f5a11036a15b69513cba2b426a8582604051610417929190610fe1565b60405180910390a1949350505050565b6001600160a01b031660009081526004602052604090206005015460ff1690565b60035481565b610456610b23565b6001600160a01b031661046761096d565b6001600160a01b03161461048d5760405162461bcd60e51b81526004016102c990611385565b6001600160a01b03861660009081526004602052604090206005015462010000900460ff16156104cf5760405162461bcd60e51b81526004016102c9906112fb565b6001600160a01b0386166104f55760405162461bcd60e51b81526004016102c990611038565b828411156105155760405162461bcd60e51b81526004016102c9906111ee565b600083116105355760405162461bcd60e51b81526004016102c990611472565b426105408685610b9b565b1161055d5760405162461bcd60e51b81526004016102c9906110b4565b6001546040516370a0823160e01b81526001600160a01b03909116906370a082319061058d903090600401610fcd565b60206040518083038186803b1580156105a557600080fd5b505afa1580156105b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105dd9190610f99565b6105fe836105f8600254600354610bc990919063ffffffff16565b90610b9b565b111561061c5760405162461bcd60e51b81526004016102c9906114a9565b610624610e8c565b604080516101008101909152868152602081016106418888610b9b565b81526020018581526020018481526020016000815260200183151581526020016000151581526020016001151581525090508060046000896001600160a01b03166001600160a01b03168152602001908152602001600020600082015181600001556020820151816001015560408201518160020155606082015181600301556080820151816004015560a08201518160050160006101000a81548160ff02191690831515021790555060c08201518160050160016101000a81548160ff02191690831515021790555060e08201518160050160026101000a81548160ff02191690831515021790555090505061074383600354610b9b90919063ffffffff16565b60035550505050505050565b610757610b23565b6001600160a01b031661076861096d565b6001600160a01b03161461078e5760405162461bcd60e51b81526004016102c990611385565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6107e0610b23565b6001600160a01b03166107f161096d565b6001600160a01b0316146108175760405162461bcd60e51b81526004016102c990611385565b6001600160a01b038116600090815260046020526040902060050154819062010000900460ff1661085a5760405162461bcd60e51b81526004016102c9906113f1565b6001600160a01b0382166000908152600460205260409020600581015460ff166108965760405162461bcd60e51b81526004016102c99061107d565b6005810154610100900460ff16156108c05760405162461bcd60e51b81526004016102c9906112b6565b60006108cb82610b82565b905060006108f46108e9838560040154610b9b90919063ffffffff16565b600385015490610bc9565b60038401549091506109069082610bc9565b60038085019190915560058401805461ff0019166101001790555461092b9082610bc9565b6003556040517fb6fa8b8bd5eab60f292eca876e3ef90722275b785309d84b1de113ce0b8c4e749061095e908790610fcd565b60405180910390a15050505050565b6000546001600160a01b031690565b6001600160a01b03166000908152600460208190526040909120015490565b6001600160a01b031660009081526004602052604090206002015490565b6001600160a01b031660009081526004602052604090206003015490565b6001600160a01b031660009081526004602052604090206005015462010000900460ff1690565b6001600160a01b031660009081526004602052604090206001015490565b6001600160a01b031660009081526004602052604090205490565b60025481565b610a45610b23565b6001600160a01b0316610a5661096d565b6001600160a01b031614610a7c5760405162461bcd60e51b81526004016102c990611385565b6001600160a01b038116610aa25760405162461bcd60e51b81526004016102c990611103565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0316600090815260046020526040902060050154610100900460ff1690565b3390565b610b7d8363a9059cbb60e01b8484604051602401610b46929190610fe1565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152610bf1565b505050565b600061030d8260040154610b9584610c80565b90610bc9565b600082820183811015610bc05760405162461bcd60e51b81526004016102c990611149565b90505b92915050565b600082821115610beb5760405162461bcd60e51b81526004016102c9906111b7565b50900390565b6060610c46826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610d079092919063ffffffff16565b805190915015610b7d5780806020019051810190610c649190610f65565b610b7d5760405162461bcd60e51b81526004016102c990611428565b60008160010154421015610c9657506000610310565b60028201548254610ca691610b9b565b42101580610cbd57506005820154610100900460ff165b15610ccd57506003810154610310565b610d008260020154610cfa610cef856000015442610bc990919063ffffffff16565b600386015490610d20565b90610d5a565b9050610310565b6060610d168484600085610d8c565b90505b9392505050565b600082610d2f57506000610bc3565b82820282848281610d3c57fe5b0414610bc05760405162461bcd60e51b81526004016102c990611344565b6000808211610d7b5760405162461bcd60e51b81526004016102c99061127f565b818381610d8457fe5b049392505050565b606082471015610dae5760405162461bcd60e51b81526004016102c990611239565b610db785610e4d565b610dd35760405162461bcd60e51b81526004016102c9906113ba565b60006060866001600160a01b03168587604051610df09190610fb1565b60006040518083038185875af1925050503d8060008114610e2d576040519150601f19603f3d011682016040523d82523d6000602084013e610e32565b606091505b5091509150610e42828286610e53565b979650505050505050565b3b151590565b60608315610e62575081610d19565b825115610e725782518084602001fd5b8160405162461bcd60e51b81526004016102c99190611005565b60405180610100016040528060008152602001600081526020016000815260200160008152602001600081526020016000151581526020016000151581526020016000151581525090565b80356001600160a01b0381168114610bc357600080fd5b600060208284031215610eff578081fd5b610d198383610ed7565b60008060008060008060c08789031215610f21578182fd5b610f2b8888610ed7565b95506020870135945060408701359350606087013592506080870135915060a0870135610f5781611524565b809150509295509295509295565b600060208284031215610f76578081fd5b8151610bc081611524565b600060208284031215610f92578081fd5b5035919050565b600060208284031215610faa578081fd5b5051919050565b60008251610fc38184602087016114f4565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b60006020825282518060208401526110248160408501602087016114f4565b601f01601f19169190910160400192915050565b60208082526025908201527f546f6b656e56657374696e673a206163636f756e74206973207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252601b908201527f546f6b656e56657374696e673a2063616e6e6f74207265766f6b650000000000604082015260600190565b6020808252602f908201527f546f6b656e56657374696e673a2066696e616c2074696d65206973206265666f60408201526e72652063757272656e742074696d6560881b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601f908201527f546f6b656e56657374696e673a206e6f20746f6b656e73206172652064756500604082015260600190565b6020808252601e908201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604082015260600190565b6020808252602b908201527f546f6b656e56657374696e673a20636c696666206973206c6f6e67657220746860408201526a30b710323ab930ba34b7b760a91b606082015260800190565b60208082526026908201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6040820152651c8818d85b1b60d21b606082015260800190565b6020808252601a908201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604082015260600190565b60208082526025908201527f546f6b656e56657374696e673a206163636f756e7420616c72656164792072656040820152641d9bdad95960da1b606082015260800190565b60208082526029908201527f546f6b656e56657374696e673a206163636f756e7420686173206265656e20726040820152681959da5cdd195c995960ba1b606082015260800190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b6020808252601c908201527f546f6b656e56657374696e673a206e6f74207265676973746572656400000000604082015260600190565b6020808252602a908201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6040820152691bdd081cdd58d8d9595960b21b606082015260800190565b6020808252601b908201527f546f6b656e56657374696e673a206475726174696f6e20697320300000000000604082015260600190565b60208082526022908201527f546f6b656e56657374696e673a20696e73756666696369656e742062616c616e604082015261636560f01b606082015260800190565b90815260200190565b60005b8381101561150f5781810151838201526020016114f7565b8381111561151e576000848401525b50505050565b80151581146102e957600080fdfea26469706673582212209090811008d1c8db3dc53c6fbca3cd9b8260b22a826a53af122d0baa6232a40b64736f6c634300060c0033

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

0000000000000000000000007f3edcdd180dbe4819bd98fee8929b5cedb3adeb

-----Decoded View---------------
Arg [0] : token (address): 0x7F3EDcdD180Dbe4819Bd98FeE8929b5cEdB3AdEB

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000007f3edcdd180dbe4819bd98fee8929b5cedb3adeb


Deployed Bytecode Sourcemap

25480:8662:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32794:133;;;;;;:::i;:::-;;:::i;:::-;;28711:150;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26166:27;;;:::i;:::-;;;;;;;:::i;30972:618::-;;;;;;:::i;:::-;;:::i;27754:131::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;26235:29::-;;;:::i;29440:1399::-;;;;;;:::i;:::-;;:::i;2781:148::-;;;:::i;31809:834::-;;;;;;:::i;:::-;;:::i;2130:87::-;;;:::i;27961:132::-;;;;;;:::i;:::-;;:::i;27546:::-;;;;;;:::i;:::-;;:::i;28362:128::-;;;;;;:::i;:::-;;:::i;28568:135::-;;;;;;:::i;:::-;;:::i;27138:126::-;;;;;;:::i;:::-;;:::i;27343:::-;;;;;;:::i;:::-;;:::i;26200:28::-;;;:::i;3084:244::-;;;;;;:::i;:::-;;:::i;28165:127::-;;;;;;:::i;:::-;;:::i;32794:133::-;2361:12;:10;:12::i;:::-;-1:-1:-1;;;;;2350:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2350:23:0;;2342:68;;;;-1:-1:-1;;;2342:68:0;;;;;;;:::i;:::-;;;;;;;;;32872:12:::1;::::0;32865:54:::1;::::0;-1:-1:-1;;;;;32872:12:0::1;32899:10;32911:7:::0;32865:33:::1;:54::i;:::-;32794:133:::0;:::o;28711:150::-;-1:-1:-1;;;;;28822:30:0;;28777:7;28822:30;;;:21;:30;;;;;28804:49;;:17;:49::i;:::-;28797:56;;28711:150;;;;:::o;26166:27::-;;;-1:-1:-1;;;;;26166:27:0;;:::o;30972:618::-;-1:-1:-1;;;;;26652:30:0;;31073:7;26652:30;;;:21;:30;;;;;:42;;;:30;;:42;;;;;26630:120;;;;-1:-1:-1;;;26630:120:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31132:31:0;::::1;31098;31132::::0;;;:21:::1;:31;::::0;;;;;31198:30:::1;31132:31:::0;31198:17:::1;:30::i;:::-;31174:54;;31263:1;31247:13;:17;31239:61;;;;-1:-1:-1::0;;;31239:61:0::1;;;;;;;:::i;:::-;31336:20;::::0;::::1;::::0;:39:::1;::::0;31361:13;31336:24:::1;:39::i;:::-;31313:20;::::0;::::1;:62:::0;31402:13:::1;::::0;:32:::1;::::0;31420:13;31402:17:::1;:32::i;:::-;31386:13;:48:::0;31452:12:::1;::::0;31445:58:::1;::::0;-1:-1:-1;;;;;31452:12:0::1;31479:8:::0;31489:13;31445:33:::1;:58::i;:::-;31519:32;31527:8;31537:13;31519:32;;;;;;;:::i;:::-;;;;;;;;31569:13:::0;30972:618;-1:-1:-1;;;;30972:618:0:o;27754:131::-;-1:-1:-1;;;;;27837:30:0;27813:4;27837:30;;;:21;:30;;;;;:40;;;;;;27754:131::o;26235:29::-;;;;:::o;29440:1399::-;2361:12;:10;:12::i;:::-;-1:-1:-1;;;;;2350:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2350:23:0;;2342:68;;;;-1:-1:-1;;;2342:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29683:31:0;::::1;;::::0;;;:21:::1;:31;::::0;;;;:43:::1;;::::0;;;::::1;;;29682:44;29660:135;;;;-1:-1:-1::0;;;29660:135:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;29828:22:0;::::1;29806:109;;;;-1:-1:-1::0;;;29806:109:0::1;;;;;;;:::i;:::-;29966:9;29948:14;:27;;29926:120;;;;-1:-1:-1::0;;;29926:120:0::1;;;;;;;:::i;:::-;30077:1;30065:9;:13;30057:53;;;;-1:-1:-1::0;;;30057:53:0::1;;;;;;;:::i;:::-;30167:15;30143:21;:6:::0;30154:9;30143:10:::1;:21::i;:::-;:39;30121:136;;;;-1:-1:-1::0;;;30121:136:0::1;;;;;;;:::i;:::-;30364:12;::::0;30357:45:::1;::::0;-1:-1:-1;;;30357:45:0;;-1:-1:-1;;;;;30364:12:0;;::::1;::::0;30357:30:::1;::::0;:45:::1;::::0;30396:4:::1;::::0;30357:45:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;30290:46;30328:7;30290:33;30309:13;;30290:14;;:18;;:33;;;;:::i;:::-;:37:::0;::::1;:46::i;:::-;:112;;30268:196;;;;-1:-1:-1::0;;;30268:196:0::1;;;;;;;:::i;:::-;30477:30;;:::i;:::-;30510:210;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;::::0;::::1;30557:26;30536:6:::0;30568:14;30557:10:::1;:26::i;:::-;30510:210;;;;30598:9;30510:210;;;;30622:7;30510:210;;;;30644:1;30510:210;;;;30660:10;30510:210;;;;;;30685:5;30510:210;;;;;;30705:4;30510:210;;;;::::0;30477:243:::1;;30765:11;30731:21;:31;30753:8;-1:-1:-1::0;;;;;30731:31:0::1;-1:-1:-1::0;;;;;30731:31:0::1;;;;;;;;;;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30804:27;30823:7;30804:14;;:18;;:27;;;;:::i;:::-;30787:14;:44:::0;-1:-1:-1;;;;;;;29440:1399:0:o;2781:148::-;2361:12;:10;:12::i;:::-;-1:-1:-1;;;;;2350:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2350:23:0;;2342:68;;;;-1:-1:-1;;;2342:68:0;;;;;;;:::i;:::-;2888:1:::1;2872:6:::0;;2851:40:::1;::::0;-1:-1:-1;;;;;2872:6:0;;::::1;::::0;2851:40:::1;::::0;2888:1;;2851:40:::1;2919:1;2902:19:::0;;-1:-1:-1;;;;;;2902:19:0::1;::::0;;2781:148::o;31809:834::-;2361:12;:10;:12::i;:::-;-1:-1:-1;;;;;2350:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2350:23:0;;2342:68;;;;-1:-1:-1;;;2342:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26652:30:0;::::1;;::::0;;;:21:::1;:30;::::0;;;;:42:::1;;::::0;:30;;:42;;::::1;;;26630:120;;;;-1:-1:-1::0;;;26630:120:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;31962:31:0;::::2;31928;31962::::0;;;:21:::2;:31;::::0;;;;32012:21:::2;::::0;::::2;::::0;::::2;;32004:61;;;;-1:-1:-1::0;;;32004:61:0::2;;;;;;;:::i;:::-;32085:19;::::0;::::2;::::0;::::2;::::0;::::2;;;32084:20;32076:70;;;;-1:-1:-1::0;;;32076:70:0::2;;;;;;;:::i;:::-;32159:21;32183:30;32201:11;32183:17;:30::i;:::-;32159:54;;32224:14;32241:87;32278:39;32303:13;32278:11;:20;;;:24;;:39;;;;:::i;:::-;32241:18;::::0;::::2;::::0;;:22:::2;:87::i;:::-;32481:18;::::0;::::2;::::0;32224:104;;-1:-1:-1;32481:30:0::2;::::0;32224:104;32481:22:::2;:30::i;:::-;32460:18;::::0;;::::2;:51:::0;;;;32522:19:::2;::::0;::::2;:26:::0;;-1:-1:-1;;32522:26:0::2;;;::::0;;32576:14;:26:::2;::::0;32595:6;32576:18:::2;:26::i;:::-;32559:14;:43:::0;32618:17:::2;::::0;::::2;::::0;::::2;::::0;32626:8;;32618:17:::2;:::i;:::-;;;;;;;;26761:1;;;2421::::1;31809:834:::0;:::o;2130:87::-;2176:7;2203:6;-1:-1:-1;;;;;2203:6:0;2130:87;:::o;27961:132::-;-1:-1:-1;;;;;28046:30:0;28019:7;28046:30;;;:21;:30;;;;;;;;:39;;;27961:132::o;27546:::-;-1:-1:-1;;;;;27631:30:0;27604:7;27631:30;;;:21;:30;;;;;:39;;;;27546:132::o;28362:128::-;-1:-1:-1;;;;;28445:30:0;28418:7;28445:30;;;:21;:30;;;;;:37;;;;28362:128::o;28568:135::-;-1:-1:-1;;;;;28653:30:0;28629:4;28653:30;;;:21;:30;;;;;:42;;;;;;;;;28568:135::o;27138:126::-;-1:-1:-1;;;;;27220:30:0;27193:7;27220:30;;;:21;:30;;;;;:36;;;;27138:126::o;27343:::-;-1:-1:-1;;;;;27425:30:0;27398:7;27425:30;;;:21;:30;;;;;:36;;27343:126::o;26200:28::-;;;;:::o;3084:244::-;2361:12;:10;:12::i;:::-;-1:-1:-1;;;;;2350:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2350:23:0;;2342:68;;;;-1:-1:-1;;;2342:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3173:22:0;::::1;3165:73;;;;-1:-1:-1::0;;;3165:73:0::1;;;;;;;:::i;:::-;3275:6;::::0;;3254:38:::1;::::0;-1:-1:-1;;;;;3254:38:0;;::::1;::::0;3275:6;::::1;::::0;3254:38:::1;::::0;::::1;3303:6;:17:::0;;-1:-1:-1;;;;;;3303:17:0::1;-1:-1:-1::0;;;;;3303:17:0;;;::::1;::::0;;;::::1;::::0;;3084:244::o;28165:127::-;-1:-1:-1;;;;;28246:30:0;28222:4;28246:30;;;:21;:30;;;;;:38;;;;;;;;;28165:127::o;667:106::-;755:10;667:106;:::o;22299:177::-;22382:86;22402:5;22432:23;;;22457:2;22461:5;22409:58;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;22409:58:0;;;;;;;;;;;;;;-1:-1:-1;;;;;22409:58:0;-1:-1:-1;;;;;;22409:58:0;;;;;;;;;;22382:19;:86::i;:::-;22299:177;;;:::o;33163:204::-;33273:7;33305:54;33337:12;:21;;;33305:27;33319:12;33305:13;:27::i;:::-;:31;;:54::i;6128:179::-;6186:7;6218:5;;;6242:6;;;;6234:46;;;;-1:-1:-1;;;6234:46:0;;;;;;;:::i;:::-;6298:1;-1:-1:-1;6128:179:0;;;;;:::o;6590:158::-;6648:7;6681:1;6676;:6;;6668:49;;;;-1:-1:-1;;;6668:49:0;;;;;;;:::i;:::-;-1:-1:-1;6735:5:0;;;6590:158::o;24604:761::-;25028:23;25054:69;25082:4;25054:69;;;;;;;;;;;;;;;;;25062:5;-1:-1:-1;;;;;25054:27:0;;;:69;;;;;:::i;:::-;25138:17;;25028:95;;-1:-1:-1;25138:21:0;25134:224;;25280:10;25269:30;;;;;;;;;;;;:::i;:::-;25261:85;;;;-1:-1:-1;;;25261:85:0;;;;;;;:::i;33520:619::-;33626:7;33673:12;:18;;;33655:15;:36;33651:481;;;-1:-1:-1;33715:1:0;33708:8;;33651:481;33794:21;;;;33771:18;;:45;;:22;:45::i;:::-;33752:15;:64;;:101;;;-1:-1:-1;33833:20:0;;;;;;;;;33752:101;33734:398;;;-1:-1:-1;33887:19:0;;;;33880:26;;33734:398;33963:157;34098:12;:21;;;33963:108;34031:39;34051:12;:18;;;34031:15;:19;;:39;;;;:::i;:::-;33963:41;;;;;:67;:108::i;:::-;:134;;:157::i;:::-;33939:181;;;;17294:195;17397:12;17429:52;17451:6;17459:4;17465:1;17468:12;17429:21;:52::i;:::-;17422:59;;17294:195;;;;;;:::o;7007:220::-;7065:7;7089:6;7085:20;;-1:-1:-1;7104:1:0;7097:8;;7085:20;7128:5;;;7132:1;7128;:5;:1;7152:5;;;;;:10;7144:56;;;;-1:-1:-1;;;7144:56:0;;;;;;;:::i;7705:153::-;7763:7;7795:1;7791;:5;7783:44;;;;-1:-1:-1;;;7783:44:0;;;;;;;:::i;:::-;7849:1;7845;:5;;;;;;;7705:153;-1:-1:-1;;;7705:153:0:o;18346:530::-;18473:12;18531:5;18506:21;:30;;18498:81;;;;-1:-1:-1;;;18498:81:0;;;;;;;:::i;:::-;18598:18;18609:6;18598:10;:18::i;:::-;18590:60;;;;-1:-1:-1;;;18590:60:0;;;;;;;:::i;:::-;18724:12;18738:23;18765:6;-1:-1:-1;;;;;18765:11:0;18785:5;18793:4;18765:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18723:75;;;;18816:52;18834:7;18843:10;18855:12;18816:17;:52::i;:::-;18809:59;18346:530;-1:-1:-1;;;;;;;18346:530:0:o;14376:422::-;14743:20;14782:8;;;14376:422::o;20886:742::-;21001:12;21030:7;21026:595;;;-1:-1:-1;21061:10:0;21054:17;;21026:595;21175:17;;:21;21171:439;;21438:10;21432:17;21499:15;21486:10;21482:2;21478:19;21471:44;21386:148;21581:12;21574:20;;-1:-1:-1;;;21574:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5:130::-;72:20;;-1:-1;;;;;21023:54;;21609:35;;21599:2;;21658:1;;21648:12;686:241;;790:2;778:9;769:7;765:23;761:32;758:2;;;-1:-1;;796:12;758:2;858:53;903:7;879:22;858:53;:::i;934:863::-;;;;;;;1120:3;1108:9;1099:7;1095:23;1091:33;1088:2;;;-1:-1;;1127:12;1088:2;1189:53;1234:7;1210:22;1189:53;:::i;:::-;1179:63;;1279:2;1322:9;1318:22;475:20;1287:63;;1387:2;1430:9;1426:22;475:20;1395:63;;1495:2;1538:9;1534:22;475:20;1503:63;;1603:3;1647:9;1643:22;475:20;1612:63;;1712:3;1753:9;1749:22;206:20;231:30;255:5;231:30;:::i;:::-;1721:60;;;;1082:715;;;;;;;;:::o;1804:257::-;;1916:2;1904:9;1895:7;1891:23;1887:32;1884:2;;;-1:-1;;1922:12;1884:2;354:6;348:13;366:30;390:5;366:30;:::i;2068:241::-;;2172:2;2160:9;2151:7;2147:23;2143:32;2140:2;;;-1:-1;;2178:12;2140:2;-1:-1;475:20;;2134:175;-1:-1;2134:175::o;2316:263::-;;2431:2;2419:9;2410:7;2406:23;2402:32;2399:2;;;-1:-1;;2437:12;2399:2;-1:-1;623:13;;2393:186;-1:-1;2393:186::o;10542:271::-;;2977:5;20276:12;3088:52;3133:6;3128:3;3121:4;3114:5;3110:16;3088:52;:::i;:::-;3152:16;;;;;10676:137;-1:-1;;10676:137::o;10820:222::-;-1:-1;;;;;21023:54;;;;2657:37;;10947:2;10932:18;;10918:124::o;11049:333::-;-1:-1;;;;;21023:54;;;;2657:37;;11368:2;11353:18;;10493:37;11204:2;11189:18;;11175:207::o;11389:210::-;20935:13;;20928:21;2771:34;;11510:2;11495:18;;11481:118::o;11606:310::-;;11753:2;11774:17;11767:47;3325:5;20276:12;20715:6;11753:2;11742:9;11738:18;20703:19;3419:52;3464:6;20743:14;11742:9;20743:14;11753:2;3445:5;3441:16;3419:52;:::i;:::-;21529:7;21513:14;-1:-1;;21509:28;3483:39;;;;20743:14;3483:39;;11724:192;-1:-1;;11724:192::o;11923:416::-;12123:2;12137:47;;;3759:2;12108:18;;;20703:19;3795:34;20743:14;;;3775:55;-1:-1;;;3850:12;;;3843:29;3891:12;;;12094:245::o;12346:416::-;12546:2;12560:47;;;4142:2;12531:18;;;20703:19;4178:29;20743:14;;;4158:50;4227:12;;;12517:245::o;12769:416::-;12969:2;12983:47;;;4478:2;12954:18;;;20703:19;4514:34;20743:14;;;4494:55;-1:-1;;;4569:12;;;4562:39;4620:12;;;12940:245::o;13192:416::-;13392:2;13406:47;;;4871:2;13377:18;;;20703:19;4907:34;20743:14;;;4887:55;-1:-1;;;4962:12;;;4955:30;5004:12;;;13363:245::o;13615:416::-;13815:2;13829:47;;;5255:2;13800:18;;;20703:19;5291:29;20743:14;;;5271:50;5340:12;;;13786:245::o;14038:416::-;14238:2;14252:47;;;5591:2;14223:18;;;20703:19;5627:33;20743:14;;;5607:54;5680:12;;;14209:245::o;14461:416::-;14661:2;14675:47;;;5931:2;14646:18;;;20703:19;5967:32;20743:14;;;5947:53;6019:12;;;14632:245::o;14884:416::-;15084:2;15098:47;;;6270:2;15069:18;;;20703:19;6306:34;20743:14;;;6286:55;-1:-1;;;6361:12;;;6354:35;6408:12;;;15055:245::o;15307:416::-;15507:2;15521:47;;;6659:2;15492:18;;;20703:19;6695:34;20743:14;;;6675:55;-1:-1;;;6750:12;;;6743:30;6792:12;;;15478:245::o;15730:416::-;15930:2;15944:47;;;7043:2;15915:18;;;20703:19;7079:28;20743:14;;;7059:49;7127:12;;;15901:245::o;16153:416::-;16353:2;16367:47;;;7378:2;16338:18;;;20703:19;7414:34;20743:14;;;7394:55;-1:-1;;;7469:12;;;7462:29;7510:12;;;16324:245::o;16576:416::-;16776:2;16790:47;;;7761:2;16761:18;;;20703:19;7797:34;20743:14;;;7777:55;-1:-1;;;7852:12;;;7845:33;7897:12;;;16747:245::o;16999:416::-;17199:2;17213:47;;;8148:2;17184:18;;;20703:19;8184:34;20743:14;;;8164:55;-1:-1;;;8239:12;;;8232:25;8276:12;;;17170:245::o;17422:416::-;17622:2;17636:47;;;17607:18;;;20703:19;8563:34;20743:14;;;8543:55;8617:12;;;17593:245::o;17845:416::-;18045:2;18059:47;;;8868:2;18030:18;;;20703:19;8904:31;20743:14;;;8884:52;8955:12;;;18016:245::o;18268:416::-;18468:2;18482:47;;;9206:2;18453:18;;;20703:19;9242:30;20743:14;;;9222:51;9292:12;;;18439:245::o;18691:416::-;18891:2;18905:47;;;9543:2;18876:18;;;20703:19;9579:34;20743:14;;;9559:55;-1:-1;;;9634:12;;;9627:34;9680:12;;;18862:245::o;19114:416::-;19314:2;19328:47;;;9931:2;19299:18;;;20703:19;9967:29;20743:14;;;9947:50;10016:12;;;19285:245::o;19537:416::-;19737:2;19751:47;;;10267:2;19722:18;;;20703:19;10303:34;20743:14;;;10283:55;-1:-1;;;10358:12;;;10351:26;10396:12;;;19708:245::o;19960:222::-;10493:37;;;20087:2;20072:18;;20058:124::o;21169:268::-;21234:1;21241:101;21255:6;21252:1;21249:13;21241:101;;;21322:11;;;21316:18;21303:11;;;21296:39;21277:2;21270:10;21241:101;;;21357:6;21354:1;21351:13;21348:2;;;21234:1;21413:6;21408:3;21404:16;21397:27;21348:2;;21218:219;;;:::o;21674:111::-;21755:5;20935:13;20928:21;21733:5;21730:32;21720:2;;21776:1;;21766:12

Swarm Source

ipfs://9090811008d1c8db3dc53c6fbca3cd9b8260b22a826a53af122d0baa6232a40b

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.