ETH Price: $2,907.51 (-4.05%)
Gas: 2 Gwei

Token

Versus.cx (Versus)
 

Overview

Max Total Supply

27,000 Versus

Holders

134

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
jobiii.eth
Balance
339.559440699829216875 Versus

Value
$0.00
0xd7920cd8a648f9f0dd47c1a8e1b4b0b987335e3e
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:
Versus

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-01-10
*/

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/utils/Address.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.2;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/SafeERC20.sol



pragma solidity ^0.6.0;




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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/math/SafeMath.sol



pragma solidity ^0.6.0;

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol



pragma solidity ^0.6.0;

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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/GSN/Context.sol



pragma solidity ^0.6.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol



pragma solidity ^0.6.0;




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

    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: browser/Versus.sol

pragma solidity ^0.6.6;



contract NyanV2 {
    function getStakedNyanV2LP(address staker) public view returns(uint256) {}
    function lockNyan(address holder) public {}
    function lockNyanLP(address staker) public {}
}

contract Versus is ERC20 {
    using SafeERC20 for IERC20;
    using SafeMath for uint256;
    address owner;
    address public predictionContract;
    address public versusRewards;
    address public nyan = 0xbF4a9A37EcFc21825011285222c36aB35De51F14;

    struct claimLock {
        uint256 unlockBlock;
        bool hasClaimedNyan;
    }
    mapping(address => claimLock) public userClaimLock;
    uint256 public maxNyanMint = 0;
    uint256 public maxNyanLPMint = 0;
    bool public hasNyanClaimStarted;
    
    event predictionContractSet(address _contract);
    event predictionRewarded(address user, uint256 rewards);
    event versusLocked(address user);
    event nyanClaimStarted(address owner);
    event nyanVersusClaimed(address user);
    event nyanContractsSet(address nyan);
    event versusRewardsContractsSet(address rewardsContract);
    
    constructor() public ERC20("Versus.cx", "Versus") {
        owner = msg.sender;
        uint256 supply = 10000;
        _mint(msg.sender, supply.mul(10 ** 18));
        predictionContract = address(0);
    }
    
    function setVersusRewardsContract(address _rewards) public {
        require(msg.sender == owner);
        versusRewards = _rewards;
        emit versusRewardsContractsSet(_rewards);
    }
    
    function setNyanContracts(address _nyan) public {
        require(msg.sender == owner);
        nyan = _nyan;
        emit nyanContractsSet(_nyan);
    }
    
    function setPredictionContract(address predict) public {
        require(msg.sender == owner);
        predictionContract = predict;
        emit predictionContractSet(predict);
    }
    
    function rewardPrediction(address user, uint256 amount) public {
        require(msg.sender == predictionContract);
        _mint(user, amount);
        emit predictionRewarded(user, amount);
    }
    
    function claimAndLock(address user) public {
        require(msg.sender == versusRewards);
        require(userClaimLock[user].unlockBlock < block.number);
        userClaimLock[user].unlockBlock = block.number.add(45500);
        emit versusLocked(user);
    }
    
    function transfer(address _recipient, uint256 _amount) public override returns(bool) {    
        require(userClaimLock[msg.sender].unlockBlock < block.number);
        if (_amount > 0) {
            require(_amount.mul(100).div(totalSupply()) < 5, "You can't own that much Versus");
            require(_amount.add(balanceOf(_recipient)).mul(100).div(totalSupply()) < 5, "You can't own that much Versus");
        }
        return super.transfer(_recipient, _amount);
    }
    
    function transferFrom(address _sender, address _recipient, uint256 _amount) public override returns(bool) {
        require(userClaimLock[_sender].unlockBlock < block.number);
        if (_sender != owner) {
            if (_amount > 0) {
                require(_amount.mul(100).div(totalSupply()) < 5);
                require(_amount.add(balanceOf(_recipient)).mul(100).div(totalSupply()) < 5, "You can't own that much Versus");
            }
        }
        return super.transferFrom(_sender, _recipient, _amount);
    }
    
    function startNyanClaim() public {
        require(msg.sender == owner);
        hasNyanClaimStarted = true;
        emit nyanClaimStarted(msg.sender);
    }
    
    function isNyanEligible(address user) public view returns(bool) {
        bool isEligible;
        uint256 nyanHeld = ERC20(nyan).balanceOf(user);
        uint256 nyanLPStaked = NyanV2(nyan).getStakedNyanV2LP(user);
        
        if (nyanHeld > 0) {
            isEligible = true;
            
        }
        if (nyanLPStaked > 0) {
            isEligible = true;
        }
        
        if (userClaimLock[user].hasClaimedNyan) {
            isEligible = false;
        }
        return isEligible;
    }
    
    function claimNyanVersus() public {
        require(hasNyanClaimStarted);
        require(!userClaimLock[msg.sender].hasClaimedNyan);
        uint256 nyanHeld = ERC20(nyan).balanceOf(msg.sender);
        uint256 nyanLPStaked = NyanV2(nyan).getStakedNyanV2LP(msg.sender);
        
        if (nyanHeld > 0) {
            require(maxNyanMint.add(nyanHeld.div(10)) < 3300000000000000000000);
            _mint(msg.sender, nyanHeld.div(10));
            maxNyanMint = maxNyanMint.add(nyanHeld.div(10));
            //lock Nyan movement for 2 weeks
            NyanV2(nyan).lockNyan(msg.sender);
        }
        if (nyanLPStaked > 0) {
            require(maxNyanLPMint.add(nyanLPStaked) < 1500000000000000000000);
            _mint(msg.sender, nyanLPStaked);
            maxNyanLPMint = maxNyanLPMint.add(nyanLPStaked);
            //lock LP unstaking for 2 weeks
            NyanV2(nyan).lockNyanLP(msg.sender);
        }
        
        userClaimLock[msg.sender].hasClaimedNyan = true;
        nyanVersusClaimed(msg.sender);
    }
    
    receive() external payable {
        
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"owner","type":"address"}],"name":"nyanClaimStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"nyan","type":"address"}],"name":"nyanContractsSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"}],"name":"nyanVersusClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_contract","type":"address"}],"name":"predictionContractSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"rewards","type":"uint256"}],"name":"predictionRewarded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"}],"name":"versusLocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"rewardsContract","type":"address"}],"name":"versusRewardsContractsSet","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"claimAndLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimNyanVersus","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":"hasNyanClaimStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"isNyanEligible","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxNyanLPMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxNyanMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nyan","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"predictionContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rewardPrediction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_nyan","type":"address"}],"name":"setNyanContracts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"predict","type":"address"}],"name":"setPredictionContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_rewards","type":"address"}],"name":"setVersusRewardsContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startNyanClaim","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":"","type":"address"}],"name":"userClaimLock","outputs":[{"internalType":"uint256","name":"unlockBlock","type":"uint256"},{"internalType":"bool","name":"hasClaimedNyan","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"versusRewards","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405273bf4a9a37ecfc21825011285222c36ab35de51f14600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600a556000600b553480156200007057600080fd5b506040518060400160405280600981526020017f5665727375732e637800000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f56657273757300000000000000000000000000000000000000000000000000008152508160039080519060200190620000f5929190620004e8565b5080600490805190602001906200010e929190620004e8565b506012600560006101000a81548160ff021916908360ff160217905550505033600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060006127109050620001a8336200019c670de0b6b3a764000084620001f160201b62001ecf1790919060201c565b6200027c60201b60201c565b6000600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550506200058e565b60008083141562000206576000905062000276565b60008284029050828482816200021857fe5b041462000271576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180620030266021913960400191505060405180910390fd5b809150505b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000320576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b62000334600083836200045a60201b60201c565b62000350816002546200045f60201b62001f551790919060201c565b600281905550620003ae816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200045f60201b62001f551790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b505050565b600080828401905083811015620004de576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200052b57805160ff19168380011785556200055c565b828001600101855582156200055c579182015b828111156200055b5782518255916020019190600101906200053e565b5b5090506200056b91906200056f565b5090565b5b808211156200058a57600081600090555060010162000570565b5090565b612a88806200059e6000396000f3fe6080604052600436106101855760003560e01c8063843eb710116100d1578063ade310c81161008a578063dd62ed3e11610064578063dd62ed3e146108e9578063e0d015d81461096e578063e548b89914610985578063f39510d2146109d65761018c565b8063ade310c81461081c578063c6bbcaa514610847578063cbb128df146108985761018c565b8063843eb710146106115780638cc91f711461062857806395d89b41146106695780639997d09f146106f9578063a457c2d71461073a578063a9059cbb146107ab5761018c565b806323b872dd1161013e578063395093511161011857806339509351146104a75780635b30116a146105185780636275865c1461057f57806370a08231146105ac5761018c565b806323b872dd146103bd5780632ba7571e1461044e578063313ce567146104795761018c565b806306fdde03146101915780630868cf2514610221578063095ea7b314610262578063130dd420146102d357806318160ddd14610341578063193bf2ee1461036c5761018c565b3661018c57005b600080fd5b34801561019d57600080fd5b506101a6610a31565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101e65780820151818401526020810190506101cb565b50505050905090810190601f1680156102135780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561022d57600080fd5b50610236610ad3565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561026e57600080fd5b506102bb6004803603604081101561028557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610af9565b60405180821515815260200191505060405180910390f35b3480156102df57600080fd5b50610322600480360360208110156102f657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b17565b6040518083815260200182151581526020019250505060405180910390f35b34801561034d57600080fd5b50610356610b48565b6040518082815260200191505060405180910390f35b34801561037857600080fd5b506103bb6004803603602081101561038f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b52565b005b3480156103c957600080fd5b50610436600480360360608110156103e057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ca5565b60405180821515815260200191505060405180910390f35b34801561045a57600080fd5b50610463610e5e565b6040518082815260200191505060405180910390f35b34801561048557600080fd5b5061048e610e64565b604051808260ff16815260200191505060405180910390f35b3480156104b357600080fd5b50610500600480360360408110156104ca57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e7b565b60405180821515815260200191505060405180910390f35b34801561052457600080fd5b506105676004803603602081101561053b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f2e565b60405180821515815260200191505060405180910390f35b34801561058b57600080fd5b50610594611142565b60405180821515815260200191505060405180910390f35b3480156105b857600080fd5b506105fb600480360360208110156105cf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611155565b6040518082815260200191505060405180910390f35b34801561061d57600080fd5b5061062661119d565b005b34801561063457600080fd5b5061063d611261565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561067557600080fd5b5061067e611287565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156106be5780820151818401526020810190506106a3565b50505050905090810190601f1680156106eb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561070557600080fd5b5061070e611329565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561074657600080fd5b506107936004803603604081101561075d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061134f565b60405180821515815260200191505060405180910390f35b3480156107b757600080fd5b50610804600480360360408110156107ce57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061141c565b60405180821515815260200191505060405180910390f35b34801561082857600080fd5b506108316115e6565b6040518082815260200191505060405180910390f35b34801561085357600080fd5b506108966004803603602081101561086a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506115ec565b005b3480156108a457600080fd5b506108e7600480360360208110156108bb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116d7565b005b3480156108f557600080fd5b506109586004803603604081101561090c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506117c2565b6040518082815260200191505060405180910390f35b34801561097a57600080fd5b50610983611849565b005b34801561099157600080fd5b506109d4600480360360208110156109a857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d27565b005b3480156109e257600080fd5b50610a2f600480360360408110156109f957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611e12565b005b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610ac95780601f10610a9e57610100808354040283529160200191610ac9565b820191906000526020600020905b815481529060010190602001808311610aac57829003601f168201915b5050505050905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610b0d610b06611fdd565b8484611fe5565b6001905092915050565b60096020528060005260406000206000915090508060000154908060010160009054906101000a900460ff16905082565b6000600254905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610bac57600080fd5b43600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015410610bfa57600080fd5b610c0f61b1bc43611f5590919063ffffffff16565b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001819055507fc1ffda5934a4fa42d5a1bcb60fbeb745b981a6dc70997f9e7052677d53d8a8e481604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b600043600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015410610cf557600080fd5b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614610e4a576000821115610e49576005610d82610d60610b48565b610d74606486611ecf90919063ffffffff16565b6121dc90919063ffffffff16565b10610d8c57600080fd5b6005610dd5610d99610b48565b610dc76064610db9610daa89611155565b88611f5590919063ffffffff16565b611ecf90919063ffffffff16565b6121dc90919063ffffffff16565b10610e48576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f596f752063616e2774206f776e2074686174206d75636820566572737573000081525060200191505060405180910390fd5b5b5b610e55848484612226565b90509392505050565b600b5481565b6000600560009054906101000a900460ff16905090565b6000610f24610e88611fdd565b84610f1f8560016000610e99611fdd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f5590919063ffffffff16565b611fe5565b6001905092915050565b6000806000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231856040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610fbc57600080fd5b505afa158015610fd0573d6000803e3d6000fd5b505050506040513d6020811015610fe657600080fd5b810190808051906020019092919050505090506000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634baadd47866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561108457600080fd5b505afa158015611098573d6000803e3d6000fd5b505050506040513d60208110156110ae57600080fd5b8101908080519060200190929190505050905060008211156110cf57600192505b60008111156110dd57600192505b600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160009054906101000a900460ff161561113757600092505b829350505050919050565b600c60009054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111f757600080fd5b6001600c60006101000a81548160ff0219169083151502179055507f507c2b330c11e0fb63292da997ad01481ee145aa5c69109717078675fac8caba33604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561131f5780601f106112f45761010080835404028352916020019161131f565b820191906000526020600020905b81548152906001019060200180831161130257829003601f168201915b5050505050905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061141261135c611fdd565b8461140d85604051806060016040528060258152602001612a2e6025913960016000611386611fdd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122ff9092919063ffffffff16565b611fe5565b6001905092915050565b600043600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001541061146c57600080fd5b60008211156115d45760056114a4611482610b48565b611496606486611ecf90919063ffffffff16565b6121dc90919063ffffffff16565b10611517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f596f752063616e2774206f776e2074686174206d75636820566572737573000081525060200191505060405180910390fd5b6005611560611524610b48565b611552606461154461153589611155565b88611f5590919063ffffffff16565b611ecf90919063ffffffff16565b6121dc90919063ffffffff16565b106115d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f596f752063616e2774206f776e2074686174206d75636820566572737573000081525060200191505060405180910390fd5b5b6115de83836123bf565b905092915050565b600a5481565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461164657600080fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f615c56982904f48da6b13e49f4a288baf92cff27fbe65bdf4c4e92b7535bc43981604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461173157600080fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fcbc690ac4b0f1ab8cd56d5ab41ea22124538cc64cec6aabd7f6f6ea48d1e1e8581604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600c60009054906101000a900460ff1661186257600080fd5b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160009054906101000a900460ff16156118bc57600080fd5b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561194757600080fd5b505afa15801561195b573d6000803e3d6000fd5b505050506040513d602081101561197157600080fd5b810190808051906020019092919050505090506000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634baadd47336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611a0f57600080fd5b505afa158015611a23573d6000803e3d6000fd5b505050506040513d6020811015611a3957600080fd5b810190808051906020019092919050505090506000821115611b805768b2e4b323d9c5100000611a87611a76600a856121dc90919063ffffffff16565b600a54611f5590919063ffffffff16565b10611a9157600080fd5b611aae33611aa9600a856121dc90919063ffffffff16565b6123dd565b611ad6611ac5600a846121dc90919063ffffffff16565b600a54611f5590919063ffffffff16565b600a81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166325c58be6336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff168152602001915050600060405180830381600087803b158015611b6757600080fd5b505af1158015611b7b573d6000803e3d6000fd5b505050505b6000811115611c7b57685150ae84a8cdf00000611ba882600b54611f5590919063ffffffff16565b10611bb257600080fd5b611bbc33826123dd565b611bd181600b54611f5590919063ffffffff16565b600b81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166378bef74c336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff168152602001915050600060405180830381600087803b158015611c6257600080fd5b505af1158015611c76573d6000803e3d6000fd5b505050505b6001600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160006101000a81548160ff0219169083151502179055507ffcaa437b96b2e59ebe8fc82eabcf33c1c1b293890e19153f7f16afc79cbf6c4333604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a15050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611d8157600080fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fbf4eed20d8b2a8b90711fc0a8b70aef4c38eeffa02feeade589dde4ecc00fa6981604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611e6c57600080fd5b611e7682826123dd565b7f1d9b078f005da41858185cb5983c6666d3aa0465546ffd90bf357116b22b68478282604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a15050565b600080831415611ee25760009050611f4f565b6000828402905082848281611ef357fe5b0414611f4a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061299c6021913960400191505060405180910390fd5b809150505b92915050565b600080828401905083811015611fd3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561206b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180612a0a6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806129546022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600061221e83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506125a4565b905092915050565b600061223384848461266a565b6122f48461223f611fdd565b6122ef856040518060600160405280602881526020016129bd60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006122a5611fdd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122ff9092919063ffffffff16565b611fe5565b600190509392505050565b60008383111582906123ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612371578082015181840152602081019050612356565b50505050905090810190601f16801561239e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60006123d36123cc611fdd565b848461266a565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612480576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b61248c6000838361292b565b6124a181600254611f5590919063ffffffff16565b6002819055506124f8816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f5590919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60008083118290612650576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156126155780820151818401526020810190506125fa565b50505050905090810190601f1680156126425780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161265c57fe5b049050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806129e56025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612776576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806129316023913960400191505060405180910390fd5b61278183838361292b565b6127ec81604051806060016040528060268152602001612976602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122ff9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061287f816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f5590919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122039ef74dc28d9e2359dcd74a26d550f9e5c0e4b0ac507bfde9099b7f523db49eb64736f6c634300060c0033536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77

