ETH Price: $3,333.77 (+3.92%)

Token

Prospect Reserve (PRES)
 

Overview

Max Total Supply

96.489862728233196016 PRES

Holders

9

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.00268792881086072 PRES

Value
$0.00
0xef9eff0479d57032cda12e0d6bbedb55b9b8c9e7
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:
ProspectReserveToken

Compiler Version
v0.6.2+commit.bacdbe57

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

// SPDX-License-Identifier: MIT

pragma solidity 0.6.2;

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

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

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

// SPDX-License-Identifier: MIT

pragma solidity 0.6.2;

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

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

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

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

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

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

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

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

// SPDX-License-Identifier: MIT

pragma solidity 0.6.2;

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

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

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

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

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

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

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

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

// SPDX-License-Identifier: MIT

pragma solidity 0.6.2;

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

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

// SPDX-License-Identifier: MIT

pragma solidity 0.6.2;

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

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

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

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

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

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

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

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

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

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

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

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

// SPDX-License-Identifier: MIT

pragma solidity 0.6.2;





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

    mapping (address => uint256) internal _balances;

    mapping (address => mapping (address => uint256)) internal _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-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

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

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

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

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

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

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

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

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

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

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

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

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

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

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

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

// SPDX-License-Identifier: MIT

pragma solidity 0.6.2;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor () internal {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: contracts/ProspectReserveToken.sol

pragma solidity 0.6.2;

interface UniswapV2Pool {
  function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
}

contract ProspectReserveToken is Context, ERC20, Ownable, ReentrancyGuard {
  using SafeMath for uint256;
  using Address for address payable;

  uint256 public constant maxSupply = 10000000000000000000000;
  
  bool public dynamicFeeEnabled = true;
  
  address payable public gemAddress;
  address public poolAddress;
  address public mineAddress;
  address payable public devAddress;

  function setDynamicFeeEnabled(bool _newState) public onlyOwner {
    dynamicFeeEnabled = _newState;
  }
  
  function setGemAddress(address payable _address) public onlyOwner {
    gemAddress = _address;
  }

  function setMineAddress(address payable _address) public onlyOwner {
    mineAddress = _address;
  }

  function setPoolAddress(address _address) public onlyOwner {
    poolAddress = _address;
  }
  
  function setDevAddress(address payable _address) public {
    require(_msgSender() == address(devAddress), "Only Dev can change their address");
    devAddress = _address;
  }

  constructor() public payable ERC20("Prospect Reserve", "PRES") {
    require(msg.value == 0.005 ether, "Set base price of 0.005 $ETH per $PRES");
    devAddress = _msgSender();
    _mint(_msgSender(), 1000000000000000000);
  }

  function transfer(address recipient, uint256 amount) public override nonReentrant returns (bool) {
    uint256 fee = removeFee(amount).sub(amount);
    uint256 feeInWei = fee.mul(baseValue()).div(1e18);
    uint256 splitPortion = feeInWei.mul(4).div(10);
    uint256 devPortion = feeInWei.sub(splitPortion.mul(2));
    gemAddress.sendValue(splitPortion);
    devAddress.sendValue(devPortion);
    _burn(_msgSender(), fee);
    _transfer(_msgSender(), recipient, amount);
    return true;
  }

  function transferFrom(address sender, address recipient, uint256 amount) public override nonReentrant returns (bool) {
    uint256 fee = removeFee(amount).sub(amount);
    uint256 feeInWei = fee.mul(baseValue()).div(1e18);
    uint256 splitPortion = feeInWei.mul(4).div(10);
    uint256 devPortion = feeInWei.sub(splitPortion.mul(2));
    gemAddress.sendValue(splitPortion);
    devAddress.sendValue(devPortion);
    _burn(sender, fee);
    _transfer(sender, recipient, amount);
    _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
    return true;
  }

  function balanceOf(address account) public view returns (uint256) {
      return _balances[account].mul(fee()).div(1e18);
  }
  
  function removeFee(uint256 amount) public view returns (uint256) {
    return amount.mul(1e18).div(fee());
  }
  
  function addFee(uint256 amount) public view returns (uint256) {
    return amount.mul(fee()).div(1e18);
  }

  function baseValue() public view returns (uint256) {
    return address(this).balance.mul(1e18).div(totalSupply());
  }

  function mint() nonReentrant public payable {
    uint256 mintAmount = uint256(msg.value).mul(1e18).div(address(this).balance.sub(msg.value).mul(1e18).div(totalSupply()));
    require(mintAmount.add(totalSupply()) <= maxSupply, "Cannot mint supply above 10k");
    _mint(_msgSender(), mintAmount);
  }
  
  function redeem(uint256 amount) nonReentrant public {
    require(amount <= balanceOf(_msgSender()), "Amount greater than balance");
    uint256 actualBurn = removeFee(amount);
    uint256 totalEther = actualBurn.mul(baseValue()).div(1e18);
    uint256 redeemAmount = totalEther.mul(9).div(10);
    uint256 gemTransfer = totalEther.sub(redeemAmount).mul(4).div(10);
    uint256 devTransfer = totalEther.sub(redeemAmount).sub(gemTransfer.mul(2));
    _burn(_msgSender(), actualBurn);
    _msgSender().sendValue(redeemAmount);
    gemAddress.sendValue(gemTransfer);
    devAddress.sendValue(devTransfer);
  }

  function extract(uint256 amount) nonReentrant public {
    require(_msgSender() == mineAddress);
    uint256 actualBurn = removeFee(amount);
    uint256 totalEther = actualBurn.mul(baseValue()).div(1e18);
    _burn(_msgSender(), actualBurn);
    gemAddress.sendValue(totalEther);
  }

  function fee() public view returns (uint256) {
    if (dynamicFeeEnabled == true && _balances[poolAddress] >= 1e19) {
      (uint112 _reserve0,,) = UniswapV2Pool(poolAddress).getReserves();
      uint256 _reserve1 = _balances[poolAddress];
      uint256 marketPrice = getAmountIn(1e18, uint256(_reserve0), _reserve1);
      uint256 marketFee = marketPrice.mul(10000).div(baseValue()).div(2);
      if (marketFee < 5000) {
        return 0.95e18;
      } else if (marketFee > 50000) {
        return 0.5e18;
      } else {
        return uint256(1e18).sub(marketFee.mul(1e13));
      }
    } else {
        return 0.95e18;
    }
  }

  function getAmountIn(uint256 amountOut, uint256 reserveIn, uint256 reserveOut) internal pure returns (uint256 amountIn) {
    require(amountOut > 0, 'UniswapV2Library: INSUFFICIENT_OUTPUT_AMOUNT');
    require(reserveIn > 0 && reserveOut > 0, 'UniswapV2Library: INSUFFICIENT_LIQUIDITY');
    uint256 numerator = reserveIn.mul(amountOut).mul(1000);
    uint256 denominator = reserveOut.sub(amountOut).mul(997);
    amountIn = (numerator / denominator).add(1);
  }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"addFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"devAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dynamicFeeEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"extract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"gemAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"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":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mineAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"redeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"removeFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_address","type":"address"}],"name":"setDevAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_newState","type":"bool"}],"name":"setDynamicFeeEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_address","type":"address"}],"name":"setGemAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_address","type":"address"}],"name":"setMineAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setPoolAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600760006101000a81548160ff0219169083151502179055506040518060400160405280601081526020017f50726f73706563742052657365727665000000000000000000000000000000008152506040518060400160405280600481526020017f50524553000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000a3929190620004e8565b508060049080519060200190620000bc929190620004e8565b506012600560006101000a81548160ff021916908360ff16021790555050506000620000ed6200027460201b60201c565b905080600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35060016006819055506611c37937e080003414620001f5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018062003dc26026913960400191505060405180910390fd5b620002056200027460201b60201c565b600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200026e620002596200027460201b60201c565b670de0b6b3a76400006200027c60201b60201c565b62000597565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000320576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b62000334600083836200045a60201b60201c565b62000350816002546200045f60201b62002ad51790919060201c565b600281905550620003ae816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200045f60201b62002ad51790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b505050565b600080828401905083811015620004de576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200052b57805160ff19168380011785556200055c565b828001600101855582156200055c579182015b828111156200055b5782518255916020019190600101906200053e565b5b5090506200056b91906200056f565b5090565b6200059491905b808211156200059057600081600090555060010162000576565b5090565b90565b61381b80620005a76000396000f3fe6080604052600436106101e35760003560e01c806385b3978211610102578063d5abeb0111610095578063dead17b311610064578063dead17b314610aef578063e9e15b4f14610b46578063ebda0c0514610b97578063f2fde38b14610bc6576101e3565b8063d5abeb01146109d9578063db006a7514610a04578063dd62ed3e14610a3f578063ddca3f4314610ac4576101e3565b8063a9059cbb116100d1578063a9059cbb1461086d578063be2bd96c146108e0578063cb513a0614610937578063d0d41fe114610988576101e3565b806385b39782146106d85780638da5cb5b1461071357806395d89b411461076a578063a457c2d7146107fa576101e3565b8063395093511161017a578063702420151161014957806370242015146105ce57806370a082311461061f578063715018a6146106845780637948c3251461069b576101e3565b8063395093511461048a5780633ad10ef6146104fd578063499a28181461055457806361bb9c52146105a3576101e3565b806318160ddd116101b657806318160ddd1461034c57806321307bac1461037757806323b872dd146103c6578063313ce56714610459576101e3565b806306fdde03146101e8578063095ea7b3146102785780631249c58b146102eb5780631755ff21146102f5575b600080fd5b3480156101f457600080fd5b506101fd610c17565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561023d578082015181840152602081019050610222565b50505050905090810190601f16801561026a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561028457600080fd5b506102d16004803603604081101561029b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610cb9565b604051808215151515815260200191505060405180910390f35b6102f3610cd7565b005b34801561030157600080fd5b5061030a610e83565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561035857600080fd5b50610361610ea9565b6040518082815260200191505060405180910390f35b34801561038357600080fd5b506103b06004803603602081101561039a57600080fd5b8101908080359060200190929190505050610eb3565b6040518082815260200191505060405180910390f35b3480156103d257600080fd5b5061043f600480360360608110156103e957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ef0565b604051808215151515815260200191505060405180910390f35b34801561046557600080fd5b5061046e6111a2565b604051808260ff1660ff16815260200191505060405180910390f35b34801561049657600080fd5b506104e3600480360360408110156104ad57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111b9565b604051808215151515815260200191505060405180910390f35b34801561050957600080fd5b5061051261126c565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561056057600080fd5b5061058d6004803603602081101561057757600080fd5b8101908080359060200190929190505050611292565b6040518082815260200191505060405180910390f35b3480156105af57600080fd5b506105b86112cf565b6040518082815260200191505060405180910390f35b3480156105da57600080fd5b5061061d600480360360208110156105f157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061130a565b005b34801561062b57600080fd5b5061066e6004803603602081101561064257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611418565b6040518082815260200191505060405180910390f35b34801561069057600080fd5b50610699611493565b005b3480156106a757600080fd5b506106d6600480360360208110156106be57600080fd5b8101908080351515906020019092919050505061161e565b005b3480156106e457600080fd5b50610711600480360360208110156106fb57600080fd5b8101908080359060200190929190505050611705565b005b34801561071f57600080fd5b50610728611895565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561077657600080fd5b5061077f6118bf565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156107bf5780820151818401526020810190506107a4565b50505050905090810190601f1680156107ec5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561080657600080fd5b506108536004803603604081101561081d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611961565b604051808215151515815260200191505060405180910390f35b34801561087957600080fd5b506108c66004803603604081101561089057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611a2e565b604051808215151515815260200191505060405180910390f35b3480156108ec57600080fd5b506108f5611c2c565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561094357600080fd5b506109866004803603602081101561095a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c52565b005b34801561099457600080fd5b506109d7600480360360208110156109ab57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d60565b005b3480156109e557600080fd5b506109ee611e51565b6040518082815260200191505060405180910390f35b348015610a1057600080fd5b50610a3d60048036036020811015610a2757600080fd5b8101908080359060200190929190505050611e5f565b005b348015610a4b57600080fd5b50610aae60048036036040811015610a6257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612135565b6040518082815260200191505060405180910390f35b348015610ad057600080fd5b50610ad96121bc565b6040518082815260200191505060405180910390f35b348015610afb57600080fd5b50610b04612465565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610b5257600080fd5b50610b9560048036036020811015610b6957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061248b565b005b348015610ba357600080fd5b50610bac612599565b604051808215151515815260200191505060405180910390f35b348015610bd257600080fd5b50610c1560048036036020811015610be957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506125ac565b005b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610caf5780601f10610c8457610100808354040283529160200191610caf565b820191906000526020600020905b815481529060010190602001808311610c9257829003601f168201915b5050505050905090565b6000610ccd610cc66127bc565b84846127c4565b6001905092915050565b60026006541415610d50576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b60026006819055506000610dcc610da3610d68610ea9565b610d95670de0b6b3a7640000610d8734476129bb90919063ffffffff16565b612a0590919063ffffffff16565b612a8b90919063ffffffff16565b610dbe670de0b6b3a764000034612a0590919063ffffffff16565b612a8b90919063ffffffff16565b905069021e19e0c9bab2400000610df3610de4610ea9565b83612ad590919063ffffffff16565b1115610e67576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616e6e6f74206d696e7420737570706c792061626f76652031306b0000000081525060200191505060405180910390fd5b610e78610e726127bc565b82612b5d565b506001600681905550565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b6000610ee9670de0b6b3a7640000610edb610ecc6121bc565b85612a0590919063ffffffff16565b612a8b90919063ffffffff16565b9050919050565b600060026006541415610f6b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b60026006819055506000610f9083610f8285611292565b6129bb90919063ffffffff16565b90506000610fc8670de0b6b3a7640000610fba610fab6112cf565b85612a0590919063ffffffff16565b612a8b90919063ffffffff16565b90506000610ff3600a610fe5600485612a0590919063ffffffff16565b612a8b90919063ffffffff16565b9050600061101d61100e600284612a0590919063ffffffff16565b846129bb90919063ffffffff16565b905061106a82600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612d2490919063ffffffff16565b6110b581600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612d2490919063ffffffff16565b6110bf8885612e5e565b6110ca888888613022565b61118b886110d66127bc565b6111868960405180606001604052806028815260200161372f60289139600160008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061113c6127bc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132e39092919063ffffffff16565b6127c4565b600194505050505060016006819055509392505050565b6000600560009054906101000a900460ff16905090565b60006112626111c66127bc565b8461125d85600160006111d76127bc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ad590919063ffffffff16565b6127c4565b6001905092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006112c861129f6121bc565b6112ba670de0b6b3a764000085612a0590919063ffffffff16565b612a8b90919063ffffffff16565b9050919050565b60006113056112dc610ea9565b6112f7670de0b6b3a764000047612a0590919063ffffffff16565b612a8b90919063ffffffff16565b905090565b6113126127bc565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061148c670de0b6b3a764000061147e6114316121bc565b6000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a0590919063ffffffff16565b612a8b90919063ffffffff16565b9050919050565b61149b6127bc565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461155d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6116266127bc565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600760006101000a81548160ff02191690831515021790555050565b6002600654141561177e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600681905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166117c76127bc565b73ffffffffffffffffffffffffffffffffffffffff16146117e757600080fd5b60006117f282611292565b9050600061182a670de0b6b3a764000061181c61180d6112cf565b85612a0590919063ffffffff16565b612a8b90919063ffffffff16565b905061183d6118376127bc565b83612e5e565b61188881600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612d2490919063ffffffff16565b5050600160068190555050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156119575780601f1061192c57610100808354040283529160200191611957565b820191906000526020600020905b81548152906001019060200180831161193a57829003601f168201915b5050505050905090565b6000611a2461196e6127bc565b84611a1f856040518060600160405280602581526020016137c160259139600160006119986127bc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132e39092919063ffffffff16565b6127c4565b6001905092915050565b600060026006541415611aa9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b60026006819055506000611ace83611ac085611292565b6129bb90919063ffffffff16565b90506000611b06670de0b6b3a7640000611af8611ae96112cf565b85612a0590919063ffffffff16565b612a8b90919063ffffffff16565b90506000611b31600a611b23600485612a0590919063ffffffff16565b612a8b90919063ffffffff16565b90506000611b5b611b4c600284612a0590919063ffffffff16565b846129bb90919063ffffffff16565b9050611ba882600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612d2490919063ffffffff16565b611bf381600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612d2490919063ffffffff16565b611c04611bfe6127bc565b85612e5e565b611c16611c0f6127bc565b8888613022565b6001945050505050600160068190555092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611c5a6127bc565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d1c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611da16127bc565b73ffffffffffffffffffffffffffffffffffffffff1614611e0d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806136396021913960400191505060405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b69021e19e0c9bab240000081565b60026006541415611ed8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600681905550611ef0611eeb6127bc565b611418565b811115611f65576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f416d6f756e742067726561746572207468616e2062616c616e6365000000000081525060200191505060405180910390fd5b6000611f7082611292565b90506000611fa8670de0b6b3a7640000611f9a611f8b6112cf565b85612a0590919063ffffffff16565b612a8b90919063ffffffff16565b90506000611fd3600a611fc5600985612a0590919063ffffffff16565b612a8b90919063ffffffff16565b90506000612010600a6120026004611ff486886129bb90919063ffffffff16565b612a0590919063ffffffff16565b612a8b90919063ffffffff16565b9050600061204c61202b600284612a0590919063ffffffff16565b61203e85876129bb90919063ffffffff16565b6129bb90919063ffffffff16565b905061205f6120596127bc565b86612e5e565b61208f8361206b6127bc565b73ffffffffffffffffffffffffffffffffffffffff16612d2490919063ffffffff16565b6120da82600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612d2490919063ffffffff16565b61212581600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612d2490919063ffffffff16565b5050505050600160068190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600060011515600760009054906101000a900460ff1615151480156122495750678ac7230489e80000600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410155b15612456576000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b1580156122b857600080fd5b505afa1580156122cc573d6000803e3d6000fd5b505050506040513d60608110156122e257600080fd5b81019080805190602001909291908051906020019092919080519060200190929190505050505090506000806000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000612395670de0b6b3a7640000846dffffffffffffffffffffffffffff16846133a3565b905060006123da60026123cc6123a96112cf565b6123be61271087612a0590919063ffffffff16565b612a8b90919063ffffffff16565b612a8b90919063ffffffff16565b90506113888110156123fa57670d2f13f7789f0000945050505050612462565b61c350811115612418576706f05b59d3b20000945050505050612462565b61244b6124346509184e72a00083612a0590919063ffffffff16565b670de0b6b3a76400006129bb90919063ffffffff16565b945050505050612462565b670d2f13f7789f000090505b90565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6124936127bc565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612555576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600760009054906101000a900460ff1681565b6125b46127bc565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612676576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806135f16026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561284a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061379d6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806136176022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b60006129fd83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506132e3565b905092915050565b600080831415612a185760009050612a85565b6000828402905082848281612a2957fe5b0414612a80576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061370e6021913960400191505060405180910390fd5b809150505b92915050565b6000612acd83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506134e0565b905092915050565b600080828401905083811015612b53576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c00576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b612c0c600083836135a6565b612c2181600254612ad590919063ffffffff16565b600281905550612c78816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ad590919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b80471015612d9a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a20696e73756666696369656e742062616c616e636500000081525060200191505060405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405180600001905060006040518083038185875af1925050503d8060008114612dfa576040519150601f19603f3d011682016040523d82523d6000602084013e612dff565b606091505b5050905080612e59576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603a8152602001806136ac603a913960400191505060405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ee4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806137576021913960400191505060405180910390fd5b612ef0826000836135a6565b612f5b816040518060600160405280602281526020016135cf602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132e39092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612fb2816002546129bb90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156130a8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806137786025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561312e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806135ac6023913960400191505060405180910390fd5b6131398383836135a6565b6131a481604051806060016040528060268152602001613686602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132e39092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613237816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ad590919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290613390576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561335557808201518184015260208101905061333a565b50505050905090810190601f1680156133825780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008084116133fd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061365a602c913960400191505060405180910390fd5b60008311801561340d5750600082115b613462576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806136e66028913960400191505060405180910390fd5b600061348b6103e861347d8787612a0590919063ffffffff16565b612a0590919063ffffffff16565b905060006134b66103e56134a888876129bb90919063ffffffff16565b612a0590919063ffffffff16565b90506134d560018284816134c657fe5b04612ad590919063ffffffff16565b925050509392505050565b6000808311829061358c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613551578082015181840152602081019050613536565b50505050905090810190601f16801561357e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161359857fe5b049050809150509392505050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734f6e6c79204465762063616e206368616e67652074686569722061646472657373556e697377617056324c6962726172793a20494e53554646494349454e545f4f55545055545f414d4f554e5445524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416464726573733a20756e61626c6520746f2073656e642076616c75652c20726563697069656e74206d61792068617665207265766572746564556e697377617056324c6962726172793a20494e53554646494349454e545f4c4951554944495459536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212208221d8846063e253d39f9d960d1acf4dda912ba5529ed5ab5b0e6bef5ad2fcb064736f6c634300060200335365742062617365207072696365206f6620302e303035202445544820706572202450524553

Deployed Bytecode

0x6080604052600436106101e35760003560e01c806385b3978211610102578063d5abeb0111610095578063dead17b311610064578063dead17b314610aef578063e9e15b4f14610b46578063ebda0c0514610b97578063f2fde38b14610bc6576101e3565b8063d5abeb01146109d9578063db006a7514610a04578063dd62ed3e14610a3f578063ddca3f4314610ac4576101e3565b8063a9059cbb116100d1578063a9059cbb1461086d578063be2bd96c146108e0578063cb513a0614610937578063d0d41fe114610988576101e3565b806385b39782146106d85780638da5cb5b1461071357806395d89b411461076a578063a457c2d7146107fa576101e3565b8063395093511161017a578063702420151161014957806370242015146105ce57806370a082311461061f578063715018a6146106845780637948c3251461069b576101e3565b8063395093511461048a5780633ad10ef6146104fd578063499a28181461055457806361bb9c52146105a3576101e3565b806318160ddd116101b657806318160ddd1461034c57806321307bac1461037757806323b872dd146103c6578063313ce56714610459576101e3565b806306fdde03146101e8578063095ea7b3146102785780631249c58b146102eb5780631755ff21146102f5575b600080fd5b3480156101f457600080fd5b506101fd610c17565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561023d578082015181840152602081019050610222565b50505050905090810190601f16801561026a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561028457600080fd5b506102d16004803603604081101561029b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610cb9565b604051808215151515815260200191505060405180910390f35b6102f3610cd7565b005b34801561030157600080fd5b5061030a610e83565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561035857600080fd5b50610361610ea9565b6040518082815260200191505060405180910390f35b34801561038357600080fd5b506103b06004803603602081101561039a57600080fd5b8101908080359060200190929190505050610eb3565b6040518082815260200191505060405180910390f35b3480156103d257600080fd5b5061043f600480360360608110156103e957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ef0565b604051808215151515815260200191505060405180910390f35b34801561046557600080fd5b5061046e6111a2565b604051808260ff1660ff16815260200191505060405180910390f35b34801561049657600080fd5b506104e3600480360360408110156104ad57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111b9565b604051808215151515815260200191505060405180910390f35b34801561050957600080fd5b5061051261126c565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561056057600080fd5b5061058d6004803603602081101561057757600080fd5b8101908080359060200190929190505050611292565b6040518082815260200191505060405180910390f35b3480156105af57600080fd5b506105b86112cf565b6040518082815260200191505060405180910390f35b3480156105da57600080fd5b5061061d600480360360208110156105f157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061130a565b005b34801561062b57600080fd5b5061066e6004803603602081101561064257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611418565b6040518082815260200191505060405180910390f35b34801561069057600080fd5b50610699611493565b005b3480156106a757600080fd5b506106d6600480360360208110156106be57600080fd5b8101908080351515906020019092919050505061161e565b005b3480156106e457600080fd5b50610711600480360360208110156106fb57600080fd5b8101908080359060200190929190505050611705565b005b34801561071f57600080fd5b50610728611895565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561077657600080fd5b5061077f6118bf565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156107bf5780820151818401526020810190506107a4565b50505050905090810190601f1680156107ec5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561080657600080fd5b506108536004803603604081101561081d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611961565b604051808215151515815260200191505060405180910390f35b34801561087957600080fd5b506108c66004803603604081101561089057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611a2e565b604051808215151515815260200191505060405180910390f35b3480156108ec57600080fd5b506108f5611c2c565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561094357600080fd5b506109866004803603602081101561095a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c52565b005b34801561099457600080fd5b506109d7600480360360208110156109ab57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d60565b005b3480156109e557600080fd5b506109ee611e51565b6040518082815260200191505060405180910390f35b348015610a1057600080fd5b50610a3d60048036036020811015610a2757600080fd5b8101908080359060200190929190505050611e5f565b005b348015610a4b57600080fd5b50610aae60048036036040811015610a6257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612135565b6040518082815260200191505060405180910390f35b348015610ad057600080fd5b50610ad96121bc565b6040518082815260200191505060405180910390f35b348015610afb57600080fd5b50610b04612465565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610b5257600080fd5b50610b9560048036036020811015610b6957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061248b565b005b348015610ba357600080fd5b50610bac612599565b604051808215151515815260200191505060405180910390f35b348015610bd257600080fd5b50610c1560048036036020811015610be957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506125ac565b005b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610caf5780601f10610c8457610100808354040283529160200191610caf565b820191906000526020600020905b815481529060010190602001808311610c9257829003601f168201915b5050505050905090565b6000610ccd610cc66127bc565b84846127c4565b6001905092915050565b60026006541415610d50576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b60026006819055506000610dcc610da3610d68610ea9565b610d95670de0b6b3a7640000610d8734476129bb90919063ffffffff16565b612a0590919063ffffffff16565b612a8b90919063ffffffff16565b610dbe670de0b6b3a764000034612a0590919063ffffffff16565b612a8b90919063ffffffff16565b905069021e19e0c9bab2400000610df3610de4610ea9565b83612ad590919063ffffffff16565b1115610e67576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616e6e6f74206d696e7420737570706c792061626f76652031306b0000000081525060200191505060405180910390fd5b610e78610e726127bc565b82612b5d565b506001600681905550565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b6000610ee9670de0b6b3a7640000610edb610ecc6121bc565b85612a0590919063ffffffff16565b612a8b90919063ffffffff16565b9050919050565b600060026006541415610f6b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b60026006819055506000610f9083610f8285611292565b6129bb90919063ffffffff16565b90506000610fc8670de0b6b3a7640000610fba610fab6112cf565b85612a0590919063ffffffff16565b612a8b90919063ffffffff16565b90506000610ff3600a610fe5600485612a0590919063ffffffff16565b612a8b90919063ffffffff16565b9050600061101d61100e600284612a0590919063ffffffff16565b846129bb90919063ffffffff16565b905061106a82600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612d2490919063ffffffff16565b6110b581600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612d2490919063ffffffff16565b6110bf8885612e5e565b6110ca888888613022565b61118b886110d66127bc565b6111868960405180606001604052806028815260200161372f60289139600160008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061113c6127bc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132e39092919063ffffffff16565b6127c4565b600194505050505060016006819055509392505050565b6000600560009054906101000a900460ff16905090565b60006112626111c66127bc565b8461125d85600160006111d76127bc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ad590919063ffffffff16565b6127c4565b6001905092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006112c861129f6121bc565b6112ba670de0b6b3a764000085612a0590919063ffffffff16565b612a8b90919063ffffffff16565b9050919050565b60006113056112dc610ea9565b6112f7670de0b6b3a764000047612a0590919063ffffffff16565b612a8b90919063ffffffff16565b905090565b6113126127bc565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061148c670de0b6b3a764000061147e6114316121bc565b6000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a0590919063ffffffff16565b612a8b90919063ffffffff16565b9050919050565b61149b6127bc565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461155d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6116266127bc565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600760006101000a81548160ff02191690831515021790555050565b6002600654141561177e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600681905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166117c76127bc565b73ffffffffffffffffffffffffffffffffffffffff16146117e757600080fd5b60006117f282611292565b9050600061182a670de0b6b3a764000061181c61180d6112cf565b85612a0590919063ffffffff16565b612a8b90919063ffffffff16565b905061183d6118376127bc565b83612e5e565b61188881600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612d2490919063ffffffff16565b5050600160068190555050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156119575780601f1061192c57610100808354040283529160200191611957565b820191906000526020600020905b81548152906001019060200180831161193a57829003601f168201915b5050505050905090565b6000611a2461196e6127bc565b84611a1f856040518060600160405280602581526020016137c160259139600160006119986127bc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132e39092919063ffffffff16565b6127c4565b6001905092915050565b600060026006541415611aa9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b60026006819055506000611ace83611ac085611292565b6129bb90919063ffffffff16565b90506000611b06670de0b6b3a7640000611af8611ae96112cf565b85612a0590919063ffffffff16565b612a8b90919063ffffffff16565b90506000611b31600a611b23600485612a0590919063ffffffff16565b612a8b90919063ffffffff16565b90506000611b5b611b4c600284612a0590919063ffffffff16565b846129bb90919063ffffffff16565b9050611ba882600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612d2490919063ffffffff16565b611bf381600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612d2490919063ffffffff16565b611c04611bfe6127bc565b85612e5e565b611c16611c0f6127bc565b8888613022565b6001945050505050600160068190555092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611c5a6127bc565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d1c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611da16127bc565b73ffffffffffffffffffffffffffffffffffffffff1614611e0d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806136396021913960400191505060405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b69021e19e0c9bab240000081565b60026006541415611ed8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600681905550611ef0611eeb6127bc565b611418565b811115611f65576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f416d6f756e742067726561746572207468616e2062616c616e6365000000000081525060200191505060405180910390fd5b6000611f7082611292565b90506000611fa8670de0b6b3a7640000611f9a611f8b6112cf565b85612a0590919063ffffffff16565b612a8b90919063ffffffff16565b90506000611fd3600a611fc5600985612a0590919063ffffffff16565b612a8b90919063ffffffff16565b90506000612010600a6120026004611ff486886129bb90919063ffffffff16565b612a0590919063ffffffff16565b612a8b90919063ffffffff16565b9050600061204c61202b600284612a0590919063ffffffff16565b61203e85876129bb90919063ffffffff16565b6129bb90919063ffffffff16565b905061205f6120596127bc565b86612e5e565b61208f8361206b6127bc565b73ffffffffffffffffffffffffffffffffffffffff16612d2490919063ffffffff16565b6120da82600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612d2490919063ffffffff16565b61212581600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612d2490919063ffffffff16565b5050505050600160068190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600060011515600760009054906101000a900460ff1615151480156122495750678ac7230489e80000600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410155b15612456576000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b1580156122b857600080fd5b505afa1580156122cc573d6000803e3d6000fd5b505050506040513d60608110156122e257600080fd5b81019080805190602001909291908051906020019092919080519060200190929190505050505090506000806000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000612395670de0b6b3a7640000846dffffffffffffffffffffffffffff16846133a3565b905060006123da60026123cc6123a96112cf565b6123be61271087612a0590919063ffffffff16565b612a8b90919063ffffffff16565b612a8b90919063ffffffff16565b90506113888110156123fa57670d2f13f7789f0000945050505050612462565b61c350811115612418576706f05b59d3b20000945050505050612462565b61244b6124346509184e72a00083612a0590919063ffffffff16565b670de0b6b3a76400006129bb90919063ffffffff16565b945050505050612462565b670d2f13f7789f000090505b90565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6124936127bc565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612555576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600760009054906101000a900460ff1681565b6125b46127bc565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612676576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806135f16026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561284a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061379d6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806136176022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b60006129fd83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506132e3565b905092915050565b600080831415612a185760009050612a85565b6000828402905082848281612a2957fe5b0414612a80576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061370e6021913960400191505060405180910390fd5b809150505b92915050565b6000612acd83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506134e0565b905092915050565b600080828401905083811015612b53576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c00576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b612c0c600083836135a6565b612c2181600254612ad590919063ffffffff16565b600281905550612c78816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ad590919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b80471015612d9a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a20696e73756666696369656e742062616c616e636500000081525060200191505060405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405180600001905060006040518083038185875af1925050503d8060008114612dfa576040519150601f19603f3d011682016040523d82523d6000602084013e612dff565b606091505b5050905080612e59576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603a8152602001806136ac603a913960400191505060405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ee4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806137576021913960400191505060405180910390fd5b612ef0826000836135a6565b612f5b816040518060600160405280602281526020016135cf602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132e39092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612fb2816002546129bb90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156130a8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806137786025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561312e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806135ac6023913960400191505060405180910390fd5b6131398383836135a6565b6131a481604051806060016040528060268152602001613686602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132e39092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613237816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ad590919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290613390576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561335557808201518184015260208101905061333a565b50505050905090810190601f1680156133825780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008084116133fd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061365a602c913960400191505060405180910390fd5b60008311801561340d5750600082115b613462576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806136e66028913960400191505060405180910390fd5b600061348b6103e861347d8787612a0590919063ffffffff16565b612a0590919063ffffffff16565b905060006134b66103e56134a888876129bb90919063ffffffff16565b612a0590919063ffffffff16565b90506134d560018284816134c657fe5b04612ad590919063ffffffff16565b925050509392505050565b6000808311829061358c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613551578082015181840152602081019050613536565b50505050905090810190601f16801561357e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161359857fe5b049050809150509392505050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734f6e6c79204465762063616e206368616e67652074686569722061646472657373556e697377617056324c6962726172793a20494e53554646494349454e545f4f55545055545f414d4f554e5445524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416464726573733a20756e61626c6520746f2073656e642076616c75652c20726563697069656e74206d61792068617665207265766572746564556e697377617056324c6962726172793a20494e53554646494349454e545f4c4951554944495459536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212208221d8846063e253d39f9d960d1acf4dda912ba5529ed5ab5b0e6bef5ad2fcb064736f6c63430006020033

Deployed Bytecode Sourcemap

31292:5256:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19721:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19721:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;19721:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21645:169;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21645:169:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21645:169:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;34191:305;;;:::i;:::-;;31593:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31593:26:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20796:100;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20796:100:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33949:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;33949:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;33949:109:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33051:637;;8:9:-1;5:2;;;30:1;27;20:12;5:2;33051:637:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;33051:637:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20648:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20648:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;23018:218;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23018:218:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23018:218:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;31655:33;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31655:33:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;33829:112;;8:9:-1;5:2;;;30:1;27;20:12;5:2;33829:112:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;33829:112:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34064:121;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34064:121:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31914:102;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31914:102:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;31914:102:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;33694:127;;8:9:-1;5:2;;;30:1;27;20:12;5:2;33694:127:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;33694:127:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2776:148;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2776:148:0;;;:::i;:::-;;31695:105;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31695:105:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;31695:105:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;35127:289;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35127:289:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;35127:289:0;;;;;;;;;;;;;;;;;:::i;:::-;;2134:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2134:79:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;19923:87;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19923:87:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;19923:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23739:269;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23739:269:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23739:269:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;32544:501;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32544:501:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;32544:501:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;31624:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31624:26:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;31808:100;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31808:100:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;31808:100:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;32124:178;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32124:178:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;32124:178:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;31442:59;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31442:59:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34504:617;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34504:617:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;34504:617:0;;;;;;;;;;;;;;;;;:::i;:::-;;21347:151;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21347:151:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21347:151:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;35422:647;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35422:647:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31555:33;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31555:33:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;32022:94;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32022:94:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;32022:94:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;31510:36;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31510:36:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;3079:244;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3079:244:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3079:244:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;19721:83;19758:13;19791:5;19784:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19721:83;:::o;21645:169::-;21728:4;21745:39;21754:12;:10;:12::i;:::-;21768:7;21777:6;21745:8;:39::i;:::-;21802:4;21795:11;;21645:169;;;;:::o;34191:305::-;30119:1;30725:7;;:19;;30717:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30119:1;30858:7;:18;;;;34242::::1;34263:99;34296:65;34347:13;:11;:13::i;:::-;34296:46;34337:4;34296:36;34322:9;34296:21;:25;;:36;;;;:::i;:::-;:40;;:46;;;;:::i;:::-;:50;;:65;;;;:::i;:::-;34263:28;34286:4;34271:9;34263:22;;:28;;;;:::i;:::-;:32;;:99;;;;:::i;:::-;34242:120;;31478:23;34377:29;34392:13;:11;:13::i;:::-;34377:10;:14;;:29;;;;:::i;:::-;:42;;34369:83;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;34459:31;34465:12;:10;:12::i;:::-;34479:10;34459:5;:31::i;:::-;30889:1;30075::::0;31037:7;:22;;;;34191:305::o;31593:26::-;;;;;;;;;;;;;:::o;20796:100::-;20849:7;20876:12;;20869:19;;20796:100;:::o;33949:109::-;34002:7;34025:27;34047:4;34025:17;34036:5;:3;:5::i;:::-;34025:6;:10;;:17;;;;:::i;:::-;:21;;:27;;;;:::i;:::-;34018:34;;33949:109;;;:::o;33051:637::-;33162:4;30119:1;30725:7;;:19;;30717:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30119:1;30858:7;:18;;;;33175:11:::1;33189:29;33211:6;33189:17;33199:6;33189:9;:17::i;:::-;:21;;:29;;;;:::i;:::-;33175:43;;33225:16;33244:30;33269:4;33244:20;33252:11;:9;:11::i;:::-;33244:3;:7;;:20;;;;:::i;:::-;:24;;:30;;;;:::i;:::-;33225:49;;33281:20;33304:23;33324:2;33304:15;33317:1;33304:8;:12;;:15;;;;:::i;:::-;:19;;:23;;;;:::i;:::-;33281:46;;33334:18;33355:33;33368:19;33385:1;33368:12;:16;;:19;;;;:::i;:::-;33355:8;:12;;:33;;;;:::i;:::-;33334:54;;33395:34;33416:12;33395:10;;;;;;;;;;;:20;;;;:34;;;;:::i;:::-;33436:32;33457:10;33436;;;;;;;;;;;:20;;;;:32;;;;:::i;:::-;33475:18;33481:6;33489:3;33475:5;:18::i;:::-;33500:36;33510:6;33518:9;33529:6;33500:9;:36::i;:::-;33543:121;33552:6;33560:12;:10;:12::i;:::-;33574:89;33612:6;33574:89;;;;;;;;;;;;;;;;;:11;:19;33586:6;33574:19;;;;;;;;;;;;;;;:33;33594:12;:10;:12::i;:::-;33574:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;33543:8;:121::i;:::-;33678:4;33671:11;;;;;;30075:1:::0;31037:7;:22;;;;33051:637;;;;;:::o;20648:83::-;20689:5;20714:9;;;;;;;;;;;20707:16;;20648:83;:::o;23018:218::-;23106:4;23123:83;23132:12;:10;:12::i;:::-;23146:7;23155:50;23194:10;23155:11;:25;23167:12;:10;:12::i;:::-;23155:25;;;;;;;;;;;;;;;:34;23181:7;23155:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;23123:8;:83::i;:::-;23224:4;23217:11;;23018:218;;;;:::o;31655:33::-;;;;;;;;;;;;;:::o;33829:112::-;33885:7;33908:27;33929:5;:3;:5::i;:::-;33908:16;33919:4;33908:6;:10;;:16;;;;:::i;:::-;:20;;:27;;;;:::i;:::-;33901:34;;33829:112;;;:::o;34064:121::-;34106:7;34129:50;34165:13;:11;:13::i;:::-;34129:31;34155:4;34129:21;:25;;:31;;;;:::i;:::-;:35;;:50;;;;:::i;:::-;34122:57;;34064:121;:::o;31914:102::-;2356:12;:10;:12::i;:::-;2346:22;;:6;;;;;;;;;;;:22;;;2338:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32002:8:::1;31988:11;;:22;;;;;;;;;;;;;;;;;;31914:102:::0;:::o;33694:127::-;33751:7;33776:39;33810:4;33776:29;33799:5;:3;:5::i;:::-;33776:9;:18;33786:7;33776:18;;;;;;;;;;;;;;;;:22;;:29;;;;:::i;:::-;:33;;:39;;;;:::i;:::-;33769:46;;33694:127;;;:::o;2776:148::-;2356:12;:10;:12::i;:::-;2346:22;;:6;;;;;;;;;;;:22;;;2338:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2883:1:::1;2846:40;;2867:6;;;;;;;;;;;2846:40;;;;;;;;;;;;2914:1;2897:6;;:19;;;;;;;;;;;;;;;;;;2776:148::o:0;31695:105::-;2356:12;:10;:12::i;:::-;2346:22;;:6;;;;;;;;;;;:22;;;2338:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31785:9:::1;31765:17;;:29;;;;;;;;;;;;;;;;;;31695:105:::0;:::o;35127:289::-;30119:1;30725:7;;:19;;30717:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30119:1;30858:7;:18;;;;35211:11:::1;;;;;;;;;;;35195:27;;:12;:10;:12::i;:::-;:27;;;35187:36;;;::::0;::::1;;35230:18;35251:17;35261:6;35251:9;:17::i;:::-;35230:38;;35275:18;35296:37;35328:4;35296:27;35311:11;:9;:11::i;:::-;35296:10;:14;;:27;;;;:::i;:::-;:31;;:37;;;;:::i;:::-;35275:58;;35340:31;35346:12;:10;:12::i;:::-;35360:10;35340:5;:31::i;:::-;35378:32;35399:10;35378;;;;;;;;;;;:20;;;;:32;;;;:::i;:::-;30889:1;;30075::::0;31037:7;:22;;;;35127:289;:::o;2134:79::-;2172:7;2199:6;;;;;;;;;;;2192:13;;2134:79;:::o;19923:87::-;19962:13;19995:7;19988:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19923:87;:::o;23739:269::-;23832:4;23849:129;23858:12;:10;:12::i;:::-;23872:7;23881:96;23920:15;23881:96;;;;;;;;;;;;;;;;;:11;:25;23893:12;:10;:12::i;:::-;23881:25;;;;;;;;;;;;;;;:34;23907:7;23881:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;23849:8;:129::i;:::-;23996:4;23989:11;;23739:269;;;;:::o;32544:501::-;32635:4;30119:1;30725:7;;:19;;30717:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30119:1;30858:7;:18;;;;32648:11:::1;32662:29;32684:6;32662:17;32672:6;32662:9;:17::i;:::-;:21;;:29;;;;:::i;:::-;32648:43;;32698:16;32717:30;32742:4;32717:20;32725:11;:9;:11::i;:::-;32717:3;:7;;:20;;;;:::i;:::-;:24;;:30;;;;:::i;:::-;32698:49;;32754:20;32777:23;32797:2;32777:15;32790:1;32777:8;:12;;:15;;;;:::i;:::-;:19;;:23;;;;:::i;:::-;32754:46;;32807:18;32828:33;32841:19;32858:1;32841:12;:16;;:19;;;;:::i;:::-;32828:8;:12;;:33;;;;:::i;:::-;32807:54;;32868:34;32889:12;32868:10;;;;;;;;;;;:20;;;;:34;;;;:::i;:::-;32909:32;32930:10;32909;;;;;;;;;;;:20;;;;:32;;;;:::i;:::-;32948:24;32954:12;:10;:12::i;:::-;32968:3;32948:5;:24::i;:::-;32979:42;32989:12;:10;:12::i;:::-;33003:9;33014:6;32979:9;:42::i;:::-;33035:4;33028:11;;;;;;30075:1:::0;31037:7;:22;;;;32544:501;;;;:::o;31624:26::-;;;;;;;;;;;;;:::o;31808:100::-;2356:12;:10;:12::i;:::-;2346:22;;:6;;;;;;;;;;;:22;;;2338:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31894:8:::1;31881:10;;:21;;;;;;;;;;;;;;;;;;31808:100:::0;:::o;32124:178::-;32219:10;;;;;;;;;;;32195:35;;:12;:10;:12::i;:::-;:35;;;32187:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32288:8;32275:10;;:21;;;;;;;;;;;;;;;;;;32124:178;:::o;31442:59::-;31478:23;31442:59;:::o;34504:617::-;30119:1;30725:7;;:19;;30717:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30119:1;30858:7;:18;;;;34581:23:::1;34591:12;:10;:12::i;:::-;34581:9;:23::i;:::-;34571:6;:33;;34563:73;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;34643:18;34664:17;34674:6;34664:9;:17::i;:::-;34643:38;;34688:18;34709:37;34741:4;34709:27;34724:11;:9;:11::i;:::-;34709:10;:14;;:27;;;;:::i;:::-;:31;;:37;;;;:::i;:::-;34688:58;;34753:20;34776:25;34798:2;34776:17;34791:1;34776:10;:14;;:17;;;;:::i;:::-;:21;;:25;;;;:::i;:::-;34753:48;;34808:19;34830:43;34870:2;34830:35;34863:1;34830:28;34845:12;34830:10;:14;;:28;;;;:::i;:::-;:32;;:35;;;;:::i;:::-;:39;;:43;;;;:::i;:::-;34808:65;;34880:19;34902:52;34935:18;34951:1;34935:11;:15;;:18;;;;:::i;:::-;34902:28;34917:12;34902:10;:14;;:28;;;;:::i;:::-;:32;;:52;;;;:::i;:::-;34880:74;;34961:31;34967:12;:10;:12::i;:::-;34981:10;34961:5;:31::i;:::-;34999:36;35022:12;34999;:10;:12::i;:::-;:22;;;;:36;;;;:::i;:::-;35042:33;35063:11;35042:10;;;;;;;;;;;:20;;;;:33;;;;:::i;:::-;35082;35103:11;35082:10;;;;;;;;;;;:20;;;;:33;;;;:::i;:::-;30889:1;;;;;30075::::0;31037:7;:22;;;;34504:617;:::o;21347:151::-;21436:7;21463:11;:18;21475:5;21463:18;;;;;;;;;;;;;;;:27;21482:7;21463:27;;;;;;;;;;;;;;;;21456:34;;21347:151;;;;:::o;35422:647::-;35458:7;35499:4;35478:25;;:17;;;;;;;;;;;:25;;;:59;;;;;35533:4;35507:9;:22;35517:11;;;;;;;;;;;35507:22;;;;;;;;;;;;;;;;:30;;35478:59;35474:590;;;35549:17;35586:11;;;;;;;;;;;35572:38;;;:40;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35572:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;35572:40:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;35572:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35548:64;;;;35621:17;35641:9;:22;35651:11;;;;;;;;;;;35641:22;;;;;;;;;;;;;;;;35621:42;;35672:19;35694:48;35706:4;35720:9;35712:18;;35732:9;35694:11;:48::i;:::-;35672:70;;35751:17;35771:46;35815:1;35771:39;35798:11;:9;:11::i;:::-;35771:22;35787:5;35771:11;:15;;:22;;;;:::i;:::-;:26;;:39;;;;:::i;:::-;:43;;:46;;;;:::i;:::-;35751:66;;35842:4;35830:9;:16;35826:192;;;35866:7;35859:14;;;;;;;;35826:192;35905:5;35893:9;:17;35889:129;;;35930:6;35923:13;;;;;;;;35889:129;35970:38;35988:19;36002:4;35988:9;:13;;:19;;;;:::i;:::-;35978:4;35970:17;;:38;;;;:::i;:::-;35963:45;;;;;;;;35474:590;36049:7;36042:14;;35422:647;;:::o;31555:33::-;;;;;;;;;;;;;:::o;32022:94::-;2356:12;:10;:12::i;:::-;2346:22;;:6;;;;;;;;;;;:22;;;2338:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32102:8:::1;32088:11;;:22;;;;;;;;;;;;;;;;;;32022:94:::0;:::o;31510:36::-;;;;;;;;;;;;;:::o;3079:244::-;2356:12;:10;:12::i;:::-;2346:22;;:6;;;;;;;;;;;:22;;;2338:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3188:1:::1;3168:22;;:8;:22;;;;3160:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3278:8;3249:38;;3270:6;;;;;;;;;;;3249:38;;;;;;;;;;;;3307:8;3298:6;;:17;;;;;;;;;;;;;;;;;;3079:244:::0;:::o;656:106::-;709:15;744:10;737:17;;656:106;:::o;26884:346::-;27003:1;26986:19;;:5;:19;;;;26978:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27084:1;27065:21;;:7;:21;;;;27057:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27168:6;27138:11;:18;27150:5;27138:18;;;;;;;;;;;;;;;:27;27157:7;27138:27;;;;;;;;;;;;;;;:36;;;;27206:7;27190:32;;27199:5;27190:32;;;27215:6;27190:32;;;;;;;;;;;;;;;;;;26884:346;;;:::o;7426:136::-;7484:7;7511:43;7515:1;7518;7511:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;7504:50;;7426:136;;;;:::o;8316:471::-;8374:7;8624:1;8619;:6;8615:47;;;8649:1;8642:8;;;;8615:47;8674:9;8690:1;8686;:5;8674:17;;8719:1;8714;8710;:5;;;;;;:10;8702:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8778:1;8771:8;;;8316:471;;;;;:::o;9263:132::-;9321:7;9348:39;9352:1;9355;9348:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;9341:46;;9263:132;;;;:::o;6962:181::-;7020:7;7040:9;7056:1;7052;:5;7040:17;;7081:1;7076;:6;;7068:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7134:1;7127:8;;;6962:181;;;;:::o;25318:378::-;25421:1;25402:21;;:7;:21;;;;25394:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25472:49;25501:1;25505:7;25514:6;25472:20;:49::i;:::-;25549:24;25566:6;25549:12;;:16;;:24;;;;:::i;:::-;25534:12;:39;;;;25605:30;25628:6;25605:9;:18;25615:7;25605:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;25584:9;:18;25594:7;25584:18;;;;;;;;;;;;;;;:51;;;;25672:7;25651:37;;25668:1;25651:37;;;25681:6;25651:37;;;;;;;;;;;;;;;;;;25318:378;;:::o;13575:397::-;13690:6;13665:21;:31;;13657:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13822:12;13840:9;:14;;13863:6;13840:35;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;19;14:27;;;;67:4;61:11;56:16;;134:4;130:9;123:4;105:16;101:27;97:43;94:1;90:51;84:4;77:65;157:16;154:1;147:27;211:16;208:1;201:4;198:1;194:12;179:49;5:228;;14:27;32:4;27:9;;5:228;;13821:54:0;;;13894:7;13886:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13575:397;;;:::o;26028:418::-;26131:1;26112:21;;:7;:21;;;;26104:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26184:49;26205:7;26222:1;26226:6;26184:20;:49::i;:::-;26267:68;26290:6;26267:68;;;;;;;;;;;;;;;;;:9;:18;26277:7;26267:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;26246:9;:18;26256:7;26246:18;;;;;;;;;;;;;;;:89;;;;26361:24;26378:6;26361:12;;:16;;:24;;;;:::i;:::-;26346:12;:39;;;;26427:1;26401:37;;26410:7;26401:37;;;26431:6;26401:37;;;;;;;;;;;;;;;;;;26028:418;;:::o;24498:539::-;24622:1;24604:20;;:6;:20;;;;24596:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24706:1;24685:23;;:9;:23;;;;24677:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24761:47;24782:6;24790:9;24801:6;24761:20;:47::i;:::-;24841:71;24863:6;24841:71;;;;;;;;;;;;;;;;;:9;:17;24851:6;24841:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;24821:9;:17;24831:6;24821:17;;;;;;;;;;;;;;;:91;;;;24946:32;24971:6;24946:9;:20;24956:9;24946:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;24923:9;:20;24933:9;24923:20;;;;;;;;;;;;;;;:55;;;;25011:9;24994:35;;25003:6;24994:35;;;25022:6;24994:35;;;;;;;;;;;;;;;;;;24498:539;;;:::o;7865:192::-;7951:7;7984:1;7979;:6;;7987:12;7971:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;7971:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8011:9;8027:1;8023;:5;8011:17;;8048:1;8041:8;;;7865:192;;;;;:::o;36075:468::-;36177:16;36222:1;36210:9;:13;36202:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36299:1;36287:9;:13;:31;;;;;36317:1;36304:10;:14;36287:31;36279:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36370:17;36390:34;36419:4;36390:24;36404:9;36390;:13;;:24;;;;:::i;:::-;:28;;:34;;;;:::i;:::-;36370:54;;36431:19;36453:34;36483:3;36453:25;36468:9;36453:10;:14;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;36431:56;;36505:32;36535:1;36518:11;36506:9;:23;;;;;;36505:29;;:32;;;;:::i;:::-;36494:43;;36075:468;;;;;;;:::o;9891:278::-;9977:7;10009:1;10005;:5;10012:12;9997:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;9997:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10036:9;10052:1;10048;:5;;;;;;10036:17;;10160:1;10153:8;;;9891:278;;;;;:::o;28255:92::-;;;;:::o

Swarm Source

ipfs://8221d8846063e253d39f9d960d1acf4dda912ba5529ed5ab5b0e6bef5ad2fcb0
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.