ETH Price: $2,995.41 (+0.75%)
Gas: 9 Gwei

Token

Unvest (UNV)
 

Overview

Max Total Supply

1,000,000,000 UNV

Holders

1,415 (0.00%)

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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

OVERVIEW

Unvest is the open multi-chain DeFi protocol for trading locked tokens. Free, fully customizable Vesting and Distribution for project owners.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
UNV

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 800 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

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

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/GSN/Context.sol

pragma solidity >=0.6.0 <0.8.0;

// 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/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/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/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: contracts/external/IUniswapV2Router01.sol

pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETH(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountToken, uint256 amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts);
}

// File: contracts/external/IUniswapV2Router02.sol

pragma solidity >=0.6.2;

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

// File: contracts/external/IUniswapV2Factory.sol

pragma solidity >=0.5.0;

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint256);

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

// File: contracts/VestedToken.sol

pragma solidity ^0.6.12;

contract UNV is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

    string private constant _name = "Unvest";
    string private constant _symbol = "UNV";
    uint8 private constant _decimals = 18;

    uint256 private constant _unlockMultiple = 5 * 10**3;
    uint256 private constant _maxLock = 10 days;

    uint256 _totalSupply = 10**9 * 10**18;
    mapping(address => uint256) _balances;
    mapping(address => mapping(address => uint256)) _allowances;

    IUniswapV2Router02 public constant uniRouter = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
    IUniswapV2Factory public constant uniFactory = IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f);
    address public launchPool;

    uint256 private _tradingTime;
    uint256 private _restrictionLiftTime;
    uint256 private _maxRestrictionAmount;
    uint256 private _restrictionGas;
    uint256 private _launchPrice;
    mapping(address => bool) private _isWhitelisted;
    mapping(address => bool) private _openSender;
    mapping(address => bool) private _lastTx;
    mapping(address => uint256) public lockTime;
    mapping(address => uint256) public lockedAmount;

    constructor(uint256 _gas, uint256 _amount) public {
        launchPool = uniFactory.createPair(address(uniRouter.WETH()), address(this));
        _maxRestrictionAmount = _amount;
        _restrictionGas = _gas;
        _isWhitelisted[address(uniRouter)] = true;
        _isWhitelisted[launchPool] = true;
        _balances[owner()] = _totalSupply;
        emit Transfer(address(0), owner(), _totalSupply);
    }

    function name() public pure returns (string memory) {
        return _name;
    }

    function symbol() public pure returns (string memory) {
        return _symbol;
    }

    function decimals() public pure returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(amount, "UNV: transfer amount exceeds allowance")
        );
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].sub(subtractedValue, "UNV: decreased allowance below zero")
        );
        return true;
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) private launchRestrict(sender, recipient, amount) {
        require(sender != address(0), "UNV: transfer from the zero address");
        require(recipient != address(0), "UNV: transfer to the zero address");

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

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) private {
        require(owner != address(0), "UNV: approve from the zero address");
        require(spender != address(0), "UNV: approve to the zero address");

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

    function setRestrictionAmount(uint256 amount) external onlyOwner {
        _maxRestrictionAmount = amount;
    }

    function setRestrictionGas(uint256 price) external onlyOwner {
        _restrictionGas = price;
    }

    function addSender(address account) external onlyOwner {
        _openSender[account] = true;
    }

    function setLaunchPrice(uint256 price) external onlyOwner {
        _launchPrice = price;
    }

    function lockBot(address account, uint256 unlockBotTime) external onlyOwner {
        lockTime[account] = unlockBotTime;
    }

    modifier launchRestrict(
        address sender,
        address recipient,
        uint256 amount
    ) {
        if (_tradingTime == 0) {
            require(_openSender[sender], "UNV: transfers are disabled");
            if (recipient == launchPool) {
                _tradingTime = now;
                _restrictionLiftTime = now.add(3 minutes);
            }
        } else if (_tradingTime == now) {
            revert("UNV: no transactions allowed");
        } else if (_tradingTime < now && _restrictionLiftTime > now) {
            require(amount <= _maxRestrictionAmount, "UNV: amount greater than max limit");
            require(tx.gasprice <= _restrictionGas, "UNV: gas price above limit");
            if (!_isWhitelisted[sender] && !_isWhitelisted[recipient]) {
                require(
                    !_lastTx[sender] && !_lastTx[recipient] && !_lastTx[tx.origin],
                    "UNV: only one tx in restricted time"
                );
                _lastTx[sender] = true;
                _lastTx[recipient] = true;
                _lastTx[tx.origin] = true;
            } else if (!_isWhitelisted[recipient]) {
                require(!_lastTx[recipient] && !_lastTx[tx.origin], "UNV: only one tx in restricted time");
                _lastTx[recipient] = true;
                _lastTx[tx.origin] = true;
            } else if (!_isWhitelisted[sender]) {
                require(!_lastTx[sender] && !_lastTx[tx.origin], "UNV: only one tx in restricted time");
                _lastTx[sender] = true;
                _lastTx[tx.origin] = true;
            }

            // If 100 ETH : 8000 Tokens were in pool, price before buy = 0.0125. If 110 ETH : 7200 Tokens
            // after the purchase, price after buy = 0.0153. The ETH will be in the pool by the time of this function
            // execution, but tokens won't decrease yet, so we get to understand the actual execution price here
            // 110 ETH : 8000 Tokens = 0.01375. This logic will be used to understand the multiple and execute vesting
            // accordingly.
            if (sender == launchPool) {
                require(
                    (_isWhitelisted[recipient] || _isWhitelisted[msg.sender]) && !Address.isContract(tx.origin),
                    "UNV: only uniswap router allowed"
                );
                uint256 ethBal = IERC20(address(uniRouter.WETH())).balanceOf(launchPool);
                uint256 tokenBal = balanceOf(launchPool);
                uint256 curPriceMultiple = ethBal.mul(10**18).div(tokenBal).mul(10**3).div(_launchPrice);
                uint256 timeDelay = _maxLock.mul(curPriceMultiple).div(_unlockMultiple);
                if (timeDelay <= _maxLock) {
                    lockTime[recipient] = now.add(_maxLock.sub(timeDelay));
                }
                uint256 unlockAmount = amount.mul(curPriceMultiple).div(_unlockMultiple);
                if (unlockAmount <= amount) {
                    lockedAmount[recipient] = amount.sub(unlockAmount);
                }
            }
        } else {
            if (!_isWhitelisted[sender] && lockTime[sender] >= now) {
                require(amount.add(lockedAmount[sender]) <= _balances[sender], "UNV: locked balance");
            }
        }
        _;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_gas","type":"uint256"},{"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addSender","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launchPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"unlockBotTime","type":"uint256"}],"name":"lockBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lockedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setLaunchPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setRestrictionAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setRestrictionGas","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniFactory","outputs":[{"internalType":"contract IUniswapV2Factory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040526b033b2e3c9fd0803ce80000006001553480156200002157600080fd5b5060405162001cd738038062001cd7833981810160405260408110156200004757600080fd5b50805160209091015160006200005c620002bf565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f6001600160a01b031663c9c65396737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200011757600080fd5b505afa1580156200012c573d6000803e3d6000fd5b505050506040513d60208110156200014357600080fd5b5051604080516001600160e01b031960e085901b1681526001600160a01b0390921660048301523060248301525160448083019260209291908290030181600087803b1580156200019357600080fd5b505af1158015620001a8573d6000803e3d6000fd5b505050506040513d6020811015620001bf57600080fd5b5051600480546001600160a01b0319166001600160a01b03928316179081905560078390556008849055600a6020527fc90215bb1b0ac6bfa50a3c02c4b559c695b6a8e828048a88e327592fc55c5d2c805460ff199081166001908117909255919092166000908152604081208054909216831790915590549060029062000246620002c3565b6001600160a01b031681526020810191909152604001600020556200026a620002c3565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6001546040518082815260200191505060405180910390a35050620002d2565b3390565b6000546001600160a01b031690565b6119f580620002e26000396000f3fe608060405234801561001057600080fd5b50600436106101985760003560e01c806395d89b41116100e3578063a9059cbb1161008c578063dd62ed3e11610066578063dd62ed3e14610498578063f2f82712146104c6578063f2fde38b146104e357610198565b8063a9059cbb14610429578063b697f53114610455578063cf607eaa1461047b57610198565b8063a1d4958c116100bd578063a1d4958c146103cf578063a457c2d7146103d7578063a4beda631461040357610198565b806395d89b4114610399578063a0e47bf6146103a1578063a153e708146103a957610198565b806350993f3e116101455780637521b7c21161011f5780637521b7c21461035057806376771d4b1461036d5780638da5cb5b1461039157610198565b806350993f3e146102f457806370a0823114610322578063715018a61461034857610198565b806323b872dd1161017657806323b872dd14610274578063313ce567146102aa57806339509351146102c857610198565b806306fdde031461019d578063095ea7b31461021a57806318160ddd1461025a575b600080fd5b6101a5610509565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101df5781810151838201526020016101c7565b50505050905090810190601f16801561020c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102466004803603604081101561023057600080fd5b506001600160a01b038135169060200135610540565b604080519115158252519081900360200190f35b61026261055e565b60408051918252519081900360200190f35b6102466004803603606081101561028a57600080fd5b506001600160a01b03813581169160208101359091169060400135610564565b6102b26105eb565b6040805160ff9092168252519081900360200190f35b610246600480360360408110156102de57600080fd5b506001600160a01b0381351690602001356105f0565b6103206004803603604081101561030a57600080fd5b506001600160a01b03813516906020013561063e565b005b6102626004803603602081101561033857600080fd5b50356001600160a01b03166106ce565b6103206106e9565b6103206004803603602081101561036657600080fd5b50356107b4565b61037561082d565b604080516001600160a01b039092168252519081900360200190f35b610375610845565b6101a5610854565b610375610871565b610262600480360360208110156103bf57600080fd5b50356001600160a01b0316610889565b61037561089b565b610246600480360360408110156103ed57600080fd5b506001600160a01b0381351690602001356108aa565b6102626004803603602081101561041957600080fd5b50356001600160a01b0316610912565b6102466004803603604081101561043f57600080fd5b506001600160a01b038135169060200135610924565b6103206004803603602081101561046b57600080fd5b50356001600160a01b0316610938565b6103206004803603602081101561049157600080fd5b50356109d0565b610262600480360360408110156104ae57600080fd5b506001600160a01b0381358116916020013516610a49565b610320600480360360208110156104dc57600080fd5b5035610a74565b610320600480360360208110156104f957600080fd5b50356001600160a01b0316610aed565b60408051808201909152600681527f556e766573740000000000000000000000000000000000000000000000000000602082015290565b600061055461054d610c0e565b8484610c12565b5060015b92915050565b60015490565b6000610571848484610d14565b6105e18461057d610c0e565b6105dc8560405180606001604052806026815260200161190d602691396001600160a01b038a166000908152600360205260408120906105bb610c0e565b6001600160a01b031681526020810191909152604001600020549190611645565b610c12565b5060019392505050565b601290565b60006105546105fd610c0e565b846105dc856003600061060e610c0e565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906116dc565b610646610c0e565b6001600160a01b0316610657610845565b6001600160a01b0316146106b2576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b039091166000908152600d6020526040902055565b6001600160a01b031660009081526002602052604090205490565b6106f1610c0e565b6001600160a01b0316610702610845565b6001600160a01b03161461075d576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36000805473ffffffffffffffffffffffffffffffffffffffff19169055565b6107bc610c0e565b6001600160a01b03166107cd610845565b6001600160a01b031614610828576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600855565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b6000546001600160a01b031690565b6040805180820190915260038152622aa72b60e91b602082015290565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b600e6020526000908152604090205481565b6004546001600160a01b031681565b60006105546108b7610c0e565b846105dc8560405180606001604052806023815260200161197a60239139600360006108e1610c0e565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611645565b600d6020526000908152604090205481565b6000610554610931610c0e565b8484610d14565b610940610c0e565b6001600160a01b0316610951610845565b6001600160a01b0316146109ac576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03166000908152600b60205260409020805460ff19166001179055565b6109d8610c0e565b6001600160a01b03166109e9610845565b6001600160a01b031614610a44576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600955565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b610a7c610c0e565b6001600160a01b0316610a8d610845565b6001600160a01b031614610ae8576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600755565b610af5610c0e565b6001600160a01b0316610b06610845565b6001600160a01b031614610b61576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116610ba65760405162461bcd60e51b81526004018080602001828103825260268152602001806118836026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b3390565b6001600160a01b038316610c575760405162461bcd60e51b81526004018080602001828103825260228152602001806118a96022913960400191505060405180910390fd5b6001600160a01b038216610cb2576040805162461bcd60e51b815260206004820181905260248201527f554e563a20617070726f766520746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b82828260055460001415610dbf576001600160a01b0383166000908152600b602052604090205460ff16610d8f576040805162461bcd60e51b815260206004820152601b60248201527f554e563a207472616e7366657273206172652064697361626c65640000000000604482015290519081900360640190fd5b6004546001600160a01b0383811691161415610dba57426005819055610db69060b46116dc565b6006555b6114f0565b426005541415610e16576040805162461bcd60e51b815260206004820152601c60248201527f554e563a206e6f207472616e73616374696f6e7320616c6c6f77656400000000604482015290519081900360640190fd5b42600554108015610e28575042600654115b1561142757600754811115610e6e5760405162461bcd60e51b81526004018080602001828103825260228152602001806118616022913960400191505060405180910390fd5b6008543a1115610ec5576040805162461bcd60e51b815260206004820152601a60248201527f554e563a206761732070726963652061626f7665206c696d6974000000000000604482015290519081900360640190fd5b6001600160a01b0383166000908152600a602052604090205460ff16158015610f0757506001600160a01b0382166000908152600a602052604090205460ff16155b15610ff0576001600160a01b0383166000908152600c602052604090205460ff16158015610f4e57506001600160a01b0382166000908152600c602052604090205460ff16155b8015610f6a5750326000908152600c602052604090205460ff16155b610fa55760405162461bcd60e51b815260040180806020018281038252602381526020018061199d6023913960400191505060405180910390fd5b6001600160a01b038381166000908152600c60205260408082208054600160ff1991821681179092559386168352818320805485168217905532835291208054909216179055611190565b6001600160a01b0382166000908152600a602052604090205460ff166110c2576001600160a01b0382166000908152600c602052604090205460ff161580156110495750326000908152600c602052604090205460ff16155b6110845760405162461bcd60e51b815260040180806020018281038252602381526020018061199d6023913960400191505060405180910390fd5b6001600160a01b0382166000908152600c60205260408082208054600160ff1991821681179092553284529190922080549091169091179055611190565b6001600160a01b0383166000908152600a602052604090205460ff16611190576001600160a01b0383166000908152600c602052604090205460ff1615801561111b5750326000908152600c602052604090205460ff16155b6111565760405162461bcd60e51b815260040180806020018281038252602381526020018061199d6023913960400191505060405180910390fd5b6001600160a01b0383166000908152600c60205260408082208054600160ff19918216811790925532845291909220805490911690911790555b6004546001600160a01b0384811691161415610dba576001600160a01b0382166000908152600a602052604090205460ff16806111dc5750336000908152600a602052604090205460ff165b80156111ee57506111ec3261173d565b155b61123f576040805162461bcd60e51b815260206004820181905260248201527f554e563a206f6e6c7920756e697377617020726f7574657220616c6c6f776564604482015290519081900360640190fd5b6000737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561128e57600080fd5b505afa1580156112a2573d6000803e3d6000fd5b505050506040513d60208110156112b857600080fd5b505160048054604080516370a0823160e01b81526001600160a01b0392831693810193909352519216916370a0823191602480820192602092909190829003018186803b15801561130857600080fd5b505afa15801561131c573d6000803e3d6000fd5b505050506040513d602081101561133257600080fd5b505160045490915060009061134f906001600160a01b03166106ce565b9050600061138a60095461137e6103e86113848661137e670de0b6b3a76400008a61174390919063ffffffff16565b9061179c565b90611743565b905060006113a161138861137e620d2f0085611743565b9050620d2f0081116113de576113c46113bd620d2f0083611803565b42906116dc565b6001600160a01b0387166000908152600d60205260409020555b60006113f061138861137e8886611743565b905085811161141d576114038682611803565b6001600160a01b0388166000908152600e60205260409020555b50505050506114f0565b6001600160a01b0383166000908152600a602052604090205460ff1615801561146857506001600160a01b0383166000908152600d60205260409020544211155b156114f0576001600160a01b038316600090815260026020908152604080832054600e9092529091205461149d9083906116dc565b11156114f0576040805162461bcd60e51b815260206004820152601360248201527f554e563a206c6f636b65642062616c616e636500000000000000000000000000604482015290519081900360640190fd5b6001600160a01b0386166115355760405162461bcd60e51b81526004018080602001828103825260238152602001806119336023913960400191505060405180910390fd5b6001600160a01b03851661157a5760405162461bcd60e51b81526004018080602001828103825260218152602001806118ec6021913960400191505060405180910390fd5b6115b784604051806060016040528060248152602001611956602491396001600160a01b0389166000908152600260205260409020549190611645565b6001600160a01b0380881660009081526002602052604080822093909355908716815220546115e690856116dc565b6001600160a01b0380871660008181526002602090815260409182902094909455805188815290519193928a16927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050505050565b600081848411156116d45760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611699578181015183820152602001611681565b50505050905090810190601f1680156116c65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015611736576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3b151590565b60008261175257506000610558565b8282028284828161175f57fe5b04146117365760405162461bcd60e51b81526004018080602001828103825260218152602001806118cb6021913960400191505060405180910390fd5b60008082116117f2576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816117fb57fe5b049392505050565b60008282111561185a576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b5090039056fe554e563a20616d6f756e742067726561746572207468616e206d6178206c696d69744f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373554e563a20617070726f76652066726f6d20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77554e563a207472616e7366657220746f20746865207a65726f2061646472657373554e563a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365554e563a207472616e736665722066726f6d20746865207a65726f2061646472657373554e563a207472616e7366657220616d6f756e7420657863656564732062616c616e6365554e563a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f554e563a206f6e6c79206f6e6520747820696e20726573747269637465642074696d65a2646970667358221220a746d3055ddfce790f266f8caa0c73f670cbc5bb74cc08aea368f0428acf496664736f6c634300060c003300000000000000000000000000000000000000000000000000000068c6171400000000000000000000000000000000000000000000002a5a058fc295ed000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101985760003560e01c806395d89b41116100e3578063a9059cbb1161008c578063dd62ed3e11610066578063dd62ed3e14610498578063f2f82712146104c6578063f2fde38b146104e357610198565b8063a9059cbb14610429578063b697f53114610455578063cf607eaa1461047b57610198565b8063a1d4958c116100bd578063a1d4958c146103cf578063a457c2d7146103d7578063a4beda631461040357610198565b806395d89b4114610399578063a0e47bf6146103a1578063a153e708146103a957610198565b806350993f3e116101455780637521b7c21161011f5780637521b7c21461035057806376771d4b1461036d5780638da5cb5b1461039157610198565b806350993f3e146102f457806370a0823114610322578063715018a61461034857610198565b806323b872dd1161017657806323b872dd14610274578063313ce567146102aa57806339509351146102c857610198565b806306fdde031461019d578063095ea7b31461021a57806318160ddd1461025a575b600080fd5b6101a5610509565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101df5781810151838201526020016101c7565b50505050905090810190601f16801561020c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102466004803603604081101561023057600080fd5b506001600160a01b038135169060200135610540565b604080519115158252519081900360200190f35b61026261055e565b60408051918252519081900360200190f35b6102466004803603606081101561028a57600080fd5b506001600160a01b03813581169160208101359091169060400135610564565b6102b26105eb565b6040805160ff9092168252519081900360200190f35b610246600480360360408110156102de57600080fd5b506001600160a01b0381351690602001356105f0565b6103206004803603604081101561030a57600080fd5b506001600160a01b03813516906020013561063e565b005b6102626004803603602081101561033857600080fd5b50356001600160a01b03166106ce565b6103206106e9565b6103206004803603602081101561036657600080fd5b50356107b4565b61037561082d565b604080516001600160a01b039092168252519081900360200190f35b610375610845565b6101a5610854565b610375610871565b610262600480360360208110156103bf57600080fd5b50356001600160a01b0316610889565b61037561089b565b610246600480360360408110156103ed57600080fd5b506001600160a01b0381351690602001356108aa565b6102626004803603602081101561041957600080fd5b50356001600160a01b0316610912565b6102466004803603604081101561043f57600080fd5b506001600160a01b038135169060200135610924565b6103206004803603602081101561046b57600080fd5b50356001600160a01b0316610938565b6103206004803603602081101561049157600080fd5b50356109d0565b610262600480360360408110156104ae57600080fd5b506001600160a01b0381358116916020013516610a49565b610320600480360360208110156104dc57600080fd5b5035610a74565b610320600480360360208110156104f957600080fd5b50356001600160a01b0316610aed565b60408051808201909152600681527f556e766573740000000000000000000000000000000000000000000000000000602082015290565b600061055461054d610c0e565b8484610c12565b5060015b92915050565b60015490565b6000610571848484610d14565b6105e18461057d610c0e565b6105dc8560405180606001604052806026815260200161190d602691396001600160a01b038a166000908152600360205260408120906105bb610c0e565b6001600160a01b031681526020810191909152604001600020549190611645565b610c12565b5060019392505050565b601290565b60006105546105fd610c0e565b846105dc856003600061060e610c0e565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906116dc565b610646610c0e565b6001600160a01b0316610657610845565b6001600160a01b0316146106b2576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b039091166000908152600d6020526040902055565b6001600160a01b031660009081526002602052604090205490565b6106f1610c0e565b6001600160a01b0316610702610845565b6001600160a01b03161461075d576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36000805473ffffffffffffffffffffffffffffffffffffffff19169055565b6107bc610c0e565b6001600160a01b03166107cd610845565b6001600160a01b031614610828576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600855565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b6000546001600160a01b031690565b6040805180820190915260038152622aa72b60e91b602082015290565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b600e6020526000908152604090205481565b6004546001600160a01b031681565b60006105546108b7610c0e565b846105dc8560405180606001604052806023815260200161197a60239139600360006108e1610c0e565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611645565b600d6020526000908152604090205481565b6000610554610931610c0e565b8484610d14565b610940610c0e565b6001600160a01b0316610951610845565b6001600160a01b0316146109ac576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03166000908152600b60205260409020805460ff19166001179055565b6109d8610c0e565b6001600160a01b03166109e9610845565b6001600160a01b031614610a44576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600955565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b610a7c610c0e565b6001600160a01b0316610a8d610845565b6001600160a01b031614610ae8576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600755565b610af5610c0e565b6001600160a01b0316610b06610845565b6001600160a01b031614610b61576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116610ba65760405162461bcd60e51b81526004018080602001828103825260268152602001806118836026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b3390565b6001600160a01b038316610c575760405162461bcd60e51b81526004018080602001828103825260228152602001806118a96022913960400191505060405180910390fd5b6001600160a01b038216610cb2576040805162461bcd60e51b815260206004820181905260248201527f554e563a20617070726f766520746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b82828260055460001415610dbf576001600160a01b0383166000908152600b602052604090205460ff16610d8f576040805162461bcd60e51b815260206004820152601b60248201527f554e563a207472616e7366657273206172652064697361626c65640000000000604482015290519081900360640190fd5b6004546001600160a01b0383811691161415610dba57426005819055610db69060b46116dc565b6006555b6114f0565b426005541415610e16576040805162461bcd60e51b815260206004820152601c60248201527f554e563a206e6f207472616e73616374696f6e7320616c6c6f77656400000000604482015290519081900360640190fd5b42600554108015610e28575042600654115b1561142757600754811115610e6e5760405162461bcd60e51b81526004018080602001828103825260228152602001806118616022913960400191505060405180910390fd5b6008543a1115610ec5576040805162461bcd60e51b815260206004820152601a60248201527f554e563a206761732070726963652061626f7665206c696d6974000000000000604482015290519081900360640190fd5b6001600160a01b0383166000908152600a602052604090205460ff16158015610f0757506001600160a01b0382166000908152600a602052604090205460ff16155b15610ff0576001600160a01b0383166000908152600c602052604090205460ff16158015610f4e57506001600160a01b0382166000908152600c602052604090205460ff16155b8015610f6a5750326000908152600c602052604090205460ff16155b610fa55760405162461bcd60e51b815260040180806020018281038252602381526020018061199d6023913960400191505060405180910390fd5b6001600160a01b038381166000908152600c60205260408082208054600160ff1991821681179092559386168352818320805485168217905532835291208054909216179055611190565b6001600160a01b0382166000908152600a602052604090205460ff166110c2576001600160a01b0382166000908152600c602052604090205460ff161580156110495750326000908152600c602052604090205460ff16155b6110845760405162461bcd60e51b815260040180806020018281038252602381526020018061199d6023913960400191505060405180910390fd5b6001600160a01b0382166000908152600c60205260408082208054600160ff1991821681179092553284529190922080549091169091179055611190565b6001600160a01b0383166000908152600a602052604090205460ff16611190576001600160a01b0383166000908152600c602052604090205460ff1615801561111b5750326000908152600c602052604090205460ff16155b6111565760405162461bcd60e51b815260040180806020018281038252602381526020018061199d6023913960400191505060405180910390fd5b6001600160a01b0383166000908152600c60205260408082208054600160ff19918216811790925532845291909220805490911690911790555b6004546001600160a01b0384811691161415610dba576001600160a01b0382166000908152600a602052604090205460ff16806111dc5750336000908152600a602052604090205460ff165b80156111ee57506111ec3261173d565b155b61123f576040805162461bcd60e51b815260206004820181905260248201527f554e563a206f6e6c7920756e697377617020726f7574657220616c6c6f776564604482015290519081900360640190fd5b6000737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561128e57600080fd5b505afa1580156112a2573d6000803e3d6000fd5b505050506040513d60208110156112b857600080fd5b505160048054604080516370a0823160e01b81526001600160a01b0392831693810193909352519216916370a0823191602480820192602092909190829003018186803b15801561130857600080fd5b505afa15801561131c573d6000803e3d6000fd5b505050506040513d602081101561133257600080fd5b505160045490915060009061134f906001600160a01b03166106ce565b9050600061138a60095461137e6103e86113848661137e670de0b6b3a76400008a61174390919063ffffffff16565b9061179c565b90611743565b905060006113a161138861137e620d2f0085611743565b9050620d2f0081116113de576113c46113bd620d2f0083611803565b42906116dc565b6001600160a01b0387166000908152600d60205260409020555b60006113f061138861137e8886611743565b905085811161141d576114038682611803565b6001600160a01b0388166000908152600e60205260409020555b50505050506114f0565b6001600160a01b0383166000908152600a602052604090205460ff1615801561146857506001600160a01b0383166000908152600d60205260409020544211155b156114f0576001600160a01b038316600090815260026020908152604080832054600e9092529091205461149d9083906116dc565b11156114f0576040805162461bcd60e51b815260206004820152601360248201527f554e563a206c6f636b65642062616c616e636500000000000000000000000000604482015290519081900360640190fd5b6001600160a01b0386166115355760405162461bcd60e51b81526004018080602001828103825260238152602001806119336023913960400191505060405180910390fd5b6001600160a01b03851661157a5760405162461bcd60e51b81526004018080602001828103825260218152602001806118ec6021913960400191505060405180910390fd5b6115b784604051806060016040528060248152602001611956602491396001600160a01b0389166000908152600260205260409020549190611645565b6001600160a01b0380881660009081526002602052604080822093909355908716815220546115e690856116dc565b6001600160a01b0380871660008181526002602090815260409182902094909455805188815290519193928a16927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050505050565b600081848411156116d45760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611699578181015183820152602001611681565b50505050905090810190601f1680156116c65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015611736576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3b151590565b60008261175257506000610558565b8282028284828161175f57fe5b04146117365760405162461bcd60e51b81526004018080602001828103825260218152602001806118cb6021913960400191505060405180910390fd5b60008082116117f2576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816117fb57fe5b049392505050565b60008282111561185a576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b5090039056fe554e563a20616d6f756e742067726561746572207468616e206d6178206c696d69744f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373554e563a20617070726f76652066726f6d20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77554e563a207472616e7366657220746f20746865207a65726f2061646472657373554e563a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365554e563a207472616e736665722066726f6d20746865207a65726f2061646472657373554e563a207472616e7366657220616d6f756e7420657863656564732062616c616e6365554e563a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f554e563a206f6e6c79206f6e6520747820696e20726573747269637465642074696d65a2646970667358221220a746d3055ddfce790f266f8caa0c73f670cbc5bb74cc08aea368f0428acf496664736f6c634300060c0033

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

00000000000000000000000000000000000000000000000000000068c6171400000000000000000000000000000000000000000000002a5a058fc295ed000000

-----Decoded View---------------
Arg [0] : _gas (uint256): 450000000000
Arg [1] : _amount (uint256): 200000000000000000000000

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000068c6171400
Arg [1] : 000000000000000000000000000000000000000000002a5a058fc295ed000000


Deployed Bytecode Sourcemap

28677:8460:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30343:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31181:161;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31181:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;30620:100;;;:::i;:::-;;;;;;;;;;;;;;;;31350:395;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31350:395:0;;;;;;;;;;;;;;;;;:::i;30529:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31753:210;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31753:210:0;;;;;;;;:::i;33658:128::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;33658:128:0;;;;;;;;:::i;:::-;;30728:119;;;;;;;;;;;;;;;;-1:-1:-1;30728:119:0;-1:-1:-1;;;;;30728:119:0;;:::i;21531:148::-;;;:::i;33333:103::-;;;;;;;;;;;;;;;;-1:-1:-1;33333:103:0;;:::i;29314:108::-;;;:::i;:::-;;;;-1:-1:-1;;;;;29314:108:0;;;;;;;;;;;;;;20880:87;;;:::i;30434:::-;;;:::i;29198:109::-;;;:::i;29860:47::-;;;;;;;;;;;;;;;;-1:-1:-1;29860:47:0;-1:-1:-1;;;;;29860:47:0;;:::i;29429:25::-;;;:::i;31971:309::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31971:309:0;;;;;;;;:::i;29810:43::-;;;;;;;;;;;;;;;;-1:-1:-1;29810:43:0;-1:-1:-1;;;;;29810:43:0;;:::i;30855:167::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30855:167:0;;;;;;;;:::i;33444:101::-;;;;;;;;;;;;;;;;-1:-1:-1;33444:101:0;-1:-1:-1;;;;;33444:101:0;;:::i;33553:97::-;;;;;;;;;;;;;;;;-1:-1:-1;33553:97:0;;:::i;31030:143::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31030:143:0;;;;;;;;;;:::i;33211:114::-;;;;;;;;;;;;;;;;-1:-1:-1;33211:114:0;;:::i;21834:244::-;;;;;;;;;;;;;;;;-1:-1:-1;21834:244:0;-1:-1:-1;;;;;21834:244:0;;:::i;30343:83::-;30413:5;;;;;;;;;;;;;;;;;30343:83;:::o;31181:161::-;31256:4;31273:39;31282:12;:10;:12::i;:::-;31296:7;31305:6;31273:8;:39::i;:::-;-1:-1:-1;31330:4:0;31181:161;;;;;:::o;30620:100::-;30700:12;;30620:100;:::o;31350:395::-;31482:4;31499:36;31509:6;31517:9;31528:6;31499:9;:36::i;:::-;31546:169;31569:6;31590:12;:10;:12::i;:::-;31617:87;31655:6;31617:87;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31617:19:0;;;;;;:11;:19;;;;;;31637:12;:10;:12::i;:::-;-1:-1:-1;;;;;31617:33:0;;;;;;;;;;;;-1:-1:-1;31617:33:0;;;:87;:37;:87::i;:::-;31546:8;:169::i;:::-;-1:-1:-1;31733:4:0;31350:395;;;;;:::o;30529:83::-;28920:2;30529:83;:::o;31753:210::-;31833:4;31850:83;31859:12;:10;:12::i;:::-;31873:7;31882:50;31921:10;31882:11;:25;31894:12;:10;:12::i;:::-;-1:-1:-1;;;;;31882:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;31882:25:0;;;:34;;;;;;;;;;;:38;:50::i;33658:128::-;21111:12;:10;:12::i;:::-;-1:-1:-1;;;;;21100:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;21100:23:0;;21092:68;;;;;-1:-1:-1;;;21092:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33745:17:0;;::::1;;::::0;;;:8:::1;:17;::::0;;;;:33;33658:128::o;30728:119::-;-1:-1:-1;;;;;30821:18:0;30794:7;30821:18;;;:9;:18;;;;;;;30728:119::o;21531:148::-;21111:12;:10;:12::i;:::-;-1:-1:-1;;;;;21100:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;21100:23:0;;21092:68;;;;;-1:-1:-1;;;21092:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21638:1:::1;21622:6:::0;;21601:40:::1;::::0;-1:-1:-1;;;;;21622:6:0;;::::1;::::0;21601:40:::1;::::0;21638:1;;21601:40:::1;21669:1;21652:19:::0;;-1:-1:-1;;21652:19:0::1;::::0;;21531:148::o;33333:103::-;21111:12;:10;:12::i;:::-;-1:-1:-1;;;;;21100:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;21100:23:0;;21092:68;;;;;-1:-1:-1;;;21092:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33405:15:::1;:23:::0;33333:103::o;29314:108::-;29379:42;29314:108;:::o;20880:87::-;20926:7;20953:6;-1:-1:-1;;;;;20953:6:0;20880:87;:::o;30434:::-;30506:7;;;;;;;;;;;;-1:-1:-1;;;30506:7:0;;;;30434:87;:::o;29198:109::-;29264:42;29198:109;:::o;29860:47::-;;;;;;;;;;;;;:::o;29429:25::-;;;-1:-1:-1;;;;;29429:25:0;;:::o;31971:309::-;32056:4;32073:177;32096:12;:10;:12::i;:::-;32123:7;32145:94;32184:15;32145:94;;;;;;;;;;;;;;;;;:11;:25;32157:12;:10;:12::i;:::-;-1:-1:-1;;;;;32145:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;32145:25:0;;;:34;;;;;;;;;;;:94;:38;:94::i;29810:43::-;;;;;;;;;;;;;:::o;30855:167::-;30933:4;30950:42;30960:12;:10;:12::i;:::-;30974:9;30985:6;30950:9;:42::i;33444:101::-;21111:12;:10;:12::i;:::-;-1:-1:-1;;;;;21100:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;21100:23:0;;21092:68;;;;;-1:-1:-1;;;21092:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33510:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;33510:27:0::1;33533:4;33510:27;::::0;;33444:101::o;33553:97::-;21111:12;:10;:12::i;:::-;-1:-1:-1;;;;;21100:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;21100:23:0;;21092:68;;;;;-1:-1:-1;;;21092:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33622:12:::1;:20:::0;33553:97::o;31030:143::-;-1:-1:-1;;;;;31138:18:0;;;31111:7;31138:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;31030:143::o;33211:114::-;21111:12;:10;:12::i;:::-;-1:-1:-1;;;;;21100:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;21100:23:0;;21092:68;;;;;-1:-1:-1;;;21092:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33287:21:::1;:30:::0;33211:114::o;21834:244::-;21111:12;:10;:12::i;:::-;-1:-1:-1;;;;;21100:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;21100:23:0;;21092:68;;;;;-1:-1:-1;;;21092:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21923:22:0;::::1;21915:73;;;;-1:-1:-1::0;;;21915:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22025:6;::::0;;22004:38:::1;::::0;-1:-1:-1;;;;;22004:38:0;;::::1;::::0;22025:6;::::1;::::0;22004:38:::1;::::0;::::1;22053:6;:17:::0;;-1:-1:-1;;22053:17:0::1;-1:-1:-1::0;;;;;22053:17:0;;;::::1;::::0;;;::::1;::::0;;21834:244::o;667:106::-;755:10;667:106;:::o;32836:367::-;-1:-1:-1;;;;;32963:19:0;;32955:66;;;;-1:-1:-1;;;32955:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33040:21:0;;33032:66;;;;;-1:-1:-1;;;33032:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33111:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;33163:32;;;;;;;;;;;;;;;;;32836:367;;;:::o;32288:540::-;32415:6;32423:9;32434:6;33918:12;;33934:1;33918:17;33914:3201;;;-1:-1:-1;;;;;33960:19:0;;;;;;:11;:19;;;;;;;;33952:59;;;;;-1:-1:-1;;;33952:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;34043:10;;-1:-1:-1;;;;;34030:23:0;;;34043:10;;34030:23;34026:142;;;34089:3;34074:12;:18;;;34134;;34142:9;34134:7;:18::i;:::-;34111:20;:41;34026:142;33914:3201;;;34205:3;34189:12;;:19;34185:2930;;;34225:38;;;-1:-1:-1;;;34225:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;34185:2930;34300:3;34285:12;;:18;:48;;;;;34330:3;34307:20;;:26;34285:48;34281:2834;;;34368:21;;34358:6;:31;;34350:78;;;;-1:-1:-1;;;34350:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34466:15;;34451:11;:30;;34443:69;;;;;-1:-1:-1;;;34443:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34532:22:0;;;;;;:14;:22;;;;;;;;34531:23;:53;;;;-1:-1:-1;;;;;;34559:25:0;;;;;;:14;:25;;;;;;;;34558:26;34531:53;34527:887;;;-1:-1:-1;;;;;34636:15:0;;;;;;:7;:15;;;;;;;;34635:16;:39;;;;-1:-1:-1;;;;;;34656:18:0;;;;;;:7;:18;;;;;;;;34655:19;34635:39;:62;;;;-1:-1:-1;34687:9:0;34679:18;;;;:7;:18;;;;;;;;34678:19;34635:62;34605:171;;;;-1:-1:-1;;;34605:171:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34795:15:0;;;;;;;:7;:15;;;;;;:22;;34813:4;-1:-1:-1;;34795:22:0;;;;;;;;34836:18;;;;;;;;:25;;;;;;;;34888:9;34880:18;;;;:25;;;;;;;;34527:887;;;-1:-1:-1;;;;;34932:25:0;;;;;;:14;:25;;;;;;;;34927:487;;-1:-1:-1;;;;;34987:18:0;;;;;;:7;:18;;;;;;;;34986:19;:42;;;;-1:-1:-1;35018:9:0;35010:18;;;;:7;:18;;;;;;;;35009:19;34986:42;34978:90;;;;-1:-1:-1;;;34978:90:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35087:18:0;;;;;;:7;:18;;;;;;:25;;35108:4;-1:-1:-1;;35087:25:0;;;;;;;;35139:9;35131:18;;;;;;:25;;;;;;;;;;34927:487;;;-1:-1:-1;;;;;35183:22:0;;;;;;:14;:22;;;;;;;;35178:236;;-1:-1:-1;;;;;35235:15:0;;;;;;:7;:15;;;;;;;;35234:16;:39;;;;-1:-1:-1;35263:9:0;35255:18;;;;:7;:18;;;;;;;;35254:19;35234:39;35226:87;;;;-1:-1:-1;;;35226:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35332:15:0;;;;;;:7;:15;;;;;;:22;;35350:4;-1:-1:-1;;35332:22:0;;;;;;;;35381:9;35373:18;;;;;;:25;;;;;;;;;;35178:236;35933:10;;-1:-1:-1;;;;;35923:20:0;;;35933:10;;35923:20;35919:977;;;-1:-1:-1;;;;;35995:25:0;;;;;;:14;:25;;;;;;;;;:55;;-1:-1:-1;36039:10:0;36024:26;;;;:14;:26;;;;;;;;35995:55;35994:91;;;;;36056:29;36075:9;36056:18;:29::i;:::-;36055:30;35994:91;35964:197;;;;;-1:-1:-1;;;35964:197:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36180:14;29264:42;-1:-1:-1;;;;;36212:14:0;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36212:16:0;36241:10;;;36197:55;;;-1:-1:-1;;;36197:55:0;;-1:-1:-1;;;;;36241:10:0;;;36197:55;;;;;;;;:43;;;;;:55;;;;;36212:16;;36197:55;;;;;;;;:43;:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36197:55:0;36300:10;;36197:55;;-1:-1:-1;36271:16:0;;36290:21;;-1:-1:-1;;;;;36300:10:0;36290:9;:21::i;:::-;36271:40;;36330:24;36357:61;36405:12;;36357:43;36394:5;36357:32;36380:8;36357:18;36368:6;36357;:10;;:18;;;;:::i;:::-;:22;;:32::i;:::-;:36;;:43::i;:61::-;36330:88;-1:-1:-1;36437:17:0;36457:51;28974:9;36457:30;29026:7;36330:88;36457:12;:30::i;:51::-;36437:71;;29026:7;36531:9;:21;36527:124;;36599:32;36607:23;29026:7;36620:9;36607:12;:23::i;:::-;36599:3;;:7;:32::i;:::-;-1:-1:-1;;;;;36577:19:0;;;;;;:8;:19;;;;;:54;36527:124;36669:20;36692:49;28974:9;36692:28;:6;36703:16;36692:10;:28::i;:49::-;36669:72;;36780:6;36764:12;:22;36760:121;;36837:24;:6;36848:12;36837:10;:24::i;:::-;-1:-1:-1;;;;;36811:23:0;;;;;;:12;:23;;;;;:50;36760:121;35919:977;;;;;34281:2834;;;-1:-1:-1;;;;;36933:22:0;;;;;;:14;:22;;;;;;;;36932:23;:50;;;;-1:-1:-1;;;;;;36959:16:0;;;;;;:8;:16;;;;;;36979:3;-1:-1:-1;36959:23:0;36932:50;36928:176;;;-1:-1:-1;;;;;37047:17:0;;;;;;:9;:17;;;;;;;;;37022:12;:20;;;;;;;37011:32;;:6;;:10;:32::i;:::-;:53;;37003:85;;;;;-1:-1:-1;;;37003:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32461:20:0;::::1;32453:68;;;;-1:-1:-1::0;;;32453:68:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;32540:23:0;::::1;32532:69;;;;-1:-1:-1::0;;;32532:69:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32634;32656:6;32634:69;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;32634:17:0;::::1;;::::0;;;:9:::1;:17;::::0;;;;;;:69;:21:::1;:69::i;:::-;-1:-1:-1::0;;;;;32614:17:0;;::::1;;::::0;;;:9:::1;:17;::::0;;;;;:89;;;;32737:20;;::::1;::::0;;;;:32:::1;::::0;32762:6;32737:24:::1;:32::i;:::-;-1:-1:-1::0;;;;;32714:20:0;;::::1;;::::0;;;:9:::1;:20;::::0;;;;;;;;:55;;;;32785:35;;;;;;;32714:20;;32785:35;;::::1;::::0;::::1;::::0;;;;;;;::::1;32288:540:::0;;;;;;:::o;9569:200::-;9689:7;9725:12;9717:6;;;;9709:29;;;;-1:-1:-1;;;9709:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;9756:5:0;;;9569:200::o;6742:179::-;6800:7;6832:5;;;6856:6;;;;6848:46;;;;;-1:-1:-1;;;6848:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;6912:1;6742:179;-1:-1:-1;;;6742:179:0:o;12281:444::-;12661:20;12709:8;;;12281:444::o;7621:220::-;7679:7;7703:6;7699:20;;-1:-1:-1;7718:1:0;7711:8;;7699:20;7742:5;;;7746:1;7742;:5;:1;7766:5;;;;;:10;7758:56;;;;-1:-1:-1;;;7758:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8319:153;8377:7;8409:1;8405;:5;8397:44;;;;;-1:-1:-1;;;8397:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;8463:1;8459;:5;;;;;;;8319:153;-1:-1:-1;;;8319:153:0:o;7204:158::-;7262:7;7295:1;7290;:6;;7282:49;;;;;-1:-1:-1;;;7282:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7349:5:0;;;7204:158::o

Swarm Source

ipfs://a746d3055ddfce790f266f8caa0c73f670cbc5bb74cc08aea368f0428acf4966
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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