Deployed Bytecode

0x6080604052600436106101855760003560e01c8063843eb710116100d1578063ade310c81161008a578063dd62ed3e11610064578063dd62ed3e146108e9578063e0d015d81461096e578063e548b89914610985578063f39510d2146109d65761018c565b8063ade310c81461081c578063c6bbcaa514610847578063cbb128df146108985761018c565b8063843eb710146106115780638cc91f711461062857806395d89b41146106695780639997d09f146106f9578063a457c2d71461073a578063a9059cbb146107ab5761018c565b806323b872dd1161013e578063395093511161011857806339509351146104a75780635b30116a146105185780636275865c1461057f57806370a08231146105ac5761018c565b806323b872dd146103bd5780632ba7571e1461044e578063313ce567146104795761018c565b806306fdde03146101915780630868cf2514610221578063095ea7b314610262578063130dd420146102d357806318160ddd14610341578063193bf2ee1461036c5761018c565b3661018c57005b600080fd5b34801561019d57600080fd5b506101a6610a31565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101e65780820151818401526020810190506101cb565b50505050905090810190601f1680156102135780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561022d57600080fd5b50610236610ad3565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561026e57600080fd5b506102bb6004803603604081101561028557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610af9565b60405180821515815260200191505060405180910390f35b3480156102df57600080fd5b50610322600480360360208110156102f657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b17565b6040518083815260200182151581526020019250505060405180910390f35b34801561034d57600080fd5b50610356610b48565b6040518082815260200191505060405180910390f35b34801561037857600080fd5b506103bb6004803603602081101561038f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b52565b005b3480156103c957600080fd5b50610436600480360360608110156103e057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ca5565b60405180821515815260200191505060405180910390f35b34801561045a57600080fd5b50610463610e5e565b6040518082815260200191505060405180910390f35b34801561048557600080fd5b5061048e610e64565b604051808260ff16815260200191505060405180910390f35b3480156104b357600080fd5b50610500600480360360408110156104ca57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e7b565b60405180821515815260200191505060405180910390f35b34801561052457600080fd5b506105676004803603602081101561053b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f2e565b60405180821515815260200191505060405180910390f35b34801561058b57600080fd5b50610594611142565b60405180821515815260200191505060405180910390f35b3480156105b857600080fd5b506105fb600480360360208110156105cf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611155565b6040518082815260200191505060405180910390f35b34801561061d57600080fd5b5061062661119d565b005b34801561063457600080fd5b5061063d611261565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561067557600080fd5b5061067e611287565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156106be5780820151818401526020810190506106a3565b50505050905090810190601f1680156106eb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561070557600080fd5b5061070e611329565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561074657600080fd5b506107936004803603604081101561075d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061134f565b60405180821515815260200191505060405180910390f35b3480156107b757600080fd5b50610804600480360360408110156107ce57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061141c565b60405180821515815260200191505060405180910390f35b34801561082857600080fd5b506108316115e6565b6040518082815260200191505060405180910390f35b34801561085357600080fd5b506108966004803603602081101561086a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506115ec565b005b3480156108a457600080fd5b506108e7600480360360208110156108bb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116d7565b005b3480156108f557600080fd5b506109586004803603604081101561090c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506117c2565b6040518082815260200191505060405180910390f35b34801561097a57600080fd5b50610983611849565b005b34801561099157600080fd5b506109d4600480360360208110156109a857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d27565b005b3480156109e257600080fd5b50610a2f600480360360408110156109f957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611e12565b005b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610ac95780601f10610a9e57610100808354040283529160200191610ac9565b820191906000526020600020905b815481529060010190602001808311610aac57829003601f168201915b5050505050905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610b0d610b06611fdd565b8484611fe5565b6001905092915050565b60096020528060005260406000206000915090508060000154908060010160009054906101000a900460ff16905082565b6000600254905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610bac57600080fd5b43600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015410610bfa57600080fd5b610c0f61b1bc43611f5590919063ffffffff16565b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001819055507fc1ffda5934a4fa42d5a1bcb60fbeb745b981a6dc70997f9e7052677d53d8a8e481604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b600043600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015410610cf557600080fd5b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614610e4a576000821115610e49576005610d82610d60610b48565b610d74606486611ecf90919063ffffffff16565b6121dc90919063ffffffff16565b10610d8c57600080fd5b6005610dd5610d99610b48565b610dc76064610db9610daa89611155565b88611f5590919063ffffffff16565b611ecf90919063ffffffff16565b6121dc90919063ffffffff16565b10610e48576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f596f752063616e2774206f776e2074686174206d75636820566572737573000081525060200191505060405180910390fd5b5b5b610e55848484612226565b90509392505050565b600b5481565b6000600560009054906101000a900460ff16905090565b6000610f24610e88611fdd565b84610f1f8560016000610e99611fdd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f5590919063ffffffff16565b611fe5565b6001905092915050565b6000806000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231856040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610fbc57600080fd5b505afa158015610fd0573d6000803e3d6000fd5b505050506040513d6020811015610fe657600080fd5b810190808051906020019092919050505090506000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634baadd47866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561108457600080fd5b505afa158015611098573d6000803e3d6000fd5b505050506040513d60208110156110ae57600080fd5b8101908080519060200190929190505050905060008211156110cf57600192505b60008111156110dd57600192505b600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160009054906101000a900460ff161561113757600092505b829350505050919050565b600c60009054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111f757600080fd5b6001600c60006101000a81548160ff0219169083151502179055507f507c2b330c11e0fb63292da997ad01481ee145aa5c69109717078675fac8caba33604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561131f5780601f106112f45761010080835404028352916020019161131f565b820191906000526020600020905b81548152906001019060200180831161130257829003601f168201915b5050505050905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061141261135c611fdd565b8461140d85604051806060016040528060258152602001612a2e6025913960016000611386611fdd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122ff9092919063ffffffff16565b611fe5565b6001905092915050565b600043600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001541061146c57600080fd5b60008211156115d45760056114a4611482610b48565b611496606486611ecf90919063ffffffff16565b6121dc90919063ffffffff16565b10611517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f596f752063616e2774206f776e2074686174206d75636820566572737573000081525060200191505060405180910390fd5b6005611560611524610b48565b611552606461154461153589611155565b88611f5590919063ffffffff16565b611ecf90919063ffffffff16565b6121dc90919063ffffffff16565b106115d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f596f752063616e2774206f776e2074686174206d75636820566572737573000081525060200191505060405180910390fd5b5b6115de83836123bf565b905092915050565b600a5481565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461164657600080fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f615c56982904f48da6b13e49f4a288baf92cff27fbe65bdf4c4e92b7535bc43981604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461173157600080fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fcbc690ac4b0f1ab8cd56d5ab41ea22124538cc64cec6aabd7f6f6ea48d1e1e8581604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600c60009054906101000a900460ff1661186257600080fd5b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160009054906101000a900460ff16156118bc57600080fd5b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561194757600080fd5b505afa15801561195b573d6000803e3d6000fd5b505050506040513d602081101561197157600080fd5b810190808051906020019092919050505090506000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634baadd47336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611a0f57600080fd5b505afa158015611a23573d6000803e3d6000fd5b505050506040513d6020811015611a3957600080fd5b810190808051906020019092919050505090506000821115611b805768b2e4b323d9c5100000611a87611a76600a856121dc90919063ffffffff16565b600a54611f5590919063ffffffff16565b10611a9157600080fd5b611aae33611aa9600a856121dc90919063ffffffff16565b6123dd565b611ad6611ac5600a846121dc90919063ffffffff16565b600a54611f5590919063ffffffff16565b600a81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166325c58be6336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff168152602001915050600060405180830381600087803b158015611b6757600080fd5b505af1158015611b7b573d6000803e3d6000fd5b505050505b6000811115611c7b57685150ae84a8cdf00000611ba882600b54611f5590919063ffffffff16565b10611bb257600080fd5b611bbc33826123dd565b611bd181600b54611f5590919063ffffffff16565b600b81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166378bef74c336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff168152602001915050600060405180830381600087803b158015611c6257600080fd5b505af1158015611c76573d6000803e3d6000fd5b505050505b6001600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160006101000a81548160ff0219169083151502179055507ffcaa437b96b2e59ebe8fc82eabcf33c1c1b293890e19153f7f16afc79cbf6c4333604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a15050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611d8157600080fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fbf4eed20d8b2a8b90711fc0a8b70aef4c38eeffa02feeade589dde4ecc00fa6981604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611e6c57600080fd5b611e7682826123dd565b7f1d9b078f005da41858185cb5983c6666d3aa0465546ffd90bf357116b22b68478282604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a15050565b600080831415611ee25760009050611f4f565b6000828402905082848281611ef357fe5b0414611f4a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061299c6021913960400191505060405180910390fd5b809150505b92915050565b600080828401905083811015611fd3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561206b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180612a0a6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806129546022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600061221e83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506125a4565b905092915050565b600061223384848461266a565b6122f48461223f611fdd565b6122ef856040518060600160405280602881526020016129bd60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006122a5611fdd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122ff9092919063ffffffff16565b611fe5565b600190509392505050565b60008383111582906123ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612371578082015181840152602081019050612356565b50505050905090810190601f16801561239e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60006123d36123cc611fdd565b848461266a565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612480576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b61248c6000838361292b565b6124a181600254611f5590919063ffffffff16565b6002819055506124f8816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f5590919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60008083118290612650576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156126155780820151818401526020810190506125fa565b50505050905090810190601f1680156126425780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161265c57fe5b049050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806129e56025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612776576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806129316023913960400191505060405180910390fd5b61278183838361292b565b6127ec81604051806060016040528060268152602001612976602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122ff9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061287f816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f5590919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122039ef74dc28d9e2359dcd74a26d550f9e5c0e4b0ac507bfde9099b7f523db49eb64736f6c634300060c0033

