ETH Price: $2,336.79 (-0.42%)

Token

GDAO governance (xGDAO)
 

Overview

Max Total Supply

606,883.273484779476537477 xGDAO

Holders

128

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
5,979.519472417073099373 xGDAO

Value
$0.00
0xfd93f9f225d467b91908ee751ea9ba861c351235
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:
xGDAO

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-14
*/

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.6.0;

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

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

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/SafeERC20.sol

pragma solidity ^0.6.0;




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

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

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

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

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

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

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

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

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

pragma solidity ^0.6.0;

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

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

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

pragma solidity ^0.6.0;





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

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.6.0;

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

pragma solidity 0.6.12;





abstract contract GDAOBar is ERC20, Ownable{
    using SafeERC20 for IERC20;
    using SafeMath for uint256;
    IERC20 public GDAO;

    uint256 public lockPeriod;

    // user address to last deposit timestamp mapping
    mapping(address => uint256) public depositTimestamp;


    constructor(address _gdao, uint _lockPeriod) public ERC20("GDAO governance","xGDAO") Ownable(){
        GDAO = IERC20(_gdao);
        lockPeriod = _lockPeriod;
    }

    /// @dev update deposit lock period, only controller can call this function.
    function updateLockPeriod(uint256 _newLockPeriod) external onlyOwner {
        lockPeriod = _newLockPeriod;
    }

    function enter(uint256 _amount) external virtual {
        depositTimestamp[msg.sender] = block.timestamp;
        // Gets the amount of GDAO locked in the contract
        uint256 totalGDAO = GDAO.balanceOf(address(this));
        // Gets the amount of GDAO in existence
        uint256 totalShares = totalSupply();

        GDAO.transferFrom(msg.sender, address(this), _amount);
        uint256 mintAmount = (totalShares == 0 || totalGDAO == 0) ? _amount :
        _amount.mul(totalShares).div(totalGDAO);
        _mint(msg.sender, mintAmount);

    }

    function leave(uint256 _share) external {
        uint256 fee;
        uint256 senderDepositTimestamp = depositTimestamp[msg.sender];
        if(block.timestamp >= senderDepositTimestamp + lockPeriod){
            uint dayCount = (block.timestamp - senderDepositTimestamp - lockPeriod) / 86400;
            if(dayCount < 10){
                fee = 10 - dayCount;
            }
        }
        // Calculates the amount of GDAO the xGDAO is worth
        uint256 amm = getPrice(_share);
        fee = _getWithdrawalFee(amm, fee);
        _burn(msg.sender, _share);
        GDAO.transfer(msg.sender, amm.sub(fee));
    }


    /// @dev function returns the ammount of xGDAO some _share of GDAO is worth
    function getPrice(uint256 _share) public view returns(uint256){
        if(totalSupply() > 0){
            return _share.mul(GDAO.balanceOf(address(this))).div(totalSupply());
        }else{
            return 0;
        }
    }
    
    // @dev returns the withdrawalFee for a share
    function _getWithdrawalFee(uint256 _share, uint256 _fee) internal pure returns(uint256){
        return((_share.mul(_fee)).div(100));
    }
}

// File: contracts/PoolShareGovernanceToken.sol

// From https://github.com/compound-finance/compound-protocol/blob/master/contracts/Governance/Comp.sol

// Copyright 2020 Compound Labs, Inc.
// Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
// 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
// 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
// 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

pragma solidity 0.6.12;


// solhint-disable reason-string, no-empty-blocks
abstract contract PoolShareGovernanceToken is GDAOBar {
    /// @dev A record of each accounts delegate
    mapping(address => address) public delegates;

    /// @dev A checkpoint for marking number of votes from a given block
    struct Checkpoint {
        uint32 fromBlock;
        uint256 votes;
    }

    /// @dev A record of votes checkpoints for each account, by index
    mapping(address => mapping(uint32 => Checkpoint)) public checkpoints;

    /// @dev The number of checkpoints for each account
    mapping(address => uint32) public numCheckpoints;

    /// @dev The EIP-712 typehash for the delegation struct used by the contract
    bytes32 public constant DELEGATION_TYPEHASH =
        keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)");

    /// @dev An event thats emitted when an account changes its delegate
    event DelegateChanged(
        address indexed delegator,
        address indexed fromDelegate,
        address indexed toDelegate
    );

    /// @dev An event thats emitted when a delegate account's vote balance changes
    event DelegateVotesChanged(
        address indexed delegate,
        uint256 previousBalance,
        uint256 newBalance
    );

    /**
     * @dev Constructor.
     */
    constructor(
        address _token, uint256 _lockPeriod
    ) public GDAOBar(_token, _lockPeriod) {}

    /**
     * @dev Delegate votes from `msg.sender` to `delegatee`
     * @param delegatee The address to delegate votes to
     */
    function delegate(address delegatee) external {
        return _delegate(msg.sender, delegatee);
    }

    /**
     * @dev Delegates votes from signatory to `delegatee`
     * @param delegatee The address to delegate votes to
     * @param nonce The contract state required to match the signature
     * @param expiry The time at which to expire the signature
     * @param v The recovery byte of the signature
     * @param r Half of the ECDSA signature pair
     * @param s Half of the ECDSA signature pair
     */
    function delegateBySig(
        address delegatee,
        uint256 nonce,
        uint256 expiry,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external {
        bytes32 domainSeparator =
            keccak256(
                abi.encode(
                    keccak256(bytes(name())),
                    keccak256(bytes("1")),
                    getChainId(),
                    address(this)
                )
            );

        bytes32 structHash = keccak256(abi.encode(delegatee, nonce, expiry));

        bytes32 digest = keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));

        address signatory = ecrecover(digest, v, r, s);
        require(signatory != address(0), "VSP::delegateBySig: invalid signature");
        require(now <= expiry, "VSP::delegateBySig: signature expired");
        return _delegate(signatory, delegatee);
    }

    /**
     * @dev Gets the current votes balance for `account`
     * @param account The address to get votes balance
     * @return The number of current votes for `account`
     */
    function getCurrentVotes(address account) external view returns (uint256) {
        uint32 nCheckpoints = numCheckpoints[account];
        return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0;
    }

    /**
     * @dev Determine the prior number of votes for an account as of a block number
     * @dev Block number must be a finalized block or else this function will revert to prevent misinformation.
     * @param account The address of the account to check
     * @param blockNumber The block number to get the vote balance at
     * @return The number of votes the account had as of the given block
     */
    function getPriorVotes(address account, uint256 blockNumber) external view returns (uint256) {
        require(blockNumber < block.number, "VSP::getPriorVotes: not yet determined");

        uint32 nCheckpoints = numCheckpoints[account];
        if (nCheckpoints == 0) {
            return 0;
        }

        // First check most recent balance
        if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) {
            return checkpoints[account][nCheckpoints - 1].votes;
        }

        // Next check implicit zero balance
        if (checkpoints[account][0].fromBlock > blockNumber) {
            return 0;
        }

        uint32 lower = 0;
        uint32 upper = nCheckpoints - 1;
        while (upper > lower) {
            uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow
            Checkpoint memory cp = checkpoints[account][center];
            if (cp.fromBlock == blockNumber) {
                return cp.votes;
            } else if (cp.fromBlock < blockNumber) {
                lower = center;
            } else {
                upper = center - 1;
            }
        }
        return checkpoints[account][lower].votes;
    }

    function _delegate(address delegator, address delegatee) internal {
        address currentDelegate = delegates[delegator];
        uint256 delegatorBalance = balanceOf(delegator);
        delegates[delegator] = delegatee;

        emit DelegateChanged(delegator, currentDelegate, delegatee);

        _moveDelegates(currentDelegate, delegatee, delegatorBalance);
    }

    function _moveDelegates(
        address srcRep,
        address dstRep,
        uint256 amount
    ) internal {
        if (srcRep != dstRep && amount > 0) {
            if (srcRep != address(0)) {
                // decrease old representative
                uint32 srcRepNum = numCheckpoints[srcRep];
                uint256 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0;
                uint256 srcRepNew = srcRepOld.sub(amount);
                _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew);
            }

            if (dstRep != address(0)) {
                // increase new representative
                uint32 dstRepNum = numCheckpoints[dstRep];
                uint256 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0;
                uint256 dstRepNew = dstRepOld.add(amount);
                _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew);
            }
        }
    }

    function _writeCheckpoint(
        address delegatee,
        uint32 nCheckpoints,
        uint256 oldVotes,
        uint256 newVotes
    ) internal {
        uint32 blockNumber =
            safe32(block.number, "VSP::_writeCheckpoint: block number exceeds 32 bits");

        if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) {
            checkpoints[delegatee][nCheckpoints - 1].votes = newVotes;
        } else {
            checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes);
            numCheckpoints[delegatee] = nCheckpoints + 1;
        }

        emit DelegateVotesChanged(delegatee, oldVotes, newVotes);
    }

    function safe32(uint256 n, string memory errorMessage) internal pure returns (uint32) {
        require(n < 2**32, errorMessage);
        return uint32(n);
    }

    function getChainId() internal pure returns (uint256 chainId) {
        assembly {
            chainId := chainid()
        }
    }
}

// File: contracts/interfaces/uniswap/IUniswapV2Router01.sol

pragma solidity 0.6.12;

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/interfaces/uniswap/IUniswapV2Router02.sol

pragma solidity 0.6.12;


interface IUniswapV2Router02 is IUniswapV2Router01 {
    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

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

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

// File: address-list/contracts/interfaces/IAddressList.sol

pragma solidity ^0.6.6;

interface IAddressList {
    event AddressUpdated(address indexed a, address indexed sender);
    event AddressRemoved(address indexed a, address indexed sender);

    function add(address a) external returns (bool);

    function addValue(address a, uint256 v) external returns (bool);

    function addMulti(address[] calldata addrs) external returns (uint256);

    function addValueMulti(address[] calldata addrs, uint256[] calldata values) external returns (uint256);

    function remove(address a) external returns (bool);

