ETH Price: $3,395.45 (-1.85%)
Gas: 6 Gwei

Token

High Club (HC)
 

Overview

Max Total Supply

1,222 HC

Holders

351

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
ngcg24.eth
Balance
3 HC
0xb34fd18e01a5a42216e461582fbd1e31b671eaf2
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:
HighClub

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-12
*/

// SPDX-License-Identifier: MIT

// GO TO LINE 1885 TO SEE WHERE THE BANANA CONTRACT STARTS
 
// File: @openzeppelin/contracts/utils/Context.sol

pragma solidity >=0.6.0 <0.8.0;

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

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

// File: @openzeppelin/contracts/introspection/IERC165.sol



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol



pragma solidity >=0.6.2 <0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
      * @dev Safely transfers `tokenId` token from `from` to `to`.
      *
      * Requirements:
      *
      * - `from` cannot be the zero address.
      * - `to` cannot be the zero address.
      * - `tokenId` token must exist and be owned by `from`.
      * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
      * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
      *
      * Emits a {Transfer} event.
      */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Metadata.sol



pragma solidity >=0.6.2 <0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Enumerable.sol



pragma solidity >=0.6.2 <0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol



pragma solidity >=0.6.0 <0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4);
}

// File: @openzeppelin/contracts/introspection/ERC165.sol



pragma solidity >=0.6.0 <0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
abstract contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor () internal {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

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



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, 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 (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @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) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @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) {
        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, reverting 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) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * 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);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

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



pragma solidity >=0.6.2 <0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }


    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}

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



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Library for managing an enumerable variant of Solidity's
 * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`]
 * type.
 *
 * Maps have the following properties:
 *
 * - Entries are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Entries are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableMap for EnumerableMap.UintToAddressMap;
 *
 *     // Declare a set state variable
 *     EnumerableMap.UintToAddressMap private myMap;
 * }
 * ```
 *
 * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are
 * supported.
 */