Deployed Bytecode Sourcemap

32448:5045:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23357:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32606:28;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;25463:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32805:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;24432:100;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34345:266;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;35117:535;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32899:32;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24284:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26844:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35837:530;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32938:31;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;24595:119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;35664:161;;;;;;;;;;;;;:::i;:::-;;32641:64;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;23559:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32566:33;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27565:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34623:482;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32862:30;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33933:187;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33560:192;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;25165:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36379:1054;;;;;;;;;;;;;:::i;:::-;;33764:157;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34132:201;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;23357:83;23394:13;23427:5;23420:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23357:83;:::o;32606:28::-;;;;;;;;;;;;;:::o;25463:169::-;25546:4;25563:39;25572:12;:10;:12::i;:::-;25586:7;25595:6;25563:8;:39::i;:::-;25620:4;25613:11;;25463:169;;;;:::o;32805:50::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24432:100::-;24485:7;24512:12;;24505:19;;24432:100;:::o;34345:266::-;34421:13;;;;;;;;;;;34407:27;;:10;:27;;;34399:36;;;;;;34488:12;34454:13;:19;34468:4;34454:19;;;;;;;;;;;;;;;:31;;;:46;34446:55;;;;;;34546:23;34563:5;34546:12;:16;;:23;;;;:::i;:::-;34512:13;:19;34526:4;34512:19;;;;;;;;;;;;;;;:31;;:57;;;;34585:18;34598:4;34585:18;;;;;;;;;;;;;;;;;;;;34345:266;:::o;35117:535::-;35217:4;35279:12;35242:13;:22;35256:7;35242:22;;;;;;;;;;;;;;;:34;;;:49;35234:58;;;;;;35318:5;;;;;;;;;;;35307:16;;:7;:16;;;35303:276;;35354:1;35344:7;:11;35340:228;;;35422:1;35384:35;35405:13;:11;:13::i;:::-;35384:16;35396:3;35384:7;:11;;:16;;;;:::i;:::-;:20;;:35;;;;:::i;:::-;:39;35376:48;;;;;;35516:1;35451:62;35499:13;:11;:13::i;:::-;35451:43;35490:3;35451:34;35463:21;35473:10;35463:9;:21::i;:::-;35451:7;:11;;:34;;;;:::i;:::-;:38;;:43;;;;:::i;:::-;:47;;:62;;;;:::i;:::-;:66;35443:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35340:228;35303:276;35596:48;35615:7;35624:10;35636:7;35596:18;:48::i;:::-;35589:55;;35117:535;;;;;:::o;32899:32::-;;;;:::o;24284:83::-;24325:5;24350:9;;;;;;;;;;;24343:16;;24284:83;:::o;26844:218::-;26932:4;26949:83;26958:12;:10;:12::i;:::-;26972:7;26981:50;27020:10;26981:11;:25;26993:12;:10;:12::i;:::-;26981:25;;;;;;;;;;;;;;;:34;27007:7;26981:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;26949:8;:83::i;:::-;27050:4;27043:11;;26844:218;;;;:::o;35837:530::-;35895:4;35912:15;35938:16;35963:4;;;;;;;;;;;35957:21;;;35979:4;35957:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35938:46;;35995:20;36025:4;;;;;;;;;;;36018:30;;;36049:4;36018:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35995:59;;36090:1;36079:8;:12;36075:76;;;36121:4;36108:17;;36075:76;36180:1;36165:12;:16;36161:66;;;36211:4;36198:17;;36161:66;36251:13;:19;36265:4;36251:19;;;;;;;;;;;;;;;:34;;;;;;;;;;;;36247:85;;;36315:5;36302:18;;36247:85;36349:10;36342:17;;;;;35837:530;;;:::o;32938:31::-;;;;;;;;;;;;;:::o;24595:119::-;24661:7;24688:9;:18;24698:7;24688:18;;;;;;;;;;;;;;;;24681:25;;24595:119;;;:::o;35664:161::-;35730:5;;;;;;;;;;;35716:19;;:10;:19;;;35708:28;;;;;;35769:4;35747:19;;:26;;;;;;;;;;;;;;;;;;35789:28;35806:10;35789:28;;;;;;;;;;;;;;;;;;;;35664:161::o;32641:64::-;;;;;;;;;;;;;:::o;23559:87::-;23598:13;23631:7;23624:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23559:87;:::o;32566:33::-;;;;;;;;;;;;;:::o;27565:269::-;27658:4;27675:129;27684:12;:10;:12::i;:::-;27698:7;27707:96;27746:15;27707:96;;;;;;;;;;;;;;;;;:11;:25;27719:12;:10;:12::i;:::-;27707:25;;;;;;;;;;;;;;;:34;27733:7;27707:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;27675:8;:129::i;:::-;27822:4;27815:11;;27565:269;;;;:::o;34623:482::-;34702:4;34771:12;34731:13;:25;34745:10;34731:25;;;;;;;;;;;;;;;:37;;;:52;34723:61;;;;;;34809:1;34799:7;:11;34795:250;;;34873:1;34835:35;34856:13;:11;:13::i;:::-;34835:16;34847:3;34835:7;:11;;:16;;;;:::i;:::-;:20;;:35;;;;:::i;:::-;:39;34827:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34997:1;34932:62;34980:13;:11;:13::i;:::-;34932:43;34971:3;34932:34;34944:21;34954:10;34944:9;:21::i;:::-;34932:7;:11;;:34;;;;:::i;:::-;:38;;:43;;;;:::i;:::-;:47;;:62;;;;:::i;:::-;:66;34924:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34795:250;35062:35;35077:10;35089:7;35062:14;:35::i;:::-;35055:42;;34623:482;;;;:::o;32862:30::-;;;;:::o;33933:187::-;34021:5;;;;;;;;;;;34007:19;;:10;:19;;;33999:28;;;;;;34059:7;34038:18;;:28;;;;;;;;;;;;;;;;;;34082:30;34104:7;34082:30;;;;;;;;;;;;;;;;;;;;33933:187;:::o;33560:192::-;33652:5;;;;;;;;;;;33638:19;;:10;:19;;;33630:28;;;;;;33685:8;33669:13;;:24;;;;;;;;;;;;;;;;;;33709:35;33735:8;33709:35;;;;;;;;;;;;;;;;;;;;33560:192;:::o;25165:151::-;25254:7;25281:11;:18;25293:5;25281:18;;;;;;;;;;;;;;;:27;25300:7;25281:27;;;;;;;;;;;;;;;;25274:34;;25165:151;;;;:::o;36379:1054::-;36432:19;;;;;;;;;;;36424:28;;;;;;36472:13;:25;36486:10;36472:25;;;;;;;;;;;;;;;:40;;;;;;;;;;;;36471:41;36463:50;;;;;;36524:16;36549:4;;;;;;;;;;;36543:21;;;36565:10;36543:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36524:52;;36587:20;36617:4;;;;;;;;;;;36610:30;;;36641:10;36610:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36587:65;;36688:1;36677:8;:12;36673:318;;;36750:22;36714:33;36730:16;36743:2;36730:8;:12;;:16;;;;:::i;:::-;36714:11;;:15;;:33;;;;:::i;:::-;:58;36706:67;;;;;;36788:35;36794:10;36806:16;36819:2;36806:8;:12;;:16;;;;:::i;:::-;36788:5;:35::i;:::-;36852:33;36868:16;36881:2;36868:8;:12;;:16;;;;:::i;:::-;36852:11;;:15;;:33;;;;:::i;:::-;36838:11;:47;;;;36953:4;;;;;;;;;;;36946:21;;;36968:10;36946:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36673:318;37020:1;37005:12;:16;37001:317;;;37080:22;37046:31;37064:12;37046:13;;:17;;:31;;;;:::i;:::-;:56;37038:65;;;;;;37118:31;37124:10;37136:12;37118:5;:31::i;:::-;37180;37198:12;37180:13;;:17;;:31;;;;:::i;:::-;37164:13;:47;;;;37278:4;;;;;;;;;;;37271:23;;;37295:10;37271:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37001:317;37381:4;37338:13;:25;37352:10;37338:25;;;;;;;;;;;;;;;:40;;;:47;;;;;;;;;;;;;;;;;;37396:29;37414:10;37396:29;;;;;;;;;;;;;;;;;;;;36379:1054;;:::o;33764:157::-;33845:5;;;;;;;;;;;33831:19;;:10;:19;;;33823:28;;;;;;33869:5;33862:4;;:12;;;;;;;;;;;;;;;;;;33890:23;33907:5;33890:23;;;;;;;;;;;;;;;;;;;;33764:157;:::o;34132:201::-;34228:18;;;;;;;;;;;34214:32;;:10;:32;;;34206:41;;;;;;34258:19;34264:4;34270:6;34258:5;:19::i;:::-;34293:32;34312:4;34318:6;34293:32;;;;;;;;;;;;;;;;;;;;;;;;;;34132:201;;:::o;14189:471::-;14247:7;14497:1;14492;:6;14488:47;;;14522:1;14515:8;;;;14488:47;14547:9;14563:1;14559;:5;14547:17;;14592:1;14587;14583;:5;;;;;;:10;14575:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14651:1;14644:8;;;14189:471;;;;;:::o;12835:181::-;12893:7;12913:9;12929:1;12925;:5;12913:17;;12954:1;12949;:6;;12941:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13007:1;13000:8;;;12835:181;;;;:::o;20806:106::-;20859:15;20894:10;20887:17;;20806:106;:::o;30712:346::-;30831:1;30814:19;;:5;:19;;;;30806:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30912:1;30893:21;;:7;:21;;;;30885:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30996:6;30966:11;:18;30978:5;30966:18;;;;;;;;;;;;;;;:27;30985:7;30966:27;;;;;;;;;;;;;;;:36;;;;31034:7;31018:32;;31027:5;31018:32;;;31043:6;31018:32;;;;;;;;;;;;;;;;;;30712:346;;;:::o;15136:132::-;15194:7;15221:39;15225:1;15228;15221:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;15214:46;;15136:132;;;;:::o;26114:321::-;26220:4;26237:36;26247:6;26255:9;26266:6;26237:9;:36::i;:::-;26284:121;26293:6;26301:12;:10;:12::i;:::-;26315:89;26353:6;26315:89;;;;;;;;;;;;;;;;;:11;:19;26327:6;26315:19;;;;;;;;;;;;;;;:33;26335:12;:10;:12::i;:::-;26315:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;26284:8;:121::i;:::-;26423:4;26416:11;;26114:321;;;;;:::o;13738:192::-;13824:7;13857:1;13852;:6;;13860:12;13844:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13884:9;13900:1;13896;:5;13884:17;;13921:1;13914:8;;;13738:192;;;;;:::o;24927:175::-;25013:4;25030:42;25040:12;:10;:12::i;:::-;25054:9;25065:6;25030:9;:42::i;:::-;25090:4;25083:11;;24927:175;;;;:::o;29145:378::-;29248:1;29229:21;;:7;:21;;;;29221:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29299:49;29328:1;29332:7;29341:6;29299:20;:49::i;:::-;29376:24;29393:6;29376:12;;:16;;:24;;;;:::i;:::-;29361:12;:39;;;;29432:30;29455:6;29432:9;:18;29442:7;29432:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;29411:9;:18;29421:7;29411:18;;;;;;;;;;;;;;;:51;;;;29499:7;29478:37;;29495:1;29478:37;;;29508:6;29478:37;;;;;;;;;;;;;;;;;;29145:378;;:::o;15764:278::-;15850:7;15882:1;15878;:5;15885:12;15870:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15909:9;15925:1;15921;:5;;;;;;15909:17;;16033:1;16026:8;;;15764:278;;;;;:::o;28324:539::-;28448:1;28430:20;;:6;:20;;;;28422:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28532:1;28511:23;;:9;:23;;;;28503:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28587:47;28608:6;28616:9;28627:6;28587:20;:47::i;:::-;28667:71;28689:6;28667:71;;;;;;;;;;;;;;;;;:9;:17;28677:6;28667:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;28647:9;:17;28657:6;28647:17;;;;;;;;;;;;;;;:91;;;;28772:32;28797:6;28772:9;:20;28782:9;28772:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;28749:9;:20;28759:9;28749:20;;;;;;;;;;;;;;;:55;;;;28837:9;28820:35;;28829:6;28820:35;;;28848:6;28820:35;;;;;;;;;;;;;;;;;;28324:539;;;:::o;32083:92::-;;;;:::o

Swarm Source

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