ETH Price: $2,360.18 (+0.85%)

Token

ETH Short Put Pool LP (PULP)
 

Overview

Max Total Supply

299.999999999999999701 PULP

Holders

1

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
alexangel.eth
Balance
299.999999999999999701 PULP

Value
$0.00
0x152Ac2bC1821C5C9ecA56D1F35D8b0D8b61187F5
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:
PrimePool

Compiler Version
v0.6.2+commit.bacdbe57

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-05-01
*/

pragma solidity ^0.6.2;


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

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

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

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

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

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

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

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


/*
 * @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.
 */
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }

    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;
    }
}

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor () internal {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     */
    modifier whenNotPaused() {
        require(!_paused, "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     */
    modifier whenPaused() {
        require(_paused, "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}


/**
 * @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;
    }
}


/**
 * @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) {
        // Solidity only automatically asserts when dividing by 0
        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;
    }
}

/**
 * @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) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @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 Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
contract ReentrancyGuard {
    bool private _notEntered;

    constructor () internal {
        // Storing an initial non-zero value makes deployment a bit more
        // expensive, but in exchange the refund on every call to nonReentrant
        // will be lower in amount. Since refunds are capped to a percetange of
        // the total transaction's gas, it is best to keep them low in cases
        // like this one, to increase the likelihood of the full refund coming
        // into effect.
        _notEntered = true;
    }

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

        // Any calls to nonReentrant after this point will fail
        _notEntered = false;

        _;

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


/**
 * @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 {ERC20MinterPauser}.
 *
 * 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 is 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 { }
}


/**
 * @title Primitive's Contract Interfaces
 * @author Primitive
 */



interface IPrime {
    function balanceOf(address user) external view returns (uint);
    function transfer(address to, uint256 amount) external returns (bool);
    function transferFrom(address from, address to, uint256 amount) external returns (bool);

    function swap(address receiver) external returns (
        uint256 inTokenS,
        uint256 inTokenP,
        uint256 outTokenU
    );
    function mint(address receiver) external returns (
        uint256 inTokenU,
        uint256 outTokenR
    );
    function redeem(address receiver) external returns (
        uint256 inTokenR
    );
    function close(address receiver) external returns (
        uint256 inTokenR,
        uint256 inTokenP,
        uint256 outTokenU
    );

    function tokenR() external view returns (address);
    function tokenS() external view returns (address);
    function tokenU() external view returns (address);
    function base() external view returns (uint256);
    function price() external view returns (uint256);
    function expiry() external view returns (uint256);
    function cacheU() external view returns (uint256);
    function cacheS() external view returns (uint256);
    function factory() external view returns (address);
    function marketId() external view returns (uint256);
    function maxDraw() external view returns (uint256 draw);
    function getCaches() external view returns (uint256 _cacheU, uint256 _cacheS);
    function getTokens() external view returns (address _tokenU, address _tokenS, address _tokenR);
    function prime() external view returns (
            address _tokenS,
            address _tokenU,
            address _tokenR,
            uint256 _base,
            uint256 _price,
            uint256 _expiry
    );
}

interface IPrimeTrader {
    function safeRedeem(address tokenP, uint256 amount, address receiver) external returns (
        uint256 inTokenR
    );
    function safeSwap(address tokenP, uint256 amount, address receiver) external returns (
        uint256 inTokenS,
        uint256 inTokenP,
        uint256 outTokenU
    );
    function safeMint(address tokenP, uint256 amount, address receiver) external returns (
        uint256 inTokenU,
        uint256 outTokenR
    );
    function safeClose(address tokenP, uint256 amount, address receiver) external returns (
        uint256 inTokenR,
        uint256 inTokenP,
        uint256 outTokenU
    );
}

interface IPrimeRedeem {
    function balanceOf(address user) external view returns (uint);
    function mint(address user, uint256 amount) external payable returns (bool);
    function burn(address user, uint256 amount) external payable returns (bool);
    function approve(address spender, uint256 amount) external returns (bool);
    function transfer(address to, uint256 amount) external returns (bool);
    function transferFrom(address from, address to, uint256 amount) external returns (bool);
}


/**
 * @title   Primitive's Pool for Writing Short Ether Puts 
 * @author  Primitive
 */



interface IWETH {
    function deposit() external payable;
    function withdraw(uint wad) external;
    function totalSupply() external view returns (uint);
    function approve(address guy, uint wad) external returns (bool);
    function transfer(address dst, uint wad) external returns (bool);
    function transferFrom(address src, address dst, uint wad) external returns (bool);
}

interface PriceOracleProxy {
    function getUnderlyingPrice(address cToken) external view returns (uint);
}

contract PrimePool is Ownable, Pausable, ReentrancyGuard, ERC20 {
    using SafeMath for uint256;

    address public COMPOUND_DAI = 0x5d3a536E4D6DbD6114cc1Ead35777bAB948E3643;
    uint256 public constant SECONDS_IN_DAY = 86400;
    uint256 public constant ONE_ETHER = 1 ether;

    uint256 public volatility;

    address public oracle;
    address payable public weth;
    
    mapping(uint256 => address) public primes;

    event Market(address tokenP);
    event Deposit(address indexed user, uint256 inTokenU, uint256 outTokenPULP);
    event Withdraw(address indexed user, uint256 outTokenU, uint256 inTokenR);
    event Buy(address indexed user, uint256 inTokenS, uint256 outTokenU, uint256 premium);

    constructor (
        address payable _weth,
        address _oracle,
        string memory name,
        string memory symbol
    ) 
        public
        ERC20(name, symbol)
    {
        weth = _weth;
        oracle = _oracle;
        volatility = 100;
    }

    function addMarket(address tokenP) public onlyOwner returns (address) {
        primes[IPrime(tokenP).marketId()] = tokenP;
        emit Market(tokenP);
        return tokenP;
    }

    function kill() public onlyOwner returns (bool) {
        if(paused()) {
            _unpause();
        } else {
            _pause();
        }
        return true;
    }

    modifier valid(address tokenP) {
        require(primes[IPrime(tokenP).marketId()] == tokenP, "ERR_PRIME");
        _;
    }


    receive() external payable {
        assert(msg.sender == weth);
    }


    /* =========== MAKER FUNCTIONS =========== */

    /**
     * @dev Adds liquidity by depositing tokenU. Receives tokenPULP.
     * @param amount The quantity of tokenU to deposit.
     * @return bool True if the transaction suceeds.
     */
    function deposit(
        uint256 amount,
        address tokenP
    )
        external
        payable
        whenNotPaused
        nonReentrant
        returns (bool)
    {
        // Store locally for gas savings.
        address tokenU = IPrime(tokenP).tokenU();
        if(tokenU == weth) {
            require(msg.value == amount && amount > 0, "ERR_BAL_ETH");
        } else {
            require(IERC20(tokenU).balanceOf(msg.sender) >= amount && amount > 0, "ERR_BAL_UNDERLYING");
        }

        // Mint LP tokens proportional to the Total LP Supply and Total Pool Balance.
        uint256 outTokenPULP;
        uint256 balanceU = IERC20(tokenU).balanceOf(address(this));
        uint256 totalSupply = totalSupply();
         
        // If liquidity is not intiialized, mint LP tokens equal to deposit.
        if(balanceU.mul(totalSupply) == 0) {
            outTokenPULP = amount;
        } else if(amount.mul(totalSupply) < balanceU) {
            require(amount.mul(totalSupply) >= balanceU, "ERR_ZERO");
        } else {
            outTokenPULP = amount.mul(totalSupply).div(balanceU);
        }

        _mint(msg.sender, outTokenPULP);
        emit Deposit(msg.sender, amount, outTokenPULP);

        // Assume we hold the tokenU asset until it is utilized in minting a Prime.
        if(tokenU == weth) {
            IWETH(weth).deposit.value(msg.value)();
            return true;
        } else {
            return IERC20(tokenU).transferFrom(msg.sender, address(this), amount);
        }
    }

    /**
     * @dev liquidity Provider burns their tokenPULP for proportional amount of tokenU + tokenS.
     * @notice  outTokenU = inTokenPULP * balanceU / Total Supply tokenPULP, 
     *          outTokenS = inTokenPULP * balanceR / Total Supply tokenPULP,
     *          If the pool is fully utilized and there are no strike assets to redeem,
     *          the LPs will have to wait for options to be exercised or become expired.
     * @param amount The quantity of liquidity tokens to burn.
     * @param tokenP The address of the Prime option token.
     * @return bool True if liquidity tokens were burned, and both tokenU + tokenS were sent to user.
     */
    function withdraw(
        uint256 amount,
        address tokenP
    ) 
        external
        nonReentrant
        valid(tokenP)
        returns (bool)
    {
        // Check tokenPULP balance.
        require(balanceOf(msg.sender) >= amount && amount > 0, "ERR_BAL_PULP");
        
        // Store Total Supply before we burn
        uint256 totalSupply = totalSupply();

        // Burn tokenPULP.
        _burn(msg.sender, amount);

        // Store locally for gas savings.
        address tokenU = IPrime(tokenP).tokenU();
        address tokenR = IPrime(tokenP).tokenR();

        // outTokenU = inTokenPULP * Balance of tokenU / Total Supply of tokenPULP.
        uint256 outTokenU = amount.mul(IERC20(tokenU).balanceOf(address(this))).div(totalSupply);

        // TokenR:TokenS = 1:1.
        // outTokenR = inTokenPULP * Balance of tokenR / Total Supply of tokenPULP.
        uint256 outTokenR = amount.mul(IERC20(tokenR).balanceOf(address(this))).div(totalSupply);

        if(outTokenR > 0) {
            (uint256 maxDraw) = IPrime(tokenP).maxDraw();
            require(maxDraw >= outTokenR, "ERR_BAL_STRIKE");

            // Send tokenR to tokenP so we can call redeem() later to tokenP.
            (bool success) = IERC20(tokenR).transfer(tokenP, outTokenR);

            // Call redeem function to send tokenS to msg.sender.
            (uint256 inTokenR) = IPrime(tokenP).redeem(msg.sender);
            assert(inTokenR == outTokenR && success);
        }

        // Send outTokenU to msg.sender.
        emit Withdraw(msg.sender, outTokenU, outTokenR);
        if(tokenU == weth) {
            IWETH(weth).withdraw(outTokenU);
            return sendEther(msg.sender, outTokenU);
        } else {
            return IERC20(tokenU).transfer(msg.sender, outTokenU);
        }
    }


    /* =========== TAKER FUNCTIONS =========== */


    /**
     * @dev Purchase ETH Put.
     * @notice An eth put is 200 DAI / 1 ETH. The right to swap 1 ETH (tokenS) for 200 Dai (tokenU).
     * As a user, you want to cover ETH, so you pay in ETH. Every 1 Quantity of ETH covers 200 DAI.
     * A user specifies the amount of ETH they want covered, i.e. the amount of ETH they can swap.
     * @param amount The quantity of tokenS (ETH) to 'cover' with an option. Denominated in tokenS (WETH).
     * @return bool True if the msg.sender receives tokenP.
     */
    function buy(
        uint256 amount,
        address tokenP
    )
        external 
        payable
        nonReentrant
        valid(tokenP)
        returns (bool)
    {
        // Store locally for gas savings.
        (
            address _tokenU, // Assume DAI
            address _tokenS, // Assume ETH
            address _tokenR, // Assume Redeemable for DAI 1:1.
            uint256 _base,
            uint256 _price,
            uint256 _expiry
        ) = IPrime(tokenP).prime();

        // Calculates the Intrinsic + Extrinsic value of tokenP.
        volatility = calculateVolatilityProxy(_tokenU, _tokenR, _base, _price);
        (uint256 premium, ) = calculatePremium(_base, _price, _expiry);
        premium = amount.mul(premium).div(ONE_ETHER);

        // Premium is paid in tokenS. If tokenS is WETH, its paid with ETH, which is then swapped to WETH.
        if(_tokenS == weth) {
            require(msg.value >= premium && premium > 0, "ERR_BAL_ETH");
            IWETH(weth).deposit.value(premium)();
            // Refunds remainder.
            sendEther(msg.sender, msg.value.sub(premium));
        } else {
            require(IERC20(_tokenS).balanceOf(msg.sender) >= amount && amount > 0, "ERR_BAL_STRIKE");
        }

        // tokenU = Amount * Quantity of tokenU (base) / Quantity of tokenS (price).
        uint256 outTokenU = amount.mul(_base).div(_price); 

        // Transfer tokenU (assume DAI) to option contract using Pool funds.
        (bool transferU) = IERC20(_tokenU).transfer(tokenP, outTokenU);

        // Mint Prime and Prime Redeem to this contract.
        (uint256 inTokenU,) = IPrime(tokenP).mint(address(this));

        // Send Prime to msg.sender.
        emit Buy(msg.sender, amount, outTokenU, premium);
        return transferU && IPrime(tokenP).transfer(msg.sender, inTokenU);
    }

    /**
     * @dev Calculates the intrinsic + extrinsic value of the option.
     * @notice Strike / Market * (Volatility * 1000) * sqrt(T in seconds remaining) / Seconds in a Day.
     */
    function calculatePremium(uint256 base, uint256 price, uint256 expiry)
        public
        view
        returns (uint256 premium, uint256 timeRemainder)
    {
        // Assume the oracle gets the Price of ETH using compound's oracle for DAI per ETH.
        // Price = ETH per DAI.
        uint256 market = PriceOracleProxy(oracle).getUnderlyingPrice(COMPOUND_DAI);
        // Strike price of DAI per ETH. ETH / DAI = price of dai per eth, then scaled to 10^18 units.
        uint256 strike = price.mul(ONE_ETHER).div(base);
        // Difference = Base * market price / strike price.
        uint256 difference = base.mul(market).div(strike);
        // Intrinsic value in DAI.
        uint256 intrinsic = difference >= base ? difference.sub(base) : 0;
        // Time left in seconds.
        timeRemainder = (expiry.sub(block.timestamp));
        // Strike / market scaled to 1e18.
        uint256 moneyness = strike.mul(ONE_ETHER).div(market);
        // Extrinsic value in DAI.
        uint256 extrinsic = moneyness
                            .mul(ONE_ETHER)
                            .mul(volatility)
                            .mul(sqrt(timeRemainder))
                                .div(ONE_ETHER)
                                .div(SECONDS_IN_DAY);
        // Total Premium in ETH.
        premium = (extrinsic.add(intrinsic)).mul(market).div(ONE_ETHER);
    }

    /**
     * @dev Calculates the Pool's Utilization to use as a proxy for volatility.
     * @notice If Pool is not utilized at all, the default volatility is 100.
     */
    function calculateVolatilityProxy(address tokenU, address tokenR, uint256 base, uint256 price)
        public
        view
        returns (uint256 _volatility)
    {
        (uint256 utilized) = poolUtilized(tokenR, base, price);
        uint256 balanceU = IERC20(tokenU).balanceOf(address(this));
        _volatility = utilized > 0 ?
                        utilized
                        .mul(1000)
                        .div(balanceU.add(utilized)) :
                        100;

    }

    /**
     * @dev Calculates the utilization of the Pool based on the proportion of tokenR owned.
     */
    function poolUtilized(address tokenR, uint256 base, uint256 price) public view returns (uint256 utilized) {
        utilized = IERC20(tokenR).balanceOf(address(this))
                    .mul(price)
                    .mul(ONE_ETHER)
                    .div(base)
                    .div(ONE_ETHER);
    }

    /**
     * @dev Utility function to send ethers safely.
     */
    function sendEther(address to, uint256 amount) private returns (bool) {
        (bool success, ) = to.call.value(amount)("");
        require(success, "ERR_SEND_ETHER");
        return success;
    }

    /**
     * @dev Utility function to calculate the square root of an integer. Used in calculating premium.
     */
    function sqrt(uint256 y) public pure returns (uint256 z) {
        if (y > 3) {
            uint256 x = (y + 1) / 2;
            z = y;
            while (x < z) {
                z = x;
                x = (y / x + x) / 2;
            }
        } else if (y != 0) {
            z = 1;
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"_weth","type":"address"},{"internalType":"address","name":"_oracle","type":"address"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"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":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"inTokenS","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"outTokenU","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"premium","type":"uint256"}],"name":"Buy","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"inTokenU","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"outTokenPULP","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"tokenP","type":"address"}],"name":"Market","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"outTokenU","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"inTokenR","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"COMPOUND_DAI","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ONE_ETHER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SECONDS_IN_DAY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenP","type":"address"}],"name":"addMarket","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"tokenP","type":"address"}],"name":"buy","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"base","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"}],"name":"calculatePremium","outputs":[{"internalType":"uint256","name":"premium","type":"uint256"},{"internalType":"uint256","name":"timeRemainder","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenU","type":"address"},{"internalType":"address","name":"tokenR","type":"address"},{"internalType":"uint256","name":"base","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"}],"name":"calculateVolatilityProxy","outputs":[{"internalType":"uint256","name":"_volatility","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"tokenP","type":"address"}],"name":"deposit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"kill","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oracle","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenR","type":"address"},{"internalType":"uint256","name":"base","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"}],"name":"poolUtilized","outputs":[{"internalType":"uint256","name":"utilized","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"primes","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"y","type":"uint256"}],"name":"sqrt","outputs":[{"internalType":"uint256","name":"z","type":"uint256"}],"stateMutability":"pure","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":[],"name":"volatility","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"weth","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"tokenP","type":"address"}],"name":"withdraw","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052735d3a536e4d6dbd6114cc1ead35777bab948e3643600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200006657600080fd5b5060405162004f1238038062004f12833981810160405260808110156200008c57600080fd5b81019080805190602001909291908051906020019092919080516040519392919084640100000000821115620000c157600080fd5b83820191506020820185811115620000d857600080fd5b8251866001820283011164010000000082111715620000f657600080fd5b8083526020830192505050908051906020019080838360005b838110156200012c5780820151818401526020810190506200010f565b50505050905090810190601f1680156200015a5780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200017e57600080fd5b838201915060208201858111156200019557600080fd5b8251866001820283011164010000000082111715620001b357600080fd5b8083526020830192505050908051906020019080838360005b83811015620001e9578082015181840152602081019050620001cc565b50505050905090810190601f168015620002175780820380516001836020036101000a031916815260200191505b506040525050508181600062000232620003e960201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35060008060146101000a81548160ff0219169083151502179055506001600060156101000a81548160ff02191690831515021790555081600490805190602001906200031d929190620003f1565b50806005908051906020019062000336929190620003f1565b506012600660006101000a81548160ff021916908360ff160217905550505083600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550606460078190555050505050620004a0565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200043457805160ff191683800117855562000465565b8280016001018555821562000465579182015b828111156200046457825182559160200191906001019062000447565b5b50905062000474919062000478565b5090565b6200049d91905b80821115620004995760008160009055506001016200047f565b5090565b90565b614a6280620004b06000396000f3fe6080604052600436106101db5760003560e01c806367e65cf31161010257806393e3063311610095578063bf9d839311610064578063bf9d839314610c40578063cce9923014610cbb578063dd62ed3e14610ce6578063f2fde38b14610d6b57610239565b806393e3063314610a3957806395d89b4114610aca578063a457c2d714610b5a578063a9059cbb14610bcd57610239565b8063749a60dd116100d1578063749a60dd1461088c5780637dc0d1d0146109255780637deb60251461097c5780638da5cb5b146109e257610239565b806367e65cf3146107535780636e553f65146107aa57806370a0823114610810578063715018a61461087557610239565b8063313ce5671161017a57806341c0e1b51161014957806341c0e1b51461067b5780635c975abb146106aa57806361a52a36146106d9578063677342ce1461070457610239565b8063313ce5671461055557806339509351146105865780633da18341146105f95780633fc8cef31461062457610239565b8063156f1d74116101b6578063156f1d74146103b457806318160ddd1461041e57806323b872dd14610449578063287807cd146104dc57610239565b8062f714ce1461023e57806306fdde03146102b1578063095ea7b31461034157610239565b3661023957600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461023757fe5b005b600080fd5b34801561024a57600080fd5b506102976004803603604081101561026157600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610dbc565b604051808215151515815260200191505060405180910390f35b3480156102bd57600080fd5b506102c66117f1565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103065780820151818401526020810190506102eb565b50505050905090810190601f1680156103335780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561034d57600080fd5b5061039a6004803603604081101561036457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611893565b604051808215151515815260200191505060405180910390f35b3480156103c057600080fd5b50610401600480360360608110156103d757600080fd5b810190808035906020019092919080359060200190929190803590602001909291905050506118b1565b604051808381526020018281526020019250505060405180910390f35b34801561042a57600080fd5b50610433611b46565b6040518082815260200191505060405180910390f35b34801561045557600080fd5b506104c26004803603606081101561046c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b50565b604051808215151515815260200191505060405180910390f35b3480156104e857600080fd5b5061053f600480360360608110156104ff57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190505050611c29565b6040518082815260200191505060405180910390f35b34801561056157600080fd5b5061056a611d44565b604051808260ff1660ff16815260200191505060405180910390f35b34801561059257600080fd5b506105df600480360360408110156105a957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611d5b565b604051808215151515815260200191505060405180910390f35b34801561060557600080fd5b5061060e611e0e565b6040518082815260200191505060405180910390f35b34801561063057600080fd5b50610639611e1a565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561068757600080fd5b50610690611e40565b604051808215151515815260200191505060405180910390f35b3480156106b657600080fd5b506106bf611f35565b604051808215151515815260200191505060405180910390f35b3480156106e557600080fd5b506106ee611f4b565b6040518082815260200191505060405180910390f35b34801561071057600080fd5b5061073d6004803603602081101561072757600080fd5b8101908080359060200190929190505050611f52565b6040518082815260200191505060405180910390f35b34801561075f57600080fd5b50610768611fb4565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6107f6600480360360408110156107c057600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611fda565b604051808215151515815260200191505060405180910390f35b34801561081c57600080fd5b5061085f6004803603602081101561083357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506127b5565b6040518082815260200191505060405180910390f35b34801561088157600080fd5b5061088a6127fe565b005b34801561089857600080fd5b5061090f600480360360808110156108af57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190505050612986565b6040518082815260200191505060405180910390f35b34801561093157600080fd5b5061093a612aa7565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6109c86004803603604081101561099257600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612acd565b604051808215151515815260200191505060405180910390f35b3480156109ee57600080fd5b506109f761339d565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a4557600080fd5b50610a8860048036036020811015610a5c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506133c6565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610ad657600080fd5b50610adf6135ce565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610b1f578082015181840152602081019050610b04565b50505050905090810190601f168015610b4c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610b6657600080fd5b50610bb360048036036040811015610b7d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050613670565b604051808215151515815260200191505060405180910390f35b348015610bd957600080fd5b50610c2660048036036040811015610bf057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061373d565b604051808215151515815260200191505060405180910390f35b348015610c4c57600080fd5b50610c7960048036036020811015610c6357600080fd5b810190808035906020019092919050505061375b565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610cc757600080fd5b50610cd061378e565b6040518082815260200191505060405180910390f35b348015610cf257600080fd5b50610d5560048036036040811015610d0957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613794565b6040518082815260200191505060405180910390f35b348015610d7757600080fd5b50610dba60048036036020811015610d8e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061381b565b005b60008060159054906101000a900460ff16610e3f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b60008060156101000a81548160ff021916908315150217905550818073ffffffffffffffffffffffffffffffffffffffff16600a60008373ffffffffffffffffffffffffffffffffffffffff16636ed71ede6040518163ffffffff1660e01b815260040160206040518083038186803b158015610ebb57600080fd5b505afa158015610ecf573d6000803e3d6000fd5b505050506040513d6020811015610ee557600080fd5b8101908080519060200190929190505050815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f4552525f5052494d45000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b83610fb8336127b5565b10158015610fc65750600084115b611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600c8152602001807f4552525f42414c5f50554c50000000000000000000000000000000000000000081525060200191505060405180910390fd5b6000611042611b46565b905061104e3386613a28565b60008473ffffffffffffffffffffffffffffffffffffffff16634a244e546040518163ffffffff1660e01b815260040160206040518083038186803b15801561109657600080fd5b505afa1580156110aa573d6000803e3d6000fd5b505050506040513d60208110156110c057600080fd5b8101908080519060200190929190505050905060008573ffffffffffffffffffffffffffffffffffffffff166360f880356040518163ffffffff1660e01b815260040160206040518083038186803b15801561111b57600080fd5b505afa15801561112f573d6000803e3d6000fd5b505050506040513d602081101561114557600080fd5b810190808051906020019092919050505090506000611236846112288573ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156111de57600080fd5b505afa1580156111f2573d6000803e3d6000fd5b505050506040513d602081101561120857600080fd5b81019080805190602001909291905050508b613bee90919063ffffffff16565b613c7490919063ffffffff16565b90506000611316856113088573ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156112be57600080fd5b505afa1580156112d2573d6000803e3d6000fd5b505050506040513d60208110156112e857600080fd5b81019080805190602001909291905050508c613bee90919063ffffffff16565b613c7490919063ffffffff16565b905060008111156115b65760008873ffffffffffffffffffffffffffffffffffffffff16634e11482f6040518163ffffffff1660e01b815260040160206040518083038186803b15801561136957600080fd5b505afa15801561137d573d6000803e3d6000fd5b505050506040513d602081101561139357600080fd5b810190808051906020019092919050505090508181101561141c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f4552525f42414c5f535452494b4500000000000000000000000000000000000081525060200191505060405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb8b856040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156114a557600080fd5b505af11580156114b9573d6000803e3d6000fd5b505050506040513d60208110156114cf57600080fd5b8101908080519060200190929190505050905060008a73ffffffffffffffffffffffffffffffffffffffff166395a2251f336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b15801561156357600080fd5b505af1158015611577573d6000803e3d6000fd5b505050506040513d602081101561158d57600080fd5b8101908080519060200190929190505050905083811480156115ac5750815b6115b257fe5b5050505b3373ffffffffffffffffffffffffffffffffffffffff167ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5688383604051808381526020018281526020019250505060405180910390a2600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561170557600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d836040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b1580156116d757600080fd5b505af11580156116eb573d6000803e3d6000fd5b505050506116f93383613cbe565b965050505050506117cf565b8373ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561178c57600080fd5b505af11580156117a0573d6000803e3d6000fd5b505050506040513d60208110156117b657600080fd5b8101908080519060200190929190505050965050505050505b506001600060156101000a81548160ff02191690831515021790555092915050565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156118895780601f1061185e57610100808354040283529160200191611889565b820191906000526020600020905b81548152906001019060200180831161186c57829003601f168201915b5050505050905090565b60006118a76118a0613da5565b8484613dad565b6001905092915050565b6000806000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fc57d4df600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561197757600080fd5b505afa15801561198b573d6000803e3d6000fd5b505050506040513d60208110156119a157600080fd5b8101908080519060200190929190505050905060006119e3876119d5670de0b6b3a764000089613bee90919063ffffffff16565b613c7490919063ffffffff16565b90506000611a0c826119fe858b613bee90919063ffffffff16565b613c7490919063ffffffff16565b9050600088821015611a1f576000611a33565b611a328983613fa490919063ffffffff16565b5b9050611a484288613fa490919063ffffffff16565b94506000611a7985611a6b670de0b6b3a764000087613bee90919063ffffffff16565b613c7490919063ffffffff16565b90506000611af562015180611ae7670de0b6b3a7640000611ad9611a9c8c611f52565b611acb600754611abd670de0b6b3a76400008b613bee90919063ffffffff16565b613bee90919063ffffffff16565b613bee90919063ffffffff16565b613c7490919063ffffffff16565b613c7490919063ffffffff16565b9050611b36670de0b6b3a7640000611b2888611b1a8786613fee90919063ffffffff16565b613bee90919063ffffffff16565b613c7490919063ffffffff16565b9750505050505050935093915050565b6000600354905090565b6000611b5d848484614076565b611c1e84611b69613da5565b611c198560405180606001604052806028815260200161497660289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611bcf613da5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461433b9092919063ffffffff16565b613dad565b600190509392505050565b6000611d3b670de0b6b3a7640000611d2d85611d1f670de0b6b3a7640000611d11888b73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611cc857600080fd5b505afa158015611cdc573d6000803e3d6000fd5b505050506040513d6020811015611cf257600080fd5b8101908080519060200190929190505050613bee90919063ffffffff16565b613bee90919063ffffffff16565b613c7490919063ffffffff16565b613c7490919063ffffffff16565b90509392505050565b6000600660009054906101000a900460ff16905090565b6000611e04611d68613da5565b84611dff8560026000611d79613da5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613fee90919063ffffffff16565b613dad565b6001905092915050565b670de0b6b3a764000081565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611e4a613da5565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f0b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611f13611f35565b15611f2557611f206143fb565b611f2e565b611f2d614503565b5b6001905090565b60008060149054906101000a900460ff16905090565b6201518081565b60006003821115611fa157600060026001840181611f6c57fe5b0490508291505b81811015611f9b57809150600281828581611f8a57fe5b040181611f9357fe5b049050611f73565b50611faf565b60008214611fae57600190505b5b919050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060149054906101000a900460ff161561205e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b600060159054906101000a900460ff166120e0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b60008060156101000a81548160ff02191690831515021790555060008273ffffffffffffffffffffffffffffffffffffffff16634a244e546040518163ffffffff1660e01b815260040160206040518083038186803b15801561214257600080fd5b505afa158015612156573d6000803e3d6000fd5b505050506040513d602081101561216c57600080fd5b81019080805190602001909291905050509050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561225b5783341480156121e45750600084115b612256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f4552525f42414c5f45544800000000000000000000000000000000000000000081525060200191505060405180910390fd5b612395565b838173ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156122d957600080fd5b505afa1580156122ed573d6000803e3d6000fd5b505050506040513d602081101561230357600080fd5b8101908080519060200190929190505050101580156123225750600084115b612394576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4552525f42414c5f554e4445524c59494e47000000000000000000000000000081525060200191505060405180910390fd5b5b6000808273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561241557600080fd5b505afa158015612429573d6000803e3d6000fd5b505050506040513d602081101561243f57600080fd5b81019080805190602001909291905050509050600061245c611b46565b905060006124738284613bee90919063ffffffff16565b141561248157869250612551565b816124958289613bee90919063ffffffff16565b101561252857816124af8289613bee90919063ffffffff16565b1015612523576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260088152602001807f4552525f5a45524f00000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b612550565b61254d8261253f838a613bee90919063ffffffff16565b613c7490919063ffffffff16565b92505b5b61255b338461460d565b3373ffffffffffffffffffffffffffffffffffffffff167f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a158885604051808381526020018281526020019250505060405180910390a2600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561269757600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d0e30db0346040518263ffffffff1660e01b81526004016000604051808303818588803b15801561267157600080fd5b505af1158015612685573d6000803e3d6000fd5b50505050506001945050505050612794565b8373ffffffffffffffffffffffffffffffffffffffff166323b872dd33308a6040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b15801561275257600080fd5b505af1158015612766573d6000803e3d6000fd5b505050506040513d602081101561277c57600080fd5b81019080805190602001909291905050509450505050505b6001600060156101000a81548160ff02191690831515021790555092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b612806613da5565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146128c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600080612994858585611c29565b905060008673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015612a1557600080fd5b505afa158015612a29573d6000803e3d6000fd5b505050506040513d6020811015612a3f57600080fd5b8101908080519060200190929190505050905060008211612a61576064612a9b565b612a9a612a778383613fee90919063ffffffff16565b612a8c6103e885613bee90919063ffffffff16565b613c7490919063ffffffff16565b5b92505050949350505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060159054906101000a900460ff16612b50576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b60008060156101000a81548160ff021916908315150217905550818073ffffffffffffffffffffffffffffffffffffffff16600a60008373ffffffffffffffffffffffffffffffffffffffff16636ed71ede6040518163ffffffff1660e01b815260040160206040518083038186803b158015612bcc57600080fd5b505afa158015612be0573d6000803e3d6000fd5b505050506040513d6020811015612bf657600080fd5b8101908080519060200190929190505050815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612cbf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f4552525f5052494d45000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b6000806000806000808873ffffffffffffffffffffffffffffffffffffffff1663c7ee005e6040518163ffffffff1660e01b815260040160c06040518083038186803b158015612d0e57600080fd5b505afa158015612d22573d6000803e3d6000fd5b505050506040513d60c0811015612d3857600080fd5b81019080805190602001909291908051906020019092919080519060200190929190805190602001909291908051906020019092919080519060200190929190505050955095509550955095509550612d9386858585612986565b6007819055506000612da68484846118b1565b509050612dd6670de0b6b3a7640000612dc8838e613bee90919063ffffffff16565b613c7490919063ffffffff16565b9050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415612f5557803410158015612e3e5750600081115b612eb0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f4552525f42414c5f45544800000000000000000000000000000000000000000081525060200191505060405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b158015612f1a57600080fd5b505af1158015612f2e573d6000803e3d6000fd5b5050505050612f4f33612f4a8334613fa490919063ffffffff16565b613cbe565b5061308f565b8a8673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015612fd357600080fd5b505afa158015612fe7573d6000803e3d6000fd5b505050506040513d6020811015612ffd57600080fd5b81019080805190602001909291905050501015801561301c575060008b115b61308e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f4552525f42414c5f535452494b4500000000000000000000000000000000000081525060200191505060405180910390fd5b5b60006130b6846130a8878f613bee90919063ffffffff16565b613c7490919063ffffffff16565b905060008873ffffffffffffffffffffffffffffffffffffffff1663a9059cbb8d846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561314157600080fd5b505af1158015613155573d6000803e3d6000fd5b505050506040513d602081101561316b57600080fd5b8101908080519060200190929190505050905060008c73ffffffffffffffffffffffffffffffffffffffff16636a627842306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019150506040805180830381600087803b1580156131fe57600080fd5b505af1158015613212573d6000803e3d6000fd5b505050506040513d604081101561322857600080fd5b8101908080519060200190929190805190602001909291905050505090503373ffffffffffffffffffffffffffffffffffffffff167fbeae048c6d270d9469f86cf6e8fedda3c60ad770f16c24c9fc131c8e9a09101d8f858760405180848152602001838152602001828152602001935050505060405180910390a281801561336f57508c73ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561333357600080fd5b505af1158015613347573d6000803e3d6000fd5b505050506040513d602081101561335d57600080fd5b81019080805190602001909291905050505b9b5050505050505050505050506001600060156101000a81548160ff02191690831515021790555092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006133d0613da5565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613491576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b81600a60008473ffffffffffffffffffffffffffffffffffffffff16636ed71ede6040518163ffffffff1660e01b815260040160206040518083038186803b1580156134dc57600080fd5b505afa1580156134f0573d6000803e3d6000fd5b505050506040513d602081101561350657600080fd5b8101908080519060200190929190505050815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f10a6f3b321a2a208b61ef604cd6ef66d5d79ee16620737c0ca6cfc0649fcc94f82604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1819050919050565b606060058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156136665780601f1061363b57610100808354040283529160200191613666565b820191906000526020600020905b81548152906001019060200180831161364957829003601f168201915b5050505050905090565b600061373361367d613da5565b8461372e85604051806060016040528060258152602001614a0860259139600260006136a7613da5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461433b9092919063ffffffff16565b613dad565b6001905092915050565b600061375161374a613da5565b8484614076565b6001905092915050565b600a6020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60075481565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b613823613da5565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146138e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561396a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806148e76026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613aae576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061499e6021913960400191505060405180910390fd5b613aba826000836147d6565b613b26816040518060600160405280602281526020016148c560229139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461433b9092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613b7e81600354613fa490919063ffffffff16565b600381905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600080831415613c015760009050613c6e565b6000828402905082848281613c1257fe5b0414613c69576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806149556021913960400191505060405180910390fd5b809150505b92915050565b6000613cb683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506147db565b905092915050565b6000808373ffffffffffffffffffffffffffffffffffffffff168360405180600001905060006040518083038185875af1925050503d8060008114613d1f576040519150601f19603f3d011682016040523d82523d6000602084013e613d24565b606091505b5050905080613d9b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f4552525f53454e445f455448455200000000000000000000000000000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613e33576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806149e46024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613eb9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061490d6022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6000613fe683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061433b565b905092915050565b60008082840190508381101561406c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156140fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806149bf6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614182576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806148a26023913960400191505060405180910390fd5b61418d8383836147d6565b6141f98160405180606001604052806026815260200161492f60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461433b9092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061428e81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613fee90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60008383111582906143e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156143ad578082015181840152602081019050614392565b50505050905090810190601f1680156143da5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600060149054906101000a900460ff1661447d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b60008060146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6144c0613da5565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600060149054906101000a900460ff1615614586576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600060146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586145ca613da5565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156146b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6146bc600083836147d6565b6146d181600354613fee90919063ffffffff16565b60038190555061472981600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613fee90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b505050565b60008083118290614887576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561484c578082015181840152602081019050614831565b50505050905090810190601f1680156148795780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161489357fe5b04905080915050939250505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ec44cd48f19f77b4307d8e55c8a36dfbaa4b355cf53daeea4b22712257ce31c464736f6c63430006020033000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000da17fbeda95222f331cb1d252401f4b44f49f7a0000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000154554482053686f72742050757420506f6f6c204c500000000000000000000000000000000000000000000000000000000000000000000000000000000000000450554c5000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101db5760003560e01c806367e65cf31161010257806393e3063311610095578063bf9d839311610064578063bf9d839314610c40578063cce9923014610cbb578063dd62ed3e14610ce6578063f2fde38b14610d6b57610239565b806393e3063314610a3957806395d89b4114610aca578063a457c2d714610b5a578063a9059cbb14610bcd57610239565b8063749a60dd116100d1578063749a60dd1461088c5780637dc0d1d0146109255780637deb60251461097c5780638da5cb5b146109e257610239565b806367e65cf3146107535780636e553f65146107aa57806370a0823114610810578063715018a61461087557610239565b8063313ce5671161017a57806341c0e1b51161014957806341c0e1b51461067b5780635c975abb146106aa57806361a52a36146106d9578063677342ce1461070457610239565b8063313ce5671461055557806339509351146105865780633da18341146105f95780633fc8cef31461062457610239565b8063156f1d74116101b6578063156f1d74146103b457806318160ddd1461041e57806323b872dd14610449578063287807cd146104dc57610239565b8062f714ce1461023e57806306fdde03146102b1578063095ea7b31461034157610239565b3661023957600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461023757fe5b005b600080fd5b34801561024a57600080fd5b506102976004803603604081101561026157600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610dbc565b604051808215151515815260200191505060405180910390f35b3480156102bd57600080fd5b506102c66117f1565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103065780820151818401526020810190506102eb565b50505050905090810190601f1680156103335780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561034d57600080fd5b5061039a6004803603604081101561036457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611893565b604051808215151515815260200191505060405180910390f35b3480156103c057600080fd5b50610401600480360360608110156103d757600080fd5b810190808035906020019092919080359060200190929190803590602001909291905050506118b1565b604051808381526020018281526020019250505060405180910390f35b34801561042a57600080fd5b50610433611b46565b6040518082815260200191505060405180910390f35b34801561045557600080fd5b506104c26004803603606081101561046c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b50565b604051808215151515815260200191505060405180910390f35b3480156104e857600080fd5b5061053f600480360360608110156104ff57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190505050611c29565b6040518082815260200191505060405180910390f35b34801561056157600080fd5b5061056a611d44565b604051808260ff1660ff16815260200191505060405180910390f35b34801561059257600080fd5b506105df600480360360408110156105a957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611d5b565b604051808215151515815260200191505060405180910390f35b34801561060557600080fd5b5061060e611e0e565b6040518082815260200191505060405180910390f35b34801561063057600080fd5b50610639611e1a565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561068757600080fd5b50610690611e40565b604051808215151515815260200191505060405180910390f35b3480156106b657600080fd5b506106bf611f35565b604051808215151515815260200191505060405180910390f35b3480156106e557600080fd5b506106ee611f4b565b6040518082815260200191505060405180910390f35b34801561071057600080fd5b5061073d6004803603602081101561072757600080fd5b8101908080359060200190929190505050611f52565b6040518082815260200191505060405180910390f35b34801561075f57600080fd5b50610768611fb4565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6107f6600480360360408110156107c057600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611fda565b604051808215151515815260200191505060405180910390f35b34801561081c57600080fd5b5061085f6004803603602081101561083357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506127b5565b6040518082815260200191505060405180910390f35b34801561088157600080fd5b5061088a6127fe565b005b34801561089857600080fd5b5061090f600480360360808110156108af57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190505050612986565b6040518082815260200191505060405180910390f35b34801561093157600080fd5b5061093a612aa7565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6109c86004803603604081101561099257600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612acd565b604051808215151515815260200191505060405180910390f35b3480156109ee57600080fd5b506109f761339d565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a4557600080fd5b50610a8860048036036020811015610a5c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506133c6565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610ad657600080fd5b50610adf6135ce565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610b1f578082015181840152602081019050610b04565b50505050905090810190601f168015610b4c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610b6657600080fd5b50610bb360048036036040811015610b7d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050613670565b604051808215151515815260200191505060405180910390f35b348015610bd957600080fd5b50610c2660048036036040811015610bf057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061373d565b604051808215151515815260200191505060405180910390f35b348015610c4c57600080fd5b50610c7960048036036020811015610c6357600080fd5b810190808035906020019092919050505061375b565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610cc757600080fd5b50610cd061378e565b6040518082815260200191505060405180910390f35b348015610cf257600080fd5b50610d5560048036036040811015610d0957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613794565b6040518082815260200191505060405180910390f35b348015610d7757600080fd5b50610dba60048036036020811015610d8e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061381b565b005b60008060159054906101000a900460ff16610e3f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b60008060156101000a81548160ff021916908315150217905550818073ffffffffffffffffffffffffffffffffffffffff16600a60008373ffffffffffffffffffffffffffffffffffffffff16636ed71ede6040518163ffffffff1660e01b815260040160206040518083038186803b158015610ebb57600080fd5b505afa158015610ecf573d6000803e3d6000fd5b505050506040513d6020811015610ee557600080fd5b8101908080519060200190929190505050815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f4552525f5052494d45000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b83610fb8336127b5565b10158015610fc65750600084115b611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600c8152602001807f4552525f42414c5f50554c50000000000000000000000000000000000000000081525060200191505060405180910390fd5b6000611042611b46565b905061104e3386613a28565b60008473ffffffffffffffffffffffffffffffffffffffff16634a244e546040518163ffffffff1660e01b815260040160206040518083038186803b15801561109657600080fd5b505afa1580156110aa573d6000803e3d6000fd5b505050506040513d60208110156110c057600080fd5b8101908080519060200190929190505050905060008573ffffffffffffffffffffffffffffffffffffffff166360f880356040518163ffffffff1660e01b815260040160206040518083038186803b15801561111b57600080fd5b505afa15801561112f573d6000803e3d6000fd5b505050506040513d602081101561114557600080fd5b810190808051906020019092919050505090506000611236846112288573ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156111de57600080fd5b505afa1580156111f2573d6000803e3d6000fd5b505050506040513d602081101561120857600080fd5b81019080805190602001909291905050508b613bee90919063ffffffff16565b613c7490919063ffffffff16565b90506000611316856113088573ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156112be57600080fd5b505afa1580156112d2573d6000803e3d6000fd5b505050506040513d60208110156112e857600080fd5b81019080805190602001909291905050508c613bee90919063ffffffff16565b613c7490919063ffffffff16565b905060008111156115b65760008873ffffffffffffffffffffffffffffffffffffffff16634e11482f6040518163ffffffff1660e01b815260040160206040518083038186803b15801561136957600080fd5b505afa15801561137d573d6000803e3d6000fd5b505050506040513d602081101561139357600080fd5b810190808051906020019092919050505090508181101561141c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f4552525f42414c5f535452494b4500000000000000000000000000000000000081525060200191505060405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb8b856040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156114a557600080fd5b505af11580156114b9573d6000803e3d6000fd5b505050506040513d60208110156114cf57600080fd5b8101908080519060200190929190505050905060008a73ffffffffffffffffffffffffffffffffffffffff166395a2251f336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b15801561156357600080fd5b505af1158015611577573d6000803e3d6000fd5b505050506040513d602081101561158d57600080fd5b8101908080519060200190929190505050905083811480156115ac5750815b6115b257fe5b5050505b3373ffffffffffffffffffffffffffffffffffffffff167ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5688383604051808381526020018281526020019250505060405180910390a2600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561170557600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d836040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b1580156116d757600080fd5b505af11580156116eb573d6000803e3d6000fd5b505050506116f93383613cbe565b965050505050506117cf565b8373ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561178c57600080fd5b505af11580156117a0573d6000803e3d6000fd5b505050506040513d60208110156117b657600080fd5b8101908080519060200190929190505050965050505050505b506001600060156101000a81548160ff02191690831515021790555092915050565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156118895780601f1061185e57610100808354040283529160200191611889565b820191906000526020600020905b81548152906001019060200180831161186c57829003601f168201915b5050505050905090565b60006118a76118a0613da5565b8484613dad565b6001905092915050565b6000806000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fc57d4df600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561197757600080fd5b505afa15801561198b573d6000803e3d6000fd5b505050506040513d60208110156119a157600080fd5b8101908080519060200190929190505050905060006119e3876119d5670de0b6b3a764000089613bee90919063ffffffff16565b613c7490919063ffffffff16565b90506000611a0c826119fe858b613bee90919063ffffffff16565b613c7490919063ffffffff16565b9050600088821015611a1f576000611a33565b611a328983613fa490919063ffffffff16565b5b9050611a484288613fa490919063ffffffff16565b94506000611a7985611a6b670de0b6b3a764000087613bee90919063ffffffff16565b613c7490919063ffffffff16565b90506000611af562015180611ae7670de0b6b3a7640000611ad9611a9c8c611f52565b611acb600754611abd670de0b6b3a76400008b613bee90919063ffffffff16565b613bee90919063ffffffff16565b613bee90919063ffffffff16565b613c7490919063ffffffff16565b613c7490919063ffffffff16565b9050611b36670de0b6b3a7640000611b2888611b1a8786613fee90919063ffffffff16565b613bee90919063ffffffff16565b613c7490919063ffffffff16565b9750505050505050935093915050565b6000600354905090565b6000611b5d848484614076565b611c1e84611b69613da5565b611c198560405180606001604052806028815260200161497660289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611bcf613da5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461433b9092919063ffffffff16565b613dad565b600190509392505050565b6000611d3b670de0b6b3a7640000611d2d85611d1f670de0b6b3a7640000611d11888b73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611cc857600080fd5b505afa158015611cdc573d6000803e3d6000fd5b505050506040513d6020811015611cf257600080fd5b8101908080519060200190929190505050613bee90919063ffffffff16565b613bee90919063ffffffff16565b613c7490919063ffffffff16565b613c7490919063ffffffff16565b90509392505050565b6000600660009054906101000a900460ff16905090565b6000611e04611d68613da5565b84611dff8560026000611d79613da5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613fee90919063ffffffff16565b613dad565b6001905092915050565b670de0b6b3a764000081565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611e4a613da5565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f0b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611f13611f35565b15611f2557611f206143fb565b611f2e565b611f2d614503565b5b6001905090565b60008060149054906101000a900460ff16905090565b6201518081565b60006003821115611fa157600060026001840181611f6c57fe5b0490508291505b81811015611f9b57809150600281828581611f8a57fe5b040181611f9357fe5b049050611f73565b50611faf565b60008214611fae57600190505b5b919050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060149054906101000a900460ff161561205e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b600060159054906101000a900460ff166120e0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b60008060156101000a81548160ff02191690831515021790555060008273ffffffffffffffffffffffffffffffffffffffff16634a244e546040518163ffffffff1660e01b815260040160206040518083038186803b15801561214257600080fd5b505afa158015612156573d6000803e3d6000fd5b505050506040513d602081101561216c57600080fd5b81019080805190602001909291905050509050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561225b5783341480156121e45750600084115b612256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f4552525f42414c5f45544800000000000000000000000000000000000000000081525060200191505060405180910390fd5b612395565b838173ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156122d957600080fd5b505afa1580156122ed573d6000803e3d6000fd5b505050506040513d602081101561230357600080fd5b8101908080519060200190929190505050101580156123225750600084115b612394576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4552525f42414c5f554e4445524c59494e47000000000000000000000000000081525060200191505060405180910390fd5b5b6000808273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561241557600080fd5b505afa158015612429573d6000803e3d6000fd5b505050506040513d602081101561243f57600080fd5b81019080805190602001909291905050509050600061245c611b46565b905060006124738284613bee90919063ffffffff16565b141561248157869250612551565b816124958289613bee90919063ffffffff16565b101561252857816124af8289613bee90919063ffffffff16565b1015612523576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260088152602001807f4552525f5a45524f00000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b612550565b61254d8261253f838a613bee90919063ffffffff16565b613c7490919063ffffffff16565b92505b5b61255b338461460d565b3373ffffffffffffffffffffffffffffffffffffffff167f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a158885604051808381526020018281526020019250505060405180910390a2600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561269757600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d0e30db0346040518263ffffffff1660e01b81526004016000604051808303818588803b15801561267157600080fd5b505af1158015612685573d6000803e3d6000fd5b50505050506001945050505050612794565b8373ffffffffffffffffffffffffffffffffffffffff166323b872dd33308a6040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b15801561275257600080fd5b505af1158015612766573d6000803e3d6000fd5b505050506040513d602081101561277c57600080fd5b81019080805190602001909291905050509450505050505b6001600060156101000a81548160ff02191690831515021790555092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b612806613da5565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146128c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600080612994858585611c29565b905060008673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015612a1557600080fd5b505afa158015612a29573d6000803e3d6000fd5b505050506040513d6020811015612a3f57600080fd5b8101908080519060200190929190505050905060008211612a61576064612a9b565b612a9a612a778383613fee90919063ffffffff16565b612a8c6103e885613bee90919063ffffffff16565b613c7490919063ffffffff16565b5b92505050949350505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060159054906101000a900460ff16612b50576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b60008060156101000a81548160ff021916908315150217905550818073ffffffffffffffffffffffffffffffffffffffff16600a60008373ffffffffffffffffffffffffffffffffffffffff16636ed71ede6040518163ffffffff1660e01b815260040160206040518083038186803b158015612bcc57600080fd5b505afa158015612be0573d6000803e3d6000fd5b505050506040513d6020811015612bf657600080fd5b8101908080519060200190929190505050815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612cbf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f4552525f5052494d45000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b6000806000806000808873ffffffffffffffffffffffffffffffffffffffff1663c7ee005e6040518163ffffffff1660e01b815260040160c06040518083038186803b158015612d0e57600080fd5b505afa158015612d22573d6000803e3d6000fd5b505050506040513d60c0811015612d3857600080fd5b81019080805190602001909291908051906020019092919080519060200190929190805190602001909291908051906020019092919080519060200190929190505050955095509550955095509550612d9386858585612986565b6007819055506000612da68484846118b1565b509050612dd6670de0b6b3a7640000612dc8838e613bee90919063ffffffff16565b613c7490919063ffffffff16565b9050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415612f5557803410158015612e3e5750600081115b612eb0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f4552525f42414c5f45544800000000000000000000000000000000000000000081525060200191505060405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b158015612f1a57600080fd5b505af1158015612f2e573d6000803e3d6000fd5b5050505050612f4f33612f4a8334613fa490919063ffffffff16565b613cbe565b5061308f565b8a8673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015612fd357600080fd5b505afa158015612fe7573d6000803e3d6000fd5b505050506040513d6020811015612ffd57600080fd5b81019080805190602001909291905050501015801561301c575060008b115b61308e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f4552525f42414c5f535452494b4500000000000000000000000000000000000081525060200191505060405180910390fd5b5b60006130b6846130a8878f613bee90919063ffffffff16565b613c7490919063ffffffff16565b905060008873ffffffffffffffffffffffffffffffffffffffff1663a9059cbb8d846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561314157600080fd5b505af1158015613155573d6000803e3d6000fd5b505050506040513d602081101561316b57600080fd5b8101908080519060200190929190505050905060008c73ffffffffffffffffffffffffffffffffffffffff16636a627842306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019150506040805180830381600087803b1580156131fe57600080fd5b505af1158015613212573d6000803e3d6000fd5b505050506040513d604081101561322857600080fd5b8101908080519060200190929190805190602001909291905050505090503373ffffffffffffffffffffffffffffffffffffffff167fbeae048c6d270d9469f86cf6e8fedda3c60ad770f16c24c9fc131c8e9a09101d8f858760405180848152602001838152602001828152602001935050505060405180910390a281801561336f57508c73ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561333357600080fd5b505af1158015613347573d6000803e3d6000fd5b505050506040513d602081101561335d57600080fd5b81019080805190602001909291905050505b9b5050505050505050505050506001600060156101000a81548160ff02191690831515021790555092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006133d0613da5565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613491576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b81600a60008473ffffffffffffffffffffffffffffffffffffffff16636ed71ede6040518163ffffffff1660e01b815260040160206040518083038186803b1580156134dc57600080fd5b505afa1580156134f0573d6000803e3d6000fd5b505050506040513d602081101561350657600080fd5b8101908080519060200190929190505050815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f10a6f3b321a2a208b61ef604cd6ef66d5d79ee16620737c0ca6cfc0649fcc94f82604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1819050919050565b606060058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156136665780601f1061363b57610100808354040283529160200191613666565b820191906000526020600020905b81548152906001019060200180831161364957829003601f168201915b5050505050905090565b600061373361367d613da5565b8461372e85604051806060016040528060258152602001614a0860259139600260006136a7613da5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461433b9092919063ffffffff16565b613dad565b6001905092915050565b600061375161374a613da5565b8484614076565b6001905092915050565b600a6020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60075481565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b613823613da5565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146138e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561396a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806148e76026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613aae576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061499e6021913960400191505060405180910390fd5b613aba826000836147d6565b613b26816040518060600160405280602281526020016148c560229139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461433b9092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613b7e81600354613fa490919063ffffffff16565b600381905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600080831415613c015760009050613c6e565b6000828402905082848281613c1257fe5b0414613c69576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806149556021913960400191505060405180910390fd5b809150505b92915050565b6000613cb683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506147db565b905092915050565b6000808373ffffffffffffffffffffffffffffffffffffffff168360405180600001905060006040518083038185875af1925050503d8060008114613d1f576040519150601f19603f3d011682016040523d82523d6000602084013e613d24565b606091505b5050905080613d9b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f4552525f53454e445f455448455200000000000000000000000000000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613e33576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806149e46024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613eb9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061490d6022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6000613fe683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061433b565b905092915050565b60008082840190508381101561406c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156140fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806149bf6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614182576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806148a26023913960400191505060405180910390fd5b61418d8383836147d6565b6141f98160405180606001604052806026815260200161492f60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461433b9092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061428e81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613fee90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60008383111582906143e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156143ad578082015181840152602081019050614392565b50505050905090810190601f1680156143da5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600060149054906101000a900460ff1661447d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b60008060146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6144c0613da5565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600060149054906101000a900460ff1615614586576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600060146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586145ca613da5565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156146b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6146bc600083836147d6565b6146d181600354613fee90919063ffffffff16565b60038190555061472981600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613fee90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b505050565b60008083118290614887576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561484c578082015181840152602081019050614831565b50505050905090810190601f1680156148795780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161489357fe5b04905080915050939250505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ec44cd48f19f77b4307d8e55c8a36dfbaa4b355cf53daeea4b22712257ce31c464736f6c63430006020033

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

