ETH Price: $3,279.69 (-1.52%)
Gas: 4.52 Gwei

Token

ETrading ESwap (ESWAP)
 

Overview

Max Total Supply

39,938.782770466036097413 ESWAP

Holders

15

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
651.63743719515634651 ESWAP

Value
$0.00
0xa680820b3f0bbc830d23859be54a42927c0e699d
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Chaiselongue

Compiler Version
v0.6.6+commit.6c089d02

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.2;

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



/*
 * @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/math/SafeMath.sol



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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

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


/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies in extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

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

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

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

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

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

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

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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







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

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public 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;
    }
}







contract Chaiselongue is ERC20("ETrading ESwap", "ESWAP"), Ownable {
    using SafeMath for uint256;
    IERC20 public earn;

    // whether Chaiselongue is opened or not
    bool public isOpen = false;
    bool public isAllow = true;
    // amount of blocks between each unlock
    uint256 public blocksBetween;
    // next period that Chaiselongue will remain opened
    uint256[2] public openPeriod;    

    event Opened(address indexed who);
    event Closed(address indexed who);
    event Joined(address indexed who, uint256 amount);
    event Left(address indexed who, uint256 amount);

    constructor(uint256 _blocksBetween, uint256[2] memory _openPeriod, IERC20 _earn) public {
      blocksBetween = _blocksBetween;
      openPeriod = _openPeriod;
      earn = _earn;
    }

    modifier validateChaiselongue() {
      require(isOpen, "chaiselongue closed");
      _;
    }

    modifier validateAllow() {
      require(isAllow, "not allowed");
      _;
    }

    function pendingEarn() external view returns (uint256) {
      uint256 totalShares = totalSupply();
      if (totalShares == 0) {
        return 0;
      }

      uint256 eswapShare = balanceOf(msg.sender);
      uint256 what = eswapShare.mul(earn.balanceOf(address(this))).div(totalShares);

      return what;
    }

    function openChaiselongue() external validateAllow {
      require(block.number > openPeriod[0] && block.number < openPeriod[1], "Not ready to open");
      require(isOpen == false, "Already opened");
      isOpen = true;

      emit Opened(msg.sender);
    }

    function closeChaiselongue() external validateAllow {
      require(block.number > openPeriod[1], "Still in open period");
      require( isOpen == true, "Already closed");
      // adds amount of blocks until next opening (defined by governance)
      openPeriod[0] = openPeriod[1] + blocksBetween;
      // chaiselongue remains open for roughly 1 day
      openPeriod[1] = openPeriod[0] + 6666;
      isOpen = false;

      emit Closed(msg.sender);
    }

    // allows governance to start or stop chaiselongue
    function allow() public onlyOwner {
      require( isAllow == false, "Already allowed");
      isAllow = true;
    }
    function forbid() public onlyOwner {
      require( isAllow == true, "Already forbidden");
      isAllow = false;
    }
    function startChaiselongue() public onlyOwner {
      require( isOpen == false, "Already opened");
      isOpen = true;
    }
    function stopChaiselongue() public onlyOwner {
      require( isOpen == true, "Already closed");
      isOpen = false;
    }

    // allows governance to update openPeriod
    function setOpenPeriod(uint256 _newStart, uint256 _newEnd) public onlyOwner {
      openPeriod[0] = _newStart;
      openPeriod[1] = _newEnd;
    }

    // allows governance to update blocksBetween
    function setBlocksBetween(uint256 _newValue) public onlyOwner {
      blocksBetween = _newValue;
    }

    // Opens the Chaiselongue and collects EARN
    function enter(uint256 _amount) public validateChaiselongue {
        uint256 totalEarn = earn.balanceOf(address(this));
        uint256 totalShares = totalSupply();
        if (totalShares == 0 || totalEarn == 0) {
            _mint(msg.sender, _amount.div(1000));
        } else {
            uint256 what = _amount.mul(totalShares).div(totalEarn);
            _mint(msg.sender, what);
        }
        earn.transferFrom(msg.sender, address(this), _amount);

        emit Joined(msg.sender, _amount);
    }

    // Leave the longue. Claim back your EARNs.
    function leave(uint256 _share) public validateChaiselongue {
        uint256 totalShares = totalSupply();
        uint256 what = _share.mul(earn.balanceOf(address(this))).div(totalShares);
        _burn(msg.sender, _share);
        earn.transfer(msg.sender, what);

        emit Left(msg.sender, what);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_blocksBetween","type":"uint256"},{"internalType":"uint256[2]","name":"_openPeriod","type":"uint256[2]"},{"internalType":"contract IERC20","name":"_earn","type":"address"}],"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":"who","type":"address"}],"name":"Closed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"who","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Joined","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"who","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Left","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"who","type":"address"}],"name":"Opened","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"allow","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":"blocksBetween","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"closeChaiselongue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"earn","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"enter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"forbid","outputs":[],"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":"isAllow","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_share","type":"uint256"}],"name":"leave","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openChaiselongue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"openPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingEarn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newValue","type":"uint256"}],"name":"setBlocksBetween","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newStart","type":"uint256"},{"internalType":"uint256","name":"_newEnd","type":"uint256"}],"name":"setOpenPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startChaiselongue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopChaiselongue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600660146101000a81548160ff0219169083151502179055506001600660156101000a81548160ff0219169083151502179055503480156200004757600080fd5b506040516200357338038062003573833981810160405260808110156200006d57600080fd5b8101908080519060200190929190919082604001805190602001909291905050506040518060400160405280600e81526020017f4554726164696e672045537761700000000000000000000000000000000000008152506040518060400160405280600581526020017f455357415000000000000000000000000000000000000000000000000000000081525081600390805190602001906200011292919062000268565b5080600490805190602001906200012b92919062000268565b506012600560006101000a81548160ff021916908360ff160217905550505060006200015c6200026060201b60201c565b905080600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3508260078190555081600890600262000215929190620002ef565b5080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050506200035c565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002ab57805160ff1916838001178555620002dc565b82800160010185558215620002dc579182015b82811115620002db578251825591602001919060010190620002be565b5b509050620002eb919062000334565b5090565b826002810192821562000321579160200282015b828111156200032057825182559160200191906001019062000303565b5b50905062000330919062000334565b5090565b6200035991905b80821115620003555760008160009055506001016200033b565b5090565b90565b613207806200036c6000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c8063715018a611610104578063b1b3d3f6116100a2578063dd62ed3e11610071578063dd62ed3e14610781578063f2fde38b146107f9578063f3a491e41461083d578063f71a5d8814610875576101da565b8063b1b3d3f614610705578063be1edc0f1461070f578063d389800f1461072d578063dbca97f814610777576101da565b80639befd5a4116100de5780639befd5a414610601578063a457c2d71461060b578063a59f3e0c14610671578063a9059cbb1461069f576101da565b8063715018a61461052a5780638da5cb5b1461053457806395d89b411461057e576101da565b8063313ce5671161017c5780633f2373a41161014b5780633f2373a41461045457806347535d7b1461048257806367dfd4c9146104a457806370a08231146104d2576101da565b8063313ce567146103b657806339509351146103da5780633d859629146104405780633dcb64851461044a576101da565b806323b872dd116101b857806323b872dd146102e65780632d91317b1461036c5780632e8d7fb51461038e578063302a41ab146103ac576101da565b806306fdde03146101df578063095ea7b31461026257806318160ddd146102c8575b600080fd5b6101e76108b7565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561022757808201518184015260208101905061020c565b50505050905090810190601f1680156102545780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102ae6004803603604081101561027857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610959565b604051808215151515815260200191505060405180910390f35b6102d0610977565b6040518082815260200191505060405180910390f35b610352600480360360608110156102fc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610981565b604051808215151515815260200191505060405180910390f35b610374610a5a565b604051808215151515815260200191505060405180910390f35b610396610a6d565b6040518082815260200191505060405180910390f35b6103b4610a73565b005b6103be610c7c565b604051808260ff1660ff16815260200191505060405180910390f35b610426600480360360408110156103f057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c93565b604051808215151515815260200191505060405180910390f35b610448610d46565b005b610452610eb6565b005b6104806004803603602081101561046a57600080fd5b8101908080359060200190929190505050611026565b005b61048a6110fa565b604051808215151515815260200191505060405180910390f35b6104d0600480360360208110156104ba57600080fd5b810190808035906020019092919050505061110d565b005b610514600480360360208110156104e857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113df565b6040518082815260200191505060405180910390f35b610532611427565b005b61053c6115b2565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105866115dc565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156105c65780820151818401526020810190506105ab565b50505050905090810190601f1680156105f35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61060961167e565b005b6106576004803603604081101561062157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506117ee565b604051808215151515815260200191505060405180910390f35b61069d6004803603602081101561068757600080fd5b81019080803590602001909291905050506118bb565b005b6106eb600480360360408110156106b557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611bff565b604051808215151515815260200191505060405180910390f35b61070d611c1d565b005b610717611d8d565b6040518082815260200191505060405180910390f35b610735611ec6565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61077f611eec565b005b6107e36004803603604081101561079757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612129565b6040518082815260200191505060405180910390f35b61083b6004803603602081101561080f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506121b0565b005b6108736004803603604081101561085357600080fd5b8101908080359060200190929190803590602001909291905050506123c0565b005b6108a16004803603602081101561088b57600080fd5b81019080803590602001909291905050506124b6565b6040518082815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561094f5780601f106109245761010080835404028352916020019161094f565b820191906000526020600020905b81548152906001019060200180831161093257829003601f168201915b5050505050905090565b600061096d6109666124ce565b84846124d6565b6001905092915050565b6000600254905090565b600061098e8484846126cd565b610a4f8461099a6124ce565b610a4a8560405180606001604052806028815260200161311b60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610a006124ce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461298e9092919063ffffffff16565b6124d6565b600190509392505050565b600660159054906101000a900460ff1681565b60075481565b600660159054906101000a900460ff16610af5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f6e6f7420616c6c6f77656400000000000000000000000000000000000000000081525060200191505060405180910390fd5b6008600060028110610b0357fe5b015443118015610b2157506008600160028110610b1c57fe5b015443105b610b93576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4e6f7420726561647920746f206f70656e00000000000000000000000000000081525060200191505060405180910390fd5b60001515600660149054906101000a900460ff16151514610c1c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f416c7265616479206f70656e656400000000000000000000000000000000000081525060200191505060405180910390fd5b6001600660146101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff167f0c05c795d374e6591ce49eb802df9a84a8b53459fad4fa03ac3085ca30afb75e60405160405180910390a2565b6000600560009054906101000a900460ff16905090565b6000610d3c610ca06124ce565b84610d378560016000610cb16124ce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a4e90919063ffffffff16565b6124d6565b6001905092915050565b610d4e6124ce565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e10576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60011515600660159054906101000a900460ff16151514610e99576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f416c726561647920666f7262696464656e00000000000000000000000000000081525060200191505060405180910390fd5b6000600660156101000a81548160ff021916908315150217905550565b610ebe6124ce565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f80576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60001515600660149054906101000a900460ff16151514611009576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f416c7265616479206f70656e656400000000000000000000000000000000000081525060200191505060405180910390fd5b6001600660146101000a81548160ff021916908315150217905550565b61102e6124ce565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060078190555050565b600660149054906101000a900460ff1681565b600660149054906101000a900460ff1661118f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f6368616973656c6f6e67756520636c6f7365640000000000000000000000000081525060200191505060405180910390fd5b6000611199610977565b9050600061129b8261128d600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561124357600080fd5b505afa158015611257573d6000803e3d6000fd5b505050506040513d602081101561126d57600080fd5b810190808051906020019092919050505086612ad690919063ffffffff16565b612b5c90919063ffffffff16565b90506112a73384612ba6565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561135057600080fd5b505af1158015611364573d6000803e3d6000fd5b505050506040513d602081101561137a57600080fd5b8101908080519060200190929190505050503373ffffffffffffffffffffffffffffffffffffffff167faf65ecdc8a0d3ea90c8344c89e7001864fddf59dfdf41da2994463fe99049a59826040518082815260200191505060405180910390a2505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61142f6124ce565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116745780601f1061164957610100808354040283529160200191611674565b820191906000526020600020905b81548152906001019060200180831161165757829003601f168201915b5050505050905090565b6116866124ce565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611748576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60011515600660149054906101000a900460ff161515146117d1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f416c726561647920636c6f73656400000000000000000000000000000000000081525060200191505060405180910390fd5b6000600660146101000a81548160ff021916908315150217905550565b60006118b16117fb6124ce565b846118ac856040518060600160405280602581526020016131ad60259139600160006118256124ce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461298e9092919063ffffffff16565b6124d6565b6001905092915050565b600660149054906101000a900460ff1661193d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f6368616973656c6f6e67756520636c6f7365640000000000000000000000000081525060200191505060405180910390fd5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156119de57600080fd5b505afa1580156119f2573d6000803e3d6000fd5b505050506040513d6020811015611a0857600080fd5b810190808051906020019092919050505090506000611a25610977565b90506000811480611a365750600082145b15611a5e57611a5933611a546103e886612b5c90919063ffffffff16565b612d6a565b611a93565b6000611a8583611a778487612ad690919063ffffffff16565b612b5c90919063ffffffff16565b9050611a913382612d6a565b505b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330866040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b158015611b7057600080fd5b505af1158015611b84573d6000803e3d6000fd5b505050506040513d6020811015611b9a57600080fd5b8101908080519060200190929190505050503373ffffffffffffffffffffffffffffffffffffffff167f49f8fa5eee2e3f21251c2e968640dcaef35cb9332429eb059bb3cd56ddc2533d846040518082815260200191505060405180910390a2505050565b6000611c13611c0c6124ce565b84846126cd565b6001905092915050565b611c256124ce565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ce7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60001515600660159054906101000a900460ff16151514611d70576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f416c726561647920616c6c6f776564000000000000000000000000000000000081525060200191505060405180910390fd5b6001600660156101000a81548160ff021916908315150217905550565b600080611d98610977565b90506000811415611dad576000915050611ec3565b6000611db8336113df565b90506000611eba83611eac600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611e6257600080fd5b505afa158015611e76573d6000803e3d6000fd5b505050506040513d6020811015611e8c57600080fd5b810190808051906020019092919050505085612ad690919063ffffffff16565b612b5c90919063ffffffff16565b90508093505050505b90565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660159054906101000a900460ff16611f6e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f6e6f7420616c6c6f77656400000000000000000000000000000000000000000081525060200191505060405180910390fd5b6008600160028110611f7c57fe5b01544311611ff2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5374696c6c20696e206f70656e20706572696f6400000000000000000000000081525060200191505060405180910390fd5b60011515600660149054906101000a900460ff1615151461207b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f416c726561647920636c6f73656400000000000000000000000000000000000081525060200191505060405180910390fd5b600754600860016002811061208c57fe5b015401600860006002811061209d57fe5b0181905550611a0a60086000600281106120b357fe5b01540160086001600281106120c457fe5b01819055506000600660146101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff167f13607bf9d2dd20e1f3a7daf47ab12856f8aad65e6ae7e2c75ace3d0c424a40e860405160405180910390a2565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6121b86124ce565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461227a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612300576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061308c6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6123c86124ce565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461248a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b81600860006002811061249957fe5b01819055508060086001600281106124ad57fe5b01819055505050565b600881600281106124c357fe5b016000915090505481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561255c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806131896024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806130b26022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612753576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806131646025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806130476023913960400191505060405180910390fd5b6127e4838383612f31565b61284f816040518060600160405280602681526020016130d4602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461298e9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506128e2816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a4e90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290612a3b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612a005780820151818401526020810190506129e5565b50505050905090810190601f168015612a2d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015612acc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600080831415612ae95760009050612b56565b6000828402905082848281612afa57fe5b0414612b51576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806130fa6021913960400191505060405180910390fd5b809150505b92915050565b6000612b9e83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612f36565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c2c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806131436021913960400191505060405180910390fd5b612c3882600083612f31565b612ca38160405180606001604052806022815260200161306a602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461298e9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612cfa81600254612ffc90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e0d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b612e1960008383612f31565b612e2e81600254612a4e90919063ffffffff16565b600281905550612e85816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a4e90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b505050565b60008083118290612fe2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612fa7578082015181840152602081019050612f8c565b50505050905090810190601f168015612fd45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581612fee57fe5b049050809150509392505050565b600061303e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061298e565b90509291505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212202d0b007fbe046ea98780dd2467734030ed6b5c112c30f40add47fefb8ae14cbc64736f6c63430006060033000000000000000000000000000000000000000000000000000000000000682a0000000000000000000000000000000000000000000000000000000000a801c80000000000000000000000000000000000000000000000000000000000a81bd200000000000000000000000047331c546c77997669ea7c9fefb0c649be8644fd

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c8063715018a611610104578063b1b3d3f6116100a2578063dd62ed3e11610071578063dd62ed3e14610781578063f2fde38b146107f9578063f3a491e41461083d578063f71a5d8814610875576101da565b8063b1b3d3f614610705578063be1edc0f1461070f578063d389800f1461072d578063dbca97f814610777576101da565b80639befd5a4116100de5780639befd5a414610601578063a457c2d71461060b578063a59f3e0c14610671578063a9059cbb1461069f576101da565b8063715018a61461052a5780638da5cb5b1461053457806395d89b411461057e576101da565b8063313ce5671161017c5780633f2373a41161014b5780633f2373a41461045457806347535d7b1461048257806367dfd4c9146104a457806370a08231146104d2576101da565b8063313ce567146103b657806339509351146103da5780633d859629146104405780633dcb64851461044a576101da565b806323b872dd116101b857806323b872dd146102e65780632d91317b1461036c5780632e8d7fb51461038e578063302a41ab146103ac576101da565b806306fdde03146101df578063095ea7b31461026257806318160ddd146102c8575b600080fd5b6101e76108b7565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561022757808201518184015260208101905061020c565b50505050905090810190601f1680156102545780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102ae6004803603604081101561027857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610959565b604051808215151515815260200191505060405180910390f35b6102d0610977565b6040518082815260200191505060405180910390f35b610352600480360360608110156102fc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610981565b604051808215151515815260200191505060405180910390f35b610374610a5a565b604051808215151515815260200191505060405180910390f35b610396610a6d565b6040518082815260200191505060405180910390f35b6103b4610a73565b005b6103be610c7c565b604051808260ff1660ff16815260200191505060405180910390f35b610426600480360360408110156103f057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c93565b604051808215151515815260200191505060405180910390f35b610448610d46565b005b610452610eb6565b005b6104806004803603602081101561046a57600080fd5b8101908080359060200190929190505050611026565b005b61048a6110fa565b604051808215151515815260200191505060405180910390f35b6104d0600480360360208110156104ba57600080fd5b810190808035906020019092919050505061110d565b005b610514600480360360208110156104e857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113df565b6040518082815260200191505060405180910390f35b610532611427565b005b61053c6115b2565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105866115dc565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156105c65780820151818401526020810190506105ab565b50505050905090810190601f1680156105f35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61060961167e565b005b6106576004803603604081101561062157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506117ee565b604051808215151515815260200191505060405180910390f35b61069d6004803603602081101561068757600080fd5b81019080803590602001909291905050506118bb565b005b6106eb600480360360408110156106b557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611bff565b604051808215151515815260200191505060405180910390f35b61070d611c1d565b005b610717611d8d565b6040518082815260200191505060405180910390f35b610735611ec6565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61077f611eec565b005b6107e36004803603604081101561079757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612129565b6040518082815260200191505060405180910390f35b61083b6004803603602081101561080f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506121b0565b005b6108736004803603604081101561085357600080fd5b8101908080359060200190929190803590602001909291905050506123c0565b005b6108a16004803603602081101561088b57600080fd5b81019080803590602001909291905050506124b6565b6040518082815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561094f5780601f106109245761010080835404028352916020019161094f565b820191906000526020600020905b81548152906001019060200180831161093257829003601f168201915b5050505050905090565b600061096d6109666124ce565b84846124d6565b6001905092915050565b6000600254905090565b600061098e8484846126cd565b610a4f8461099a6124ce565b610a4a8560405180606001604052806028815260200161311b60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610a006124ce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461298e9092919063ffffffff16565b6124d6565b600190509392505050565b600660159054906101000a900460ff1681565b60075481565b600660159054906101000a900460ff16610af5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f6e6f7420616c6c6f77656400000000000000000000000000000000000000000081525060200191505060405180910390fd5b6008600060028110610b0357fe5b015443118015610b2157506008600160028110610b1c57fe5b015443105b610b93576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4e6f7420726561647920746f206f70656e00000000000000000000000000000081525060200191505060405180910390fd5b60001515600660149054906101000a900460ff16151514610c1c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f416c7265616479206f70656e656400000000000000000000000000000000000081525060200191505060405180910390fd5b6001600660146101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff167f0c05c795d374e6591ce49eb802df9a84a8b53459fad4fa03ac3085ca30afb75e60405160405180910390a2565b6000600560009054906101000a900460ff16905090565b6000610d3c610ca06124ce565b84610d378560016000610cb16124ce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a4e90919063ffffffff16565b6124d6565b6001905092915050565b610d4e6124ce565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e10576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60011515600660159054906101000a900460ff16151514610e99576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f416c726561647920666f7262696464656e00000000000000000000000000000081525060200191505060405180910390fd5b6000600660156101000a81548160ff021916908315150217905550565b610ebe6124ce565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f80576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60001515600660149054906101000a900460ff16151514611009576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f416c7265616479206f70656e656400000000000000000000000000000000000081525060200191505060405180910390fd5b6001600660146101000a81548160ff021916908315150217905550565b61102e6124ce565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060078190555050565b600660149054906101000a900460ff1681565b600660149054906101000a900460ff1661118f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f6368616973656c6f6e67756520636c6f7365640000000000000000000000000081525060200191505060405180910390fd5b6000611199610977565b9050600061129b8261128d600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561124357600080fd5b505afa158015611257573d6000803e3d6000fd5b505050506040513d602081101561126d57600080fd5b810190808051906020019092919050505086612ad690919063ffffffff16565b612b5c90919063ffffffff16565b90506112a73384612ba6565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561135057600080fd5b505af1158015611364573d6000803e3d6000fd5b505050506040513d602081101561137a57600080fd5b8101908080519060200190929190505050503373ffffffffffffffffffffffffffffffffffffffff167faf65ecdc8a0d3ea90c8344c89e7001864fddf59dfdf41da2994463fe99049a59826040518082815260200191505060405180910390a2505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61142f6124ce565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116745780601f1061164957610100808354040283529160200191611674565b820191906000526020600020905b81548152906001019060200180831161165757829003601f168201915b5050505050905090565b6116866124ce565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611748576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60011515600660149054906101000a900460ff161515146117d1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f416c726561647920636c6f73656400000000000000000000000000000000000081525060200191505060405180910390fd5b6000600660146101000a81548160ff021916908315150217905550565b60006118b16117fb6124ce565b846118ac856040518060600160405280602581526020016131ad60259139600160006118256124ce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461298e9092919063ffffffff16565b6124d6565b6001905092915050565b600660149054906101000a900460ff1661193d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f6368616973656c6f6e67756520636c6f7365640000000000000000000000000081525060200191505060405180910390fd5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156119de57600080fd5b505afa1580156119f2573d6000803e3d6000fd5b505050506040513d6020811015611a0857600080fd5b810190808051906020019092919050505090506000611a25610977565b90506000811480611a365750600082145b15611a5e57611a5933611a546103e886612b5c90919063ffffffff16565b612d6a565b611a93565b6000611a8583611a778487612ad690919063ffffffff16565b612b5c90919063ffffffff16565b9050611a913382612d6a565b505b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330866040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b158015611b7057600080fd5b505af1158015611b84573d6000803e3d6000fd5b505050506040513d6020811015611b9a57600080fd5b8101908080519060200190929190505050503373ffffffffffffffffffffffffffffffffffffffff167f49f8fa5eee2e3f21251c2e968640dcaef35cb9332429eb059bb3cd56ddc2533d846040518082815260200191505060405180910390a2505050565b6000611c13611c0c6124ce565b84846126cd565b6001905092915050565b611c256124ce565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ce7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60001515600660159054906101000a900460ff16151514611d70576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f416c726561647920616c6c6f776564000000000000000000000000000000000081525060200191505060405180910390fd5b6001600660156101000a81548160ff021916908315150217905550565b600080611d98610977565b90506000811415611dad576000915050611ec3565b6000611db8336113df565b90506000611eba83611eac600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611e6257600080fd5b505afa158015611e76573d6000803e3d6000fd5b505050506040513d6020811015611e8c57600080fd5b810190808051906020019092919050505085612ad690919063ffffffff16565b612b5c90919063ffffffff16565b90508093505050505b90565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660159054906101000a900460ff16611f6e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f6e6f7420616c6c6f77656400000000000000000000000000000000000000000081525060200191505060405180910390fd5b6008600160028110611f7c57fe5b01544311611ff2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5374696c6c20696e206f70656e20706572696f6400000000000000000000000081525060200191505060405180910390fd5b60011515600660149054906101000a900460ff1615151461207b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f416c726561647920636c6f73656400000000000000000000000000000000000081525060200191505060405180910390fd5b600754600860016002811061208c57fe5b015401600860006002811061209d57fe5b0181905550611a0a60086000600281106120b357fe5b01540160086001600281106120c457fe5b01819055506000600660146101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff167f13607bf9d2dd20e1f3a7daf47ab12856f8aad65e6ae7e2c75ace3d0c424a40e860405160405180910390a2565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6121b86124ce565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461227a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612300576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061308c6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6123c86124ce565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461248a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b81600860006002811061249957fe5b01819055508060086001600281106124ad57fe5b01819055505050565b600881600281106124c357fe5b016000915090505481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561255c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806131896024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806130b26022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612753576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806131646025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806130476023913960400191505060405180910390fd5b6127e4838383612f31565b61284f816040518060600160405280602681526020016130d4602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461298e9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506128e2816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a4e90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290612a3b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612a005780820151818401526020810190506129e5565b50505050905090810190601f168015612a2d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015612acc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600080831415612ae95760009050612b56565b6000828402905082848281612afa57fe5b0414612b51576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806130fa6021913960400191505060405180910390fd5b809150505b92915050565b6000612b9e83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612f36565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c2c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806131436021913960400191505060405180910390fd5b612c3882600083612f31565b612ca38160405180606001604052806022815260200161306a602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461298e9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612cfa81600254612ffc90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e0d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b612e1960008383612f31565b612e2e81600254612a4e90919063ffffffff16565b600281905550612e85816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a4e90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b505050565b60008083118290612fe2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612fa7578082015181840152602081019050612f8c565b50505050905090810190601f168015612fd45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581612fee57fe5b049050809150509392505050565b600061303e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061298e565b90509291505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212202d0b007fbe046ea98780dd2467734030ed6b5c112c30f40add47fefb8ae14cbc64736f6c63430006060033

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

000000000000000000000000000000000000000000000000000000000000682a0000000000000000000000000000000000000000000000000000000000a801c80000000000000000000000000000000000000000000000000000000000a81bd200000000000000000000000047331c546c77997669ea7c9fefb0c649be8644fd

-----Decoded View---------------
Arg [0] : _blocksBetween (uint256): 26666
Arg [1] : _openPeriod (uint256[2]): 11010504,11017170
Arg [2] : _earn (address): 0x47331c546C77997669ea7C9FeFB0C649bE8644FD

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000000000682a
Arg [1] : 0000000000000000000000000000000000000000000000000000000000a801c8
Arg [2] : 0000000000000000000000000000000000000000000000000000000000a81bd2
Arg [3] : 00000000000000000000000047331c546c77997669ea7c9fefb0c649be8644fd


Deployed Bytecode Sourcemap

28414:3981:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;28414:3981:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;17326:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;17326:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19432:169;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;19432:169:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;18401:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20075:321;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;20075:321:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;28627:26;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;28705:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29758:265;;;:::i;:::-;;18253:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20805:218;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;20805:218:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;30686:122;;;:::i;:::-;;30814:128;;;:::i;:::-;;31338:104;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;31338:104:0;;;;;;;;;;;;;;;;;:::i;:::-;;28594:26;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;32077:315;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;32077:315:0;;;;;;;;;;;;;;;;;:::i;:::-;;18564:119;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;18564:119:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27848:148;;;:::i;:::-;;27206:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;17528:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;17528:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30948:127;;;:::i;:::-;;21526:269;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;21526:269:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;31499:521;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;31499:521:0;;;;;;;;;;;;;;;;;:::i;:::-;;18896:175;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;18896:175:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;30561:119;;;:::i;:::-;;29423:327;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28521:18;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;30031:466;;;:::i;:::-;;19134:151;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;19134:151:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28151:244;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;28151:244:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;31130:150;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;31130:150:0;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28797:28;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;28797:28:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17326:83;17363:13;17396:5;17389:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17326:83;:::o;19432:169::-;19515:4;19532:39;19541:12;:10;:12::i;:::-;19555:7;19564:6;19532:8;:39::i;:::-;19589:4;19582:11;;19432:169;;;;:::o;18401:100::-;18454:7;18481:12;;18474:19;;18401:100;:::o;20075:321::-;20181:4;20198:36;20208:6;20216:9;20227:6;20198:9;:36::i;:::-;20245:121;20254:6;20262:12;:10;:12::i;:::-;20276:89;20314:6;20276:89;;;;;;;;;;;;;;;;;:11;:19;20288:6;20276:19;;;;;;;;;;;;;;;:33;20296:12;:10;:12::i;:::-;20276:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;20245:8;:121::i;:::-;20384:4;20377:11;;20075:321;;;;;:::o;28627:26::-;;;;;;;;;;;;;:::o;28705:28::-;;;;:::o;29758:265::-;29374:7;;;;;;;;;;;29366:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29841:10:::1;29852:1;29841:13;;;;;;;;;29826:12;:28;:60;;;;;29873:10;29884:1;29873:13;;;;;;;;;29858:12;:28;29826:60;29818:90;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;29935:5;29925:15;;:6;;;;;;;;;;;:15;;;29917:42;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;29977:4;29968:6;;:13;;;;;;;;;;;;;;;;;;30004:10;29997:18;;;;;;;;;;;;29758:265::o:0;18253:83::-;18294:5;18319:9;;;;;;;;;;;18312:16;;18253:83;:::o;20805:218::-;20893:4;20910:83;20919:12;:10;:12::i;:::-;20933:7;20942:50;20981:10;20942:11;:25;20954:12;:10;:12::i;:::-;20942:25;;;;;;;;;;;;;;;:34;20968:7;20942:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;20910:8;:83::i;:::-;21011:4;21004:11;;20805:218;;;;:::o;30686:122::-;27428:12;:10;:12::i;:::-;27418:22;;:6;;;;;;;;;;;:22;;;27410:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30750:4:::1;30739:15;;:7;;;;;;;;;;;:15;;;30730:46;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;30795:5;30785:7;;:15;;;;;;;;;;;;;;;;;;30686:122::o:0;30814:128::-;27428:12;:10;:12::i;:::-;27418:22;;:6;;;;;;;;;;;:22;;;27410:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30888:5:::1;30878:15;;:6;;;;;;;;;;;:15;;;30869:43;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;30930:4;30921:6;;:13;;;;;;;;;;;;;;;;;;30814:128::o:0;31338:104::-;27428:12;:10;:12::i;:::-;27418:22;;:6;;;;;;;;;;;:22;;;27410:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31425:9:::1;31409:13;:25;;;;31338:104:::0;:::o;28594:26::-;;;;;;;;;;;;;:::o;32077:315::-;29276:6;;;;;;;;;;;29268:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32147:19:::1;32169:13;:11;:13::i;:::-;32147:35;;32193:12;32208:58;32254:11;32208:41;32219:4;;;;;;;;;;;:14;;;32242:4;32219:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;32219:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;32219:29:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;32219:29:0;;;;;;;;;;;;;;;;32208:6;:10;;:41;;;;:::i;:::-;:45;;:58;;;;:::i;:::-;32193:73;;32277:25;32283:10;32295:6;32277:5;:25::i;:::-;32313:4;;;;;;;;;;;:13;;;32327:10;32339:4;32313:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;32313:31:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;32313:31:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;32313:31:0;;;;;;;;;;;;;;;;;32367:10;32362:22;;;32379:4;32362:22;;;;;;;;;;;;;;;;;;29315:1;;32077:315:::0;:::o;18564:119::-;18630:7;18657:9;:18;18667:7;18657:18;;;;;;;;;;;;;;;;18650:25;;18564:119;;;:::o;27848:148::-;27428:12;:10;:12::i;:::-;27418:22;;:6;;;;;;;;;;;:22;;;27410:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27955:1:::1;27918:40;;27939:6;;;;;;;;;;;27918:40;;;;;;;;;;;;27986:1;27969:6;;:19;;;;;;;;;;;;;;;;;;27848:148::o:0;27206:79::-;27244:7;27271:6;;;;;;;;;;;27264:13;;27206:79;:::o;17528:87::-;17567:13;17600:7;17593:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17528:87;:::o;30948:127::-;27428:12;:10;:12::i;:::-;27418:22;;:6;;;;;;;;;;;:22;;;27410:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31021:4:::1;31011:14;;:6;;;;;;;;;;;:14;;;31002:42;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;31062:5;31053:6;;:14;;;;;;;;;;;;;;;;;;30948:127::o:0;21526:269::-;21619:4;21636:129;21645:12;:10;:12::i;:::-;21659:7;21668:96;21707:15;21668:96;;;;;;;;;;;;;;;;;:11;:25;21680:12;:10;:12::i;:::-;21668:25;;;;;;;;;;;;;;;:34;21694:7;21668:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;21636:8;:129::i;:::-;21783:4;21776:11;;21526:269;;;;:::o;31499:521::-;29276:6;;;;;;;;;;;29268:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31570:17:::1;31590:4;;;;;;;;;;;:14;;;31613:4;31590:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;31590:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;31590:29:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;31590:29:0;;;;;;;;;;;;;;;;31570:49;;31630:19;31652:13;:11;:13::i;:::-;31630:35;;31695:1;31680:11;:16;:34;;;;31713:1;31700:9;:14;31680:34;31676:228;;;31731:36;31737:10;31749:17;31761:4;31749:7;:11;;:17;;;;:::i;:::-;31731:5;:36::i;:::-;31676:228;;;31800:12;31815:39;31844:9;31815:24;31827:11;31815:7;:11;;:24;;;;:::i;:::-;:28;;:39;;;;:::i;:::-;31800:54;;31869:23;31875:10;31887:4;31869:5;:23::i;:::-;31676:228;;31914:4;;;;;;;;;;;:17;;;31932:10;31952:4;31959:7;31914:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;31914:53:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;31914:53:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;31914:53:0;;;;;;;;;;;;;;;;;31992:10;31985:27;;;32004:7;31985:27;;;;;;;;;;;;;;;;;;29315:1;;31499:521:::0;:::o;18896:175::-;18982:4;18999:42;19009:12;:10;:12::i;:::-;19023:9;19034:6;18999:9;:42::i;:::-;19059:4;19052:11;;18896:175;;;;:::o;30561:119::-;27428:12;:10;:12::i;:::-;27418:22;;:6;;;;;;;;;;;:22;;;27410:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30624:5:::1;30613:16;;:7;;;;;;;;;;;:16;;;30604:45;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;30668:4;30658:7;;:14;;;;;;;;;;;;;;;;;;30561:119::o:0;29423:327::-;29469:7;29487:19;29509:13;:11;:13::i;:::-;29487:35;;29550:1;29535:11;:16;29531:51;;;29571:1;29564:8;;;;;29531:51;29592:18;29613:21;29623:10;29613:9;:21::i;:::-;29592:42;;29643:12;29658:62;29708:11;29658:45;29673:4;;;;;;;;;;;:14;;;29696:4;29673:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;29673:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;29673:29:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;29673:29:0;;;;;;;;;;;;;;;;29658:10;:14;;:45;;;;:::i;:::-;:49;;:62;;;;:::i;:::-;29643:77;;29738:4;29731:11;;;;;29423:327;;:::o;28521:18::-;;;;;;;;;;;;;:::o;30031:466::-;29374:7;;;;;;;;;;;29366:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30115:10:::1;30126:1;30115:13;;;;;;;;;30100:12;:28;30092:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;30181:4;30171:14;;:6;;;;;;;;;;;:14;;;30162:42;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;30320:13;;30304:10;30315:1;30304:13;;;;;;;;;:29;30288:10;30299:1;30288:13;;;;;;;;:45;;;;30428:4;30412:10;30423:1;30412:13;;;;;;;;;:20;30396:10;30407:1;30396:13;;;;;;;;:36;;;;30450:5;30441:6;;:14;;;;;;;;;;;;;;;;;;30478:10;30471:18;;;;;;;;;;;;30031:466::o:0;19134:151::-;19223:7;19250:11;:18;19262:5;19250:18;;;;;;;;;;;;;;;:27;19269:7;19250:27;;;;;;;;;;;;;;;;19243:34;;19134:151;;;;:::o;28151:244::-;27428:12;:10;:12::i;:::-;27418:22;;:6;;;;;;;;;;;:22;;;27410:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28260:1:::1;28240:22;;:8;:22;;;;28232:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28350:8;28321:38;;28342:6;;;;;;;;;;;28321:38;;;;;;;;;;;;28379:8;28370:6;;:17;;;;;;;;;;;;;;;;;;28151:244:::0;:::o;31130:150::-;27428:12;:10;:12::i;:::-;27418:22;;:6;;;;;;;;;;;:22;;;27410:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31231:9:::1;31215:10;31226:1;31215:13;;;;;;;;:25;;;;31265:7;31249:10;31260:1;31249:13;;;;;;;;:23;;;;31130:150:::0;;:::o;28797:28::-;;;;;;;;;;;;;;;;;;:::o;3433:106::-;3486:15;3521:10;3514:17;;3433:106;:::o;24671:346::-;24790:1;24773:19;;:5;:19;;;;24765:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24871:1;24852:21;;:7;:21;;;;24844:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24955:6;24925:11;:18;24937:5;24925:18;;;;;;;;;;;;;;;:27;24944:7;24925:27;;;;;;;;;;;;;;;:36;;;;24993:7;24977:32;;24986:5;24977:32;;;25002:6;24977:32;;;;;;;;;;;;;;;;;;24671:346;;;:::o;22285:539::-;22409:1;22391:20;;:6;:20;;;;22383:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22493:1;22472:23;;:9;:23;;;;22464:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22548:47;22569:6;22577:9;22588:6;22548:20;:47::i;:::-;22628:71;22650:6;22628:71;;;;;;;;;;;;;;;;;:9;:17;22638:6;22628:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;22608:9;:17;22618:6;22608:17;;;;;;;;;;;;;;;:91;;;;22733:32;22758:6;22733:9;:20;22743:9;22733:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;22710:9;:20;22720:9;22710:20;;;;;;;;;;;;;;;:55;;;;22798:9;22781:35;;22790:6;22781:35;;;22809:6;22781:35;;;;;;;;;;;;;;;;;;22285:539;;;:::o;5588:192::-;5674:7;5707:1;5702;:6;;5710:12;5694:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;5694:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5734:9;5750:1;5746;:5;5734:17;;5771:1;5764:8;;;5588:192;;;;;:::o;4685:181::-;4743:7;4763:9;4779:1;4775;:5;4763:17;;4804:1;4799;:6;;4791:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4857:1;4850:8;;;4685:181;;;;:::o;6039:471::-;6097:7;6347:1;6342;:6;6338:47;;;6372:1;6365:8;;;;6338:47;6397:9;6413:1;6409;:5;6397:17;;6442:1;6437;6433;:5;;;;;;:10;6425:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6501:1;6494:8;;;6039:471;;;;;:::o;6986:132::-;7044:7;7071:39;7075:1;7078;7071:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;7064:46;;6986:132;;;;:::o;23815:418::-;23918:1;23899:21;;:7;:21;;;;23891:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23971:49;23992:7;24009:1;24013:6;23971:20;:49::i;:::-;24054:68;24077:6;24054:68;;;;;;;;;;;;;;;;;:9;:18;24064:7;24054:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;24033:9;:18;24043:7;24033:18;;;;;;;;;;;;;;;:89;;;;24148:24;24165:6;24148:12;;:16;;:24;;;;:::i;:::-;24133:12;:39;;;;24214:1;24188:37;;24197:7;24188:37;;;24218:6;24188:37;;;;;;;;;;;;;;;;;;23815:418;;:::o;23105:378::-;23208:1;23189:21;;:7;:21;;;;23181:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23259:49;23288:1;23292:7;23301:6;23259:20;:49::i;:::-;23336:24;23353:6;23336:12;;:16;;:24;;;;:::i;:::-;23321:12;:39;;;;23392:30;23415:6;23392:9;:18;23402:7;23392:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;23371:9;:18;23381:7;23371:18;;;;;;;;;;;;;;;:51;;;;23459:7;23438:37;;23455:1;23438:37;;;23468:6;23438:37;;;;;;;;;;;;;;;;;;23105:378;;:::o;26042:92::-;;;;:::o;7614:278::-;7700:7;7732:1;7728;:5;7735:12;7720:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;7720:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7759:9;7775:1;7771;:5;;;;;;7759:17;;7883:1;7876:8;;;7614:278;;;;;:::o;5149:136::-;5207:7;5234:43;5238:1;5241;5234:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;5227:50;;5149:136;;;;:::o

Swarm Source

ipfs://2d0b007fbe046ea98780dd2467734030ed6b5c112c30f40add47fefb8ae14cbc
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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