ETH Price: $3,731.38 (+8.45%)
Gas: 13 Gwei

UNSHADED ROCKS (ROCK)
 

Overview

TokenID

100

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

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:
Rocks721

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
 UNSHADED ROCKS                                                                                                                                                                                                      
 Sculptures by Loucas Braconnier/Figure31, contract by Jonathan Chomko. 
 December 2021                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
**/

// File: @openzeppelin/contracts/utils/EnumerableSet.sol
// SPDX-License-Identifier: MIT

pragma solidity  ^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/Address.sol



pragma solidity  ^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/Context.sol



pragma solidity  ^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) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

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



// File @openzeppelin/contracts/access/[email protected]
pragma solidity  ^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() {
        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;
    }
}


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

pragma solidity  ^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.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.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.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.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.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 () {
        // 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/utils/EnumerableMap.sol



pragma solidity  ^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))));
    }
}
pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal 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);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol
pragma solidity  ^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 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 - not used with on-chain
    // 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_) {
        _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");
        // return json from folder
        // string memory output = string(abi.encodePacked(baseURI(), tokenId.toString(), ".json"));
        // return string(abi.encodePacked(baseURI(), tokenId.toString(), ".json"));
        return string(abi.encodePacked(baseURI(),tokenId.toString(),".json"));

        // return "hello";
    }


    //Return contract metadata for opensea view
    function contractURI() public view returns (string memory) {
        return string(abi.encodePacked(baseURI(), "contract_metadata", '.json'));
    }

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

    function _approve(address to, uint256 tokenId) private {
        _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: contracts/Rocks721.sol
pragma solidity  ^0.8.0;

/**
 * @dev {ERC721} token, including:
 *
 *  - ability for holders to burn (destroy) their tokens
 *  - a minter role that allows for token minting (creation)
 *  - token ID and URI autogeneration
 *
 * This contract uses {AccessControl} to lock permissioned functions using the
 * different roles - head to its documentation for details.
 *
 * The account that deploys the contract will be granted the minter and pauser
 * roles, as well as the default admin role, which will let it grant both minter
 * and pauser roles to other accounts.
 */

contract Rocks721 is Context, ERC721, Ownable {

    address payable public withdrawalAddress;

    //Token sale control logic
    uint256 public maxNumberOfPieces;
    uint256 public tokenCounter;

    //Standard sale
    bool public standardSaleActive;
    uint256 public pricePerPiece;

    //Presale
    bool public preSaleActive;
    mapping (address => uint256) public whitelisted;
    mapping (address => uint256) public preSaleMinted;
    mapping (uint256 => uint256) public reservedTokens;
    mapping (address => uint256[]) public giftTokens;

    event Purchase(address buyer, uint256 price, uint256 [] tokenIds);
    event MetadataUpdated(string newTokenUriBase);

    constructor(
        uint256 givenPricePerPiece,
        address payable givenWithdrawalAddress,
        string memory givenTokenURIBase
    ) ERC721("UNSHADED ROCKS", "ROCK") {
        pricePerPiece = givenPricePerPiece;
        withdrawalAddress = givenWithdrawalAddress;
        _setBaseURI(givenTokenURIBase);
        maxNumberOfPieces = 9999;
        tokenCounter = 0;
    }

    //Change base uri 
     function updateBaseURI(string memory givenTokenURIBase) public onlyOwner{
        _setBaseURI(givenTokenURIBase);
    }

    function setWhitelistAddress(address[] memory users, uint256[][] memory givenGiftTokens) public onlyOwner {
        for (uint256 i = 0; i < users.length; i++) {
            //use the users address as a key and set the limit to 100
            whitelisted[users[i]] = 100;
            giftTokens[users[i]] = givenGiftTokens[i];
            for( uint256 j = 0; j< givenGiftTokens[i].length; j ++){
                reservedTokens[givenGiftTokens[i][j]] = 1;
            }
        }
    }

    function claimGift() public {
        require(whitelisted[msg.sender] > 0, "address not on whitelist ");
        for(uint256 i = 0; i < giftTokens[msg.sender].length; i ++){
            _safeMint( msg.sender, giftTokens[msg.sender][i]);
        }
    }

    //Input list of reserved tokens 
    function setReservedTokens(uint256[] memory givenReservedTokens) public onlyOwner{
        for(uint256 i = 0; i < givenReservedTokens.length; i ++){
            reservedTokens[givenReservedTokens[i]] = 1;
        }
    }

    //Sale logic
    function setPresaleActive(bool isActive) public onlyOwner{
        preSaleActive = isActive;
    }

    function setSaleActive(bool isActive) public onlyOwner {
        standardSaleActive = isActive;
    }

    //Price setting
    function setPrice(uint256 givenPrice) external onlyOwner {
        pricePerPiece = givenPrice;
    }

    //Withdrawal
    function setWithdrawalAddress(address payable givenWithdrawalAddress) public onlyOwner {
        withdrawalAddress = givenWithdrawalAddress;
    }

    function withdrawEth() public onlyOwner {
        Address.sendValue(withdrawalAddress, address(this).balance);
    }

    //Owner info
    function tokenInfo(uint256 tokenId) public view returns (address) {
        return (ownerOf(tokenId));
    }

    function getOwners(uint256 start, uint256 end) public view returns (address[] memory){
        address[] memory re = new address[](end - start);
        for (uint256 i = start; i < end; i++) {
                re[i - start] = ownerOf(i);
        }
        return re;
    }

    //Update the token counter position
    function setTokenCounter(uint256 givenTokenCounter) public onlyOwner{
        tokenCounter = givenTokenCounter;
    }

    function artistMint(uint256 tokenId) public onlyOwner {
        reservedTokens[tokenId] = 1;
        _safeMint(msg.sender, tokenId);
    }
    
    function earlyMint() public payable {
        require(preSaleActive, "early sale not open");
        require(whitelisted[msg.sender] > 0, "address not on whitelist ");
        require(whitelisted[msg.sender] > preSaleMinted[msg.sender], "exceeded number allowed");
        preSaleMinted[msg.sender] += 1;
        mintItem();
    }

    function mint() public payable {
        require(standardSaleActive || msg.sender == owner(), "sale not open");
        mintItem();
    }

    function mintItem() private returns (uint256 [] memory) {
        require(msg.value >= pricePerPiece, "not enough eth sent");
        require(msg.value <= 1000000000000000000, "cannot send in more than 1 eth");
                             
        uint256 amount = msg.value / pricePerPiece;  
        //amount will always be at least one so we need to add one to our max for proper comparison
        require(tokenCounter + amount <= maxNumberOfPieces + 1, " tokens sold out or too many tokens requested ");
        uint256 [] memory tokensMinted = new uint256[](amount);

        for(uint256 i = 0; i < amount; i ++){
            
            //If the token has been reserved or already minted then skip it 
            while(reservedTokens[tokenCounter] > 0 || _exists(tokenCounter)){
                tokenCounter += 1;
            }

            _safeMint(msg.sender, tokenCounter);
            //save minted tokens to list
            tokensMinted[i] = tokenCounter;
            tokenCounter += 1;
        }

        emit Purchase(msg.sender, msg.value, tokensMinted);
        return tokensMinted;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"givenPricePerPiece","type":"uint256"},{"internalType":"address payable","name":"givenWithdrawalAddress","type":"address"},{"internalType":"string","name":"givenTokenURIBase","type":"string"}],"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":false,"internalType":"string","name":"newTokenUriBase","type":"string"}],"name":"MetadataUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"buyer","type":"address"},{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"},{"indexed":false,"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"Purchase","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"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"artistMint","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":[],"name":"claimGift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earlyMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"end","type":"uint256"}],"name":"getOwners","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"giftTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"maxNumberOfPieces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"preSaleMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePerPiece","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"reservedTokens","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":"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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isActive","type":"bool"}],"name":"setPresaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"givenPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"givenReservedTokens","type":"uint256[]"}],"name":"setReservedTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isActive","type":"bool"}],"name":"setSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"givenTokenCounter","type":"uint256"}],"name":"setTokenCounter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"},{"internalType":"uint256[][]","name":"givenGiftTokens","type":"uint256[][]"}],"name":"setWhitelistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"givenWithdrawalAddress","type":"address"}],"name":"setWithdrawalAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"standardSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"tokenCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenInfo","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"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":"string","name":"givenTokenURIBase","type":"string"}],"name":"updateBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawalAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040516200609d3803806200609d8339818101604052810190620000379190620004b3565b6040518060400160405280600e81526020017f554e53484144454420524f434b530000000000000000000000000000000000008152506040518060400160405280600481526020017f524f434b00000000000000000000000000000000000000000000000000000000815250620000bb6301ffc9a760e01b6200025b60201b60201c565b8160069080519060200190620000d392919062000357565b508060079080519060200190620000ec92919062000357565b50620001056380ac58cd60e01b6200025b60201b60201c565b6200011d635b5e139f60e01b6200025b60201b60201c565b6200013563780e9d6360e01b6200025b60201b60201c565b50506000620001496200033360201b60201c565b905080600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35082600e8190555081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000241816200033b60201b60201c565b61270f600b819055506000600c81905550505050620007a7565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415620002c7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002be9062000555565b60405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b80600890805190602001906200035392919062000357565b5050565b82805462000365906200065b565b90600052602060002090601f016020900481019282620003895760008555620003d5565b82601f10620003a457805160ff1916838001178555620003d5565b82800160010185558215620003d5579182015b82811115620003d4578251825591602001919060010190620003b7565b5b509050620003e49190620003e8565b5090565b5b8082111562000403576000816000905550600101620003e9565b5090565b60006200041e6200041884620005a0565b62000577565b9050828152602081018484840111156200043d576200043c6200072a565b5b6200044a84828562000625565b509392505050565b600081519050620004638162000773565b92915050565b600082601f83011262000481576200048062000725565b5b81516200049384826020860162000407565b91505092915050565b600081519050620004ad816200078d565b92915050565b600080600060608486031215620004cf57620004ce62000734565b5b6000620004df868287016200049c565b9350506020620004f28682870162000452565b925050604084015167ffffffffffffffff8111156200051657620005156200072f565b5b620005248682870162000469565b9150509250925092565b60006200053d601c83620005d6565b91506200054a826200074a565b602082019050919050565b6000602082019050818103600083015262000570816200052e565b9050919050565b60006200058362000596565b905062000591828262000691565b919050565b6000604051905090565b600067ffffffffffffffff821115620005be57620005bd620006f6565b5b620005c98262000739565b9050602081019050919050565b600082825260208201905092915050565b6000620005f482620005fb565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200064557808201518184015260208101905062000628565b8381111562000655576000848401525b50505050565b600060028204905060018216806200067457607f821691505b602082108114156200068b576200068a620006c7565b5b50919050565b6200069c8262000739565b810181811067ffffffffffffffff82111715620006be57620006bd620006f6565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433136353a20696e76616c696420696e7465726661636520696400000000600082015250565b6200077e81620005e7565b81146200078a57600080fd5b50565b62000798816200061b565b8114620007a457600080fd5b50565b6158e680620007b76000396000f3fe60806040526004361061027d5760003560e01c8063844947081161014f578063c4c50acf116100c1578063dcb114ec1161007a578063dcb114ec1461098c578063e8a3d485146109b5578063e985e9c5146109e0578063f2bcd02214610a1d578063f2fde38b14610a48578063fe3c465714610a715761027d565b8063c4c50acf14610844578063c87b56dd14610881578063c8aa03b8146108be578063cc33c875146108e7578063d082e38114610924578063d936547e1461094f5761027d565b8063931688cb11610113578063931688cb1461075e57806395d89b4114610787578063a0ef91df146107b2578063a22cb465146107c9578063b88d4fde146107f2578063bf113baf1461081b5761027d565b806384494708146106be5780638b42035a146106e95780638da5cb5b146106f35780638f7c8d101461071e57806391b7f5ed146107355761027d565b80633f8121a2116101f35780636352211e116101ac5780636352211e146105b05780636c0360eb146105ed57806370a0823114610618578063715018a61461065557806372756b611461066c578063841718a6146106955761027d565b80633f8121a21461048e57806342842e0e146104b75780634f6ccce7146104e0578063529be43b1461051d57806353d0023d1461055a578063575ca2c7146105855761027d565b8063095ea7b311610245578063095ea7b3146103a15780631249c58b146103ca57806318160ddd146103d457806321b8092e146103ff57806323b872dd146104285780632f745c59146104515761027d565b806301ffc9a71461028257806303a6118c146102bf57806304822058146102fc57806306fdde0314610339578063081812fc14610364575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613e99565b610a9c565b6040516102b6919061476a565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e19190613f3c565b610b03565b6040516102f39190614b27565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e9190613f69565b610b1b565b6040516103309190614748565b60405180910390f35b34801561034557600080fd5b5061034e610c02565b60405161035b9190614785565b60405180910390f35b34801561037057600080fd5b5061038b60048036038101906103869190613f3c565b610c94565b6040516103989190614688565b60405180910390f35b3480156103ad57600080fd5b506103c860048036038101906103c39190613d6b565b610d19565b005b6103d2610e31565b005b3480156103e057600080fd5b506103e9610ec8565b6040516103f69190614b27565b60405180910390f35b34801561040b57600080fd5b5061042660048036038101906104219190613be8565b610ed9565b005b34801561043457600080fd5b5061044f600480360381019061044a9190613c55565b610f99565b005b34801561045d57600080fd5b5061047860048036038101906104739190613d6b565b610ff9565b6040516104859190614b27565b60405180910390f35b34801561049a57600080fd5b506104b560048036038101906104b09190613e6c565b611054565b005b3480156104c357600080fd5b506104de60048036038101906104d99190613c55565b6110ed565b005b3480156104ec57600080fd5b5061050760048036038101906105029190613f3c565b61110d565b6040516105149190614b27565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f9190613bbb565b611130565b6040516105519190614b27565b60405180910390f35b34801561056657600080fd5b5061056f611148565b60405161057c919061476a565b60405180910390f35b34801561059157600080fd5b5061059a61115b565b6040516105a79190614b27565b60405180910390f35b3480156105bc57600080fd5b506105d760048036038101906105d29190613f3c565b611161565b6040516105e49190614688565b60405180910390f35b3480156105f957600080fd5b50610602611198565b60405161060f9190614785565b60405180910390f35b34801561062457600080fd5b5061063f600480360381019061063a9190613bbb565b61122a565b60405161064c9190614b27565b60405180910390f35b34801561066157600080fd5b5061066a6112e9565b005b34801561067857600080fd5b50610693600480360381019061068e9190613e23565b611426565b005b3480156106a157600080fd5b506106bc60048036038101906106b79190613e6c565b6114f8565b005b3480156106ca57600080fd5b506106d3611591565b6040516106e0919061476a565b60405180910390f35b6106f16115a4565b005b3480156106ff57600080fd5b50610708611797565b6040516107159190614688565b60405180910390f35b34801561072a57600080fd5b506107336117c1565b005b34801561074157600080fd5b5061075c60048036038101906107579190613f3c565b61190b565b005b34801561076a57600080fd5b5061078560048036038101906107809190613ef3565b611991565b005b34801561079357600080fd5b5061079c611a19565b6040516107a99190614785565b60405180910390f35b3480156107be57600080fd5b506107c7611aab565b005b3480156107d557600080fd5b506107f060048036038101906107eb9190613d2b565b611b55565b005b3480156107fe57600080fd5b5061081960048036038101906108149190613ca8565b611cd6565b005b34801561082757600080fd5b50610842600480360381019061083d9190613f3c565b611d38565b005b34801561085057600080fd5b5061086b60048036038101906108669190613d6b565b611dda565b6040516108789190614b27565b60405180910390f35b34801561088d57600080fd5b506108a860048036038101906108a39190613f3c565b611e0b565b6040516108b59190614785565b60405180910390f35b3480156108ca57600080fd5b506108e560048036038101906108e09190613dab565b611e8d565b005b3480156108f357600080fd5b5061090e60048036038101906109099190613f3c565b61209b565b60405161091b9190614688565b60405180910390f35b34801561093057600080fd5b506109396120ad565b6040516109469190614b27565b60405180910390f35b34801561095b57600080fd5b5061097660048036038101906109719190613bbb565b6120b3565b6040516109839190614b27565b60405180910390f35b34801561099857600080fd5b506109b360048036038101906109ae9190613f3c565b6120cb565b005b3480156109c157600080fd5b506109ca612151565b6040516109d79190614785565b60405180910390f35b3480156109ec57600080fd5b50610a076004803603810190610a029190613c15565b61217f565b604051610a14919061476a565b60405180910390f35b348015610a2957600080fd5b50610a32612213565b604051610a3f91906146a3565b60405180910390f35b348015610a5457600080fd5b50610a6f6004803603810190610a6a9190613bbb565b612239565b005b348015610a7d57600080fd5b50610a866123e5565b604051610a939190614b27565b60405180910390f35b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b60126020528060005260406000206000915090505481565b606060008383610b2b9190614d94565b67ffffffffffffffff811115610b4457610b43615058565b5b604051908082528060200260200182016040528015610b725781602001602082028036833780820191505090505b50905060008490505b83811015610bf757610b8c81611161565b828683610b999190614d94565b81518110610baa57610ba9615029565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508080610bef90614ef3565b915050610b7b565b508091505092915050565b606060068054610c1190614e90565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3d90614e90565b8015610c8a5780601f10610c5f57610100808354040283529160200191610c8a565b820191906000526020600020905b815481529060010190602001808311610c6d57829003601f168201915b5050505050905090565b6000610c9f826123eb565b610cde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd5906149e7565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d2482611161565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8c90614a87565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610db4612408565b73ffffffffffffffffffffffffffffffffffffffff161480610de35750610de281610ddd612408565b61217f565b5b610e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1990614967565b60405180910390fd5b610e2c8383612410565b505050565b600d60009054906101000a900460ff1680610e7e5750610e4f611797565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb490614a67565b60405180910390fd5b610ec56124c9565b50565b6000610ed46002612712565b905090565b610ee1612408565b73ffffffffffffffffffffffffffffffffffffffff16610eff611797565b73ffffffffffffffffffffffffffffffffffffffff1614610f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4c90614a07565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610faa610fa4612408565b82612727565b610fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe090614aa7565b60405180910390fd5b610ff4838383612805565b505050565b600061104c82600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612a1c90919063ffffffff16565b905092915050565b61105c612408565b73ffffffffffffffffffffffffffffffffffffffff1661107a611797565b73ffffffffffffffffffffffffffffffffffffffff16146110d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c790614a07565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b61110883838360405180602001604052806000815250611cd6565b505050565b600080611124836002612a3690919063ffffffff16565b50905080915050919050565b60116020528060005260406000206000915090505481565b600d60009054906101000a900460ff1681565b600e5481565b600061119182604051806060016040528060298152602001615888602991396002612a629092919063ffffffff16565b9050919050565b6060600880546111a790614e90565b80601f01602080910402602001604051908101604052809291908181526020018280546111d390614e90565b80156112205780601f106111f557610100808354040283529160200191611220565b820191906000526020600020905b81548152906001019060200180831161120357829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561129b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129290614987565b60405180910390fd5b6112e2600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612a81565b9050919050565b6112f1612408565b73ffffffffffffffffffffffffffffffffffffffff1661130f611797565b73ffffffffffffffffffffffffffffffffffffffff1614611365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135c90614a07565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61142e612408565b73ffffffffffffffffffffffffffffffffffffffff1661144c611797565b73ffffffffffffffffffffffffffffffffffffffff16146114a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149990614a07565b60405180910390fd5b60005b81518110156114f4576001601260008484815181106114c7576114c6615029565b5b602002602001015181526020019081526020016000208190555080806114ec90614ef3565b9150506114a5565b5050565b611500612408565b73ffffffffffffffffffffffffffffffffffffffff1661151e611797565b73ffffffffffffffffffffffffffffffffffffffff1614611574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156b90614a07565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b600f60009054906101000a900460ff1681565b600f60009054906101000a900460ff166115f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ea90614847565b60405180910390fd5b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166c90614ae7565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172c90614947565b60405180910390fd5b6001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117859190614d0d565b925050819055506117946124c9565b50565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183a90614ae7565b60405180910390fd5b60005b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050811015611908576118f533601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083815481106118e5576118e4615029565b5b9060005260206000200154612a96565b808061190090614ef3565b915050611846565b50565b611913612408565b73ffffffffffffffffffffffffffffffffffffffff16611931611797565b73ffffffffffffffffffffffffffffffffffffffff1614611987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197e90614a07565b60405180910390fd5b80600e8190555050565b611999612408565b73ffffffffffffffffffffffffffffffffffffffff166119b7611797565b73ffffffffffffffffffffffffffffffffffffffff1614611a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0490614a07565b60405180910390fd5b611a1681612ab4565b50565b606060078054611a2890614e90565b80601f0160208091040260200160405190810160405280929190818152602001828054611a5490614e90565b8015611aa15780601f10611a7657610100808354040283529160200191611aa1565b820191906000526020600020905b815481529060010190602001808311611a8457829003601f168201915b5050505050905090565b611ab3612408565b73ffffffffffffffffffffffffffffffffffffffff16611ad1611797565b73ffffffffffffffffffffffffffffffffffffffff1614611b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1e90614a07565b60405180910390fd5b611b53600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1647612ace565b565b611b5d612408565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc290614887565b60405180910390fd5b8060056000611bd8612408565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c85612408565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cca919061476a565b60405180910390a35050565b611ce7611ce1612408565b83612727565b611d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1d90614aa7565b60405180910390fd5b611d3284848484612bc2565b50505050565b611d40612408565b73ffffffffffffffffffffffffffffffffffffffff16611d5e611797565b73ffffffffffffffffffffffffffffffffffffffff1614611db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dab90614a07565b60405180910390fd5b60016012600083815260200190815260200160002081905550611dd73382612a96565b50565b60136020528160005260406000208181548110611df657600080fd5b90600052602060002001600091509150505481565b6060611e16826123eb565b611e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4c90614a47565b60405180910390fd5b611e5d611198565b611e6683612c1e565b604051602001611e77929190614617565b6040516020818303038152906040529050919050565b611e95612408565b73ffffffffffffffffffffffffffffffffffffffff16611eb3611797565b73ffffffffffffffffffffffffffffffffffffffff1614611f09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0090614a07565b60405180910390fd5b60005b825181101561209657606460106000858481518110611f2e57611f2d615029565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550818181518110611f8757611f86615029565b5b602002602001015160136000858481518110611fa657611fa5615029565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209080519060200190611ffb929190613775565b5060005b82828151811061201257612011615029565b5b6020026020010151518110156120825760016012600085858151811061203b5761203a615029565b5b6020026020010151848151811061205557612054615029565b5b6020026020010151815260200190815260200160002081905550808061207a90614ef3565b915050611fff565b50808061208e90614ef3565b915050611f0c565b505050565b60006120a682611161565b9050919050565b600c5481565b60106020528060005260406000206000915090505481565b6120d3612408565b73ffffffffffffffffffffffffffffffffffffffff166120f1611797565b73ffffffffffffffffffffffffffffffffffffffff1614612147576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213e90614a07565b60405180910390fd5b80600c8190555050565b606061215b611198565b60405160200161216b9190614646565b604051602081830303815290604052905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612241612408565b73ffffffffffffffffffffffffffffffffffffffff1661225f611797565b73ffffffffffffffffffffffffffffffffffffffff16146122b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ac90614a07565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231c90614807565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b5481565b6000612401826002612d7f90919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661248383611161565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6060600e54341015612510576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250790614b07565b60405180910390fd5b670de0b6b3a764000034111561255b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612552906147c7565b60405180910390fd5b6000600e543461256b9190614d63565b90506001600b5461257c9190614d0d565b81600c5461258a9190614d0d565b11156125cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c290614927565b60405180910390fd5b60008167ffffffffffffffff8111156125e7576125e6615058565b5b6040519080825280602002602001820160405280156126155781602001602082028036833780820191505090505b50905060005b828110156126ce575b600060126000600c54815260200190815260200160002054118061264f575061264e600c546123eb565b5b15612673576001600c60008282546126679190614d0d565b92505081905550612624565b61267f33600c54612a96565b600c5482828151811061269557612694615029565b5b6020026020010181815250506001600c60008282546126b49190614d0d565b9250508190555080806126c690614ef3565b91505061261b565b507f3e495c00fcaf5207a35f686700bf9c9de9b4cbd94fa89b63e82013577c9de8933334836040516127029392919061470a565b60405180910390a1809250505090565b600061272082600001612d99565b9050919050565b6000612732826123eb565b612771576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276890614907565b60405180910390fd5b600061277c83611161565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806127eb57508373ffffffffffffffffffffffffffffffffffffffff166127d384610c94565b73ffffffffffffffffffffffffffffffffffffffff16145b806127fc57506127fb818561217f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661282582611161565b73ffffffffffffffffffffffffffffffffffffffff161461287b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287290614a27565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e290614867565b60405180910390fd5b6128f6838383612daa565b612901600082612410565b61295281600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612daf90919063ffffffff16565b506129a481600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612dc990919063ffffffff16565b506129bb81836002612de39092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612a2b8360000183612e18565b60001c905092915050565b600080600080612a498660000186612e8c565b915091508160001c8160001c9350935050509250929050565b6000612a75846000018460001b84612f16565b60001c90509392505050565b6000612a8f82600001612fb7565b9050919050565b612ab0828260405180602001604052806000815250612fc8565b5050565b8060089080519060200190612aca9291906137c2565b5050565b80471015612b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b08906148c7565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612b3790614673565b60006040518083038185875af1925050503d8060008114612b74576040519150601f19603f3d011682016040523d82523d6000602084013e612b79565b606091505b5050905080612bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb4906148a7565b60405180910390fd5b505050565b612bcd848484612805565b612bd984848484613023565b612c18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0f906147e7565b60405180910390fd5b50505050565b60606000821415612c66576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d7a565b600082905060005b60008214612c98578080612c8190614ef3565b915050600a82612c919190614d63565b9150612c6e565b60008167ffffffffffffffff811115612cb457612cb3615058565b5b6040519080825280601f01601f191660200182016040528015612ce65781602001600182028036833780820191505090505b5090505b60008514612d7357600182612cff9190614d94565b9150600a85612d0e9190614f3c565b6030612d1a9190614d0d565b60f81b818381518110612d3057612d2f615029565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d6c9190614d63565b9450612cea565b8093505050505b919050565b6000612d91836000018360001b613187565b905092915050565b600081600001805490509050919050565b505050565b6000612dc1836000018360001b6131aa565b905092915050565b6000612ddb836000018360001b6132c2565b905092915050565b6000612e0f846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b613332565b90509392505050565b600081836000018054905011612e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5a906147a7565b60405180910390fd5b826000018281548110612e7957612e78615029565b5b9060005260206000200154905092915050565b60008082846000018054905011612ed8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ecf906149a7565b60405180910390fd5b6000846000018481548110612ef057612eef615029565b5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6f9190614785565b60405180910390fd5b5084600001600182612f8a9190614d94565b81548110612f9b57612f9a615029565b5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b612fd2838361341e565b612fdf6000848484613023565b61301e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613015906147e7565b60405180910390fd5b505050565b60006130448473ffffffffffffffffffffffffffffffffffffffff166135ac565b613051576001905061317f565b600061311863150b7a0260e01b613066612408565b88878760405160240161307c94939291906146be565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001615856603291398773ffffffffffffffffffffffffffffffffffffffff166135bf9092919063ffffffff16565b90506000818060200190518101906131309190613ec6565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b600080836001016000848152602001908152602001600020549050600081146132b65760006001826131dc9190614d94565b90506000600186600001805490506131f49190614d94565b9050600086600001828154811061320e5761320d615029565b5b906000526020600020015490508087600001848154811061323257613231615029565b5b906000526020600020018190555060018361324d9190614d0d565b876001016000838152602001908152602001600020819055508660000180548061327a57613279614ffa565b5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506132bc565b60009150505b92915050565b60006132ce83836135d7565b61332757826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905061332c565b600090505b92915050565b60008084600101600085815260200190815260200160002054905060008114156133d957846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050613417565b82856000016001836133eb9190614d94565b815481106133fc576133fb615029565b5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561348e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613485906149c7565b60405180910390fd5b613497816123eb565b156134d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134ce90614827565b60405180910390fd5b6134e360008383612daa565b61353481600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612dc990919063ffffffff16565b5061354b81836002612de39092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60606135ce84846000856135fa565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b60608247101561363f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613636906148e7565b60405180910390fd5b613648856135ac565b613687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161367e90614ac7565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516136b09190614600565b60006040518083038185875af1925050503d80600081146136ed576040519150601f19603f3d011682016040523d82523d6000602084013e6136f2565b606091505b509150915061370282828661370e565b92505050949350505050565b6060831561371e5782905061376e565b6000835111156137315782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137659190614785565b60405180910390fd5b9392505050565b8280548282559060005260206000209081019282156137b1579160200282015b828111156137b0578251825591602001919060010190613795565b5b5090506137be9190613848565b5090565b8280546137ce90614e90565b90600052602060002090601f0160209004810192826137f05760008555613837565b82601f1061380957805160ff1916838001178555613837565b82800160010185558215613837579182015b8281111561383657825182559160200191906001019061381b565b5b5090506138449190613848565b5090565b5b80821115613861576000816000905550600101613849565b5090565b600061387861387384614b67565b614b42565b9050808382526020820190508285602086028201111561389b5761389a61508c565b5b60005b858110156138cb57816138b18882613a57565b84526020840193506020830192505060018101905061389e565b5050509392505050565b60006138e86138e384614b93565b614b42565b9050808382526020820190508285602086028201111561390b5761390a61508c565b5b60005b8581101561395957813567ffffffffffffffff81111561393157613930615087565b5b80860161393e8982613add565b8552602085019450602084019350505060018101905061390e565b5050509392505050565b600061397661397184614bbf565b614b42565b905080838252602082019050828560208602820111156139995761399861508c565b5b60005b858110156139c957816139af8882613ba6565b84526020840193506020830192505060018101905061399c565b5050509392505050565b60006139e66139e184614beb565b614b42565b905082815260208101848484011115613a0257613a01615091565b5b613a0d848285614e4e565b509392505050565b6000613a28613a2384614c1c565b614b42565b905082815260208101848484011115613a4457613a43615091565b5b613a4f848285614e4e565b509392505050565b600081359050613a66816157e2565b92915050565b600081359050613a7b816157f9565b92915050565b600082601f830112613a9657613a95615087565b5b8135613aa6848260208601613865565b91505092915050565b600082601f830112613ac457613ac3615087565b5b8135613ad48482602086016138d5565b91505092915050565b600082601f830112613af257613af1615087565b5b8135613b02848260208601613963565b91505092915050565b600081359050613b1a81615810565b92915050565b600081359050613b2f81615827565b92915050565b600081519050613b4481615827565b92915050565b600082601f830112613b5f57613b5e615087565b5b8135613b6f8482602086016139d3565b91505092915050565b600082601f830112613b8d57613b8c615087565b5b8135613b9d848260208601613a15565b91505092915050565b600081359050613bb58161583e565b92915050565b600060208284031215613bd157613bd061509b565b5b6000613bdf84828501613a57565b91505092915050565b600060208284031215613bfe57613bfd61509b565b5b6000613c0c84828501613a6c565b91505092915050565b60008060408385031215613c2c57613c2b61509b565b5b6000613c3a85828601613a57565b9250506020613c4b85828601613a57565b9150509250929050565b600080600060608486031215613c6e57613c6d61509b565b5b6000613c7c86828701613a57565b9350506020613c8d86828701613a57565b9250506040613c9e86828701613ba6565b9150509250925092565b60008060008060808587031215613cc257613cc161509b565b5b6000613cd087828801613a57565b9450506020613ce187828801613a57565b9350506040613cf287828801613ba6565b925050606085013567ffffffffffffffff811115613d1357613d12615096565b5b613d1f87828801613b4a565b91505092959194509250565b60008060408385031215613d4257613d4161509b565b5b6000613d5085828601613a57565b9250506020613d6185828601613b0b565b9150509250929050565b60008060408385031215613d8257613d8161509b565b5b6000613d9085828601613a57565b9250506020613da185828601613ba6565b9150509250929050565b60008060408385031215613dc257613dc161509b565b5b600083013567ffffffffffffffff811115613de057613ddf615096565b5b613dec85828601613a81565b925050602083013567ffffffffffffffff811115613e0d57613e0c615096565b5b613e1985828601613aaf565b9150509250929050565b600060208284031215613e3957613e3861509b565b5b600082013567ffffffffffffffff811115613e5757613e56615096565b5b613e6384828501613add565b91505092915050565b600060208284031215613e8257613e8161509b565b5b6000613e9084828501613b0b565b91505092915050565b600060208284031215613eaf57613eae61509b565b5b6000613ebd84828501613b20565b91505092915050565b600060208284031215613edc57613edb61509b565b5b6000613eea84828501613b35565b91505092915050565b600060208284031215613f0957613f0861509b565b5b600082013567ffffffffffffffff811115613f2757613f26615096565b5b613f3384828501613b78565b91505092915050565b600060208284031215613f5257613f5161509b565b5b6000613f6084828501613ba6565b91505092915050565b60008060408385031215613f8057613f7f61509b565b5b6000613f8e85828601613ba6565b9250506020613f9f85828601613ba6565b9150509250929050565b6000613fb58383613fe8565b60208301905092915050565b6000613fcd83836145e2565b60208301905092915050565b613fe281614dda565b82525050565b613ff181614dc8565b82525050565b61400081614dc8565b82525050565b600061401182614c6d565b61401b8185614cb3565b935061402683614c4d565b8060005b8381101561405757815161403e8882613fa9565b975061404983614c99565b92505060018101905061402a565b5085935050505092915050565b600061406f82614c78565b6140798185614cc4565b935061408483614c5d565b8060005b838110156140b557815161409c8882613fc1565b97506140a783614ca6565b925050600181019050614088565b5085935050505092915050565b6140cb81614dec565b82525050565b60006140dc82614c83565b6140e68185614cd5565b93506140f6818560208601614e5d565b6140ff816150a0565b840191505092915050565b600061411582614c83565b61411f8185614ce6565b935061412f818560208601614e5d565b80840191505092915050565b600061414682614c8e565b6141508185614cf1565b9350614160818560208601614e5d565b614169816150a0565b840191505092915050565b600061417f82614c8e565b6141898185614d02565b9350614199818560208601614e5d565b80840191505092915050565b60006141b2602283614cf1565b91506141bd826150b1565b604082019050919050565b60006141d5601e83614cf1565b91506141e082615100565b602082019050919050565b60006141f8603283614cf1565b915061420382615129565b604082019050919050565b600061421b602683614cf1565b915061422682615178565b604082019050919050565b600061423e601c83614cf1565b9150614249826151c7565b602082019050919050565b6000614261601383614cf1565b915061426c826151f0565b602082019050919050565b6000614284602483614cf1565b915061428f82615219565b604082019050919050565b60006142a7601983614cf1565b91506142b282615268565b602082019050919050565b60006142ca603a83614cf1565b91506142d582615291565b604082019050919050565b60006142ed601d83614cf1565b91506142f8826152e0565b602082019050919050565b6000614310602683614cf1565b915061431b82615309565b604082019050919050565b6000614333602c83614cf1565b915061433e82615358565b604082019050919050565b6000614356602e83614cf1565b9150614361826153a7565b604082019050919050565b6000614379601183614d02565b9150614384826153f6565b601182019050919050565b600061439c601783614cf1565b91506143a78261541f565b602082019050919050565b60006143bf603883614cf1565b91506143ca82615448565b604082019050919050565b60006143e2602a83614cf1565b91506143ed82615497565b604082019050919050565b6000614405602283614cf1565b9150614410826154e6565b604082019050919050565b6000614428602083614cf1565b915061443382615535565b602082019050919050565b600061444b602c83614cf1565b91506144568261555e565b604082019050919050565b600061446e600583614d02565b9150614479826155ad565b600582019050919050565b6000614491602083614cf1565b915061449c826155d6565b602082019050919050565b60006144b4602983614cf1565b91506144bf826155ff565b604082019050919050565b60006144d7602f83614cf1565b91506144e28261564e565b604082019050919050565b60006144fa600d83614cf1565b91506145058261569d565b602082019050919050565b600061451d602183614cf1565b9150614528826156c6565b604082019050919050565b6000614540600083614ce6565b915061454b82615715565b600082019050919050565b6000614563603183614cf1565b915061456e82615718565b604082019050919050565b6000614586601d83614cf1565b915061459182615767565b602082019050919050565b60006145a9601983614cf1565b91506145b482615790565b602082019050919050565b60006145cc601383614cf1565b91506145d7826157b9565b602082019050919050565b6145eb81614e44565b82525050565b6145fa81614e44565b82525050565b600061460c828461410a565b915081905092915050565b60006146238285614174565b915061462f8284614174565b915061463a82614461565b91508190509392505050565b60006146528284614174565b915061465d8261436c565b915061466882614461565b915081905092915050565b600061467e82614533565b9150819050919050565b600060208201905061469d6000830184613ff7565b92915050565b60006020820190506146b86000830184613fd9565b92915050565b60006080820190506146d36000830187613ff7565b6146e06020830186613ff7565b6146ed60408301856145f1565b81810360608301526146ff81846140d1565b905095945050505050565b600060608201905061471f6000830186613ff7565b61472c60208301856145f1565b818103604083015261473e8184614064565b9050949350505050565b600060208201905081810360008301526147628184614006565b905092915050565b600060208201905061477f60008301846140c2565b92915050565b6000602082019050818103600083015261479f818461413b565b905092915050565b600060208201905081810360008301526147c0816141a5565b9050919050565b600060208201905081810360008301526147e0816141c8565b9050919050565b60006020820190508181036000830152614800816141eb565b9050919050565b600060208201905081810360008301526148208161420e565b9050919050565b6000602082019050818103600083015261484081614231565b9050919050565b6000602082019050818103600083015261486081614254565b9050919050565b6000602082019050818103600083015261488081614277565b9050919050565b600060208201905081810360008301526148a08161429a565b9050919050565b600060208201905081810360008301526148c0816142bd565b9050919050565b600060208201905081810360008301526148e0816142e0565b9050919050565b6000602082019050818103600083015261490081614303565b9050919050565b6000602082019050818103600083015261492081614326565b9050919050565b6000602082019050818103600083015261494081614349565b9050919050565b600060208201905081810360008301526149608161438f565b9050919050565b60006020820190508181036000830152614980816143b2565b9050919050565b600060208201905081810360008301526149a0816143d5565b9050919050565b600060208201905081810360008301526149c0816143f8565b9050919050565b600060208201905081810360008301526149e08161441b565b9050919050565b60006020820190508181036000830152614a008161443e565b9050919050565b60006020820190508181036000830152614a2081614484565b9050919050565b60006020820190508181036000830152614a40816144a7565b9050919050565b60006020820190508181036000830152614a60816144ca565b9050919050565b60006020820190508181036000830152614a80816144ed565b9050919050565b60006020820190508181036000830152614aa081614510565b9050919050565b60006020820190508181036000830152614ac081614556565b9050919050565b60006020820190508181036000830152614ae081614579565b9050919050565b60006020820190508181036000830152614b008161459c565b9050919050565b60006020820190508181036000830152614b20816145bf565b9050919050565b6000602082019050614b3c60008301846145f1565b92915050565b6000614b4c614b5d565b9050614b588282614ec2565b919050565b6000604051905090565b600067ffffffffffffffff821115614b8257614b81615058565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614bae57614bad615058565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614bda57614bd9615058565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614c0657614c05615058565b5b614c0f826150a0565b9050602081019050919050565b600067ffffffffffffffff821115614c3757614c36615058565b5b614c40826150a0565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614d1882614e44565b9150614d2383614e44565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614d5857614d57614f6d565b5b828201905092915050565b6000614d6e82614e44565b9150614d7983614e44565b925082614d8957614d88614f9c565b5b828204905092915050565b6000614d9f82614e44565b9150614daa83614e44565b925082821015614dbd57614dbc614f6d565b5b828203905092915050565b6000614dd382614e24565b9050919050565b6000614de582614e24565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614e7b578082015181840152602081019050614e60565b83811115614e8a576000848401525b50505050565b60006002820490506001821680614ea857607f821691505b60208210811415614ebc57614ebb614fcb565b5b50919050565b614ecb826150a0565b810181811067ffffffffffffffff82111715614eea57614ee9615058565b5b80604052505050565b6000614efe82614e44565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614f3157614f30614f6d565b5b600182019050919050565b6000614f4782614e44565b9150614f5283614e44565b925082614f6257614f61614f9c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f63616e6e6f742073656e6420696e206d6f7265207468616e2031206574680000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6561726c792073616c65206e6f74206f70656e00000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f20746f6b656e7320736f6c64206f7574206f7220746f6f206d616e7920746f6b60008201527f656e732072657175657374656420000000000000000000000000000000000000602082015250565b7f636f6e74726163745f6d65746164617461000000000000000000000000000000600082015250565b7f6578636565646564206e756d62657220616c6c6f776564000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f73616c65206e6f74206f70656e00000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f61646472657373206e6f74206f6e2077686974656c6973742000000000000000600082015250565b7f6e6f7420656e6f756768206574682073656e7400000000000000000000000000600082015250565b6157eb81614dc8565b81146157f657600080fd5b50565b61580281614dda565b811461580d57600080fd5b50565b61581981614dec565b811461582457600080fd5b50565b61583081614df8565b811461583b57600080fd5b50565b61584781614e44565b811461585257600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea264697066735822122035a9c82c1f20a47b58c29dc99a9ab567d248a5b6c163cfdef8a90c9591d7320564736f6c63430008070033000000000000000000000000000000000000000000000000008e1bc9bf0400000000000000000000000000008f09ac5b88f1b89395a9d6390d033861150f869500000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061027d5760003560e01c8063844947081161014f578063c4c50acf116100c1578063dcb114ec1161007a578063dcb114ec1461098c578063e8a3d485146109b5578063e985e9c5146109e0578063f2bcd02214610a1d578063f2fde38b14610a48578063fe3c465714610a715761027d565b8063c4c50acf14610844578063c87b56dd14610881578063c8aa03b8146108be578063cc33c875146108e7578063d082e38114610924578063d936547e1461094f5761027d565b8063931688cb11610113578063931688cb1461075e57806395d89b4114610787578063a0ef91df146107b2578063a22cb465146107c9578063b88d4fde146107f2578063bf113baf1461081b5761027d565b806384494708146106be5780638b42035a146106e95780638da5cb5b146106f35780638f7c8d101461071e57806391b7f5ed146107355761027d565b80633f8121a2116101f35780636352211e116101ac5780636352211e146105b05780636c0360eb146105ed57806370a0823114610618578063715018a61461065557806372756b611461066c578063841718a6146106955761027d565b80633f8121a21461048e57806342842e0e146104b75780634f6ccce7146104e0578063529be43b1461051d57806353d0023d1461055a578063575ca2c7146105855761027d565b8063095ea7b311610245578063095ea7b3146103a15780631249c58b146103ca57806318160ddd146103d457806321b8092e146103ff57806323b872dd146104285780632f745c59146104515761027d565b806301ffc9a71461028257806303a6118c146102bf57806304822058146102fc57806306fdde0314610339578063081812fc14610364575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613e99565b610a9c565b6040516102b6919061476a565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e19190613f3c565b610b03565b6040516102f39190614b27565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e9190613f69565b610b1b565b6040516103309190614748565b60405180910390f35b34801561034557600080fd5b5061034e610c02565b60405161035b9190614785565b60405180910390f35b34801561037057600080fd5b5061038b60048036038101906103869190613f3c565b610c94565b6040516103989190614688565b60405180910390f35b3480156103ad57600080fd5b506103c860048036038101906103c39190613d6b565b610d19565b005b6103d2610e31565b005b3480156103e057600080fd5b506103e9610ec8565b6040516103f69190614b27565b60405180910390f35b34801561040b57600080fd5b5061042660048036038101906104219190613be8565b610ed9565b005b34801561043457600080fd5b5061044f600480360381019061044a9190613c55565b610f99565b005b34801561045d57600080fd5b5061047860048036038101906104739190613d6b565b610ff9565b6040516104859190614b27565b60405180910390f35b34801561049a57600080fd5b506104b560048036038101906104b09190613e6c565b611054565b005b3480156104c357600080fd5b506104de60048036038101906104d99190613c55565b6110ed565b005b3480156104ec57600080fd5b5061050760048036038101906105029190613f3c565b61110d565b6040516105149190614b27565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f9190613bbb565b611130565b6040516105519190614b27565b60405180910390f35b34801561056657600080fd5b5061056f611148565b60405161057c919061476a565b60405180910390f35b34801561059157600080fd5b5061059a61115b565b6040516105a79190614b27565b60405180910390f35b3480156105bc57600080fd5b506105d760048036038101906105d29190613f3c565b611161565b6040516105e49190614688565b60405180910390f35b3480156105f957600080fd5b50610602611198565b60405161060f9190614785565b60405180910390f35b34801561062457600080fd5b5061063f600480360381019061063a9190613bbb565b61122a565b60405161064c9190614b27565b60405180910390f35b34801561066157600080fd5b5061066a6112e9565b005b34801561067857600080fd5b50610693600480360381019061068e9190613e23565b611426565b005b3480156106a157600080fd5b506106bc60048036038101906106b79190613e6c565b6114f8565b005b3480156106ca57600080fd5b506106d3611591565b6040516106e0919061476a565b60405180910390f35b6106f16115a4565b005b3480156106ff57600080fd5b50610708611797565b6040516107159190614688565b60405180910390f35b34801561072a57600080fd5b506107336117c1565b005b34801561074157600080fd5b5061075c60048036038101906107579190613f3c565b61190b565b005b34801561076a57600080fd5b5061078560048036038101906107809190613ef3565b611991565b005b34801561079357600080fd5b5061079c611a19565b6040516107a99190614785565b60405180910390f35b3480156107be57600080fd5b506107c7611aab565b005b3480156107d557600080fd5b506107f060048036038101906107eb9190613d2b565b611b55565b005b3480156107fe57600080fd5b5061081960048036038101906108149190613ca8565b611cd6565b005b34801561082757600080fd5b50610842600480360381019061083d9190613f3c565b611d38565b005b34801561085057600080fd5b5061086b60048036038101906108669190613d6b565b611dda565b6040516108789190614b27565b60405180910390f35b34801561088d57600080fd5b506108a860048036038101906108a39190613f3c565b611e0b565b6040516108b59190614785565b60405180910390f35b3480156108ca57600080fd5b506108e560048036038101906108e09190613dab565b611e8d565b005b3480156108f357600080fd5b5061090e60048036038101906109099190613f3c565b61209b565b60405161091b9190614688565b60405180910390f35b34801561093057600080fd5b506109396120ad565b6040516109469190614b27565b60405180910390f35b34801561095b57600080fd5b5061097660048036038101906109719190613bbb565b6120b3565b6040516109839190614b27565b60405180910390f35b34801561099857600080fd5b506109b360048036038101906109ae9190613f3c565b6120cb565b005b3480156109c157600080fd5b506109ca612151565b6040516109d79190614785565b60405180910390f35b3480156109ec57600080fd5b50610a076004803603810190610a029190613c15565b61217f565b604051610a14919061476a565b60405180910390f35b348015610a2957600080fd5b50610a32612213565b604051610a3f91906146a3565b60405180910390f35b348015610a5457600080fd5b50610a6f6004803603810190610a6a9190613bbb565b612239565b005b348015610a7d57600080fd5b50610a866123e5565b604051610a939190614b27565b60405180910390f35b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b60126020528060005260406000206000915090505481565b606060008383610b2b9190614d94565b67ffffffffffffffff811115610b4457610b43615058565b5b604051908082528060200260200182016040528015610b725781602001602082028036833780820191505090505b50905060008490505b83811015610bf757610b8c81611161565b828683610b999190614d94565b81518110610baa57610ba9615029565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508080610bef90614ef3565b915050610b7b565b508091505092915050565b606060068054610c1190614e90565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3d90614e90565b8015610c8a5780601f10610c5f57610100808354040283529160200191610c8a565b820191906000526020600020905b815481529060010190602001808311610c6d57829003601f168201915b5050505050905090565b6000610c9f826123eb565b610cde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd5906149e7565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d2482611161565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8c90614a87565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610db4612408565b73ffffffffffffffffffffffffffffffffffffffff161480610de35750610de281610ddd612408565b61217f565b5b610e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1990614967565b60405180910390fd5b610e2c8383612410565b505050565b600d60009054906101000a900460ff1680610e7e5750610e4f611797565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb490614a67565b60405180910390fd5b610ec56124c9565b50565b6000610ed46002612712565b905090565b610ee1612408565b73ffffffffffffffffffffffffffffffffffffffff16610eff611797565b73ffffffffffffffffffffffffffffffffffffffff1614610f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4c90614a07565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610faa610fa4612408565b82612727565b610fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe090614aa7565b60405180910390fd5b610ff4838383612805565b505050565b600061104c82600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612a1c90919063ffffffff16565b905092915050565b61105c612408565b73ffffffffffffffffffffffffffffffffffffffff1661107a611797565b73ffffffffffffffffffffffffffffffffffffffff16146110d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c790614a07565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b61110883838360405180602001604052806000815250611cd6565b505050565b600080611124836002612a3690919063ffffffff16565b50905080915050919050565b60116020528060005260406000206000915090505481565b600d60009054906101000a900460ff1681565b600e5481565b600061119182604051806060016040528060298152602001615888602991396002612a629092919063ffffffff16565b9050919050565b6060600880546111a790614e90565b80601f01602080910402602001604051908101604052809291908181526020018280546111d390614e90565b80156112205780601f106111f557610100808354040283529160200191611220565b820191906000526020600020905b81548152906001019060200180831161120357829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561129b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129290614987565b60405180910390fd5b6112e2600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612a81565b9050919050565b6112f1612408565b73ffffffffffffffffffffffffffffffffffffffff1661130f611797565b73ffffffffffffffffffffffffffffffffffffffff1614611365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135c90614a07565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61142e612408565b73ffffffffffffffffffffffffffffffffffffffff1661144c611797565b73ffffffffffffffffffffffffffffffffffffffff16146114a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149990614a07565b60405180910390fd5b60005b81518110156114f4576001601260008484815181106114c7576114c6615029565b5b602002602001015181526020019081526020016000208190555080806114ec90614ef3565b9150506114a5565b5050565b611500612408565b73ffffffffffffffffffffffffffffffffffffffff1661151e611797565b73ffffffffffffffffffffffffffffffffffffffff1614611574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156b90614a07565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b600f60009054906101000a900460ff1681565b600f60009054906101000a900460ff166115f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ea90614847565b60405180910390fd5b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166c90614ae7565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172c90614947565b60405180910390fd5b6001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117859190614d0d565b925050819055506117946124c9565b50565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183a90614ae7565b60405180910390fd5b60005b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050811015611908576118f533601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083815481106118e5576118e4615029565b5b9060005260206000200154612a96565b808061190090614ef3565b915050611846565b50565b611913612408565b73ffffffffffffffffffffffffffffffffffffffff16611931611797565b73ffffffffffffffffffffffffffffffffffffffff1614611987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197e90614a07565b60405180910390fd5b80600e8190555050565b611999612408565b73ffffffffffffffffffffffffffffffffffffffff166119b7611797565b73ffffffffffffffffffffffffffffffffffffffff1614611a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0490614a07565b60405180910390fd5b611a1681612ab4565b50565b606060078054611a2890614e90565b80601f0160208091040260200160405190810160405280929190818152602001828054611a5490614e90565b8015611aa15780601f10611a7657610100808354040283529160200191611aa1565b820191906000526020600020905b815481529060010190602001808311611a8457829003601f168201915b5050505050905090565b611ab3612408565b73ffffffffffffffffffffffffffffffffffffffff16611ad1611797565b73ffffffffffffffffffffffffffffffffffffffff1614611b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1e90614a07565b60405180910390fd5b611b53600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1647612ace565b565b611b5d612408565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc290614887565b60405180910390fd5b8060056000611bd8612408565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c85612408565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cca919061476a565b60405180910390a35050565b611ce7611ce1612408565b83612727565b611d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1d90614aa7565b60405180910390fd5b611d3284848484612bc2565b50505050565b611d40612408565b73ffffffffffffffffffffffffffffffffffffffff16611d5e611797565b73ffffffffffffffffffffffffffffffffffffffff1614611db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dab90614a07565b60405180910390fd5b60016012600083815260200190815260200160002081905550611dd73382612a96565b50565b60136020528160005260406000208181548110611df657600080fd5b90600052602060002001600091509150505481565b6060611e16826123eb565b611e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4c90614a47565b60405180910390fd5b611e5d611198565b611e6683612c1e565b604051602001611e77929190614617565b6040516020818303038152906040529050919050565b611e95612408565b73ffffffffffffffffffffffffffffffffffffffff16611eb3611797565b73ffffffffffffffffffffffffffffffffffffffff1614611f09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0090614a07565b60405180910390fd5b60005b825181101561209657606460106000858481518110611f2e57611f2d615029565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550818181518110611f8757611f86615029565b5b602002602001015160136000858481518110611fa657611fa5615029565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209080519060200190611ffb929190613775565b5060005b82828151811061201257612011615029565b5b6020026020010151518110156120825760016012600085858151811061203b5761203a615029565b5b6020026020010151848151811061205557612054615029565b5b6020026020010151815260200190815260200160002081905550808061207a90614ef3565b915050611fff565b50808061208e90614ef3565b915050611f0c565b505050565b60006120a682611161565b9050919050565b600c5481565b60106020528060005260406000206000915090505481565b6120d3612408565b73ffffffffffffffffffffffffffffffffffffffff166120f1611797565b73ffffffffffffffffffffffffffffffffffffffff1614612147576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213e90614a07565b60405180910390fd5b80600c8190555050565b606061215b611198565b60405160200161216b9190614646565b604051602081830303815290604052905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612241612408565b73ffffffffffffffffffffffffffffffffffffffff1661225f611797565b73ffffffffffffffffffffffffffffffffffffffff16146122b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ac90614a07565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231c90614807565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b5481565b6000612401826002612d7f90919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661248383611161565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6060600e54341015612510576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250790614b07565b60405180910390fd5b670de0b6b3a764000034111561255b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612552906147c7565b60405180910390fd5b6000600e543461256b9190614d63565b90506001600b5461257c9190614d0d565b81600c5461258a9190614d0d565b11156125cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c290614927565b60405180910390fd5b60008167ffffffffffffffff8111156125e7576125e6615058565b5b6040519080825280602002602001820160405280156126155781602001602082028036833780820191505090505b50905060005b828110156126ce575b600060126000600c54815260200190815260200160002054118061264f575061264e600c546123eb565b5b15612673576001600c60008282546126679190614d0d565b92505081905550612624565b61267f33600c54612a96565b600c5482828151811061269557612694615029565b5b6020026020010181815250506001600c60008282546126b49190614d0d565b9250508190555080806126c690614ef3565b91505061261b565b507f3e495c00fcaf5207a35f686700bf9c9de9b4cbd94fa89b63e82013577c9de8933334836040516127029392919061470a565b60405180910390a1809250505090565b600061272082600001612d99565b9050919050565b6000612732826123eb565b612771576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276890614907565b60405180910390fd5b600061277c83611161565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806127eb57508373ffffffffffffffffffffffffffffffffffffffff166127d384610c94565b73ffffffffffffffffffffffffffffffffffffffff16145b806127fc57506127fb818561217f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661282582611161565b73ffffffffffffffffffffffffffffffffffffffff161461287b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287290614a27565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e290614867565b60405180910390fd5b6128f6838383612daa565b612901600082612410565b61295281600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612daf90919063ffffffff16565b506129a481600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612dc990919063ffffffff16565b506129bb81836002612de39092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612a2b8360000183612e18565b60001c905092915050565b600080600080612a498660000186612e8c565b915091508160001c8160001c9350935050509250929050565b6000612a75846000018460001b84612f16565b60001c90509392505050565b6000612a8f82600001612fb7565b9050919050565b612ab0828260405180602001604052806000815250612fc8565b5050565b8060089080519060200190612aca9291906137c2565b5050565b80471015612b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b08906148c7565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612b3790614673565b60006040518083038185875af1925050503d8060008114612b74576040519150601f19603f3d011682016040523d82523d6000602084013e612b79565b606091505b5050905080612bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb4906148a7565b60405180910390fd5b505050565b612bcd848484612805565b612bd984848484613023565b612c18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0f906147e7565b60405180910390fd5b50505050565b60606000821415612c66576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d7a565b600082905060005b60008214612c98578080612c8190614ef3565b915050600a82612c919190614d63565b9150612c6e565b60008167ffffffffffffffff811115612cb457612cb3615058565b5b6040519080825280601f01601f191660200182016040528015612ce65781602001600182028036833780820191505090505b5090505b60008514612d7357600182612cff9190614d94565b9150600a85612d0e9190614f3c565b6030612d1a9190614d0d565b60f81b818381518110612d3057612d2f615029565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d6c9190614d63565b9450612cea565b8093505050505b919050565b6000612d91836000018360001b613187565b905092915050565b600081600001805490509050919050565b505050565b6000612dc1836000018360001b6131aa565b905092915050565b6000612ddb836000018360001b6132c2565b905092915050565b6000612e0f846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b613332565b90509392505050565b600081836000018054905011612e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5a906147a7565b60405180910390fd5b826000018281548110612e7957612e78615029565b5b9060005260206000200154905092915050565b60008082846000018054905011612ed8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ecf906149a7565b60405180910390fd5b6000846000018481548110612ef057612eef615029565b5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6f9190614785565b60405180910390fd5b5084600001600182612f8a9190614d94565b81548110612f9b57612f9a615029565b5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b612fd2838361341e565b612fdf6000848484613023565b61301e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613015906147e7565b60405180910390fd5b505050565b60006130448473ffffffffffffffffffffffffffffffffffffffff166135ac565b613051576001905061317f565b600061311863150b7a0260e01b613066612408565b88878760405160240161307c94939291906146be565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001615856603291398773ffffffffffffffffffffffffffffffffffffffff166135bf9092919063ffffffff16565b90506000818060200190518101906131309190613ec6565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b600080836001016000848152602001908152602001600020549050600081146132b65760006001826131dc9190614d94565b90506000600186600001805490506131f49190614d94565b9050600086600001828154811061320e5761320d615029565b5b906000526020600020015490508087600001848154811061323257613231615029565b5b906000526020600020018190555060018361324d9190614d0d565b876001016000838152602001908152602001600020819055508660000180548061327a57613279614ffa565b5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506132bc565b60009150505b92915050565b60006132ce83836135d7565b61332757826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905061332c565b600090505b92915050565b60008084600101600085815260200190815260200160002054905060008114156133d957846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050613417565b82856000016001836133eb9190614d94565b815481106133fc576133fb615029565b5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561348e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613485906149c7565b60405180910390fd5b613497816123eb565b156134d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134ce90614827565b60405180910390fd5b6134e360008383612daa565b61353481600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612dc990919063ffffffff16565b5061354b81836002612de39092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60606135ce84846000856135fa565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b60608247101561363f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613636906148e7565b60405180910390fd5b613648856135ac565b613687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161367e90614ac7565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516136b09190614600565b60006040518083038185875af1925050503d80600081146136ed576040519150601f19603f3d011682016040523d82523d6000602084013e6136f2565b606091505b509150915061370282828661370e565b92505050949350505050565b6060831561371e5782905061376e565b6000835111156137315782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137659190614785565b60405180910390fd5b9392505050565b8280548282559060005260206000209081019282156137b1579160200282015b828111156137b0578251825591602001919060010190613795565b5b5090506137be9190613848565b5090565b8280546137ce90614e90565b90600052602060002090601f0160209004810192826137f05760008555613837565b82601f1061380957805160ff1916838001178555613837565b82800160010185558215613837579182015b8281111561383657825182559160200191906001019061381b565b5b5090506138449190613848565b5090565b5b80821115613861576000816000905550600101613849565b5090565b600061387861387384614b67565b614b42565b9050808382526020820190508285602086028201111561389b5761389a61508c565b5b60005b858110156138cb57816138b18882613a57565b84526020840193506020830192505060018101905061389e565b5050509392505050565b60006138e86138e384614b93565b614b42565b9050808382526020820190508285602086028201111561390b5761390a61508c565b5b60005b8581101561395957813567ffffffffffffffff81111561393157613930615087565b5b80860161393e8982613add565b8552602085019450602084019350505060018101905061390e565b5050509392505050565b600061397661397184614bbf565b614b42565b905080838252602082019050828560208602820111156139995761399861508c565b5b60005b858110156139c957816139af8882613ba6565b84526020840193506020830192505060018101905061399c565b5050509392505050565b60006139e66139e184614beb565b614b42565b905082815260208101848484011115613a0257613a01615091565b5b613a0d848285614e4e565b509392505050565b6000613a28613a2384614c1c565b614b42565b905082815260208101848484011115613a4457613a43615091565b5b613a4f848285614e4e565b509392505050565b600081359050613a66816157e2565b92915050565b600081359050613a7b816157f9565b92915050565b600082601f830112613a9657613a95615087565b5b8135613aa6848260208601613865565b91505092915050565b600082601f830112613ac457613ac3615087565b5b8135613ad48482602086016138d5565b91505092915050565b600082601f830112613af257613af1615087565b5b8135613b02848260208601613963565b91505092915050565b600081359050613b1a81615810565b92915050565b600081359050613b2f81615827565b92915050565b600081519050613b4481615827565b92915050565b600082601f830112613b5f57613b5e615087565b5b8135613b6f8482602086016139d3565b91505092915050565b600082601f830112613b8d57613b8c615087565b5b8135613b9d848260208601613a15565b91505092915050565b600081359050613bb58161583e565b92915050565b600060208284031215613bd157613bd061509b565b5b6000613bdf84828501613a57565b91505092915050565b600060208284031215613bfe57613bfd61509b565b5b6000613c0c84828501613a6c565b91505092915050565b60008060408385031215613c2c57613c2b61509b565b5b6000613c3a85828601613a57565b9250506020613c4b85828601613a57565b9150509250929050565b600080600060608486031215613c6e57613c6d61509b565b5b6000613c7c86828701613a57565b9350506020613c8d86828701613a57565b9250506040613c9e86828701613ba6565b9150509250925092565b60008060008060808587031215613cc257613cc161509b565b5b6000613cd087828801613a57565b9450506020613ce187828801613a57565b9350506040613cf287828801613ba6565b925050606085013567ffffffffffffffff811115613d1357613d12615096565b5b613d1f87828801613b4a565b91505092959194509250565b60008060408385031215613d4257613d4161509b565b5b6000613d5085828601613a57565b9250506020613d6185828601613b0b565b9150509250929050565b60008060408385031215613d8257613d8161509b565b5b6000613d9085828601613a57565b9250506020613da185828601613ba6565b9150509250929050565b60008060408385031215613dc257613dc161509b565b5b600083013567ffffffffffffffff811115613de057613ddf615096565b5b613dec85828601613a81565b925050602083013567ffffffffffffffff811115613e0d57613e0c615096565b5b613e1985828601613aaf565b9150509250929050565b600060208284031215613e3957613e3861509b565b5b600082013567ffffffffffffffff811115613e5757613e56615096565b5b613e6384828501613add565b91505092915050565b600060208284031215613e8257613e8161509b565b5b6000613e9084828501613b0b565b91505092915050565b600060208284031215613eaf57613eae61509b565b5b6000613ebd84828501613b20565b91505092915050565b600060208284031215613edc57613edb61509b565b5b6000613eea84828501613b35565b91505092915050565b600060208284031215613f0957613f0861509b565b5b600082013567ffffffffffffffff811115613f2757613f26615096565b5b613f3384828501613b78565b91505092915050565b600060208284031215613f5257613f5161509b565b5b6000613f6084828501613ba6565b91505092915050565b60008060408385031215613f8057613f7f61509b565b5b6000613f8e85828601613ba6565b9250506020613f9f85828601613ba6565b9150509250929050565b6000613fb58383613fe8565b60208301905092915050565b6000613fcd83836145e2565b60208301905092915050565b613fe281614dda565b82525050565b613ff181614dc8565b82525050565b61400081614dc8565b82525050565b600061401182614c6d565b61401b8185614cb3565b935061402683614c4d565b8060005b8381101561405757815161403e8882613fa9565b975061404983614c99565b92505060018101905061402a565b5085935050505092915050565b600061406f82614c78565b6140798185614cc4565b935061408483614c5d565b8060005b838110156140b557815161409c8882613fc1565b97506140a783614ca6565b925050600181019050614088565b5085935050505092915050565b6140cb81614dec565b82525050565b60006140dc82614c83565b6140e68185614cd5565b93506140f6818560208601614e5d565b6140ff816150a0565b840191505092915050565b600061411582614c83565b61411f8185614ce6565b935061412f818560208601614e5d565b80840191505092915050565b600061414682614c8e565b6141508185614cf1565b9350614160818560208601614e5d565b614169816150a0565b840191505092915050565b600061417f82614c8e565b6141898185614d02565b9350614199818560208601614e5d565b80840191505092915050565b60006141b2602283614cf1565b91506141bd826150b1565b604082019050919050565b60006141d5601e83614cf1565b91506141e082615100565b602082019050919050565b60006141f8603283614cf1565b915061420382615129565b604082019050919050565b600061421b602683614cf1565b915061422682615178565b604082019050919050565b600061423e601c83614cf1565b9150614249826151c7565b602082019050919050565b6000614261601383614cf1565b915061426c826151f0565b602082019050919050565b6000614284602483614cf1565b915061428f82615219565b604082019050919050565b60006142a7601983614cf1565b91506142b282615268565b602082019050919050565b60006142ca603a83614cf1565b91506142d582615291565b604082019050919050565b60006142ed601d83614cf1565b91506142f8826152e0565b602082019050919050565b6000614310602683614cf1565b915061431b82615309565b604082019050919050565b6000614333602c83614cf1565b915061433e82615358565b604082019050919050565b6000614356602e83614cf1565b9150614361826153a7565b604082019050919050565b6000614379601183614d02565b9150614384826153f6565b601182019050919050565b600061439c601783614cf1565b91506143a78261541f565b602082019050919050565b60006143bf603883614cf1565b91506143ca82615448565b604082019050919050565b60006143e2602a83614cf1565b91506143ed82615497565b604082019050919050565b6000614405602283614cf1565b9150614410826154e6565b604082019050919050565b6000614428602083614cf1565b915061443382615535565b602082019050919050565b600061444b602c83614cf1565b91506144568261555e565b604082019050919050565b600061446e600583614d02565b9150614479826155ad565b600582019050919050565b6000614491602083614cf1565b915061449c826155d6565b602082019050919050565b60006144b4602983614cf1565b91506144bf826155ff565b604082019050919050565b60006144d7602f83614cf1565b91506144e28261564e565b604082019050919050565b60006144fa600d83614cf1565b91506145058261569d565b602082019050919050565b600061451d602183614cf1565b9150614528826156c6565b604082019050919050565b6000614540600083614ce6565b915061454b82615715565b600082019050919050565b6000614563603183614cf1565b915061456e82615718565b604082019050919050565b6000614586601d83614cf1565b915061459182615767565b602082019050919050565b60006145a9601983614cf1565b91506145b482615790565b602082019050919050565b60006145cc601383614cf1565b91506145d7826157b9565b602082019050919050565b6145eb81614e44565b82525050565b6145fa81614e44565b82525050565b600061460c828461410a565b915081905092915050565b60006146238285614174565b915061462f8284614174565b915061463a82614461565b91508190509392505050565b60006146528284614174565b915061465d8261436c565b915061466882614461565b915081905092915050565b600061467e82614533565b9150819050919050565b600060208201905061469d6000830184613ff7565b92915050565b60006020820190506146b86000830184613fd9565b92915050565b60006080820190506146d36000830187613ff7565b6146e06020830186613ff7565b6146ed60408301856145f1565b81810360608301526146ff81846140d1565b905095945050505050565b600060608201905061471f6000830186613ff7565b61472c60208301856145f1565b818103604083015261473e8184614064565b9050949350505050565b600060208201905081810360008301526147628184614006565b905092915050565b600060208201905061477f60008301846140c2565b92915050565b6000602082019050818103600083015261479f818461413b565b905092915050565b600060208201905081810360008301526147c0816141a5565b9050919050565b600060208201905081810360008301526147e0816141c8565b9050919050565b60006020820190508181036000830152614800816141eb565b9050919050565b600060208201905081810360008301526148208161420e565b9050919050565b6000602082019050818103600083015261484081614231565b9050919050565b6000602082019050818103600083015261486081614254565b9050919050565b6000602082019050818103600083015261488081614277565b9050919050565b600060208201905081810360008301526148a08161429a565b9050919050565b600060208201905081810360008301526148c0816142bd565b9050919050565b600060208201905081810360008301526148e0816142e0565b9050919050565b6000602082019050818103600083015261490081614303565b9050919050565b6000602082019050818103600083015261492081614326565b9050919050565b6000602082019050818103600083015261494081614349565b9050919050565b600060208201905081810360008301526149608161438f565b9050919050565b60006020820190508181036000830152614980816143b2565b9050919050565b600060208201905081810360008301526149a0816143d5565b9050919050565b600060208201905081810360008301526149c0816143f8565b9050919050565b600060208201905081810360008301526149e08161441b565b9050919050565b60006020820190508181036000830152614a008161443e565b9050919050565b60006020820190508181036000830152614a2081614484565b9050919050565b60006020820190508181036000830152614a40816144a7565b9050919050565b60006020820190508181036000830152614a60816144ca565b9050919050565b60006020820190508181036000830152614a80816144ed565b9050919050565b60006020820190508181036000830152614aa081614510565b9050919050565b60006020820190508181036000830152614ac081614556565b9050919050565b60006020820190508181036000830152614ae081614579565b9050919050565b60006020820190508181036000830152614b008161459c565b9050919050565b60006020820190508181036000830152614b20816145bf565b9050919050565b6000602082019050614b3c60008301846145f1565b92915050565b6000614b4c614b5d565b9050614b588282614ec2565b919050565b6000604051905090565b600067ffffffffffffffff821115614b8257614b81615058565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614bae57614bad615058565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614bda57614bd9615058565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614c0657614c05615058565b5b614c0f826150a0565b9050602081019050919050565b600067ffffffffffffffff821115614c3757614c36615058565b5b614c40826150a0565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614d1882614e44565b9150614d2383614e44565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614d5857614d57614f6d565b5b828201905092915050565b6000614d6e82614e44565b9150614d7983614e44565b925082614d8957614d88614f9c565b5b828204905092915050565b6000614d9f82614e44565b9150614daa83614e44565b925082821015614dbd57614dbc614f6d565b5b828203905092915050565b6000614dd382614e24565b9050919050565b6000614de582614e24565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614e7b578082015181840152602081019050614e60565b83811115614e8a576000848401525b50505050565b60006002820490506001821680614ea857607f821691505b60208210811415614ebc57614ebb614fcb565b5b50919050565b614ecb826150a0565b810181811067ffffffffffffffff82111715614eea57614ee9615058565b5b80604052505050565b6000614efe82614e44565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614f3157614f30614f6d565b5b600182019050919050565b6000614f4782614e44565b9150614f5283614e44565b925082614f6257614f61614f9c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f63616e6e6f742073656e6420696e206d6f7265207468616e2031206574680000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6561726c792073616c65206e6f74206f70656e00000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f20746f6b656e7320736f6c64206f7574206f7220746f6f206d616e7920746f6b60008201527f656e732072657175657374656420000000000000000000000000000000000000602082015250565b7f636f6e74726163745f6d65746164617461000000000000000000000000000000600082015250565b7f6578636565646564206e756d62657220616c6c6f776564000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f73616c65206e6f74206f70656e00000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f61646472657373206e6f74206f6e2077686974656c6973742000000000000000600082015250565b7f6e6f7420656e6f756768206574682073656e7400000000000000000000000000600082015250565b6157eb81614dc8565b81146157f657600080fd5b50565b61580281614dda565b811461580d57600080fd5b50565b61581981614dec565b811461582457600080fd5b50565b61583081614df8565b811461583b57600080fd5b50565b61584781614e44565b811461585257600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea264697066735822122035a9c82c1f20a47b58c29dc99a9ab567d248a5b6c163cfdef8a90c9591d7320564736f6c63430008070033

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