library EnumerableMap {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Map type with
    // bytes32 keys and values.
    // The Map implementation uses private functions, and user-facing
    // implementations (such as Uint256ToAddressMap) are just wrappers around
    // the underlying Map.
    // This means that we can only create new EnumerableMaps for types that fit
    // in bytes32.

    struct MapEntry {
        bytes32 _key;
        bytes32 _value;
    }

    struct Map {
        // Storage of map keys and values
        MapEntry[] _entries;

        // Position of the entry defined by a key in the `entries` array, plus 1
        // because index 0 means a key is not in the map.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function _set(Map storage map, bytes32 key, bytes32 value) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex == 0) { // Equivalent to !contains(map, key)
            map._entries.push(MapEntry({ _key: key, _value: value }));
            // The entry is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            map._indexes[key] = map._entries.length;
            return true;
        } else {
            map._entries[keyIndex - 1]._value = value;
            return false;
        }
    }

    /**
     * @dev Removes a key-value pair from a map. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function _remove(Map storage map, bytes32 key) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex != 0) { // Equivalent to contains(map, key)
            // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one
            // in the array, and then remove the last entry (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = keyIndex - 1;
            uint256 lastIndex = map._entries.length - 1;

            // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            MapEntry storage lastEntry = map._entries[lastIndex];

            // Move the last entry to the index where the entry to delete is
            map._entries[toDeleteIndex] = lastEntry;
            // Update the index for the moved entry
            map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved entry was stored
            map._entries.pop();

            // Delete the index for the deleted slot
            delete map._indexes[key];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function _contains(Map storage map, bytes32 key) private view returns (bool) {
        return map._indexes[key] != 0;
    }

    /**
     * @dev Returns the number of key-value pairs in the map. O(1).
     */
    function _length(Map storage map) private view returns (uint256) {
        return map._entries.length;
    }

   /**
    * @dev Returns the key-value pair stored at position `index` in the map. O(1).
    *
    * Note that there are no guarantees on the ordering of entries inside the
    * array, and it may change when more entries are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) {
        require(map._entries.length > index, "EnumerableMap: index out of bounds");

        MapEntry storage entry = map._entries[index];
        return (entry._key, entry._value);
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     */
    function _tryGet(Map storage map, bytes32 key) private view returns (bool, bytes32) {
        uint256 keyIndex = map._indexes[key];
        if (keyIndex == 0) return (false, 0); // Equivalent to contains(map, key)
        return (true, map._entries[keyIndex - 1]._value); // All indexes are 1-based
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function _get(Map storage map, bytes32 key) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, "EnumerableMap: nonexistent key"); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    /**
     * @dev Same as {_get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {_tryGet}.
     */
    function _get(Map storage map, bytes32 key, string memory errorMessage) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function set(UintToAddressMap storage map, uint256 key, address value) internal returns (bool) {
        return _set(map._inner, bytes32(key), bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function remove(UintToAddressMap storage map, uint256 key) internal returns (bool) {
        return _remove(map._inner, bytes32(key));
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function contains(UintToAddressMap storage map, uint256 key) internal view returns (bool) {
        return _contains(map._inner, bytes32(key));
    }

    /**
     * @dev Returns the number of elements in the map. O(1).
     */
    function length(UintToAddressMap storage map) internal view returns (uint256) {
        return _length(map._inner);
    }

   /**
    * @dev Returns the element stored at position `index` in the set. O(1).
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) {
        (bytes32 key, bytes32 value) = _at(map._inner, index);
        return (uint256(key), address(uint160(uint256(value))));
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     *
     * _Available since v3.4._
     */
    function tryGet(UintToAddressMap storage map, uint256 key) internal view returns (bool, address) {
        (bool success, bytes32 value) = _tryGet(map._inner, bytes32(key));
        return (success, address(uint160(uint256(value))));
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function get(UintToAddressMap storage map, uint256 key) internal view returns (address) {
        return address(uint160(uint256(_get(map._inner, bytes32(key)))));
    }

    /**
     * @dev Same as {get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryGet}.
     */
    function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) {
        return address(uint160(uint256(_get(map._inner, bytes32(key), errorMessage))));
    }
}

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



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    /**
     * @dev Converts a `uint256` to its ASCII `string` representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        uint256 index = digits - 1;
        temp = value;
        while (temp != 0) {
            buffer[index--] = bytes1(uint8(48 + temp % 10));
            temp /= 10;
        }
        return string(buffer);
    }
}

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



pragma solidity >=0.6.0 <0.8.0;

/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
 
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using SafeMath for uint256;
    using Address for address;
    using EnumerableSet for EnumerableSet.UintSet;
    using EnumerableMap for EnumerableMap.UintToAddressMap;
    using Strings for uint256;

    // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
    // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
    bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;

    // Mapping from holder address to their (enumerable) set of owned tokens
    mapping (address => EnumerableSet.UintSet) private _holderTokens;

    // Enumerable mapping from token ids to their owners
    EnumerableMap.UintToAddressMap private _tokenOwners;

    // Mapping from token ID to approved address
    mapping (uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping (address => mapping (address => bool)) private _operatorApprovals;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Optional mapping for token URIs
    mapping (uint256 => string) private _tokenURIs;

    // Base URI
    string private _baseURI;

    /*
     *     bytes4(keccak256('balanceOf(address)')) == 0x70a08231
     *     bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
     *     bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
     *     bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
     *     bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
     *
     *     => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
     *        0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
     */
    bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;

    /*
     *     bytes4(keccak256('name()')) == 0x06fdde03
     *     bytes4(keccak256('symbol()')) == 0x95d89b41
     *     bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
     *
     *     => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
     */
    bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;

    /*
     *     bytes4(keccak256('totalSupply()')) == 0x18160ddd
     *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
     *     bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
     *
     *     => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63
     */
    bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor (string memory name_, string memory symbol_) public {
        _name = name_;
        _symbol = symbol_;

        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721);
        _registerInterface(_INTERFACE_ID_ERC721_METADATA);
        _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _holderTokens[owner].length();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token");
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return string(abi.encodePacked(base, tokenId.toString()));
    }

    /**
    * @dev Returns the base URI set via {_setBaseURI}. This will be
    * automatically added as a prefix in {tokenURI} to each token's URI, or
    * to the token ID if no specific URI is set for that token ID.
    */
    function baseURI() public view virtual returns (string memory) {
        return _baseURI;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        return _holderTokens[owner].at(index);
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds
        return _tokenOwners.length();
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        (uint256 tokenId, ) = _tokenOwners.at(index);
        return tokenId;
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(_msgSender() == owner || ERC721.isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(address from, address to, uint256 tokenId) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _tokenOwners.contains(tokenId);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || ERC721.isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     d*
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual {
        _mint(to, tokenId);
        require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId); // internal owner

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        // Clear metadata (if any)
        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }

        _holderTokens[owner].remove(tokenId);

        _tokenOwners.remove(tokenId);

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(address from, address to, uint256 tokenId) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); // internal owner
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _holderTokens[from].remove(tokenId);
        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev Internal function to set the base URI for all token IDs. It is
     * automatically added as a prefix to the value returned in {tokenURI},
     * or to the token ID if {tokenURI} is empty.
     */
    function _setBaseURI(string memory baseURI_) internal virtual {
        _baseURI = baseURI_;
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
        private returns (bool)
    {
        if (!to.isContract()) {
            return true;
        }
        bytes memory returndata = to.functionCall(abi.encodeWithSelector(
            IERC721Receiver(to).onERC721Received.selector,
            _msgSender(),
            from,
            tokenId,
            _data
        ), "ERC721: transfer to non ERC721Receiver implementer");
        bytes4 retval = abi.decode(returndata, (bytes4));
        return (retval == _ERC721_RECEIVED);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId); // internal owner
    }

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

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



pragma solidity >=0.6.0 <0.8.0;

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

// START OF HIGH CLUB JOINT CODE

pragma solidity ^0.6.6;
pragma experimental ABIEncoderV2;

contract HighClub is ERC721, Ownable  {

    using SafeMath for uint256;

    string public JOINT_PROVENANCE = "";
    string public LICENSE_TEXT = "";

    uint256 public constant jointPrice = 0.02 * 10 ** 18;
    uint256 public constant MAX_JOINTS = 10000;

    uint public constant maxJointPurchase = 10;

    bool public saleIsActive = true;
    bool licenseLocked = false;

    mapping(uint => string) public jointNames;

    // reserve some joints for team
    uint public jointReserve = 10;

    event jointNameChange(address _by, uint _tokenId, string _name);
    event licenseIsLocked(string _licenseText);

    constructor() public ERC721("High Club", "HC") {

    }

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        msg.sender.transfer(balance);
    }

    function reserverJoints(address _to, uint256 _reserveAmount) public onlyOwner {
        uint supply = totalSupply();
        require(_reserveAmount > 0 && _reserveAmount <= jointReserve, "Not enough reserve left for the team");
        for (uint i = 0; i < _reserveAmount; i++) {
            _safeMint(_to, supply + i);
        }
        jointReserve = jointReserve.sub(_reserveAmount);
    }

    function setProvenanceHash(string memory _provenanceHash) public onlyOwner {
        JOINT_PROVENANCE = _provenanceHash;
    }

    function setBaseURI(string memory _baseURI) public onlyOwner {
        _setBaseURI(_baseURI);
    }

    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function tokensOfOwner(address _owner) external view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 index;
            for (index = 0; index < tokenCount; index++) {
                result[index] = tokenOfOwnerByIndex(_owner, index);
            }
            return result;
        }
    }

    function tokenLicense(uint _id) public view returns(string memory) {
        require(_id < totalSupply(), "Choose a joint within range!");
        return LICENSE_TEXT;
    }

    function lockLicense() public onlyOwner {
        licenseLocked  = true;
        emit licenseIsLocked(LICENSE_TEXT);
    }

    function changeLicense(string memory _license) public onlyOwner {
        require(licenseLocked == false, "License already locked!");
        LICENSE_TEXT = _license;
    }

    function mintJoint(uint _numberOfTokens) public payable {
        require(saleIsActive, "Sale must be active to mint joint...");
        require(_numberOfTokens > 0 && _numberOfTokens <= maxJointPurchase, "Can only mint 10 tokens at a time!");
        require(totalSupply().add(_numberOfTokens) <= MAX_JOINTS
        , "Not enough tokens available for minting...");
        require(msg.value >= jointPrice.mul(_numberOfTokens), "Ether value sent is not enough...");

        for (uint i = 0; i < _numberOfTokens; i++) {
            uint mintIndex = totalSupply();
            if (totalSupply() < MAX_JOINTS) {
                _safeMint(msg.sender, mintIndex);
            }
        }
    }

    function changeJointName(uint _tokenId, string memory _name) public {
        require(ownerOf(_tokenId) == msg.sender, "Hey, your wallet doesn't own this joint!");
        require(sha256(bytes(_name)) != sha256(bytes(jointNames[_tokenId])));
        jointNames[_tokenId] = _name;

        emit jointNameChange(msg.sender, _tokenId, _name);
    }

    function viewJointName(uint _tokenId) public view returns(string memory) {
        require(_tokenId < totalSupply(), "Choose a joint within range.");
        return jointNames[_tokenId];
    }

    function jointNamesOfOwner(address _owner) external view returns(string[] memory) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            return new string[](0);
        } else {
            string[] memory result = new string[](tokenCount);
            for (uint index = 0; index < tokenCount; index++) {
                result[index] = jointNames[tokenOfOwnerByIndex(_owner, index)];
            }
            return result;
        }
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_by","type":"address"},{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"_name","type":"string"}],"name":"jointNameChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_licenseText","type":"string"}],"name":"licenseIsLocked","type":"event"},{"inputs":[],"name":"JOINT_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LICENSE_TEXT","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_JOINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_name","type":"string"}],"name":"changeJointName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_license","type":"string"}],"name":"changeLicense","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"jointNames","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"jointNamesOfOwner","outputs":[{"internalType":"string[]","name":"","type":"string[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"jointPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"jointReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockLicense","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxJointPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numberOfTokens","type":"uint256"}],"name":"mintJoint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_reserveAmount","type":"uint256"}],"name":"reserverJoints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"tokenLicense","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"viewJointName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600b90805190602001906200002b92919062000334565b5060405180602001604052806000815250600c90805190602001906200005392919062000334565b506001600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff021916908315150217905550600a600f553480156200009c57600080fd5b506040518060400160405280600981526020017f4869676820436c756200000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f4843000000000000000000000000000000000000000000000000000000000000815250620001216301ffc9a760e01b6200025460201b60201c565b81600690805190602001906200013992919062000334565b5080600790805190602001906200015292919062000334565b506200016b6380ac58cd60e01b6200025460201b60201c565b62000183635b5e139f60e01b6200025460201b60201c565b6200019b63780e9d6360e01b6200025460201b60201c565b50506000620001af6200032c60201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200044f565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415620002c0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002b7906200041c565b60405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200037757805160ff1916838001178555620003a8565b82800160010185558215620003a8579182015b82811115620003a75782518255916020019190600101906200038a565b5b509050620003b79190620003bb565b5090565b5b80821115620003d6576000816000905550600101620003bc565b5090565b6000620003e9601c836200043e565b91507f4552433136353a20696e76616c696420696e74657266616365206964000000006000830152602082019050919050565b600060208201905081810360008301526200043781620003da565b9050919050565b600082825260208201905092915050565b61530f806200045f6000396000f3fe6080604052600436106102455760003560e01c80636352211e11610139578063b09904b5116100b6578063e0c0c0771161007a578063e0c0c07714610892578063e985e9c5146108bd578063eb8d2444146108fa578063f2fde38b14610925578063f5da38651461094e578063fc2eb74a1461097957610245565b8063b09904b5146107af578063b88d4fde146107d8578063bf4702fc14610801578063c87b56dd14610818578063d9b137b21461085557610245565b8063892aae4f116100fd578063892aae4f146106da5780638da5cb5b1461070557806395d89b41146107305780639c3e72bd1461075b578063a22cb4651461078657610245565b80636352211e146105e15780636c0360eb1461061e57806370a0823114610649578063715018a6146106865780638462151c1461069d57610245565b806323b872dd116101c757806342842e0e1161018b57806342842e0e146104ec5780634c3d2205146105155780634f6ccce71461055257806355f804b31461058f5780635d44ae28146105b857610245565b806323b872dd1461041b5780632f745c591461044457806334918dfd146104815780633ccfd60b146104985780633d524a7f146104af57610245565b8063109695231161020e5780631096952314610343578063141f3de21461036c57806318160ddd146103885780631f03396f146103b357806320cdf027146103f057610245565b80628948161461024a57806301ffc9a71461027557806306fdde03146102b2578063081812fc146102dd578063095ea7b31461031a575b600080fd5b34801561025657600080fd5b5061025f6109a2565b60405161026c9190614f57565b60405180910390f35b34801561028157600080fd5b5061029c60048036038101906102979190613a6c565b6109ad565b6040516102a99190614b18565b60405180910390f35b3480156102be57600080fd5b506102c7610a14565b6040516102d49190614b33565b60405180910390f35b3480156102e957600080fd5b5061030460048036038101906102ff9190613aff565b610ab6565b6040516103119190614a2f565b60405180910390f35b34801561032657600080fd5b50610341600480360381019061033c9190613a07565b610b3b565b005b34801561034f57600080fd5b5061036a60048036038101906103659190613abe565b610c53565b005b61038660048036038101906103819190613aff565b610ce9565b005b34801561039457600080fd5b5061039d610e87565b6040516103aa9190614f57565b60405180910390f35b3480156103bf57600080fd5b506103da60048036038101906103d5919061389c565b610e98565b6040516103e79190614ad4565b60405180910390f35b3480156103fc57600080fd5b50610405611045565b6040516104129190614f57565b60405180910390f35b34801561042757600080fd5b50610442600480360381019061043d9190613901565b61104b565b005b34801561045057600080fd5b5061046b60048036038101906104669190613a07565b6110ab565b6040516104789190614f57565b60405180910390f35b34801561048d57600080fd5b50610496611106565b005b3480156104a457600080fd5b506104ad6111ae565b005b3480156104bb57600080fd5b506104d660048036038101906104d19190613aff565b611279565b6040516104e39190614b33565b60405180910390f35b3480156104f857600080fd5b50610513600480360381019061050e9190613901565b611377565b005b34801561052157600080fd5b5061053c60048036038101906105379190613aff565b611397565b6040516105499190614b33565b60405180910390f35b34801561055e57600080fd5b5061057960048036038101906105749190613aff565b611447565b6040516105869190614f57565b60405180910390f35b34801561059b57600080fd5b506105b660048036038101906105b19190613abe565b61146a565b005b3480156105c457600080fd5b506105df60048036038101906105da9190613b28565b6114f2565b005b3480156105ed57600080fd5b5061060860048036038101906106039190613aff565b61168c565b6040516106159190614a2f565b60405180910390f35b34801561062a57600080fd5b506106336116c3565b6040516106409190614b33565b60405180910390f35b34801561065557600080fd5b50610670600480360381019061066b919061389c565b611765565b60405161067d9190614f57565b60405180910390f35b34801561069257600080fd5b5061069b611824565b005b3480156106a957600080fd5b506106c460048036038101906106bf919061389c565b611961565b6040516106d19190614af6565b60405180910390f35b3480156106e657600080fd5b506106ef611a5a565b6040516106fc9190614f57565b60405180910390f35b34801561071157600080fd5b5061071a611a60565b6040516107279190614a2f565b60405180910390f35b34801561073c57600080fd5b50610745611a8a565b6040516107529190614b33565b60405180910390f35b34801561076757600080fd5b50610770611b2c565b60405161077d9190614b33565b60405180910390f35b34801561079257600080fd5b506107ad60048036038101906107a891906139cb565b611bca565b005b3480156107bb57600080fd5b506107d660048036038101906107d19190613abe565b611d4b565b005b3480156107e457600080fd5b506107ff60048036038101906107fa9190613950565b611e37565b005b34801561080d57600080fd5b50610816611e99565b005b34801561082457600080fd5b5061083f600480360381019061083a9190613aff565b611f6a565b60405161084c9190614b33565b60405180910390f35b34801561086157600080fd5b5061087c60048036038101906108779190613aff565b6120ed565b6040516108899190614b33565b60405180910390f35b34801561089e57600080fd5b506108a76121da565b6040516108b49190614f57565b60405180910390f35b3480156108c957600080fd5b506108e460048036038101906108df91906138c5565b6121df565b6040516108f19190614b18565b60405180910390f35b34801561090657600080fd5b5061090f612273565b60405161091c9190614b18565b60405180910390f35b34801561093157600080fd5b5061094c6004803603810190610947919061389c565b612286565b005b34801561095a57600080fd5b50610963612432565b6040516109709190614b33565b60405180910390f35b34801561098557600080fd5b506109a0600480360381019061099b9190613a07565b6124d0565b005b66470de4df82000081565b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610aac5780601f10610a8157610100808354040283529160200191610aac565b820191906000526020600020905b815481529060010190602001808311610a8f57829003601f168201915b5050505050905090565b6000610ac1826125ee565b610b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af790614dd7565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b468261168c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bae90614e77565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bd661260b565b73ffffffffffffffffffffffffffffffffffffffff161480610c055750610c0481610bff61260b565b6121df565b5b610c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3b90614d17565b60405180910390fd5b610c4e8383612613565b505050565b610c5b61260b565b73ffffffffffffffffffffffffffffffffffffffff16610c79611a60565b73ffffffffffffffffffffffffffffffffffffffff1614610ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc690614df7565b60405180910390fd5b80600b9080519060200190610ce59291906136d9565b5050565b600d60009054906101000a900460ff16610d38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2f90614c77565b60405180910390fd5b600081118015610d495750600a8111155b610d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7f90614e57565b60405180910390fd5b612710610da582610d97610e87565b6126cc90919063ffffffff16565b1115610de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddd90614d57565b60405180910390fd5b610e008166470de4df82000061272190919063ffffffff16565b341015610e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3990614ef7565b60405180910390fd5b60005b81811015610e83576000610e57610e87565b9050612710610e64610e87565b1015610e7557610e743382612791565b5b508080600101915050610e45565b5050565b6000610e9360026127af565b905090565b60606000610ea583611765565b90506000811415610f0557600067ffffffffffffffff81118015610ec857600080fd5b50604051908082528060200260200182016040528015610efc57816020015b6060815260200190600190039081610ee75790505b50915050611040565b60608167ffffffffffffffff81118015610f1e57600080fd5b50604051908082528060200260200182016040528015610f5257816020015b6060815260200190600190039081610f3d5790505b50905060005b8281101561103957600e6000610f6e87846110ab565b81526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156110105780601f10610fe557610100808354040283529160200191611010565b820191906000526020600020905b815481529060010190602001808311610ff357829003601f168201915b505050505082828151811061102157fe5b60200260200101819052508080600101915050610f58565b5080925050505b919050565b600f5481565b61105c61105661260b565b826127c4565b61109b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109290614eb7565b60405180910390fd5b6110a68383836128a2565b505050565b60006110fe82600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612ab990919063ffffffff16565b905092915050565b61110e61260b565b73ffffffffffffffffffffffffffffffffffffffff1661112c611a60565b73ffffffffffffffffffffffffffffffffffffffff1614611182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117990614df7565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b6111b661260b565b73ffffffffffffffffffffffffffffffffffffffff166111d4611a60565b73ffffffffffffffffffffffffffffffffffffffff161461122a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122190614df7565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611275573d6000803e3d6000fd5b5050565b6060611283610e87565b82106112c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bb90614e97565b60405180910390fd5b600e60008381526020019081526020016000208054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561136b5780601f106113405761010080835404028352916020019161136b565b820191906000526020600020905b81548152906001019060200180831161134e57829003601f168201915b50505050509050919050565b61139283838360405180602001604052806000815250611e37565b505050565b600e6020528060005260406000206000915090508054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561143f5780601f106114145761010080835404028352916020019161143f565b820191906000526020600020905b81548152906001019060200180831161142257829003601f168201915b505050505081565b60008061145e836002612ad390919063ffffffff16565b50905080915050919050565b61147261260b565b73ffffffffffffffffffffffffffffffffffffffff16611490611a60565b73ffffffffffffffffffffffffffffffffffffffff16146114e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114dd90614df7565b60405180910390fd5b6114ef81612aff565b50565b3373ffffffffffffffffffffffffffffffffffffffff166115128361168c565b73ffffffffffffffffffffffffffffffffffffffff1614611568576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155f90614f37565b60405180910390fd5b6002600e600084815260200190815260200160002060405161158a91906149f4565b602060405180830381855afa1580156115a7573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906115ca9190613a43565b6002826040516115da91906149dd565b602060405180830381855afa1580156115f7573d6000803e3d6000fd5b5050506040513d601f19601f8201168201806040525081019061161a9190613a43565b141561162557600080fd5b80600e6000848152602001908152602001600020908051906020019061164c9291906136d9565b507fa89cd37603395331c54473a84dacc4f5f5182a6dbeee09085150019a2b7752e733838360405161168093929190614a96565b60405180910390a15050565b60006116bc826040518060600160405280602981526020016152b1602991396002612b199092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561175b5780601f106117305761010080835404028352916020019161175b565b820191906000526020600020905b81548152906001019060200180831161173e57829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cd90614d37565b60405180910390fd5b61181d600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612b38565b9050919050565b61182c61260b565b73ffffffffffffffffffffffffffffffffffffffff1661184a611a60565b73ffffffffffffffffffffffffffffffffffffffff16146118a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189790614df7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6060600061196e83611765565b905060008114156119c957600067ffffffffffffffff8111801561199157600080fd5b506040519080825280602002602001820160405280156119c05781602001602082028036833780820191505090505b50915050611a55565b60608167ffffffffffffffff811180156119e257600080fd5b50604051908082528060200260200182016040528015611a115781602001602082028036833780820191505090505b50905060005b82811015611a4e57611a2985826110ab565b828281518110611a3557fe5b6020026020010181815250508080600101915050611a17565b8193505050505b919050565b61271081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611b225780601f10611af757610100808354040283529160200191611b22565b820191906000526020600020905b815481529060010190602001808311611b0557829003601f168201915b5050505050905090565b600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611bc25780601f10611b9757610100808354040283529160200191611bc2565b820191906000526020600020905b815481529060010190602001808311611ba557829003601f168201915b505050505081565b611bd261260b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3790614c57565b60405180910390fd5b8060056000611c4d61260b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611cfa61260b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d3f9190614b18565b60405180910390a35050565b611d5361260b565b73ffffffffffffffffffffffffffffffffffffffff16611d71611a60565b73ffffffffffffffffffffffffffffffffffffffff1614611dc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbe90614df7565b60405180910390fd5b60001515600d60019054906101000a900460ff16151514611e1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1490614f17565b60405180910390fd5b80600c9080519060200190611e339291906136d9565b5050565b611e48611e4261260b565b836127c4565b611e87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7e90614eb7565b60405180910390fd5b611e9384848484612b4d565b50505050565b611ea161260b565b73ffffffffffffffffffffffffffffffffffffffff16611ebf611a60565b73ffffffffffffffffffffffffffffffffffffffff1614611f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0c90614df7565b60405180910390fd5b6001600d60016101000a81548160ff0219169083151502179055507ff27a6fa5c2c9783f2c131f659c2119106077b81db9f21c76357aa819ad314f7e600c604051611f609190614b55565b60405180910390a1565b6060611f75826125ee565b611fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fab90614e37565b60405180910390fd5b6060600860008481526020019081526020016000208054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561205d5780601f106120325761010080835404028352916020019161205d565b820191906000526020600020905b81548152906001019060200180831161204057829003601f168201915b50505050509050606061206e6116c3565b90506000815114156120845781925050506120e8565b6000825111156120b95780826040516020016120a1929190614a0b565b604051602081830303815290604052925050506120e8565b806120c385612ba9565b6040516020016120d4929190614a0b565b604051602081830303815290604052925050505b919050565b60606120f7610e87565b8210612138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212f90614cf7565b60405180910390fd5b600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156121ce5780601f106121a3576101008083540402835291602001916121ce565b820191906000526020600020905b8154815290600101906020018083116121b157829003601f168201915b50505050509050919050565b600a81565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60009054906101000a900460ff1681565b61228e61260b565b73ffffffffffffffffffffffffffffffffffffffff166122ac611a60565b73ffffffffffffffffffffffffffffffffffffffff1614612302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f990614df7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612372576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236990614bd7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156124c85780601f1061249d576101008083540402835291602001916124c8565b820191906000526020600020905b8154815290600101906020018083116124ab57829003601f168201915b505050505081565b6124d861260b565b73ffffffffffffffffffffffffffffffffffffffff166124f6611a60565b73ffffffffffffffffffffffffffffffffffffffff161461254c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254390614df7565b60405180910390fd5b6000612556610e87565b905060008211801561256a5750600f548211155b6125a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a090614b97565b60405180910390fd5b60005b828110156125cd576125c084828401612791565b80806001019150506125ac565b506125e382600f54612cf090919063ffffffff16565b600f81905550505050565b6000612604826002612d4090919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126868361168c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080828401905083811015612717576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270e90614c17565b60405180910390fd5b8091505092915050565b600080831415612734576000905061278b565b600082840290508284828161274557fe5b0414612786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277d90614db7565b60405180910390fd5b809150505b92915050565b6127ab828260405180602001604052806000815250612d5a565b5050565b60006127bd82600001612db5565b9050919050565b60006127cf826125ee565b61280e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280590614cd7565b60405180910390fd5b60006128198361168c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061288857508373ffffffffffffffffffffffffffffffffffffffff1661287084610ab6565b73ffffffffffffffffffffffffffffffffffffffff16145b80612899575061289881856121df565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166128c28261168c565b73ffffffffffffffffffffffffffffffffffffffff1614612918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290f90614e17565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297f90614c37565b60405180910390fd5b612993838383612dc6565b61299e600082612613565b6129ef81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612dcb90919063ffffffff16565b50612a4181600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612de590919063ffffffff16565b50612a5881836002612dff9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612ac88360000183612e34565b60001c905092915050565b600080600080612ae68660000186612ea1565b915091508160001c8160001c9350935050509250929050565b8060099080519060200190612b159291906136d9565b5050565b6000612b2c846000018460001b84612f24565b60001c90509392505050565b6000612b4682600001612fb5565b9050919050565b612b588484846128a2565b612b6484848484612fc6565b612ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9a90614bb7565b60405180910390fd5b50505050565b60606000821415612bf1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ceb565b600082905060005b60008214612c1b578080600101915050600a8281612c1357fe5b049150612bf9565b60608167ffffffffffffffff81118015612c3457600080fd5b506040519080825280601f01601f191660200182016040528015612c675781602001600182028036833780820191505090505b50905060006001830390508593505b60008414612ce357600a8481612c8857fe5b0660300160f81b82828060019003935081518110612ca257fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8481612cdb57fe5b049350612c76565b819450505050505b919050565b600082821115612d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2c90614c97565b60405180910390fd5b818303905092915050565b6000612d52836000018360001b61312a565b905092915050565b612d64838361314d565b612d716000848484612fc6565b612db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da790614bb7565b60405180910390fd5b505050565b600081600001805490509050919050565b505050565b6000612ddd836000018360001b6132db565b905092915050565b6000612df7836000018360001b6133c3565b905092915050565b6000612e2b846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b613433565b90509392505050565b600081836000018054905011612e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7690614b77565b60405180910390fd5b826000018281548110612e8e57fe5b9060005260206000200154905092915050565b60008082846000018054905011612eed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee490614d77565b60405180910390fd5b6000846000018481548110612efe57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7d9190614b33565b60405180910390fd5b50846000016001820381548110612f9957fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b6000612fe78473ffffffffffffffffffffffffffffffffffffffff1661350f565b612ff45760019050613122565b60606130bb63150b7a0260e01b61300961260b565b88878760405160240161301f9493929190614a4a565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505060405180606001604052806032815260200161527f603291398773ffffffffffffffffffffffffffffffffffffffff166135229092919063ffffffff16565b90506000818060200190518101906130d39190613a95565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b490614d97565b60405180910390fd5b6131c6816125ee565b15613206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131fd90614bf7565b60405180910390fd5b61321260008383612dc6565b61326381600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612de590919063ffffffff16565b5061327a81836002612dff9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080836001016000848152602001908152602001600020549050600081146133b7576000600182039050600060018660000180549050039050600086600001828154811061332657fe5b906000526020600020015490508087600001848154811061334357fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061337b57fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506133bd565b60009150505b92915050565b60006133cf838361353a565b61342857826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905061342d565b600090505b92915050565b60008084600101600085815260200190815260200160002054905060008114156134da57846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050613508565b828560000160018303815481106134ed57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600080823b905060008111915050919050565b6060613531848460008561355d565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b6060824710156135a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161359990614cb7565b60405180910390fd5b6135ab8561350f565b6135ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135e190614ed7565b60405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff16858760405161361491906149dd565b60006040518083038185875af1925050503d8060008114613651576040519150601f19603f3d011682016040523d82523d6000602084013e613656565b606091505b5091509150613666828286613672565b92505050949350505050565b60608315613682578290506136d2565b6000835111156136955782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136c99190614b33565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061371a57805160ff1916838001178555613748565b82800160010185558215613748579182015b8281111561374757825182559160200191906001019061372c565b5b5090506137559190613759565b5090565b5b8082111561377257600081600090555060010161375a565b5090565b6000813590506137858161520b565b92915050565b60008135905061379a81615222565b92915050565b6000815190506137af81615239565b92915050565b6000813590506137c481615250565b92915050565b6000815190506137d981615250565b92915050565b600082601f8301126137f057600080fd5b81356138036137fe82614f9f565b614f72565b9150808252602083016020830185838301111561381f57600080fd5b61382a8382846151b8565b50505092915050565b600082601f83011261384457600080fd5b813561385761385282614fcb565b614f72565b9150808252602083016020830185838301111561387357600080fd5b61387e8382846151b8565b50505092915050565b60008135905061389681615267565b92915050565b6000602082840312156138ae57600080fd5b60006138bc84828501613776565b91505092915050565b600080604083850312156138d857600080fd5b60006138e685828601613776565b92505060206138f785828601613776565b9150509250929050565b60008060006060848603121561391657600080fd5b600061392486828701613776565b935050602061393586828701613776565b925050604061394686828701613887565b9150509250925092565b6000806000806080858703121561396657600080fd5b600061397487828801613776565b945050602061398587828801613776565b935050604061399687828801613887565b925050606085013567ffffffffffffffff8111156139b357600080fd5b6139bf878288016137df565b91505092959194509250565b600080604083850312156139de57600080fd5b60006139ec85828601613776565b92505060206139fd8582860161378b565b9150509250929050565b60008060408385031215613a1a57600080fd5b6000613a2885828601613776565b9250506020613a3985828601613887565b9150509250929050565b600060208284031215613a5557600080fd5b6000613a63848285016137a0565b91505092915050565b600060208284031215613a7e57600080fd5b6000613a8c848285016137b5565b91505092915050565b600060208284031215613aa757600080fd5b6000613ab5848285016137ca565b91505092915050565b600060208284031215613ad057600080fd5b600082013567ffffffffffffffff811115613aea57600080fd5b613af684828501613833565b91505092915050565b600060208284031215613b1157600080fd5b6000613b1f84828501613887565b91505092915050565b60008060408385031215613b3b57600080fd5b6000613b4985828601613887565b925050602083013567ffffffffffffffff811115613b6657600080fd5b613b7285828601613833565b9150509250929050565b6000613b888383613daf565b905092915050565b6000613b9c83836149bf565b60208301905092915050565b613bb181615182565b82525050565b613bc081615104565b82525050565b613bcf816150f2565b82525050565b6000613be082615041565b613bea8185615087565b935083602082028501613bfc85614ff7565b8060005b85811015613c385784840389528151613c198582613b7c565b9450613c248361506d565b925060208a01995050600181019050613c00565b50829750879550505050505092915050565b6000613c558261504c565b613c5f8185615098565b9350613c6a83615007565b8060005b83811015613c9b578151613c828882613b90565b9750613c8d8361507a565b925050600181019050613c6e565b5085935050505092915050565b613cb181615116565b82525050565b6000613cc282615057565b613ccc81856150a9565b9350613cdc8185602086016151c7565b613ce5816151fa565b840191505092915050565b6000613cfb82615057565b613d0581856150ba565b9350613d158185602086016151c7565b80840191505092915050565b600081546001811660008114613d3e5760018114613d6357613da7565b607f6002830416613d4f81876150ba565b955060ff1983168652808601935050613da7565b60028204613d7181876150ba565b9550613d7c85615017565b60005b82811015613d9e57815481890152600182019150602081019050613d7f565b82880195505050505b505092915050565b6000613dba82615062565b613dc481856150c5565b9350613dd48185602086016151c7565b613ddd816151fa565b840191505092915050565b6000613df382615062565b613dfd81856150d6565b9350613e0d8185602086016151c7565b613e16816151fa565b840191505092915050565b6000613e2c82615062565b613e3681856150e7565b9350613e468185602086016151c7565b80840191505092915050565b600081546001811660008114613e6f5760018114613e9557613ed9565b607f6002830416613e8081876150d6565b955060ff198316865260208601935050613ed9565b60028204613ea381876150d6565b9550613eae8561502c565b60005b82811015613ed057815481890152600182019150602081019050613eb1565b80880195505050505b505092915050565b6000613eee6022836150d6565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f546024836150d6565b91507f4e6f7420656e6f7567682072657365727665206c65667420666f72207468652060008301527f7465616d000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613fba6032836150d6565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006140206026836150d6565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614086601c836150d6565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006140c6601b836150d6565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b60006141066024836150d6565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061416c6019836150d6565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006141ac6024836150d6565b91507f53616c65206d7573742062652061637469766520746f206d696e74206a6f696e60008301527f742e2e2e000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614212601e836150d6565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b60006142526026836150d6565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006142b8602c836150d6565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061431e601c836150d6565b91507f43686f6f73652061206a6f696e742077697468696e2072616e676521000000006000830152602082019050919050565b600061435e6038836150d6565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006143c4602a836150d6565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061442a602a836150d6565b91507f4e6f7420656e6f75676820746f6b656e7320617661696c61626c6520666f722060008301527f6d696e74696e672e2e2e000000000000000000000000000000000000000000006020830152604082019050919050565b60006144906022836150d6565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006144f66020836150d6565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006145366021836150d6565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061459c602c836150d6565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006146026020836150d6565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006146426029836150d6565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006146a8602f836150d6565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061470e6022836150d6565b91507f43616e206f6e6c79206d696e7420313020746f6b656e7320617420612074696d60008301527f65210000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006147746021836150d6565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006147da601c836150d6565b91507f43686f6f73652061206a6f696e742077697468696e2072616e67652e000000006000830152602082019050919050565b600061481a6031836150d6565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614880601d836150d6565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b60006148c06021836150d6565b91507f45746865722076616c75652073656e74206973206e6f7420656e6f7567682e2e60008301527f2e000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006149266017836150d6565b91507f4c6963656e736520616c7265616479206c6f636b6564210000000000000000006000830152602082019050919050565b60006149666028836150d6565b91507f4865792c20796f75722077616c6c657420646f65736e2774206f776e2074686960008301527f73206a6f696e74210000000000000000000000000000000000000000000000006020830152604082019050919050565b6149c881615178565b82525050565b6149d781615178565b82525050565b60006149e98284613cf0565b915081905092915050565b6000614a008284613d21565b915081905092915050565b6000614a178285613e21565b9150614a238284613e21565b91508190509392505050565b6000602082019050614a446000830184613bc6565b92915050565b6000608082019050614a5f6000830187613bb7565b614a6c6020830186613bc6565b614a7960408301856149ce565b8181036060830152614a8b8184613cb7565b905095945050505050565b6000606082019050614aab6000830186613ba8565b614ab860208301856149ce565b8181036040830152614aca8184613de8565b9050949350505050565b60006020820190508181036000830152614aee8184613bd5565b905092915050565b60006020820190508181036000830152614b108184613c4a565b905092915050565b6000602082019050614b2d6000830184613ca8565b92915050565b60006020820190508181036000830152614b4d8184613de8565b905092915050565b60006020820190508181036000830152614b6f8184613e52565b905092915050565b60006020820190508181036000830152614b9081613ee1565b9050919050565b60006020820190508181036000830152614bb081613f47565b9050919050565b60006020820190508181036000830152614bd081613fad565b9050919050565b60006020820190508181036000830152614bf081614013565b9050919050565b60006020820190508181036000830152614c1081614079565b9050919050565b60006020820190508181036000830152614c30816140b9565b9050919050565b60006020820190508181036000830152614c50816140f9565b9050919050565b60006020820190508181036000830152614c708161415f565b9050919050565b60006020820190508181036000830152614c908161419f565b9050919050565b60006020820190508181036000830152614cb081614205565b9050919050565b60006020820190508181036000830152614cd081614245565b9050919050565b60006020820190508181036000830152614cf0816142ab565b9050919050565b60006020820190508181036000830152614d1081614311565b9050919050565b60006020820190508181036000830152614d3081614351565b9050919050565b60006020820190508181036000830152614d50816143b7565b9050919050565b60006020820190508181036000830152614d708161441d565b9050919050565b60006020820190508181036000830152614d9081614483565b9050919050565b60006020820190508181036000830152614db0816144e9565b9050919050565b60006020820190508181036000830152614dd081614529565b9050919050565b60006020820190508181036000830152614df08161458f565b9050919050565b60006020820190508181036000830152614e10816145f5565b9050919050565b60006020820190508181036000830152614e3081614635565b9050919050565b60006020820190508181036000830152614e508161469b565b9050919050565b60006020820190508181036000830152614e7081614701565b9050919050565b60006020820190508181036000830152614e9081614767565b9050919050565b60006020820190508181036000830152614eb0816147cd565b9050919050565b60006020820190508181036000830152614ed08161480d565b9050919050565b60006020820190508181036000830152614ef081614873565b9050919050565b60006020820190508181036000830152614f10816148b3565b9050919050565b60006020820190508181036000830152614f3081614919565b9050919050565b60006020820190508181036000830152614f5081614959565b9050919050565b6000602082019050614f6c60008301846149ce565b92915050565b6000604051905081810181811067ffffffffffffffff82111715614f9557600080fd5b8060405250919050565b600067ffffffffffffffff821115614fb657600080fd5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614fe257600080fd5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006150fd82615158565b9050919050565b600061510f82615158565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061518d82615194565b9050919050565b600061519f826151a6565b9050919050565b60006151b182615158565b9050919050565b82818337600083830152505050565b60005b838110156151e55780820151818401526020810190506151ca565b838111156151f4576000848401525b50505050565b6000601f19601f8301169050919050565b615214816150f2565b811461521f57600080fd5b50565b61522b81615116565b811461523657600080fd5b50565b61524281615122565b811461524d57600080fd5b50565b6152598161512c565b811461526457600080fd5b50565b61527081615178565b811461527b57600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea264697066735822122039f06b0ccf9d4f0fee65e3a578992573b0702cedeebb496cfc92043eb931281964736f6c634300060c0033

Deployed Bytecode

0x6080604052600436106102455760003560e01c80636352211e11610139578063b09904b5116100b6578063e0c0c0771161007a578063e0c0c07714610892578063e985e9c5146108bd578063eb8d2444146108fa578063f2fde38b14610925578063f5da38651461094e578063fc2eb74a1461097957610245565b8063b09904b5146107af578063b88d4fde146107d8578063bf4702fc14610801578063c87b56dd14610818578063d9b137b21461085557610245565b8063892aae4f116100fd578063892aae4f146106da5780638da5cb5b1461070557806395d89b41146107305780639c3e72bd1461075b578063a22cb4651461078657610245565b80636352211e146105e15780636c0360eb1461061e57806370a0823114610649578063715018a6146106865780638462151c1461069d57610245565b806323b872dd116101c757806342842e0e1161018b57806342842e0e146104ec5780634c3d2205146105155780634f6ccce71461055257806355f804b31461058f5780635d44ae28146105b857610245565b806323b872dd1461041b5780632f745c591461044457806334918dfd146104815780633ccfd60b146104985780633d524a7f146104af57610245565b8063109695231161020e5780631096952314610343578063141f3de21461036c57806318160ddd146103885780631f03396f146103b357806320cdf027146103f057610245565b80628948161461024a57806301ffc9a71461027557806306fdde03146102b2578063081812fc146102dd578063095ea7b31461031a575b600080fd5b34801561025657600080fd5b5061025f6109a2565b60405161026c9190614f57565b60405180910390f35b34801561028157600080fd5b5061029c60048036038101906102979190613a6c565b6109ad565b6040516102a99190614b18565b60405180910390f35b3480156102be57600080fd5b506102c7610a14565b6040516102d49190614b33565b60405180910390f35b3480156102e957600080fd5b5061030460048036038101906102ff9190613aff565b610ab6565b6040516103119190614a2f565b60405180910390f35b34801561032657600080fd5b50610341600480360381019061033c9190613a07565b610b3b565b005b34801561034f57600080fd5b5061036a60048036038101906103659190613abe565b610c53565b005b61038660048036038101906103819190613aff565b610ce9565b005b34801561039457600080fd5b5061039d610e87565b6040516103aa9190614f57565b60405180910390f35b3480156103bf57600080fd5b506103da60048036038101906103d5919061389c565b610e98565b6040516103e79190614ad4565b60405180910390f35b3480156103fc57600080fd5b50610405611045565b6040516104129190614f57565b60405180910390f35b34801561042757600080fd5b50610442600480360381019061043d9190613901565b61104b565b005b34801561045057600080fd5b5061046b60048036038101906104669190613a07565b6110ab565b6040516104789190614f57565b60405180910390f35b34801561048d57600080fd5b50610496611106565b005b3480156104a457600080fd5b506104ad6111ae565b005b3480156104bb57600080fd5b506104d660048036038101906104d19190613aff565b611279565b6040516104e39190614b33565b60405180910390f35b3480156104f857600080fd5b50610513600480360381019061050e9190613901565b611377565b005b34801561052157600080fd5b5061053c60048036038101906105379190613aff565b611397565b6040516105499190614b33565b60405180910390f35b34801561055e57600080fd5b5061057960048036038101906105749190613aff565b611447565b6040516105869190614f57565b60405180910390f35b34801561059b57600080fd5b506105b660048036038101906105b19190613abe565b61146a565b005b3480156105c457600080fd5b506105df60048036038101906105da9190613b28565b6114f2565b005b3480156105ed57600080fd5b5061060860048036038101906106039190613aff565b61168c565b6040516106159190614a2f565b60405180910390f35b34801561062a57600080fd5b506106336116c3565b6040516106409190614b33565b60405180910390f35b34801561065557600080fd5b50610670600480360381019061066b919061389c565b611765565b60405161067d9190614f57565b60405180910390f35b34801561069257600080fd5b5061069b611824565b005b3480156106a957600080fd5b506106c460048036038101906106bf919061389c565b611961565b6040516106d19190614af6565b60405180910390f35b3480156106e657600080fd5b506106ef611a5a565b6040516106fc9190614f57565b60405180910390f35b34801561071157600080fd5b5061071a611a60565b6040516107279190614a2f565b60405180910390f35b34801561073c57600080fd5b50610745611a8a565b6040516107529190614b33565b60405180910390f35b34801561076757600080fd5b50610770611b2c565b60405161077d9190614b33565b60405180910390f35b34801561079257600080fd5b506107ad60048036038101906107a891906139cb565b611bca565b005b3480156107bb57600080fd5b506107d660048036038101906107d19190613abe565b611d4b565b005b3480156107e457600080fd5b506107ff60048036038101906107fa9190613950565b611e37565b005b34801561080d57600080fd5b50610816611e99565b005b34801561082457600080fd5b5061083f600480360381019061083a9190613aff565b611f6a565b60405161084c9190614b33565b60405180910390f35b34801561086157600080fd5b5061087c60048036038101906108779190613aff565b6120ed565b6040516108899190614b33565b60405180910390f35b34801561089e57600080fd5b506108a76121da565b6040516108b49190614f57565b60405180910390f35b3480156108c957600080fd5b506108e460048036038101906108df91906138c5565b6121df565b6040516108f19190614b18565b60405180910390f35b34801561090657600080fd5b5061090f612273565b60405161091c9190614b18565b60405180910390f35b34801561093157600080fd5b5061094c6004803603810190610947919061389c565b612286565b005b34801561095a57600080fd5b50610963612432565b6040516109709190614b33565b60405180910390f35b34801561098557600080fd5b506109a0600480360381019061099b9190613a07565b6124d0565b005b66470de4df82000081565b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610aac5780601f10610a8157610100808354040283529160200191610aac565b820191906000526020600020905b815481529060010190602001808311610a8f57829003601f168201915b5050505050905090565b6000610ac1826125ee565b610b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af790614dd7565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b468261168c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bae90614e77565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bd661260b565b73ffffffffffffffffffffffffffffffffffffffff161480610c055750610c0481610bff61260b565b6121df565b5b610c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3b90614d17565b60405180910390fd5b610c4e8383612613565b505050565b610c5b61260b565b73ffffffffffffffffffffffffffffffffffffffff16610c79611a60565b73ffffffffffffffffffffffffffffffffffffffff1614610ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc690614df7565b60405180910390fd5b80600b9080519060200190610ce59291906136d9565b5050565b600d60009054906101000a900460ff16610d38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2f90614c77565b60405180910390fd5b600081118015610d495750600a8111155b610d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7f90614e57565b60405180910390fd5b612710610da582610d97610e87565b6126cc90919063ffffffff16565b1115610de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddd90614d57565b60405180910390fd5b610e008166470de4df82000061272190919063ffffffff16565b341015610e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3990614ef7565b60405180910390fd5b60005b81811015610e83576000610e57610e87565b9050612710610e64610e87565b1015610e7557610e743382612791565b5b508080600101915050610e45565b5050565b6000610e9360026127af565b905090565b60606000610ea583611765565b90506000811415610f0557600067ffffffffffffffff81118015610ec857600080fd5b50604051908082528060200260200182016040528015610efc57816020015b6060815260200190600190039081610ee75790505b50915050611040565b60608167ffffffffffffffff81118015610f1e57600080fd5b50604051908082528060200260200182016040528015610f5257816020015b6060815260200190600190039081610f3d5790505b50905060005b8281101561103957600e6000610f6e87846110ab565b81526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156110105780601f10610fe557610100808354040283529160200191611010565b820191906000526020600020905b815481529060010190602001808311610ff357829003601f168201915b505050505082828151811061102157fe5b60200260200101819052508080600101915050610f58565b5080925050505b919050565b600f5481565b61105c61105661260b565b826127c4565b61109b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109290614eb7565b60405180910390fd5b6110a68383836128a2565b505050565b60006110fe82600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612ab990919063ffffffff16565b905092915050565b61110e61260b565b73ffffffffffffffffffffffffffffffffffffffff1661112c611a60565b73ffffffffffffffffffffffffffffffffffffffff1614611182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117990614df7565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b6111b661260b565b73ffffffffffffffffffffffffffffffffffffffff166111d4611a60565b73ffffffffffffffffffffffffffffffffffffffff161461122a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122190614df7565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611275573d6000803e3d6000fd5b5050565b6060611283610e87565b82106112c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bb90614e97565b60405180910390fd5b600e60008381526020019081526020016000208054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561136b5780601f106113405761010080835404028352916020019161136b565b820191906000526020600020905b81548152906001019060200180831161134e57829003601f168201915b50505050509050919050565b61139283838360405180602001604052806000815250611e37565b505050565b600e6020528060005260406000206000915090508054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561143f5780601f106114145761010080835404028352916020019161143f565b820191906000526020600020905b81548152906001019060200180831161142257829003601f168201915b505050505081565b60008061145e836002612ad390919063ffffffff16565b50905080915050919050565b61147261260b565b73ffffffffffffffffffffffffffffffffffffffff16611490611a60565b73ffffffffffffffffffffffffffffffffffffffff16146114e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114dd90614df7565b60405180910390fd5b6114ef81612aff565b50565b3373ffffffffffffffffffffffffffffffffffffffff166115128361168c565b73ffffffffffffffffffffffffffffffffffffffff1614611568576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155f90614f37565b60405180910390fd5b6002600e600084815260200190815260200160002060405161158a91906149f4565b602060405180830381855afa1580156115a7573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906115ca9190613a43565b6002826040516115da91906149dd565b602060405180830381855afa1580156115f7573d6000803e3d6000fd5b5050506040513d601f19601f8201168201806040525081019061161a9190613a43565b141561162557600080fd5b80600e6000848152602001908152602001600020908051906020019061164c9291906136d9565b507fa89cd37603395331c54473a84dacc4f5f5182a6dbeee09085150019a2b7752e733838360405161168093929190614a96565b60405180910390a15050565b60006116bc826040518060600160405280602981526020016152b1602991396002612b199092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561175b5780601f106117305761010080835404028352916020019161175b565b820191906000526020600020905b81548152906001019060200180831161173e57829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cd90614d37565b60405180910390fd5b61181d600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612b38565b9050919050565b61182c61260b565b73ffffffffffffffffffffffffffffffffffffffff1661184a611a60565b73ffffffffffffffffffffffffffffffffffffffff16146118a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189790614df7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6060600061196e83611765565b905060008114156119c957600067ffffffffffffffff8111801561199157600080fd5b506040519080825280602002602001820160405280156119c05781602001602082028036833780820191505090505b50915050611a55565b60608167ffffffffffffffff811180156119e257600080fd5b50604051908082528060200260200182016040528015611a115781602001602082028036833780820191505090505b50905060005b82811015611a4e57611a2985826110ab565b828281518110611a3557fe5b6020026020010181815250508080600101915050611a17565b8193505050505b919050565b61271081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611b225780601f10611af757610100808354040283529160200191611b22565b820191906000526020600020905b815481529060010190602001808311611b0557829003601f168201915b5050505050905090565b600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611bc25780601f10611b9757610100808354040283529160200191611bc2565b820191906000526020600020905b815481529060010190602001808311611ba557829003601f168201915b505050505081565b611bd261260b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3790614c57565b60405180910390fd5b8060056000611c4d61260b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611cfa61260b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d3f9190614b18565b60405180910390a35050565b611d5361260b565b73ffffffffffffffffffffffffffffffffffffffff16611d71611a60565b73ffffffffffffffffffffffffffffffffffffffff1614611dc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbe90614df7565b60405180910390fd5b60001515600d60019054906101000a900460ff16151514611e1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1490614f17565b60405180910390fd5b80600c9080519060200190611e339291906136d9565b5050565b611e48611e4261260b565b836127c4565b611e87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7e90614eb7565b60405180910390fd5b611e9384848484612b4d565b50505050565b611ea161260b565b73ffffffffffffffffffffffffffffffffffffffff16611ebf611a60565b73ffffffffffffffffffffffffffffffffffffffff1614611f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0c90614df7565b60405180910390fd5b6001600d60016101000a81548160ff0219169083151502179055507ff27a6fa5c2c9783f2c131f659c2119106077b81db9f21c76357aa819ad314f7e600c604051611f609190614b55565b60405180910390a1565b6060611f75826125ee565b611fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fab90614e37565b60405180910390fd5b6060600860008481526020019081526020016000208054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561205d5780601f106120325761010080835404028352916020019161205d565b820191906000526020600020905b81548152906001019060200180831161204057829003601f168201915b50505050509050606061206e6116c3565b90506000815114156120845781925050506120e8565b6000825111156120b95780826040516020016120a1929190614a0b565b604051602081830303815290604052925050506120e8565b806120c385612ba9565b6040516020016120d4929190614a0b565b604051602081830303815290604052925050505b919050565b60606120f7610e87565b8210612138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212f90614cf7565b60405180910390fd5b600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156121ce5780601f106121a3576101008083540402835291602001916121ce565b820191906000526020600020905b8154815290600101906020018083116121b157829003601f168201915b50505050509050919050565b600a81565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60009054906101000a900460ff1681565b61228e61260b565b73ffffffffffffffffffffffffffffffffffffffff166122ac611a60565b73ffffffffffffffffffffffffffffffffffffffff1614612302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f990614df7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612372576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236990614bd7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156124c85780601f1061249d576101008083540402835291602001916124c8565b820191906000526020600020905b8154815290600101906020018083116124ab57829003601f168201915b505050505081565b6124d861260b565b73ffffffffffffffffffffffffffffffffffffffff166124f6611a60565b73ffffffffffffffffffffffffffffffffffffffff161461254c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254390614df7565b60405180910390fd5b6000612556610e87565b905060008211801561256a5750600f548211155b6125a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a090614b97565b60405180910390fd5b60005b828110156125cd576125c084828401612791565b80806001019150506125ac565b506125e382600f54612cf090919063ffffffff16565b600f81905550505050565b6000612604826002612d4090919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126868361168c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080828401905083811015612717576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270e90614c17565b60405180910390fd5b8091505092915050565b600080831415612734576000905061278b565b600082840290508284828161274557fe5b0414612786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277d90614db7565b60405180910390fd5b809150505b92915050565b6127ab828260405180602001604052806000815250612d5a565b5050565b60006127bd82600001612db5565b9050919050565b60006127cf826125ee565b61280e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280590614cd7565b60405180910390fd5b60006128198361168c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061288857508373ffffffffffffffffffffffffffffffffffffffff1661287084610ab6565b73ffffffffffffffffffffffffffffffffffffffff16145b80612899575061289881856121df565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166128c28261168c565b73ffffffffffffffffffffffffffffffffffffffff1614612918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290f90614e17565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297f90614c37565b60405180910390fd5b612993838383612dc6565b61299e600082612613565b6129ef81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612dcb90919063ffffffff16565b50612a4181600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612de590919063ffffffff16565b50612a5881836002612dff9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612ac88360000183612e34565b60001c905092915050565b600080600080612ae68660000186612ea1565b915091508160001c8160001c9350935050509250929050565b8060099080519060200190612b159291906136d9565b5050565b6000612b2c846000018460001b84612f24565b60001c90509392505050565b6000612b4682600001612fb5565b9050919050565b612b588484846128a2565b612b6484848484612fc6565b612ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9a90614bb7565b60405180910390fd5b50505050565b60606000821415612bf1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ceb565b600082905060005b60008214612c1b578080600101915050600a8281612c1357fe5b049150612bf9565b60608167ffffffffffffffff81118015612c3457600080fd5b506040519080825280601f01601f191660200182016040528015612c675781602001600182028036833780820191505090505b50905060006001830390508593505b60008414612ce357600a8481612c8857fe5b0660300160f81b82828060019003935081518110612ca257fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8481612cdb57fe5b049350612c76565b819450505050505b919050565b600082821115612d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2c90614c97565b60405180910390fd5b818303905092915050565b6000612d52836000018360001b61312a565b905092915050565b612d64838361314d565b612d716000848484612fc6565b612db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da790614bb7565b60405180910390fd5b505050565b600081600001805490509050919050565b505050565b6000612ddd836000018360001b6132db565b905092915050565b6000612df7836000018360001b6133c3565b905092915050565b6000612e2b846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b613433565b90509392505050565b600081836000018054905011612e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7690614b77565b60405180910390fd5b826000018281548110612e8e57fe5b9060005260206000200154905092915050565b60008082846000018054905011612eed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee490614d77565b60405180910390fd5b6000846000018481548110612efe57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7d9190614b33565b60405180910390fd5b50846000016001820381548110612f9957fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b6000612fe78473ffffffffffffffffffffffffffffffffffffffff1661350f565b612ff45760019050613122565b60606130bb63150b7a0260e01b61300961260b565b88878760405160240161301f9493929190614a4a565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505060405180606001604052806032815260200161527f603291398773ffffffffffffffffffffffffffffffffffffffff166135229092919063ffffffff16565b90506000818060200190518101906130d39190613a95565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b490614d97565b60405180910390fd5b6131c6816125ee565b15613206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131fd90614bf7565b60405180910390fd5b61321260008383612dc6565b61326381600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612de590919063ffffffff16565b5061327a81836002612dff9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080836001016000848152602001908152602001600020549050600081146133b7576000600182039050600060018660000180549050039050600086600001828154811061332657fe5b906000526020600020015490508087600001848154811061334357fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061337b57fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506133bd565b60009150505b92915050565b60006133cf838361353a565b61342857826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905061342d565b600090505b92915050565b60008084600101600085815260200190815260200160002054905060008114156134da57846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050613508565b828560000160018303815481106134ed57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600080823b905060008111915050919050565b6060613531848460008561355d565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b6060824710156135a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161359990614cb7565b60405180910390fd5b6135ab8561350f565b6135ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135e190614ed7565b60405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff16858760405161361491906149dd565b60006040518083038185875af1925050503d8060008114613651576040519150601f19603f3d011682016040523d82523d6000602084013e613656565b606091505b5091509150613666828286613672565b92505050949350505050565b60608315613682578290506136d2565b6000835111156136955782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136c99190614b33565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061371a57805160ff1916838001178555613748565b82800160010185558215613748579182015b8281111561374757825182559160200191906001019061372c565b5b5090506137559190613759565b5090565b5b8082111561377257600081600090555060010161375a565b5090565b6000813590506137858161520b565b92915050565b60008135905061379a81615222565b92915050565b6000815190506137af81615239565b92915050565b6000813590506137c481615250565b92915050565b6000815190506137d981615250565b92915050565b600082601f8301126137f057600080fd5b81356138036137fe82614f9f565b614f72565b9150808252602083016020830185838301111561381f57600080fd5b61382a8382846151b8565b50505092915050565b600082601f83011261384457600080fd5b813561385761385282614fcb565b614f72565b9150808252602083016020830185838301111561387357600080fd5b61387e8382846151b8565b50505092915050565b60008135905061389681615267565b92915050565b6000602082840312156138ae57600080fd5b60006138bc84828501613776565b91505092915050565b600080604083850312156138d857600080fd5b60006138e685828601613776565b92505060206138f785828601613776565b9150509250929050565b60008060006060848603121561391657600080fd5b600061392486828701613776565b935050602061393586828701613776565b925050604061394686828701613887565b9150509250925092565b6000806000806080858703121561396657600080fd5b600061397487828801613776565b945050602061398587828801613776565b935050604061399687828801613887565b925050606085013567ffffffffffffffff8111156139b357600080fd5b6139bf878288016137df565b91505092959194509250565b600080604083850312156139de57600080fd5b60006139ec85828601613776565b92505060206139fd8582860161378b565b9150509250929050565b60008060408385031215613a1a57600080fd5b6000613a2885828601613776565b9250506020613a3985828601613887565b9150509250929050565b600060208284031215613a5557600080fd5b6000613a63848285016137a0565b91505092915050565b600060208284031215613a7e57600080fd5b6000613a8c848285016137b5565b91505092915050565b600060208284031215613aa757600080fd5b6000613ab5848285016137ca565b91505092915050565b600060208284031215613ad057600080fd5b600082013567ffffffffffffffff811115613aea57600080fd5b613af684828501613833565b91505092915050565b600060208284031215613b1157600080fd5b6000613b1f84828501613887565b91505092915050565b60008060408385031215613b3b57600080fd5b6000613b4985828601613887565b925050602083013567ffffffffffffffff811115613b6657600080fd5b613b7285828601613833565b9150509250929050565b6000613b888383613daf565b905092915050565b6000613b9c83836149bf565b60208301905092915050565b613bb181615182565b82525050565b613bc081615104565b82525050565b613bcf816150f2565b82525050565b6000613be082615041565b613bea8185615087565b935083602082028501613bfc85614ff7565b8060005b85811015613c385784840389528151613c198582613b7c565b9450613c248361506d565b925060208a01995050600181019050613c00565b50829750879550505050505092915050565b6000613c558261504c565b613c5f8185615098565b9350613c6a83615007565b8060005b83811015613c9b578151613c828882613b90565b9750613c8d8361507a565b925050600181019050613c6e565b5085935050505092915050565b613cb181615116565b82525050565b6000613cc282615057565b613ccc81856150a9565b9350613cdc8185602086016151c7565b613ce5816151fa565b840191505092915050565b6000613cfb82615057565b613d0581856150ba565b9350613d158185602086016151c7565b80840191505092915050565b600081546001811660008114613d3e5760018114613d6357613da7565b607f6002830416613d4f81876150ba565b955060ff1983168652808601935050613da7565b60028204613d7181876150ba565b9550613d7c85615017565b60005b82811015613d9e57815481890152600182019150602081019050613d7f565b82880195505050505b505092915050565b6000613dba82615062565b613dc481856150c5565b9350613dd48185602086016151c7565b613ddd816151fa565b840191505092915050565b6000613df382615062565b613dfd81856150d6565b9350613e0d8185602086016151c7565b613e16816151fa565b840191505092915050565b6000613e2c82615062565b613e3681856150e7565b9350613e468185602086016151c7565b80840191505092915050565b600081546001811660008114613e6f5760018114613e9557613ed9565b607f6002830416613e8081876150d6565b955060ff198316865260208601935050613ed9565b60028204613ea381876150d6565b9550613eae8561502c565b60005b82811015613ed057815481890152600182019150602081019050613eb1565b80880195505050505b505092915050565b6000613eee6022836150d6565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f546024836150d6565b91507f4e6f7420656e6f7567682072657365727665206c65667420666f72207468652060008301527f7465616d000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613fba6032836150d6565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006140206026836150d6565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614086601c836150d6565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006140c6601b836150d6565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b60006141066024836150d6565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061416c6019836150d6565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006141ac6024836150d6565b91507f53616c65206d7573742062652061637469766520746f206d696e74206a6f696e60008301527f742e2e2e000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614212601e836150d6565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b60006142526026836150d6565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006142b8602c836150d6565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061431e601c836150d6565b91507f43686f6f73652061206a6f696e742077697468696e2072616e676521000000006000830152602082019050919050565b600061435e6038836150d6565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006143c4602a836150d6565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061442a602a836150d6565b91507f4e6f7420656e6f75676820746f6b656e7320617661696c61626c6520666f722060008301527f6d696e74696e672e2e2e000000000000000000000000000000000000000000006020830152604082019050919050565b60006144906022836150d6565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006144f66020836150d6565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006145366021836150d6565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061459c602c836150d6565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006146026020836150d6565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006146426029836150d6565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006146a8602f836150d6565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061470e6022836150d6565b91507f43616e206f6e6c79206d696e7420313020746f6b656e7320617420612074696d60008301527f65210000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006147746021836150d6565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006147da601c836150d6565b91507f43686f6f73652061206a6f696e742077697468696e2072616e67652e000000006000830152602082019050919050565b600061481a6031836150d6565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614880601d836150d6565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b60006148c06021836150d6565b91507f45746865722076616c75652073656e74206973206e6f7420656e6f7567682e2e60008301527f2e000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006149266017836150d6565b91507f4c6963656e736520616c7265616479206c6f636b6564210000000000000000006000830152602082019050919050565b60006149666028836150d6565b91507f4865792c20796f75722077616c6c657420646f65736e2774206f776e2074686960008301527f73206a6f696e74210000000000000000000000000000000000000000000000006020830152604082019050919050565b6149c881615178565b82525050565b6149d781615178565b82525050565b60006149e98284613cf0565b915081905092915050565b6000614a008284613d21565b915081905092915050565b6000614a178285613e21565b9150614a238284613e21565b91508190509392505050565b6000602082019050614a446000830184613bc6565b92915050565b6000608082019050614a5f6000830187613bb7565b614a6c6020830186613bc6565b614a7960408301856149ce565b8181036060830152614a8b8184613cb7565b905095945050505050565b6000606082019050614aab6000830186613ba8565b614ab860208301856149ce565b8181036040830152614aca8184613de8565b9050949350505050565b60006020820190508181036000830152614aee8184613bd5565b905092915050565b60006020820190508181036000830152614b108184613c4a565b905092915050565b6000602082019050614b2d6000830184613ca8565b92915050565b60006020820190508181036000830152614b4d8184613de8565b905092915050565b60006020820190508181036000830152614b6f8184613e52565b905092915050565b60006020820190508181036000830152614b9081613ee1565b9050919050565b60006020820190508181036000830152614bb081613f47565b9050919050565b60006020820190508181036000830152614bd081613fad565b9050919050565b60006020820190508181036000830152614bf081614013565b9050919050565b60006020820190508181036000830152614c1081614079565b9050919050565b60006020820190508181036000830152614c30816140b9565b9050919050565b60006020820190508181036000830152614c50816140f9565b9050919050565b60006020820190508181036000830152614c708161415f565b9050919050565b60006020820190508181036000830152614c908161419f565b9050919050565b60006020820190508181036000830152614cb081614205565b9050919050565b60006020820190508181036000830152614cd081614245565b9050919050565b60006020820190508181036000830152614cf0816142ab565b9050919050565b60006020820190508181036000830152614d1081614311565b9050919050565b60006020820190508181036000830152614d3081614351565b9050919050565b60006020820190508181036000830152614d50816143b7565b9050919050565b60006020820190508181036000830152614d708161441d565b9050919050565b60006020820190508181036000830152614d9081614483565b9050919050565b60006020820190508181036000830152614db0816144e9565b9050919050565b60006020820190508181036000830152614dd081614529565b9050919050565b60006020820190508181036000830152614df08161458f565b9050919050565b60006020820190508181036000830152614e10816145f5565b9050919050565b60006020820190508181036000830152614e3081614635565b9050919050565b60006020820190508181036000830152614e508161469b565b9050919050565b60006020820190508181036000830152614e7081614701565b9050919050565b60006020820190508181036000830152614e9081614767565b9050919050565b60006020820190508181036000830152614eb0816147cd565b9050919050565b60006020820190508181036000830152614ed08161480d565b9050919050565b60006020820190508181036000830152614ef081614873565b9050919050565b60006020820190508181036000830152614f10816148b3565b9050919050565b60006020820190508181036000830152614f3081614919565b9050919050565b60006020820190508181036000830152614f5081614959565b9050919050565b6000602082019050614f6c60008301846149ce565b92915050565b6000604051905081810181811067ffffffffffffffff82111715614f9557600080fd5b8060405250919050565b600067ffffffffffffffff821115614fb657600080fd5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614fe257600080fd5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006150fd82615158565b9050919050565b600061510f82615158565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061518d82615194565b9050919050565b600061519f826151a6565b9050919050565b60006151b182615158565b9050919050565b82818337600083830152505050565b60005b838110156151e55780820151818401526020810190506151ca565b838111156151f4576000848401525b50505050565b6000601f19601f8301169050919050565b615214816150f2565b811461521f57600080fd5b50565b61522b81615116565b811461523657600080fd5b50565b61524281615122565b811461524d57600080fd5b50565b6152598161512c565b811461526457600080fd5b50565b61527081615178565b811461527b57600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea264697066735822122039f06b0ccf9d4f0fee65e3a578992573b0702cedeebb496cfc92043eb931281964736f6c634300060c0033

Deployed Bytecode Sourcemap

66946:4373:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67110:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10298:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51583:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54369:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53899:404;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68201:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69552:702;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53377:211;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70824:490;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67431:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55259:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53139:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68446:89;;;;;;;;;;;;;:::i;:::-;;67655:131;;;;;;;;;;;;;:::i;:::-;;70621:195;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55635:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67344:41;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53665:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68337:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70262:351;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51339:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52958:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51056:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66294:148;;;;;;;;;;;;;:::i;:::-;;68543:501;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67169:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65643:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51752:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67070:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54662:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69369:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55857:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69236:125;;;;;;;;;;;;;:::i;:::-;;51927:792;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69052:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67220:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55028:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67271:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66597:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67028:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67794:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67110:52;67147:15;67110:52;:::o;10298:150::-;10383:4;10407:20;:33;10428:11;10407:33;;;;;;;;;;;;;;;;;;;;;;;;;;;10400:40;;10298:150;;;:::o;51583:100::-;51637:13;51670:5;51663:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51583:100;:::o;54369:221::-;54445:7;54473:16;54481:7;54473;:16::i;:::-;54465:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;54558:15;:24;54574:7;54558:24;;;;;;;;;;;;;;;;;;;;;54551:31;;54369:221;;;:::o;53899:404::-;53980:13;53996:23;54011:7;53996:14;:23::i;:::-;53980:39;;54044:5;54038:11;;:2;:11;;;;54030:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;54124:5;54108:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;54133:44;54157:5;54164:12;:10;:12::i;:::-;54133:23;:44::i;:::-;54108:69;54100:161;;;;;;;;;;;;:::i;:::-;;;;;;;;;54274:21;54283:2;54287:7;54274:8;:21::i;:::-;53899:404;;;:::o;68201:128::-;65874:12;:10;:12::i;:::-;65863:23;;:7;:5;:7::i;:::-;:23;;;65855:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68306:15:::1;68287:16;:34;;;;;;;;;;;;:::i;:::-;;68201:128:::0;:::o;69552:702::-;69627:12;;;;;;;;;;;69619:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;69717:1;69699:15;:19;:58;;;;;67260:2;69722:15;:35;;69699:58;69691:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;67206:5;69815:34;69833:15;69815:13;:11;:13::i;:::-;:17;;:34;;;;:::i;:::-;:48;;69807:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;69952:31;69967:15;67147;69952:14;;:31;;;;:::i;:::-;69939:9;:44;;69931:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;70039:6;70034:213;70055:15;70051:1;:19;70034:213;;;70092:14;70109:13;:11;:13::i;:::-;70092:30;;67206:5;70141:13;:11;:13::i;:::-;:26;70137:99;;;70188:32;70198:10;70210:9;70188;:32::i;:::-;70137:99;70034:213;70072:3;;;;;;;70034:213;;;;69552:702;:::o;53377:211::-;53438:7;53559:21;:12;:19;:21::i;:::-;53552:28;;53377:211;:::o;70824:490::-;70889:15;70917:18;70938:17;70948:6;70938:9;:17::i;:::-;70917:38;;70984:1;70970:10;:15;70966:341;;;71022:1;71009:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71002:22;;;;;70966:341;71057:22;71095:10;71082:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71057:49;;71126:10;71121:147;71150:10;71142:5;:18;71121:147;;;71206:10;:46;71217:34;71237:6;71245:5;71217:19;:34::i;:::-;71206:46;;;;;;;;;;;71190:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:6;71197:5;71190:13;;;;;;;;;;;;;:62;;;;71162:7;;;;;;;71121:147;;;;71289:6;71282:13;;;;70824:490;;;;:::o;67431:29::-;;;;:::o;55259:305::-;55420:41;55439:12;:10;:12::i;:::-;55453:7;55420:18;:41::i;:::-;55412:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;55528:28;55538:4;55544:2;55548:7;55528:9;:28::i;:::-;55259:305;;;:::o;53139:162::-;53236:7;53263:30;53287:5;53263:13;:20;53277:5;53263:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;53256:37;;53139:162;;;;:::o;68446:89::-;65874:12;:10;:12::i;:::-;65863:23;;:7;:5;:7::i;:::-;:23;;;65855:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68515:12:::1;;;;;;;;;;;68514:13;68499:12;;:28;;;;;;;;;;;;;;;;;;68446:89::o:0;67655:131::-;65874:12;:10;:12::i;:::-;65863:23;;:7;:5;:7::i;:::-;:23;;;65855:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67703:12:::1;67718:21;67703:36;;67750:10;:19;;:28;67770:7;67750:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;65934:1;67655:131::o:0;70621:195::-;70679:13;70724;:11;:13::i;:::-;70713:8;:24;70705:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;70788:10;:20;70799:8;70788:20;;;;;;;;;;;70781:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70621:195;;;:::o;55635:151::-;55739:39;55756:4;55762:2;55766:7;55739:39;;;;;;;;;;;;:16;:39::i;:::-;55635:151;;;:::o;67344:41::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53665:172::-;53740:7;53761:15;53782:22;53798:5;53782:12;:15;;:22;;;;:::i;:::-;53760:44;;;53822:7;53815:14;;;53665:172;;;:::o;68337:101::-;65874:12;:10;:12::i;:::-;65863:23;;:7;:5;:7::i;:::-;:23;;;65855:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68409:21:::1;68421:8;68409:11;:21::i;:::-;68337:101:::0;:::o;70262:351::-;70370:10;70349:31;;:17;70357:8;70349:7;:17::i;:::-;:31;;;70341:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;70468:35;70481:10;:20;70492:8;70481:20;;;;;;;;;;;70468:35;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;70444:20;70457:5;70444:20;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:59;;70436:68;;;;;;70538:5;70515:10;:20;70526:8;70515:20;;;;;;;;;;;:28;;;;;;;;;;;;:::i;:::-;;70561:44;70577:10;70589:8;70599:5;70561:44;;;;;;;;:::i;:::-;;;;;;;;70262:351;;:::o;51339:177::-;51411:7;51438:70;51455:7;51438:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;51431:77;;51339:177;;;:::o;52958:97::-;53006:13;53039:8;53032:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52958:97;:::o;51056:221::-;51128:7;51173:1;51156:19;;:5;:19;;;;51148:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;51240:29;:13;:20;51254:5;51240:20;;;;;;;;;;;;;;;:27;:29::i;:::-;51233:36;;51056:221;;;:::o;66294:148::-;65874:12;:10;:12::i;:::-;65863:23;;:7;:5;:7::i;:::-;:23;;;65855:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66401:1:::1;66364:40;;66385:6;;;;;;;;;;;66364:40;;;;;;;;;;;;66432:1;66415:6;;:19;;;;;;;;;;;;;;;;;;66294:148::o:0;68543:501::-;68604:16;68633:18;68654:17;68664:6;68654:9;:17::i;:::-;68633:38;;68700:1;68686:10;:15;68682:355;;;68739:1;68725:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68718:23;;;;;68682:355;68774:23;68814:10;68800:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68774:51;;68840:13;68868:130;68892:10;68884:5;:18;68868:130;;;68948:34;68968:6;68976:5;68948:19;:34::i;:::-;68932:6;68939:5;68932:13;;;;;;;;;;;;;:50;;;;;68904:7;;;;;;;68868:130;;;69019:6;69012:13;;;;;68543:501;;;;:::o;67169:42::-;67206:5;67169:42;:::o;65643:87::-;65689:7;65716:6;;;;;;;;;;;65709:13;;65643:87;:::o;51752:104::-;51808:13;51841:7;51834:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51752:104;:::o;67070:31::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54662:295::-;54777:12;:10;:12::i;:::-;54765:24;;:8;:24;;;;54757:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;54877:8;54832:18;:32;54851:12;:10;:12::i;:::-;54832:32;;;;;;;;;;;;;;;:42;54865:8;54832:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;54930:8;54901:48;;54916:12;:10;:12::i;:::-;54901:48;;;54940:8;54901:48;;;;;;:::i;:::-;;;;;;;;54662:295;;:::o;69369:175::-;65874:12;:10;:12::i;:::-;65863:23;;:7;:5;:7::i;:::-;:23;;;65855:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69469:5:::1;69452:22;;:13;;;;;;;;;;;:22;;;69444:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;69528:8;69513:12;:23;;;;;;;;;;;;:::i;:::-;;69369:175:::0;:::o;55857:285::-;55989:41;56008:12;:10;:12::i;:::-;56022:7;55989:18;:41::i;:::-;55981:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;56095:39;56109:4;56115:2;56119:7;56128:5;56095:13;:39::i;:::-;55857:285;;;;:::o;69236:125::-;65874:12;:10;:12::i;:::-;65863:23;;:7;:5;:7::i;:::-;:23;;;65855:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69304:4:::1;69287:13;;:21;;;;;;;;;;;;;;;;;;69324:29;69340:12;69324:29;;;;;;:::i;:::-;;;;;;;;69236:125::o:0;51927:792::-;52000:13;52034:16;52042:7;52034;:16::i;:::-;52026:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;52115:23;52141:10;:19;52152:7;52141:19;;;;;;;;;;;52115:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52171:18;52192:9;:7;:9::i;:::-;52171:30;;52299:1;52283:4;52277:18;:23;52273:72;;;52324:9;52317:16;;;;;;52273:72;52475:1;52455:9;52449:23;:27;52445:108;;;52524:4;52530:9;52507:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52493:48;;;;;;52445:108;52685:4;52691:18;:7;:16;:18::i;:::-;52668:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52654:57;;;;51927:792;;;;:::o;69052:176::-;69104:13;69144;:11;:13::i;:::-;69138:3;:19;69130:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;69208:12;69201:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69052:176;;;:::o;67220:42::-;67260:2;67220:42;:::o;55028:164::-;55125:4;55149:18;:25;55168:5;55149:25;;;;;;;;;;;;;;;:35;55175:8;55149:35;;;;;;;;;;;;;;;;;;;;;;;;;55142:42;;55028:164;;;;:::o;67271:31::-;;;;;;;;;;;;;:::o;66597:244::-;65874:12;:10;:12::i;:::-;65863:23;;:7;:5;:7::i;:::-;:23;;;65855:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66706:1:::1;66686:22;;:8;:22;;;;66678:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;66796:8;66767:38;;66788:6;;;;;;;;;;;66767:38;;;;;;;;;;;;66825:8;66816:6;;:17;;;;;;;;;;;;;;;;;;66597:244:::0;:::o;67028:35::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;67794:399::-;65874:12;:10;:12::i;:::-;65863:23;;:7;:5;:7::i;:::-;:23;;;65855:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67883:11:::1;67897:13;:11;:13::i;:::-;67883:27;;67946:1;67929:14;:18;:52;;;;;67969:12;;67951:14;:30;;67929:52;67921:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;68038:6;68033:95;68054:14;68050:1;:18;68033:95;;;68090:26;68100:3;68114:1;68105:6;:10;68090:9;:26::i;:::-;68070:3;;;;;;;68033:95;;;;68153:32;68170:14;68153:12;;:16;;:32;;;;:::i;:::-;68138:12;:47;;;;65934:1;67794:399:::0;;:::o;57609:127::-;57674:4;57698:30;57720:7;57698:12;:21;;:30;;;;:::i;:::-;57691:37;;57609:127;;;:::o;730:106::-;783:15;818:10;811:17;;730:106;:::o;63627:192::-;63729:2;63702:15;:24;63718:7;63702:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;63785:7;63781:2;63747:46;;63756:23;63771:7;63756:14;:23::i;:::-;63747:46;;;;;;;;;;;;63627:192;;:::o;13860:179::-;13918:7;13938:9;13954:1;13950;:5;13938:17;;13979:1;13974;:6;;13966:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;14030:1;14023:8;;;13860:179;;;;:::o;14739:220::-;14797:7;14826:1;14821;:6;14817:20;;;14836:1;14829:8;;;;14817:20;14848:9;14864:1;14860;:5;14848:17;;14893:1;14888;14884;:5;;;;;;:10;14876:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;14950:1;14943:8;;;14739:220;;;;;:::o;58601:110::-;58677:26;58687:2;58691:7;58677:26;;;;;;;;;;;;:9;:26::i;:::-;58601:110;;:::o;44341:123::-;44410:7;44437:19;44445:3;:10;;44437:7;:19::i;:::-;44430:26;;44341:123;;;:::o;57903:355::-;57996:4;58021:16;58029:7;58021;:16::i;:::-;58013:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;58097:13;58113:23;58128:7;58113:14;:23::i;:::-;58097:39;;58166:5;58155:16;;:7;:16;;;:51;;;;58199:7;58175:31;;:20;58187:7;58175:11;:20::i;:::-;:31;;;58155:51;:94;;;;58210:39;58234:5;58241:7;58210:23;:39::i;:::-;58155:94;58147:103;;;57903:355;;;;:::o;61039:599::-;61164:4;61137:31;;:23;61152:7;61137:14;:23::i;:::-;:31;;;61129:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;61265:1;61251:16;;:2;:16;;;;61243:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;61321:39;61342:4;61348:2;61352:7;61321:20;:39::i;:::-;61425:29;61442:1;61446:7;61425:8;:29::i;:::-;61467:35;61494:7;61467:13;:19;61481:4;61467:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;61513:30;61535:7;61513:13;:17;61527:2;61513:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;61556:29;61573:7;61582:2;61556:12;:16;;:29;;;;;:::i;:::-;;61622:7;61618:2;61603:27;;61612:4;61603:27;;;;;;;;;;;;61039:599;;;:::o;36132:137::-;36203:7;36238:22;36242:3;:10;;36254:5;36238:3;:22::i;:::-;36230:31;;36223:38;;36132:137;;;;:::o;44803:236::-;44883:7;44892;44913:11;44926:13;44943:22;44947:3;:10;;44959:5;44943:3;:22::i;:::-;44912:53;;;;44992:3;44984:12;;45022:5;45014:14;;44976:55;;;;;;44803:236;;;;;:::o;62239:100::-;62323:8;62312;:19;;;;;;;;;;;;:::i;:::-;;62239:100;:::o;46089:213::-;46196:7;46247:44;46252:3;:10;;46272:3;46264:12;;46278;46247:4;:44::i;:::-;46239:53;;46216:78;;46089:213;;;;;:::o;35674:114::-;35734:7;35761:19;35769:3;:10;;35761:7;:19::i;:::-;35754:26;;35674:114;;;:::o;57024:272::-;57138:28;57148:4;57154:2;57158:7;57138:9;:28::i;:::-;57185:48;57208:4;57214:2;57218:7;57227:5;57185:22;:48::i;:::-;57177:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;57024:272;;;;:::o;46553:746::-;46609:13;46839:1;46830:5;:10;46826:53;;;46857:10;;;;;;;;;;;;;;;;;;;;;46826:53;46889:12;46904:5;46889:20;;46920:14;46945:78;46960:1;46952:4;:9;46945:78;;46978:8;;;;;;;47009:2;47001:10;;;;;;;;;46945:78;;;47033:19;47065:6;47055:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47033:39;;47083:13;47108:1;47099:6;:10;47083:26;;47127:5;47120:12;;47143:117;47158:1;47150:4;:9;47143:117;;47219:2;47212:4;:9;;;;;;47207:2;:14;47194:29;;47176:6;47183:7;;;;;;;47176:15;;;;;;;;;;;:47;;;;;;;;;;;47246:2;47238:10;;;;;;;;;47143:117;;;47284:6;47270:21;;;;;;46553:746;;;;:::o;14322:158::-;14380:7;14413:1;14408;:6;;14400:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;14471:1;14467;:5;14460:12;;14322:158;;;;:::o;44102:151::-;44186:4;44210:35;44220:3;:10;;44240:3;44232:12;;44210:9;:35::i;:::-;44203:42;;44102:151;;;;:::o;58938:250::-;59034:18;59040:2;59044:7;59034:5;:18::i;:::-;59071:54;59102:1;59106:2;59110:7;59119:5;59071:22;:54::i;:::-;59063:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;58938:250;;;:::o;40920:110::-;40976:7;41003:3;:12;;:19;;;;40996:26;;40920:110;;;:::o;64432:93::-;;;;:::o;35219:137::-;35289:4;35313:35;35321:3;:10;;35341:5;35333:14;;35313:7;:35::i;:::-;35306:42;;35219:137;;;;:::o;34912:131::-;34979:4;35003:32;35008:3;:10;;35028:5;35020:14;;35003:4;:32::i;:::-;34996:39;;34912:131;;;;:::o;43525:185::-;43614:4;43638:64;43643:3;:10;;43663:3;43655:12;;43693:5;43677:23;;43669:32;;43638:4;:64::i;:::-;43631:71;;43525:185;;;;;:::o;31170:204::-;31237:7;31286:5;31265:3;:11;;:18;;;;:26;31257:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31348:3;:11;;31360:5;31348:18;;;;;;;;;;;;;;;;31341:25;;31170:204;;;;:::o;41385:279::-;41452:7;41461;41511:5;41489:3;:12;;:19;;;;:27;41481:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;41568:22;41593:3;:12;;41606:5;41593:19;;;;;;;;;;;;;;;;;;41568:44;;41631:5;:10;;;41643:5;:12;;;41623:33;;;;;41385:279;;;;;:::o;42882:319::-;42976:7;42996:16;43015:3;:12;;:17;43028:3;43015:17;;;;;;;;;;;;42996:36;;43063:1;43051:8;:13;;43066:12;43043:36;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;43133:3;:12;;43157:1;43146:8;:12;43133:26;;;;;;;;;;;;;;;;;;:33;;;43126:40;;;42882:319;;;;;:::o;30717:109::-;30773:7;30800:3;:11;;:18;;;;30793:25;;30717:109;;;:::o;62904:604::-;63025:4;63052:15;:2;:13;;;:15::i;:::-;63047:60;;63091:4;63084:11;;;;63047:60;63117:23;63143:252;63196:45;;;63256:12;:10;:12::i;:::-;63283:4;63302:7;63324:5;63159:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63143:252;;;;;;;;;;;;;;;;;:2;:15;;;;:252;;;;;:::i;:::-;63117:278;;63406:13;63433:10;63422:32;;;;;;;;;;;;:::i;:::-;63406:48;;48053:10;63483:16;;63473:26;;;:6;:26;;;;63465:35;;;;62904:604;;;;;;;:::o;40700:125::-;40771:4;40816:1;40795:3;:12;;:17;40808:3;40795:17;;;;;;;;;;;;:22;;40788:29;;40700:125;;;;:::o;59524:404::-;59618:1;59604:16;;:2;:16;;;;59596:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;59677:16;59685:7;59677;:16::i;:::-;59676:17;59668:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;59739:45;59768:1;59772:2;59776:7;59739:20;:45::i;:::-;59797:30;59819:7;59797:13;:17;59811:2;59797:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;59840:29;59857:7;59866:2;59840:12;:16;;:29;;;;;:::i;:::-;;59912:7;59908:2;59887:33;;59904:1;59887:33;;;;;;;;;;;;59524:404;;:::o;28872:1544::-;28938:4;29056:18;29077:3;:12;;:19;29090:5;29077:19;;;;;;;;;;;;29056:40;;29127:1;29113:10;:15;29109:1300;;29475:21;29512:1;29499:10;:14;29475:38;;29528:17;29569:1;29548:3;:11;;:18;;;;:22;29528:42;;29815:17;29835:3;:11;;29847:9;29835:22;;;;;;;;;;;;;;;;29815:42;;29981:9;29952:3;:11;;29964:13;29952:26;;;;;;;;;;;;;;;:38;;;;30100:1;30084:13;:17;30058:3;:12;;:23;30071:9;30058:23;;;;;;;;;;;:43;;;;30210:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;30305:3;:12;;:19;30318:5;30305:19;;;;;;;;;;;30298:26;;;30348:4;30341:11;;;;;;;;29109:1300;30392:5;30385:12;;;28872:1544;;;;;:::o;28282:414::-;28345:4;28367:21;28377:3;28382:5;28367:9;:21::i;:::-;28362:327;;28405:3;:11;;28422:5;28405:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28588:3;:11;;:18;;;;28566:3;:12;;:19;28579:5;28566:19;;;;;;;;;;;:40;;;;28628:4;28621:11;;;;28362:327;28672:5;28665:12;;28282:414;;;;;:::o;38200:692::-;38276:4;38392:16;38411:3;:12;;:17;38424:3;38411:17;;;;;;;;;;;;38392:36;;38457:1;38445:8;:13;38441:444;;;38512:3;:12;;38530:38;;;;;;;;38547:3;38530:38;;;;38560:5;38530:38;;;38512:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38727:3;:12;;:19;;;;38707:3;:12;;:17;38720:3;38707:17;;;;;;;;;;;:39;;;;38768:4;38761:11;;;;;38441:444;38841:5;38805:3;:12;;38829:1;38818:8;:12;38805:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;38868:5;38861:12;;;38200:692;;;;;;:::o;19301:422::-;19361:4;19569:12;19680:7;19668:20;19660:28;;19714:1;19707:4;:8;19700:15;;;19301:422;;;:::o;22219:195::-;22322:12;22354:52;22376:6;22384:4;22390:1;22393:12;22354:21;:52::i;:::-;22347:59;;22219:195;;;;;:::o;30502:129::-;30575:4;30622:1;30599:3;:12;;:19;30612:5;30599:19;;;;;;;;;;;;:24;;30592:31;;30502:129;;;;:::o;23271:530::-;23398:12;23456:5;23431:21;:30;;23423:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;23523:18;23534:6;23523:10;:18::i;:::-;23515:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;23649:12;23663:23;23690:6;:11;;23710:5;23718:4;23690:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23648:75;;;;23741:52;23759:7;23768:10;23780:12;23741:17;:52::i;:::-;23734:59;;;;23271:530;;;;;;:::o;25811:742::-;25926:12;25955:7;25951:595;;;25986:10;25979:17;;;;25951:595;26120:1;26100:10;:17;:21;26096:439;;;26363:10;26357:17;26424:15;26411:10;26407:2;26403:19;26396:44;26311:148;26506:12;26499:20;;;;;;;;;;;:::i;:::-;;;;;;;;25811:742;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;5:130::-;;85:6;72:20;63:29;;97:33;124:5;97:33;:::i;:::-;57:78;;;;:::o;142:124::-;;219:6;206:20;197:29;;231:30;255:5;231:30;:::i;:::-;191:75;;;;:::o;273:134::-;;357:6;351:13;342:22;;369:33;396:5;369:33;:::i;:::-;336:71;;;;:::o;414:128::-;;493:6;480:20;471:29;;505:32;531:5;505:32;:::i;:::-;465:77;;;;:::o;549:132::-;;632:6;626:13;617:22;;644:32;670:5;644:32;:::i;:::-;611:70;;;;:::o;689:440::-;;790:3;783:4;775:6;771:17;767:27;757:2;;808:1;805;798:12;757:2;845:6;832:20;867:64;882:48;923:6;882:48;:::i;:::-;867:64;:::i;:::-;858:73;;951:6;944:5;937:21;987:4;979:6;975:17;1020:4;1013:5;1009:16;1055:3;1046:6;1041:3;1037:16;1034:25;1031:2;;;1072:1;1069;1062:12;1031:2;1082:41;1116:6;1111:3;1106;1082:41;:::i;:::-;750:379;;;;;;;:::o;1138:442::-;;1240:3;1233:4;1225:6;1221:17;1217:27;1207:2;;1258:1;1255;1248:12;1207:2;1295:6;1282:20;1317:65;1332:49;1374:6;1332:49;:::i;:::-;1317:65;:::i;:::-;1308:74;;1402:6;1395:5;1388:21;1438:4;1430:6;1426:17;1471:4;1464:5;1460:16;1506:3;1497:6;1492:3;1488:16;1485:25;1482:2;;;1523:1;1520;1513:12;1482:2;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1200:380;;;;;;;:::o;1588:130::-;;1668:6;1655:20;1646:29;;1680:33;1707:5;1680:33;:::i;:::-;1640:78;;;;:::o;1725:241::-;;1829:2;1817:9;1808:7;1804:23;1800:32;1797:2;;;1845:1;1842;1835:12;1797:2;1880:1;1897:53;1942:7;1933:6;1922:9;1918:22;1897:53;:::i;:::-;1887:63;;1859:97;1791:175;;;;:::o;1973:366::-;;;2094:2;2082:9;2073:7;2069:23;2065:32;2062:2;;;2110:1;2107;2100:12;2062:2;2145:1;2162:53;2207:7;2198:6;2187:9;2183:22;2162:53;:::i;:::-;2152:63;;2124:97;2252:2;2270:53;2315:7;2306:6;2295:9;2291:22;2270:53;:::i;:::-;2260:63;;2231:98;2056:283;;;;;:::o;2346:491::-;;;;2484:2;2472:9;2463:7;2459:23;2455:32;2452:2;;;2500:1;2497;2490:12;2452:2;2535:1;2552:53;2597:7;2588:6;2577:9;2573:22;2552:53;:::i;:::-;2542:63;;2514:97;2642:2;2660:53;2705:7;2696:6;2685:9;2681:22;2660:53;:::i;:::-;2650:63;;2621:98;2750:2;2768:53;2813:7;2804:6;2793:9;2789:22;2768:53;:::i;:::-;2758:63;;2729:98;2446:391;;;;;:::o;2844:721::-;;;;;3008:3;2996:9;2987:7;2983:23;2979:33;2976:2;;;3025:1;3022;3015:12;2976:2;3060:1;3077:53;3122:7;3113:6;3102:9;3098:22;3077:53;:::i;:::-;3067:63;;3039:97;3167:2;3185:53;3230:7;3221:6;3210:9;3206:22;3185:53;:::i;:::-;3175:63;;3146:98;3275:2;3293:53;3338:7;3329:6;3318:9;3314:22;3293:53;:::i;:::-;3283:63;;3254:98;3411:2;3400:9;3396:18;3383:32;3435:18;3427:6;3424:30;3421:2;;;3467:1;3464;3457:12;3421:2;3487:62;3541:7;3532:6;3521:9;3517:22;3487:62;:::i;:::-;3477:72;;3362:193;2970:595;;;;;;;:::o;3572:360::-;;;3690:2;3678:9;3669:7;3665:23;3661:32;3658:2;;;3706:1;3703;3696:12;3658:2;3741:1;3758:53;3803:7;3794:6;3783:9;3779:22;3758:53;:::i;:::-;3748:63;;3720:97;3848:2;3866:50;3908:7;3899:6;3888:9;3884:22;3866:50;:::i;:::-;3856:60;;3827:95;3652:280;;;;;:::o;3939:366::-;;;4060:2;4048:9;4039:7;4035:23;4031:32;4028:2;;;4076:1;4073;4066:12;4028:2;4111:1;4128:53;4173:7;4164:6;4153:9;4149:22;4128:53;:::i;:::-;4118:63;;4090:97;4218:2;4236:53;4281:7;4272:6;4261:9;4257:22;4236:53;:::i;:::-;4226:63;;4197:98;4022:283;;;;;:::o;4312:263::-;;4427:2;4415:9;4406:7;4402:23;4398:32;4395:2;;;4443:1;4440;4433:12;4395:2;4478:1;4495:64;4551:7;4542:6;4531:9;4527:22;4495:64;:::i;:::-;4485:74;;4457:108;4389:186;;;;:::o;4582:239::-;;4685:2;4673:9;4664:7;4660:23;4656:32;4653:2;;;4701:1;4698;4691:12;4653:2;4736:1;4753:52;4797:7;4788:6;4777:9;4773:22;4753:52;:::i;:::-;4743:62;;4715:96;4647:174;;;;:::o;4828:261::-;;4942:2;4930:9;4921:7;4917:23;4913:32;4910:2;;;4958:1;4955;4948:12;4910:2;4993:1;5010:63;5065:7;5056:6;5045:9;5041:22;5010:63;:::i;:::-;5000:73;;4972:107;4904:185;;;;:::o;5096:347::-;;5210:2;5198:9;5189:7;5185:23;5181:32;5178:2;;;5226:1;5223;5216:12;5178:2;5289:1;5278:9;5274:17;5261:31;5312:18;5304:6;5301:30;5298:2;;;5344:1;5341;5334:12;5298:2;5364:63;5419:7;5410:6;5399:9;5395:22;5364:63;:::i;:::-;5354:73;;5240:193;5172:271;;;;:::o;5450:241::-;;5554:2;5542:9;5533:7;5529:23;5525:32;5522:2;;;5570:1;5567;5560:12;5522:2;5605:1;5622:53;5667:7;5658:6;5647:9;5643:22;5622:53;:::i;:::-;5612:63;;5584:97;5516:175;;;;:::o;5698:472::-;;;5829:2;5817:9;5808:7;5804:23;5800:32;5797:2;;;5845:1;5842;5835:12;5797:2;5880:1;5897:53;5942:7;5933:6;5922:9;5918:22;5897:53;:::i;:::-;5887:63;;5859:97;6015:2;6004:9;6000:18;5987:32;6039:18;6031:6;6028:30;6025:2;;;6071:1;6068;6061:12;6025:2;6091:63;6146:7;6137:6;6126:9;6122:22;6091:63;:::i;:::-;6081:73;;5966:194;5791:379;;;;;:::o;6178:193::-;;6299:66;6361:3;6353:6;6299:66;:::i;:::-;6285:80;;6278:93;;;;:::o;6380:173::-;;6467:46;6509:3;6501:6;6467:46;:::i;:::-;6542:4;6537:3;6533:14;6519:28;;6460:93;;;;:::o;6561:142::-;6652:45;6691:5;6652:45;:::i;:::-;6647:3;6640:58;6634:69;;:::o;6710:137::-;6809:32;6835:5;6809:32;:::i;:::-;6804:3;6797:45;6791:56;;:::o;6854:113::-;6937:24;6955:5;6937:24;:::i;:::-;6932:3;6925:37;6919:48;;:::o;7003:928::-;;7168:64;7226:5;7168:64;:::i;:::-;7245:96;7334:6;7329:3;7245:96;:::i;:::-;7238:103;;7364:3;7406:4;7398:6;7394:17;7389:3;7385:27;7433:66;7493:5;7433:66;:::i;:::-;7519:7;7547:1;7532:360;7557:6;7554:1;7551:13;7532:360;;;7619:9;7613:4;7609:20;7604:3;7597:33;7664:6;7658:13;7686:84;7765:4;7750:13;7686:84;:::i;:::-;7678:92;;7787:70;7850:6;7787:70;:::i;:::-;7777:80;;7880:4;7875:3;7871:14;7864:21;;7589:303;7579:1;7576;7572:9;7567:14;;7532:360;;;7536:14;7905:4;7898:11;;7922:3;7915:10;;7147:784;;;;;;;;;:::o;7970:690::-;;8115:54;8163:5;8115:54;:::i;:::-;8182:86;8261:6;8256:3;8182:86;:::i;:::-;8175:93;;8289:56;8339:5;8289:56;:::i;:::-;8365:7;8393:1;8378:260;8403:6;8400:1;8397:13;8378:260;;;8470:6;8464:13;8491:63;8550:3;8535:13;8491:63;:::i;:::-;8484:70;;8571:60;8624:6;8571:60;:::i;:::-;8561:70;;8435:203;8425:1;8422;8418:9;8413:14;;8378:260;;;8382:14;8651:3;8644:10;;8094:566;;;;;;;:::o;8668:104::-;8745:21;8760:5;8745:21;:::i;:::-;8740:3;8733:34;8727:45;;:::o;8779:343::-;;8889:38;8921:5;8889:38;:::i;:::-;8939:70;9002:6;8997:3;8939:70;:::i;:::-;8932:77;;9014:52;9059:6;9054:3;9047:4;9040:5;9036:16;9014:52;:::i;:::-;9087:29;9109:6;9087:29;:::i;:::-;9082:3;9078:39;9071:46;;8869:253;;;;;:::o;9129:356::-;;9257:38;9289:5;9257:38;:::i;:::-;9307:88;9388:6;9383:3;9307:88;:::i;:::-;9300:95;;9400:52;9445:6;9440:3;9433:4;9426:5;9422:16;9400:52;:::i;:::-;9473:6;9468:3;9464:16;9457:23;;9237:248;;;;;:::o;9515:887::-;;9654:5;9648:12;9688:1;9677:9;9673:17;9701:1;9696:267;;;;9974:1;9969:427;;;;9666:730;;9696:267;9774:4;9770:1;9759:9;9755:17;9751:28;9793:88;9874:6;9869:3;9793:88;:::i;:::-;9786:95;;9919:4;9915:9;9904;9900:25;9895:3;9888:38;9949:6;9944:3;9940:16;9933:23;;9703:260;9696:267;;9969:427;10038:1;10027:9;10023:17;10054:88;10135:6;10130:3;10054:88;:::i;:::-;10047:95;;10164:41;10199:5;10164:41;:::i;:::-;10221:1;10229:130;10243:6;10240:1;10237:13;10229:130;;;10308:7;10302:14;10298:1;10293:3;10289:11;10282:35;10349:1;10340:7;10336:15;10325:26;;10265:4;10262:1;10258:12;10253:17;;10229:130;;;10382:6;10377:3;10373:16;10366:23;;9976:420;;;9666:730;;9624:778;;;;;:::o;10410:327::-;;10512:39;10545:5;10512:39;:::i;:::-;10563:61;10617:6;10612:3;10563:61;:::i;:::-;10556:68;;10629:52;10674:6;10669:3;10662:4;10655:5;10651:16;10629:52;:::i;:::-;10702:29;10724:6;10702:29;:::i;:::-;10697:3;10693:39;10686:46;;10492:245;;;;;:::o;10744:347::-;;10856:39;10889:5;10856:39;:::i;:::-;10907:71;10971:6;10966:3;10907:71;:::i;:::-;10900:78;;10983:52;11028:6;11023:3;11016:4;11009:5;11005:16;10983:52;:::i;:::-;11056:29;11078:6;11056:29;:::i;:::-;11051:3;11047:39;11040:46;;10836:255;;;;;:::o;11098:360::-;;11228:39;11261:5;11228:39;:::i;:::-;11279:89;11361:6;11356:3;11279:89;:::i;:::-;11272:96;;11373:52;11418:6;11413:3;11406:4;11399:5;11395:16;11373:52;:::i;:::-;11446:6;11441:3;11437:16;11430:23;;11208:250;;;;;:::o;11490:823::-;;11609:5;11603:12;11643:1;11632:9;11628:17;11656:1;11651:248;;;;11910:1;11905:402;;;;11621:686;;11651:248;11729:4;11725:1;11714:9;11710:17;11706:28;11748:71;11812:6;11807:3;11748:71;:::i;:::-;11741:78;;11857:4;11853:9;11842;11838:25;11833:3;11826:38;11887:4;11882:3;11878:14;11871:21;;11658:241;11651:248;;11905:402;11974:1;11963:9;11959:17;11990:71;12054:6;12049:3;11990:71;:::i;:::-;11983:78;;12083:38;12115:5;12083:38;:::i;:::-;12137:1;12145:130;12159:6;12156:1;12153:13;12145:130;;;12224:7;12218:14;12214:1;12209:3;12205:11;12198:35;12265:1;12256:7;12252:15;12241:26;;12181:4;12178:1;12174:12;12169:17;;12145:130;;;12298:1;12293:3;12289:11;12282:18;;11912:395;;;11621:686;;11579:734;;;;;:::o;12322:371::-;;12482:67;12546:2;12541:3;12482:67;:::i;:::-;12475:74;;12582:34;12578:1;12573:3;12569:11;12562:55;12651:4;12646:2;12641:3;12637:12;12630:26;12684:2;12679:3;12675:12;12668:19;;12468:225;;;:::o;12702:373::-;;12862:67;12926:2;12921:3;12862:67;:::i;:::-;12855:74;;12962:34;12958:1;12953:3;12949:11;12942:55;13031:6;13026:2;13021:3;13017:12;13010:28;13066:2;13061:3;13057:12;13050:19;;12848:227;;;:::o;13084:387::-;;13244:67;13308:2;13303:3;13244:67;:::i;:::-;13237:74;;13344:34;13340:1;13335:3;13331:11;13324:55;13413:20;13408:2;13403:3;13399:12;13392:42;13462:2;13457:3;13453:12;13446:19;;13230:241;;;:::o;13480:375::-;;13640:67;13704:2;13699:3;13640:67;:::i;:::-;13633:74;;13740:34;13736:1;13731:3;13727:11;13720:55;13809:8;13804:2;13799:3;13795:12;13788:30;13846:2;13841:3;13837:12;13830:19;;13626:229;;;:::o;13864:328::-;;14024:67;14088:2;14083:3;14024:67;:::i;:::-;14017:74;;14124:30;14120:1;14115:3;14111:11;14104:51;14183:2;14178:3;14174:12;14167:19;;14010:182;;;:::o;14201:327::-;;14361:67;14425:2;14420:3;14361:67;:::i;:::-;14354:74;;14461:29;14457:1;14452:3;14448:11;14441:50;14519:2;14514:3;14510:12;14503:19;;14347:181;;;:::o;14537:373::-;;14697:67;14761:2;14756:3;14697:67;:::i;:::-;14690:74;;14797:34;14793:1;14788:3;14784:11;14777:55;14866:6;14861:2;14856:3;14852:12;14845:28;14901:2;14896:3;14892:12;14885:19;;14683:227;;;:::o;14919:325::-;;15079:67;15143:2;15138:3;15079:67;:::i;:::-;15072:74;;15179:27;15175:1;15170:3;15166:11;15159:48;15235:2;15230:3;15226:12;15219:19;;15065:179;;;:::o;15253:373::-;;15413:67;15477:2;15472:3;15413:67;:::i;:::-;15406:74;;15513:34;15509:1;15504:3;15500:11;15493:55;15582:6;15577:2;15572:3;15568:12;15561:28;15617:2;15612:3;15608:12;15601:19;;15399:227;;;:::o;15635:330::-;;15795:67;15859:2;15854:3;15795:67;:::i;:::-;15788:74;;15895:32;15891:1;15886:3;15882:11;15875:53;15956:2;15951:3;15947:12;15940:19;;15781:184;;;:::o;15974:375::-;;16134:67;16198:2;16193:3;16134:67;:::i;:::-;16127:74;;16234:34;16230:1;16225:3;16221:11;16214:55;16303:8;16298:2;16293:3;16289:12;16282:30;16340:2;16335:3;16331:12;16324:19;;16120:229;;;:::o;16358:381::-;;16518:67;16582:2;16577:3;16518:67;:::i;:::-;16511:74;;16618:34;16614:1;16609:3;16605:11;16598:55;16687:14;16682:2;16677:3;16673:12;16666:36;16730:2;16725:3;16721:12;16714:19;;16504:235;;;:::o;16748:328::-;;16908:67;16972:2;16967:3;16908:67;:::i;:::-;16901:74;;17008:30;17004:1;16999:3;16995:11;16988:51;17067:2;17062:3;17058:12;17051:19;;16894:182;;;:::o;17085:393::-;;17245:67;17309:2;17304:3;17245:67;:::i;:::-;17238:74;;17345:34;17341:1;17336:3;17332:11;17325:55;17414:26;17409:2;17404:3;17400:12;17393:48;17469:2;17464:3;17460:12;17453:19;;17231:247;;;:::o;17487:379::-;;17647:67;17711:2;17706:3;17647:67;:::i;:::-;17640:74;;17747:34;17743:1;17738:3;17734:11;17727:55;17816:12;17811:2;17806:3;17802:12;17795:34;17857:2;17852:3;17848:12;17841:19;;17633:233;;;:::o;17875:379::-;;18035:67;18099:2;18094:3;18035:67;:::i;:::-;18028:74;;18135:34;18131:1;18126:3;18122:11;18115:55;18204:12;18199:2;18194:3;18190:12;18183:34;18245:2;18240:3;18236:12;18229:19;;18021:233;;;:::o;18263:371::-;;18423:67;18487:2;18482:3;18423:67;:::i;:::-;18416:74;;18523:34;18519:1;18514:3;18510:11;18503:55;18592:4;18587:2;18582:3;18578:12;18571:26;18625:2;18620:3;18616:12;18609:19;;18409:225;;;:::o;18643:332::-;;18803:67;18867:2;18862:3;18803:67;:::i;:::-;18796:74;;18903:34;18899:1;18894:3;18890:11;18883:55;18966:2;18961:3;18957:12;18950:19;;18789:186;;;:::o;18984:370::-;;19144:67;19208:2;19203:3;19144:67;:::i;:::-;19137:74;;19244:34;19240:1;19235:3;19231:11;19224:55;19313:3;19308:2;19303:3;19299:12;19292:25;19345:2;19340:3;19336:12;19329:19;;19130:224;;;:::o;19363:381::-;;19523:67;19587:2;19582:3;19523:67;:::i;:::-;19516:74;;19623:34;19619:1;19614:3;19610:11;19603:55;19692:14;19687:2;19682:3;19678:12;19671:36;19735:2;19730:3;19726:12;19719:19;;19509:235;;;:::o;19753:332::-;;19913:67;19977:2;19972:3;19913:67;:::i;:::-;19906:74;;20013:34;20009:1;20004:3;20000:11;19993:55;20076:2;20071:3;20067:12;20060:19;;19899:186;;;:::o;20094:378::-;;20254:67;20318:2;20313:3;20254:67;:::i;:::-;20247:74;;20354:34;20350:1;20345:3;20341:11;20334:55;20423:11;20418:2;20413:3;20409:12;20402:33;20463:2;20458:3;20454:12;20447:19;;20240:232;;;:::o;20481:384::-;;20641:67;20705:2;20700:3;20641:67;:::i;:::-;20634:74;;20741:34;20737:1;20732:3;20728:11;20721:55;20810:17;20805:2;20800:3;20796:12;20789:39;20856:2;20851:3;20847:12;20840:19;;20627:238;;;:::o;20874:371::-;;21034:67;21098:2;21093:3;21034:67;:::i;:::-;21027:74;;21134:34;21130:1;21125:3;21121:11;21114:55;21203:4;21198:2;21193:3;21189:12;21182:26;21236:2;21231:3;21227:12;21220:19;;21020:225;;;:::o;21254:370::-;;21414:67;21478:2;21473:3;21414:67;:::i;:::-;21407:74;;21514:34;21510:1;21505:3;21501:11;21494:55;21583:3;21578:2;21573:3;21569:12;21562:25;21615:2;21610:3;21606:12;21599:19;;21400:224;;;:::o;21633:328::-;;21793:67;21857:2;21852:3;21793:67;:::i;:::-;21786:74;;21893:30;21889:1;21884:3;21880:11;21873:51;21952:2;21947:3;21943:12;21936:19;;21779:182;;;:::o;21970:386::-;;22130:67;22194:2;22189:3;22130:67;:::i;:::-;22123:74;;22230:34;22226:1;22221:3;22217:11;22210:55;22299:19;22294:2;22289:3;22285:12;22278:41;22347:2;22342:3;22338:12;22331:19;;22116:240;;;:::o;22365:329::-;;22525:67;22589:2;22584:3;22525:67;:::i;:::-;22518:74;;22625:31;22621:1;22616:3;22612:11;22605:52;22685:2;22680:3;22676:12;22669:19;;22511:183;;;:::o;22703:370::-;;22863:67;22927:2;22922:3;22863:67;:::i;:::-;22856:74;;22963:34;22959:1;22954:3;22950:11;22943:55;23032:3;23027:2;23022:3;23018:12;23011:25;23064:2;23059:3;23055:12;23048:19;;22849:224;;;:::o;23082:323::-;;23242:67;23306:2;23301:3;23242:67;:::i;:::-;23235:74;;23342:25;23338:1;23333:3;23329:11;23322:46;23396:2;23391:3;23387:12;23380:19;;23228:177;;;:::o;23414:377::-;;23574:67;23638:2;23633:3;23574:67;:::i;:::-;23567:74;;23674:34;23670:1;23665:3;23661:11;23654:55;23743:10;23738:2;23733:3;23729:12;23722:32;23782:2;23777:3;23773:12;23766:19;;23560:231;;;:::o;23799:103::-;23872:24;23890:5;23872:24;:::i;:::-;23867:3;23860:37;23854:48;;:::o;23909:113::-;23992:24;24010:5;23992:24;:::i;:::-;23987:3;23980:37;23974:48;;:::o;24029:271::-;;24182:93;24271:3;24262:6;24182:93;:::i;:::-;24175:100;;24292:3;24285:10;;24163:137;;;;:::o;24307:273::-;;24461:94;24551:3;24542:6;24461:94;:::i;:::-;24454:101;;24572:3;24565:10;;24442:138;;;;:::o;24587:436::-;;24790:95;24881:3;24872:6;24790:95;:::i;:::-;24783:102;;24903:95;24994:3;24985:6;24903:95;:::i;:::-;24896:102;;25015:3;25008:10;;24771:252;;;;;:::o;25030:222::-;;25157:2;25146:9;25142:18;25134:26;;25171:71;25239:1;25228:9;25224:17;25215:6;25171:71;:::i;:::-;25128:124;;;;:::o;25259:672::-;;25504:3;25493:9;25489:19;25481:27;;25519:87;25603:1;25592:9;25588:17;25579:6;25519:87;:::i;:::-;25617:72;25685:2;25674:9;25670:18;25661:6;25617:72;:::i;:::-;25700;25768:2;25757:9;25753:18;25744:6;25700:72;:::i;:::-;25820:9;25814:4;25810:20;25805:2;25794:9;25790:18;25783:48;25845:76;25916:4;25907:6;25845:76;:::i;:::-;25837:84;;25475:456;;;;;;;:::o;25938:548::-;;26149:2;26138:9;26134:18;26126:26;;26163:79;26239:1;26228:9;26224:17;26215:6;26163:79;:::i;:::-;26253:72;26321:2;26310:9;26306:18;26297:6;26253:72;:::i;:::-;26373:9;26367:4;26363:20;26358:2;26347:9;26343:18;26336:48;26398:78;26471:4;26462:6;26398:78;:::i;:::-;26390:86;;26120:366;;;;;;:::o;26493:410::-;;26690:2;26679:9;26675:18;26667:26;;26740:9;26734:4;26730:20;26726:1;26715:9;26711:17;26704:47;26765:128;26888:4;26879:6;26765:128;:::i;:::-;26757:136;;26661:242;;;;:::o;26910:370::-;;27087:2;27076:9;27072:18;27064:26;;27137:9;27131:4;27127:20;27123:1;27112:9;27108:17;27101:47;27162:108;27265:4;27256:6;27162:108;:::i;:::-;27154:116;;27058:222;;;;:::o;27287:210::-;;27408:2;27397:9;27393:18;27385:26;;27422:65;27484:1;27473:9;27469:17;27460:6;27422:65;:::i;:::-;27379:118;;;;:::o;27504:310::-;;27651:2;27640:9;27636:18;27628:26;;27701:9;27695:4;27691:20;27687:1;27676:9;27672:17;27665:47;27726:78;27799:4;27790:6;27726:78;:::i;:::-;27718:86;;27622:192;;;;:::o;27821:304::-;;27965:2;27954:9;27950:18;27942:26;;28015:9;28009:4;28005:20;28001:1;27990:9;27986:17;27979:47;28040:75;28110:4;28101:6;28040:75;:::i;:::-;28032:83;;27936:189;;;;:::o;28132:416::-;;28332:2;28321:9;28317:18;28309:26;;28382:9;28376:4;28372:20;28368:1;28357:9;28353:17;28346:47;28407:131;28533:4;28407:131;:::i;:::-;28399:139;;28303:245;;;:::o;28555:416::-;;28755:2;28744:9;28740:18;28732:26;;28805:9;28799:4;28795:20;28791:1;28780:9;28776:17;28769:47;28830:131;28956:4;28830:131;:::i;:::-;28822:139;;28726:245;;;:::o;28978:416::-;;29178:2;29167:9;29163:18;29155:26;;29228:9;29222:4;29218:20;29214:1;29203:9;29199:17;29192:47;29253:131;29379:4;29253:131;:::i;:::-;29245:139;;29149:245;;;:::o;29401:416::-;;29601:2;29590:9;29586:18;29578:26;;29651:9;29645:4;29641:20;29637:1;29626:9;29622:17;29615:47;29676:131;29802:4;29676:131;:::i;:::-;29668:139;;29572:245;;;:::o;29824:416::-;;30024:2;30013:9;30009:18;30001:26;;30074:9;30068:4;30064:20;30060:1;30049:9;30045:17;30038:47;30099:131;30225:4;30099:131;:::i;:::-;30091:139;;29995:245;;;:::o;30247:416::-;;30447:2;30436:9;30432:18;30424:26;;30497:9;30491:4;30487:20;30483:1;30472:9;30468:17;30461:47;30522:131;30648:4;30522:131;:::i;:::-;30514:139;;30418:245;;;:::o;30670:416::-;;30870:2;30859:9;30855:18;30847:26;;30920:9;30914:4;30910:20;30906:1;30895:9;30891:17;30884:47;30945:131;31071:4;30945:131;:::i;:::-;30937:139;;30841:245;;;:::o;31093:416::-;;31293:2;31282:9;31278:18;31270:26;;31343:9;31337:4;31333:20;31329:1;31318:9;31314:17;31307:47;31368:131;31494:4;31368:131;:::i;:::-;31360:139;;31264:245;;;:::o;31516:416::-;;31716:2;31705:9;31701:18;31693:26;;31766:9;31760:4;31756:20;31752:1;31741:9;31737:17;31730:47;31791:131;31917:4;31791:131;:::i;:::-;31783:139;;31687:245;;;:::o;31939:416::-;;32139:2;32128:9;32124:18;32116:26;;32189:9;32183:4;32179:20;32175:1;32164:9;32160:17;32153:47;32214:131;32340:4;32214:131;:::i;:::-;32206:139;;32110:245;;;:::o;32362:416::-;;32562:2;32551:9;32547:18;32539:26;;32612:9;32606:4;32602:20;32598:1;32587:9;32583:17;32576:47;32637:131;32763:4;32637:131;:::i;:::-;32629:139;;32533:245;;;:::o;32785:416::-;;32985:2;32974:9;32970:18;32962:26;;33035:9;33029:4;33025:20;33021:1;33010:9;33006:17;32999:47;33060:131;33186:4;33060:131;:::i;:::-;33052:139;;32956:245;;;:::o;33208:416::-;;33408:2;33397:9;33393:18;33385:26;;33458:9;33452:4;33448:20;33444:1;33433:9;33429:17;33422:47;33483:131;33609:4;33483:131;:::i;:::-;33475:139;;33379:245;;;:::o;33631:416::-;;33831:2;33820:9;33816:18;33808:26;;33881:9;33875:4;33871:20;33867:1;33856:9;33852:17;33845:47;33906:131;34032:4;33906:131;:::i;:::-;33898:139;;33802:245;;;:::o;34054:416::-;;34254:2;34243:9;34239:18;34231:26;;34304:9;34298:4;34294:20;34290:1;34279:9;34275:17;34268:47;34329:131;34455:4;34329:131;:::i;:::-;34321:139;;34225:245;;;:::o;34477:416::-;;34677:2;34666:9;34662:18;34654:26;;34727:9;34721:4;34717:20;34713:1;34702:9;34698:17;34691:47;34752:131;34878:4;34752:131;:::i;:::-;34744:139;;34648:245;;;:::o;34900:416::-;;35100:2;35089:9;35085:18;35077:26;;35150:9;35144:4;35140:20;35136:1;35125:9;35121:17;35114:47;35175:131;35301:4;35175:131;:::i;:::-;35167:139;;35071:245;;;:::o;35323:416::-;;35523:2;35512:9;35508:18;35500:26;;35573:9;35567:4;35563:20;35559:1;35548:9;35544:17;35537:47;35598:131;35724:4;35598:131;:::i;:::-;35590:139;;35494:245;;;:::o;35746:416::-;;35946:2;35935:9;35931:18;35923:26;;35996:9;35990:4;35986:20;35982:1;35971:9;35967:17;35960:47;36021:131;36147:4;36021:131;:::i;:::-;36013:139;;35917:245;;;:::o;36169:416::-;;36369:2;36358:9;36354:18;36346:26;;36419:9;36413:4;36409:20;36405:1;36394:9;36390:17;36383:47;36444:131;36570:4;36444:131;:::i;:::-;36436:139;;36340:245;;;:::o;36592:416::-;;36792:2;36781:9;36777:18;36769:26;;36842:9;36836:4;36832:20;36828:1;36817:9;36813:17;36806:47;36867:131;36993:4;36867:131;:::i;:::-;36859:139;;36763:245;;;:::o;37015:416::-;;37215:2;37204:9;37200:18;37192:26;;37265:9;37259:4;37255:20;37251:1;37240:9;37236:17;37229:47;37290:131;37416:4;37290:131;:::i;:::-;37282:139;;37186:245;;;:::o;37438:416::-;;37638:2;37627:9;37623:18;37615:26;;37688:9;37682:4;37678:20;37674:1;37663:9;37659:17;37652:47;37713:131;37839:4;37713:131;:::i;:::-;37705:139;;37609:245;;;:::o;37861:416::-;;38061:2;38050:9;38046:18;38038:26;;38111:9;38105:4;38101:20;38097:1;38086:9;38082:17;38075:47;38136:131;38262:4;38136:131;:::i;:::-;38128:139;;38032:245;;;:::o;38284:416::-;;38484:2;38473:9;38469:18;38461:26;;38534:9;38528:4;38524:20;38520:1;38509:9;38505:17;38498:47;38559:131;38685:4;38559:131;:::i;:::-;38551:139;;38455:245;;;:::o;38707:416::-;;38907:2;38896:9;38892:18;38884:26;;38957:9;38951:4;38947:20;38943:1;38932:9;38928:17;38921:47;38982:131;39108:4;38982:131;:::i;:::-;38974:139;;38878:245;;;:::o;39130:416::-;;39330:2;39319:9;39315:18;39307:26;;39380:9;39374:4;39370:20;39366:1;39355:9;39351:17;39344:47;39405:131;39531:4;39405:131;:::i;:::-;39397:139;;39301:245;;;:::o;39553:416::-;;39753:2;39742:9;39738:18;39730:26;;39803:9;39797:4;39793:20;39789:1;39778:9;39774:17;39767:47;39828:131;39954:4;39828:131;:::i;:::-;39820:139;;39724:245;;;:::o;39976:416::-;;40176:2;40165:9;40161:18;40153:26;;40226:9;40220:4;40216:20;40212:1;40201:9;40197:17;40190:47;40251:131;40377:4;40251:131;:::i;:::-;40243:139;;40147:245;;;:::o;40399:416::-;;40599:2;40588:9;40584:18;40576:26;;40649:9;40643:4;40639:20;40635:1;40624:9;40620:17;40613:47;40674:131;40800:4;40674:131;:::i;:::-;40666:139;;40570:245;;;:::o;40822:416::-;;41022:2;41011:9;41007:18;40999:26;;41072:9;41066:4;41062:20;41058:1;41047:9;41043:17;41036:47;41097:131;41223:4;41097:131;:::i;:::-;41089:139;;40993:245;;;:::o;41245:222::-;;41372:2;41361:9;41357:18;41349:26;;41386:71;41454:1;41443:9;41439:17;41430:6;41386:71;:::i;:::-;41343:124;;;;:::o;41474:256::-;;41536:2;41530:9;41520:19;;41574:4;41566:6;41562:17;41673:6;41661:10;41658:22;41637:18;41625:10;41622:34;41619:62;41616:2;;;41694:1;41691;41684:12;41616:2;41714:10;41710:2;41703:22;41514:216;;;;:::o;41737:321::-;;41880:18;41872:6;41869:30;41866:2;;;41912:1;41909;41902:12;41866:2;41979:4;41975:9;41968:4;41960:6;41956:17;41952:33;41944:41;;42043:4;42037;42033:15;42025:23;;41803:255;;;:::o;42065:322::-;;42209:18;42201:6;42198:30;42195:2;;;42241:1;42238;42231:12;42195:2;42308:4;42304:9;42297:4;42289:6;42285:17;42281:33;42273:41;;42372:4;42366;42362:15;42354:23;;42132:255;;;:::o;42394:161::-;;42490:3;42482:11;;42528:4;42523:3;42519:14;42511:22;;42476:79;;;:::o;42562:151::-;;42648:3;42640:11;;42686:4;42681:3;42677:14;42669:22;;42634:79;;;:::o;42720:161::-;;42791:3;42783:11;;42828:3;42825:1;42818:14;42860:4;42857:1;42847:18;42839:26;;42777:104;;;:::o;42888:158::-;;42956:3;42948:11;;42993:3;42990:1;42983:14;43025:4;43022:1;43012:18;43004:26;;42942:104;;;:::o;43053:147::-;;43172:5;43166:12;43156:22;;43137:63;;;:::o;43207:137::-;;43316:5;43310:12;43300:22;;43281:63;;;:::o;43351:121::-;;43444:5;43438:12;43428:22;;43409:63;;;:::o;43479:122::-;;43573:5;43567:12;43557:22;;43538:63;;;:::o;43608:118::-;;43716:4;43711:3;43707:14;43699:22;;43693:33;;;:::o;43733:108::-;;43831:4;43826:3;43822:14;43814:22;;43808:33;;;:::o;43849:188::-;;43989:6;43984:3;43977:19;44026:4;44021:3;44017:14;44002:29;;43970:67;;;;:::o;44046:178::-;;44176:6;44171:3;44164:19;44213:4;44208:3;44204:14;44189:29;;44157:67;;;;:::o;44233:162::-;;44347:6;44342:3;44335:19;44384:4;44379:3;44375:14;44360:29;;44328:67;;;;:::o;44404:144::-;;44539:3;44524:18;;44517:31;;;;:::o;44557:153::-;;44662:6;44657:3;44650:19;44699:4;44694:3;44690:14;44675:29;;44643:67;;;;:::o;44719:163::-;;44834:6;44829:3;44822:19;44871:4;44866:3;44862:14;44847:29;;44815:67;;;;:::o;44891:145::-;;45027:3;45012:18;;45005:31;;;;:::o;45044:91::-;;45106:24;45124:5;45106:24;:::i;:::-;45095:35;;45089:46;;;:::o;45142:99::-;;45212:24;45230:5;45212:24;:::i;:::-;45201:35;;45195:46;;;:::o;45248:85::-;;45321:5;45314:13;45307:21;45296:32;;45290:43;;;:::o;45340:72::-;;45402:5;45391:16;;45385:27;;;:::o;45419:144::-;;45491:66;45484:5;45480:78;45469:89;;45463:100;;;:::o;45570:121::-;;45643:42;45636:5;45632:54;45621:65;;45615:76;;;:::o;45698:72::-;;45760:5;45749:16;;45743:27;;;:::o;45777:129::-;;45864:37;45895:5;45864:37;:::i;:::-;45851:50;;45845:61;;;:::o;45913:121::-;;45992:37;46023:5;45992:37;:::i;:::-;45979:50;;45973:61;;;:::o;46041:108::-;;46120:24;46138:5;46120:24;:::i;:::-;46107:37;;46101:48;;;:::o;46157:145::-;46238:6;46233:3;46228;46215:30;46294:1;46285:6;46280:3;46276:16;46269:27;46208:94;;;:::o;46311:268::-;46376:1;46383:101;46397:6;46394:1;46391:13;46383:101;;;46473:1;46468:3;46464:11;46458:18;46454:1;46449:3;46445:11;46438:39;46419:2;46416:1;46412:10;46407:15;;46383:101;;;46499:6;46496:1;46493:13;46490:2;;;46564:1;46555:6;46550:3;46546:16;46539:27;46490:2;46360:219;;;;:::o;46587:97::-;;46675:2;46671:7;46666:2;46659:5;46655:14;46651:28;46641:38;;46635:49;;;:::o;46692:117::-;46761:24;46779:5;46761:24;:::i;:::-;46754:5;46751:35;46741:2;;46800:1;46797;46790:12;46741:2;46735:74;:::o;46816:111::-;46882:21;46897:5;46882:21;:::i;:::-;46875:5;46872:32;46862:2;;46918:1;46915;46908:12;46862:2;46856:71;:::o;46934:117::-;47003:24;47021:5;47003:24;:::i;:::-;46996:5;46993:35;46983:2;;47042:1;47039;47032:12;46983:2;46977:74;:::o;47058:115::-;47126:23;47143:5;47126:23;:::i;:::-;47119:5;47116:34;47106:2;;47164:1;47161;47154:12;47106:2;47100:73;:::o;47180:117::-;47249:24;47267:5;47249:24;:::i;:::-;47242:5;47239:35;47229:2;;47288:1;47285;47278:12;47229:2;47223:74;:::o

Swarm Source

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