Token Base Domains

 

Overview [ERC-721]

Max Total Supply:
27,430 .bns

Holders:
26,518
Contract:
0x00ef6ecac676d3cc158def4a8d028ad7aa35c7670x00eF6ecAC676D3cC158deF4A8d028ad7aa35c767

Social Profiles:
Not Available, Update ?

 
Balance
1 .bns
0xf85fc2732dfd5446ffbfc63f33a4d4381a5e8123
Loading
[ Download CSV Export  ] 
Loading
[ Download CSV Export  ] 
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BaseDomains

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at basescan.org on 2023-08-06
*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol
// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

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/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (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 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/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

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() {
        _transferOwnership(_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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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


// OpenZeppelin Contracts (last updated v4.5.0) (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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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");

        (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");

        (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");

        (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");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal 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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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


// OpenZeppelin Contracts v4.4.1 (utils/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/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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


// OpenZeppelin Contracts (last updated v4.6.0) (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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/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: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.0;



/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     * 
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.0;







/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721A {
    using Address for address;
    using Strings for uint256;

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;
    mapping(uint => string) public tokenIDandAddress;
    mapping(string => uint) public tokenAddressandID;
    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 1;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr) if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenIDandAddress[tokenId])) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner) if(!isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _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 {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract()) if(!_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            
            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}


pragma solidity ^0.8.0;


contract BaseDomains is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;
    uint256 public Cost2Character = 20000000000000000;
    uint256 public Cost3Character = 10000000000000000;
    uint256 public Cost4mCharacter = 2500000000000000;
    uint256 public royaltyBps = 0;
    uint8 private ref = 10;
    string private domain='.bns';
    string private BASE_URI = 'https://data.basename.domains/metadata/';
    string private CONTRACT_URI = 'https://data.basename.domains/contract_new.json';
    mapping(string => address) public resolveAddress;
    mapping(address => string) public primaryAddress;
    mapping(string => mapping(string => string)) public dataAddress;
    bytes _allowChars = "0123456789-_abcdefghijklmnopqrstuvwxyz";

    constructor() ERC721A("Base Domains", ".bns") {
        tokenIDandAddress[_currentIndex]="base";
        tokenAddressandID["base"]=_currentIndex;
        resolveAddress["base"]=msg.sender;
        _safeMint(msg.sender,1);
    }
   

    function Resolver(string memory name) external view returns (address _resolver) {
        if (resolveAddress[name]==0x0000000000000000000000000000000000000000) {
            TokenOwnership memory Ownership = _ownershipOf(tokenAddressandID[name]);
            _resolver = Ownership.addr;
        } else {
         _resolver =  resolveAddress[name];   
        }
        return _resolver;
    }

    
    function _baseURI() internal view virtual override returns (string memory) {
        return BASE_URI;
    }

    function contractURI() public view returns (string memory) {
        return CONTRACT_URI;
    }

    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) external view
    returns (address receiver, uint256 royaltyAmount) {
            TokenOwnership memory Ownership = _ownershipOf(_tokenId);
            return (Ownership.addr, _salePrice*royaltyBps/10000);
    }

    

    
    function setAddress(string calldata NAME, address newresolve) external {
         TokenOwnership memory Ownership = _ownershipOf(tokenAddressandID[NAME]);
        if (Ownership.addr != msg.sender) revert("Error");
        

    bytes memory result = bytes(primaryAddress[resolveAddress[NAME]]);
        if (keccak256(result) == keccak256(bytes(NAME))) {
            primaryAddress[resolveAddress[NAME]]="";
        }
        resolveAddress[NAME]=newresolve;
    }

    function setPrimaryAddress(string calldata NAME) external {
        TokenOwnership memory Ownership = _ownershipOf(tokenAddressandID[NAME]);
        if (Ownership.addr != msg.sender) revert("Error");
        primaryAddress[msg.sender]=NAME;
    }


    function setDataAddress(string calldata NAME,string calldata setArea, string  memory newDatas) external {
        TokenOwnership memory Ownership = _ownershipOf(tokenAddressandID[NAME]);
        if (Ownership.addr != msg.sender) revert("Error");
        dataAddress[NAME][setArea]=newDatas;
    }

    function getDataAddress(string memory NAME, string calldata Area) public view returns(string memory) {
        return dataAddress[NAME][Area];
    }


    function setBaseURI(string memory customBaseURI_) external onlyOwner {
        BASE_URI = customBaseURI_;
    }

    function setDomain(string memory domain_) external onlyOwner {
        domain = domain_;
    }

    function setRefRewards(uint8 _ref) external onlyOwner {
        ref = _ref;
    }

    function setContractURI(string memory customContractURI_) external onlyOwner {
        CONTRACT_URI = customContractURI_;
    }

    function setRoyaltyBps(uint256 royaltyBps_) external onlyOwner {
        royaltyBps = royaltyBps_;
    }

    function namediff(uint256 tokenId , string calldata name) external onlyOwner {
    tokenIDandAddress[tokenId]=name;
    tokenAddressandID[name]=tokenId;
    }

    function setRegisterPrice(uint256 Character2,uint256 Character3,uint256 Character4more) external onlyOwner {
        Cost2Character = Character2;
        Cost3Character = Character3;
        Cost4mCharacter = Character4more;
    }

        function Register(string memory NAME,address ref_address)
        public
        payable
    {
        uint256 price = Cost4mCharacter;
        uint256 charlength=bytes(NAME).length;
        require(charlength>1,"Write a Name");
        if(charlength==2) {price=Cost2Character;} else if(charlength==3){price=Cost3Character;} else {price=Cost4mCharacter;}
        require (tokenAddressandID[NAME] == 0 , "This is already taken");
        require(msg.value >= price, "Insufficient funds!");
        tokenIDandAddress[_currentIndex]=NAME;
        tokenAddressandID[NAME]=_currentIndex;
        if (ref_address!= 0x0000000000000000000000000000000000000000) {
        (bool success, ) = payable(ref_address).call{value:msg.value*ref/100}('');
        (bool success2, ) = payable(owner()).call{value:msg.value*(100-ref)/100}('');
        } else {
        (bool success, ) = payable(owner()).call{value:msg.value}('');
        }
        _safeMint(msg.sender,1);
    }




function walletOfOwnerName(address _owner)
    public
    view
    returns (string[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    string[] memory ownedTokenIds = new string[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = string.concat(tokenIDandAddress[currentTokenId],domain);

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

function walletOfOwnerNamePage(address _owner, uint256 startindex, uint256 endindex)
    public
    view
    returns (string[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    string[] memory ownedTokenIds = new string[](ownerTokenCount);
    uint256 starts = startindex;
    uint256 ends = endindex;
    uint256 ownedTokenIndex = 0;

    while (starts < ends) {
      address currentTokenOwner = ownerOf(starts);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = string.concat(tokenIDandAddress[starts],domain);

        ownedTokenIndex++;
      }

      starts++;
    }

    return ownedTokenIds;
  }


function lastAddresses(uint256 count)
    public
    view
    returns (string[] memory)
  {
    uint256 total = totalSupply();
    if(count>total){count=total;}
    string[] memory lastAddr = new string[](count);
    uint256 currentId = total - count;
    uint256 ownedTokenIndex = 0;
    require(currentId>=0,"Invalid");
    while (total > currentId) {
        lastAddr[ownedTokenIndex] = string.concat(tokenIDandAddress[total]);
        ownedTokenIndex++;
      total--;
    }

    return lastAddr;
  }

 function _checkName(string memory _name) public view returns(bool){
        uint allowedChars =0;
        bytes memory byteString = bytes(_name);
        bytes memory allowed = bytes(_allowChars);  
        for(uint i=0; i < byteString.length ; i++){
           for(uint j=0; j<allowed.length; j++){
              if(byteString[i]==allowed[j] )
              allowedChars++;         
           }
        }
        if (allowedChars==byteString.length) { return true; } else { return false; }
       
    }
    function withdraw() public onlyOwner nonReentrant {
        uint256 balance = address(this).balance;
        (bool success, ) = payable(owner()).call{value:balance}('');
        }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Cost2Character","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Cost3Character","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Cost4mCharacter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"NAME","type":"string"},{"internalType":"address","name":"ref_address","type":"address"}],"name":"Register","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"}],"name":"Resolver","outputs":[{"internalType":"address","name":"_resolver","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"}],"name":"_checkName","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"},{"internalType":"string","name":"","type":"string"}],"name":"dataAddress","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"NAME","type":"string"},{"internalType":"string","name":"Area","type":"string"}],"name":"getDataAddress","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"lastAddresses","outputs":[{"internalType":"string[]","name":"","type":"string[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"name","type":"string"}],"name":"namediff","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"","type":"address"}],"name":"primaryAddress","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"resolveAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyBps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"string","name":"NAME","type":"string"},{"internalType":"address","name":"newresolve","type":"address"}],"name":"setAddress","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":"string","name":"customBaseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"customContractURI_","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"NAME","type":"string"},{"internalType":"string","name":"setArea","type":"string"},{"internalType":"string","name":"newDatas","type":"string"}],"name":"setDataAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"domain_","type":"string"}],"name":"setDomain","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"NAME","type":"string"}],"name":"setPrimaryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_ref","type":"uint8"}],"name":"setRefRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"Character2","type":"uint256"},{"internalType":"uint256","name":"Character3","type":"uint256"},{"internalType":"uint256","name":"Character4more","type":"uint256"}],"name":"setRegisterPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"royaltyBps_","type":"uint256"}],"name":"setRoyaltyBps","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"tokenAddressandID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenIDandAddress","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"address","name":"_owner","type":"address"}],"name":"walletOfOwnerName","outputs":[{"internalType":"string[]","name":"","type":"string[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"startindex","type":"uint256"},{"internalType":"uint256","name":"endindex","type":"uint256"}],"name":"walletOfOwnerNamePage","outputs":[{"internalType":"string[]","name":"","type":"string[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266470de4df820000600c55662386f26fc10000600d556608e1bc9bf04000600e556000600f55600a601060006101000a81548160ff021916908360ff1602179055506040518060400160405280600481526020017f2e626e7300000000000000000000000000000000000000000000000000000000815250601190816200008c919062000bd4565b50604051806060016040528060278152602001620065e46027913960129081620000b7919062000bd4565b506040518060600160405280602f8152602001620065b5602f913960139081620000e2919062000bd4565b506040518060600160405280602681526020016200660b60269139601790816200010d919062000d20565b503480156200011b57600080fd5b506040518060400160405280600c81526020017f4261736520446f6d61696e7300000000000000000000000000000000000000008152506040518060400160405280600481526020017f2e626e7300000000000000000000000000000000000000000000000000000000815250816004908162000199919062000bd4565b508060059081620001ab919062000bd4565b50620001bc620002e060201b60201c565b6000819055505050620001e4620001d8620002e960201b60201c565b620002f160201b60201c565b6001600b819055506040518060400160405280600481526020017f62617365000000000000000000000000000000000000000000000000000000008152506001600080548152602001908152602001600020908162000244919062000bd4565b506000546002604051620002589062000e62565b9081526020016040518091039020819055503360146040516200027b9062000e62565b908152602001604051809103902060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620002da336001620003b760201b60201c565b62001051565b60006001905090565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003d9828260405180602001604052806000815250620003dd60201b60201c565b5050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036200044a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000830362000485576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200049a6000858386620007ca60201b60201c565b82600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836006600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426006600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050620006688673ffffffffffffffffffffffffffffffffffffffff16620007d060201b62002cc41760201c565b156200073a575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620006e66000878480600101955087620007f360201b60201c565b6200071d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106200066f5782600054146200073457600080fd5b620007a6565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106200073b575b816000819055505050620007c460008583866200095460201b60201c565b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000821620002e960201b60201c565b8786866040518563ffffffff1660e01b815260040162000845949392919062000f69565b6020604051808303816000875af19250505080156200088457506040513d601f19601f820116820180604052508101906200088191906200101f565b60015b62000901573d8060008114620008b7576040519150601f19603f3d011682016040523d82523d6000602084013e620008bc565b606091505b506000815103620008f9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620009dc57607f821691505b602082108103620009f257620009f162000994565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000a5c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000a1d565b62000a68868362000a1d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000ab562000aaf62000aa98462000a80565b62000a8a565b62000a80565b9050919050565b6000819050919050565b62000ad18362000a94565b62000ae962000ae08262000abc565b84845462000a2a565b825550505050565b600090565b62000b0062000af1565b62000b0d81848462000ac6565b505050565b5b8181101562000b355762000b2960008262000af6565b60018101905062000b13565b5050565b601f82111562000b845762000b4e81620009f8565b62000b598462000a0d565b8101602085101562000b69578190505b62000b8162000b788562000a0d565b83018262000b12565b50505b505050565b600082821c905092915050565b600062000ba96000198460080262000b89565b1980831691505092915050565b600062000bc4838362000b96565b9150826002028217905092915050565b62000bdf826200095a565b67ffffffffffffffff81111562000bfb5762000bfa62000965565b5b62000c078254620009c3565b62000c1482828562000b39565b600060209050601f83116001811462000c4c576000841562000c37578287015190505b62000c43858262000bb6565b86555062000cb3565b601f19841662000c5c86620009f8565b60005b8281101562000c865784890151825560018201915060208501945060208101905062000c5f565b8683101562000ca6578489015162000ca2601f89168262000b96565b8355505b6001600288020188555050505b505050505050565b60008190508160005260206000209050919050565b601f82111562000d1b5762000ce58162000cbb565b62000cf08462000a0d565b8101602085101562000d00578190505b62000d1862000d0f8562000a0d565b83018262000b12565b50505b505050565b62000d2b826200095a565b67ffffffffffffffff81111562000d475762000d4662000965565b5b62000d538254620009c3565b62000d6082828562000cd0565b600060209050601f83116001811462000d98576000841562000d83578287015190505b62000d8f858262000bb6565b86555062000dff565b601f19841662000da88662000cbb565b60005b8281101562000dd25784890151825560018201915060208501945060208101905062000dab565b8683101562000df2578489015162000dee601f89168262000b96565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b7f6261736500000000000000000000000000000000000000000000000000000000600082015250565b600062000e4a60048362000e07565b915062000e578262000e12565b600482019050919050565b600062000e6f8262000e3b565b9150819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000ea68262000e79565b9050919050565b62000eb88162000e99565b82525050565b62000ec98162000a80565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000f0b57808201518184015260208101905062000eee565b60008484015250505050565b6000601f19601f8301169050919050565b600062000f358262000ecf565b62000f41818562000eda565b935062000f5381856020860162000eeb565b62000f5e8162000f17565b840191505092915050565b600060808201905062000f80600083018762000ead565b62000f8f602083018662000ead565b62000f9e604083018562000ebe565b818103606083015262000fb2818462000f28565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000ff98162000fc2565b81146200100557600080fd5b50565b600081519050620010198162000fee565b92915050565b60006020828403121562001038576200103762000fbd565b5b6000620010488482850162001008565b91505092915050565b61555480620010616000396000f3fe60806040526004361061027d5760003560e01c80638da5cb5b1161014f578063c63adb2b116100c1578063e5eab0961161007a578063e5eab096146109f6578063e8a3d48514610a1f578063e985e9c514610a4a578063f121a87014610a87578063f2fde38b14610ac4578063f990f91a14610aed5761027d565b8063c63adb2b146108d6578063c6fbf9a914610901578063c72c43141461092a578063c87b56dd14610953578063cee17bde14610990578063d7d6c485146109cd5761027d565b8063a22cb46511610113578063a22cb465146107b6578063a515419d146107df578063a87e2e7c1461081c578063af52974414610847578063b6c6e69214610870578063b88d4fde146108ad5761027d565b80638da5cb5b146106d1578063922efb95146106fc578063938e3d7b1461073957806395d89b41146107625780639b2ea4bd1461078d5761027d565b80632a55205a116101f357806355f804b3116101ac57806355f804b31461059d5780636352211e146105c65780636e32e4991461060357806370a0823114610640578063715018a61461067d5780638699e738146106945761027d565b80632a55205a1461049b5780632f7758cd146104d95780633ccfd60b146105165780633e49fb7e1461052d57806342842e0e146105495780634865c572146105725761027d565b806312ced64b1161024557806312ced64b1461038d57806316ec3105146103b657806318160ddd146103e157806318f25ba31461040c5780631f72d8311461044957806323b872dd146104725761027d565b806301ffc9a71461028257806306fdde03146102bf578063081812fc146102ea578063095ea7b3146103275780630d6eec7814610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613ce2565b610b2a565b6040516102b69190613d2a565b60405180910390f35b3480156102cb57600080fd5b506102d4610c0c565b6040516102e19190613dd5565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c9190613e2d565b610c9e565b60405161031e9190613e9b565b60405180910390f35b34801561033357600080fd5b5061034e60048036038101906103499190613ee2565b610d1a565b005b34801561035c57600080fd5b5061037760048036038101906103729190614057565b610e1e565b60405161038491906140af565b60405180910390f35b34801561039957600080fd5b506103b460048036038101906103af9190614103565b610e4c565b005b3480156103c257600080fd5b506103cb610ee6565b6040516103d891906140af565b60405180910390f35b3480156103ed57600080fd5b506103f6610eec565b60405161040391906140af565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e9190614130565b610f03565b604051610440919061428f565b60405180910390f35b34801561045557600080fd5b50610470600480360381019061046b9190613e2d565b61103e565b005b34801561047e57600080fd5b50610499600480360381019061049491906142b1565b6110c4565b005b3480156104a757600080fd5b506104c260048036038101906104bd9190614304565b6110d4565b6040516104d0929190614344565b60405180910390f35b3480156104e557600080fd5b5061050060048036038101906104fb9190613e2d565b611110565b60405161050d919061428f565b60405180910390f35b34801561052257600080fd5b5061052b611257565b005b6105476004803603810190610542919061436d565b6113a4565b005b34801561055557600080fd5b50610570600480360381019061056b91906142b1565b611708565b005b34801561057e57600080fd5b50610587611728565b60405161059491906140af565b60405180910390f35b3480156105a957600080fd5b506105c460048036038101906105bf9190614057565b61172e565b005b3480156105d257600080fd5b506105ed60048036038101906105e89190613e2d565b6117bd565b6040516105fa9190613e9b565b60405180910390f35b34801561060f57600080fd5b5061062a60048036038101906106259190613e2d565b6117d3565b6040516106379190613dd5565b60405180910390f35b34801561064c57600080fd5b50610667600480360381019061066291906143c9565b611873565b60405161067491906140af565b60405180910390f35b34801561068957600080fd5b50610692611942565b005b3480156106a057600080fd5b506106bb60048036038101906106b691906143c9565b6119ca565b6040516106c89190613dd5565b60405180910390f35b3480156106dd57600080fd5b506106e6611a6a565b6040516106f39190613e9b565b60405180910390f35b34801561070857600080fd5b50610723600480360381019061071e9190614057565b611a94565b6040516107309190613d2a565b60405180910390f35b34801561074557600080fd5b50610760600480360381019061075b9190614057565b611c24565b005b34801561076e57600080fd5b50610777611cb3565b6040516107849190613dd5565b60405180910390f35b34801561079957600080fd5b506107b460048036038101906107af9190614456565b611d45565b005b3480156107c257600080fd5b506107dd60048036038101906107d891906144e2565b612018565b005b3480156107eb57600080fd5b5061080660048036038101906108019190614522565b61218f565b6040516108139190613dd5565b60405180910390f35b34801561082857600080fd5b5061083161225f565b60405161083e91906140af565b60405180910390f35b34801561085357600080fd5b5061086e6004803603810190610869919061459e565b612265565b005b34801561087c57600080fd5b5061089760048036038101906108929190614057565b612358565b6040516108a49190613e9b565b60405180910390f35b3480156108b957600080fd5b506108d460048036038101906108cf91906146f0565b6123a1565b005b3480156108e257600080fd5b506108eb612419565b6040516108f891906140af565b60405180910390f35b34801561090d57600080fd5b5061092860048036038101906109239190614773565b61241f565b005b34801561093657600080fd5b50610951600480360381019061094c91906147c0565b612512565b005b34801561095f57600080fd5b5061097a60048036038101906109759190613e2d565b6125a8565b6040516109879190613dd5565b60405180910390f35b34801561099c57600080fd5b506109b760048036038101906109b29190614057565b612650565b6040516109c49190613e9b565b60405180910390f35b3480156109d957600080fd5b506109f460048036038101906109ef9190614813565b612742565b005b348015610a0257600080fd5b50610a1d6004803603810190610a189190614057565b61280b565b005b348015610a2b57600080fd5b50610a3461289a565b604051610a419190613dd5565b60405180910390f35b348015610a5657600080fd5b50610a716004803603810190610a6c9190614873565b61292c565b604051610a7e9190613d2a565b60405180910390f35b348015610a9357600080fd5b50610aae6004803603810190610aa991906148b3565b6129c0565b604051610abb9190613dd5565b60405180910390f35b348015610ad057600080fd5b50610aeb6004803603810190610ae691906143c9565b612a99565b005b348015610af957600080fd5b50610b146004803603810190610b0f91906143c9565b612b90565b604051610b21919061428f565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bf557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c055750610c0482612ce7565b5b9050919050565b606060048054610c1b9061495a565b80601f0160208091040260200160405190810160405280929190818152602001828054610c479061495a565b8015610c945780601f10610c6957610100808354040283529160200191610c94565b820191906000526020600020905b815481529060010190602001808311610c7757829003601f168201915b5050505050905090565b6000610ca982612d51565b610cdf576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6008600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d25826117bd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d8c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610dab612d9f565b73ffffffffffffffffffffffffffffffffffffffff1614610e0e57610dd781610dd2612d9f565b61292c565b610e0d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610e19838383612da7565b505050565b6002818051602081018201805184825260208301602085012081835280955050505050506000915090505481565b610e54612d9f565b73ffffffffffffffffffffffffffffffffffffffff16610e72611a6a565b73ffffffffffffffffffffffffffffffffffffffff1614610ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebf906149d7565b60405180910390fd5b80601060006101000a81548160ff021916908360ff16021790555050565b600e5481565b6000610ef6612e59565b6003546000540303905090565b60606000610f1085611873565b905060008167ffffffffffffffff811115610f2e57610f2d613f2c565b5b604051908082528060200260200182016040528015610f6157816020015b6060815260200190600190039081610f4c5790505b5090506000859050600085905060005b8183101561102f576000610f84846117bd565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361101b57600160008581526020019081526020016000206011604051602001610fdf929190614a9a565b60405160208183030381529060405285838151811061100157611000614abe565b5b6020026020010181905250818061101790614b1c565b9250505b838061102690614b1c565b94505050610f71565b83955050505050509392505050565b611046612d9f565b73ffffffffffffffffffffffffffffffffffffffff16611064611a6a565b73ffffffffffffffffffffffffffffffffffffffff16146110ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b1906149d7565b60405180910390fd5b80600f8190555050565b6110cf838383612e62565b505050565b60008060006110e285613316565b90508060000151612710600f54866110fa9190614b64565b6111049190614bd5565b92509250509250929050565b6060600061111c610eec565b90508083111561112a578092505b60008367ffffffffffffffff81111561114657611145613f2c565b5b60405190808252806020026020018201604052801561117957816020015b60608152602001906001900390816111645790505b5090506000848361118a9190614c06565b90506000808210156111d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c890614c86565b60405180910390fd5b5b8184111561124b57600160008581526020019081526020016000206040516020016111fd9190614ca6565b60405160208183030381529060405283828151811061121f5761121e614abe565b5b6020026020010181905250808061123590614b1c565b915050838061124390614cbd565b9450506111d2565b82945050505050919050565b61125f612d9f565b73ffffffffffffffffffffffffffffffffffffffff1661127d611a6a565b73ffffffffffffffffffffffffffffffffffffffff16146112d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ca906149d7565b60405180910390fd5b6002600b5403611318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130f90614d32565b60405180910390fd5b6002600b819055506000479050600061132f611a6a565b73ffffffffffffffffffffffffffffffffffffffff168260405161135290614d83565b60006040518083038185875af1925050503d806000811461138f576040519150601f19603f3d011682016040523d82523d6000602084013e611394565b606091505b5050905050506001600b81905550565b6000600e549050600083519050600181116113f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113eb90614de4565b60405180910390fd5b6002810361140657600c54915061141f565b6003810361141857600d54915061141e565b600e5491505b5b60006002856040516114319190614e35565b90815260200160405180910390205414611480576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147790614e98565b60405180910390fd5b813410156114c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ba90614f04565b60405180910390fd5b83600160008054815260200190815260200160002090816114e491906150bb565b506000546002856040516114f89190614e35565b908152602001604051809103902081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146116825760008373ffffffffffffffffffffffffffffffffffffffff166064601060009054906101000a900460ff1660ff16346115779190614b64565b6115819190614bd5565b60405161158d90614d83565b60006040518083038185875af1925050503d80600081146115ca576040519150601f19603f3d011682016040523d82523d6000602084013e6115cf565b606091505b5050905060006115dd611a6a565b73ffffffffffffffffffffffffffffffffffffffff166064601060009054906101000a900460ff166064611611919061518d565b60ff163461161f9190614b64565b6116299190614bd5565b60405161163590614d83565b60006040518083038185875af1925050503d8060008114611672576040519150601f19603f3d011682016040523d82523d6000602084013e611677565b606091505b5050905050506116f7565b600061168c611a6a565b73ffffffffffffffffffffffffffffffffffffffff16346040516116af90614d83565b60006040518083038185875af1925050503d80600081146116ec576040519150601f19603f3d011682016040523d82523d6000602084013e6116f1565b606091505b50509050505b6117023360016135a1565b50505050565b611723838383604051806020016040528060008152506123a1565b505050565b600d5481565b611736612d9f565b73ffffffffffffffffffffffffffffffffffffffff16611754611a6a565b73ffffffffffffffffffffffffffffffffffffffff16146117aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a1906149d7565b60405180910390fd5b80601290816117b991906150bb565b5050565b60006117c882613316565b600001519050919050565b600160205280600052604060002060009150905080546117f29061495a565b80601f016020809104026020016040519081016040528092919081815260200182805461181e9061495a565b801561186b5780601f106118405761010080835404028352916020019161186b565b820191906000526020600020905b81548152906001019060200180831161184e57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118da576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61194a612d9f565b73ffffffffffffffffffffffffffffffffffffffff16611968611a6a565b73ffffffffffffffffffffffffffffffffffffffff16146119be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b5906149d7565b60405180910390fd5b6119c860006135bf565b565b601560205280600052604060002060009150905080546119e99061495a565b80601f0160208091040260200160405190810160405280929190818152602001828054611a159061495a565b8015611a625780601f10611a3757610100808354040283529160200191611a62565b820191906000526020600020905b815481529060010190602001808311611a4557829003601f168201915b505050505081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080600090506000839050600060178054611aaf9061495a565b80601f0160208091040260200160405190810160405280929190818152602001828054611adb9061495a565b8015611b285780601f10611afd57610100808354040283529160200191611b28565b820191906000526020600020905b815481529060010190602001808311611b0b57829003601f168201915b5050505050905060005b8251811015611c025760005b8251811015611bee57828181518110611b5a57611b59614abe565b5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916848381518110611b9a57611b99614abe565b5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191603611bdb578480611bd790614b1c565b9550505b8080611be690614b1c565b915050611b3e565b508080611bfa90614b1c565b915050611b32565b5081518303611c175760019350505050611c1f565b600093505050505b919050565b611c2c612d9f565b73ffffffffffffffffffffffffffffffffffffffff16611c4a611a6a565b73ffffffffffffffffffffffffffffffffffffffff1614611ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c97906149d7565b60405180910390fd5b8060139081611caf91906150bb565b5050565b606060058054611cc29061495a565b80601f0160208091040260200160405190810160405280929190818152602001828054611cee9061495a565b8015611d3b5780601f10611d1057610100808354040283529160200191611d3b565b820191906000526020600020905b815481529060010190602001808311611d1e57829003601f168201915b5050505050905090565b6000611d7060028585604051611d5c9291906151e7565b908152602001604051809103902054613316565b90503373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddb9061524c565b60405180910390fd5b60006015600060148787604051611dfc9291906151e7565b908152602001604051809103902060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054611e709061495a565b80601f0160208091040260200160405190810160405280929190818152602001828054611e9c9061495a565b8015611ee95780601f10611ebe57610100808354040283529160200191611ee9565b820191906000526020600020905b815481529060010190602001808311611ecc57829003601f168201915b505050505090508484604051611f00929190615291565b6040518091039020818051906020012003611fb257604051806020016040528060008152506015600060148888604051611f3b9291906151e7565b908152602001604051809103902060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209081611fb091906150bb565b505b8260148686604051611fc59291906151e7565b908152602001604051809103902060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505050565b612020612d9f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612084576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060096000612091612d9f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661213e612d9f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121839190613d2a565b60405180910390a35050565b60606016846040516121a19190614e35565b908152602001604051809103902083836040516121bf9291906151e7565b908152602001604051809103902080546121d89061495a565b80601f01602080910402602001604051908101604052809291908181526020018280546122049061495a565b80156122515780601f1061222657610100808354040283529160200191612251565b820191906000526020600020905b81548152906001019060200180831161223457829003601f168201915b505050505090509392505050565b600c5481565b60006122906002878760405161227c9291906151e7565b908152602001604051809103902054613316565b90503373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fb9061524c565b60405180910390fd5b81601687876040516123179291906151e7565b908152602001604051809103902085856040516123359291906151e7565b9081526020016040518091039020908161234f91906150bb565b50505050505050565b6014818051602081018201805184825260208301602085012081835280955050505050506000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6123ac848484612e62565b6123cb8373ffffffffffffffffffffffffffffffffffffffff16612cc4565b15612413576123dc84848484613685565b612412576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600f5481565b600061244a600284846040516124369291906151e7565b908152602001604051809103902054613316565b90503373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b59061524c565b60405180910390fd5b8282601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020918261250c9291906152b5565b50505050565b61251a612d9f565b73ffffffffffffffffffffffffffffffffffffffff16612538611a6a565b73ffffffffffffffffffffffffffffffffffffffff161461258e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612585906149d7565b60405180910390fd5b82600c8190555081600d8190555080600e81905550505050565b60606125b382612d51565b6125e9576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006125f36137d5565b905060008151036126135760405180602001604052806000815250612648565b8060016000858152602001908152602001600020604051602001612638929190615385565b6040516020818303038152906040525b915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166014836040516126799190614e35565b908152602001604051809103902060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036126fb5760006126ec6002846040516126d89190614e35565b908152602001604051809103902054613316565b9050806000015191505061273d565b60148260405161270b9190614e35565b908152602001604051809103902060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505b919050565b61274a612d9f565b73ffffffffffffffffffffffffffffffffffffffff16612768611a6a565b73ffffffffffffffffffffffffffffffffffffffff16146127be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b5906149d7565b60405180910390fd5b81816001600086815260200190815260200160002091826127e09291906152b5565b5082600283836040516127f49291906151e7565b908152602001604051809103902081905550505050565b612813612d9f565b73ffffffffffffffffffffffffffffffffffffffff16612831611a6a565b73ffffffffffffffffffffffffffffffffffffffff1614612887576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287e906149d7565b60405180910390fd5b806011908161289691906150bb565b5050565b6060601380546128a99061495a565b80601f01602080910402602001604051908101604052809291908181526020018280546128d59061495a565b80156129225780601f106128f757610100808354040283529160200191612922565b820191906000526020600020905b81548152906001019060200180831161290557829003601f168201915b5050505050905090565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60168280516020810182018051848252602083016020850120818352809550505050505081805160208101820180518482526020830160208501208183528095505050505050600091509150508054612a189061495a565b80601f0160208091040260200160405190810160405280929190818152602001828054612a449061495a565b8015612a915780601f10612a6657610100808354040283529160200191612a91565b820191906000526020600020905b815481529060010190602001808311612a7457829003601f168201915b505050505081565b612aa1612d9f565b73ffffffffffffffffffffffffffffffffffffffff16612abf611a6a565b73ffffffffffffffffffffffffffffffffffffffff1614612b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0c906149d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7b9061541b565b60405180910390fd5b612b8d816135bf565b50565b60606000612b9d83611873565b905060008167ffffffffffffffff811115612bbb57612bba613f2c565b5b604051908082528060200260200182016040528015612bee57816020015b6060815260200190600190039081612bd95790505b50905060006001905060005b83811015612cb8576000612c0d836117bd565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612ca457600160008481526020019081526020016000206011604051602001612c68929190614a9a565b604051602081830303815290604052848381518110612c8a57612c89614abe565b5b60200260200101819052508180612ca090614b1c565b9250505b8280612caf90614b1c565b93505050612bfa565b82945050505050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612d5c612e59565b11158015612d6b575060005482105b8015612d98575060066000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826008600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000612e6d82613316565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ed8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612ef9612d9f565b73ffffffffffffffffffffffffffffffffffffffff161480612f285750612f2785612f22612d9f565b61292c565b5b80612f6d5750612f36612d9f565b73ffffffffffffffffffffffffffffffffffffffff16612f5584610c9e565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612fa6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361300c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6130198585856001613867565b61302560008487612da7565b6001600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600660008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600660008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036132a45760005482146132a357878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461330f858585600161386d565b5050505050565b61331e613c33565b60008290508061332c612e59565b1161356a57600054811015613569576000600660008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161356757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461344b57809250505061359c565b5b60011561356657818060019003925050600660008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461356157809250505061359c565b61344c565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6135bb828260405180602001604052806000815250613873565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026136ab612d9f565b8786866040518563ffffffff1660e01b81526004016136cd9493929190615490565b6020604051808303816000875af192505050801561370957506040513d601f19601f8201168201806040525081019061370691906154f1565b60015b613782573d8060008114613739576040519150601f19603f3d011682016040523d82523d6000602084013e61373e565b606091505b50600081510361377a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601280546137e49061495a565b80601f01602080910402602001604051908101604052809291908181526020018280546138109061495a565b801561385d5780601f106138325761010080835404028352916020019161385d565b820191906000526020600020905b81548152906001019060200180831161384057829003601f168201915b5050505050905090565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036138df576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303613919576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6139266000858386613867565b82600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836006600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426006600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050613ae78673ffffffffffffffffffffffffffffffffffffffff16612cc4565b15613bac575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613b5c6000878480600101955087613685565b613b92576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210613aed578260005414613ba757600080fd5b613c17565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613bad575b816000819055505050613c2d600085838661386d565b50505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613cbf81613c8a565b8114613cca57600080fd5b50565b600081359050613cdc81613cb6565b92915050565b600060208284031215613cf857613cf7613c80565b5b6000613d0684828501613ccd565b91505092915050565b60008115159050919050565b613d2481613d0f565b82525050565b6000602082019050613d3f6000830184613d1b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613d7f578082015181840152602081019050613d64565b60008484015250505050565b6000601f19601f8301169050919050565b6000613da782613d45565b613db18185613d50565b9350613dc1818560208601613d61565b613dca81613d8b565b840191505092915050565b60006020820190508181036000830152613def8184613d9c565b905092915050565b6000819050919050565b613e0a81613df7565b8114613e1557600080fd5b50565b600081359050613e2781613e01565b92915050565b600060208284031215613e4357613e42613c80565b5b6000613e5184828501613e18565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613e8582613e5a565b9050919050565b613e9581613e7a565b82525050565b6000602082019050613eb06000830184613e8c565b92915050565b613ebf81613e7a565b8114613eca57600080fd5b50565b600081359050613edc81613eb6565b92915050565b60008060408385031215613ef957613ef8613c80565b5b6000613f0785828601613ecd565b9250506020613f1885828601613e18565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613f6482613d8b565b810181811067ffffffffffffffff82111715613f8357613f82613f2c565b5b80604052505050565b6000613f96613c76565b9050613fa28282613f5b565b919050565b600067ffffffffffffffff821115613fc257613fc1613f2c565b5b613fcb82613d8b565b9050602081019050919050565b82818337600083830152505050565b6000613ffa613ff584613fa7565b613f8c565b90508281526020810184848401111561401657614015613f27565b5b614021848285613fd8565b509392505050565b600082601f83011261403e5761403d613f22565b5b813561404e848260208601613fe7565b91505092915050565b60006020828403121561406d5761406c613c80565b5b600082013567ffffffffffffffff81111561408b5761408a613c85565b5b61409784828501614029565b91505092915050565b6140a981613df7565b82525050565b60006020820190506140c460008301846140a0565b92915050565b600060ff82169050919050565b6140e0816140ca565b81146140eb57600080fd5b50565b6000813590506140fd816140d7565b92915050565b60006020828403121561411957614118613c80565b5b6000614127848285016140ee565b91505092915050565b60008060006060848603121561414957614148613c80565b5b600061415786828701613ecd565b935050602061416886828701613e18565b925050604061417986828701613e18565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b600082825260208201905092915050565b60006141cb82613d45565b6141d581856141af565b93506141e5818560208601613d61565b6141ee81613d8b565b840191505092915050565b600061420583836141c0565b905092915050565b6000602082019050919050565b600061422582614183565b61422f818561418e565b9350836020820285016142418561419f565b8060005b8581101561427d578484038952815161425e85826141f9565b94506142698361420d565b925060208a01995050600181019050614245565b50829750879550505050505092915050565b600060208201905081810360008301526142a9818461421a565b905092915050565b6000806000606084860312156142ca576142c9613c80565b5b60006142d886828701613ecd565b93505060206142e986828701613ecd565b92505060406142fa86828701613e18565b9150509250925092565b6000806040838503121561431b5761431a613c80565b5b600061432985828601613e18565b925050602061433a85828601613e18565b9150509250929050565b60006040820190506143596000830185613e8c565b61436660208301846140a0565b9392505050565b6000806040838503121561438457614383613c80565b5b600083013567ffffffffffffffff8111156143a2576143a1613c85565b5b6143ae85828601614029565b92505060206143bf85828601613ecd565b9150509250929050565b6000602082840312156143df576143de613c80565b5b60006143ed84828501613ecd565b91505092915050565b600080fd5b600080fd5b60008083601f84011261441657614415613f22565b5b8235905067ffffffffffffffff811115614433576144326143f6565b5b60208301915083600182028301111561444f5761444e6143fb565b5b9250929050565b60008060006040848603121561446f5761446e613c80565b5b600084013567ffffffffffffffff81111561448d5761448c613c85565b5b61449986828701614400565b935093505060206144ac86828701613ecd565b9150509250925092565b6144bf81613d0f565b81146144ca57600080fd5b50565b6000813590506144dc816144b6565b92915050565b600080604083850312156144f9576144f8613c80565b5b600061450785828601613ecd565b9250506020614518858286016144cd565b9150509250929050565b60008060006040848603121561453b5761453a613c80565b5b600084013567ffffffffffffffff81111561455957614558613c85565b5b61456586828701614029565b935050602084013567ffffffffffffffff81111561458657614585613c85565b5b61459286828701614400565b92509250509250925092565b6000806000806000606086880312156145ba576145b9613c80565b5b600086013567ffffffffffffffff8111156145d8576145d7613c85565b5b6145e488828901614400565b9550955050602086013567ffffffffffffffff81111561460757614606613c85565b5b61461388828901614400565b9350935050604086013567ffffffffffffffff81111561463657614635613c85565b5b61464288828901614029565b9150509295509295909350565b600067ffffffffffffffff82111561466a57614669613f2c565b5b61467382613d8b565b9050602081019050919050565b600061469361468e8461464f565b613f8c565b9050828152602081018484840111156146af576146ae613f27565b5b6146ba848285613fd8565b509392505050565b600082601f8301126146d7576146d6613f22565b5b81356146e7848260208601614680565b91505092915050565b6000806000806080858703121561470a57614709613c80565b5b600061471887828801613ecd565b945050602061472987828801613ecd565b935050604061473a87828801613e18565b925050606085013567ffffffffffffffff81111561475b5761475a613c85565b5b614767878288016146c2565b91505092959194509250565b6000806020838503121561478a57614789613c80565b5b600083013567ffffffffffffffff8111156147a8576147a7613c85565b5b6147b485828601614400565b92509250509250929050565b6000806000606084860312156147d9576147d8613c80565b5b60006147e786828701613e18565b93505060206147f886828701613e18565b925050604061480986828701613e18565b9150509250925092565b60008060006040848603121561482c5761482b613c80565b5b600061483a86828701613e18565b935050602084013567ffffffffffffffff81111561485b5761485a613c85565b5b61486786828701614400565b92509250509250925092565b6000806040838503121561488a57614889613c80565b5b600061489885828601613ecd565b92505060206148a985828601613ecd565b9150509250929050565b600080604083850312156148ca576148c9613c80565b5b600083013567ffffffffffffffff8111156148e8576148e7613c85565b5b6148f485828601614029565b925050602083013567ffffffffffffffff81111561491557614914613c85565b5b61492185828601614029565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061497257607f821691505b6020821081036149855761498461492b565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006149c1602083613d50565b91506149cc8261498b565b602082019050919050565b600060208201905081810360008301526149f0816149b4565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154614a248161495a565b614a2e81866149f7565b94506001821660008114614a495760018114614a5e57614a91565b60ff1983168652811515820286019350614a91565b614a6785614a02565b60005b83811015614a8957815481890152600182019150602081019050614a6a565b838801955050505b50505092915050565b6000614aa68285614a17565b9150614ab28284614a17565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614b2782613df7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614b5957614b58614aed565b5b600182019050919050565b6000614b6f82613df7565b9150614b7a83613df7565b9250828202614b8881613df7565b91508282048414831517614b9f57614b9e614aed565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614be082613df7565b9150614beb83613df7565b925082614bfb57614bfa614ba6565b5b828204905092915050565b6000614c1182613df7565b9150614c1c83613df7565b9250828203905081811115614c3457614c33614aed565b5b92915050565b7f496e76616c696400000000000000000000000000000000000000000000000000600082015250565b6000614c70600783613d50565b9150614c7b82614c3a565b602082019050919050565b60006020820190508181036000830152614c9f81614c63565b9050919050565b6000614cb28284614a17565b915081905092915050565b6000614cc882613df7565b915060008203614cdb57614cda614aed565b5b600182039050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614d1c601f83613d50565b9150614d2782614ce6565b602082019050919050565b60006020820190508181036000830152614d4b81614d0f565b9050919050565b600081905092915050565b50565b6000614d6d600083614d52565b9150614d7882614d5d565b600082019050919050565b6000614d8e82614d60565b9150819050919050565b7f57726974652061204e616d650000000000000000000000000000000000000000600082015250565b6000614dce600c83613d50565b9150614dd982614d98565b602082019050919050565b60006020820190508181036000830152614dfd81614dc1565b9050919050565b6000614e0f82613d45565b614e1981856149f7565b9350614e29818560208601613d61565b80840191505092915050565b6000614e418284614e04565b915081905092915050565b7f5468697320697320616c72656164792074616b656e0000000000000000000000600082015250565b6000614e82601583613d50565b9150614e8d82614e4c565b602082019050919050565b60006020820190508181036000830152614eb181614e75565b9050919050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000614eee601383613d50565b9150614ef982614eb8565b602082019050919050565b60006020820190508181036000830152614f1d81614ee1565b9050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302614f717fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614f34565b614f7b8683614f34565b95508019841693508086168417925050509392505050565b6000819050919050565b6000614fb8614fb3614fae84613df7565b614f93565b613df7565b9050919050565b6000819050919050565b614fd283614f9d565b614fe6614fde82614fbf565b848454614f41565b825550505050565b600090565b614ffb614fee565b615006818484614fc9565b505050565b5b8181101561502a5761501f600082614ff3565b60018101905061500c565b5050565b601f82111561506f5761504081614a02565b61504984614f24565b81016020851015615058578190505b61506c61506485614f24565b83018261500b565b50505b505050565b600082821c905092915050565b600061509260001984600802615074565b1980831691505092915050565b60006150ab8383615081565b9150826002028217905092915050565b6150c482613d45565b67ffffffffffffffff8111156150dd576150dc613f2c565b5b6150e7825461495a565b6150f282828561502e565b600060209050601f8311600181146151255760008415615113578287015190505b61511d858261509f565b865550615185565b601f19841661513386614a02565b60005b8281101561515b57848901518255600182019150602085019450602081019050615136565b868310156151785784890151615174601f891682615081565b8355505b6001600288020188555050505b505050505050565b6000615198826140ca565b91506151a3836140ca565b9250828203905060ff8111156151bc576151bb614aed565b5b92915050565b60006151ce83856149f7565b93506151db838584613fd8565b82840190509392505050565b60006151f48284866151c2565b91508190509392505050565b7f4572726f72000000000000000000000000000000000000000000000000000000600082015250565b6000615236600583613d50565b915061524182615200565b602082019050919050565b6000602082019050818103600083015261526581615229565b9050919050565b60006152788385614d52565b9350615285838584613fd8565b82840190509392505050565b600061529e82848661526c565b91508190509392505050565b600082905092915050565b6152bf83836152aa565b67ffffffffffffffff8111156152d8576152d7613f2c565b5b6152e2825461495a565b6152ed82828561502e565b6000601f83116001811461531c576000841561530a578287013590505b615314858261509f565b86555061537c565b601f19841661532a86614a02565b60005b828110156153525784890135825560018201915060208501945060208101905061532d565b8683101561536f578489013561536b601f891682615081565b8355505b6001600288020188555050505b50505050505050565b60006153918285614e04565b915061539d8284614a17565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615405602683613d50565b9150615410826153a9565b604082019050919050565b60006020820190508181036000830152615434816153f8565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006154628261543b565b61546c8185615446565b935061547c818560208601613d61565b61548581613d8b565b840191505092915050565b60006080820190506154a56000830187613e8c565b6154b26020830186613e8c565b6154bf60408301856140a0565b81810360608301526154d18184615457565b905095945050505050565b6000815190506154eb81613cb6565b92915050565b60006020828403121561550757615506613c80565b5b6000615515848285016154dc565b9150509291505056fea264697066735822122040a318383745aae64541a0f249a84bd2c229a4dddbcb17722247b0b3c9b10e8864736f6c6343000812003368747470733a2f2f646174612e626173656e616d652e646f6d61696e732f636f6e74726163745f6e65772e6a736f6e68747470733a2f2f646174612e626173656e616d652e646f6d61696e732f6d657461646174612f303132333435363738392d5f6162636465666768696a6b6c6d6e6f707172737475767778797a

Deployed Bytecode

0x60806040526004361061027d5760003560e01c80638da5cb5b1161014f578063c63adb2b116100c1578063e5eab0961161007a578063e5eab096146109f6578063e8a3d48514610a1f578063e985e9c514610a4a578063f121a87014610a87578063f2fde38b14610ac4578063f990f91a14610aed5761027d565b8063c63adb2b146108d6578063c6fbf9a914610901578063c72c43141461092a578063c87b56dd14610953578063cee17bde14610990578063d7d6c485146109cd5761027d565b8063a22cb46511610113578063a22cb465146107b6578063a515419d146107df578063a87e2e7c1461081c578063af52974414610847578063b6c6e69214610870578063b88d4fde146108ad5761027d565b80638da5cb5b146106d1578063922efb95146106fc578063938e3d7b1461073957806395d89b41146107625780639b2ea4bd1461078d5761027d565b80632a55205a116101f357806355f804b3116101ac57806355f804b31461059d5780636352211e146105c65780636e32e4991461060357806370a0823114610640578063715018a61461067d5780638699e738146106945761027d565b80632a55205a1461049b5780632f7758cd146104d95780633ccfd60b146105165780633e49fb7e1461052d57806342842e0e146105495780634865c572146105725761027d565b806312ced64b1161024557806312ced64b1461038d57806316ec3105146103b657806318160ddd146103e157806318f25ba31461040c5780631f72d8311461044957806323b872dd146104725761027d565b806301ffc9a71461028257806306fdde03146102bf578063081812fc146102ea578063095ea7b3146103275780630d6eec7814610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613ce2565b610b2a565b6040516102b69190613d2a565b60405180910390f35b3480156102cb57600080fd5b506102d4610c0c565b6040516102e19190613dd5565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c9190613e2d565b610c9e565b60405161031e9190613e9b565b60405180910390f35b34801561033357600080fd5b5061034e60048036038101906103499190613ee2565b610d1a565b005b34801561035c57600080fd5b5061037760048036038101906103729190614057565b610e1e565b60405161038491906140af565b60405180910390f35b34801561039957600080fd5b506103b460048036038101906103af9190614103565b610e4c565b005b3480156103c257600080fd5b506103cb610ee6565b6040516103d891906140af565b60405180910390f35b3480156103ed57600080fd5b506103f6610eec565b60405161040391906140af565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e9190614130565b610f03565b604051610440919061428f565b60405180910390f35b34801561045557600080fd5b50610470600480360381019061046b9190613e2d565b61103e565b005b34801561047e57600080fd5b50610499600480360381019061049491906142b1565b6110c4565b005b3480156104a757600080fd5b506104c260048036038101906104bd9190614304565b6110d4565b6040516104d0929190614344565b60405180910390f35b3480156104e557600080fd5b5061050060048036038101906104fb9190613e2d565b611110565b60405161050d919061428f565b60405180910390f35b34801561052257600080fd5b5061052b611257565b005b6105476004803603810190610542919061436d565b6113a4565b005b34801561055557600080fd5b50610570600480360381019061056b91906142b1565b611708565b005b34801561057e57600080fd5b50610587611728565b60405161059491906140af565b60405180910390f35b3480156105a957600080fd5b506105c460048036038101906105bf9190614057565b61172e565b005b3480156105d257600080fd5b506105ed60048036038101906105e89190613e2d565b6117bd565b6040516105fa9190613e9b565b60405180910390f35b34801561060f57600080fd5b5061062a60048036038101906106259190613e2d565b6117d3565b6040516106379190613dd5565b60405180910390f35b34801561064c57600080fd5b50610667600480360381019061066291906143c9565b611873565b60405161067491906140af565b60405180910390f35b34801561068957600080fd5b50610692611942565b005b3480156106a057600080fd5b506106bb60048036038101906106b691906143c9565b6119ca565b6040516106c89190613dd5565b60405180910390f35b3480156106dd57600080fd5b506106e6611a6a565b6040516106f39190613e9b565b60405180910390f35b34801561070857600080fd5b50610723600480360381019061071e9190614057565b611a94565b6040516107309190613d2a565b60405180910390f35b34801561074557600080fd5b50610760600480360381019061075b9190614057565b611c24565b005b34801561076e57600080fd5b50610777611cb3565b6040516107849190613dd5565b60405180910390f35b34801561079957600080fd5b506107b460048036038101906107af9190614456565b611d45565b005b3480156107c257600080fd5b506107dd60048036038101906107d891906144e2565b612018565b005b3480156107eb57600080fd5b5061080660048036038101906108019190614522565b61218f565b6040516108139190613dd5565b60405180910390f35b34801561082857600080fd5b5061083161225f565b60405161083e91906140af565b60405180910390f35b34801561085357600080fd5b5061086e6004803603810190610869919061459e565b612265565b005b34801561087c57600080fd5b5061089760048036038101906108929190614057565b612358565b6040516108a49190613e9b565b60405180910390f35b3480156108b957600080fd5b506108d460048036038101906108cf91906146f0565b6123a1565b005b3480156108e257600080fd5b506108eb612419565b6040516108f891906140af565b60405180910390f35b34801561090d57600080fd5b5061092860048036038101906109239190614773565b61241f565b005b34801561093657600080fd5b50610951600480360381019061094c91906147c0565b612512565b005b34801561095f57600080fd5b5061097a60048036038101906109759190613e2d565b6125a8565b6040516109879190613dd5565b60405180910390f35b34801561099c57600080fd5b506109b760048036038101906109b29190614057565b612650565b6040516109c49190613e9b565b60405180910390f35b3480156109d957600080fd5b506109f460048036038101906109ef9190614813565b612742565b005b348015610a0257600080fd5b50610a1d6004803603810190610a189190614057565b61280b565b005b348015610a2b57600080fd5b50610a3461289a565b604051610a419190613dd5565b60405180910390f35b348015610a5657600080fd5b50610a716004803603810190610a6c9190614873565b61292c565b604051610a7e9190613d2a565b60405180910390f35b348015610a9357600080fd5b50610aae6004803603810190610aa991906148b3565b6129c0565b604051610abb9190613dd5565b60405180910390f35b348015610ad057600080fd5b50610aeb6004803603810190610ae691906143c9565b612a99565b005b348015610af957600080fd5b50610b146004803603810190610b0f91906143c9565b612b90565b604051610b21919061428f565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bf557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c055750610c0482612ce7565b5b9050919050565b606060048054610c1b9061495a565b80601f0160208091040260200160405190810160405280929190818152602001828054610c479061495a565b8015610c945780601f10610c6957610100808354040283529160200191610c94565b820191906000526020600020905b815481529060010190602001808311610c7757829003601f168201915b5050505050905090565b6000610ca982612d51565b610cdf576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6008600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d25826117bd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d8c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610dab612d9f565b73ffffffffffffffffffffffffffffffffffffffff1614610e0e57610dd781610dd2612d9f565b61292c565b610e0d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610e19838383612da7565b505050565b6002818051602081018201805184825260208301602085012081835280955050505050506000915090505481565b610e54612d9f565b73ffffffffffffffffffffffffffffffffffffffff16610e72611a6a565b73ffffffffffffffffffffffffffffffffffffffff1614610ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebf906149d7565b60405180910390fd5b80601060006101000a81548160ff021916908360ff16021790555050565b600e5481565b6000610ef6612e59565b6003546000540303905090565b60606000610f1085611873565b905060008167ffffffffffffffff811115610f2e57610f2d613f2c565b5b604051908082528060200260200182016040528015610f6157816020015b6060815260200190600190039081610f4c5790505b5090506000859050600085905060005b8183101561102f576000610f84846117bd565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361101b57600160008581526020019081526020016000206011604051602001610fdf929190614a9a565b60405160208183030381529060405285838151811061100157611000614abe565b5b6020026020010181905250818061101790614b1c565b9250505b838061102690614b1c565b94505050610f71565b83955050505050509392505050565b611046612d9f565b73ffffffffffffffffffffffffffffffffffffffff16611064611a6a565b73ffffffffffffffffffffffffffffffffffffffff16146110ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b1906149d7565b60405180910390fd5b80600f8190555050565b6110cf838383612e62565b505050565b60008060006110e285613316565b90508060000151612710600f54866110fa9190614b64565b6111049190614bd5565b92509250509250929050565b6060600061111c610eec565b90508083111561112a578092505b60008367ffffffffffffffff81111561114657611145613f2c565b5b60405190808252806020026020018201604052801561117957816020015b60608152602001906001900390816111645790505b5090506000848361118a9190614c06565b90506000808210156111d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c890614c86565b60405180910390fd5b5b8184111561124b57600160008581526020019081526020016000206040516020016111fd9190614ca6565b60405160208183030381529060405283828151811061121f5761121e614abe565b5b6020026020010181905250808061123590614b1c565b915050838061124390614cbd565b9450506111d2565b82945050505050919050565b61125f612d9f565b73ffffffffffffffffffffffffffffffffffffffff1661127d611a6a565b73ffffffffffffffffffffffffffffffffffffffff16146112d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ca906149d7565b60405180910390fd5b6002600b5403611318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130f90614d32565b60405180910390fd5b6002600b819055506000479050600061132f611a6a565b73ffffffffffffffffffffffffffffffffffffffff168260405161135290614d83565b60006040518083038185875af1925050503d806000811461138f576040519150601f19603f3d011682016040523d82523d6000602084013e611394565b606091505b5050905050506001600b81905550565b6000600e549050600083519050600181116113f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113eb90614de4565b60405180910390fd5b6002810361140657600c54915061141f565b6003810361141857600d54915061141e565b600e5491505b5b60006002856040516114319190614e35565b90815260200160405180910390205414611480576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147790614e98565b60405180910390fd5b813410156114c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ba90614f04565b60405180910390fd5b83600160008054815260200190815260200160002090816114e491906150bb565b506000546002856040516114f89190614e35565b908152602001604051809103902081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146116825760008373ffffffffffffffffffffffffffffffffffffffff166064601060009054906101000a900460ff1660ff16346115779190614b64565b6115819190614bd5565b60405161158d90614d83565b60006040518083038185875af1925050503d80600081146115ca576040519150601f19603f3d011682016040523d82523d6000602084013e6115cf565b606091505b5050905060006115dd611a6a565b73ffffffffffffffffffffffffffffffffffffffff166064601060009054906101000a900460ff166064611611919061518d565b60ff163461161f9190614b64565b6116299190614bd5565b60405161163590614d83565b60006040518083038185875af1925050503d8060008114611672576040519150601f19603f3d011682016040523d82523d6000602084013e611677565b606091505b5050905050506116f7565b600061168c611a6a565b73ffffffffffffffffffffffffffffffffffffffff16346040516116af90614d83565b60006040518083038185875af1925050503d80600081146116ec576040519150601f19603f3d011682016040523d82523d6000602084013e6116f1565b606091505b50509050505b6117023360016135a1565b50505050565b611723838383604051806020016040528060008152506123a1565b505050565b600d5481565b611736612d9f565b73ffffffffffffffffffffffffffffffffffffffff16611754611a6a565b73ffffffffffffffffffffffffffffffffffffffff16146117aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a1906149d7565b60405180910390fd5b80601290816117b991906150bb565b5050565b60006117c882613316565b600001519050919050565b600160205280600052604060002060009150905080546117f29061495a565b80601f016020809104026020016040519081016040528092919081815260200182805461181e9061495a565b801561186b5780601f106118405761010080835404028352916020019161186b565b820191906000526020600020905b81548152906001019060200180831161184e57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118da576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61194a612d9f565b73ffffffffffffffffffffffffffffffffffffffff16611968611a6a565b73ffffffffffffffffffffffffffffffffffffffff16146119be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b5906149d7565b60405180910390fd5b6119c860006135bf565b565b601560205280600052604060002060009150905080546119e99061495a565b80601f0160208091040260200160405190810160405280929190818152602001828054611a159061495a565b8015611a625780601f10611a3757610100808354040283529160200191611a62565b820191906000526020600020905b815481529060010190602001808311611a4557829003601f168201915b505050505081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080600090506000839050600060178054611aaf9061495a565b80601f0160208091040260200160405190810160405280929190818152602001828054611adb9061495a565b8015611b285780601f10611afd57610100808354040283529160200191611b28565b820191906000526020600020905b815481529060010190602001808311611b0b57829003601f168201915b5050505050905060005b8251811015611c025760005b8251811015611bee57828181518110611b5a57611b59614abe565b5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916848381518110611b9a57611b99614abe565b5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191603611bdb578480611bd790614b1c565b9550505b8080611be690614b1c565b915050611b3e565b508080611bfa90614b1c565b915050611b32565b5081518303611c175760019350505050611c1f565b600093505050505b919050565b611c2c612d9f565b73ffffffffffffffffffffffffffffffffffffffff16611c4a611a6a565b73ffffffffffffffffffffffffffffffffffffffff1614611ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c97906149d7565b60405180910390fd5b8060139081611caf91906150bb565b5050565b606060058054611cc29061495a565b80601f0160208091040260200160405190810160405280929190818152602001828054611cee9061495a565b8015611d3b5780601f10611d1057610100808354040283529160200191611d3b565b820191906000526020600020905b815481529060010190602001808311611d1e57829003601f168201915b5050505050905090565b6000611d7060028585604051611d5c9291906151e7565b908152602001604051809103902054613316565b90503373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddb9061524c565b60405180910390fd5b60006015600060148787604051611dfc9291906151e7565b908152602001604051809103902060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054611e709061495a565b80601f0160208091040260200160405190810160405280929190818152602001828054611e9c9061495a565b8015611ee95780601f10611ebe57610100808354040283529160200191611ee9565b820191906000526020600020905b815481529060010190602001808311611ecc57829003601f168201915b505050505090508484604051611f00929190615291565b6040518091039020818051906020012003611fb257604051806020016040528060008152506015600060148888604051611f3b9291906151e7565b908152602001604051809103902060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209081611fb091906150bb565b505b8260148686604051611fc59291906151e7565b908152602001604051809103902060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505050565b612020612d9f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612084576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060096000612091612d9f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661213e612d9f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121839190613d2a565b60405180910390a35050565b60606016846040516121a19190614e35565b908152602001604051809103902083836040516121bf9291906151e7565b908152602001604051809103902080546121d89061495a565b80601f01602080910402602001604051908101604052809291908181526020018280546122049061495a565b80156122515780601f1061222657610100808354040283529160200191612251565b820191906000526020600020905b81548152906001019060200180831161223457829003601f168201915b505050505090509392505050565b600c5481565b60006122906002878760405161227c9291906151e7565b908152602001604051809103902054613316565b90503373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fb9061524c565b60405180910390fd5b81601687876040516123179291906151e7565b908152602001604051809103902085856040516123359291906151e7565b9081526020016040518091039020908161234f91906150bb565b50505050505050565b6014818051602081018201805184825260208301602085012081835280955050505050506000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6123ac848484612e62565b6123cb8373ffffffffffffffffffffffffffffffffffffffff16612cc4565b15612413576123dc84848484613685565b612412576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600f5481565b600061244a600284846040516124369291906151e7565b908152602001604051809103902054613316565b90503373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b59061524c565b60405180910390fd5b8282601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020918261250c9291906152b5565b50505050565b61251a612d9f565b73ffffffffffffffffffffffffffffffffffffffff16612538611a6a565b73ffffffffffffffffffffffffffffffffffffffff161461258e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612585906149d7565b60405180910390fd5b82600c8190555081600d8190555080600e81905550505050565b60606125b382612d51565b6125e9576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006125f36137d5565b905060008151036126135760405180602001604052806000815250612648565b8060016000858152602001908152602001600020604051602001612638929190615385565b6040516020818303038152906040525b915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166014836040516126799190614e35565b908152602001604051809103902060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036126fb5760006126ec6002846040516126d89190614e35565b908152602001604051809103902054613316565b9050806000015191505061273d565b60148260405161270b9190614e35565b908152602001604051809103902060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505b919050565b61274a612d9f565b73ffffffffffffffffffffffffffffffffffffffff16612768611a6a565b73ffffffffffffffffffffffffffffffffffffffff16146127be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b5906149d7565b60405180910390fd5b81816001600086815260200190815260200160002091826127e09291906152b5565b5082600283836040516127f49291906151e7565b908152602001604051809103902081905550505050565b612813612d9f565b73ffffffffffffffffffffffffffffffffffffffff16612831611a6a565b73ffffffffffffffffffffffffffffffffffffffff1614612887576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287e906149d7565b60405180910390fd5b806011908161289691906150bb565b5050565b6060601380546128a99061495a565b80601f01602080910402602001604051908101604052809291908181526020018280546128d59061495a565b80156129225780601f106128f757610100808354040283529160200191612922565b820191906000526020600020905b81548152906001019060200180831161290557829003601f168201915b5050505050905090565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60168280516020810182018051848252602083016020850120818352809550505050505081805160208101820180518482526020830160208501208183528095505050505050600091509150508054612a189061495a565b80601f0160208091040260200160405190810160405280929190818152602001828054612a449061495a565b8015612a915780601f10612a6657610100808354040283529160200191612a91565b820191906000526020600020905b815481529060010190602001808311612a7457829003601f168201915b505050505081565b612aa1612d9f565b73ffffffffffffffffffffffffffffffffffffffff16612abf611a6a565b73ffffffffffffffffffffffffffffffffffffffff1614612b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0c906149d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7b9061541b565b60405180910390fd5b612b8d816135bf565b50565b60606000612b9d83611873565b905060008167ffffffffffffffff811115612bbb57612bba613f2c565b5b604051908082528060200260200182016040528015612bee57816020015b6060815260200190600190039081612bd95790505b50905060006001905060005b83811015612cb8576000612c0d836117bd565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612ca457600160008481526020019081526020016000206011604051602001612c68929190614a9a565b604051602081830303815290604052848381518110612c8a57612c89614abe565b5b60200260200101819052508180612ca090614b1c565b9250505b8280612caf90614b1c565b93505050612bfa565b82945050505050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612d5c612e59565b11158015612d6b575060005482105b8015612d98575060066000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826008600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000612e6d82613316565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ed8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612ef9612d9f565b73ffffffffffffffffffffffffffffffffffffffff161480612f285750612f2785612f22612d9f565b61292c565b5b80612f6d5750612f36612d9f565b73ffffffffffffffffffffffffffffffffffffffff16612f5584610c9e565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612fa6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361300c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6130198585856001613867565b61302560008487612da7565b6001600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600660008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600660008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036132a45760005482146132a357878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461330f858585600161386d565b5050505050565b61331e613c33565b60008290508061332c612e59565b1161356a57600054811015613569576000600660008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161356757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461344b57809250505061359c565b5b60011561356657818060019003925050600660008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461356157809250505061359c565b61344c565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6135bb828260405180602001604052806000815250613873565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026136ab612d9f565b8786866040518563ffffffff1660e01b81526004016136cd9493929190615490565b6020604051808303816000875af192505050801561370957506040513d601f19601f8201168201806040525081019061370691906154f1565b60015b613782573d8060008114613739576040519150601f19603f3d011682016040523d82523d6000602084013e61373e565b606091505b50600081510361377a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601280546137e49061495a565b80601f01602080910402602001604051908101604052809291908181526020018280546138109061495a565b801561385d5780601f106138325761010080835404028352916020019161385d565b820191906000526020600020905b81548152906001019060200180831161384057829003601f168201915b5050505050905090565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036138df576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303613919576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6139266000858386613867565b82600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836006600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426006600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050613ae78673ffffffffffffffffffffffffffffffffffffffff16612cc4565b15613bac575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613b5c6000878480600101955087613685565b613b92576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210613aed578260005414613ba757600080fd5b613c17565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613bad575b816000819055505050613c2d600085838661386d565b50505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613cbf81613c8a565b8114613cca57600080fd5b50565b600081359050613cdc81613cb6565b92915050565b600060208284031215613cf857613cf7613c80565b5b6000613d0684828501613ccd565b91505092915050565b60008115159050919050565b613d2481613d0f565b82525050565b6000602082019050613d3f6000830184613d1b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613d7f578082015181840152602081019050613d64565b60008484015250505050565b6000601f19601f8301169050919050565b6000613da782613d45565b613db18185613d50565b9350613dc1818560208601613d61565b613dca81613d8b565b840191505092915050565b60006020820190508181036000830152613def8184613d9c565b905092915050565b6000819050919050565b613e0a81613df7565b8114613e1557600080fd5b50565b600081359050613e2781613e01565b92915050565b600060208284031215613e4357613e42613c80565b5b6000613e5184828501613e18565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613e8582613e5a565b9050919050565b613e9581613e7a565b82525050565b6000602082019050613eb06000830184613e8c565b92915050565b613ebf81613e7a565b8114613eca57600080fd5b50565b600081359050613edc81613eb6565b92915050565b60008060408385031215613ef957613ef8613c80565b5b6000613f0785828601613ecd565b9250506020613f1885828601613e18565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613f6482613d8b565b810181811067ffffffffffffffff82111715613f8357613f82613f2c565b5b80604052505050565b6000613f96613c76565b9050613fa28282613f5b565b919050565b600067ffffffffffffffff821115613fc257613fc1613f2c565b5b613fcb82613d8b565b9050602081019050919050565b82818337600083830152505050565b6000613ffa613ff584613fa7565b613f8c565b90508281526020810184848401111561401657614015613f27565b5b614021848285613fd8565b509392505050565b600082601f83011261403e5761403d613f22565b5b813561404e848260208601613fe7565b91505092915050565b60006020828403121561406d5761406c613c80565b5b600082013567ffffffffffffffff81111561408b5761408a613c85565b5b61409784828501614029565b91505092915050565b6140a981613df7565b82525050565b60006020820190506140c460008301846140a0565b92915050565b600060ff82169050919050565b6140e0816140ca565b81146140eb57600080fd5b50565b6000813590506140fd816140d7565b92915050565b60006020828403121561411957614118613c80565b5b6000614127848285016140ee565b91505092915050565b60008060006060848603121561414957614148613c80565b5b600061415786828701613ecd565b935050602061416886828701613e18565b925050604061417986828701613e18565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b600082825260208201905092915050565b60006141cb82613d45565b6141d581856141af565b93506141e5818560208601613d61565b6141ee81613d8b565b840191505092915050565b600061420583836141c0565b905092915050565b6000602082019050919050565b600061422582614183565b61422f818561418e565b9350836020820285016142418561419f565b8060005b8581101561427d578484038952815161425e85826141f9565b94506142698361420d565b925060208a01995050600181019050614245565b50829750879550505050505092915050565b600060208201905081810360008301526142a9818461421a565b905092915050565b6000806000606084860312156142ca576142c9613c80565b5b60006142d886828701613ecd565b93505060206142e986828701613ecd565b92505060406142fa86828701613e18565b9150509250925092565b6000806040838503121561431b5761431a613c80565b5b600061432985828601613e18565b925050602061433a85828601613e18565b9150509250929050565b60006040820190506143596000830185613e8c565b61436660208301846140a0565b9392505050565b6000806040838503121561438457614383613c80565b5b600083013567ffffffffffffffff8111156143a2576143a1613c85565b5b6143ae85828601614029565b92505060206143bf85828601613ecd565b9150509250929050565b6000602082840312156143df576143de613c80565b5b60006143ed84828501613ecd565b91505092915050565b600080fd5b600080fd5b60008083601f84011261441657614415613f22565b5b8235905067ffffffffffffffff811115614433576144326143f6565b5b60208301915083600182028301111561444f5761444e6143fb565b5b9250929050565b60008060006040848603121561446f5761446e613c80565b5b600084013567ffffffffffffffff81111561448d5761448c613c85565b5b61449986828701614400565b935093505060206144ac86828701613ecd565b9150509250925092565b6144bf81613d0f565b81146144ca57600080fd5b50565b6000813590506144dc816144b6565b92915050565b600080604083850312156144f9576144f8613c80565b5b600061450785828601613ecd565b9250506020614518858286016144cd565b9150509250929050565b60008060006040848603121561453b5761453a613c80565b5b600084013567ffffffffffffffff81111561455957614558613c85565b5b61456586828701614029565b935050602084013567ffffffffffffffff81111561458657614585613c85565b5b61459286828701614400565b92509250509250925092565b6000806000806000606086880312156145ba576145b9613c80565b5b600086013567ffffffffffffffff8111156145d8576145d7613c85565b5b6145e488828901614400565b9550955050602086013567ffffffffffffffff81111561460757614606613c85565b5b61461388828901614400565b9350935050604086013567ffffffffffffffff81111561463657614635613c85565b5b61464288828901614029565b9150509295509295909350565b600067ffffffffffffffff82111561466a57614669613f2c565b5b61467382613d8b565b9050602081019050919050565b600061469361468e8461464f565b613f8c565b9050828152602081018484840111156146af576146ae613f27565b5b6146ba848285613fd8565b509392505050565b600082601f8301126146d7576146d6613f22565b5b81356146e7848260208601614680565b91505092915050565b6000806000806080858703121561470a57614709613c80565b5b600061471887828801613ecd565b945050602061472987828801613ecd565b935050604061473a87828801613e18565b925050606085013567ffffffffffffffff81111561475b5761475a613c85565b5b614767878288016146c2565b91505092959194509250565b6000806020838503121561478a57614789613c80565b5b600083013567ffffffffffffffff8111156147a8576147a7613c85565b5b6147b485828601614400565b92509250509250929050565b6000806000606084860312156147d9576147d8613c80565b5b60006147e786828701613e18565b93505060206147f886828701613e18565b925050604061480986828701613e18565b9150509250925092565b60008060006040848603121561482c5761482b613c80565b5b600061483a86828701613e18565b935050602084013567ffffffffffffffff81111561485b5761485a613c85565b5b61486786828701614400565b92509250509250925092565b6000806040838503121561488a57614889613c80565b5b600061489885828601613ecd565b92505060206148a985828601613ecd565b9150509250929050565b600080604083850312156148ca576148c9613c80565b5b600083013567ffffffffffffffff8111156148e8576148e7613c85565b5b6148f485828601614029565b925050602083013567ffffffffffffffff81111561491557614914613c85565b5b61492185828601614029565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061497257607f821691505b6020821081036149855761498461492b565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006149c1602083613d50565b91506149cc8261498b565b602082019050919050565b600060208201905081810360008301526149f0816149b4565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154614a248161495a565b614a2e81866149f7565b94506001821660008114614a495760018114614a5e57614a91565b60ff1983168652811515820286019350614a91565b614a6785614a02565b60005b83811015614a8957815481890152600182019150602081019050614a6a565b838801955050505b50505092915050565b6000614aa68285614a17565b9150614ab28284614a17565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614b2782613df7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614b5957614b58614aed565b5b600182019050919050565b6000614b6f82613df7565b9150614b7a83613df7565b9250828202614b8881613df7565b91508282048414831517614b9f57614b9e614aed565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614be082613df7565b9150614beb83613df7565b925082614bfb57614bfa614ba6565b5b828204905092915050565b6000614c1182613df7565b9150614c1c83613df7565b9250828203905081811115614c3457614c33614aed565b5b92915050565b7f496e76616c696400000000000000000000000000000000000000000000000000600082015250565b6000614c70600783613d50565b9150614c7b82614c3a565b602082019050919050565b60006020820190508181036000830152614c9f81614c63565b9050919050565b6000614cb28284614a17565b915081905092915050565b6000614cc882613df7565b915060008203614cdb57614cda614aed565b5b600182039050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614d1c601f83613d50565b9150614d2782614ce6565b602082019050919050565b60006020820190508181036000830152614d4b81614d0f565b9050919050565b600081905092915050565b50565b6000614d6d600083614d52565b9150614d7882614d5d565b600082019050919050565b6000614d8e82614d60565b9150819050919050565b7f57726974652061204e616d650000000000000000000000000000000000000000600082015250565b6000614dce600c83613d50565b9150614dd982614d98565b602082019050919050565b60006020820190508181036000830152614dfd81614dc1565b9050919050565b6000614e0f82613d45565b614e1981856149f7565b9350614e29818560208601613d61565b80840191505092915050565b6000614e418284614e04565b915081905092915050565b7f5468697320697320616c72656164792074616b656e0000000000000000000000600082015250565b6000614e82601583613d50565b9150614e8d82614e4c565b602082019050919050565b60006020820190508181036000830152614eb181614e75565b9050919050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000614eee601383613d50565b9150614ef982614eb8565b602082019050919050565b60006020820190508181036000830152614f1d81614ee1565b9050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302614f717fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614f34565b614f7b8683614f34565b95508019841693508086168417925050509392505050565b6000819050919050565b6000614fb8614fb3614fae84613df7565b614f93565b613df7565b9050919050565b6000819050919050565b614fd283614f9d565b614fe6614fde82614fbf565b848454614f41565b825550505050565b600090565b614ffb614fee565b615006818484614fc9565b505050565b5b8181101561502a5761501f600082614ff3565b60018101905061500c565b5050565b601f82111561506f5761504081614a02565b61504984614f24565b81016020851015615058578190505b61506c61506485614f24565b83018261500b565b50505b505050565b600082821c905092915050565b600061509260001984600802615074565b1980831691505092915050565b60006150ab8383615081565b9150826002028217905092915050565b6150c482613d45565b67ffffffffffffffff8111156150dd576150dc613f2c565b5b6150e7825461495a565b6150f282828561502e565b600060209050601f8311600181146151255760008415615113578287015190505b61511d858261509f565b865550615185565b601f19841661513386614a02565b60005b8281101561515b57848901518255600182019150602085019450602081019050615136565b868310156151785784890151615174601f891682615081565b8355505b6001600288020188555050505b505050505050565b6000615198826140ca565b91506151a3836140ca565b9250828203905060ff8111156151bc576151bb614aed565b5b92915050565b60006151ce83856149f7565b93506151db838584613fd8565b82840190509392505050565b60006151f48284866151c2565b91508190509392505050565b7f4572726f72000000000000000000000000000000000000000000000000000000600082015250565b6000615236600583613d50565b915061524182615200565b602082019050919050565b6000602082019050818103600083015261526581615229565b9050919050565b60006152788385614d52565b9350615285838584613fd8565b82840190509392505050565b600061529e82848661526c565b91508190509392505050565b600082905092915050565b6152bf83836152aa565b67ffffffffffffffff8111156152d8576152d7613f2c565b5b6152e2825461495a565b6152ed82828561502e565b6000601f83116001811461531c576000841561530a578287013590505b615314858261509f565b86555061537c565b601f19841661532a86614a02565b60005b828110156153525784890135825560018201915060208501945060208101905061532d565b8683101561536f578489013561536b601f891682615081565b8355505b6001600288020188555050505b50505050505050565b60006153918285614e04565b915061539d8284614a17565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615405602683613d50565b9150615410826153a9565b604082019050919050565b60006020820190508181036000830152615434816153f8565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006154628261543b565b61546c8185615446565b935061547c818560208601613d61565b61548581613d8b565b840191505092915050565b60006080820190506154a56000830187613e8c565b6154b26020830186613e8c565b6154bf60408301856140a0565b81810360608301526154d18184615457565b905095945050505050565b6000815190506154eb81613cb6565b92915050565b60006020828403121561550757615506613c80565b5b6000615515848285016154dc565b9150509291505056fea264697066735822122040a318383745aae64541a0f249a84bd2c229a4dddbcb17722247b0b3c9b10e8864736f6c63430008120033

Deployed ByteCode Sourcemap

50398:7699:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31531:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34646:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36158:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35720:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29476:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53783:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50607:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30771:312;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56179:675;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54011:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37023:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52053:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;56860:522;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57910:182;;;;;;;;;;;;;:::i;:::-;;54540:979;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37264:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50551:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53558:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34454:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29421:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31900:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7608:103;;;;;;;;;;;;;:::i;:::-;;50978:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6957:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57387:517;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53874:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34815:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52349:473;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36434:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53398:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50495:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53090:300;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50923:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37520:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50663:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52830:250;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54294:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34990:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51417:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54125:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53679:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51948:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36792:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51033:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7866:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55529:646;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31531:305;31633:4;31685:25;31670:40;;;:11;:40;;;;:105;;;;31742:33;31727:48;;;:11;:48;;;;31670:105;:158;;;;31792:36;31816:11;31792:23;:36::i;:::-;31670:158;31650:178;;31531:305;;;:::o;34646:100::-;34700:13;34733:5;34726:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34646:100;:::o;36158:204::-;36226:7;36251:16;36259:7;36251;:16::i;:::-;36246:64;;36276:34;;;;;;;;;;;;;;36246:64;36330:15;:24;36346:7;36330:24;;;;;;;;;;;;;;;;;;;;;36323:31;;36158:204;;;:::o;35720:372::-;35793:13;35809:24;35825:7;35809:15;:24::i;:::-;35793:40;;35854:5;35848:11;;:2;:11;;;35844:48;;35868:24;;;;;;;;;;;;;;35844:48;35925:5;35909:21;;:12;:10;:12::i;:::-;:21;;;35905:139;;35936:37;35953:5;35960:12;:10;:12::i;:::-;35936:16;:37::i;:::-;35932:112;;35997:35;;;;;;;;;;;;;;35932:112;35905:139;36056:28;36065:2;36069:7;36078:5;36056:8;:28::i;:::-;35782:310;35720:372;;:::o;29476:48::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53783:83::-;7188:12;:10;:12::i;:::-;7177:23;;:7;:5;:7::i;:::-;:23;;;7169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53854:4:::1;53848:3;;:10;;;;;;;;;;;;;;;;;;53783:83:::0;:::o;50607:49::-;;;;:::o;30771:312::-;30824:7;31049:15;:13;:15::i;:::-;31034:12;;31018:13;;:28;:46;31011:53;;30771:312;:::o;56179:675::-;56300:15;56327:23;56353:17;56363:6;56353:9;:17::i;:::-;56327:43;;56377:29;56422:15;56409:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56377:61;;56445:14;56462:10;56445:27;;56479:12;56494:8;56479:23;;56509;56545:275;56561:4;56552:6;:13;56545:275;;;56576:25;56604:15;56612:6;56604:7;:15::i;:::-;56576:43;;56655:6;56634:27;;:17;:27;;;56630:164;;56721:17;:25;56739:6;56721:25;;;;;;;;;;;56747:6;56707:47;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56674:13;56688:15;56674:30;;;;;;;;:::i;:::-;;;;;;;:80;;;;56767:17;;;;;:::i;:::-;;;;56630:164;56804:8;;;;;:::i;:::-;;;;56567:253;56545:275;;;56835:13;56828:20;;;;;;;56179:675;;;;;:::o;54011:106::-;7188:12;:10;:12::i;:::-;7177:23;;:7;:5;:7::i;:::-;:23;;;7169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54098:11:::1;54085:10;:24;;;;54011:106:::0;:::o;37023:170::-;37157:28;37167:4;37173:2;37177:7;37157:9;:28::i;:::-;37023:170;;;:::o;52053:274::-;52140:16;52158:21;52196:31;52230:22;52243:8;52230:12;:22::i;:::-;52196:56;;52275:9;:14;;;52313:5;52302:10;;52291;:21;;;;:::i;:::-;:27;;;;:::i;:::-;52267:52;;;;;52053:274;;;;;:::o;56860:522::-;56934:15;56961:13;56977;:11;:13::i;:::-;56961:29;;57006:5;57000;:11;56997:29;;;57019:5;57013:11;;56997:29;57032:24;57072:5;57059:19;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57032:46;;57085:17;57113:5;57105;:13;;;;:::i;:::-;57085:33;;57125:23;57178:1;57167:9;:12;;57159:31;;;;;;;;;;;;:::i;:::-;;;;;;;;;57197:156;57212:9;57204:5;:17;57197:156;;;57276:17;:24;57294:5;57276:24;;;;;;;;;;;57262:39;;;;;;;;:::i;:::-;;;;;;;;;;;;;57234:8;57243:15;57234:25;;;;;;;;:::i;:::-;;;;;;;:67;;;;57312:17;;;;;:::i;:::-;;;;57338:7;;;;;:::i;:::-;;;;57197:156;;;57368:8;57361:15;;;;;;56860:522;;;:::o;57910:182::-;7188:12;:10;:12::i;:::-;7177:23;;:7;:5;:7::i;:::-;:23;;;7169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1931:1:::1;2529:7;;:19:::0;2521:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1931:1;2662:7;:18;;;;57971:15:::2;57989:21;57971:39;;58022:12;58048:7;:5;:7::i;:::-;58040:21;;58068:7;58040:40;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58021:59;;;57960:132;;1887:1:::1;2841:7;:22;;;;57910:182::o:0;54540:979::-;54647:13;54663:15;;54647:31;;54689:18;54714:4;54708:18;54689:37;;54756:1;54745:10;:12;54737:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;54799:1;54787:10;:13;54784:117;;54809:14;;54803:20;;54784:117;;;54846:1;54834:10;:13;54831:70;;54855:14;;54849:20;;54831:70;;;54884:15;;54878:21;;54831:70;54784:117;54947:1;54920:17;54938:4;54920:23;;;;;;:::i;:::-;;;;;;;;;;;;;;:28;54911:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;55007:5;54994:9;:18;;54986:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;55080:4;55047:17;:32;55065:13;;55047:32;;;;;;;;;;;:37;;;;;;:::i;:::-;;55119:13;;55095:17;55113:4;55095:23;;;;;;:::i;:::-;;;;;;;;;;;;;:37;;;;55161:42;55147:56;;:11;:56;;;55143:335;;55217:12;55243:11;55235:25;;55281:3;55277;;;;;;;;;;;55267:13;;:9;:13;;;;:::i;:::-;:17;;;;:::i;:::-;55235:54;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55216:73;;;55301:13;55328:7;:5;:7::i;:::-;55320:21;;55368:3;55363;;;;;;;;;;;55359;:7;;;;:::i;:::-;55348:19;;:9;:19;;;;:::i;:::-;:23;;;;:::i;:::-;55320:56;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55300:76;;;55205:183;;55143:335;;;55406:12;55432:7;:5;:7::i;:::-;55424:21;;55452:9;55424:42;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55405:61;;;55394:84;55143:335;55488:23;55498:10;55509:1;55488:9;:23::i;:::-;54636:883;;54540:979;;:::o;37264:185::-;37402:39;37419:4;37425:2;37429:7;37402:39;;;;;;;;;;;;:16;:39::i;:::-;37264:185;;;:::o;50551:49::-;;;;:::o;53558:113::-;7188:12;:10;:12::i;:::-;7177:23;;:7;:5;:7::i;:::-;:23;;;7169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53649:14:::1;53638:8;:25;;;;;;:::i;:::-;;53558:113:::0;:::o;34454:125::-;34518:7;34545:21;34558:7;34545:12;:21::i;:::-;:26;;;34538:33;;34454:125;;;:::o;29421:48::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31900:206::-;31964:7;32005:1;31988:19;;:5;:19;;;31984:60;;32016:28;;;;;;;;;;;;;;31984:60;32070:12;:19;32083:5;32070:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;32062:36;;32055:43;;31900:206;;;:::o;7608:103::-;7188:12;:10;:12::i;:::-;7177:23;;:7;:5;:7::i;:::-;:23;;;7169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7673:30:::1;7700:1;7673:18;:30::i;:::-;7608:103::o:0;50978:48::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6957:87::-;7003:7;7030:6;;;;;;;;;;;7023:13;;6957:87;:::o;57387:517::-;57448:4;57464:17;57483:1;57464:20;;57495:23;57527:5;57495:38;;57544:20;57573:11;57544:41;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57602:6;57598:204;57616:10;:17;57612:1;:21;57598:204;;;57658:6;57654:137;57670:7;:14;57668:1;:16;57654:137;;;57725:7;57733:1;57725:10;;;;;;;;:::i;:::-;;;;;;;;;;57710:25;;;:10;57721:1;57710:13;;;;;;;;:::i;:::-;;;;;;;;;;:25;;;;57707:60;;57753:14;;;;;:::i;:::-;;;;57707:60;57686:3;;;;;:::i;:::-;;;;57654:137;;;;57636:3;;;;;:::i;:::-;;;;57598:204;;;;57830:10;:17;57816:12;:31;57812:76;;57858:4;57851:11;;;;;;;57812:76;57880:5;57873:12;;;;;57387:517;;;;:::o;53874:129::-;7188:12;:10;:12::i;:::-;7177:23;;:7;:5;:7::i;:::-;:23;;;7169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53977:18:::1;53962:12;:33;;;;;;:::i;:::-;;53874:129:::0;:::o;34815:104::-;34871:13;34904:7;34897:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34815:104;:::o;52349:473::-;52432:31;52466:37;52479:17;52497:4;;52479:23;;;;;;;:::i;:::-;;;;;;;;;;;;;;52466:12;:37::i;:::-;52432:71;;52536:10;52518:28;;:9;:14;;;:28;;;52514:49;;52548:15;;;;;;;;;;:::i;:::-;;;;;;;;52514:49;52582:19;52610:14;:36;52625:14;52640:4;;52625:20;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;52610:36;;;;;;;;;;;;;;;52582:65;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52699:4;;52683:22;;;;;;;:::i;:::-;;;;;;;;52672:6;52662:17;;;;;;:43;52658:115;;52722:39;;;;;;;;;;;;:14;:36;52737:14;52752:4;;52737:20;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;52722:36;;;;;;;;;;;;;;;:39;;;;;;:::i;:::-;;52658:115;52804:10;52783:14;52798:4;;52783:20;;;;;;;:::i;:::-;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;52420:402;;52349:473;;;:::o;36434:287::-;36545:12;:10;:12::i;:::-;36533:24;;:8;:24;;;36529:54;;36566:17;;;;;;;;;;;;;;36529:54;36641:8;36596:18;:32;36615:12;:10;:12::i;:::-;36596:32;;;;;;;;;;;;;;;:42;36629:8;36596:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;36694:8;36665:48;;36680:12;:10;:12::i;:::-;36665:48;;;36704:8;36665:48;;;;;;:::i;:::-;;;;;;;;36434:287;;:::o;53398:150::-;53484:13;53517:11;53529:4;53517:17;;;;;;:::i;:::-;;;;;;;;;;;;;53535:4;;53517:23;;;;;;;:::i;:::-;;;;;;;;;;;;;53510:30;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53398:150;;;;;:::o;50495:49::-;;;;:::o;53090:300::-;53205:31;53239:37;53252:17;53270:4;;53252:23;;;;;;;:::i;:::-;;;;;;;;;;;;;;53239:12;:37::i;:::-;53205:71;;53309:10;53291:28;;:9;:14;;;:28;;;53287:49;;53321:15;;;;;;;;;;:::i;:::-;;;;;;;;53287:49;53374:8;53347:11;53359:4;;53347:17;;;;;;;:::i;:::-;;;;;;;;;;;;;53365:7;;53347:26;;;;;;;:::i;:::-;;;;;;;;;;;;;:35;;;;;;:::i;:::-;;53194:196;53090:300;;;;;:::o;50923:48::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37520:370::-;37687:28;37697:4;37703:2;37707:7;37687:9;:28::i;:::-;37730:15;:2;:13;;;:15::i;:::-;37726:157;;;37751:56;37782:4;37788:2;37792:7;37801:5;37751:30;:56::i;:::-;37747:136;;37831:40;;;;;;;;;;;;;;37747:136;37726:157;37520:370;;;;:::o;50663:29::-;;;;:::o;52830:250::-;52899:31;52933:37;52946:17;52964:4;;52946:23;;;;;;;:::i;:::-;;;;;;;;;;;;;;52933:12;:37::i;:::-;52899:71;;53003:10;52985:28;;:9;:14;;;:28;;;52981:49;;53015:15;;;;;;;;;;:::i;:::-;;;;;;;;52981:49;53068:4;;53041:14;:26;53056:10;53041:26;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;52888:192;52830:250;;:::o;54294:234::-;7188:12;:10;:12::i;:::-;7177:23;;:7;:5;:7::i;:::-;:23;;;7169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54429:10:::1;54412:14;:27;;;;54467:10;54450:14;:27;;;;54506:14;54488:15;:32;;;;54294:234:::0;;;:::o;34990:326::-;35063:13;35094:16;35102:7;35094;:16::i;:::-;35089:59;;35119:29;;;;;;;;;;;;;;35089:59;35161:21;35185:10;:8;:10::i;:::-;35161:34;;35238:1;35219:7;35213:21;:26;:95;;;;;;;;;;;;;;;;;35266:7;35275:17;:26;35293:7;35275:26;;;;;;;;;;;35249:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;35213:95;35206:102;;;34990:326;;;:::o;51417:400::-;51478:17;51534:42;51512:64;;:14;51527:4;51512:20;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;:64;;;51508:275;;51593:31;51627:37;51640:17;51658:4;51640:23;;;;;;:::i;:::-;;;;;;;;;;;;;;51627:12;:37::i;:::-;51593:71;;51691:9;:14;;;51679:26;;51578:139;51508:275;;;51748:14;51763:4;51748:20;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;51735:33;;51508:275;51417:400;;;:::o;54125:161::-;7188:12;:10;:12::i;:::-;7177:23;;:7;:5;:7::i;:::-;:23;;;7169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54236:4:::1;;54209:17;:26;54227:7;54209:26;;;;;;;;;;;:31;;;;;;;:::i;:::-;;54271:7;54247:17;54265:4;;54247:23;;;;;;;:::i;:::-;;;;;;;;;;;;;:31;;;;54125:161:::0;;;:::o;53679:96::-;7188:12;:10;:12::i;:::-;7177:23;;:7;:5;:7::i;:::-;:23;;;7169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53760:7:::1;53751:6;:16;;;;;;:::i;:::-;;53679:96:::0;:::o;51948:97::-;51992:13;52025:12;52018:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51948:97;:::o;36792:164::-;36889:4;36913:18;:25;36932:5;36913:25;;;;;;;;;;;;;;;:35;36939:8;36913:35;;;;;;;;;;;;;;;;;;;;;;;;;36906:42;;36792:164;;;;:::o;51033:63::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7866:201::-;7188:12;:10;:12::i;:::-;7177:23;;:7;:5;:7::i;:::-;:23;;;7169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7975:1:::1;7955:22;;:8;:22;;::::0;7947:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;8031:28;8050:8;8031:18;:28::i;:::-;7866:201:::0;:::o;55529:646::-;55608:15;55635:23;55661:17;55671:6;55661:9;:17::i;:::-;55635:43;;55685:29;55730:15;55717:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55685:61;;55753:22;55778:1;55753:26;;55786:23;55822:319;55847:15;55829;:33;55822:319;;;55873:25;55901:23;55909:14;55901:7;:23::i;:::-;55873:51;;55960:6;55939:27;;:17;:27;;;55935:172;;56026:17;:33;56044:14;56026:33;;;;;;;;;;;56060:6;56012:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55979:13;55993:15;55979:30;;;;;;;;:::i;:::-;;;;;;;:88;;;;56080:17;;;;;:::i;:::-;;;;55935:172;56117:16;;;;;:::i;:::-;;;;55864:277;55822:319;;;56156:13;56149:20;;;;;;55529:646;;;:::o;9658:326::-;9718:4;9975:1;9953:7;:19;;;:23;9946:30;;9658:326;;;:::o;19764:157::-;19849:4;19888:25;19873:40;;;:11;:40;;;;19866:47;;19764:157;;;:::o;38145:174::-;38202:4;38245:7;38226:15;:13;:15::i;:::-;:26;;:53;;;;;38266:13;;38256:7;:23;38226:53;:85;;;;;38284:11;:20;38296:7;38284:20;;;;;;;;;;;:27;;;;;;;;;;;;38283:28;38226:85;38219:92;;38145:174;;;:::o;5681:98::-;5734:7;5761:10;5754:17;;5681:98;:::o;47381:196::-;47523:2;47496:15;:24;47512:7;47496:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47561:7;47557:2;47541:28;;47550:5;47541:28;;;;;;;;;;;;47381:196;;;:::o;30545:92::-;30601:7;30628:1;30621:8;;30545:92;:::o;42315:2144::-;42430:35;42468:21;42481:7;42468:12;:21::i;:::-;42430:59;;42528:4;42506:26;;:13;:18;;;:26;;;42502:67;;42541:28;;;;;;;;;;;;;;42502:67;42582:22;42624:4;42608:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;42645:36;42662:4;42668:12;:10;:12::i;:::-;42645:16;:36::i;:::-;42608:73;:126;;;;42722:12;:10;:12::i;:::-;42698:36;;:20;42710:7;42698:11;:20::i;:::-;:36;;;42608:126;42582:153;;42753:17;42748:66;;42779:35;;;;;;;;;;;;;;42748:66;42843:1;42829:16;;:2;:16;;;42825:52;;42854:23;;;;;;;;;;;;;;42825:52;42890:43;42912:4;42918:2;42922:7;42931:1;42890:21;:43::i;:::-;42998:35;43015:1;43019:7;43028:4;42998:8;:35::i;:::-;43359:1;43329:12;:18;43342:4;43329:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43403:1;43375:12;:16;43388:2;43375:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43421:31;43455:11;:20;43467:7;43455:20;;;;;;;;;;;43421:54;;43506:2;43490:8;:13;;;:18;;;;;;;;;;;;;;;;;;43556:15;43523:8;:23;;;:49;;;;;;;;;;;;;;;;;;43838:19;43870:1;43860:7;:11;43838:33;;43886:31;43920:11;:24;43932:11;43920:24;;;;;;;;;;;43886:58;;43988:1;43963:27;;:8;:13;;;;;;;;;;;;:27;;;43959:384;;44173:13;;44158:11;:28;44154:174;;44227:4;44211:8;:13;;;:20;;;;;;;;;;;;;;;;;;44280:13;:28;;;44254:8;:23;;;:54;;;;;;;;;;;;;;;;;;44154:174;43959:384;43304:1050;;;44390:7;44386:2;44371:27;;44380:4;44371:27;;;;;;;;;;;;44409:42;44430:4;44436:2;44440:7;44449:1;44409:20;:42::i;:::-;42419:2040;;42315:2144;;;:::o;33281:1111::-;33343:21;;:::i;:::-;33377:12;33392:7;33377:22;;33460:4;33441:15;:13;:15::i;:::-;:23;33437:888;;33477:13;;33470:4;:20;33466:859;;;33511:31;33545:11;:17;33557:4;33545:17;;;;;;;;;;;33511:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33586:9;:16;;;33581:729;;33657:1;33631:28;;:9;:14;;;:28;;;33627:101;;33695:9;33688:16;;;;;;33627:101;34030:261;34037:4;34030:261;;;34070:6;;;;;;;;34115:11;:17;34127:4;34115:17;;;;;;;;;;;34103:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34189:1;34163:28;;:9;:14;;;:28;;;34159:109;;34231:9;34224:16;;;;;;34159:109;34030:261;;;33581:729;33492:833;33466:859;33437:888;34353:31;;;;;;;;;;;;;;33281:1111;;;;:::o;38403:104::-;38472:27;38482:2;38486:8;38472:27;;;;;;;;;;;;:9;:27::i;:::-;38403:104;;:::o;8227:191::-;8301:16;8320:6;;;;;;;;;;;8301:25;;8346:8;8337:6;;:17;;;;;;;;;;;;;;;;;;8401:8;8370:40;;8391:8;8370:40;;;;;;;;;;;;8290:128;8227:191;:::o;48069:667::-;48232:4;48269:2;48253:36;;;48290:12;:10;:12::i;:::-;48304:4;48310:7;48319:5;48253:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;48249:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48504:1;48487:6;:13;:18;48483:235;;48533:40;;;;;;;;;;;;;;48483:235;48676:6;48670:13;48661:6;48657:2;48653:15;48646:38;48249:480;48382:45;;;48372:55;;;:6;:55;;;;48365:62;;;48069:667;;;;;;:::o;51831:109::-;51891:13;51924:8;51917:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51831:109;:::o;49384:159::-;;;;;:::o;50202:158::-;;;;;:::o;38880:1749::-;39003:20;39026:13;;39003:36;;39068:1;39054:16;;:2;:16;;;39050:48;;39079:19;;;;;;;;;;;;;;39050:48;39125:1;39113:8;:13;39109:44;;39135:18;;;;;;;;;;;;;;39109:44;39166:61;39196:1;39200:2;39204:12;39218:8;39166:21;:61::i;:::-;39539:8;39504:12;:16;39517:2;39504:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39603:8;39563:12;:16;39576:2;39563:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39662:2;39629:11;:25;39641:12;39629:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;39729:15;39679:11;:25;39691:12;39679:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;39762:20;39785:12;39762:35;;39812:11;39841:8;39826:12;:23;39812:37;;39870:15;:2;:13;;;:15::i;:::-;39866:631;;;39906:313;39962:12;39958:2;39937:38;;39954:1;39937:38;;;;;;;;;;;;40003:69;40042:1;40046:2;40050:14;;;;;;40066:5;40003:30;:69::i;:::-;39998:174;;40108:40;;;;;;;;;;;;;;39998:174;40214:3;40199:12;:18;39906:313;;40300:12;40283:13;;:29;40279:43;;40314:8;;;40279:43;39866:631;;;40363:119;40419:14;;;;;;40415:2;40394:40;;40411:1;40394:40;;;;;;;;;;;;40477:3;40462:12;:18;40363:119;;39866:631;40527:12;40511:13;:28;;;;39479:1072;;40561:60;40590:1;40594:2;40598:12;40612:8;40561:20;:60::i;:::-;38992:1637;38880:1749;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:117::-;4999:1;4996;4989:12;5013:117;5122:1;5119;5112:12;5136:180;5184:77;5181:1;5174:88;5281:4;5278:1;5271:15;5305:4;5302:1;5295:15;5322:281;5405:27;5427:4;5405:27;:::i;:::-;5397:6;5393:40;5535:6;5523:10;5520:22;5499:18;5487:10;5484:34;5481:62;5478:88;;;5546:18;;:::i;:::-;5478:88;5586:10;5582:2;5575:22;5365:238;5322:281;;:::o;5609:129::-;5643:6;5670:20;;:::i;:::-;5660:30;;5699:33;5727:4;5719:6;5699:33;:::i;:::-;5609:129;;;:::o;5744:308::-;5806:4;5896:18;5888:6;5885:30;5882:56;;;5918:18;;:::i;:::-;5882:56;5956:29;5978:6;5956:29;:::i;:::-;5948:37;;6040:4;6034;6030:15;6022:23;;5744:308;;;:::o;6058:146::-;6155:6;6150:3;6145;6132:30;6196:1;6187:6;6182:3;6178:16;6171:27;6058:146;;;:::o;6210:425::-;6288:5;6313:66;6329:49;6371:6;6329:49;:::i;:::-;6313:66;:::i;:::-;6304:75;;6402:6;6395:5;6388:21;6440:4;6433:5;6429:16;6478:3;6469:6;6464:3;6460:16;6457:25;6454:112;;;6485:79;;:::i;:::-;6454:112;6575:54;6622:6;6617:3;6612;6575:54;:::i;:::-;6294:341;6210:425;;;;;:::o;6655:340::-;6711:5;6760:3;6753:4;6745:6;6741:17;6737:27;6727:122;;6768:79;;:::i;:::-;6727:122;6885:6;6872:20;6910:79;6985:3;6977:6;6970:4;6962:6;6958:17;6910:79;:::i;:::-;6901:88;;6717:278;6655:340;;;;:::o;7001:509::-;7070:6;7119:2;7107:9;7098:7;7094:23;7090:32;7087:119;;;7125:79;;:::i;:::-;7087:119;7273:1;7262:9;7258:17;7245:31;7303:18;7295:6;7292:30;7289:117;;;7325:79;;:::i;:::-;7289:117;7430:63;7485:7;7476:6;7465:9;7461:22;7430:63;:::i;:::-;7420:73;;7216:287;7001:509;;;;:::o;7516:118::-;7603:24;7621:5;7603:24;:::i;:::-;7598:3;7591:37;7516:118;;:::o;7640:222::-;7733:4;7771:2;7760:9;7756:18;7748:26;;7784:71;7852:1;7841:9;7837:17;7828:6;7784:71;:::i;:::-;7640:222;;;;:::o;7868:86::-;7903:7;7943:4;7936:5;7932:16;7921:27;;7868:86;;;:::o;7960:118::-;8031:22;8047:5;8031:22;:::i;:::-;8024:5;8021:33;8011:61;;8068:1;8065;8058:12;8011:61;7960:118;:::o;8084:135::-;8128:5;8166:6;8153:20;8144:29;;8182:31;8207:5;8182:31;:::i;:::-;8084:135;;;;:::o;8225:325::-;8282:6;8331:2;8319:9;8310:7;8306:23;8302:32;8299:119;;;8337:79;;:::i;:::-;8299:119;8457:1;8482:51;8525:7;8516:6;8505:9;8501:22;8482:51;:::i;:::-;8472:61;;8428:115;8225:325;;;;:::o;8556:619::-;8633:6;8641;8649;8698:2;8686:9;8677:7;8673:23;8669:32;8666:119;;;8704:79;;:::i;:::-;8666:119;8824:1;8849:53;8894:7;8885:6;8874:9;8870:22;8849:53;:::i;:::-;8839:63;;8795:117;8951:2;8977:53;9022:7;9013:6;9002:9;8998:22;8977:53;:::i;:::-;8967:63;;8922:118;9079:2;9105:53;9150:7;9141:6;9130:9;9126:22;9105:53;:::i;:::-;9095:63;;9050:118;8556:619;;;;;:::o;9181:124::-;9258:6;9292:5;9286:12;9276:22;;9181:124;;;:::o;9311:194::-;9420:11;9454:6;9449:3;9442:19;9494:4;9489:3;9485:14;9470:29;;9311:194;;;;:::o;9511:142::-;9588:4;9611:3;9603:11;;9641:4;9636:3;9632:14;9624:22;;9511:142;;;:::o;9659:159::-;9733:11;9767:6;9762:3;9755:19;9807:4;9802:3;9798:14;9783:29;;9659:159;;;;:::o;9824:357::-;9902:3;9930:39;9963:5;9930:39;:::i;:::-;9985:61;10039:6;10034:3;9985:61;:::i;:::-;9978:68;;10055:65;10113:6;10108:3;10101:4;10094:5;10090:16;10055:65;:::i;:::-;10145:29;10167:6;10145:29;:::i;:::-;10140:3;10136:39;10129:46;;9906:275;9824:357;;;;:::o;10187:196::-;10276:10;10311:66;10373:3;10365:6;10311:66;:::i;:::-;10297:80;;10187:196;;;;:::o;10389:123::-;10469:4;10501;10496:3;10492:14;10484:22;;10389:123;;;:::o;10546:991::-;10685:3;10714:64;10772:5;10714:64;:::i;:::-;10794:96;10883:6;10878:3;10794:96;:::i;:::-;10787:103;;10916:3;10961:4;10953:6;10949:17;10944:3;10940:27;10991:66;11051:5;10991:66;:::i;:::-;11080:7;11111:1;11096:396;11121:6;11118:1;11115:13;11096:396;;;11192:9;11186:4;11182:20;11177:3;11170:33;11243:6;11237:13;11271:84;11350:4;11335:13;11271:84;:::i;:::-;11263:92;;11378:70;11441:6;11378:70;:::i;:::-;11368:80;;11477:4;11472:3;11468:14;11461:21;;11156:336;11143:1;11140;11136:9;11131:14;;11096:396;;;11100:14;11508:4;11501:11;;11528:3;11521:10;;10690:847;;;;;10546:991;;;;:::o;11543:413::-;11706:4;11744:2;11733:9;11729:18;11721:26;;11793:9;11787:4;11783:20;11779:1;11768:9;11764:17;11757:47;11821:128;11944:4;11935:6;11821:128;:::i;:::-;11813:136;;11543:413;;;;:::o;11962:619::-;12039:6;12047;12055;12104:2;12092:9;12083:7;12079:23;12075:32;12072:119;;;12110:79;;:::i;:::-;12072:119;12230:1;12255:53;12300:7;12291:6;12280:9;12276:22;12255:53;:::i;:::-;12245:63;;12201:117;12357:2;12383:53;12428:7;12419:6;12408:9;12404:22;12383:53;:::i;:::-;12373:63;;12328:118;12485:2;12511:53;12556:7;12547:6;12536:9;12532:22;12511:53;:::i;:::-;12501:63;;12456:118;11962:619;;;;;:::o;12587:474::-;12655:6;12663;12712:2;12700:9;12691:7;12687:23;12683:32;12680:119;;;12718:79;;:::i;:::-;12680:119;12838:1;12863:53;12908:7;12899:6;12888:9;12884:22;12863:53;:::i;:::-;12853:63;;12809:117;12965:2;12991:53;13036:7;13027:6;13016:9;13012:22;12991:53;:::i;:::-;12981:63;;12936:118;12587:474;;;;;:::o;13067:332::-;13188:4;13226:2;13215:9;13211:18;13203:26;;13239:71;13307:1;13296:9;13292:17;13283:6;13239:71;:::i;:::-;13320:72;13388:2;13377:9;13373:18;13364:6;13320:72;:::i;:::-;13067:332;;;;;:::o;13405:654::-;13483:6;13491;13540:2;13528:9;13519:7;13515:23;13511:32;13508:119;;;13546:79;;:::i;:::-;13508:119;13694:1;13683:9;13679:17;13666:31;13724:18;13716:6;13713:30;13710:117;;;13746:79;;:::i;:::-;13710:117;13851:63;13906:7;13897:6;13886:9;13882:22;13851:63;:::i;:::-;13841:73;;13637:287;13963:2;13989:53;14034:7;14025:6;14014:9;14010:22;13989:53;:::i;:::-;13979:63;;13934:118;13405:654;;;;;:::o;14065:329::-;14124:6;14173:2;14161:9;14152:7;14148:23;14144:32;14141:119;;;14179:79;;:::i;:::-;14141:119;14299:1;14324:53;14369:7;14360:6;14349:9;14345:22;14324:53;:::i;:::-;14314:63;;14270:117;14065:329;;;;:::o;14400:117::-;14509:1;14506;14499:12;14523:117;14632:1;14629;14622:12;14660:553;14718:8;14728:6;14778:3;14771:4;14763:6;14759:17;14755:27;14745:122;;14786:79;;:::i;:::-;14745:122;14899:6;14886:20;14876:30;;14929:18;14921:6;14918:30;14915:117;;;14951:79;;:::i;:::-;14915:117;15065:4;15057:6;15053:17;15041:29;;15119:3;15111:4;15103:6;15099:17;15089:8;15085:32;15082:41;15079:128;;;15126:79;;:::i;:::-;15079:128;14660:553;;;;;:::o;15219:674::-;15299:6;15307;15315;15364:2;15352:9;15343:7;15339:23;15335:32;15332:119;;;15370:79;;:::i;:::-;15332:119;15518:1;15507:9;15503:17;15490:31;15548:18;15540:6;15537:30;15534:117;;;15570:79;;:::i;:::-;15534:117;15683:65;15740:7;15731:6;15720:9;15716:22;15683:65;:::i;:::-;15665:83;;;;15461:297;15797:2;15823:53;15868:7;15859:6;15848:9;15844:22;15823:53;:::i;:::-;15813:63;;15768:118;15219:674;;;;;:::o;15899:116::-;15969:21;15984:5;15969:21;:::i;:::-;15962:5;15959:32;15949:60;;16005:1;16002;15995:12;15949:60;15899:116;:::o;16021:133::-;16064:5;16102:6;16089:20;16080:29;;16118:30;16142:5;16118:30;:::i;:::-;16021:133;;;;:::o;16160:468::-;16225:6;16233;16282:2;16270:9;16261:7;16257:23;16253:32;16250:119;;;16288:79;;:::i;:::-;16250:119;16408:1;16433:53;16478:7;16469:6;16458:9;16454:22;16433:53;:::i;:::-;16423:63;;16379:117;16535:2;16561:50;16603:7;16594:6;16583:9;16579:22;16561:50;:::i;:::-;16551:60;;16506:115;16160:468;;;;;:::o;16634:854::-;16724:6;16732;16740;16789:2;16777:9;16768:7;16764:23;16760:32;16757:119;;;16795:79;;:::i;:::-;16757:119;16943:1;16932:9;16928:17;16915:31;16973:18;16965:6;16962:30;16959:117;;;16995:79;;:::i;:::-;16959:117;17100:63;17155:7;17146:6;17135:9;17131:22;17100:63;:::i;:::-;17090:73;;16886:287;17240:2;17229:9;17225:18;17212:32;17271:18;17263:6;17260:30;17257:117;;;17293:79;;:::i;:::-;17257:117;17406:65;17463:7;17454:6;17443:9;17439:22;17406:65;:::i;:::-;17388:83;;;;17183:298;16634:854;;;;;:::o;17494:1199::-;17605:6;17613;17621;17629;17637;17686:2;17674:9;17665:7;17661:23;17657:32;17654:119;;;17692:79;;:::i;:::-;17654:119;17840:1;17829:9;17825:17;17812:31;17870:18;17862:6;17859:30;17856:117;;;17892:79;;:::i;:::-;17856:117;18005:65;18062:7;18053:6;18042:9;18038:22;18005:65;:::i;:::-;17987:83;;;;17783:297;18147:2;18136:9;18132:18;18119:32;18178:18;18170:6;18167:30;18164:117;;;18200:79;;:::i;:::-;18164:117;18313:65;18370:7;18361:6;18350:9;18346:22;18313:65;:::i;:::-;18295:83;;;;18090:298;18455:2;18444:9;18440:18;18427:32;18486:18;18478:6;18475:30;18472:117;;;18508:79;;:::i;:::-;18472:117;18613:63;18668:7;18659:6;18648:9;18644:22;18613:63;:::i;:::-;18603:73;;18398:288;17494:1199;;;;;;;;:::o;18699:307::-;18760:4;18850:18;18842:6;18839:30;18836:56;;;18872:18;;:::i;:::-;18836:56;18910:29;18932:6;18910:29;:::i;:::-;18902:37;;18994:4;18988;18984:15;18976:23;;18699:307;;;:::o;19012:423::-;19089:5;19114:65;19130:48;19171:6;19130:48;:::i;:::-;19114:65;:::i;:::-;19105:74;;19202:6;19195:5;19188:21;19240:4;19233:5;19229:16;19278:3;19269:6;19264:3;19260:16;19257:25;19254:112;;;19285:79;;:::i;:::-;19254:112;19375:54;19422:6;19417:3;19412;19375:54;:::i;:::-;19095:340;19012:423;;;;;:::o;19454:338::-;19509:5;19558:3;19551:4;19543:6;19539:17;19535:27;19525:122;;19566:79;;:::i;:::-;19525:122;19683:6;19670:20;19708:78;19782:3;19774:6;19767:4;19759:6;19755:17;19708:78;:::i;:::-;19699:87;;19515:277;19454:338;;;;:::o;19798:943::-;19893:6;19901;19909;19917;19966:3;19954:9;19945:7;19941:23;19937:33;19934:120;;;19973:79;;:::i;:::-;19934:120;20093:1;20118:53;20163:7;20154:6;20143:9;20139:22;20118:53;:::i;:::-;20108:63;;20064:117;20220:2;20246:53;20291:7;20282:6;20271:9;20267:22;20246:53;:::i;:::-;20236:63;;20191:118;20348:2;20374:53;20419:7;20410:6;20399:9;20395:22;20374:53;:::i;:::-;20364:63;;20319:118;20504:2;20493:9;20489:18;20476:32;20535:18;20527:6;20524:30;20521:117;;;20557:79;;:::i;:::-;20521:117;20662:62;20716:7;20707:6;20696:9;20692:22;20662:62;:::i;:::-;20652:72;;20447:287;19798:943;;;;;;;:::o;20747:529::-;20818:6;20826;20875:2;20863:9;20854:7;20850:23;20846:32;20843:119;;;20881:79;;:::i;:::-;20843:119;21029:1;21018:9;21014:17;21001:31;21059:18;21051:6;21048:30;21045:117;;;21081:79;;:::i;:::-;21045:117;21194:65;21251:7;21242:6;21231:9;21227:22;21194:65;:::i;:::-;21176:83;;;;20972:297;20747:529;;;;;:::o;21282:619::-;21359:6;21367;21375;21424:2;21412:9;21403:7;21399:23;21395:32;21392:119;;;21430:79;;:::i;:::-;21392:119;21550:1;21575:53;21620:7;21611:6;21600:9;21596:22;21575:53;:::i;:::-;21565:63;;21521:117;21677:2;21703:53;21748:7;21739:6;21728:9;21724:22;21703:53;:::i;:::-;21693:63;;21648:118;21805:2;21831:53;21876:7;21867:6;21856:9;21852:22;21831:53;:::i;:::-;21821:63;;21776:118;21282:619;;;;;:::o;21907:674::-;21987:6;21995;22003;22052:2;22040:9;22031:7;22027:23;22023:32;22020:119;;;22058:79;;:::i;:::-;22020:119;22178:1;22203:53;22248:7;22239:6;22228:9;22224:22;22203:53;:::i;:::-;22193:63;;22149:117;22333:2;22322:9;22318:18;22305:32;22364:18;22356:6;22353:30;22350:117;;;22386:79;;:::i;:::-;22350:117;22499:65;22556:7;22547:6;22536:9;22532:22;22499:65;:::i;:::-;22481:83;;;;22276:298;21907:674;;;;;:::o;22587:474::-;22655:6;22663;22712:2;22700:9;22691:7;22687:23;22683:32;22680:119;;;22718:79;;:::i;:::-;22680:119;22838:1;22863:53;22908:7;22899:6;22888:9;22884:22;22863:53;:::i;:::-;22853:63;;22809:117;22965:2;22991:53;23036:7;23027:6;23016:9;23012:22;22991:53;:::i;:::-;22981:63;;22936:118;22587:474;;;;;:::o;23067:834::-;23155:6;23163;23212:2;23200:9;23191:7;23187:23;23183:32;23180:119;;;23218:79;;:::i;:::-;23180:119;23366:1;23355:9;23351:17;23338:31;23396:18;23388:6;23385:30;23382:117;;;23418:79;;:::i;:::-;23382:117;23523:63;23578:7;23569:6;23558:9;23554:22;23523:63;:::i;:::-;23513:73;;23309:287;23663:2;23652:9;23648:18;23635:32;23694:18;23686:6;23683:30;23680:117;;;23716:79;;:::i;:::-;23680:117;23821:63;23876:7;23867:6;23856:9;23852:22;23821:63;:::i;:::-;23811:73;;23606:288;23067:834;;;;;:::o;23907:180::-;23955:77;23952:1;23945:88;24052:4;24049:1;24042:15;24076:4;24073:1;24066:15;24093:320;24137:6;24174:1;24168:4;24164:12;24154:22;;24221:1;24215:4;24211:12;24242:18;24232:81;;24298:4;24290:6;24286:17;24276:27;;24232:81;24360:2;24352:6;24349:14;24329:18;24326:38;24323:84;;24379:18;;:::i;:::-;24323:84;24144:269;24093:320;;;:::o;24419:182::-;24559:34;24555:1;24547:6;24543:14;24536:58;24419:182;:::o;24607:366::-;24749:3;24770:67;24834:2;24829:3;24770:67;:::i;:::-;24763:74;;24846:93;24935:3;24846:93;:::i;:::-;24964:2;24959:3;24955:12;24948:19;;24607:366;;;:::o;24979:419::-;25145:4;25183:2;25172:9;25168:18;25160:26;;25232:9;25226:4;25222:20;25218:1;25207:9;25203:17;25196:47;25260:131;25386:4;25260:131;:::i;:::-;25252:139;;24979:419;;;:::o;25404:148::-;25506:11;25543:3;25528:18;;25404:148;;;;:::o;25558:141::-;25607:4;25630:3;25622:11;;25653:3;25650:1;25643:14;25687:4;25684:1;25674:18;25666:26;;25558:141;;;:::o;25729:874::-;25832:3;25869:5;25863:12;25898:36;25924:9;25898:36;:::i;:::-;25950:89;26032:6;26027:3;25950:89;:::i;:::-;25943:96;;26070:1;26059:9;26055:17;26086:1;26081:166;;;;26261:1;26256:341;;;;26048:549;;26081:166;26165:4;26161:9;26150;26146:25;26141:3;26134:38;26227:6;26220:14;26213:22;26205:6;26201:35;26196:3;26192:45;26185:52;;26081:166;;26256:341;26323:38;26355:5;26323:38;:::i;:::-;26383:1;26397:154;26411:6;26408:1;26405:13;26397:154;;;26485:7;26479:14;26475:1;26470:3;26466:11;26459:35;26535:1;26526:7;26522:15;26511:26;;26433:4;26430:1;26426:12;26421:17;;26397:154;;;26580:6;26575:3;26571:16;26564:23;;26263:334;;26048:549;;25836:767;;25729:874;;;;:::o;26609:423::-;26783:3;26805:92;26893:3;26884:6;26805:92;:::i;:::-;26798:99;;26914:92;27002:3;26993:6;26914:92;:::i;:::-;26907:99;;27023:3;27016:10;;26609:423;;;;;:::o;27038:180::-;27086:77;27083:1;27076:88;27183:4;27180:1;27173:15;27207:4;27204:1;27197:15;27224:180;27272:77;27269:1;27262:88;27369:4;27366:1;27359:15;27393:4;27390:1;27383:15;27410:233;27449:3;27472:24;27490:5;27472:24;:::i;:::-;27463:33;;27518:66;27511:5;27508:77;27505:103;;27588:18;;:::i;:::-;27505:103;27635:1;27628:5;27624:13;27617:20;;27410:233;;;:::o;27649:410::-;27689:7;27712:20;27730:1;27712:20;:::i;:::-;27707:25;;27746:20;27764:1;27746:20;:::i;:::-;27741:25;;27801:1;27798;27794:9;27823:30;27841:11;27823:30;:::i;:::-;27812:41;;28002:1;27993:7;27989:15;27986:1;27983:22;27963:1;27956:9;27936:83;27913:139;;28032:18;;:::i;:::-;27913:139;27697:362;27649:410;;;;:::o;28065:180::-;28113:77;28110:1;28103:88;28210:4;28207:1;28200:15;28234:4;28231:1;28224:15;28251:185;28291:1;28308:20;28326:1;28308:20;:::i;:::-;28303:25;;28342:20;28360:1;28342:20;:::i;:::-;28337:25;;28381:1;28371:35;;28386:18;;:::i;:::-;28371:35;28428:1;28425;28421:9;28416:14;;28251:185;;;;:::o;28442:194::-;28482:4;28502:20;28520:1;28502:20;:::i;:::-;28497:25;;28536:20;28554:1;28536:20;:::i;:::-;28531:25;;28580:1;28577;28573:9;28565:17;;28604:1;28598:4;28595:11;28592:37;;;28609:18;;:::i;:::-;28592:37;28442:194;;;;:::o;28642:157::-;28782:9;28778:1;28770:6;28766:14;28759:33;28642:157;:::o;28805:365::-;28947:3;28968:66;29032:1;29027:3;28968:66;:::i;:::-;28961:73;;29043:93;29132:3;29043:93;:::i;:::-;29161:2;29156:3;29152:12;29145:19;;28805:365;;;:::o;29176:419::-;29342:4;29380:2;29369:9;29365:18;29357:26;;29429:9;29423:4;29419:20;29415:1;29404:9;29400:17;29393:47;29457:131;29583:4;29457:131;:::i;:::-;29449:139;;29176:419;;;:::o;29601:269::-;29730:3;29752:92;29840:3;29831:6;29752:92;:::i;:::-;29745:99;;29861:3;29854:10;;29601:269;;;;:::o;29876:171::-;29915:3;29938:24;29956:5;29938:24;:::i;:::-;29929:33;;29984:4;29977:5;29974:15;29971:41;;29992:18;;:::i;:::-;29971:41;30039:1;30032:5;30028:13;30021:20;;29876:171;;;:::o;30053:181::-;30193:33;30189:1;30181:6;30177:14;30170:57;30053:181;:::o;30240:366::-;30382:3;30403:67;30467:2;30462:3;30403:67;:::i;:::-;30396:74;;30479:93;30568:3;30479:93;:::i;:::-;30597:2;30592:3;30588:12;30581:19;;30240:366;;;:::o;30612:419::-;30778:4;30816:2;30805:9;30801:18;30793:26;;30865:9;30859:4;30855:20;30851:1;30840:9;30836:17;30829:47;30893:131;31019:4;30893:131;:::i;:::-;30885:139;;30612:419;;;:::o;31037:147::-;31138:11;31175:3;31160:18;;31037:147;;;;:::o;31190:114::-;;:::o;31310:398::-;31469:3;31490:83;31571:1;31566:3;31490:83;:::i;:::-;31483:90;;31582:93;31671:3;31582:93;:::i;:::-;31700:1;31695:3;31691:11;31684:18;;31310:398;;;:::o;31714:379::-;31898:3;31920:147;32063:3;31920:147;:::i;:::-;31913:154;;32084:3;32077:10;;31714:379;;;:::o;32099:162::-;32239:14;32235:1;32227:6;32223:14;32216:38;32099:162;:::o;32267:366::-;32409:3;32430:67;32494:2;32489:3;32430:67;:::i;:::-;32423:74;;32506:93;32595:3;32506:93;:::i;:::-;32624:2;32619:3;32615:12;32608:19;;32267:366;;;:::o;32639:419::-;32805:4;32843:2;32832:9;32828:18;32820:26;;32892:9;32886:4;32882:20;32878:1;32867:9;32863:17;32856:47;32920:131;33046:4;32920:131;:::i;:::-;32912:139;;32639:419;;;:::o;33064:390::-;33170:3;33198:39;33231:5;33198:39;:::i;:::-;33253:89;33335:6;33330:3;33253:89;:::i;:::-;33246:96;;33351:65;33409:6;33404:3;33397:4;33390:5;33386:16;33351:65;:::i;:::-;33441:6;33436:3;33432:16;33425:23;;33174:280;33064:390;;;;:::o;33460:275::-;33592:3;33614:95;33705:3;33696:6;33614:95;:::i;:::-;33607:102;;33726:3;33719:10;;33460:275;;;;:::o;33741:171::-;33881:23;33877:1;33869:6;33865:14;33858:47;33741:171;:::o;33918:366::-;34060:3;34081:67;34145:2;34140:3;34081:67;:::i;:::-;34074:74;;34157:93;34246:3;34157:93;:::i;:::-;34275:2;34270:3;34266:12;34259:19;;33918:366;;;:::o;34290:419::-;34456:4;34494:2;34483:9;34479:18;34471:26;;34543:9;34537:4;34533:20;34529:1;34518:9;34514:17;34507:47;34571:131;34697:4;34571:131;:::i;:::-;34563:139;;34290:419;;;:::o;34715:169::-;34855:21;34851:1;34843:6;34839:14;34832:45;34715:169;:::o;34890:366::-;35032:3;35053:67;35117:2;35112:3;35053:67;:::i;:::-;35046:74;;35129:93;35218:3;35129:93;:::i;:::-;35247:2;35242:3;35238:12;35231:19;;34890:366;;;:::o;35262:419::-;35428:4;35466:2;35455:9;35451:18;35443:26;;35515:9;35509:4;35505:20;35501:1;35490:9;35486:17;35479:47;35543:131;35669:4;35543:131;:::i;:::-;35535:139;;35262:419;;;:::o;35687:93::-;35724:6;35771:2;35766;35759:5;35755:14;35751:23;35741:33;;35687:93;;;:::o;35786:107::-;35830:8;35880:5;35874:4;35870:16;35849:37;;35786:107;;;;:::o;35899:393::-;35968:6;36018:1;36006:10;36002:18;36041:97;36071:66;36060:9;36041:97;:::i;:::-;36159:39;36189:8;36178:9;36159:39;:::i;:::-;36147:51;;36231:4;36227:9;36220:5;36216:21;36207:30;;36280:4;36270:8;36266:19;36259:5;36256:30;36246:40;;35975:317;;35899:393;;;;;:::o;36298:60::-;36326:3;36347:5;36340:12;;36298:60;;;:::o;36364:142::-;36414:9;36447:53;36465:34;36474:24;36492:5;36474:24;:::i;:::-;36465:34;:::i;:::-;36447:53;:::i;:::-;36434:66;;36364:142;;;:::o;36512:75::-;36555:3;36576:5;36569:12;;36512:75;;;:::o;36593:269::-;36703:39;36734:7;36703:39;:::i;:::-;36764:91;36813:41;36837:16;36813:41;:::i;:::-;36805:6;36798:4;36792:11;36764:91;:::i;:::-;36758:4;36751:105;36669:193;36593:269;;;:::o;36868:73::-;36913:3;36868:73;:::o;36947:189::-;37024:32;;:::i;:::-;37065:65;37123:6;37115;37109:4;37065:65;:::i;:::-;37000:136;36947:189;;:::o;37142:186::-;37202:120;37219:3;37212:5;37209:14;37202:120;;;37273:39;37310:1;37303:5;37273:39;:::i;:::-;37246:1;37239:5;37235:13;37226:22;;37202:120;;;37142:186;;:::o;37334:543::-;37435:2;37430:3;37427:11;37424:446;;;37469:38;37501:5;37469:38;:::i;:::-;37553:29;37571:10;37553:29;:::i;:::-;37543:8;37539:44;37736:2;37724:10;37721:18;37718:49;;;37757:8;37742:23;;37718:49;37780:80;37836:22;37854:3;37836:22;:::i;:::-;37826:8;37822:37;37809:11;37780:80;:::i;:::-;37439:431;;37424:446;37334:543;;;:::o;37883:117::-;37937:8;37987:5;37981:4;37977:16;37956:37;;37883:117;;;;:::o;38006:169::-;38050:6;38083:51;38131:1;38127:6;38119:5;38116:1;38112:13;38083:51;:::i;:::-;38079:56;38164:4;38158;38154:15;38144:25;;38057:118;38006:169;;;;:::o;38180:295::-;38256:4;38402:29;38427:3;38421:4;38402:29;:::i;:::-;38394:37;;38464:3;38461:1;38457:11;38451:4;38448:21;38440:29;;38180:295;;;;:::o;38480:1395::-;38597:37;38630:3;38597:37;:::i;:::-;38699:18;38691:6;38688:30;38685:56;;;38721:18;;:::i;:::-;38685:56;38765:38;38797:4;38791:11;38765:38;:::i;:::-;38850:67;38910:6;38902;38896:4;38850:67;:::i;:::-;38944:1;38968:4;38955:17;;39000:2;38992:6;38989:14;39017:1;39012:618;;;;39674:1;39691:6;39688:77;;;39740:9;39735:3;39731:19;39725:26;39716:35;;39688:77;39791:67;39851:6;39844:5;39791:67;:::i;:::-;39785:4;39778:81;39647:222;38982:887;;39012:618;39064:4;39060:9;39052:6;39048:22;39098:37;39130:4;39098:37;:::i;:::-;39157:1;39171:208;39185:7;39182:1;39179:14;39171:208;;;39264:9;39259:3;39255:19;39249:26;39241:6;39234:42;39315:1;39307:6;39303:14;39293:24;;39362:2;39351:9;39347:18;39334:31;;39208:4;39205:1;39201:12;39196:17;;39171:208;;;39407:6;39398:7;39395:19;39392:179;;;39465:9;39460:3;39456:19;39450:26;39508:48;39550:4;39542:6;39538:17;39527:9;39508:48;:::i;:::-;39500:6;39493:64;39415:156;39392:179;39617:1;39613;39605:6;39601:14;39597:22;39591:4;39584:36;39019:611;;;38982:887;;38572:1303;;;38480:1395;;:::o;39881:191::-;39919:4;39939:18;39955:1;39939:18;:::i;:::-;39934:23;;39971:18;39987:1;39971:18;:::i;:::-;39966:23;;40013:1;40010;40006:9;39998:17;;40037:4;40031;40028:14;40025:40;;;40045:18;;:::i;:::-;40025:40;39881:191;;;;:::o;40102:330::-;40218:3;40239:89;40321:6;40316:3;40239:89;:::i;:::-;40232:96;;40338:56;40387:6;40382:3;40375:5;40338:56;:::i;:::-;40419:6;40414:3;40410:16;40403:23;;40102:330;;;;;:::o;40438:295::-;40580:3;40602:105;40703:3;40694:6;40686;40602:105;:::i;:::-;40595:112;;40724:3;40717:10;;40438:295;;;;;:::o;40739:155::-;40879:7;40875:1;40867:6;40863:14;40856:31;40739:155;:::o;40900:365::-;41042:3;41063:66;41127:1;41122:3;41063:66;:::i;:::-;41056:73;;41138:93;41227:3;41138:93;:::i;:::-;41256:2;41251:3;41247:12;41240:19;;40900:365;;;:::o;41271:419::-;41437:4;41475:2;41464:9;41460:18;41452:26;;41524:9;41518:4;41514:20;41510:1;41499:9;41495:17;41488:47;41552:131;41678:4;41552:131;:::i;:::-;41544:139;;41271:419;;;:::o;41718:327::-;41832:3;41853:88;41934:6;41929:3;41853:88;:::i;:::-;41846:95;;41951:56;42000:6;41995:3;41988:5;41951:56;:::i;:::-;42032:6;42027:3;42023:16;42016:23;;41718:327;;;;;:::o;42051:291::-;42191:3;42213:103;42312:3;42303:6;42295;42213:103;:::i;:::-;42206:110;;42333:3;42326:10;;42051:291;;;;;:::o;42348:97::-;42407:6;42435:3;42425:13;;42348:97;;;;:::o;42451:1403::-;42575:44;42615:3;42610;42575:44;:::i;:::-;42684:18;42676:6;42673:30;42670:56;;;42706:18;;:::i;:::-;42670:56;42750:38;42782:4;42776:11;42750:38;:::i;:::-;42835:67;42895:6;42887;42881:4;42835:67;:::i;:::-;42929:1;42958:2;42950:6;42947:14;42975:1;42970:632;;;;43646:1;43663:6;43660:84;;;43719:9;43714:3;43710:19;43697:33;43688:42;;43660:84;43770:67;43830:6;43823:5;43770:67;:::i;:::-;43764:4;43757:81;43619:229;42940:908;;42970:632;43022:4;43018:9;43010:6;43006:22;43056:37;43088:4;43056:37;:::i;:::-;43115:1;43129:215;43143:7;43140:1;43137:14;43129:215;;;43229:9;43224:3;43220:19;43207:33;43199:6;43192:49;43280:1;43272:6;43268:14;43258:24;;43327:2;43316:9;43312:18;43299:31;;43166:4;43163:1;43159:12;43154:17;;43129:215;;;43372:6;43363:7;43360:19;43357:186;;;43437:9;43432:3;43428:19;43415:33;43480:48;43522:4;43514:6;43510:17;43499:9;43480:48;:::i;:::-;43472:6;43465:64;43380:163;43357:186;43589:1;43585;43577:6;43573:14;43569:22;43563:4;43556:36;42977:625;;;42940:908;;42550:1304;;;42451:1403;;;:::o;43860:429::-;44037:3;44059:95;44150:3;44141:6;44059:95;:::i;:::-;44052:102;;44171:92;44259:3;44250:6;44171:92;:::i;:::-;44164:99;;44280:3;44273:10;;43860:429;;;;;:::o;44295:225::-;44435:34;44431:1;44423:6;44419:14;44412:58;44504:8;44499:2;44491:6;44487:15;44480:33;44295:225;:::o;44526:366::-;44668:3;44689:67;44753:2;44748:3;44689:67;:::i;:::-;44682:74;;44765:93;44854:3;44765:93;:::i;:::-;44883:2;44878:3;44874:12;44867:19;;44526:366;;;:::o;44898:419::-;45064:4;45102:2;45091:9;45087:18;45079:26;;45151:9;45145:4;45141:20;45137:1;45126:9;45122:17;45115:47;45179:131;45305:4;45179:131;:::i;:::-;45171:139;;44898:419;;;:::o;45323:98::-;45374:6;45408:5;45402:12;45392:22;;45323:98;;;:::o;45427:168::-;45510:11;45544:6;45539:3;45532:19;45584:4;45579:3;45575:14;45560:29;;45427:168;;;;:::o;45601:373::-;45687:3;45715:38;45747:5;45715:38;:::i;:::-;45769:70;45832:6;45827:3;45769:70;:::i;:::-;45762:77;;45848:65;45906:6;45901:3;45894:4;45887:5;45883:16;45848:65;:::i;:::-;45938:29;45960:6;45938:29;:::i;:::-;45933:3;45929:39;45922:46;;45691:283;45601:373;;;;:::o;45980:640::-;46175:4;46213:3;46202:9;46198:19;46190:27;;46227:71;46295:1;46284:9;46280:17;46271:6;46227:71;:::i;:::-;46308:72;46376:2;46365:9;46361:18;46352:6;46308:72;:::i;:::-;46390;46458:2;46447:9;46443:18;46434:6;46390:72;:::i;:::-;46509:9;46503:4;46499:20;46494:2;46483:9;46479:18;46472:48;46537:76;46608:4;46599:6;46537:76;:::i;:::-;46529:84;;45980:640;;;;;;;:::o;46626:141::-;46682:5;46713:6;46707:13;46698:22;;46729:32;46755:5;46729:32;:::i;:::-;46626:141;;;;:::o;46773:349::-;46842:6;46891:2;46879:9;46870:7;46866:23;46862:32;46859:119;;;46897:79;;:::i;:::-;46859:119;47017:1;47042:63;47097:7;47088:6;47077:9;47073:22;47042:63;:::i;:::-;47032:73;;46988:127;46773:349;;;;:::o

Swarm Source

ipfs://40a318383745aae64541a0f249a84bd2c229a4dddbcb17722247b0b3c9b10e88
Loading