000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000da17fbeda95222f331cb1d252401f4b44f49f7a0000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000154554482053686f72742050757420506f6f6c204c500000000000000000000000000000000000000000000000000000000000000000000000000000000000000450554c5000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _weth (address): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2
Arg [1] : _oracle (address): 0xdA17fbEdA95222f331Cb1D252401F4b44F49f7A0
Arg [2] : name (string): ETH Short Put Pool LP
Arg [3] : symbol (string): PULP

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Arg [1] : 000000000000000000000000da17fbeda95222f331cb1d252401f4b44f49f7a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000015
Arg [5] : 4554482053686f72742050757420506f6f6c204c500000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 50554c5000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

32559:11909:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34150:4;;;;;;;;;;;34136:18;;:10;:18;;;34129:26;;;;32559:11909;;;;;36675:1854;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36675:1854:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;36675:1854:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20054:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20054:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;20054:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22160:169;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22160:169:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22160:169:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;41208:1408;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41208:1408:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;41208:1408:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;21129:100;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21129:100:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22803:321;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22803:321:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22803:321:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;43428:314;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43428:314:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;43428:314:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20981:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20981:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;23533:218;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23533:218:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23533:218:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;32797:43;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32797:43:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32911:27;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32911:27:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;33767:179;;8:9:-1;5:2;;;30:1;27;20:12;5:2;33767:179:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4807:78;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4807:78:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;32744:46;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32744:46:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44153:312;;8:9:-1;5:2;;;30:1;27;20:12;5:2;44153:312:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;44153:312:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32665:72;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32665:72:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;34425:1562;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;34425:1562:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;21292:119;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21292:119:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21292:119:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;7319:148;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7319:148:0;;;:::i;:::-;;42802:507;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42802:507:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;42802:507:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32883:21;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32883:21:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;39115:1891;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;39115:1891:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;6677:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6677:79:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;33574:185;;8:9:-1;5:2;;;30:1;27;20:12;5:2;33574:185:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;33574:185:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20256:87;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20256:87:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;20256:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24254:269;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24254:269:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;24254:269:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;21624:175;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21624:175:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21624:175:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;32951:41;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32951:41:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;32951:41:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;32849:25;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32849:25:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21862:151;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21862:151:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21862:151:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;7622:244;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7622:244:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;7622:244:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;36675:1854;36832:4;17627:11;;;;;;;;;;;17619:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17766:5;17752:11;;:19;;;;;;;;;;;;;;;;;;36806:6:::1;34041;34004:43;;:6;:33;34018:6;34011:23;;;:25;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::1;5:2;34011:25:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;34011:25:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::1;2:2;34011:25:0;;;;;;;;;;;;;;;;34004:33;;;;;;;;;;;;;;;;;;;;;:43;;;33996:65;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;36924:6:::2;36899:21;36909:10;36899:9;:21::i;:::-;:31;;:45;;;;;36943:1;36934:6;:10;36899:45;36891:70;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;37028:19;37050:13;:11;:13::i;:::-;37028:35;;37104:25;37110:10;37122:6;37104:5;:25::i;:::-;37185:14;37209:6;37202:21;;;:23;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::2;5:2;37202:23:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;37202:23:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::2;2:2;37202:23:0;;;;;;;;;;;;;;;;37185:40;;37236:14;37260:6;37253:21;;;:23;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::2;5:2;37253:23:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;37253:23:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::2;2:2;37253:23:0;;;;;;;;;;;;;;;;37236:40;;37374:17;37394:68;37450:11;37394:51;37412:6;37405:24;;;37438:4;37405:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::2;5:2;37405:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;37405:39:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::2;2:2;37405:39:0;;;;;;;;;;;;;;;;37394:6;:10;;:51;;;;:::i;:::-;:55;;:68;;;;:::i;:::-;37374:88;;37593:17;37613:68;37669:11;37613:51;37631:6;37624:24;;;37657:4;37624:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::2;5:2;37624:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;37624:39:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::2;2:2;37624:39:0;;;;;;;;;;;;;;;;37613:6;:10;;:51;;;;:::i;:::-;:55;;:68;;;;:::i;:::-;37593:88;;37709:1;37697:9;:13;37694:499;;;37728:15;37754:6;37747:22;;;:24;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::2;5:2;37747:24:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;37747:24:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::2;2:2;37747:24:0;;;;;;;;;;;;;;;;37727:44;;37805:9;37794:7;:20;;37786:47;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;37930:12;37953:6;37946:23;;;37970:6;37978:9;37946:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::2;5:2;37946:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;37946:42:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::2;2:2;37946:42:0;;;;;;;;;;;;;;;;37929:59;;38073:16;38100:6;38093:21;;;38115:10;38093:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::2;5:2;38093:33:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;38093:33:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::2;2:2;38093:33:0;;;;;;;;;;;;;;;;38072:54;;38160:9;38148:8;:21;:32;;;;;38173:7;38148:32;38141:40;;;;37694:499;;;;38261:10;38252:42;;;38273:9;38284;38252:42;;;;;;;;;;;;;;;;;;;;;;;;38318:4;;;;;;;;;;;38308:14;;:6;:14;;;38305:217;;;38345:4;;;;;;;;;;;38339:20;;;38360:9;38339:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::2;5:2;38339:31:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;38339:31:0;;;;38392:32;38402:10;38414:9;38392;:32::i;:::-;38385:39;;;;;;;;;38305:217;38471:6;38464:23;;;38488:10;38500:9;38464:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::2;5:2;38464:46:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;38464:46:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::2;2:2;38464:46:0;;;;;;;;;;;;;;;;38457:53;;;;;;;34072:1;17784::::1;17946:4:::0;17932:11;;:18;;;;;;;;;;;;;;;;;;36675:1854;;;;:::o;20054:83::-;20091:13;20124:5;20117:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20054:83;:::o;22160:169::-;22243:4;22260:39;22269:12;:10;:12::i;:::-;22283:7;22292:6;22260:8;:39::i;:::-;22317:4;22310:11;;22160:169;;;;:::o;41208:1408::-;41327:15;41344:21;41509:14;41543:6;;;;;;;;;;;41526:43;;;41570:12;;;;;;;;;;;41526:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41526:57:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;41526:57:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;41526:57:0;;;;;;;;;;;;;;;;41509:74;;41697:14;41714:30;41739:4;41714:20;32833:7;41714:5;:9;;:20;;;;:::i;:::-;:24;;:30;;;;:::i;:::-;41697:47;;41816:18;41837:28;41858:6;41837:16;41846:6;41837:4;:8;;:16;;;;:::i;:::-;:20;;:28;;;;:::i;:::-;41816:49;;41912:17;41946:4;41932:10;:18;;:45;;41976:1;41932:45;;;41953:20;41968:4;41953:10;:14;;:20;;;;:::i;:::-;41932:45;41912:65;;42039:27;42050:15;42039:6;:10;;:27;;;;:::i;:::-;42022:45;;42122:17;42142:33;42168:6;42142:21;32833:7;42142:6;:10;;:21;;;;:::i;:::-;:25;;:33;;;;:::i;:::-;42122:53;;42222:17;42242:258;32785:5;42242:204;32833:7;42242:155;42377:19;42382:13;42377:4;:19::i;:::-;42242:100;42331:10;;42242:54;32833:7;42242:9;:43;;:54;;;;:::i;:::-;:88;;:100;;;;:::i;:::-;:134;;:155;;;;:::i;:::-;:193;;:204;;;;:::i;:::-;:242;;:258;;;;:::i;:::-;42222:278;;42555:53;32833:7;42555:38;42586:6;42556:24;42570:9;42556;:13;;:24;;;;:::i;:::-;42555:30;;:38;;;;:::i;:::-;:42;;:53;;;;:::i;:::-;42545:63;;41208:1408;;;;;;;;;;;;:::o;21129:100::-;21182:7;21209:12;;21202:19;;21129:100;:::o;22803:321::-;22909:4;22926:36;22936:6;22944:9;22955:6;22926:9;:36::i;:::-;22973:121;22982:6;22990:12;:10;:12::i;:::-;23004:89;23042:6;23004:89;;;;;;;;;;;;;;;;;:11;:19;23016:6;23004:19;;;;;;;;;;;;;;;:33;23024:12;:10;:12::i;:::-;23004:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;22973:8;:121::i;:::-;23112:4;23105:11;;22803:321;;;;;:::o;43428:314::-;43516:16;43556:178;32833:7;43556:141;43692:4;43556:109;32833:7;43556:72;43622:5;43563:6;43556:24;;;43589:4;43556:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43556:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;43556:39:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;43556:39:0;;;;;;;;;;;;;;;;:65;;:72;;;;:::i;:::-;:98;;:109;;;;:::i;:::-;:135;;:141;;;;:::i;:::-;:167;;:178;;;;:::i;:::-;43545:189;;43428:314;;;;;:::o;20981:83::-;21022:5;21047:9;;;;;;;;;;;21040:16;;20981:83;:::o;23533:218::-;23621:4;23638:83;23647:12;:10;:12::i;:::-;23661:7;23670:50;23709:10;23670:11;:25;23682:12;:10;:12::i;:::-;23670:25;;;;;;;;;;;;;;;:34;23696:7;23670:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;23638:8;:83::i;:::-;23739:4;23732:11;;23533:218;;;;:::o;32797:43::-;32833:7;32797:43;:::o;32911:27::-;;;;;;;;;;;;;:::o;33767:179::-;33809:4;6899:12;:10;:12::i;:::-;6889:22;;:6;;;;;;;;;;;:22;;;6881:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33829:8:::1;:6;:8::i;:::-;33826:91;;;33854:10;:8;:10::i;:::-;33826:91;;;33897:8;:6;:8::i;:::-;33826:91;33934:4;33927:11;;33767:179:::0;:::o;4807:78::-;4846:4;4870:7;;;;;;;;;;;4863:14;;4807:78;:::o;32744:46::-;32785:5;32744:46;:::o;44153:312::-;44199:9;44229:1;44225;:5;44221:237;;;44247:9;44269:1;44264;44260;:5;44259:11;;;;;;44247:23;;44289:1;44285:5;;44305:92;44316:1;44312;:5;44305:92;;;44342:1;44338:5;;44380:1;44375;44371;44367;:5;;;;;;:9;44366:15;;;;;;44362:19;;44305:92;;;44221:237;;;;44423:1;44418;:6;44414:44;;44445:1;44441:5;;44414:44;44221:237;44153:312;;;:::o;32665:72::-;;;;;;;;;;;;;:::o;34425:1562::-;34597:4;5044:7;;;;;;;;;;;5043:8;5035:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17627:11:::1;;;;;;;;;;;17619:55;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;17766:5;17752:11:::0;::::1;:19;;;;;;;;;;;;;;;;;;34662:14:::2;34686:6;34679:21;;;:23;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::2;5:2;34679:23:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;34679:23:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::2;2:2;34679:23:0;;;;;;;;;;;;;;;;34662:40;;34726:4;;;;;;;;;;;34716:14;;:6;:14;;;34713:227;;;34768:6;34755:9;:19;:33;;;;;34787:1;34778:6;:10;34755:33;34747:57;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;34713:227;;;34885:6;34852;34845:24;;;34870:10;34845:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::2;5:2;34845:36:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;34845:36:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::2;2:2;34845:36:0;;;;;;;;;;;;;;;;:46;;:60;;;;;34904:1;34895:6;:10;34845:60;34837:91;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;34713:227;35039:20;35070:16:::0;35096:6:::2;35089:24;;;35122:4;35089:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::2;5:2;35089:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;35089:39:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::2;2:2;35089:39:0;;;;;;;;;;;;;;;;35070:58;;35139:19;35161:13;:11;:13::i;:::-;35139:35;;35306:1;35277:25;35290:11;35277:8;:12;;:25;;;;:::i;:::-;:30;35274:296;;;35339:6;35324:21;;35274:296;;;35392:8;35366:23;35377:11;35366:6;:10;;:23;;;;:::i;:::-;:34;35363:207;;;35452:8;35425:23;35436:11;35425:6;:10;;:23;;;;:::i;:::-;:35;;35417:56;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;35363:207;;;35521:37;35549:8;35521:23;35532:11;35521:6;:10;;:23;;;;:::i;:::-;:27;;:37;;;;:::i;:::-;35506:52;;35363:207;35274:296;35582:31;35588:10;35600:12;35582:5;:31::i;:::-;35637:10;35629:41;;;35649:6;35657:12;35629:41;;;;;;;;;;;;;;;;;;;;;;;;35781:4;;;;;;;;;;;35771:14;;:6;:14;;;35768:212;;;35808:4;;;;;;;;;;;35802:19;;;35828:9;35802:38;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::2;5:2;35802:38:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;35802:38:0;;;;;35862:4;35855:11;;;;;;;;35768:212;35913:6;35906:27;;;35934:10;35954:4;35961:6;35906:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::2;5:2;35906:62:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;35906:62:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::2;2:2;35906:62:0;;;;;;;;;;;;;;;;35899:69;;;;;;17784:1;17946:4:::1;17932:11;;:18;;;;;;;;;;;;;;;;;;34425:1562:::0;;;;:::o;21292:119::-;21358:7;21385:9;:18;21395:7;21385:18;;;;;;;;;;;;;;;;21378:25;;21292:119;;;:::o;7319:148::-;6899:12;:10;:12::i;:::-;6889:22;;:6;;;;;;;;;;;:22;;;6881:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7426:1:::1;7389:40;;7410:6;::::0;::::1;;;;;;;;;7389:40;;;;;;;;;;;;7457:1;7440:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;7319:148::o:0;42802:507::-;42945:19;42983:16;43003:33;43016:6;43024:4;43030:5;43003:12;:33::i;:::-;42982:54;;43047:16;43073:6;43066:24;;;43099:4;43066:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43066:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;43066:39:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;43066:39:0;;;;;;;;;;;;;;;;43047:58;;43141:1;43130:8;:12;:169;;43296:3;43130:169;;;43170:98;43245:22;43258:8;43245;:12;;:22;;;;:::i;:::-;43170:44;43209:4;43170:8;:38;;:44;;;;:::i;:::-;:74;;:98;;;;:::i;:::-;43130:169;43116:183;;42802:507;;;;;;;;:::o;32883:21::-;;;;;;;;;;;;;:::o;39115:1891::-;39284:4;17627:11;;;;;;;;;;;17619:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17766:5;17752:11;;:19;;;;;;;;;;;;;;;;;;39258:6:::1;34041;34004:43;;:6;:33;34018:6;34011:23;;;:25;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::1;5:2;34011:25:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;34011:25:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::1;2:2;34011:25:0;;;;;;;;;;;;;;;;34004:33;;;;;;;;;;;;;;;;;;;;;:43;;;33996:65;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;39364:15:::2;39408::::0;39452::::2;39516:13:::0;39544:14:::2;39573:15:::0;39609:6:::2;39602:20;;;:22;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::2;5:2;39602:22:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;39602:22:0;;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27::::0;20:12:::2;2:2;39602:22:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39349:275;;;;;;;;;;;;39716:57;39741:7;39750;39759:5;39766:6;39716:24;:57::i;:::-;39703:10;:70;;;;39785:15;39806:40;39823:5;39830:6;39838:7;39806:16;:40::i;:::-;39784:62;;;39867:34;32833:7;39867:19;39878:7;39867:6;:10;;:19;;;;:::i;:::-;:23;;:34;;;;:::i;:::-;39857:44;;40036:4;;;;;;;;;;;40025:15;;:7;:15;;;40022:373;;;40078:7;40065:9;:20;;:35;;;;;40099:1;40089:7;:11;40065:35;40057:59;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;40137:4;;;;;;;;;;;40131:19;;;40157:7;40131:36;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::2;5:2;40131:36:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;40131:36:0;;;;;40217:45;40227:10;40239:22;40253:7;40239:9;:13;;:22;;;;:::i;:::-;40217:9;:45::i;:::-;;40022:373;;;40344:6;40310:7;40303:25;;;40329:10;40303:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::2;5:2;40303:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;40303:37:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::2;2:2;40303:37:0;;;;;;;;;;;;;;;;:47;;:61;;;;;40363:1;40354:6;:10;40303:61;40295:88;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;40022:373;40493:17;40513:29;40535:6;40513:17;40524:5;40513:6;:10;;:17;;;;:::i;:::-;:21;;:29;;;;:::i;:::-;40493:49;;40635:14;40660:7;40653:24;;;40678:6;40686:9;40653:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::2;5:2;40653:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;40653:43:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::2;2:2;40653:43:0;;;;;;;;;;;;;;;;40634:62;;40768:16;40796:6;40789:19;;;40817:4;40789:34;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::2;5:2;40789:34:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;40789:34:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::2;2:2;40789:34:0;;;;;;;;;;;;;;;;;;;;;;;;;40767:56;;;40883:10;40879:43;;;40895:6;40903:9;40914:7;40879:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40940:9;:58;;;;;40960:6;40953:23;;;40977:10;40989:8;40953:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::2;5:2;40953:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;40953:45:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::2;2:2;40953:45:0;;;;;;;;;;;;;;;;40940:58;40933:65;;;;;;;;;;;;17784:1:::1;17946:4:::0;17932:11;;:18;;;;;;;;;;;;;;;;;;39115:1891;;;;:::o;6677:79::-;6715:7;6742:6;;;;;;;;;;;6735:13;;6677:79;:::o;33574:185::-;33635:7;6899:12;:10;:12::i;:::-;6889:22;;:6;;;;;;;;;;;:22;;;6881:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33691:6:::1;33655;:33;33669:6;33662:23;;;:25;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::1;5:2;33662:25:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;33662:25:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::1;2:2;33662:25:0;;;;;;;;;;;;;;;;33655:33;;;;;;;;;;;;:42;;;;;;;;;;;;;;;;;;33713:14;33720:6;33713:14;;;;;;;;;;;;;;;;;;;;;;33745:6;33738:13;;33574:185:::0;;;:::o;20256:87::-;20295:13;20328:7;20321:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20256:87;:::o;24254:269::-;24347:4;24364:129;24373:12;:10;:12::i;:::-;24387:7;24396:96;24435:15;24396:96;;;;;;;;;;;;;;;;;:11;:25;24408:12;:10;:12::i;:::-;24396:25;;;;;;;;;;;;;;;:34;24422:7;24396:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;24364:8;:129::i;:::-;24511:4;24504:11;;24254:269;;;;:::o;21624:175::-;21710:4;21727:42;21737:12;:10;:12::i;:::-;21751:9;21762:6;21727:9;:42::i;:::-;21787:4;21780:11;;21624:175;;;;:::o;32951:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;32849:25::-;;;;:::o;21862:151::-;21951:7;21978:11;:18;21990:5;21978:18;;;;;;;;;;;;;;;:27;21997:7;21978:27;;;;;;;;;;;;;;;;21971:34;;21862:151;;;;:::o;7622:244::-;6899:12;:10;:12::i;:::-;6889:22;;:6;;;;;;;;;;;:22;;;6881:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7731:1:::1;7711:22;;:8;:22;;;;7703:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7821:8;7792:38;;7813:6;::::0;::::1;;;;;;;;;7792:38;;;;;;;;;;;;7850:8;7841:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;7622:244:::0;:::o;26543:418::-;26646:1;26627:21;;:7;:21;;;;26619:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26699:49;26720:7;26737:1;26741:6;26699:20;:49::i;:::-;26782:68;26805:6;26782:68;;;;;;;;;;;;;;;;;:9;:18;26792:7;26782:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;26761:9;:18;26771:7;26761:18;;;;;;;;;;;;;;;:89;;;;26876:24;26893:6;26876:12;;:16;;:24;;;;:::i;:::-;26861:12;:39;;;;26942:1;26916:37;;26925:7;26916:37;;;26946:6;26916:37;;;;;;;;;;;;;;;;;;26543:418;;:::o;10037:471::-;10095:7;10345:1;10340;:6;10336:47;;;10370:1;10363:8;;;;10336:47;10395:9;10411:1;10407;:5;10395:17;;10440:1;10435;10431;:5;;;;;;:10;10423:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10499:1;10492:8;;;10037:471;;;;;:::o;10976:132::-;11034:7;11061:39;11065:1;11068;11061:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;11054:46;;10976:132;;;;:::o;43821:203::-;43885:4;43903:12;43921:2;:7;;43935:6;43921:25;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;19;14:27;;;;67:4;61:11;56:16;;134:4;130:9;123:4;105:16;101:27;97:43;94:1;90:51;84:4;77:65;157:16;154:1;147:27;211:16;208:1;201:4;198:1;194:12;179:49;5:228;;14:27;32:4;27:9;;5:228;;43902:44:0;;;43965:7;43957:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44009:7;44002:14;;;43821:203;;;;:::o;3469:106::-;3522:15;3557:10;3550:17;;3469:106;:::o;27401:346::-;27520:1;27503:19;;:5;:19;;;;27495:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27601:1;27582:21;;:7;:21;;;;27574:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27685:6;27655:11;:18;27667:5;27655:18;;;;;;;;;;;;;;;:27;27674:7;27655:27;;;;;;;;;;;;;;;:36;;;;27723:7;27707:32;;27716:5;27707:32;;;27732:6;27707:32;;;;;;;;;;;;;;;;;;27401:346;;;:::o;9163:136::-;9221:7;9248:43;9252:1;9255;9248:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;9241:50;;9163:136;;;;:::o;8707:181::-;8765:7;8785:9;8801:1;8797;:5;8785:17;;8826:1;8821;:6;;8813:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8879:1;8872:8;;;8707:181;;;;:::o;25013:539::-;25137:1;25119:20;;:6;:20;;;;25111:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25221:1;25200:23;;:9;:23;;;;25192:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25276:47;25297:6;25305:9;25316:6;25276:20;:47::i;:::-;25356:71;25378:6;25356:71;;;;;;;;;;;;;;;;;:9;:17;25366:6;25356:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;25336:9;:17;25346:6;25336:17;;;;;;;;;;;;;;;:91;;;;25461:32;25486:6;25461:9;:20;25471:9;25461:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;25438:9;:20;25448:9;25438:20;;;;;;;;;;;;;;;:55;;;;25526:9;25509:35;;25518:6;25509:35;;;25537:6;25509:35;;;;;;;;;;;;;;;;;;25013:539;;;:::o;9594:192::-;9680:7;9713:1;9708;:6;;9716:12;9700:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;9700:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9740:9;9756:1;9752;:5;9740:17;;9777:1;9770:8;;;9594:192;;;;;:::o;5540:120::-;5243:7;;;;;;;;;;;5235:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5609:5:::1;5599:7:::0;::::1;:15;;;;;;;;;;;;;;;;;;5630:22;5639:12;:10;:12::i;:::-;5630:22;;;;;;;;;;;;;;;;;;;;;;5540:120::o:0;5358:118::-;5044:7;;;;;;;;;;;5043:8;5035:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5428:4:::1;5418:7;;:14;;;;;;;;;;;;;;;;;;5448:20;5455:12;:10;:12::i;:::-;5448:20;;;;;;;;;;;;;;;;;;;;;;5358:118::o:0;25833:378::-;25936:1;25917:21;;:7;:21;;;;25909:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25987:49;26016:1;26020:7;26029:6;25987:20;:49::i;:::-;26064:24;26081:6;26064:12;;:16;;:24;;;;:::i;:::-;26049:12;:39;;;;26120:30;26143:6;26120:9;:18;26130:7;26120:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;26099:9;:18;26109:7;26099:18;;;;;;;;;;;;;;;:51;;;;26187:7;26166:37;;26183:1;26166:37;;;26196:6;26166:37;;;;;;;;;;;;;;;;;;25833:378;;:::o;28772:92::-;;;;:::o;11596:345::-;11682:7;11781:1;11777;:5;11784:12;11769:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;11769:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11808:9;11824:1;11820;:5;;;;;;11808:17;;11932:1;11925:8;;;11596:345;;;;;:::o

Swarm Source

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