    function removeMulti(address[] calldata addrs) external returns (uint256);

    function get(address a) external view returns (uint256);

    function contains(address a) external view returns (bool);

    function at(uint256 index) external view returns (address, uint256);

    function length() external view returns (uint256);
}

// File: contracts/interfaces/IController.sol

pragma solidity 0.6.12;

interface IController {
    function aaveReferralCode() external view returns (uint16);

    function feeCollector(address) external view returns (address);

    function founderFee() external view returns (uint256);

    function founderVault() external view returns (address);

    function interestFee(address) external view returns (uint256);

    function isPool(address) external view returns (bool);

    function pools() external view returns (address);

    function strategy(address) external view returns (address);

    function rebalanceFriction(address) external view returns (uint256);

    function poolRewards(address) external view returns (address);

    function treasuryPool() external view returns (address);

    function uniswapRouter() external view returns (address);

    function withdrawFee(address) external view returns (uint256);
}

// File: contracts/xGDAO.sol

pragma solidity 0.6.12;




interface IStrategy {
    function rebalance() external;
}

//solhint-disable no-empty-blocks, reason-string
contract xGDAO is PoolShareGovernanceToken {
    uint256 internal constant MAX_UINT_VALUE = uint256(-1);
    address internal constant WETH = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;
    address internal POE;
    uint8 public POE_TAX;
    IAddressList public immutable pools;
    IController public controller;

    constructor(address _controller, address _token, address _POE, uint8 _poeTax, uint256 _lockPeriod)
        public
        PoolShareGovernanceToken(_token, _lockPeriod)
    {
        controller = IController(_controller);
        pools = IAddressList(IController(_controller).pools());
        POE = _POE;
        setPoeTax(_poeTax);
    }

    modifier onlyController() {
        require(address(controller) == _msgSender(), "Caller is not the controller");
        _;
    }

    /// @dev Approve strategy for given pool
    function approvePool(address pool, address strategy) external onlyController {
        require(pools.contains(pool), "Not a pool");
        require(strategy == controller.strategy(address(this)), "Not a strategy");
        IERC20(pool).safeApprove(strategy, MAX_UINT_VALUE);
    }

    /**
     * @dev Controller will call this function when new strategy is added in pool.
     * Approve strategy for all tokens
     */
    function approveToken() external onlyController {
        _approve(MAX_UINT_VALUE);
    }

    /// @dev can set POE Tax
    function setPoeTax(uint8 _new) public onlyOwner(){
        require(_new <= 100, "Cannot set POE Tax > 100");
        POE_TAX = _new;
    }

    /// @dev set POE Contract address
    function setPOEContractAddress(address _new) external onlyOwner{
        POE = _new;
    }

    /// @dev override enter to tax 2% if user does not have a POE token.
    /// NOTE user must APPROVE this extra 2%, we can't just take it
    function enter(uint256 _amount) public override{
        depositTimestamp[msg.sender] = block.timestamp;
        // Gets the amount of GDAO locked in the contract
        uint256 totalGDAO = GDAO.balanceOf(address(this));
        // Gets the amount of GDAO in existence
        uint256 totalShares = totalSupply();
        // If no GDAO exists, mint it 1:1 to the amount put in
        if(totalGDAO > 0 && IERC20(POE).balanceOf(msg.sender) != 1){
            totalGDAO = (totalGDAO * (100 + POE_TAX)) / 100;
        }

        if (totalShares == 0 || totalGDAO == 0) {
            _mint(msg.sender, _amount);
        }
        
        else {
            uint256 what = _amount.mul(totalShares).div(totalGDAO);
            _mint(msg.sender, what);
        }
        GDAO.transferFrom(msg.sender, address(this), _amount);
    }

    /**
     * @dev Controller will call this function when strategy is removed from pool.
     * Reset approval of all tokens
     */
    function resetApproval() external onlyController {
        _approve(uint256(0));
    }

    function rebalance() external {
        IStrategy strategy = IStrategy(controller.strategy(address(this)));
        strategy.rebalance();
    }

    function sweepErc20(address _erc20) external {
        require(
            _erc20 != address(GDAO) && _erc20 != address(this) && !controller.isPool(_erc20),
            "Not allowed to sweep"
        );
        IUniswapV2Router02 uniswapRouter = IUniswapV2Router02(controller.uniswapRouter());
        IERC20 erc20 = IERC20(_erc20);
        uint256 amt = erc20.balanceOf(address(this));
        erc20.safeApprove(address(uniswapRouter), 0);
        erc20.safeApprove(address(uniswapRouter), amt);
        address[] memory path;
        if (address(_erc20) == WETH) {
            path = new address[](2);
            path[0] = address(_erc20);
            path[1] = address(GDAO);
        } else {
            path = new address[](3);
            path[0] = address(_erc20);
            path[1] = address(WETH);
            path[2] = address(GDAO);
        }
        uniswapRouter.swapExactTokensForTokens(amt, 1, path, address(this), now + 30);
    }

    function changeController(address _newController) external onlyOwner{
        controller = IController(_newController);
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        if (from == address(0)) {
            // Token being minted i.e. user is depositing VSP
            // NOTE: here 'to' is same as 'msg.sender'
            depositTimestamp[to] = block.timestamp;
        } else {
            // transfer, transferFrom or withdraw is called.
            require(
                block.timestamp >= depositTimestamp[from].add(lockPeriod),
                "Operation not allowed due to lock period"
            );
        }
        // Move vVSP delegation when mint, burn, transfer or transferFrom is called.
        _moveDelegates(delegates[from], delegates[to], amount);
    }

    function _approve(uint256 approvalAmount) private {
        address strategy = controller.strategy(address(this));
        uint256 length = pools.length();
        for (uint256 i = 0; i < length; i++) {
            (address pool, ) = pools.at(i);
            IERC20(pool).safeApprove(strategy, approvalAmount);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_controller","type":"address"},{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_POE","type":"address"},{"internalType":"uint8","name":"_poeTax","type":"uint8"},{"internalType":"uint256","name":"_lockPeriod","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GDAO","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"POE_TAX","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":"pool","type":"address"},{"internalType":"address","name":"strategy","type":"address"}],"name":"approvePool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"approveToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newController","type":"address"}],"name":"changeController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint256","name":"votes","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"controller","outputs":[{"internalType":"contract IController","name":"","type":"address"}],"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":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"depositTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"enter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_share","type":"uint256"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_share","type":"uint256"}],"name":"leave","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lockPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pools","outputs":[{"internalType":"contract IAddressList","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rebalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resetApproval","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_new","type":"address"}],"name":"setPOEContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_new","type":"uint8"}],"name":"setPoeTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_erc20","type":"address"}],"name":"sweepErc20","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"},{"inputs":[{"internalType":"uint256","name":"_newLockPeriod","type":"uint256"}],"name":"updateLockPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040523480156200001157600080fd5b5060405162005c6a38038062005c6a833981810160405260a08110156200003757600080fd5b810190808051906020019092919080519060200190929190805190602001909291908051906020019092919080519060200190929190505050838181816040518060400160405280600f81526020017f4744414f20676f7665726e616e636500000000000000000000000000000000008152506040518060400160405280600581526020017f784744414f0000000000000000000000000000000000000000000000000000008152508160039080519060200190620000f8929190620004f9565b50806004908051906020019062000111929190620004f9565b506012600560006101000a81548160ff021916908360ff16021790555050506000620001426200038560201b60201c565b905080600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550806007819055505050505084600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508473ffffffffffffffffffffffffffffffffffffffff1663c5c51dca6040518163ffffffff1660e01b815260040160206040518083038186803b158015620002b557600080fd5b505afa158015620002ca573d6000803e3d6000fd5b505050506040513d6020811015620002e157600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b8152505082600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200037a826200038d60201b60201c565b50505050506200059f565b600033905090565b6200039d6200038560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000460576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60648160ff161115620004db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f43616e6e6f742073657420504f4520546178203e20313030000000000000000081525060200191505060405180910390fd5b80600c60146101000a81548160ff021916908360ff16021790555050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200053c57805160ff19168380011785556200056d565b828001600101855582156200056d579182015b828111156200056c5782518255916020019190600101906200054f565b5b5090506200057c919062000580565b5090565b5b808211156200059b57600081600090555060010162000581565b5090565b60805160601c61569e620005cc60003980611b635280612b255280613d875280613e37525061569e6000f3fe608060405234801561001057600080fd5b50600436106102485760003560e01c80638526d4911161013b578063bc39493c116100b8578063e75722301161007c578063e757223014610bff578063e7a324dc14610c41578063f1127ed814610c5f578063f2fde38b14610cd4578063f77c479114610d1857610248565b8063bc39493c14610a62578063c3cda52014610a96578063c5c51dca14610b0f578063d9fe3eae14610b43578063dd62ed3e14610b8757610248565b8063a457c2d7116100ff578063a457c2d7146108d0578063a59f3e0c14610934578063a9059cbb14610962578063abafcf3b146109c6578063b4b5ea5714610a0a57610248565b80638526d491146107c05780638da5cb5b146107e157806391db7b0d1461081557806395d89b411461084357806399b71d5c146108c657610248565b8063587cde1e116101c957806370a082311161018d57806370a082311461068e578063715018a6146106e6578063782d6fe1146106f05780637836786e146107525780637d7c2a1c146107b657610248565b8063587cde1e1461051f5780635c19a95c1461058d578063646fcb32146105d157806367dfd4c9146106025780636fcfff451461063057610248565b8063330b8b7111610210578063330b8b71146103f757806339509351146104015780633cebb823146104655780633fd8b02f146104a957806346b00d04146104c757610248565b806306fdde031461024d578063095ea7b3146102d057806318160ddd1461033457806323b872dd14610352578063313ce567146103d6575b600080fd5b610255610d4c565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561029557808201518184015260208101905061027a565b50505050905090810190601f1680156102c25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61031c600480360360408110156102e657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610dee565b60405180821515815260200191505060405180910390f35b61033c610e0c565b6040518082815260200191505060405180910390f35b6103be6004803603606081101561036857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e16565b60405180821515815260200191505060405180910390f35b6103de610eef565b604051808260ff16815260200191505060405180910390f35b6103ff610f06565b005b61044d6004803603604081101561041757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fdc565b60405180821515815260200191505060405180910390f35b6104a76004803603602081101561047b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061108f565b005b6104b161119d565b6040518082815260200191505060405180910390f35b610509600480360360208110156104dd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111a3565b6040518082815260200191505060405180910390f35b6105616004803603602081101561053557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111bb565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105cf600480360360208110156105a357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111ee565b005b610600600480360360208110156105e757600080fd5b81019080803560ff1690602001909291905050506111fb565b005b61062e6004803603602081101561061857600080fd5b810190808035906020019092919050505061135d565b005b6106726004803603602081101561064657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114e0565b604051808263ffffffff16815260200191505060405180910390f35b6106d0600480360360208110156106a457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611503565b6040518082815260200191505060405180910390f35b6106ee61154b565b005b61073c6004803603604081101561070657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506116d6565b6040518082815260200191505060405180910390f35b6107b46004803603604081101561076857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a97565b005b6107be611e48565b005b6107c8611f73565b604051808260ff16815260200191505060405180910390f35b6107e9611f86565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6108416004803603602081101561082b57600080fd5b8101908080359060200190929190505050611fb0565b005b61084b612084565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561088b578082015181840152602081019050610870565b50505050905090810190601f1680156108b85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6108ce612126565b005b61091c600480360360408110156108e657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061221b565b60405180821515815260200191505060405180910390f35b6109606004803603602081101561094a57600080fd5b81019080803590602001909291905050506122e8565b005b6109ae6004803603604081101561097857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612648565b60405180821515815260200191505060405180910390f35b610a08600480360360208110156109dc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612666565b005b610a4c60048036036020811015610a2057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612774565b6040518082815260200191505060405180910390f35b610a6a61284a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610b0d600480360360c0811015610aac57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190803560ff1690602001909291908035906020019092919080359060200190929190505050612870565b005b610b17612b23565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610b8560048036036020811015610b5957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612b47565b005b610be960048036036040811015610b9d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613308565b6040518082815260200191505060405180910390f35b610c2b60048036036020811015610c1557600080fd5b810190808035906020019092919050505061338f565b6040518082815260200191505060405180910390f35b610c496134a0565b6040518082815260200191505060405180910390f35b610cb160048036036040811015610c7557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803563ffffffff1690602001909291905050506134c4565b604051808363ffffffff1681526020018281526020019250505060405180910390f35b610d1660048036036020811015610cea57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613505565b005b610d20613715565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610de45780601f10610db957610100808354040283529160200191610de4565b820191906000526020600020905b815481529060010190602001808311610dc757829003601f168201915b5050505050905090565b6000610e02610dfb61373b565b8484613743565b6001905092915050565b6000600254905090565b6000610e2384848461393a565b610ee484610e2f61373b565b610edf8560405180606001604052806028815260200161550460289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610e9561373b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613bfb9092919063ffffffff16565b613743565b600190509392505050565b6000600560009054906101000a900460ff16905090565b610f0e61373b565b73ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fd0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520636f6e74726f6c6c65720000000081525060200191505060405180910390fd5b610fda6000613cbb565b565b6000611085610fe961373b565b846110808560016000610ffa61373b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f2c90919063ffffffff16565b613743565b6001905092915050565b61109761373b565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611159576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60075481565b60086020528060005260406000206000915090505481565b60096020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6111f83382613fb4565b50565b61120361373b565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60648160ff16111561133f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f43616e6e6f742073657420504f4520546178203e20313030000000000000000081525060200191505060405180910390fd5b80600c60146101000a81548160ff021916908360ff16021790555050565b600080600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600754810142106113d65760006201518060075483420303816113c157fe5b049050600a8110156113d45780600a0392505b505b60006113e18461338f565b90506113ed8184614125565b92506113f93385614155565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb3361144b868561431990919063ffffffff16565b6040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561149e57600080fd5b505af11580156114b2573d6000803e3d6000fd5b505050506040513d60208110156114c857600080fd5b81019080805190602001909291905050505050505050565b600b6020528060005260406000206000915054906101000a900463ffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61155361373b565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611615576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000438210611730576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806156436026913960400191505060405180910390fd5b6000600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff16905060008163ffffffff16141561179d576000915050611a91565b82600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001840363ffffffff1663ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff161161188757600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001830363ffffffff1663ffffffff16815260200190815260200160002060010154915050611a91565b82600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008063ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff161115611908576000915050611a91565b6000806001830390505b8163ffffffff168163ffffffff161115611a2b576000600283830363ffffffff168161193a57fe5b0482039050611947615392565b600a60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008363ffffffff1663ffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff168152602001600182015481525050905086816000015163ffffffff161415611a0357806020015195505050505050611a91565b86816000015163ffffffff161015611a1d57819350611a24565b6001820392505b5050611912565b600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008363ffffffff1663ffffffff1681526020019081526020016000206001015493505050505b92915050565b611a9f61373b565b73ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b61576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520636f6e74726f6c6c65720000000081525060200191505060405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16635dbe47e8836040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611be857600080fd5b505afa158015611bfc573d6000803e3d6000fd5b505050506040513d6020811015611c1257600080fd5b8101908080519060200190929190505050611c95576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600a8152602001807f4e6f74206120706f6f6c0000000000000000000000000000000000000000000081525060200191505060405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663228bfd9f306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611d1e57600080fd5b505afa158015611d32573d6000803e3d6000fd5b505050506040513d6020811015611d4857600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611df9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f4e6f74206120737472617465677900000000000000000000000000000000000081525060200191505060405180910390fd5b611e44817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8473ffffffffffffffffffffffffffffffffffffffff166143639092919063ffffffff16565b5050565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663228bfd9f306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611ed357600080fd5b505afa158015611ee7573d6000803e3d6000fd5b505050506040513d6020811015611efd57600080fd5b810190808051906020019092919050505090508073ffffffffffffffffffffffffffffffffffffffff16637d7c2a1c6040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611f5857600080fd5b505af1158015611f6c573d6000803e3d6000fd5b5050505050565b600c60149054906101000a900460ff1681565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611fb861373b565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461207a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060078190555050565b606060048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561211c5780601f106120f15761010080835404028352916020019161211c565b820191906000526020600020905b8154815290600101906020018083116120ff57829003601f168201915b5050505050905090565b61212e61373b565b73ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146121f0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520636f6e74726f6c6c65720000000081525060200191505060405180910390fd5b6122197fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff613cbb565b565b60006122de61222861373b565b846122d98560405180606001604052806025815260200161561e602591396001600061225261373b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613bfb9092919063ffffffff16565b613743565b6001905092915050565b42600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156123b757600080fd5b505afa1580156123cb573d6000803e3d6000fd5b505050506040513d60208110156123e157600080fd5b8101908080519060200190929190505050905060006123fe610e0c565b90506000821180156124d457506001600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561249657600080fd5b505afa1580156124aa573d6000803e3d6000fd5b505050506040513d60208110156124c057600080fd5b810190808051906020019092919050505014155b156124fe576064600c60149054906101000a900460ff1660640160ff168302816124fa57fe5b0491505b600081148061250d5750600082145b156125215761251c3384614528565b612556565b60006125488361253a84876146ef90919063ffffffff16565b61477590919063ffffffff16565b90506125543382614528565b505b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330866040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b15801561260757600080fd5b505af115801561261b573d6000803e3d6000fd5b505050506040513d602081101561263157600080fd5b810190808051906020019092919050505050505050565b600061265c61265561373b565b848461393a565b6001905092915050565b61266e61373b565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612730576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff16905060008163ffffffff16116127de576000612842565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001830363ffffffff1663ffffffff168152602001908152602001600020600101545b915050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061287a610d4c565b805190602001206040518060400160405280600181526020017f3100000000000000000000000000000000000000000000000000000000000000815250805190602001206128c66147bf565b30604051602001808581526020018481526020018381526020018273ffffffffffffffffffffffffffffffffffffffff1681526020019450505050506040516020818303038152906040528051906020012090506000878787604051602001808473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200182815260200193505050506040516020818303038152906040528051906020012090506000828260405160200180807f190100000000000000000000000000000000000000000000000000000000000081525060020183815260200182815260200192505050604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051808581526020018460ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa158015612a22573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612ab4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061548b6025913960400191505060405180910390fd5b87421115612b0d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806154666025913960400191505060405180910390fd5b612b17818b613fb4565b50505050505050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015612bd157503073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b8015612c9e5750600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635b16ebb7826040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015612c6157600080fd5b505afa158015612c75573d6000803e3d6000fd5b505050506040513d6020811015612c8b57600080fd5b8101908080519060200190929190505050155b612d10576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f4e6f7420616c6c6f77656420746f20737765657000000000000000000000000081525060200191505060405180910390fd5b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663735de9f76040518163ffffffff1660e01b815260040160206040518083038186803b158015612d7a57600080fd5b505afa158015612d8e573d6000803e3d6000fd5b505050506040513d6020811015612da457600080fd5b81019080805190602001909291905050509050600082905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015612e2557600080fd5b505afa158015612e39573d6000803e3d6000fd5b505050506040513d6020811015612e4f57600080fd5b81019080805190602001909291905050509050612e8e8360008473ffffffffffffffffffffffffffffffffffffffff166143639092919063ffffffff16565b612eb983828473ffffffffffffffffffffffffffffffffffffffff166143639092919063ffffffff16565b606073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561300457600267ffffffffffffffff81118015612f1b57600080fd5b50604051908082528060200260200182016040528015612f4a5781602001602082028036833780820191505090505b5090508481600081518110612f5b57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110612fc557fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061315d565b600367ffffffffffffffff8111801561301c57600080fd5b5060405190808252806020026020018201604052801561304b5781602001602082028036833780820191505090505b509050848160008151811061305c57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2816001815181106130b857fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160028151811061312257fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250505b8373ffffffffffffffffffffffffffffffffffffffff166338ed17398360018430601e42016040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156132025780820151818401526020810190506131e7565b505050509050019650505050505050600060405180830381600087803b15801561322b57600080fd5b505af115801561323f573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250602081101561326957600080fd5b810190808051604051939291908464010000000082111561328957600080fd5b8382019150602082018581111561329f57600080fd5b82518660208202830111640100000000821117156132bc57600080fd5b8083526020830192505050908051906020019060200280838360005b838110156132f35780820151818401526020810190506132d8565b50505050905001604052505050505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60008061339a610e0c565b11156134965761348f6133ab610e0c565b613481600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561343757600080fd5b505afa15801561344b573d6000803e3d6000fd5b505050506040513d602081101561346157600080fd5b8101908080519060200190929190505050856146ef90919063ffffffff16565b61477590919063ffffffff16565b905061349b565b600090505b919050565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b600a602052816000526040600020602052806000526040600020600091509150508060000160009054906101000a900463ffffffff16908060010154905082565b61350d61373b565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146135cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613655576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806153f86026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156137c9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061559a6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561384f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061541e6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156139c0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061554d6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613a46576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806153b36023913960400191505060405180910390fd5b613a518383836147c7565b613abc81604051806060016040528060268152602001615440602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613bfb9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613b4f816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f2c90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290613ca8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613c6d578082015181840152602081019050613c52565b50505050905090810190601f168015613c9a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663228bfd9f306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015613d4657600080fd5b505afa158015613d5a573d6000803e3d6000fd5b505050506040513d6020811015613d7057600080fd5b8101908080519060200190929190505050905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16631f7b6d326040518163ffffffff1660e01b815260040160206040518083038186803b158015613deb57600080fd5b505afa158015613dff573d6000803e3d6000fd5b505050506040513d6020811015613e1557600080fd5b8101908080519060200190929190505050905060005b81811015613f265760007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663e0886f90836040518263ffffffff1660e01b815260040180828152602001915050604080518083038186803b158015613ea557600080fd5b505afa158015613eb9573d6000803e3d6000fd5b505050506040513d6040811015613ecf57600080fd5b810190808051906020019092919080519060200190929190505050509050613f1884868373ffffffffffffffffffffffffffffffffffffffff166143639092919063ffffffff16565b508080600101915050613e2b565b50505050565b600080828401905083811015613faa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600061402384611503565b905082600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a461411f8284836149c0565b50505050565b600061414d606461413f84866146ef90919063ffffffff16565b61477590919063ffffffff16565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156141db576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061552c6021913960400191505060405180910390fd5b6141e7826000836147c7565b614252816040518060600160405280602281526020016153d6602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613bfb9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506142a98160025461431990919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600061435b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613bfb565b905092915050565b6000811480614431575060008373ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e30856040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1681526020019250505060206040518083038186803b1580156143f457600080fd5b505afa158015614408573d6000803e3d6000fd5b505050506040513d602081101561441e57600080fd5b8101908080519060200190929190505050145b614486576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260368152602001806155e86036913960400191505060405180910390fd5b6145238363095ea7b360e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050614c5d565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156145cb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6145d7600083836147c7565b6145ec81600254613f2c90919063ffffffff16565b600281905550614643816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f2c90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600080831415614702576000905061476f565b600082840290508284828161471357fe5b041461476a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806154e36021913960400191505060405180910390fd5b809150505b92915050565b60006147b783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614d4c565b905092915050565b600046905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156148455742600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506148f2565b614899600754600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f2c90919063ffffffff16565b4210156148f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806155726028913960400191505060405180910390fd5b5b6149bb600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836149c0565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156149fc5750600081115b15614c5857600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614614b2c576000600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff1690506000808263ffffffff1611614a9f576000614b03565b600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001840363ffffffff1663ffffffff168152602001908152602001600020600101545b90506000614b1a848361431990919063ffffffff16565b9050614b2886848484614e12565b5050505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614614c57576000600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff1690506000808263ffffffff1611614bca576000614c2e565b600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001840363ffffffff1663ffffffff168152602001908152602001600020600101545b90506000614c458483613f2c90919063ffffffff16565b9050614c5385848484614e12565b5050505b5b505050565b6060614cbf826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166150a69092919063ffffffff16565b9050600081511115614d4757808060200190516020811015614ce057600080fd5b8101908080519060200190929190505050614d46576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806155be602a913960400191505060405180910390fd5b5b505050565b60008083118290614df8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614dbd578082015181840152602081019050614da2565b50505050905090810190601f168015614dea5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581614e0457fe5b049050809150509392505050565b6000614e36436040518060600160405280603381526020016154b0603391396150be565b905060008463ffffffff16118015614ecb57508063ffffffff16600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001870363ffffffff1663ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff16145b15614f3c5781600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001870363ffffffff1663ffffffff16815260200190815260200160002060010181905550615049565b60405180604001604052808263ffffffff16815260200183815250600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008663ffffffff1663ffffffff16815260200190815260200160002060008201518160000160006101000a81548163ffffffff021916908363ffffffff1602179055506020820151816001015590505060018401600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548163ffffffff021916908363ffffffff1602179055505b8473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051808381526020018281526020019250505060405180910390a25050505050565b60606150b58484600085615179565b90509392505050565b60006401000000008310829061516f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015615134578082015181840152602081019050615119565b50505050905090810190601f1680156151615780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082905092915050565b60606151848561537f565b6151f6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106152465780518252602082019150602081019050602083039250615223565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146152a8576040519150601f19603f3d011682016040523d82523d6000602084013e6152ad565b606091505b509150915081156152c2578092505050615377565b6000815111156152d55780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561533c578082015181840152602081019050615321565b50505050905090810190601f1680156153695780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b600080823b905060008111915050919050565b6040518060400160405280600063ffffffff16815260200160008152509056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63655653503a3a64656c656761746542795369673a207369676e617475726520657870697265645653503a3a64656c656761746542795369673a20696e76616c6964207369676e61747572655653503a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734f7065726174696f6e206e6f7420616c6c6f7765642064756520746f206c6f636b20706572696f6445524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f5653503a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e6564a26469706673582212207b9a4b4276d42ac0b7b0c40e9208a49c5df25997ed5f332d235e0c5e138f867664736f6c634300060c00330000000000000000000000002e4b307c1fede2b7fc979752eca09ce6db938b86000000000000000000000000515d7e9d75e2b76db60f8a051cd890eba23286bc0000000000000000000000005945baf9272e0808165adea61b932ec1604fb16100000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000258

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102485760003560e01c80638526d4911161013b578063bc39493c116100b8578063e75722301161007c578063e757223014610bff578063e7a324dc14610c41578063f1127ed814610c5f578063f2fde38b14610cd4578063f77c479114610d1857610248565b8063bc39493c14610a62578063c3cda52014610a96578063c5c51dca14610b0f578063d9fe3eae14610b43578063dd62ed3e14610b8757610248565b8063a457c2d7116100ff578063a457c2d7146108d0578063a59f3e0c14610934578063a9059cbb14610962578063abafcf3b146109c6578063b4b5ea5714610a0a57610248565b80638526d491146107c05780638da5cb5b146107e157806391db7b0d1461081557806395d89b411461084357806399b71d5c146108c657610248565b8063587cde1e116101c957806370a082311161018d57806370a082311461068e578063715018a6146106e6578063782d6fe1146106f05780637836786e146107525780637d7c2a1c146107b657610248565b8063587cde1e1461051f5780635c19a95c1461058d578063646fcb32146105d157806367dfd4c9146106025780636fcfff451461063057610248565b8063330b8b7111610210578063330b8b71146103f757806339509351146104015780633cebb823146104655780633fd8b02f146104a957806346b00d04146104c757610248565b806306fdde031461024d578063095ea7b3146102d057806318160ddd1461033457806323b872dd14610352578063313ce567146103d6575b600080fd5b610255610d4c565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561029557808201518184015260208101905061027a565b50505050905090810190601f1680156102c25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61031c600480360360408110156102e657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610dee565b60405180821515815260200191505060405180910390f35b61033c610e0c565b6040518082815260200191505060405180910390f35b6103be6004803603606081101561036857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e16565b60405180821515815260200191505060405180910390f35b6103de610eef565b604051808260ff16815260200191505060405180910390f35b6103ff610f06565b005b61044d6004803603604081101561041757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fdc565b60405180821515815260200191505060405180910390f35b6104a76004803603602081101561047b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061108f565b005b6104b161119d565b6040518082815260200191505060405180910390f35b610509600480360360208110156104dd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111a3565b6040518082815260200191505060405180910390f35b6105616004803603602081101561053557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111bb565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105cf600480360360208110156105a357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111ee565b005b610600600480360360208110156105e757600080fd5b81019080803560ff1690602001909291905050506111fb565b005b61062e6004803603602081101561061857600080fd5b810190808035906020019092919050505061135d565b005b6106726004803603602081101561064657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114e0565b604051808263ffffffff16815260200191505060405180910390f35b6106d0600480360360208110156106a457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611503565b6040518082815260200191505060405180910390f35b6106ee61154b565b005b61073c6004803603604081101561070657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506116d6565b6040518082815260200191505060405180910390f35b6107b46004803603604081101561076857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a97565b005b6107be611e48565b005b6107c8611f73565b604051808260ff16815260200191505060405180910390f35b6107e9611f86565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6108416004803603602081101561082b57600080fd5b8101908080359060200190929190505050611fb0565b005b61084b612084565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561088b578082015181840152602081019050610870565b50505050905090810190601f1680156108b85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6108ce612126565b005b61091c600480360360408110156108e657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061221b565b60405180821515815260200191505060405180910390f35b6109606004803603602081101561094a57600080fd5b81019080803590602001909291905050506122e8565b005b6109ae6004803603604081101561097857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612648565b60405180821515815260200191505060405180910390f35b610a08600480360360208110156109dc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612666565b005b610a4c60048036036020811015610a2057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612774565b6040518082815260200191505060405180910390f35b610a6a61284a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610b0d600480360360c0811015610aac57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190803560ff1690602001909291908035906020019092919080359060200190929190505050612870565b005b610b17612b23565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610b8560048036036020811015610b5957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612b47565b005b610be960048036036040811015610b9d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613308565b6040518082815260200191505060405180910390f35b610c2b60048036036020811015610c1557600080fd5b810190808035906020019092919050505061338f565b6040518082815260200191505060405180910390f35b610c496134a0565b6040518082815260200191505060405180910390f35b610cb160048036036040811015610c7557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803563ffffffff1690602001909291905050506134c4565b604051808363ffffffff1681526020018281526020019250505060405180910390f35b610d1660048036036020811015610cea57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613505565b005b610d20613715565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610de45780601f10610db957610100808354040283529160200191610de4565b820191906000526020600020905b815481529060010190602001808311610dc757829003601f168201915b5050505050905090565b6000610e02610dfb61373b565b8484613743565b6001905092915050565b6000600254905090565b6000610e2384848461393a565b610ee484610e2f61373b565b610edf8560405180606001604052806028815260200161550460289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610e9561373b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613bfb9092919063ffffffff16565b613743565b600190509392505050565b6000600560009054906101000a900460ff16905090565b610f0e61373b565b73ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fd0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520636f6e74726f6c6c65720000000081525060200191505060405180910390fd5b610fda6000613cbb565b565b6000611085610fe961373b565b846110808560016000610ffa61373b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f2c90919063ffffffff16565b613743565b6001905092915050565b61109761373b565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611159576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60075481565b60086020528060005260406000206000915090505481565b60096020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6111f83382613fb4565b50565b61120361373b565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60648160ff16111561133f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f43616e6e6f742073657420504f4520546178203e20313030000000000000000081525060200191505060405180910390fd5b80600c60146101000a81548160ff021916908360ff16021790555050565b600080600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600754810142106113d65760006201518060075483420303816113c157fe5b049050600a8110156113d45780600a0392505b505b60006113e18461338f565b90506113ed8184614125565b92506113f93385614155565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb3361144b868561431990919063ffffffff16565b6040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561149e57600080fd5b505af11580156114b2573d6000803e3d6000fd5b505050506040513d60208110156114c857600080fd5b81019080805190602001909291905050505050505050565b600b6020528060005260406000206000915054906101000a900463ffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61155361373b565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611615576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000438210611730576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806156436026913960400191505060405180910390fd5b6000600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff16905060008163ffffffff16141561179d576000915050611a91565b82600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001840363ffffffff1663ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff161161188757600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001830363ffffffff1663ffffffff16815260200190815260200160002060010154915050611a91565b82600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008063ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff161115611908576000915050611a91565b6000806001830390505b8163ffffffff168163ffffffff161115611a2b576000600283830363ffffffff168161193a57fe5b0482039050611947615392565b600a60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008363ffffffff1663ffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff168152602001600182015481525050905086816000015163ffffffff161415611a0357806020015195505050505050611a91565b86816000015163ffffffff161015611a1d57819350611a24565b6001820392505b5050611912565b600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008363ffffffff1663ffffffff1681526020019081526020016000206001015493505050505b92915050565b611a9f61373b565b73ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b61576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520636f6e74726f6c6c65720000000081525060200191505060405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000173ffffffffffffffffffffffffffffffffffffffff16635dbe47e8836040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611be857600080fd5b505afa158015611bfc573d6000803e3d6000fd5b505050506040513d6020811015611c1257600080fd5b8101908080519060200190929190505050611c95576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600a8152602001807f4e6f74206120706f6f6c0000000000000000000000000000000000000000000081525060200191505060405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663228bfd9f306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611d1e57600080fd5b505afa158015611d32573d6000803e3d6000fd5b505050506040513d6020811015611d4857600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611df9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f4e6f74206120737472617465677900000000000000000000000000000000000081525060200191505060405180910390fd5b611e44817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8473ffffffffffffffffffffffffffffffffffffffff166143639092919063ffffffff16565b5050565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663228bfd9f306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611ed357600080fd5b505afa158015611ee7573d6000803e3d6000fd5b505050506040513d6020811015611efd57600080fd5b810190808051906020019092919050505090508073ffffffffffffffffffffffffffffffffffffffff16637d7c2a1c6040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611f5857600080fd5b505af1158015611f6c573d6000803e3d6000fd5b5050505050565b600c60149054906101000a900460ff1681565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611fb861373b565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461207a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060078190555050565b606060048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561211c5780601f106120f15761010080835404028352916020019161211c565b820191906000526020600020905b8154815290600101906020018083116120ff57829003601f168201915b5050505050905090565b61212e61373b565b73ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146121f0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520636f6e74726f6c6c65720000000081525060200191505060405180910390fd5b6122197fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff613cbb565b565b60006122de61222861373b565b846122d98560405180606001604052806025815260200161561e602591396001600061225261373b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613bfb9092919063ffffffff16565b613743565b6001905092915050565b42600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156123b757600080fd5b505afa1580156123cb573d6000803e3d6000fd5b505050506040513d60208110156123e157600080fd5b8101908080519060200190929190505050905060006123fe610e0c565b90506000821180156124d457506001600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561249657600080fd5b505afa1580156124aa573d6000803e3d6000fd5b505050506040513d60208110156124c057600080fd5b810190808051906020019092919050505014155b156124fe576064600c60149054906101000a900460ff1660640160ff168302816124fa57fe5b0491505b600081148061250d5750600082145b156125215761251c3384614528565b612556565b60006125488361253a84876146ef90919063ffffffff16565b61477590919063ffffffff16565b90506125543382614528565b505b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330866040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b15801561260757600080fd5b505af115801561261b573d6000803e3d6000fd5b505050506040513d602081101561263157600080fd5b810190808051906020019092919050505050505050565b600061265c61265561373b565b848461393a565b6001905092915050565b61266e61373b565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612730576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff16905060008163ffffffff16116127de576000612842565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001830363ffffffff1663ffffffff168152602001908152602001600020600101545b915050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061287a610d4c565b805190602001206040518060400160405280600181526020017f3100000000000000000000000000000000000000000000000000000000000000815250805190602001206128c66147bf565b30604051602001808581526020018481526020018381526020018273ffffffffffffffffffffffffffffffffffffffff1681526020019450505050506040516020818303038152906040528051906020012090506000878787604051602001808473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200182815260200193505050506040516020818303038152906040528051906020012090506000828260405160200180807f190100000000000000000000000000000000000000000000000000000000000081525060020183815260200182815260200192505050604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051808581526020018460ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa158015612a22573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612ab4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061548b6025913960400191505060405180910390fd5b87421115612b0d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806154666025913960400191505060405180910390fd5b612b17818b613fb4565b50505050505050505050565b7f000000000000000000000000000000000000000000000000000000000000000181565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015612bd157503073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b8015612c9e5750600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635b16ebb7826040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015612c6157600080fd5b505afa158015612c75573d6000803e3d6000fd5b505050506040513d6020811015612c8b57600080fd5b8101908080519060200190929190505050155b612d10576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f4e6f7420616c6c6f77656420746f20737765657000000000000000000000000081525060200191505060405180910390fd5b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663735de9f76040518163ffffffff1660e01b815260040160206040518083038186803b158015612d7a57600080fd5b505afa158015612d8e573d6000803e3d6000fd5b505050506040513d6020811015612da457600080fd5b81019080805190602001909291905050509050600082905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015612e2557600080fd5b505afa158015612e39573d6000803e3d6000fd5b505050506040513d6020811015612e4f57600080fd5b81019080805190602001909291905050509050612e8e8360008473ffffffffffffffffffffffffffffffffffffffff166143639092919063ffffffff16565b612eb983828473ffffffffffffffffffffffffffffffffffffffff166143639092919063ffffffff16565b606073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561300457600267ffffffffffffffff81118015612f1b57600080fd5b50604051908082528060200260200182016040528015612f4a5781602001602082028036833780820191505090505b5090508481600081518110612f5b57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110612fc557fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061315d565b600367ffffffffffffffff8111801561301c57600080fd5b5060405190808252806020026020018201604052801561304b5781602001602082028036833780820191505090505b509050848160008151811061305c57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2816001815181106130b857fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160028151811061312257fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250505b8373ffffffffffffffffffffffffffffffffffffffff166338ed17398360018430601e42016040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156132025780820151818401526020810190506131e7565b505050509050019650505050505050600060405180830381600087803b15801561322b57600080fd5b505af115801561323f573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250602081101561326957600080fd5b810190808051604051939291908464010000000082111561328957600080fd5b8382019150602082018581111561329f57600080fd5b82518660208202830111640100000000821117156132bc57600080fd5b8083526020830192505050908051906020019060200280838360005b838110156132f35780820151818401526020810190506132d8565b50505050905001604052505050505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60008061339a610e0c565b11156134965761348f6133ab610e0c565b613481600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561343757600080fd5b505afa15801561344b573d6000803e3d6000fd5b505050506040513d602081101561346157600080fd5b8101908080519060200190929190505050856146ef90919063ffffffff16565b61477590919063ffffffff16565b905061349b565b600090505b919050565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b600a602052816000526040600020602052806000526040600020600091509150508060000160009054906101000a900463ffffffff16908060010154905082565b61350d61373b565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146135cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613655576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806153f86026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156137c9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061559a6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561384f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061541e6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156139c0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061554d6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613a46576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806153b36023913960400191505060405180910390fd5b613a518383836147c7565b613abc81604051806060016040528060268152602001615440602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613bfb9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613b4f816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f2c90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290613ca8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613c6d578082015181840152602081019050613c52565b50505050905090810190601f168015613c9a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663228bfd9f306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015613d4657600080fd5b505afa158015613d5a573d6000803e3d6000fd5b505050506040513d6020811015613d7057600080fd5b8101908080519060200190929190505050905060007f000000000000000000000000000000000000000000000000000000000000000173ffffffffffffffffffffffffffffffffffffffff16631f7b6d326040518163ffffffff1660e01b815260040160206040518083038186803b158015613deb57600080fd5b505afa158015613dff573d6000803e3d6000fd5b505050506040513d6020811015613e1557600080fd5b8101908080519060200190929190505050905060005b81811015613f265760007f000000000000000000000000000000000000000000000000000000000000000173ffffffffffffffffffffffffffffffffffffffff1663e0886f90836040518263ffffffff1660e01b815260040180828152602001915050604080518083038186803b158015613ea557600080fd5b505afa158015613eb9573d6000803e3d6000fd5b505050506040513d6040811015613ecf57600080fd5b810190808051906020019092919080519060200190929190505050509050613f1884868373ffffffffffffffffffffffffffffffffffffffff166143639092919063ffffffff16565b508080600101915050613e2b565b50505050565b600080828401905083811015613faa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600061402384611503565b905082600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a461411f8284836149c0565b50505050565b600061414d606461413f84866146ef90919063ffffffff16565b61477590919063ffffffff16565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156141db576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061552c6021913960400191505060405180910390fd5b6141e7826000836147c7565b614252816040518060600160405280602281526020016153d6602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613bfb9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506142a98160025461431990919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600061435b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613bfb565b905092915050565b6000811480614431575060008373ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e30856040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1681526020019250505060206040518083038186803b1580156143f457600080fd5b505afa158015614408573d6000803e3d6000fd5b505050506040513d602081101561441e57600080fd5b8101908080519060200190929190505050145b614486576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260368152602001806155e86036913960400191505060405180910390fd5b6145238363095ea7b360e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050614c5d565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156145cb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6145d7600083836147c7565b6145ec81600254613f2c90919063ffffffff16565b600281905550614643816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f2c90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600080831415614702576000905061476f565b600082840290508284828161471357fe5b041461476a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806154e36021913960400191505060405180910390fd5b809150505b92915050565b60006147b783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614d4c565b905092915050565b600046905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156148455742600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506148f2565b614899600754600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f2c90919063ffffffff16565b4210156148f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806155726028913960400191505060405180910390fd5b5b6149bb600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836149c0565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156149fc5750600081115b15614c5857600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614614b2c576000600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff1690506000808263ffffffff1611614a9f576000614b03565b600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001840363ffffffff1663ffffffff168152602001908152602001600020600101545b90506000614b1a848361431990919063ffffffff16565b9050614b2886848484614e12565b5050505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614614c57576000600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff1690506000808263ffffffff1611614bca576000614c2e565b600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001840363ffffffff1663ffffffff168152602001908152602001600020600101545b90506000614c458483613f2c90919063ffffffff16565b9050614c5385848484614e12565b5050505b5b505050565b6060614cbf826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166150a69092919063ffffffff16565b9050600081511115614d4757808060200190516020811015614ce057600080fd5b8101908080519060200190929190505050614d46576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806155be602a913960400191505060405180910390fd5b5b505050565b60008083118290614df8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614dbd578082015181840152602081019050614da2565b50505050905090810190601f168015614dea5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581614e0457fe5b049050809150509392505050565b6000614e36436040518060600160405280603381526020016154b0603391396150be565b905060008463ffffffff16118015614ecb57508063ffffffff16600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001870363ffffffff1663ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff16145b15614f3c5781600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001870363ffffffff1663ffffffff16815260200190815260200160002060010181905550615049565b60405180604001604052808263ffffffff16815260200183815250600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008663ffffffff1663ffffffff16815260200190815260200160002060008201518160000160006101000a81548163ffffffff021916908363ffffffff1602179055506020820151816001015590505060018401600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548163ffffffff021916908363ffffffff1602179055505b8473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051808381526020018281526020019250505060405180910390a25050505050565b60606150b58484600085615179565b90509392505050565b60006401000000008310829061516f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015615134578082015181840152602081019050615119565b50505050905090810190601f1680156151615780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082905092915050565b60606151848561537f565b6151f6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106152465780518252602082019150602081019050602083039250615223565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146152a8576040519150601f19603f3d011682016040523d82523d6000602084013e6152ad565b606091505b509150915081156152c2578092505050615377565b6000815111156152d55780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561533c578082015181840152602081019050615321565b50505050905090810190601f1680156153695780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b600080823b905060008111915050919050565b6040518060400160405280600063ffffffff16815260200160008152509056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63655653503a3a64656c656761746542795369673a207369676e617475726520657870697265645653503a3a64656c656761746542795369673a20696e76616c6964207369676e61747572655653503a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734f7065726174696f6e206e6f7420616c6c6f7765642064756520746f206c6f636b20706572696f6445524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f5653503a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e6564a26469706673582212207b9a4b4276d42ac0b7b0c40e9208a49c5df25997ed5f332d235e0c5e138f867664736f6c634300060c0033

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

0000000000000000000000002e4b307c1fede2b7fc979752eca09ce6db938b86000000000000000000000000515d7e9d75e2b76db60f8a051cd890eba23286bc0000000000000000000000005945baf9272e0808165adea61b932ec1604fb16100000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000258

-----Decoded View---------------
Arg [0] : _controller (address): 0x2e4b307C1fEDE2b7fC979752eCA09ce6db938b86
Arg [1] : _token (address): 0x515d7E9D75E2b76DB60F8a051Cd890eBa23286Bc
Arg [2] : _POE (address): 0x5945bAF9272e0808165aDea61b932eC1604FB161
Arg [3] : _poeTax (uint8): 3
Arg [4] : _lockPeriod (uint256): 600

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000002e4b307c1fede2b7fc979752eca09ce6db938b86
Arg [1] : 000000000000000000000000515d7e9d75e2b76db60f8a051cd890eba23286bc
Arg [2] : 0000000000000000000000005945baf9272e0808165adea61b932ec1604fb161
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000258


Deployed Bytecode Sourcemap

49164:5319:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21147:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23253:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;22222:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23896:321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;22074:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;52019:88;;;:::i;:::-;;24626:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;53249:127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32460:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32549:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36567:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;37997:104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;50595:141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33565:633;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36984:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;22385:119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31694:148;;;:::i;:::-;;40292:1223;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;50032:284;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;52115:146;;;:::i;:::-;;49384:20;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31052:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32869:115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;21349:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50466:91;;;:::i;:::-;;25347:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;51026:846;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;22717:175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;50783:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;39641:223;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32433:18;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;38532:911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;49411:35;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;52269:972;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;22955:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34289:234;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37123:126;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36850:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;31997:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;49453:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;21147:83;21184:13;21217:5;21210:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21147:83;:::o;23253:169::-;23336:4;23353:39;23362:12;:10;:12::i;:::-;23376:7;23385:6;23353:8;:39::i;:::-;23410:4;23403:11;;23253:169;;;;:::o;22222:100::-;22275:7;22302:12;;22295:19;;22222:100;:::o;23896:321::-;24002:4;24019:36;24029:6;24037:9;24048:6;24019:9;:36::i;:::-;24066:121;24075:6;24083:12;:10;:12::i;:::-;24097:89;24135:6;24097:89;;;;;;;;;;;;;;;;;:11;:19;24109:6;24097:19;;;;;;;;;;;;;;;:33;24117:12;:10;:12::i;:::-;24097:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;24066:8;:121::i;:::-;24205:4;24198:11;;23896:321;;;;;:::o;22074:83::-;22115:5;22140:9;;;;;;;;;;;22133:16;;22074:83;:::o;52019:88::-;49913:12;:10;:12::i;:::-;49890:35;;49898:10;;;;;;;;;;;49890:35;;;49882:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52079:20:::1;52096:1;52079:8;:20::i;:::-;52019:88::o:0;24626:218::-;24714:4;24731:83;24740:12;:10;:12::i;:::-;24754:7;24763:50;24802:10;24763:11;:25;24775:12;:10;:12::i;:::-;24763:25;;;;;;;;;;;;;;;:34;24789:7;24763:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;24731:8;:83::i;:::-;24832:4;24825:11;;24626:218;;;;:::o;53249:127::-;31274:12;:10;:12::i;:::-;31264:22;;:6;;;;;;;;;;;:22;;;31256:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53353:14:::1;53328:10;;:40;;;;;;;;;;;;;;;;;;53249:127:::0;:::o;32460:25::-;;;;:::o;32549:51::-;;;;;;;;;;;;;;;;;:::o;36567:44::-;;;;;;;;;;;;;;;;;;;;;;:::o;37997:104::-;38061:32;38071:10;38083:9;38061;:32::i;:::-;37997:104;:::o;50595:141::-;31274:12;:10;:12::i;:::-;31264:22;;:6;;;;;;;;;;;:22;;;31256:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50671:3:::1;50663:4;:11;;;;50655:48;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;50724:4;50714:7;;:14;;;;;;;;;;;;;;;;;;50595:141:::0;:::o;33565:633::-;33616:11;33638:30;33671:16;:28;33688:10;33671:28;;;;;;;;;;;;;;;;33638:61;;33757:10;;33732:22;:35;33713:15;:54;33710:249;;33783:13;33857:5;33843:10;;33818:22;33800:15;:40;:53;33799:63;;;;;;33783:79;;33891:2;33880:8;:13;33877:71;;;33924:8;33919:2;:13;33913:19;;33877:71;33710:249;;34030:11;34044:16;34053:6;34044:8;:16::i;:::-;34030:30;;34077:27;34095:3;34100;34077:17;:27::i;:::-;34071:33;;34115:25;34121:10;34133:6;34115:5;:25::i;:::-;34151:4;;;;;;;;;;;:13;;;34165:10;34177:12;34185:3;34177;:7;;:12;;;;:::i;:::-;34151:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33565:633;;;;:::o;36984:48::-;;;;;;;;;;;;;;;;;;;;;;:::o;22385:119::-;22451:7;22478:9;:18;22488:7;22478:18;;;;;;;;;;;;;;;;22471:25;;22385:119;;;:::o;31694:148::-;31274:12;:10;:12::i;:::-;31264:22;;:6;;;;;;;;;;;:22;;;31256:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31801:1:::1;31764:40;;31785:6;;;;;;;;;;;31764:40;;;;;;;;;;;;31832:1;31815:6;;:19;;;;;;;;;;;;;;;;;;31694:148::o:0;40292:1223::-;40376:7;40418:12;40404:11;:26;40396:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40486:19;40508:14;:23;40523:7;40508:23;;;;;;;;;;;;;;;;;;;;;;;;;40486:45;;40562:1;40546:12;:17;;;40542:58;;;40587:1;40580:8;;;;;40542:58;40712:11;40660;:20;40672:7;40660:20;;;;;;;;;;;;;;;:38;40696:1;40681:12;:16;40660:38;;;;;;;;;;;;;;;:48;;;;;;;;;;;;:63;;;40656:147;;40747:11;:20;40759:7;40747:20;;;;;;;;;;;;;;;:38;40783:1;40768:12;:16;40747:38;;;;;;;;;;;;;;;:44;;;40740:51;;;;;40656:147;40900:11;40864;:20;40876:7;40864:20;;;;;;;;;;;;;;;:23;40885:1;40864:23;;;;;;;;;;;;;:33;;;;;;;;;;;;:47;;;40860:88;;;40935:1;40928:8;;;;;40860:88;40960:12;40987;41017:1;41002:12;:16;40987:31;;41029:428;41044:5;41036:13;;:5;:13;;;41029:428;;;41066:13;41108:1;41099:5;41091;:13;41090:19;;;;;;;;41082:5;:27;41066:43;;41151:20;;:::i;:::-;41174:11;:20;41186:7;41174:20;;;;;;;;;;;;;;;:28;41195:6;41174:28;;;;;;;;;;;;;;;41151:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41237:11;41221:2;:12;;;:27;;;41217:229;;;41276:2;:8;;;41269:15;;;;;;;;;41217:229;41325:11;41310:2;:12;;;:26;;;41306:140;;;41365:6;41357:14;;41306:140;;;41429:1;41420:6;:10;41412:18;;41306:140;41029:428;;;;;41474:11;:20;41486:7;41474:20;;;;;;;;;;;;;;;:27;41495:5;41474:27;;;;;;;;;;;;;;;:33;;;41467:40;;;;;40292:1223;;;;;:::o;50032:284::-;49913:12;:10;:12::i;:::-;49890:35;;49898:10;;;;;;;;;;;49890:35;;;49882:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50128:5:::1;:14;;;50143:4;50128:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;50120:43;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;50194:10;;;;;;;;;;;:19;;;50222:4;50194:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;50182:46;;:8;:46;;;50174:73;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;50258:50;50283:8;49265:2;50265:4;50258:24;;;;:50;;;;;:::i;:::-;50032:284:::0;;:::o;52115:146::-;52156:18;52187:10;;;;;;;;;;;:19;;;52215:4;52187:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52156:66;;52233:8;:18;;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52115:146;:::o;49384:20::-;;;;;;;;;;;;;:::o;31052:79::-;31090:7;31117:6;;;;;;;;;;;31110:13;;31052:79;:::o;32869:115::-;31274:12;:10;:12::i;:::-;31264:22;;:6;;;;;;;;;;;:22;;;31256:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32962:14:::1;32949:10;:27;;;;32869:115:::0;:::o;21349:87::-;21388:13;21421:7;21414:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21349:87;:::o;50466:91::-;49913:12;:10;:12::i;:::-;49890:35;;49898:10;;;;;;;;;;;49890:35;;;49882:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50525:24:::1;49265:2;50525:8;:24::i;:::-;50466:91::o:0;25347:269::-;25440:4;25457:129;25466:12;:10;:12::i;:::-;25480:7;25489:96;25528:15;25489:96;;;;;;;;;;;;;;;;;:11;:25;25501:12;:10;:12::i;:::-;25489:25;;;;;;;;;;;;;;;:34;25515:7;25489:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;25457:8;:129::i;:::-;25604:4;25597:11;;25347:269;;;;:::o;51026:846::-;51115:15;51084:16;:28;51101:10;51084:28;;;;;;;;;;;;;;;:46;;;;51200:17;51220:4;;;;;;;;;;;:14;;;51243:4;51220:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51200:49;;51309:19;51331:13;:11;:13::i;:::-;51309:35;;51434:1;51422:9;:13;:55;;;;;51476:1;51446:3;;;;;;;;;;;51439:21;;;51461:10;51439:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:38;;51422:55;51419:133;;;51537:3;51525:7;;;;;;;;;;;51519:3;:13;51506:27;;:9;:27;51505:35;;;;;;51493:47;;51419:133;51583:1;51568:11;:16;:34;;;;51601:1;51588:9;:14;51568:34;51564:237;;;51619:26;51625:10;51637:7;51619:5;:26::i;:::-;51564:237;;;51697:12;51712:39;51741:9;51712:24;51724:11;51712:7;:11;;:24;;;;:::i;:::-;:28;;:39;;;;:::i;:::-;51697:54;;51766:23;51772:10;51784:4;51766:5;:23::i;:::-;51564:237;;51811:4;;;;;;;;;;;:17;;;51829:10;51849:4;51856:7;51811:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51026:846;;;:::o;22717:175::-;22803:4;22820:42;22830:12;:10;:12::i;:::-;22844:9;22855:6;22820:9;:42::i;:::-;22880:4;22873:11;;22717:175;;;;:::o;50783:92::-;31274:12;:10;:12::i;:::-;31264:22;;:6;;;;;;;;;;;:22;;;31256:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50863:4:::1;50857:3;;:10;;;;;;;;;;;;;;;;;;50783:92:::0;:::o;39641:223::-;39706:7;39726:19;39748:14;:23;39763:7;39748:23;;;;;;;;;;;;;;;;;;;;;;;;;39726:45;;39804:1;39789:12;:16;;;:67;;39855:1;39789:67;;;39808:11;:20;39820:7;39808:20;;;;;;;;;;;;;;;:38;39844:1;39829:12;:16;39808:38;;;;;;;;;;;;;;;:44;;;39789:67;39782:74;;;39641:223;;;:::o;32433:18::-;;;;;;;;;;;;;:::o;38532:911::-;38717:23;38833:6;:4;:6::i;:::-;38817:24;;;;;;38874:10;;;;;;;;;;;;;;;;;38864:21;;;;;;38908:12;:10;:12::i;:::-;38951:4;38784:191;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38756:234;;;;;;38717:273;;39003:18;39045:9;39056:5;39063:6;39034:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39024:47;;;;;;39003:68;;39084:14;39140:15;39157:10;39111:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39101:68;;;;;;39084:85;;39182:17;39202:26;39212:6;39220:1;39223;39226;39202:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39182:46;;39268:1;39247:23;;:9;:23;;;;39239:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39338:6;39331:3;:13;;39323:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39404:31;39414:9;39425;39404;:31::i;:::-;39397:38;;;;38532:911;;;;;;:::o;49411:35::-;;;:::o;52269:972::-;52365:4;;;;;;;;;;;52347:23;;:6;:23;;;;:50;;;;;52392:4;52374:23;;:6;:23;;;;52347:50;:80;;;;;52402:10;;;;;;;;;;;:17;;;52420:6;52402:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52401:26;52347:80;52325:150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52486:32;52540:10;;;;;;;;;;;:24;;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52486:81;;52578:12;52600:6;52578:29;;52618:11;52632:5;:15;;;52656:4;52632:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52618:44;;52673;52699:13;52715:1;52673:5;:17;;;;:44;;;;;:::i;:::-;52728:46;52754:13;52770:3;52728:5;:17;;;;:46;;;;;:::i;:::-;52785:21;49308:42;52821:23;;52829:6;52821:23;;;52817:329;;;52882:1;52868:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52861:23;;52917:6;52899:4;52904:1;52899:7;;;;;;;;;;;;;:25;;;;;;;;;;;52957:4;;;;;;;;;;;52939;52944:1;52939:7;;;;;;;;;;;;;:23;;;;;;;;;;;52817:329;;;53016:1;53002:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52995:23;;53051:6;53033:4;53038:1;53033:7;;;;;;;;;;;;;:25;;;;;;;;;;;49308:42;53073:4;53078:1;53073:7;;;;;;;;;;;;;:23;;;;;;;;;;;53129:4;;;;;;;;;;;53111;53116:1;53111:7;;;;;;;;;;;;;:23;;;;;;;;;;;52817:329;53156:13;:38;;;53195:3;53200:1;53203:4;53217;53230:2;53224:3;:8;53156:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52269:972;;;;;:::o;22955:151::-;23044:7;23071:11;:18;23083:5;23071:18;;;;;;;;;;;;;;;:27;23090:7;23071:27;;;;;;;;;;;;;;;;23064:34;;22955:151;;;;:::o;34289:234::-;34343:7;34381:1;34365:13;:11;:13::i;:::-;:17;34362:154;;;34405:60;34451:13;:11;:13::i;:::-;34405:41;34416:4;;;;;;;;;;;:14;;;34439:4;34416:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34405:6;:10;;:41;;;;:::i;:::-;:45;;:60;;;;:::i;:::-;34398:67;;;;34362:154;34503:1;34496:8;;34289:234;;;;:::o;37123:126::-;37178:71;37123:126;:::o;36850:68::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31997:244::-;31274:12;:10;:12::i;:::-;31264:22;;:6;;;;;;;;;;;:22;;;31256:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32106:1:::1;32086:22;;:8;:22;;;;32078:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32196:8;32167:38;;32188:6;;;;;;;;;;;32167:38;;;;;;;;;;;;32225:8;32216:6;;:17;;;;;;;;;;;;;;;;;;31997:244:::0;:::o;49453:29::-;;;;;;;;;;;;;:::o;18607:106::-;18660:15;18695:10;18688:17;;18607:106;:::o;28492:346::-;28611:1;28594:19;;:5;:19;;;;28586:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28692:1;28673:21;;:7;:21;;;;28665:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28776:6;28746:11;:18;28758:5;28746:18;;;;;;;;;;;;;;;:27;28765:7;28746:27;;;;;;;;;;;;;;;:36;;;;28814:7;28798:32;;28807:5;28798:32;;;28823:6;28798:32;;;;;;;;;;;;;;;;;;28492:346;;;:::o;26106:539::-;26230:1;26212:20;;:6;:20;;;;26204:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26314:1;26293:23;;:9;:23;;;;26285:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26369:47;26390:6;26398:9;26409:6;26369:20;:47::i;:::-;26449:71;26471:6;26449:71;;;;;;;;;;;;;;;;;:9;:17;26459:6;26449:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;26429:9;:17;26439:6;26429:17;;;;;;;;;;;;;;;:91;;;;26554:32;26579:6;26554:9;:20;26564:9;26554:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;26531:9;:20;26541:9;26531:20;;;;;;;;;;;;;;;:55;;;;26619:9;26602:35;;26611:6;26602:35;;;26630:6;26602:35;;;;;;;;;;;;;;;;;;26106:539;;;:::o;4658:192::-;4744:7;4777:1;4772;:6;;4780:12;4764:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4804:9;4820:1;4816;:5;4804:17;;4841:1;4834:8;;;4658:192;;;;;:::o;54147:333::-;54208:16;54227:10;;;;;;;;;;;:19;;;54255:4;54227:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54208:53;;54272:14;54289:5;:12;;;:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54272:31;;54319:9;54314:159;54338:6;54334:1;:10;54314:159;;;54367:12;54385:5;:8;;;54394:1;54385:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54366:30;;;54411:50;54436:8;54446:14;54418:4;54411:24;;;;:50;;;;;:::i;:::-;54314:159;54346:3;;;;;;;54314:159;;;;54147:333;;;:::o;3755:181::-;3813:7;3833:9;3849:1;3845;:5;3833:17;;3874:1;3869;:6;;3861:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3927:1;3920:8;;;3755:181;;;;:::o;41523:377::-;41600:23;41626:9;:20;41636:9;41626:20;;;;;;;;;;;;;;;;;;;;;;;;;41600:46;;41657:24;41684:20;41694:9;41684;:20::i;:::-;41657:47;;41738:9;41715;:20;41725:9;41715:20;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;41809:9;41765:54;;41792:15;41765:54;;41781:9;41765:54;;;;;;;;;;;;41832:60;41847:15;41864:9;41875:16;41832:14;:60::i;:::-;41523:377;;;;:::o;34586:141::-;34665:7;34691:27;34714:3;34692:16;34703:4;34692:6;:10;;:16;;;;:::i;:::-;34691:22;;:27;;;;:::i;:::-;34684:35;;34586:141;;;;:::o;27636:418::-;27739:1;27720:21;;:7;:21;;;;27712:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27792:49;27813:7;27830:1;27834:6;27792:20;:49::i;:::-;27875:68;27898:6;27875:68;;;;;;;;;;;;;;;;;:9;:18;27885:7;27875:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;27854:9;:18;27864:7;27854:18;;;;;;;;;;;;;;;:89;;;;27969:24;27986:6;27969:12;;:16;;:24;;;;:::i;:::-;27954:12;:39;;;;28035:1;28009:37;;28018:7;28009:37;;;28039:6;28009:37;;;;;;;;;;;;;;;;;;27636:418;;:::o;4219:136::-;4277:7;4304:43;4308:1;4311;4304:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4297:50;;4219:136;;;;:::o;15571:622::-;15950:1;15941:5;:10;15940:62;;;;16000:1;15957:5;:15;;;15981:4;15988:7;15957:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:44;15940:62;15932:152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16095:90;16115:5;16145:22;;;16169:7;16178:5;16122:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16095:19;:90::i;:::-;15571:622;;;:::o;26926:378::-;27029:1;27010:21;;:7;:21;;;;27002:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27080:49;27109:1;27113:7;27122:6;27080:20;:49::i;:::-;27157:24;27174:6;27157:12;;:16;;:24;;;;:::i;:::-;27142:12;:39;;;;27213:30;27236:6;27213:9;:18;27223:7;27213:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;27192:9;:18;27202:7;27192:18;;;;;;;;;;;;;;;:51;;;;27280:7;27259:37;;27276:1;27259:37;;;27289:6;27259:37;;;;;;;;;;;;;;;;;;26926:378;;:::o;5109:471::-;5167:7;5417:1;5412;:6;5408:47;;;5442:1;5435:8;;;;5408:47;5467:9;5483:1;5479;:5;5467:17;;5512:1;5507;5503;:5;;;;;;:10;5495:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5571:1;5564:8;;;5109:471;;;;;:::o;6056:132::-;6114:7;6141:39;6145:1;6148;6141:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6134:46;;6056:132;;;;:::o;43779:135::-;43824:15;43887:9;43876:20;;43861:46;:::o;53384:755::-;53539:1;53523:18;;:4;:18;;;53519:462;;;53700:15;53677:16;:20;53694:2;53677:20;;;;;;;;;;;;;;;:38;;;;53519:462;;;53855:38;53882:10;;53855:16;:22;53872:4;53855:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;53836:15;:57;;53810:159;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53519:462;54077:54;54092:9;:15;54102:4;54092:15;;;;;;;;;;;;;;;;;;;;;;;;;54109:9;:13;54119:2;54109:13;;;;;;;;;;;;;;;;;;;;;;;;;54124:6;54077:14;:54::i;:::-;53384:755;;;:::o;41908:981::-;42048:6;42038:16;;:6;:16;;;;:30;;;;;42067:1;42058:6;:10;42038:30;42034:848;;;42107:1;42089:20;;:6;:20;;;42085:385;;42178:16;42197:14;:22;42212:6;42197:22;;;;;;;;;;;;;;;;;;;;;;;;;42178:41;;42238:17;42270:1;42258:9;:13;;;:60;;42317:1;42258:60;;;42274:11;:19;42286:6;42274:19;;;;;;;;;;;;;;;:34;42306:1;42294:9;:13;42274:34;;;;;;;;;;;;;;;:40;;;42258:60;42238:80;;42337:17;42357:21;42371:6;42357:9;:13;;:21;;;;:::i;:::-;42337:41;;42397:57;42414:6;42422:9;42433;42444;42397:16;:57::i;:::-;42085:385;;;;42508:1;42490:20;;:6;:20;;;42486:385;;42579:16;42598:14;:22;42613:6;42598:22;;;;;;;;;;;;;;;;;;;;;;;;;42579:41;;42639:17;42671:1;42659:9;:13;;;:60;;42718:1;42659:60;;;42675:11;:19;42687:6;42675:19;;;;;;;;;;;;;;;:34;42707:1;42695:9;:13;42675:34;;;;;;;;;;;;;;;:40;;;42659:60;42639:80;;42738:17;42758:21;42772:6;42758:9;:13;;:21;;;;:::i;:::-;42738:41;;42798:57;42815:6;42823:9;42834;42845;42798:16;:57::i;:::-;42486:385;;;;42034:848;41908:981;;;:::o;17217:761::-;17641:23;17667:69;17695:4;17667:69;;;;;;;;;;;;;;;;;17675:5;17667:27;;;;:69;;;;;:::i;:::-;17641:95;;17771:1;17751:10;:17;:21;17747:224;;;17893:10;17882:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17874:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17747:224;17217:761;;;:::o;6684:278::-;6770:7;6802:1;6798;:5;6805:12;6790:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6829:9;6845:1;6841;:5;;;;;;6829:17;;6953:1;6946:8;;;6684:278;;;;;:::o;42897:702::-;43062:18;43096:75;43103:12;43096:75;;;;;;;;;;;;;;;;;:6;:75::i;:::-;43062:109;;43203:1;43188:12;:16;;;:85;;;;;43262:11;43208:65;;:11;:22;43220:9;43208:22;;;;;;;;;;;;;;;:40;43246:1;43231:12;:16;43208:40;;;;;;;;;;;;;;;:50;;;;;;;;;;;;:65;;;43188:85;43184:339;;;43339:8;43290:11;:22;43302:9;43290:22;;;;;;;;;;;;;;;:40;43328:1;43313:12;:16;43290:40;;;;;;;;;;;;;;;:46;;:57;;;;43184:339;;;43419:33;;;;;;;;43430:11;43419:33;;;;;;43443:8;43419:33;;;43380:11;:22;43392:9;43380:22;;;;;;;;;;;;;;;:36;43403:12;43380:36;;;;;;;;;;;;;;;:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43510:1;43495:12;:16;43467:14;:25;43482:9;43467:25;;;;;;;;;;;;;;;;:44;;;;;;;;;;;;;;;;;;43184:339;43561:9;43540:51;;;43572:8;43582;43540:51;;;;;;;;;;;;;;;;;;;;;;;;42897:702;;;;;:::o;11895:196::-;11998:12;12030:53;12053:6;12061:4;12067:1;12070:12;12030:22;:53::i;:::-;12023:60;;11895:196;;;;;:::o;43607:164::-;43685:6;43716:5;43712:1;:9;43723:12;43704:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43761:1;43747:16;;43607:164;;;;:::o;13272:979::-;13402:12;13435:18;13446:6;13435:10;:18::i;:::-;13427:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13561:12;13575:23;13602:6;:11;;13622:8;13633:4;13602:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13560:78;;;;13653:7;13649:595;;;13684:10;13677:17;;;;;;13649:595;13818:1;13798:10;:17;:21;13794:439;;;14061:10;14055:17;14122:15;14109:10;14105:2;14101:19;14094:44;14009:148;14204:12;14197:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13272:979;;;;;;;:::o;8977:422::-;9037:4;9245:12;9356:7;9344:20;9336:28;;9390:1;9383:4;:8;9376:15;;;8977:422;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

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