000000000000000000000000000000000000000000000000008e1bc9bf0400000000000000000000000000008f09ac5b88f1b89395a9d6390d033861150f869500000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : givenPricePerPiece (uint256): 40000000000000000
Arg [1] : givenWithdrawalAddress (address): 0x8F09aC5b88F1B89395a9d6390d033861150f8695
Arg [2] : givenTokenURIBase (string):

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000008e1bc9bf040000
Arg [1] : 0000000000000000000000008f09ac5b88f1b89395a9d6390d033861150f8695
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

61421:5328:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30957:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61884:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64515:277;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48013:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50732:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50262:404;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65465:140;;;:::i;:::-;;49740:211;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64097:148;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51622:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49502:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63729:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51998:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50028:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61828:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61653:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61690:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47769:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49320:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47486:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21226:148;;;;;;;;;;;;;:::i;:::-;;63479:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63837:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61742:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65121:336;;;:::i;:::-;;20575:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63176:257;;;;;;;;;;;;;:::i;:::-;;63969:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62546:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48182:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64253:118;;;;;;;;;;;;;:::i;:::-;;51025:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52220:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64968:141;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61941:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48357:515;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62675:493;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64397:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61596:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61774:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64841:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48931:150;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51391:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61476:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21529:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61557:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30957:150;31042:4;31066:20;:33;31087:11;31066:33;;;;;;;;;;;;;;;;;;;;;;;;;;;31059:40;;30957:150;;;:::o;61884:50::-;;;;;;;;;;;;;;;;;:::o;64515:277::-;64583:16;64611:19;64653:5;64647:3;:11;;;;:::i;:::-;64633:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64611:48;;64675:9;64687:5;64675:17;;64670:95;64698:3;64694:1;:7;64670:95;;;64743:10;64751:1;64743:7;:10::i;:::-;64727:2;64734:5;64730:1;:9;;;;:::i;:::-;64727:13;;;;;;;;:::i;:::-;;;;;;;:26;;;;;;;;;;;64703:3;;;;;:::i;:::-;;;;64670:95;;;;64782:2;64775:9;;;64515:277;;;;:::o;48013:100::-;48067:13;48100:5;48093:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48013:100;:::o;50732:221::-;50808:7;50836:16;50844:7;50836;:16::i;:::-;50828:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;50921:15;:24;50937:7;50921:24;;;;;;;;;;;;;;;;;;;;;50914:31;;50732:221;;;:::o;50262:404::-;50343:13;50359:23;50374:7;50359:14;:23::i;:::-;50343:39;;50407:5;50401:11;;:2;:11;;;;50393:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;50487:5;50471:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;50496:44;50520:5;50527:12;:10;:12::i;:::-;50496:23;:44::i;:::-;50471:69;50463:161;;;;;;;;;;;;:::i;:::-;;;;;;;;;50637:21;50646:2;50650:7;50637:8;:21::i;:::-;50332:334;50262:404;;:::o;65465:140::-;65515:18;;;;;;;;;;;:43;;;;65551:7;:5;:7::i;:::-;65537:21;;:10;:21;;;65515:43;65507:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;65587:10;:8;:10::i;:::-;;65465:140::o;49740:211::-;49801:7;49922:21;:12;:19;:21::i;:::-;49915:28;;49740:211;:::o;64097:148::-;20806:12;:10;:12::i;:::-;20795:23;;:7;:5;:7::i;:::-;:23;;;20787:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;64215:22:::1;64195:17;;:42;;;;;;;;;;;;;;;;;;64097:148:::0;:::o;51622:305::-;51783:41;51802:12;:10;:12::i;:::-;51816:7;51783:18;:41::i;:::-;51775:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;51891:28;51901:4;51907:2;51911:7;51891:9;:28::i;:::-;51622:305;;;:::o;49502:162::-;49599:7;49626:30;49650:5;49626:13;:20;49640:5;49626:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;49619:37;;49502:162;;;;:::o;63729:100::-;20806:12;:10;:12::i;:::-;20795:23;;:7;:5;:7::i;:::-;:23;;;20787:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63813:8:::1;63797:13;;:24;;;;;;;;;;;;;;;;;;63729:100:::0;:::o;51998:151::-;52102:39;52119:4;52125:2;52129:7;52102:39;;;;;;;;;;;;:16;:39::i;:::-;51998:151;;;:::o;50028:172::-;50103:7;50124:15;50145:22;50161:5;50145:12;:15;;:22;;;;:::i;:::-;50123:44;;;50185:7;50178:14;;;50028:172;;;:::o;61828:49::-;;;;;;;;;;;;;;;;;:::o;61653:30::-;;;;;;;;;;;;;:::o;61690:28::-;;;;:::o;47769:177::-;47841:7;47868:70;47885:7;47868:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;47861:77;;47769:177;;;:::o;49320:97::-;49368:13;49401:8;49394:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49320:97;:::o;47486:221::-;47558:7;47603:1;47586:19;;:5;:19;;;;47578:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;47670:29;:13;:20;47684:5;47670:20;;;;;;;;;;;;;;;:27;:29::i;:::-;47663:36;;47486:221;;;:::o;21226:148::-;20806:12;:10;:12::i;:::-;20795:23;;:7;:5;:7::i;:::-;:23;;;20787:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21333:1:::1;21296:40;;21317:6;;;;;;;;;;;21296:40;;;;;;;;;;;;21364:1;21347:6;;:19;;;;;;;;;;;;;;;;;;21226:148::o:0;63479:224::-;20806:12;:10;:12::i;:::-;20795:23;;:7;:5;:7::i;:::-;:23;;;20787:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63575:9:::1;63571:125;63594:19;:26;63590:1;:30;63571:125;;;63683:1;63642:14;:38;63657:19;63677:1;63657:22;;;;;;;;:::i;:::-;;;;;;;;63642:38;;;;;;;;;;;:42;;;;63622:4;;;;;:::i;:::-;;;;63571:125;;;;63479:224:::0;:::o;63837:103::-;20806:12;:10;:12::i;:::-;20795:23;;:7;:5;:7::i;:::-;:23;;;20787:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63924:8:::1;63903:18;;:29;;;;;;;;;;;;;;;;;;63837:103:::0;:::o;61742:25::-;;;;;;;;;;;;;:::o;65121:336::-;65176:13;;;;;;;;;;;65168:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;65258:1;65232:11;:23;65244:10;65232:23;;;;;;;;;;;;;;;;:27;65224:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;65334:13;:25;65348:10;65334:25;;;;;;;;;;;;;;;;65308:11;:23;65320:10;65308:23;;;;;;;;;;;;;;;;:51;65300:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;65427:1;65398:13;:25;65412:10;65398:25;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;65439:10;:8;:10::i;:::-;;65121:336::o;20575:87::-;20621:7;20648:6;;;;;;;;;;;20641:13;;20575:87;:::o;63176:257::-;63249:1;63223:11;:23;63235:10;63223:23;;;;;;;;;;;;;;;;:27;63215:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;63295:9;63291:135;63314:10;:22;63325:10;63314:22;;;;;;;;;;;;;;;:29;;;;63310:1;:33;63291:135;;;63365:49;63376:10;63388;:22;63399:10;63388:22;;;;;;;;;;;;;;;63411:1;63388:25;;;;;;;;:::i;:::-;;;;;;;;;;63365:9;:49::i;:::-;63345:4;;;;;:::i;:::-;;;;63291:135;;;;63176:257::o;63969:102::-;20806:12;:10;:12::i;:::-;20795:23;;:7;:5;:7::i;:::-;:23;;;20787:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;64053:10:::1;64037:13;:26;;;;63969:102:::0;:::o;62546:121::-;20806:12;:10;:12::i;:::-;20795:23;;:7;:5;:7::i;:::-;:23;;;20787:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62629:30:::1;62641:17;62629:11;:30::i;:::-;62546:121:::0;:::o;48182:104::-;48238:13;48271:7;48264:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48182:104;:::o;64253:118::-;20806:12;:10;:12::i;:::-;20795:23;;:7;:5;:7::i;:::-;:23;;;20787:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;64304:59:::1;64322:17;;;;;;;;;;;64341:21;64304:17;:59::i;:::-;64253:118::o:0;51025:295::-;51140:12;:10;:12::i;:::-;51128:24;;:8;:24;;;;51120:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;51240:8;51195:18;:32;51214:12;:10;:12::i;:::-;51195:32;;;;;;;;;;;;;;;:42;51228:8;51195:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;51293:8;51264:48;;51279:12;:10;:12::i;:::-;51264:48;;;51303:8;51264:48;;;;;;:::i;:::-;;;;;;;;51025:295;;:::o;52220:285::-;52352:41;52371:12;:10;:12::i;:::-;52385:7;52352:18;:41::i;:::-;52344:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;52458:39;52472:4;52478:2;52482:7;52491:5;52458:13;:39::i;:::-;52220:285;;;;:::o;64968:141::-;20806:12;:10;:12::i;:::-;20795:23;;:7;:5;:7::i;:::-;:23;;;20787:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;65059:1:::1;65033:14;:23;65048:7;65033:23;;;;;;;;;;;:27;;;;65071:30;65081:10;65093:7;65071:9;:30::i;:::-;64968:141:::0;:::o;61941:48::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48357:515::-;48430:13;48464:16;48472:7;48464;:16::i;:::-;48456:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;48796:9;:7;:9::i;:::-;48806:18;:7;:16;:18::i;:::-;48779:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48765:69;;48357:515;;;:::o;62675:493::-;20806:12;:10;:12::i;:::-;20795:23;;:7;:5;:7::i;:::-;:23;;;20787:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62797:9:::1;62792:369;62816:5;:12;62812:1;:16;62792:369;;;62945:3;62921:11;:21;62933:5;62939:1;62933:8;;;;;;;;:::i;:::-;;;;;;;;62921:21;;;;;;;;;;;;;;;:27;;;;62986:15;63002:1;62986:18;;;;;;;;:::i;:::-;;;;;;;;62963:10;:20;62974:5;62980:1;62974:8;;;;;;;;:::i;:::-;;;;;;;;62963:20;;;;;;;;;;;;;;;:41;;;;;;;;;;;;:::i;:::-;;63024:9;63019:131;63042:15;63058:1;63042:18;;;;;;;;:::i;:::-;;;;;;;;:25;63039:1;:28;63019:131;;;63133:1;63093:14;:37;63108:15;63124:1;63108:18;;;;;;;;:::i;:::-;;;;;;;;63127:1;63108:21;;;;;;;;:::i;:::-;;;;;;;;63093:37;;;;;;;;;;;:41;;;;63069:4;;;;;:::i;:::-;;;;63019:131;;;;62830:3;;;;;:::i;:::-;;;;62792:369;;;;62675:493:::0;;:::o;64397:110::-;64454:7;64482:16;64490:7;64482;:16::i;:::-;64474:25;;64397:110;;;:::o;61596:27::-;;;;:::o;61774:47::-;;;;;;;;;;;;;;;;;:::o;64841:119::-;20806:12;:10;:12::i;:::-;20795:23;;:7;:5;:7::i;:::-;:23;;;20787:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;64935:17:::1;64920:12;:32;;;;64841:119:::0;:::o;48931:150::-;48975:13;49032:9;:7;:9::i;:::-;49015:57;;;;;;;;:::i;:::-;;;;;;;;;;;;;49001:72;;48931:150;:::o;51391:164::-;51488:4;51512:18;:25;51531:5;51512:25;;;;;;;;;;;;;;;:35;51538:8;51512:35;;;;;;;;;;;;;;;;;;;;;;;;;51505:42;;51391:164;;;;:::o;61476:40::-;;;;;;;;;;;;;:::o;21529:244::-;20806:12;:10;:12::i;:::-;20795:23;;:7;:5;:7::i;:::-;:23;;;20787:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21638:1:::1;21618:22;;:8;:22;;;;21610:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21728:8;21699:38;;21720:6;;;;;;;;;;;21699:38;;;;;;;;;;;;21757:8;21748:6;;:17;;;;;;;;;;;;;;;;;;21529:244:::0;:::o;61557:32::-;;;;:::o;53972:127::-;54037:4;54061:30;54083:7;54061:12;:21;;:30;;;;:::i;:::-;54054:37;;53972:127;;;:::o;19200:98::-;19253:7;19280:10;19273:17;;19200:98;:::o;59900:183::-;59993:2;59966:15;:24;59982:7;59966:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;60049:7;60045:2;60011:46;;60020:23;60035:7;60020:14;:23::i;:::-;60011:46;;;;;;;;;;;;59900:183;;:::o;65613:1133::-;65650:17;65701:13;;65688:9;:26;;65680:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;65770:19;65757:9;:32;;65749:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;65866:14;65895:13;;65883:9;:25;;;;:::i;:::-;65866:42;;66075:1;66055:17;;:21;;;;:::i;:::-;66045:6;66030:12;;:21;;;;:::i;:::-;:46;;66022:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;66138:30;66185:6;66171:21;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66138:54;;66209:9;66205:441;66228:6;66224:1;:10;66205:441;;;66348:116;66385:1;66354:14;:28;66369:12;;66354:28;;;;;;;;;;;;:32;:57;;;;66390:21;66398:12;;66390:7;:21::i;:::-;66354:57;66348:116;;;66447:1;66431:12;;:17;;;;;;;:::i;:::-;;;;;;;;66348:116;;;66480:35;66490:10;66502:12;;66480:9;:35::i;:::-;66590:12;;66572;66585:1;66572:15;;;;;;;;:::i;:::-;;;;;;;:30;;;;;66633:1;66617:12;;:17;;;;;;;:::i;:::-;;;;;;;;66236:4;;;;;:::i;:::-;;;;66205:441;;;;66663:45;66672:10;66684:9;66695:12;66663:45;;;;;;;;:::i;:::-;;;;;;;;66726:12;66719:19;;;;65613:1133;:::o;39780:123::-;39849:7;39876:19;39884:3;:10;;39876:7;:19::i;:::-;39869:26;;39780:123;;;:::o;54266:355::-;54359:4;54384:16;54392:7;54384;:16::i;:::-;54376:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;54460:13;54476:23;54491:7;54476:14;:23::i;:::-;54460:39;;54529:5;54518:16;;:7;:16;;;:51;;;;54562:7;54538:31;;:20;54550:7;54538:11;:20::i;:::-;:31;;;54518:51;:94;;;;54573:39;54597:5;54604:7;54573:23;:39::i;:::-;54518:94;54510:103;;;54266:355;;;;:::o;57411:599::-;57536:4;57509:31;;:23;57524:7;57509:14;:23::i;:::-;:31;;;57501:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;57637:1;57623:16;;:2;:16;;;;57615:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;57693:39;57714:4;57720:2;57724:7;57693:20;:39::i;:::-;57797:29;57814:1;57818:7;57797:8;:29::i;:::-;57839:35;57866:7;57839:13;:19;57853:4;57839:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;57885:30;57907:7;57885:13;:17;57899:2;57885:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;57928:29;57945:7;57954:2;57928:12;:16;;:29;;;;;:::i;:::-;;57994:7;57990:2;57975:27;;57984:4;57975:27;;;;;;;;;;;;57411:599;;;:::o;10398:137::-;10469:7;10504:22;10508:3;:10;;10520:5;10504:3;:22::i;:::-;10496:31;;10489:38;;10398:137;;;;:::o;40242:236::-;40322:7;40331;40352:11;40365:13;40382:22;40386:3;:10;;40398:5;40382:3;:22::i;:::-;40351:53;;;;40431:3;40423:12;;40461:5;40453:14;;40415:55;;;;;;40242:236;;;;;:::o;41528:213::-;41635:7;41686:44;41691:3;:10;;41711:3;41703:12;;41717;41686:4;:44::i;:::-;41678:53;;41655:78;;41528:213;;;;;:::o;9941:114::-;10001:7;10028:19;10036:3;:10;;10028:7;:19::i;:::-;10021:26;;9941:114;;;:::o;54964:110::-;55040:26;55050:2;55054:7;55040:26;;;;;;;;;;;;:9;:26::i;:::-;54964:110;;:::o;58623:100::-;58707:8;58696;:19;;;;;;;;;;;;:::i;:::-;;58623:100;:::o;12668:397::-;12783:6;12758:21;:31;;12750:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;12915:12;12933:9;:14;;12956:6;12933:35;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12914:54;;;12987:7;12979:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;12739:326;12668:397;;:::o;53387:272::-;53501:28;53511:4;53517:2;53521:7;53501:9;:28::i;:::-;53548:48;53571:4;53577:2;53581:7;53590:5;53548:22;:48::i;:::-;53540:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;53387:272;;;;:::o;41999:723::-;42055:13;42285:1;42276:5;:10;42272:53;;;42303:10;;;;;;;;;;;;;;;;;;;;;42272:53;42335:12;42350:5;42335:20;;42366:14;42391:78;42406:1;42398:4;:9;42391:78;;42424:8;;;;;:::i;:::-;;;;42455:2;42447:10;;;;;:::i;:::-;;;42391:78;;;42479:19;42511:6;42501:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42479:39;;42529:154;42545:1;42536:5;:10;42529:154;;42573:1;42563:11;;;;;:::i;:::-;;;42640:2;42632:5;:10;;;;:::i;:::-;42619:2;:24;;;;:::i;:::-;42606:39;;42589:6;42596;42589:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;42669:2;42660:11;;;;;:::i;:::-;;;42529:154;;;42707:6;42693:21;;;;;41999:723;;;;:::o;39541:151::-;39625:4;39649:35;39659:3;:10;;39679:3;39671:12;;39649:9;:35::i;:::-;39642:42;;39541:151;;;;:::o;36359:110::-;36415:7;36442:3;:12;;:19;;;;36435:26;;36359:110;;;:::o;60696:93::-;;;;:::o;9486:137::-;9556:4;9580:35;9588:3;:10;;9608:5;9600:14;;9580:7;:35::i;:::-;9573:42;;9486:137;;;;:::o;9179:131::-;9246:4;9270:32;9275:3;:10;;9295:5;9287:14;;9270:4;:32::i;:::-;9263:39;;9179:131;;;;:::o;38964:185::-;39053:4;39077:64;39082:3;:10;;39102:3;39094:12;;39132:5;39116:23;;39108:32;;39077:4;:64::i;:::-;39070:71;;38964:185;;;;;:::o;5439:204::-;5506:7;5555:5;5534:3;:11;;:18;;;;:26;5526:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5617:3;:11;;5629:5;5617:18;;;;;;;;:::i;:::-;;;;;;;;;;5610:25;;5439:204;;;;:::o;36824:279::-;36891:7;36900;36950:5;36928:3;:12;;:19;;;;:27;36920:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;37007:22;37032:3;:12;;37045:5;37032:19;;;;;;;;:::i;:::-;;;;;;;;;;;;37007:44;;37070:5;:10;;;37082:5;:12;;;37062:33;;;;;36824:279;;;;;:::o;38321:319::-;38415:7;38435:16;38454:3;:12;;:17;38467:3;38454:17;;;;;;;;;;;;38435:36;;38502:1;38490:8;:13;;38505:12;38482:36;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;38572:3;:12;;38596:1;38585:8;:12;;;;:::i;:::-;38572:26;;;;;;;;:::i;:::-;;;;;;;;;;;;:33;;;38565:40;;;38321:319;;;;;:::o;4987:109::-;5043:7;5070:3;:11;;:18;;;;5063:25;;4987:109;;;:::o;55301:250::-;55397:18;55403:2;55407:7;55397:5;:18::i;:::-;55434:54;55465:1;55469:2;55473:7;55482:5;55434:22;:54::i;:::-;55426:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;55301:250;;;:::o;59288:604::-;59409:4;59436:15;:2;:13;;;:15::i;:::-;59431:60;;59475:4;59468:11;;;;59431:60;59501:23;59527:252;59580:45;;;59640:12;:10;:12::i;:::-;59667:4;59686:7;59708:5;59543:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59527:252;;;;;;;;;;;;;;;;;:2;:15;;;;:252;;;;;:::i;:::-;59501:278;;59790:13;59817:10;59806:32;;;;;;;;;;;;:::i;:::-;59790:48;;44456:10;59867:16;;59857:26;;;:6;:26;;;;59849:35;;;;59288:604;;;;;;;:::o;36139:125::-;36210:4;36255:1;36234:3;:12;;:17;36247:3;36234:17;;;;;;;;;;;;:22;;36227:29;;36139:125;;;;:::o;3142:1544::-;3208:4;3326:18;3347:3;:12;;:19;3360:5;3347:19;;;;;;;;;;;;3326:40;;3397:1;3383:10;:15;3379:1300;;3745:21;3782:1;3769:10;:14;;;;:::i;:::-;3745:38;;3798:17;3839:1;3818:3;:11;;:18;;;;:22;;;;:::i;:::-;3798:42;;4085:17;4105:3;:11;;4117:9;4105:22;;;;;;;;:::i;:::-;;;;;;;;;;4085:42;;4251:9;4222:3;:11;;4234:13;4222:26;;;;;;;;:::i;:::-;;;;;;;;;:38;;;;4370:1;4354:13;:17;;;;:::i;:::-;4328:3;:12;;:23;4341:9;4328:23;;;;;;;;;;;:43;;;;4480:3;:11;;:17;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4575:3;:12;;:19;4588:5;4575:19;;;;;;;;;;;4568:26;;;4618:4;4611:11;;;;;;;;3379:1300;4662:5;4655:12;;;3142:1544;;;;;:::o;2552:414::-;2615:4;2637:21;2647:3;2652:5;2637:9;:21::i;:::-;2632:327;;2675:3;:11;;2692:5;2675:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2858:3;:11;;:18;;;;2836:3;:12;;:19;2849:5;2836:19;;;;;;;;;;;:40;;;;2898:4;2891:11;;;;2632:327;2942:5;2935:12;;2552:414;;;;;:::o;33639:692::-;33715:4;33831:16;33850:3;:12;;:17;33863:3;33850:17;;;;;;;;;;;;33831:36;;33896:1;33884:8;:13;33880:444;;;33951:3;:12;;33969:38;;;;;;;;33986:3;33969:38;;;;33999:5;33969:38;;;33951:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34166:3;:12;;:19;;;;34146:3;:12;;:17;34159:3;34146:17;;;;;;;;;;;:39;;;;34207:4;34200:11;;;;;33880:444;34280:5;34244:3;:12;;34268:1;34257:8;:12;;;;:::i;:::-;34244:26;;;;;;;;:::i;:::-;;;;;;;;;;;;:33;;:41;;;;34307:5;34300:12;;;33639:692;;;;;;:::o;55887:404::-;55981:1;55967:16;;:2;:16;;;;55959:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;56040:16;56048:7;56040;:16::i;:::-;56039:17;56031:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;56102:45;56131:1;56135:2;56139:7;56102:20;:45::i;:::-;56160:30;56182:7;56160:13;:17;56174:2;56160:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;56203:29;56220:7;56229:2;56203:12;:16;;:29;;;;;:::i;:::-;;56275:7;56271:2;56250:33;;56267:1;56250:33;;;;;;;;;;;;55887:404;;:::o;11311:422::-;11371:4;11579:12;11690:7;11678:20;11670:28;;11724:1;11717:4;:8;11710:15;;;11311:422;;;:::o;14229:195::-;14332:12;14364:52;14386:6;14394:4;14400:1;14403:12;14364:21;:52::i;:::-;14357:59;;14229:195;;;;;:::o;4772:129::-;4845:4;4892:1;4869:3;:12;;:19;4882:5;4869:19;;;;;;;;;;;;:24;;4862:31;;4772:129;;;;:::o;15281:530::-;15408:12;15466:5;15441:21;:30;;15433:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;15533:18;15544:6;15533:10;:18::i;:::-;15525:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;15659:12;15673:23;15700:6;:11;;15720:5;15728:4;15700:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15658:75;;;;15751:52;15769:7;15778:10;15790:12;15751:17;:52::i;:::-;15744:59;;;;15281:530;;;;;;:::o;17821:742::-;17936:12;17965:7;17961:595;;;17996:10;17989:17;;;;17961:595;18130:1;18110:10;:17;:21;18106:439;;;18373:10;18367:17;18434:15;18421:10;18417:2;18413:19;18406:44;18106:439;18516:12;18509:20;;;;;;;;;;;:::i;:::-;;;;;;;;17821:742;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;771:1002::-;892:5;917:106;933:89;1015:6;933:89;:::i;:::-;917:106;:::i;:::-;908:115;;1043:5;1072:6;1065:5;1058:21;1106:4;1099:5;1095:16;1088:23;;1132:6;1182:3;1174:4;1166:6;1162:17;1157:3;1153:27;1150:36;1147:143;;;1201:79;;:::i;:::-;1147:143;1314:1;1299:468;1324:6;1321:1;1318:13;1299:468;;;1406:3;1393:17;1442:18;1429:11;1426:35;1423:122;;;1464:79;;:::i;:::-;1423:122;1588:11;1580:6;1576:24;1626:62;1684:3;1672:10;1626:62;:::i;:::-;1621:3;1614:75;1718:4;1713:3;1709:14;1702:21;;1752:4;1747:3;1743:14;1736:21;;1359:408;;1346:1;1343;1339:9;1334:14;;1299:468;;;1303:14;898:875;;771:1002;;;;;:::o;1796:722::-;1892:5;1917:81;1933:64;1990:6;1933:64;:::i;:::-;1917:81;:::i;:::-;1908:90;;2018:5;2047:6;2040:5;2033:21;2081:4;2074:5;2070:16;2063:23;;2107:6;2157:3;2149:4;2141:6;2137:17;2132:3;2128:27;2125:36;2122:143;;;2176:79;;:::i;:::-;2122:143;2289:1;2274:238;2299:6;2296:1;2293:13;2274:238;;;2367:3;2396:37;2429:3;2417:10;2396:37;:::i;:::-;2391:3;2384:50;2463:4;2458:3;2454:14;2447:21;;2497:4;2492:3;2488:14;2481:21;;2334:178;2321:1;2318;2314:9;2309:14;;2274:238;;;2278:14;1898:620;;1796:722;;;;;:::o;2524:410::-;2601:5;2626:65;2642:48;2683:6;2642:48;:::i;:::-;2626:65;:::i;:::-;2617:74;;2714:6;2707:5;2700:21;2752:4;2745:5;2741:16;2790:3;2781:6;2776:3;2772:16;2769:25;2766:112;;;2797:79;;:::i;:::-;2766:112;2887:41;2921:6;2916:3;2911;2887:41;:::i;:::-;2607:327;2524:410;;;;;:::o;2940:412::-;3018:5;3043:66;3059:49;3101:6;3059:49;:::i;:::-;3043:66;:::i;:::-;3034:75;;3132:6;3125:5;3118:21;3170:4;3163:5;3159:16;3208:3;3199:6;3194:3;3190:16;3187:25;3184:112;;;3215:79;;:::i;:::-;3184:112;3305:41;3339:6;3334:3;3329;3305:41;:::i;:::-;3024:328;2940:412;;;;;:::o;3358:139::-;3404:5;3442:6;3429:20;3420:29;;3458:33;3485:5;3458:33;:::i;:::-;3358:139;;;;:::o;3503:155::-;3557:5;3595:6;3582:20;3573:29;;3611:41;3646:5;3611:41;:::i;:::-;3503:155;;;;:::o;3681:370::-;3752:5;3801:3;3794:4;3786:6;3782:17;3778:27;3768:122;;3809:79;;:::i;:::-;3768:122;3926:6;3913:20;3951:94;4041:3;4033:6;4026:4;4018:6;4014:17;3951:94;:::i;:::-;3942:103;;3758:293;3681:370;;;;:::o;4076:420::-;4172:5;4221:3;4214:4;4206:6;4202:17;4198:27;4188:122;;4229:79;;:::i;:::-;4188:122;4346:6;4333:20;4371:119;4486:3;4478:6;4471:4;4463:6;4459:17;4371:119;:::i;:::-;4362:128;;4178:318;4076:420;;;;:::o;4519:370::-;4590:5;4639:3;4632:4;4624:6;4620:17;4616:27;4606:122;;4647:79;;:::i;:::-;4606:122;4764:6;4751:20;4789:94;4879:3;4871:6;4864:4;4856:6;4852:17;4789:94;:::i;:::-;4780:103;;4596:293;4519:370;;;;:::o;4895:133::-;4938:5;4976:6;4963:20;4954:29;;4992:30;5016:5;4992:30;:::i;:::-;4895:133;;;;:::o;5034:137::-;5079:5;5117:6;5104:20;5095:29;;5133:32;5159:5;5133:32;:::i;:::-;5034:137;;;;:::o;5177:141::-;5233:5;5264:6;5258:13;5249:22;;5280:32;5306:5;5280:32;:::i;:::-;5177:141;;;;:::o;5337:338::-;5392:5;5441:3;5434:4;5426:6;5422:17;5418:27;5408:122;;5449:79;;:::i;:::-;5408:122;5566:6;5553:20;5591:78;5665:3;5657:6;5650:4;5642:6;5638:17;5591:78;:::i;:::-;5582:87;;5398:277;5337:338;;;;:::o;5695:340::-;5751:5;5800:3;5793:4;5785:6;5781:17;5777:27;5767:122;;5808:79;;:::i;:::-;5767:122;5925:6;5912:20;5950:79;6025:3;6017:6;6010:4;6002:6;5998:17;5950:79;:::i;:::-;5941:88;;5757:278;5695:340;;;;:::o;6041:139::-;6087:5;6125:6;6112:20;6103:29;;6141:33;6168:5;6141:33;:::i;:::-;6041:139;;;;:::o;6186:329::-;6245:6;6294:2;6282:9;6273:7;6269:23;6265:32;6262:119;;;6300:79;;:::i;:::-;6262:119;6420:1;6445:53;6490:7;6481:6;6470:9;6466:22;6445:53;:::i;:::-;6435:63;;6391:117;6186:329;;;;:::o;6521:345::-;6588:6;6637:2;6625:9;6616:7;6612:23;6608:32;6605:119;;;6643:79;;:::i;:::-;6605:119;6763:1;6788:61;6841:7;6832:6;6821:9;6817:22;6788:61;:::i;:::-;6778:71;;6734:125;6521:345;;;;:::o;6872:474::-;6940:6;6948;6997:2;6985:9;6976:7;6972:23;6968:32;6965:119;;;7003:79;;:::i;:::-;6965:119;7123:1;7148:53;7193:7;7184:6;7173:9;7169:22;7148:53;:::i;:::-;7138:63;;7094:117;7250:2;7276:53;7321:7;7312:6;7301:9;7297:22;7276:53;:::i;:::-;7266:63;;7221:118;6872:474;;;;;:::o;7352:619::-;7429:6;7437;7445;7494:2;7482:9;7473:7;7469:23;7465:32;7462:119;;;7500:79;;:::i;:::-;7462:119;7620:1;7645:53;7690:7;7681:6;7670:9;7666:22;7645:53;:::i;:::-;7635:63;;7591:117;7747:2;7773:53;7818:7;7809:6;7798:9;7794:22;7773:53;:::i;:::-;7763:63;;7718:118;7875:2;7901:53;7946:7;7937:6;7926:9;7922:22;7901:53;:::i;:::-;7891:63;;7846:118;7352:619;;;;;:::o;7977:943::-;8072:6;8080;8088;8096;8145:3;8133:9;8124:7;8120:23;8116:33;8113:120;;;8152:79;;:::i;:::-;8113:120;8272:1;8297:53;8342:7;8333:6;8322:9;8318:22;8297:53;:::i;:::-;8287:63;;8243:117;8399:2;8425:53;8470:7;8461:6;8450:9;8446:22;8425:53;:::i;:::-;8415:63;;8370:118;8527:2;8553:53;8598:7;8589:6;8578:9;8574:22;8553:53;:::i;:::-;8543:63;;8498:118;8683:2;8672:9;8668:18;8655:32;8714:18;8706:6;8703:30;8700:117;;;8736:79;;:::i;:::-;8700:117;8841:62;8895:7;8886:6;8875:9;8871:22;8841:62;:::i;:::-;8831:72;;8626:287;7977:943;;;;;;;:::o;8926:468::-;8991:6;8999;9048:2;9036:9;9027:7;9023:23;9019:32;9016:119;;;9054:79;;:::i;:::-;9016:119;9174:1;9199:53;9244:7;9235:6;9224:9;9220:22;9199:53;:::i;:::-;9189:63;;9145:117;9301:2;9327:50;9369:7;9360:6;9349:9;9345:22;9327:50;:::i;:::-;9317:60;;9272:115;8926:468;;;;;:::o;9400:474::-;9468:6;9476;9525:2;9513:9;9504:7;9500:23;9496:32;9493:119;;;9531:79;;:::i;:::-;9493:119;9651:1;9676:53;9721:7;9712:6;9701:9;9697:22;9676:53;:::i;:::-;9666:63;;9622:117;9778:2;9804:53;9849:7;9840:6;9829:9;9825:22;9804:53;:::i;:::-;9794:63;;9749:118;9400:474;;;;;:::o;9880:944::-;10023:6;10031;10080:2;10068:9;10059:7;10055:23;10051:32;10048:119;;;10086:79;;:::i;:::-;10048:119;10234:1;10223:9;10219:17;10206:31;10264:18;10256:6;10253:30;10250:117;;;10286:79;;:::i;:::-;10250:117;10391:78;10461:7;10452:6;10441:9;10437:22;10391:78;:::i;:::-;10381:88;;10177:302;10546:2;10535:9;10531:18;10518:32;10577:18;10569:6;10566:30;10563:117;;;10599:79;;:::i;:::-;10563:117;10704:103;10799:7;10790:6;10779:9;10775:22;10704:103;:::i;:::-;10694:113;;10489:328;9880:944;;;;;:::o;10830:539::-;10914:6;10963:2;10951:9;10942:7;10938:23;10934:32;10931:119;;;10969:79;;:::i;:::-;10931:119;11117:1;11106:9;11102:17;11089:31;11147:18;11139:6;11136:30;11133:117;;;11169:79;;:::i;:::-;11133:117;11274:78;11344:7;11335:6;11324:9;11320:22;11274:78;:::i;:::-;11264:88;;11060:302;10830:539;;;;:::o;11375:323::-;11431:6;11480:2;11468:9;11459:7;11455:23;11451:32;11448:119;;;11486:79;;:::i;:::-;11448:119;11606:1;11631:50;11673:7;11664:6;11653:9;11649:22;11631:50;:::i;:::-;11621:60;;11577:114;11375:323;;;;:::o;11704:327::-;11762:6;11811:2;11799:9;11790:7;11786:23;11782:32;11779:119;;;11817:79;;:::i;:::-;11779:119;11937:1;11962:52;12006:7;11997:6;11986:9;11982:22;11962:52;:::i;:::-;11952:62;;11908:116;11704:327;;;;:::o;12037:349::-;12106:6;12155:2;12143:9;12134:7;12130:23;12126:32;12123:119;;;12161:79;;:::i;:::-;12123:119;12281:1;12306:63;12361:7;12352:6;12341:9;12337:22;12306:63;:::i;:::-;12296:73;;12252:127;12037:349;;;;:::o;12392:509::-;12461:6;12510:2;12498:9;12489:7;12485:23;12481:32;12478:119;;;12516:79;;:::i;:::-;12478:119;12664:1;12653:9;12649:17;12636:31;12694:18;12686:6;12683:30;12680:117;;;12716:79;;:::i;:::-;12680:117;12821:63;12876:7;12867:6;12856:9;12852:22;12821:63;:::i;:::-;12811:73;;12607:287;12392:509;;;;:::o;12907:329::-;12966:6;13015:2;13003:9;12994:7;12990:23;12986:32;12983:119;;;13021:79;;:::i;:::-;12983:119;13141:1;13166:53;13211:7;13202:6;13191:9;13187:22;13166:53;:::i;:::-;13156:63;;13112:117;12907:329;;;;:::o;13242:474::-;13310:6;13318;13367:2;13355:9;13346:7;13342:23;13338:32;13335:119;;;13373:79;;:::i;:::-;13335:119;13493:1;13518:53;13563:7;13554:6;13543:9;13539:22;13518:53;:::i;:::-;13508:63;;13464:117;13620:2;13646:53;13691:7;13682:6;13671:9;13667:22;13646:53;:::i;:::-;13636:63;;13591:118;13242:474;;;;;:::o;13722:179::-;13791:10;13812:46;13854:3;13846:6;13812:46;:::i;:::-;13890:4;13885:3;13881:14;13867:28;;13722:179;;;;:::o;13907:::-;13976:10;13997:46;14039:3;14031:6;13997:46;:::i;:::-;14075:4;14070:3;14066:14;14052:28;;13907:179;;;;:::o;14092:142::-;14195:32;14221:5;14195:32;:::i;:::-;14190:3;14183:45;14092:142;;:::o;14240:108::-;14317:24;14335:5;14317:24;:::i;:::-;14312:3;14305:37;14240:108;;:::o;14354:118::-;14441:24;14459:5;14441:24;:::i;:::-;14436:3;14429:37;14354:118;;:::o;14508:732::-;14627:3;14656:54;14704:5;14656:54;:::i;:::-;14726:86;14805:6;14800:3;14726:86;:::i;:::-;14719:93;;14836:56;14886:5;14836:56;:::i;:::-;14915:7;14946:1;14931:284;14956:6;14953:1;14950:13;14931:284;;;15032:6;15026:13;15059:63;15118:3;15103:13;15059:63;:::i;:::-;15052:70;;15145:60;15198:6;15145:60;:::i;:::-;15135:70;;14991:224;14978:1;14975;14971:9;14966:14;;14931:284;;;14935:14;15231:3;15224:10;;14632:608;;;14508:732;;;;:::o;15276:::-;15395:3;15424:54;15472:5;15424:54;:::i;:::-;15494:86;15573:6;15568:3;15494:86;:::i;:::-;15487:93;;15604:56;15654:5;15604:56;:::i;:::-;15683:7;15714:1;15699:284;15724:6;15721:1;15718:13;15699:284;;;15800:6;15794:13;15827:63;15886:3;15871:13;15827:63;:::i;:::-;15820:70;;15913:60;15966:6;15913:60;:::i;:::-;15903:70;;15759:224;15746:1;15743;15739:9;15734:14;;15699:284;;;15703:14;15999:3;15992:10;;15400:608;;;15276:732;;;;:::o;16014:109::-;16095:21;16110:5;16095:21;:::i;:::-;16090:3;16083:34;16014:109;;:::o;16129:360::-;16215:3;16243:38;16275:5;16243:38;:::i;:::-;16297:70;16360:6;16355:3;16297:70;:::i;:::-;16290:77;;16376:52;16421:6;16416:3;16409:4;16402:5;16398:16;16376:52;:::i;:::-;16453:29;16475:6;16453:29;:::i;:::-;16448:3;16444:39;16437:46;;16219:270;16129:360;;;;:::o;16495:373::-;16599:3;16627:38;16659:5;16627:38;:::i;:::-;16681:88;16762:6;16757:3;16681:88;:::i;:::-;16674:95;;16778:52;16823:6;16818:3;16811:4;16804:5;16800:16;16778:52;:::i;:::-;16855:6;16850:3;16846:16;16839:23;;16603:265;16495:373;;;;:::o;16874:364::-;16962:3;16990:39;17023:5;16990:39;:::i;:::-;17045:71;17109:6;17104:3;17045:71;:::i;:::-;17038:78;;17125:52;17170:6;17165:3;17158:4;17151:5;17147:16;17125:52;:::i;:::-;17202:29;17224:6;17202:29;:::i;:::-;17197:3;17193:39;17186:46;;16966:272;16874:364;;;;:::o;17244:377::-;17350:3;17378:39;17411:5;17378:39;:::i;:::-;17433:89;17515:6;17510:3;17433:89;:::i;:::-;17426:96;;17531:52;17576:6;17571:3;17564:4;17557:5;17553:16;17531:52;:::i;:::-;17608:6;17603:3;17599:16;17592:23;;17354:267;17244:377;;;;:::o;17627:366::-;17769:3;17790:67;17854:2;17849:3;17790:67;:::i;:::-;17783:74;;17866:93;17955:3;17866:93;:::i;:::-;17984:2;17979:3;17975:12;17968:19;;17627:366;;;:::o;17999:::-;18141:3;18162:67;18226:2;18221:3;18162:67;:::i;:::-;18155:74;;18238:93;18327:3;18238:93;:::i;:::-;18356:2;18351:3;18347:12;18340:19;;17999:366;;;:::o;18371:::-;18513:3;18534:67;18598:2;18593:3;18534:67;:::i;:::-;18527:74;;18610:93;18699:3;18610:93;:::i;:::-;18728:2;18723:3;18719:12;18712:19;;18371:366;;;:::o;18743:::-;18885:3;18906:67;18970:2;18965:3;18906:67;:::i;:::-;18899:74;;18982:93;19071:3;18982:93;:::i;:::-;19100:2;19095:3;19091:12;19084:19;;18743:366;;;:::o;19115:::-;19257:3;19278:67;19342:2;19337:3;19278:67;:::i;:::-;19271:74;;19354:93;19443:3;19354:93;:::i;:::-;19472:2;19467:3;19463:12;19456:19;;19115:366;;;:::o;19487:::-;19629:3;19650:67;19714:2;19709:3;19650:67;:::i;:::-;19643:74;;19726:93;19815:3;19726:93;:::i;:::-;19844:2;19839:3;19835:12;19828:19;;19487:366;;;:::o;19859:::-;20001:3;20022:67;20086:2;20081:3;20022:67;:::i;:::-;20015:74;;20098:93;20187:3;20098:93;:::i;:::-;20216:2;20211:3;20207:12;20200:19;;19859:366;;;:::o;20231:::-;20373:3;20394:67;20458:2;20453:3;20394:67;:::i;:::-;20387:74;;20470:93;20559:3;20470:93;:::i;:::-;20588:2;20583:3;20579:12;20572:19;;20231:366;;;:::o;20603:::-;20745:3;20766:67;20830:2;20825:3;20766:67;:::i;:::-;20759:74;;20842:93;20931:3;20842:93;:::i;:::-;20960:2;20955:3;20951:12;20944:19;;20603:366;;;:::o;20975:::-;21117:3;21138:67;21202:2;21197:3;21138:67;:::i;:::-;21131:74;;21214:93;21303:3;21214:93;:::i;:::-;21332:2;21327:3;21323:12;21316:19;;20975:366;;;:::o;21347:::-;21489:3;21510:67;21574:2;21569:3;21510:67;:::i;:::-;21503:74;;21586:93;21675:3;21586:93;:::i;:::-;21704:2;21699:3;21695:12;21688:19;;21347:366;;;:::o;21719:::-;21861:3;21882:67;21946:2;21941:3;21882:67;:::i;:::-;21875:74;;21958:93;22047:3;21958:93;:::i;:::-;22076:2;22071:3;22067:12;22060:19;;21719:366;;;:::o;22091:::-;22233:3;22254:67;22318:2;22313:3;22254:67;:::i;:::-;22247:74;;22330:93;22419:3;22330:93;:::i;:::-;22448:2;22443:3;22439:12;22432:19;;22091:366;;;:::o;22463:402::-;22623:3;22644:85;22726:2;22721:3;22644:85;:::i;:::-;22637:92;;22738:93;22827:3;22738:93;:::i;:::-;22856:2;22851:3;22847:12;22840:19;;22463:402;;;:::o;22871:366::-;23013:3;23034:67;23098:2;23093:3;23034:67;:::i;:::-;23027:74;;23110:93;23199:3;23110:93;:::i;:::-;23228:2;23223:3;23219:12;23212:19;;22871:366;;;:::o;23243:::-;23385:3;23406:67;23470:2;23465:3;23406:67;:::i;:::-;23399:74;;23482:93;23571:3;23482:93;:::i;:::-;23600:2;23595:3;23591:12;23584:19;;23243:366;;;:::o;23615:::-;23757:3;23778:67;23842:2;23837:3;23778:67;:::i;:::-;23771:74;;23854:93;23943:3;23854:93;:::i;:::-;23972:2;23967:3;23963:12;23956:19;;23615:366;;;:::o;23987:::-;24129:3;24150:67;24214:2;24209:3;24150:67;:::i;:::-;24143:74;;24226:93;24315:3;24226:93;:::i;:::-;24344:2;24339:3;24335:12;24328:19;;23987:366;;;:::o;24359:::-;24501:3;24522:67;24586:2;24581:3;24522:67;:::i;:::-;24515:74;;24598:93;24687:3;24598:93;:::i;:::-;24716:2;24711:3;24707:12;24700:19;;24359:366;;;:::o;24731:::-;24873:3;24894:67;24958:2;24953:3;24894:67;:::i;:::-;24887:74;;24970:93;25059:3;24970:93;:::i;:::-;25088:2;25083:3;25079:12;25072:19;;24731:366;;;:::o;25103:400::-;25263:3;25284:84;25366:1;25361:3;25284:84;:::i;:::-;25277:91;;25377:93;25466:3;25377:93;:::i;:::-;25495:1;25490:3;25486:11;25479:18;;25103:400;;;:::o;25509:366::-;25651:3;25672:67;25736:2;25731:3;25672:67;:::i;:::-;25665:74;;25748:93;25837:3;25748:93;:::i;:::-;25866:2;25861:3;25857:12;25850:19;;25509:366;;;:::o;25881:::-;26023:3;26044:67;26108:2;26103:3;26044:67;:::i;:::-;26037:74;;26120:93;26209:3;26120:93;:::i;:::-;26238:2;26233:3;26229:12;26222:19;;25881:366;;;:::o;26253:::-;26395:3;26416:67;26480:2;26475:3;26416:67;:::i;:::-;26409:74;;26492:93;26581:3;26492:93;:::i;:::-;26610:2;26605:3;26601:12;26594:19;;26253:366;;;:::o;26625:::-;26767:3;26788:67;26852:2;26847:3;26788:67;:::i;:::-;26781:74;;26864:93;26953:3;26864:93;:::i;:::-;26982:2;26977:3;26973:12;26966:19;;26625:366;;;:::o;26997:::-;27139:3;27160:67;27224:2;27219:3;27160:67;:::i;:::-;27153:74;;27236:93;27325:3;27236:93;:::i;:::-;27354:2;27349:3;27345:12;27338:19;;26997:366;;;:::o;27369:398::-;27528:3;27549:83;27630:1;27625:3;27549:83;:::i;:::-;27542:90;;27641:93;27730:3;27641:93;:::i;:::-;27759:1;27754:3;27750:11;27743:18;;27369:398;;;:::o;27773:366::-;27915:3;27936:67;28000:2;27995:3;27936:67;:::i;:::-;27929:74;;28012:93;28101:3;28012:93;:::i;:::-;28130:2;28125:3;28121:12;28114:19;;27773:366;;;:::o;28145:::-;28287:3;28308:67;28372:2;28367:3;28308:67;:::i;:::-;28301:74;;28384:93;28473:3;28384:93;:::i;:::-;28502:2;28497:3;28493:12;28486:19;;28145:366;;;:::o;28517:::-;28659:3;28680:67;28744:2;28739:3;28680:67;:::i;:::-;28673:74;;28756:93;28845:3;28756:93;:::i;:::-;28874:2;28869:3;28865:12;28858:19;;28517:366;;;:::o;28889:::-;29031:3;29052:67;29116:2;29111:3;29052:67;:::i;:::-;29045:74;;29128:93;29217:3;29128:93;:::i;:::-;29246:2;29241:3;29237:12;29230:19;;28889:366;;;:::o;29261:108::-;29338:24;29356:5;29338:24;:::i;:::-;29333:3;29326:37;29261:108;;:::o;29375:118::-;29462:24;29480:5;29462:24;:::i;:::-;29457:3;29450:37;29375:118;;:::o;29499:271::-;29629:3;29651:93;29740:3;29731:6;29651:93;:::i;:::-;29644:100;;29761:3;29754:10;;29499:271;;;;:::o;29776:701::-;30057:3;30079:95;30170:3;30161:6;30079:95;:::i;:::-;30072:102;;30191:95;30282:3;30273:6;30191:95;:::i;:::-;30184:102;;30303:148;30447:3;30303:148;:::i;:::-;30296:155;;30468:3;30461:10;;29776:701;;;;;:::o;30483:807::-;30817:3;30839:95;30930:3;30921:6;30839:95;:::i;:::-;30832:102;;30951:148;31095:3;30951:148;:::i;:::-;30944:155;;31116:148;31260:3;31116:148;:::i;:::-;31109:155;;31281:3;31274:10;;30483:807;;;;:::o;31296:379::-;31480:3;31502:147;31645:3;31502:147;:::i;:::-;31495:154;;31666:3;31659:10;;31296:379;;;:::o;31681:222::-;31774:4;31812:2;31801:9;31797:18;31789:26;;31825:71;31893:1;31882:9;31878:17;31869:6;31825:71;:::i;:::-;31681:222;;;;:::o;31909:254::-;32018:4;32056:2;32045:9;32041:18;32033:26;;32069:87;32153:1;32142:9;32138:17;32129:6;32069:87;:::i;:::-;31909:254;;;;:::o;32169:640::-;32364:4;32402:3;32391:9;32387:19;32379:27;;32416:71;32484:1;32473:9;32469:17;32460:6;32416:71;:::i;:::-;32497:72;32565:2;32554:9;32550:18;32541:6;32497:72;:::i;:::-;32579;32647:2;32636:9;32632:18;32623:6;32579:72;:::i;:::-;32698:9;32692:4;32688:20;32683:2;32672:9;32668:18;32661:48;32726:76;32797:4;32788:6;32726:76;:::i;:::-;32718:84;;32169:640;;;;;;;:::o;32815:593::-;33014:4;33052:2;33041:9;33037:18;33029:26;;33065:71;33133:1;33122:9;33118:17;33109:6;33065:71;:::i;:::-;33146:72;33214:2;33203:9;33199:18;33190:6;33146:72;:::i;:::-;33265:9;33259:4;33255:20;33250:2;33239:9;33235:18;33228:48;33293:108;33396:4;33387:6;33293:108;:::i;:::-;33285:116;;32815:593;;;;;;:::o;33414:373::-;33557:4;33595:2;33584:9;33580:18;33572:26;;33644:9;33638:4;33634:20;33630:1;33619:9;33615:17;33608:47;33672:108;33775:4;33766:6;33672:108;:::i;:::-;33664:116;;33414:373;;;;:::o;33793:210::-;33880:4;33918:2;33907:9;33903:18;33895:26;;33931:65;33993:1;33982:9;33978:17;33969:6;33931:65;:::i;:::-;33793:210;;;;:::o;34009:313::-;34122:4;34160:2;34149:9;34145:18;34137:26;;34209:9;34203:4;34199:20;34195:1;34184:9;34180:17;34173:47;34237:78;34310:4;34301:6;34237:78;:::i;:::-;34229:86;;34009:313;;;;:::o;34328:419::-;34494:4;34532:2;34521:9;34517:18;34509:26;;34581:9;34575:4;34571:20;34567:1;34556:9;34552:17;34545:47;34609:131;34735:4;34609:131;:::i;:::-;34601:139;;34328:419;;;:::o;34753:::-;34919:4;34957:2;34946:9;34942:18;34934:26;;35006:9;35000:4;34996:20;34992:1;34981:9;34977:17;34970:47;35034:131;35160:4;35034:131;:::i;:::-;35026:139;;34753:419;;;:::o;35178:::-;35344:4;35382:2;35371:9;35367:18;35359:26;;35431:9;35425:4;35421:20;35417:1;35406:9;35402:17;35395:47;35459:131;35585:4;35459:131;:::i;:::-;35451:139;;35178:419;;;:::o;35603:::-;35769:4;35807:2;35796:9;35792:18;35784:26;;35856:9;35850:4;35846:20;35842:1;35831:9;35827:17;35820:47;35884:131;36010:4;35884:131;:::i;:::-;35876:139;;35603:419;;;:::o;36028:::-;36194:4;36232:2;36221:9;36217:18;36209:26;;36281:9;36275:4;36271:20;36267:1;36256:9;36252:17;36245:47;36309:131;36435:4;36309:131;:::i;:::-;36301:139;;36028:419;;;:::o;36453:::-;36619:4;36657:2;36646:9;36642:18;36634:26;;36706:9;36700:4;36696:20;36692:1;36681:9;36677:17;36670:47;36734:131;36860:4;36734:131;:::i;:::-;36726:139;;36453:419;;;:::o;36878:::-;37044:4;37082:2;37071:9;37067:18;37059:26;;37131:9;37125:4;37121:20;37117:1;37106:9;37102:17;37095:47;37159:131;37285:4;37159:131;:::i;:::-;37151:139;;36878:419;;;:::o;37303:::-;37469:4;37507:2;37496:9;37492:18;37484:26;;37556:9;37550:4;37546:20;37542:1;37531:9;37527:17;37520:47;37584:131;37710:4;37584:131;:::i;:::-;37576:139;;37303:419;;;:::o;37728:::-;37894:4;37932:2;37921:9;37917:18;37909:26;;37981:9;37975:4;37971:20;37967:1;37956:9;37952:17;37945:47;38009:131;38135:4;38009:131;:::i;:::-;38001:139;;37728:419;;;:::o;38153:::-;38319:4;38357:2;38346:9;38342:18;38334:26;;38406:9;38400:4;38396:20;38392:1;38381:9;38377:17;38370:47;38434:131;38560:4;38434:131;:::i;:::-;38426:139;;38153:419;;;:::o;38578:::-;38744:4;38782:2;38771:9;38767:18;38759:26;;38831:9;38825:4;38821:20;38817:1;38806:9;38802:17;38795:47;38859:131;38985:4;38859:131;:::i;:::-;38851:139;;38578:419;;;:::o;39003:::-;39169:4;39207:2;39196:9;39192:18;39184:26;;39256:9;39250:4;39246:20;39242:1;39231:9;39227:17;39220:47;39284:131;39410:4;39284:131;:::i;:::-;39276:139;;39003:419;;;:::o;39428:::-;39594:4;39632:2;39621:9;39617:18;39609:26;;39681:9;39675:4;39671:20;39667:1;39656:9;39652:17;39645:47;39709:131;39835:4;39709:131;:::i;:::-;39701:139;;39428:419;;;:::o;39853:::-;40019:4;40057:2;40046:9;40042:18;40034:26;;40106:9;40100:4;40096:20;40092:1;40081:9;40077:17;40070:47;40134:131;40260:4;40134:131;:::i;:::-;40126:139;;39853:419;;;:::o;40278:::-;40444:4;40482:2;40471:9;40467:18;40459:26;;40531:9;40525:4;40521:20;40517:1;40506:9;40502:17;40495:47;40559:131;40685:4;40559:131;:::i;:::-;40551:139;;40278:419;;;:::o;40703:::-;40869:4;40907:2;40896:9;40892:18;40884:26;;40956:9;40950:4;40946:20;40942:1;40931:9;40927:17;40920:47;40984:131;41110:4;40984:131;:::i;:::-;40976:139;;40703:419;;;:::o;41128:::-;41294:4;41332:2;41321:9;41317:18;41309:26;;41381:9;41375:4;41371:20;41367:1;41356:9;41352:17;41345:47;41409:131;41535:4;41409:131;:::i;:::-;41401:139;;41128:419;;;:::o;41553:::-;41719:4;41757:2;41746:9;41742:18;41734:26;;41806:9;41800:4;41796:20;41792:1;41781:9;41777:17;41770:47;41834:131;41960:4;41834:131;:::i;:::-;41826:139;;41553:419;;;:::o;41978:::-;42144:4;42182:2;42171:9;42167:18;42159:26;;42231:9;42225:4;42221:20;42217:1;42206:9;42202:17;42195:47;42259:131;42385:4;42259:131;:::i;:::-;42251:139;;41978:419;;;:::o;42403:::-;42569:4;42607:2;42596:9;42592:18;42584:26;;42656:9;42650:4;42646:20;42642:1;42631:9;42627:17;42620:47;42684:131;42810:4;42684:131;:::i;:::-;42676:139;;42403:419;;;:::o;42828:::-;42994:4;43032:2;43021:9;43017:18;43009:26;;43081:9;43075:4;43071:20;43067:1;43056:9;43052:17;43045:47;43109:131;43235:4;43109:131;:::i;:::-;43101:139;;42828:419;;;:::o;43253:::-;43419:4;43457:2;43446:9;43442:18;43434:26;;43506:9;43500:4;43496:20;43492:1;43481:9;43477:17;43470:47;43534:131;43660:4;43534:131;:::i;:::-;43526:139;;43253:419;;;:::o;43678:::-;43844:4;43882:2;43871:9;43867:18;43859:26;;43931:9;43925:4;43921:20;43917:1;43906:9;43902:17;43895:47;43959:131;44085:4;43959:131;:::i;:::-;43951:139;;43678:419;;;:::o;44103:::-;44269:4;44307:2;44296:9;44292:18;44284:26;;44356:9;44350:4;44346:20;44342:1;44331:9;44327:17;44320:47;44384:131;44510:4;44384:131;:::i;:::-;44376:139;;44103:419;;;:::o;44528:::-;44694:4;44732:2;44721:9;44717:18;44709:26;;44781:9;44775:4;44771:20;44767:1;44756:9;44752:17;44745:47;44809:131;44935:4;44809:131;:::i;:::-;44801:139;;44528:419;;;:::o;44953:::-;45119:4;45157:2;45146:9;45142:18;45134:26;;45206:9;45200:4;45196:20;45192:1;45181:9;45177:17;45170:47;45234:131;45360:4;45234:131;:::i;:::-;45226:139;;44953:419;;;:::o;45378:::-;45544:4;45582:2;45571:9;45567:18;45559:26;;45631:9;45625:4;45621:20;45617:1;45606:9;45602:17;45595:47;45659:131;45785:4;45659:131;:::i;:::-;45651:139;;45378:419;;;:::o;45803:::-;45969:4;46007:2;45996:9;45992:18;45984:26;;46056:9;46050:4;46046:20;46042:1;46031:9;46027:17;46020:47;46084:131;46210:4;46084:131;:::i;:::-;46076:139;;45803:419;;;:::o;46228:222::-;46321:4;46359:2;46348:9;46344:18;46336:26;;46372:71;46440:1;46429:9;46425:17;46416:6;46372:71;:::i;:::-;46228:222;;;;:::o;46456:129::-;46490:6;46517:20;;:::i;:::-;46507:30;;46546:33;46574:4;46566:6;46546:33;:::i;:::-;46456:129;;;:::o;46591:75::-;46624:6;46657:2;46651:9;46641:19;;46591:75;:::o;46672:311::-;46749:4;46839:18;46831:6;46828:30;46825:56;;;46861:18;;:::i;:::-;46825:56;46911:4;46903:6;46899:17;46891:25;;46971:4;46965;46961:15;46953:23;;46672:311;;;:::o;46989:336::-;47091:4;47181:18;47173:6;47170:30;47167:56;;;47203:18;;:::i;:::-;47167:56;47253:4;47245:6;47241:17;47233:25;;47313:4;47307;47303:15;47295:23;;46989:336;;;:::o;47331:311::-;47408:4;47498:18;47490:6;47487:30;47484:56;;;47520:18;;:::i;:::-;47484:56;47570:4;47562:6;47558:17;47550:25;;47630:4;47624;47620:15;47612:23;;47331:311;;;:::o;47648:307::-;47709:4;47799:18;47791:6;47788:30;47785:56;;;47821:18;;:::i;:::-;47785:56;47859:29;47881:6;47859:29;:::i;:::-;47851:37;;47943:4;47937;47933:15;47925:23;;47648:307;;;:::o;47961:308::-;48023:4;48113:18;48105:6;48102:30;48099:56;;;48135:18;;:::i;:::-;48099:56;48173:29;48195:6;48173:29;:::i;:::-;48165:37;;48257:4;48251;48247:15;48239:23;;47961:308;;;:::o;48275:132::-;48342:4;48365:3;48357:11;;48395:4;48390:3;48386:14;48378:22;;48275:132;;;:::o;48413:::-;48480:4;48503:3;48495:11;;48533:4;48528:3;48524:14;48516:22;;48413:132;;;:::o;48551:114::-;48618:6;48652:5;48646:12;48636:22;;48551:114;;;:::o;48671:::-;48738:6;48772:5;48766:12;48756:22;;48671:114;;;:::o;48791:98::-;48842:6;48876:5;48870:12;48860:22;;48791:98;;;:::o;48895:99::-;48947:6;48981:5;48975:12;48965:22;;48895:99;;;:::o;49000:113::-;49070:4;49102;49097:3;49093:14;49085:22;;49000:113;;;:::o;49119:::-;49189:4;49221;49216:3;49212:14;49204:22;;49119:113;;;:::o;49238:184::-;49337:11;49371:6;49366:3;49359:19;49411:4;49406:3;49402:14;49387:29;;49238:184;;;;:::o;49428:::-;49527:11;49561:6;49556:3;49549:19;49601:4;49596:3;49592:14;49577:29;;49428:184;;;;:::o;49618:168::-;49701:11;49735:6;49730:3;49723:19;49775:4;49770:3;49766:14;49751:29;;49618:168;;;;:::o;49792:147::-;49893:11;49930:3;49915:18;;49792:147;;;;:::o;49945:169::-;50029:11;50063:6;50058:3;50051:19;50103:4;50098:3;50094:14;50079:29;;49945:169;;;;:::o;50120:148::-;50222:11;50259:3;50244:18;;50120:148;;;;:::o;50274:305::-;50314:3;50333:20;50351:1;50333:20;:::i;:::-;50328:25;;50367:20;50385:1;50367:20;:::i;:::-;50362:25;;50521:1;50453:66;50449:74;50446:1;50443:81;50440:107;;;50527:18;;:::i;:::-;50440:107;50571:1;50568;50564:9;50557:16;;50274:305;;;;:::o;50585:185::-;50625:1;50642:20;50660:1;50642:20;:::i;:::-;50637:25;;50676:20;50694:1;50676:20;:::i;:::-;50671:25;;50715:1;50705:35;;50720:18;;:::i;:::-;50705:35;50762:1;50759;50755:9;50750:14;;50585:185;;;;:::o;50776:191::-;50816:4;50836:20;50854:1;50836:20;:::i;:::-;50831:25;;50870:20;50888:1;50870:20;:::i;:::-;50865:25;;50909:1;50906;50903:8;50900:34;;;50914:18;;:::i;:::-;50900:34;50959:1;50956;50952:9;50944:17;;50776:191;;;;:::o;50973:96::-;51010:7;51039:24;51057:5;51039:24;:::i;:::-;51028:35;;50973:96;;;:::o;51075:104::-;51120:7;51149:24;51167:5;51149:24;:::i;:::-;51138:35;;51075:104;;;:::o;51185:90::-;51219:7;51262:5;51255:13;51248:21;51237:32;;51185:90;;;:::o;51281:149::-;51317:7;51357:66;51350:5;51346:78;51335:89;;51281:149;;;:::o;51436:126::-;51473:7;51513:42;51506:5;51502:54;51491:65;;51436:126;;;:::o;51568:77::-;51605:7;51634:5;51623:16;;51568:77;;;:::o;51651:154::-;51735:6;51730:3;51725;51712:30;51797:1;51788:6;51783:3;51779:16;51772:27;51651:154;;;:::o;51811:307::-;51879:1;51889:113;51903:6;51900:1;51897:13;51889:113;;;51988:1;51983:3;51979:11;51973:18;51969:1;51964:3;51960:11;51953:39;51925:2;51922:1;51918:10;51913:15;;51889:113;;;52020:6;52017:1;52014:13;52011:101;;;52100:1;52091:6;52086:3;52082:16;52075:27;52011:101;51860:258;51811:307;;;:::o;52124:320::-;52168:6;52205:1;52199:4;52195:12;52185:22;;52252:1;52246:4;52242:12;52273:18;52263:81;;52329:4;52321:6;52317:17;52307:27;;52263:81;52391:2;52383:6;52380:14;52360:18;52357:38;52354:84;;;52410:18;;:::i;:::-;52354:84;52175:269;52124:320;;;:::o;52450:281::-;52533:27;52555:4;52533:27;:::i;:::-;52525:6;52521:40;52663:6;52651:10;52648:22;52627:18;52615:10;52612:34;52609:62;52606:88;;;52674:18;;:::i;:::-;52606:88;52714:10;52710:2;52703:22;52493:238;52450:281;;:::o;52737:233::-;52776:3;52799:24;52817:5;52799:24;:::i;:::-;52790:33;;52845:66;52838:5;52835:77;52832:103;;;52915:18;;:::i;:::-;52832:103;52962:1;52955:5;52951:13;52944:20;;52737:233;;;:::o;52976:176::-;53008:1;53025:20;53043:1;53025:20;:::i;:::-;53020:25;;53059:20;53077:1;53059:20;:::i;:::-;53054:25;;53098:1;53088:35;;53103:18;;:::i;:::-;53088:35;53144:1;53141;53137:9;53132:14;;52976:176;;;;:::o;53158:180::-;53206:77;53203:1;53196:88;53303:4;53300:1;53293:15;53327:4;53324:1;53317:15;53344:180;53392:77;53389:1;53382:88;53489:4;53486:1;53479:15;53513:4;53510:1;53503:15;53530:180;53578:77;53575:1;53568:88;53675:4;53672:1;53665:15;53699:4;53696:1;53689:15;53716:180;53764:77;53761:1;53754:88;53861:4;53858:1;53851:15;53885:4;53882:1;53875:15;53902:180;53950:77;53947:1;53940:88;54047:4;54044:1;54037:15;54071:4;54068:1;54061:15;54088:180;54136:77;54133:1;54126:88;54233:4;54230:1;54223:15;54257:4;54254:1;54247:15;54274:117;54383:1;54380;54373:12;54397:117;54506:1;54503;54496:12;54520:117;54629:1;54626;54619:12;54643:117;54752:1;54749;54742:12;54766:117;54875:1;54872;54865:12;54889:102;54930:6;54981:2;54977:7;54972:2;54965:5;54961:14;54957:28;54947:38;;54889:102;;;:::o;54997:221::-;55137:34;55133:1;55125:6;55121:14;55114:58;55206:4;55201:2;55193:6;55189:15;55182:29;54997:221;:::o;55224:180::-;55364:32;55360:1;55352:6;55348:14;55341:56;55224:180;:::o;55410:237::-;55550:34;55546:1;55538:6;55534:14;55527:58;55619:20;55614:2;55606:6;55602:15;55595:45;55410:237;:::o;55653:225::-;55793:34;55789:1;55781:6;55777:14;55770:58;55862:8;55857:2;55849:6;55845:15;55838:33;55653:225;:::o;55884:178::-;56024:30;56020:1;56012:6;56008:14;56001:54;55884:178;:::o;56068:169::-;56208:21;56204:1;56196:6;56192:14;56185:45;56068:169;:::o;56243:223::-;56383:34;56379:1;56371:6;56367:14;56360:58;56452:6;56447:2;56439:6;56435:15;56428:31;56243:223;:::o;56472:175::-;56612:27;56608:1;56600:6;56596:14;56589:51;56472:175;:::o;56653:245::-;56793:34;56789:1;56781:6;56777:14;56770:58;56862:28;56857:2;56849:6;56845:15;56838:53;56653:245;:::o;56904:179::-;57044:31;57040:1;57032:6;57028:14;57021:55;56904:179;:::o;57089:225::-;57229:34;57225:1;57217:6;57213:14;57206:58;57298:8;57293:2;57285:6;57281:15;57274:33;57089:225;:::o;57320:231::-;57460:34;57456:1;57448:6;57444:14;57437:58;57529:14;57524:2;57516:6;57512:15;57505:39;57320:231;:::o;57557:233::-;57697:34;57693:1;57685:6;57681:14;57674:58;57766:16;57761:2;57753:6;57749:15;57742:41;57557:233;:::o;57796:167::-;57936:19;57932:1;57924:6;57920:14;57913:43;57796:167;:::o;57969:173::-;58109:25;58105:1;58097:6;58093:14;58086:49;57969:173;:::o;58148:243::-;58288:34;58284:1;58276:6;58272:14;58265:58;58357:26;58352:2;58344:6;58340:15;58333:51;58148:243;:::o;58397:229::-;58537:34;58533:1;58525:6;58521:14;58514:58;58606:12;58601:2;58593:6;58589:15;58582:37;58397:229;:::o;58632:221::-;58772:34;58768:1;58760:6;58756:14;58749:58;58841:4;58836:2;58828:6;58824:15;58817:29;58632:221;:::o;58859:182::-;58999:34;58995:1;58987:6;58983:14;58976:58;58859:182;:::o;59047:231::-;59187:34;59183:1;59175:6;59171:14;59164:58;59256:14;59251:2;59243:6;59239:15;59232:39;59047:231;:::o;59284:155::-;59424:7;59420:1;59412:6;59408:14;59401:31;59284:155;:::o;59445:182::-;59585:34;59581:1;59573:6;59569:14;59562:58;59445:182;:::o;59633:228::-;59773:34;59769:1;59761:6;59757:14;59750:58;59842:11;59837:2;59829:6;59825:15;59818:36;59633:228;:::o;59867:234::-;60007:34;60003:1;59995:6;59991:14;59984:58;60076:17;60071:2;60063:6;60059:15;60052:42;59867:234;:::o;60107:163::-;60247:15;60243:1;60235:6;60231:14;60224:39;60107:163;:::o;60276:220::-;60416:34;60412:1;60404:6;60400:14;60393:58;60485:3;60480:2;60472:6;60468:15;60461:28;60276:220;:::o;60502:114::-;;:::o;60622:236::-;60762:34;60758:1;60750:6;60746:14;60739:58;60831:19;60826:2;60818:6;60814:15;60807:44;60622:236;:::o;60864:179::-;61004:31;61000:1;60992:6;60988:14;60981:55;60864:179;:::o;61049:175::-;61189:27;61185:1;61177:6;61173:14;61166:51;61049:175;:::o;61230:169::-;61370:21;61366:1;61358:6;61354:14;61347:45;61230:169;:::o;61405:122::-;61478:24;61496:5;61478:24;:::i;:::-;61471:5;61468:35;61458:63;;61517:1;61514;61507:12;61458:63;61405:122;:::o;61533:138::-;61614:32;61640:5;61614:32;:::i;:::-;61607:5;61604:43;61594:71;;61661:1;61658;61651:12;61594:71;61533:138;:::o;61677:116::-;61747:21;61762:5;61747:21;:::i;:::-;61740:5;61737:32;61727:60;;61783:1;61780;61773:12;61727:60;61677:116;:::o;61799:120::-;61871:23;61888:5;61871:23;:::i;:::-;61864:5;61861:34;61851:62;;61909:1;61906;61899:12;61851:62;61799:120;:::o;61925:122::-;61998:24;62016:5;61998:24;:::i;:::-;61991:5;61988:35;61978:63;;62037:1;62034;62027:12;61978:63;61925:122;:::o

Swarm Source

ipfs://35a9c82c1f20a47b58c29dc99a9ab567d248a5b6c163cfdef8a90c9591d73205
Loading...
Loading
[ 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.