ETH Price: $2,943.22 (-6.78%)
Gas: 7 Gwei

Token

We The Kids (KIDS)
 

Overview

Max Total Supply

9,001 KIDS

Holders

2,338

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 KIDS
0x0c3c5ed8c15f73848567aa58c532caa26afce88e
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
TheKids

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-28
*/

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


// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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

/**
 * @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: contracts/IERC721A.sol


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

pragma solidity ^0.8.4;



/**
 * @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: contracts/ERC721A.sol


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

pragma solidity ^0.8.4;







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

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

    /**
     * @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, tokenId.toString())) : '';
    }

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

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @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.
        delete _tokenApprovals[tokenId];

        // 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.
        delete _tokenApprovals[tokenId];

        // 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 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 {}
}

// File: contracts/TheKidsTest.sol



pragma solidity >=0.7.0 <0.9.0;

contract TheKids is ERC721A, Ownable {
  using Strings for uint256;

  string private uriPrefix = "";
  string private uriSuffix = ".json";
  string public hiddenMetadataUri = "";
  
  uint256 public MAX_SUPPLY = 9001; 
  uint256 public OG_MINT_PRICE = 0 ether;
  uint256 public WHITELIST_MINT_PRICE = 0.03 ether;
  uint256 public PUBLIC_MINT_PRICE = 0.05 ether;
  uint256 public MAX_OG_WHITELIST_MINT_AMOUNT = 3;
  uint256 public MAX_PUBLIC_MINT_AMOUNT = 4;
  uint256 public MAX_AMOUNT_PER_WALLET = 10;

  // MINT STATES
  bool public ogMintActive = true;
  bool public whiteListMintActive = false;
  bool public publicMintActive = false;

  bool public paused = true;
  bool public revealed = false;

  //Mint amounts per wallet
  mapping(address => uint256) private totalPublicMint;
  mapping(address => uint256) private totalWhiteListMint;
  mapping(address => uint256) private totalOGMint;

  bytes32 private whiteListMerkleRoot;
  bytes32 private ogListMerkleRoot;

  constructor() ERC721A("We The Kids", "KIDS") {
    setHiddenMetadataUri("https://kids.mypinata.cloud/ipfs/QmZEFAbQNiCT7DSEjhgp7dhRygGYmaptQPcXGX5wETRnbi/");
  }
  
  modifier mintModifier(uint256 _mintAmount) {
    require(!paused, "The contract is paused!");
    require(_mintAmount > 0, "invalid Mint amount");
    require(totalSupply() + _mintAmount <= MAX_SUPPLY, "Max supply exceeded!");
    require((totalOGMint[msg.sender] + totalWhiteListMint[msg.sender] + totalPublicMint[msg.sender]) <= MAX_AMOUNT_PER_WALLET,
      "maximum mint amount reached for this wallet");
    require(tx.origin == msg.sender, "No minting from contracts");
    _;
  }

  function mint(uint256 _mintAmount) public payable mintModifier(_mintAmount) {
    require(publicMintActive, "Public mint is not active :/");
    require((totalPublicMint[msg.sender] + _mintAmount) <= MAX_PUBLIC_MINT_AMOUNT, "Cannot Mint more than the public max amount");

    require(msg.value >= ( PUBLIC_MINT_PRICE * _mintAmount ), "Insufficient funds");
  
    totalPublicMint[msg.sender] += _mintAmount;
    _abstractMint(msg.sender, _mintAmount);
  }

  function whiteListMint(bytes32[] memory _merkleProof, uint256 _mintAmount) external payable mintModifier(_mintAmount) {
    require(whiteListMintActive, "Whitelist mint is not active :/");
    require((totalWhiteListMint[msg.sender] + _mintAmount) <= MAX_OG_WHITELIST_MINT_AMOUNT, "cannot Mint more than whitelist max amount");

    require(msg.value >= (WHITELIST_MINT_PRICE * _mintAmount), "Insufficient funds");

    bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
    require(MerkleProof.verify(_merkleProof, whiteListMerkleRoot, leaf), "Invalid Proof - Address not in the list!");

    totalWhiteListMint[msg.sender] += _mintAmount;
    _abstractMint(msg.sender, _mintAmount);
  }

  function ogListMint(bytes32[] memory _merkleProof, uint256 _mintAmount) external payable mintModifier(_mintAmount) {
    require(ogMintActive, "OG Mint is not active");
    require((totalOGMint[msg.sender] + _mintAmount) <= MAX_OG_WHITELIST_MINT_AMOUNT, "cannot mint more than OG max amount");

    bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
    require(MerkleProof.verify(_merkleProof, ogListMerkleRoot, leaf), "Invalid Proof - Address not in the list!");

    totalOGMint[msg.sender] += _mintAmount;
    _abstractMint(msg.sender, _mintAmount);
  }

  function teamMint(uint256 _mintAmount) public onlyOwner {
    _abstractMint(msg.sender, _mintAmount);
  }

  function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner {
    _abstractMint(_receiver, _mintAmount);
  }

  function setWhiteListMerkleRoot(bytes32 _root) public onlyOwner {
    whiteListMerkleRoot = _root;
  }

  function setOGMerkleRoot(bytes32 _root) public onlyOwner {
    ogListMerkleRoot = _root;
  }

  function setOriginalKidsMintState(bool _state) public onlyOwner {
    ogMintActive = _state;
  }

  function setWhiteListMintState(bool _state) public onlyOwner {
    whiteListMintActive = _state;
  }

  function setPublicMintState(bool _state) public onlyOwner {
    publicMintActive = _state;
  }

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

  function setOG_Cost(uint256 _cost) public onlyOwner {
    OG_MINT_PRICE = _cost;
  }

  function setWhitelistCost(uint256 _cost) public onlyOwner {
    WHITELIST_MINT_PRICE = _cost;
  }

  function setPublicCost(uint256 _cost) public onlyOwner {
    PUBLIC_MINT_PRICE = _cost;
  }

  function setMaxAmountPerOG_or_Whitelist(uint256 _maxMintAmountPerTx) public onlyOwner {
    MAX_OG_WHITELIST_MINT_AMOUNT = _maxMintAmountPerTx;
  }

  function setMaxAmountPerWallet(uint256 _maxAmountPerWallet) public onlyOwner {
    MAX_AMOUNT_PER_WALLET = _maxAmountPerWallet;
  }

  function setMaxAmountPublicMint(uint256 _maxMintAmountPublic) public onlyOwner {
    MAX_PUBLIC_MINT_AMOUNT = _maxMintAmountPublic;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function setMaxSupply(uint256 _max_supply) public onlyOwner {
    MAX_SUPPLY = _max_supply;
  }

  function withdraw() public onlyOwner {
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }

  function _abstractMint(address _receiver, uint256 _mintAmount) internal {
    _safeMint(_receiver, _mintAmount);
  }

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

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

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= MAX_SUPPLY) {
      address currentTokenOwner = ownerOf(currentTokenId);
      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }
      currentTokenId++;
    }
    return ownedTokenIds;
  }

  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory)
  {
    require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");

    if (revealed == false) {
        return string(abi.encodePacked(hiddenMetadataUri, (_tokenId +1).toString(), uriSuffix));
         // if hidden show hidden metadata
    }

    string memory currentBaseURI = _baseURI(); //gets base uri for hosted image
    // appends the base uri to the token id + suffix to point to correct ipfs image
    return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, (_tokenId +1).toString(), uriSuffix)) : "";
  }
}

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":"MAX_AMOUNT_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_OG_WHITELIST_MINT_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_MINT_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OG_MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","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":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"ogListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"ogMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxAmountPerOG_or_Whitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxAmountPerWallet","type":"uint256"}],"name":"setMaxAmountPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPublic","type":"uint256"}],"name":"setMaxAmountPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max_supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setOGMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setOG_Cost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOriginalKidsMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setPublicCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setWhiteListMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhiteListMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setWhitelistCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","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":"walletOf","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"whiteListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whiteListMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600990805190602001906200002b92919062000415565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a90805190602001906200007992919062000415565b5060405180602001604052806000815250600b9080519060200190620000a192919062000415565b50612329600c556000600d55666a94d74f430000600e5566b1a2bc2ec50000600f5560036010556004601155600a6012556001601360006101000a81548160ff0219169083151502179055506000601360016101000a81548160ff0219169083151502179055506000601360026101000a81548160ff0219169083151502179055506001601360036101000a81548160ff0219169083151502179055506000601360046101000a81548160ff0219169083151502179055503480156200016657600080fd5b506040518060400160405280600b81526020017f576520546865204b6964730000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4b494453000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001eb92919062000415565b5080600390805190602001906200020492919062000415565b50620002156200026d60201b60201c565b60008190555050506200023d620002316200027260201b60201c565b6200027a60201b60201c565b6200026760405180608001604052806050815260200162005f9b605091396200034060201b60201c565b620005ad565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003506200027260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000376620003eb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003cf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003c690620004ec565b60405180910390fd5b80600b9080519060200190620003e792919062000415565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b82805462000423906200051f565b90600052602060002090601f01602090048101928262000447576000855562000493565b82601f106200046257805160ff191683800117855562000493565b8280016001018555821562000493579182015b828111156200049257825182559160200191906001019062000475565b5b509050620004a29190620004a6565b5090565b5b80821115620004c1576000816000905550600101620004a7565b5090565b6000620004d46020836200050e565b9150620004e18262000584565b602082019050919050565b600060208201905081810360008301526200050781620004c5565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200053857607f821691505b602082108114156200054f576200054e62000555565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6159de80620005bd6000396000f3fe6080604052600436106103355760003560e01c80637ec4a659116101ab578063b88d4fde116100f7578063e08e65ea11610095578063efbd73f41161006f578063efbd73f414610baa578063f2fde38b14610bd3578063f48c767314610bfc578063fed2cd0814610c2757610335565b8063e08e65ea14610b1b578063e0a8085314610b44578063e985e9c514610b6d57610335565b8063cd6d6bbc116100d1578063cd6d6bbc14610a73578063d49479eb14610a9c578063d62ca07114610ac5578063d9fe5e6a14610af057610335565b8063b88d4fde146109f1578063c30bf31814610a1a578063c87b56dd14610a3657610335565b8063a0712d6811610164578063aca9938d1161013e578063aca9938d14610947578063aefd1bc314610972578063b29350e51461099d578063b67c25a3146109c657610335565b8063a0712d68146108d7578063a22cb465146108f3578063a45ba8e71461091c57610335565b80637ec4a659146107dd578063811d24371461080657806385266ec61461082f578063879fbedf146108585780638da5cb5b1461088157806395d89b41146108ac57610335565b80633ccfd60b1161028557806365cf989a116102235780636f8b44b0116101fd5780636f8b44b0146107355780637006477a1461075e57806370a0823114610789578063715018a6146107c657610335565b806365cf989a146106b857806367729a3e146106e15780636bde26271461070a57610335565b8063518302271161025f57806351830227146105fc57806358d004cb146106275780635c975abb146106505780636352211e1461067b57610335565b80633ccfd60b1461059357806342842e0e146105aa5780634fdd43cb146105d357610335565b806318160ddd116102f257806325c2c020116102cc57806325c2c020146104eb5780632fbba1151461051457806332cb6b0c1461053d5780633692e7ac1461056857610335565b806318160ddd1461045a5780631982640c1461048557806323b872dd146104c257610335565b806301ffc9a71461033a57806306fdde0314610377578063081812fc146103a2578063095ea7b3146103df57806316ba10e01461040857806316c38b3c14610431575b600080fd5b34801561034657600080fd5b50610361600480360381019061035c9190614790565b610c43565b60405161036e9190614df9565b60405180910390f35b34801561038357600080fd5b5061038c610d25565b6040516103999190614e14565b60405180910390f35b3480156103ae57600080fd5b506103c960048036038101906103c49190614833565b610db7565b6040516103d69190614d70565b60405180910390f35b3480156103eb57600080fd5b506104066004803603810190610401919061469a565b610e33565b005b34801561041457600080fd5b5061042f600480360381019061042a91906147ea565b610fda565b005b34801561043d57600080fd5b5061045860048036038101906104539190614736565b611070565b005b34801561046657600080fd5b5061046f611109565b60405161047c9190615036565b60405180910390f35b34801561049157600080fd5b506104ac60048036038101906104a79190614517565b611120565b6040516104b99190614dd7565b60405180910390f35b3480156104ce57600080fd5b506104e960048036038101906104e49190614584565b61122b565b005b3480156104f757600080fd5b50610512600480360381019061050d9190614763565b61123b565b005b34801561052057600080fd5b5061053b60048036038101906105369190614833565b6112c1565b005b34801561054957600080fd5b5061055261134a565b60405161055f9190615036565b60405180910390f35b34801561057457600080fd5b5061057d611350565b60405161058a9190614df9565b60405180910390f35b34801561059f57600080fd5b506105a8611363565b005b3480156105b657600080fd5b506105d160048036038101906105cc9190614584565b61145f565b005b3480156105df57600080fd5b506105fa60048036038101906105f591906147ea565b61147f565b005b34801561060857600080fd5b50610611611515565b60405161061e9190614df9565b60405180910390f35b34801561063357600080fd5b5061064e60048036038101906106499190614736565b611528565b005b34801561065c57600080fd5b506106656115c1565b6040516106729190614df9565b60405180910390f35b34801561068757600080fd5b506106a2600480360381019061069d9190614833565b6115d4565b6040516106af9190614d70565b60405180910390f35b3480156106c457600080fd5b506106df60048036038101906106da9190614833565b6115ea565b005b3480156106ed57600080fd5b5061070860048036038101906107039190614833565b611670565b005b34801561071657600080fd5b5061071f6116f6565b60405161072c9190615036565b60405180910390f35b34801561074157600080fd5b5061075c60048036038101906107579190614833565b6116fc565b005b34801561076a57600080fd5b50610773611782565b6040516107809190614df9565b60405180910390f35b34801561079557600080fd5b506107b060048036038101906107ab9190614517565b611795565b6040516107bd9190615036565b60405180910390f35b3480156107d257600080fd5b506107db611865565b005b3480156107e957600080fd5b5061080460048036038101906107ff91906147ea565b6118ed565b005b34801561081257600080fd5b5061082d60048036038101906108289190614833565b611983565b005b34801561083b57600080fd5b5061085660048036038101906108519190614833565b611a09565b005b34801561086457600080fd5b5061087f600480360381019061087a9190614736565b611a8f565b005b34801561088d57600080fd5b50610896611b28565b6040516108a39190614d70565b60405180910390f35b3480156108b857600080fd5b506108c1611b52565b6040516108ce9190614e14565b60405180910390f35b6108f160048036038101906108ec9190614833565b611be4565b005b3480156108ff57600080fd5b5061091a6004803603810190610915919061465a565b611fe7565b005b34801561092857600080fd5b5061093161215f565b60405161093e9190614e14565b60405180910390f35b34801561095357600080fd5b5061095c6121ed565b6040516109699190615036565b60405180910390f35b34801561097e57600080fd5b506109876121f3565b6040516109949190615036565b60405180910390f35b3480156109a957600080fd5b506109c460048036038101906109bf9190614736565b6121f9565b005b3480156109d257600080fd5b506109db612292565b6040516109e89190614df9565b60405180910390f35b3480156109fd57600080fd5b50610a186004803603810190610a1391906145d7565b6122a5565b005b610a346004803603810190610a2f91906146da565b61231d565b005b348015610a4257600080fd5b50610a5d6004803603810190610a589190614833565b612799565b604051610a6a9190614e14565b60405180910390f35b348015610a7f57600080fd5b50610a9a6004803603810190610a959190614833565b6128ad565b005b348015610aa857600080fd5b50610ac36004803603810190610abe9190614833565b612933565b005b348015610ad157600080fd5b50610ada6129b9565b604051610ae79190615036565b60405180910390f35b348015610afc57600080fd5b50610b056129bf565b604051610b129190615036565b60405180910390f35b348015610b2757600080fd5b50610b426004803603810190610b3d9190614763565b6129c5565b005b348015610b5057600080fd5b50610b6b6004803603810190610b669190614736565b612a4b565b005b348015610b7957600080fd5b50610b946004803603810190610b8f9190614544565b612ae4565b604051610ba19190614df9565b60405180910390f35b348015610bb657600080fd5b50610bd16004803603810190610bcc9190614860565b612b78565b005b348015610bdf57600080fd5b50610bfa6004803603810190610bf59190614517565b612c02565b005b348015610c0857600080fd5b50610c11612cfa565b604051610c1e9190615036565b60405180910390f35b610c416004803603810190610c3c91906146da565b612d00565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d0e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d1e5750610d1d8261312c565b5b9050919050565b606060028054610d3490615375565b80601f0160208091040260200160405190810160405280929190818152602001828054610d6090615375565b8015610dad5780601f10610d8257610100808354040283529160200191610dad565b820191906000526020600020905b815481529060010190602001808311610d9057829003601f168201915b5050505050905090565b6000610dc282613196565b610df8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e3e826115d4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ea6576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ec56131e4565b73ffffffffffffffffffffffffffffffffffffffff1614610f2857610ef181610eec6131e4565b612ae4565b610f27576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610fe26131e4565b73ffffffffffffffffffffffffffffffffffffffff16611000611b28565b73ffffffffffffffffffffffffffffffffffffffff1614611056576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104d90614f36565b60405180910390fd5b80600a908051906020019061106c929190614235565b5050565b6110786131e4565b73ffffffffffffffffffffffffffffffffffffffff16611096611b28565b73ffffffffffffffffffffffffffffffffffffffff16146110ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e390614f36565b60405180910390fd5b80601360036101000a81548160ff02191690831515021790555050565b60006111136131ec565b6001546000540303905090565b6060600061112d83611795565b905060008167ffffffffffffffff81111561114b5761114a615532565b5b6040519080825280602002602001820160405280156111795781602001602082028036833780820191505090505b50905060006001905060005b83811080156111965750600c548211155b1561121f5760006111a6836115d4565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561120b57828483815181106111f0576111ef615503565b5b6020026020010181815250508180611207906153d8565b9250505b8280611216906153d8565b93505050611185565b82945050505050919050565b6112368383836131f1565b505050565b6112436131e4565b73ffffffffffffffffffffffffffffffffffffffff16611261611b28565b73ffffffffffffffffffffffffffffffffffffffff16146112b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ae90614f36565b60405180910390fd5b8060188190555050565b6112c96131e4565b73ffffffffffffffffffffffffffffffffffffffff166112e7611b28565b73ffffffffffffffffffffffffffffffffffffffff161461133d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133490614f36565b60405180910390fd5b61134733826136d1565b50565b600c5481565b601360019054906101000a900460ff1681565b61136b6131e4565b73ffffffffffffffffffffffffffffffffffffffff16611389611b28565b73ffffffffffffffffffffffffffffffffffffffff16146113df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d690614f36565b60405180910390fd5b60006113e9611b28565b73ffffffffffffffffffffffffffffffffffffffff164760405161140c90614d5b565b60006040518083038185875af1925050503d8060008114611449576040519150601f19603f3d011682016040523d82523d6000602084013e61144e565b606091505b505090508061145c57600080fd5b50565b61147a838383604051806020016040528060008152506122a5565b505050565b6114876131e4565b73ffffffffffffffffffffffffffffffffffffffff166114a5611b28565b73ffffffffffffffffffffffffffffffffffffffff16146114fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f290614f36565b60405180910390fd5b80600b9080519060200190611511929190614235565b5050565b601360049054906101000a900460ff1681565b6115306131e4565b73ffffffffffffffffffffffffffffffffffffffff1661154e611b28565b73ffffffffffffffffffffffffffffffffffffffff16146115a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159b90614f36565b60405180910390fd5b80601360006101000a81548160ff02191690831515021790555050565b601360039054906101000a900460ff1681565b60006115df826136df565b600001519050919050565b6115f26131e4565b73ffffffffffffffffffffffffffffffffffffffff16611610611b28565b73ffffffffffffffffffffffffffffffffffffffff1614611666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165d90614f36565b60405180910390fd5b8060108190555050565b6116786131e4565b73ffffffffffffffffffffffffffffffffffffffff16611696611b28565b73ffffffffffffffffffffffffffffffffffffffff16146116ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e390614f36565b60405180910390fd5b80600d8190555050565b600f5481565b6117046131e4565b73ffffffffffffffffffffffffffffffffffffffff16611722611b28565b73ffffffffffffffffffffffffffffffffffffffff1614611778576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176f90614f36565b60405180910390fd5b80600c8190555050565b601360009054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117fd576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61186d6131e4565b73ffffffffffffffffffffffffffffffffffffffff1661188b611b28565b73ffffffffffffffffffffffffffffffffffffffff16146118e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d890614f36565b60405180910390fd5b6118eb600061396a565b565b6118f56131e4565b73ffffffffffffffffffffffffffffffffffffffff16611913611b28565b73ffffffffffffffffffffffffffffffffffffffff1614611969576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196090614f36565b60405180910390fd5b806009908051906020019061197f929190614235565b5050565b61198b6131e4565b73ffffffffffffffffffffffffffffffffffffffff166119a9611b28565b73ffffffffffffffffffffffffffffffffffffffff16146119ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f690614f36565b60405180910390fd5b80600f8190555050565b611a116131e4565b73ffffffffffffffffffffffffffffffffffffffff16611a2f611b28565b73ffffffffffffffffffffffffffffffffffffffff1614611a85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7c90614f36565b60405180910390fd5b8060128190555050565b611a976131e4565b73ffffffffffffffffffffffffffffffffffffffff16611ab5611b28565b73ffffffffffffffffffffffffffffffffffffffff1614611b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0290614f36565b60405180910390fd5b80601360026101000a81548160ff02191690831515021790555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611b6190615375565b80601f0160208091040260200160405190810160405280929190818152602001828054611b8d90615375565b8015611bda5780601f10611baf57610100808354040283529160200191611bda565b820191906000526020600020905b815481529060010190602001808311611bbd57829003601f168201915b5050505050905090565b80601360039054906101000a900460ff1615611c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2c90614f56565b60405180910390fd5b60008111611c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6f90614e96565b60405180910390fd5b600c5481611c84611109565b611c8e91906151a0565b1115611ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc690614fd6565b60405180910390fd5b601254601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d9c91906151a0565b611da691906151a0565b1115611de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dde90614fb6565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4c90614f16565b60405180910390fd5b601360029054906101000a900460ff16611ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9b90614eb6565b60405180910390fd5b60115482601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ef291906151a0565b1115611f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2a90614ef6565b60405180910390fd5b81600f54611f419190615227565b341015611f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7a90614ed6565b60405180910390fd5b81601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fd291906151a0565b92505081905550611fe333836136d1565b5050565b611fef6131e4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612054576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006120616131e4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661210e6131e4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121539190614df9565b60405180910390a35050565b600b805461216c90615375565b80601f016020809104026020016040519081016040528092919081815260200182805461219890615375565b80156121e55780601f106121ba576101008083540402835291602001916121e5565b820191906000526020600020905b8154815290600101906020018083116121c857829003601f168201915b505050505081565b600e5481565b60115481565b6122016131e4565b73ffffffffffffffffffffffffffffffffffffffff1661221f611b28565b73ffffffffffffffffffffffffffffffffffffffff1614612275576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226c90614f36565b60405180910390fd5b80601360016101000a81548160ff02191690831515021790555050565b601360029054906101000a900460ff1681565b6122b08484846131f1565b6122cf8373ffffffffffffffffffffffffffffffffffffffff16613a30565b15612317576122e084848484613a53565b612316576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b80601360039054906101000a900460ff161561236e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236590614f56565b60405180910390fd5b600081116123b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a890614e96565b60405180910390fd5b600c54816123bd611109565b6123c791906151a0565b1115612408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ff90614fd6565b60405180910390fd5b601254601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124d591906151a0565b6124df91906151a0565b1115612520576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251790614fb6565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461258e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258590614f16565b60405180910390fd5b601360019054906101000a900460ff166125dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d490614f96565b60405180910390fd5b60105482601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461262b91906151a0565b111561266c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266390614e56565b60405180910390fd5b81600e5461267a9190615227565b3410156126bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b390614ed6565b60405180910390fd5b6000336040516020016126cf9190614cde565b6040516020818303038152906040528051906020012090506126f48460175483613bb3565b612733576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272a90614e36565b60405180910390fd5b82601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461278291906151a0565b9250508190555061279333846136d1565b50505050565b60606127a482613196565b6127e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127da90614f76565b60405180910390fd5b60001515601360049054906101000a900460ff161515141561284057600b61281660018461281191906151a0565b613bca565b600a60405160200161282a93929190614d2a565b60405160208183030381529060405290506128a8565b600061284a613d2b565b9050600081511161286a57604051806020016040528060008152506128a4565b8061288060018561287b91906151a0565b613bca565b600a60405160200161289493929190614cf9565b6040516020818303038152906040525b9150505b919050565b6128b56131e4565b73ffffffffffffffffffffffffffffffffffffffff166128d3611b28565b73ffffffffffffffffffffffffffffffffffffffff1614612929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292090614f36565b60405180910390fd5b8060118190555050565b61293b6131e4565b73ffffffffffffffffffffffffffffffffffffffff16612959611b28565b73ffffffffffffffffffffffffffffffffffffffff16146129af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a690614f36565b60405180910390fd5b80600e8190555050565b60125481565b60105481565b6129cd6131e4565b73ffffffffffffffffffffffffffffffffffffffff166129eb611b28565b73ffffffffffffffffffffffffffffffffffffffff1614612a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3890614f36565b60405180910390fd5b8060178190555050565b612a536131e4565b73ffffffffffffffffffffffffffffffffffffffff16612a71611b28565b73ffffffffffffffffffffffffffffffffffffffff1614612ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abe90614f36565b60405180910390fd5b80601360046101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612b806131e4565b73ffffffffffffffffffffffffffffffffffffffff16612b9e611b28565b73ffffffffffffffffffffffffffffffffffffffff1614612bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612beb90614f36565b60405180910390fd5b612bfe81836136d1565b5050565b612c0a6131e4565b73ffffffffffffffffffffffffffffffffffffffff16612c28611b28565b73ffffffffffffffffffffffffffffffffffffffff1614612c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7590614f36565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce590614e76565b60405180910390fd5b612cf78161396a565b50565b600d5481565b80601360039054906101000a900460ff1615612d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4890614f56565b60405180910390fd5b60008111612d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8b90614e96565b60405180910390fd5b600c5481612da0611109565b612daa91906151a0565b1115612deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de290614fd6565b60405180910390fd5b601254601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612eb891906151a0565b612ec291906151a0565b1115612f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612efa90614fb6565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614612f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6890614f16565b60405180910390fd5b601360009054906101000a900460ff16612fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fb790615016565b60405180910390fd5b60105482601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461300e91906151a0565b111561304f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304690614ff6565b60405180910390fd5b6000336040516020016130629190614cde565b6040516020818303038152906040528051906020012090506130878460185483613bb3565b6130c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130bd90614e36565b60405180910390fd5b82601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461311591906151a0565b9250508190555061312633846136d1565b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816131a16131ec565b111580156131b0575060005482105b80156131dd575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b600090565b60006131fc826136df565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613267576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166132886131e4565b73ffffffffffffffffffffffffffffffffffffffff1614806132b757506132b6856132b16131e4565b612ae4565b5b806132fc57506132c56131e4565b73ffffffffffffffffffffffffffffffffffffffff166132e484610db7565b73ffffffffffffffffffffffffffffffffffffffff16145b905080613335576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561339c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6133a98585856001613dbd565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561365f57600054821461365e57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46136ca8585856001613dc3565b5050505050565b6136db8282613dc9565b5050565b6136e76142bb565b6000829050806136f56131ec565b1161393357600054811015613932576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161393057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613814578092505050613965565b5b60011561392f57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461392a578092505050613965565b613815565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613a796131e4565b8786866040518563ffffffff1660e01b8152600401613a9b9493929190614d8b565b602060405180830381600087803b158015613ab557600080fd5b505af1925050508015613ae657506040513d601f19601f82011682018060405250810190613ae391906147bd565b60015b613b60573d8060008114613b16576040519150601f19603f3d011682016040523d82523d6000602084013e613b1b565b606091505b50600081511415613b58576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600082613bc08584613de7565b1490509392505050565b60606000821415613c12576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613d26565b600082905060005b60008214613c44578080613c2d906153d8565b915050600a82613c3d91906151f6565b9150613c1a565b60008167ffffffffffffffff811115613c6057613c5f615532565b5b6040519080825280601f01601f191660200182016040528015613c925781602001600182028036833780820191505090505b5090505b60008514613d1f57600182613cab9190615281565b9150600a85613cba9190615445565b6030613cc691906151a0565b60f81b818381518110613cdc57613cdb615503565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613d1891906151f6565b9450613c96565b8093505050505b919050565b606060098054613d3a90615375565b80601f0160208091040260200160405190810160405280929190818152602001828054613d6690615375565b8015613db35780601f10613d8857610100808354040283529160200191613db3565b820191906000526020600020905b815481529060010190602001808311613d9657829003601f168201915b5050505050905090565b50505050565b50505050565b613de3828260405180602001604052806000815250613e5c565b5050565b60008082905060005b8451811015613e51576000858281518110613e0e57613e0d615503565b5b60200260200101519050808311613e3057613e29838261421e565b9250613e3d565b613e3a818461421e565b92505b508080613e49906153d8565b915050613df0565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613ec9576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415613f04576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613f116000858386613dbd565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506140d28673ffffffffffffffffffffffffffffffffffffffff16613a30565b15614197575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46141476000878480600101955087613a53565b61417d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106140d857826000541461419257600080fd5b614202565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210614198575b8160008190555050506142186000858386613dc3565b50505050565b600082600052816020526040600020905092915050565b82805461424190615375565b90600052602060002090601f01602090048101928261426357600085556142aa565b82601f1061427c57805160ff19168380011785556142aa565b828001600101855582156142aa579182015b828111156142a957825182559160200191906001019061428e565b5b5090506142b791906142fe565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156143175760008160009055506001016142ff565b5090565b600061432e61432984615076565b615051565b9050808382526020820190508285602086028201111561435157614350615566565b5b60005b8581101561438157816143678882614467565b845260208401935060208301925050600181019050614354565b5050509392505050565b600061439e614399846150a2565b615051565b9050828152602081018484840111156143ba576143b961556b565b5b6143c5848285615333565b509392505050565b60006143e06143db846150d3565b615051565b9050828152602081018484840111156143fc576143fb61556b565b5b614407848285615333565b509392505050565b60008135905061441e81615935565b92915050565b600082601f83011261443957614438615561565b5b813561444984826020860161431b565b91505092915050565b6000813590506144618161594c565b92915050565b60008135905061447681615963565b92915050565b60008135905061448b8161597a565b92915050565b6000815190506144a08161597a565b92915050565b600082601f8301126144bb576144ba615561565b5b81356144cb84826020860161438b565b91505092915050565b600082601f8301126144e9576144e8615561565b5b81356144f98482602086016143cd565b91505092915050565b60008135905061451181615991565b92915050565b60006020828403121561452d5761452c615575565b5b600061453b8482850161440f565b91505092915050565b6000806040838503121561455b5761455a615575565b5b60006145698582860161440f565b925050602061457a8582860161440f565b9150509250929050565b60008060006060848603121561459d5761459c615575565b5b60006145ab8682870161440f565b93505060206145bc8682870161440f565b92505060406145cd86828701614502565b9150509250925092565b600080600080608085870312156145f1576145f0615575565b5b60006145ff8782880161440f565b94505060206146108782880161440f565b935050604061462187828801614502565b925050606085013567ffffffffffffffff81111561464257614641615570565b5b61464e878288016144a6565b91505092959194509250565b6000806040838503121561467157614670615575565b5b600061467f8582860161440f565b925050602061469085828601614452565b9150509250929050565b600080604083850312156146b1576146b0615575565b5b60006146bf8582860161440f565b92505060206146d085828601614502565b9150509250929050565b600080604083850312156146f1576146f0615575565b5b600083013567ffffffffffffffff81111561470f5761470e615570565b5b61471b85828601614424565b925050602061472c85828601614502565b9150509250929050565b60006020828403121561474c5761474b615575565b5b600061475a84828501614452565b91505092915050565b60006020828403121561477957614778615575565b5b600061478784828501614467565b91505092915050565b6000602082840312156147a6576147a5615575565b5b60006147b48482850161447c565b91505092915050565b6000602082840312156147d3576147d2615575565b5b60006147e184828501614491565b91505092915050565b600060208284031215614800576147ff615575565b5b600082013567ffffffffffffffff81111561481e5761481d615570565b5b61482a848285016144d4565b91505092915050565b60006020828403121561484957614848615575565b5b600061485784828501614502565b91505092915050565b6000806040838503121561487757614876615575565b5b600061488585828601614502565b92505060206148968582860161440f565b9150509250929050565b60006148ac8383614cc0565b60208301905092915050565b6148c1816152b5565b82525050565b6148d86148d3826152b5565b615421565b82525050565b60006148e982615129565b6148f38185615157565b93506148fe83615104565b8060005b8381101561492f57815161491688826148a0565b97506149218361514a565b925050600181019050614902565b5085935050505092915050565b614945816152c7565b82525050565b600061495682615134565b6149608185615168565b9350614970818560208601615342565b6149798161557a565b840191505092915050565b600061498f8261513f565b6149998185615184565b93506149a9818560208601615342565b6149b28161557a565b840191505092915050565b60006149c88261513f565b6149d28185615195565b93506149e2818560208601615342565b80840191505092915050565b600081546149fb81615375565b614a058186615195565b94506001821660008114614a205760018114614a3157614a64565b60ff19831686528186019350614a64565b614a3a85615114565b60005b83811015614a5c57815481890152600182019150602081019050614a3d565b838801955050505b50505092915050565b6000614a7a602883615184565b9150614a8582615598565b604082019050919050565b6000614a9d602a83615184565b9150614aa8826155e7565b604082019050919050565b6000614ac0602683615184565b9150614acb82615636565b604082019050919050565b6000614ae3601383615184565b9150614aee82615685565b602082019050919050565b6000614b06601c83615184565b9150614b11826156ae565b602082019050919050565b6000614b29601283615184565b9150614b34826156d7565b602082019050919050565b6000614b4c602b83615184565b9150614b5782615700565b604082019050919050565b6000614b6f601983615184565b9150614b7a8261574f565b602082019050919050565b6000614b92602083615184565b9150614b9d82615778565b602082019050919050565b6000614bb5601783615184565b9150614bc0826157a1565b602082019050919050565b6000614bd8602f83615184565b9150614be3826157ca565b604082019050919050565b6000614bfb601f83615184565b9150614c0682615819565b602082019050919050565b6000614c1e602b83615184565b9150614c2982615842565b604082019050919050565b6000614c41600083615179565b9150614c4c82615891565b600082019050919050565b6000614c64601483615184565b9150614c6f82615894565b602082019050919050565b6000614c87602383615184565b9150614c92826158bd565b604082019050919050565b6000614caa601583615184565b9150614cb58261590c565b602082019050919050565b614cc981615329565b82525050565b614cd881615329565b82525050565b6000614cea82846148c7565b60148201915081905092915050565b6000614d0582866149bd565b9150614d1182856149bd565b9150614d1d82846149ee565b9150819050949350505050565b6000614d3682866149ee565b9150614d4282856149bd565b9150614d4e82846149ee565b9150819050949350505050565b6000614d6682614c34565b9150819050919050565b6000602082019050614d8560008301846148b8565b92915050565b6000608082019050614da060008301876148b8565b614dad60208301866148b8565b614dba6040830185614ccf565b8181036060830152614dcc818461494b565b905095945050505050565b60006020820190508181036000830152614df181846148de565b905092915050565b6000602082019050614e0e600083018461493c565b92915050565b60006020820190508181036000830152614e2e8184614984565b905092915050565b60006020820190508181036000830152614e4f81614a6d565b9050919050565b60006020820190508181036000830152614e6f81614a90565b9050919050565b60006020820190508181036000830152614e8f81614ab3565b9050919050565b60006020820190508181036000830152614eaf81614ad6565b9050919050565b60006020820190508181036000830152614ecf81614af9565b9050919050565b60006020820190508181036000830152614eef81614b1c565b9050919050565b60006020820190508181036000830152614f0f81614b3f565b9050919050565b60006020820190508181036000830152614f2f81614b62565b9050919050565b60006020820190508181036000830152614f4f81614b85565b9050919050565b60006020820190508181036000830152614f6f81614ba8565b9050919050565b60006020820190508181036000830152614f8f81614bcb565b9050919050565b60006020820190508181036000830152614faf81614bee565b9050919050565b60006020820190508181036000830152614fcf81614c11565b9050919050565b60006020820190508181036000830152614fef81614c57565b9050919050565b6000602082019050818103600083015261500f81614c7a565b9050919050565b6000602082019050818103600083015261502f81614c9d565b9050919050565b600060208201905061504b6000830184614ccf565b92915050565b600061505b61506c565b905061506782826153a7565b919050565b6000604051905090565b600067ffffffffffffffff82111561509157615090615532565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156150bd576150bc615532565b5b6150c68261557a565b9050602081019050919050565b600067ffffffffffffffff8211156150ee576150ed615532565b5b6150f78261557a565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006151ab82615329565b91506151b683615329565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156151eb576151ea615476565b5b828201905092915050565b600061520182615329565b915061520c83615329565b92508261521c5761521b6154a5565b5b828204905092915050565b600061523282615329565b915061523d83615329565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561527657615275615476565b5b828202905092915050565b600061528c82615329565b915061529783615329565b9250828210156152aa576152a9615476565b5b828203905092915050565b60006152c082615309565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015615360578082015181840152602081019050615345565b8381111561536f576000848401525b50505050565b6000600282049050600182168061538d57607f821691505b602082108114156153a1576153a06154d4565b5b50919050565b6153b08261557a565b810181811067ffffffffffffffff821117156153cf576153ce615532565b5b80604052505050565b60006153e382615329565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561541657615415615476565b5b600182019050919050565b600061542c82615433565b9050919050565b600061543e8261558b565b9050919050565b600061545082615329565b915061545b83615329565b92508261546b5761546a6154a5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f496e76616c69642050726f6f66202d2041646472657373206e6f7420696e207460008201527f6865206c69737421000000000000000000000000000000000000000000000000602082015250565b7f63616e6e6f74204d696e74206d6f7265207468616e2077686974656c6973742060008201527f6d617820616d6f756e7400000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f696e76616c6964204d696e7420616d6f756e7400000000000000000000000000600082015250565b7f5075626c6963206d696e74206973206e6f7420616374697665203a2f00000000600082015250565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f43616e6e6f74204d696e74206d6f7265207468616e20746865207075626c696360008201527f206d617820616d6f756e74000000000000000000000000000000000000000000602082015250565b7f4e6f206d696e74696e672066726f6d20636f6e74726163747300000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f57686974656c697374206d696e74206973206e6f7420616374697665203a2f00600082015250565b7f6d6178696d756d206d696e7420616d6f756e74207265616368656420666f722060008201527f746869732077616c6c6574000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f63616e6e6f74206d696e74206d6f7265207468616e204f47206d617820616d6f60008201527f756e740000000000000000000000000000000000000000000000000000000000602082015250565b7f4f47204d696e74206973206e6f74206163746976650000000000000000000000600082015250565b61593e816152b5565b811461594957600080fd5b50565b615955816152c7565b811461596057600080fd5b50565b61596c816152d3565b811461597757600080fd5b50565b615983816152dd565b811461598e57600080fd5b50565b61599a81615329565b81146159a557600080fd5b5056fea2646970667358221220b1ebf173dfd6548285f03f78af08fe67f9cb2b6fcde2a9128106f3226eb3ec4564736f6c6343000807003368747470733a2f2f6b6964732e6d7970696e6174612e636c6f75642f697066732f516d5a45464162514e694354374453456a68677037646852796747596d61707451506358475835774554526e62692f

Deployed Bytecode

0x6080604052600436106103355760003560e01c80637ec4a659116101ab578063b88d4fde116100f7578063e08e65ea11610095578063efbd73f41161006f578063efbd73f414610baa578063f2fde38b14610bd3578063f48c767314610bfc578063fed2cd0814610c2757610335565b8063e08e65ea14610b1b578063e0a8085314610b44578063e985e9c514610b6d57610335565b8063cd6d6bbc116100d1578063cd6d6bbc14610a73578063d49479eb14610a9c578063d62ca07114610ac5578063d9fe5e6a14610af057610335565b8063b88d4fde146109f1578063c30bf31814610a1a578063c87b56dd14610a3657610335565b8063a0712d6811610164578063aca9938d1161013e578063aca9938d14610947578063aefd1bc314610972578063b29350e51461099d578063b67c25a3146109c657610335565b8063a0712d68146108d7578063a22cb465146108f3578063a45ba8e71461091c57610335565b80637ec4a659146107dd578063811d24371461080657806385266ec61461082f578063879fbedf146108585780638da5cb5b1461088157806395d89b41146108ac57610335565b80633ccfd60b1161028557806365cf989a116102235780636f8b44b0116101fd5780636f8b44b0146107355780637006477a1461075e57806370a0823114610789578063715018a6146107c657610335565b806365cf989a146106b857806367729a3e146106e15780636bde26271461070a57610335565b8063518302271161025f57806351830227146105fc57806358d004cb146106275780635c975abb146106505780636352211e1461067b57610335565b80633ccfd60b1461059357806342842e0e146105aa5780634fdd43cb146105d357610335565b806318160ddd116102f257806325c2c020116102cc57806325c2c020146104eb5780632fbba1151461051457806332cb6b0c1461053d5780633692e7ac1461056857610335565b806318160ddd1461045a5780631982640c1461048557806323b872dd146104c257610335565b806301ffc9a71461033a57806306fdde0314610377578063081812fc146103a2578063095ea7b3146103df57806316ba10e01461040857806316c38b3c14610431575b600080fd5b34801561034657600080fd5b50610361600480360381019061035c9190614790565b610c43565b60405161036e9190614df9565b60405180910390f35b34801561038357600080fd5b5061038c610d25565b6040516103999190614e14565b60405180910390f35b3480156103ae57600080fd5b506103c960048036038101906103c49190614833565b610db7565b6040516103d69190614d70565b60405180910390f35b3480156103eb57600080fd5b506104066004803603810190610401919061469a565b610e33565b005b34801561041457600080fd5b5061042f600480360381019061042a91906147ea565b610fda565b005b34801561043d57600080fd5b5061045860048036038101906104539190614736565b611070565b005b34801561046657600080fd5b5061046f611109565b60405161047c9190615036565b60405180910390f35b34801561049157600080fd5b506104ac60048036038101906104a79190614517565b611120565b6040516104b99190614dd7565b60405180910390f35b3480156104ce57600080fd5b506104e960048036038101906104e49190614584565b61122b565b005b3480156104f757600080fd5b50610512600480360381019061050d9190614763565b61123b565b005b34801561052057600080fd5b5061053b60048036038101906105369190614833565b6112c1565b005b34801561054957600080fd5b5061055261134a565b60405161055f9190615036565b60405180910390f35b34801561057457600080fd5b5061057d611350565b60405161058a9190614df9565b60405180910390f35b34801561059f57600080fd5b506105a8611363565b005b3480156105b657600080fd5b506105d160048036038101906105cc9190614584565b61145f565b005b3480156105df57600080fd5b506105fa60048036038101906105f591906147ea565b61147f565b005b34801561060857600080fd5b50610611611515565b60405161061e9190614df9565b60405180910390f35b34801561063357600080fd5b5061064e60048036038101906106499190614736565b611528565b005b34801561065c57600080fd5b506106656115c1565b6040516106729190614df9565b60405180910390f35b34801561068757600080fd5b506106a2600480360381019061069d9190614833565b6115d4565b6040516106af9190614d70565b60405180910390f35b3480156106c457600080fd5b506106df60048036038101906106da9190614833565b6115ea565b005b3480156106ed57600080fd5b5061070860048036038101906107039190614833565b611670565b005b34801561071657600080fd5b5061071f6116f6565b60405161072c9190615036565b60405180910390f35b34801561074157600080fd5b5061075c60048036038101906107579190614833565b6116fc565b005b34801561076a57600080fd5b50610773611782565b6040516107809190614df9565b60405180910390f35b34801561079557600080fd5b506107b060048036038101906107ab9190614517565b611795565b6040516107bd9190615036565b60405180910390f35b3480156107d257600080fd5b506107db611865565b005b3480156107e957600080fd5b5061080460048036038101906107ff91906147ea565b6118ed565b005b34801561081257600080fd5b5061082d60048036038101906108289190614833565b611983565b005b34801561083b57600080fd5b5061085660048036038101906108519190614833565b611a09565b005b34801561086457600080fd5b5061087f600480360381019061087a9190614736565b611a8f565b005b34801561088d57600080fd5b50610896611b28565b6040516108a39190614d70565b60405180910390f35b3480156108b857600080fd5b506108c1611b52565b6040516108ce9190614e14565b60405180910390f35b6108f160048036038101906108ec9190614833565b611be4565b005b3480156108ff57600080fd5b5061091a6004803603810190610915919061465a565b611fe7565b005b34801561092857600080fd5b5061093161215f565b60405161093e9190614e14565b60405180910390f35b34801561095357600080fd5b5061095c6121ed565b6040516109699190615036565b60405180910390f35b34801561097e57600080fd5b506109876121f3565b6040516109949190615036565b60405180910390f35b3480156109a957600080fd5b506109c460048036038101906109bf9190614736565b6121f9565b005b3480156109d257600080fd5b506109db612292565b6040516109e89190614df9565b60405180910390f35b3480156109fd57600080fd5b50610a186004803603810190610a1391906145d7565b6122a5565b005b610a346004803603810190610a2f91906146da565b61231d565b005b348015610a4257600080fd5b50610a5d6004803603810190610a589190614833565b612799565b604051610a6a9190614e14565b60405180910390f35b348015610a7f57600080fd5b50610a9a6004803603810190610a959190614833565b6128ad565b005b348015610aa857600080fd5b50610ac36004803603810190610abe9190614833565b612933565b005b348015610ad157600080fd5b50610ada6129b9565b604051610ae79190615036565b60405180910390f35b348015610afc57600080fd5b50610b056129bf565b604051610b129190615036565b60405180910390f35b348015610b2757600080fd5b50610b426004803603810190610b3d9190614763565b6129c5565b005b348015610b5057600080fd5b50610b6b6004803603810190610b669190614736565b612a4b565b005b348015610b7957600080fd5b50610b946004803603810190610b8f9190614544565b612ae4565b604051610ba19190614df9565b60405180910390f35b348015610bb657600080fd5b50610bd16004803603810190610bcc9190614860565b612b78565b005b348015610bdf57600080fd5b50610bfa6004803603810190610bf59190614517565b612c02565b005b348015610c0857600080fd5b50610c11612cfa565b604051610c1e9190615036565b60405180910390f35b610c416004803603810190610c3c91906146da565b612d00565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d0e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d1e5750610d1d8261312c565b5b9050919050565b606060028054610d3490615375565b80601f0160208091040260200160405190810160405280929190818152602001828054610d6090615375565b8015610dad5780601f10610d8257610100808354040283529160200191610dad565b820191906000526020600020905b815481529060010190602001808311610d9057829003601f168201915b5050505050905090565b6000610dc282613196565b610df8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e3e826115d4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ea6576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ec56131e4565b73ffffffffffffffffffffffffffffffffffffffff1614610f2857610ef181610eec6131e4565b612ae4565b610f27576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610fe26131e4565b73ffffffffffffffffffffffffffffffffffffffff16611000611b28565b73ffffffffffffffffffffffffffffffffffffffff1614611056576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104d90614f36565b60405180910390fd5b80600a908051906020019061106c929190614235565b5050565b6110786131e4565b73ffffffffffffffffffffffffffffffffffffffff16611096611b28565b73ffffffffffffffffffffffffffffffffffffffff16146110ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e390614f36565b60405180910390fd5b80601360036101000a81548160ff02191690831515021790555050565b60006111136131ec565b6001546000540303905090565b6060600061112d83611795565b905060008167ffffffffffffffff81111561114b5761114a615532565b5b6040519080825280602002602001820160405280156111795781602001602082028036833780820191505090505b50905060006001905060005b83811080156111965750600c548211155b1561121f5760006111a6836115d4565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561120b57828483815181106111f0576111ef615503565b5b6020026020010181815250508180611207906153d8565b9250505b8280611216906153d8565b93505050611185565b82945050505050919050565b6112368383836131f1565b505050565b6112436131e4565b73ffffffffffffffffffffffffffffffffffffffff16611261611b28565b73ffffffffffffffffffffffffffffffffffffffff16146112b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ae90614f36565b60405180910390fd5b8060188190555050565b6112c96131e4565b73ffffffffffffffffffffffffffffffffffffffff166112e7611b28565b73ffffffffffffffffffffffffffffffffffffffff161461133d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133490614f36565b60405180910390fd5b61134733826136d1565b50565b600c5481565b601360019054906101000a900460ff1681565b61136b6131e4565b73ffffffffffffffffffffffffffffffffffffffff16611389611b28565b73ffffffffffffffffffffffffffffffffffffffff16146113df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d690614f36565b60405180910390fd5b60006113e9611b28565b73ffffffffffffffffffffffffffffffffffffffff164760405161140c90614d5b565b60006040518083038185875af1925050503d8060008114611449576040519150601f19603f3d011682016040523d82523d6000602084013e61144e565b606091505b505090508061145c57600080fd5b50565b61147a838383604051806020016040528060008152506122a5565b505050565b6114876131e4565b73ffffffffffffffffffffffffffffffffffffffff166114a5611b28565b73ffffffffffffffffffffffffffffffffffffffff16146114fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f290614f36565b60405180910390fd5b80600b9080519060200190611511929190614235565b5050565b601360049054906101000a900460ff1681565b6115306131e4565b73ffffffffffffffffffffffffffffffffffffffff1661154e611b28565b73ffffffffffffffffffffffffffffffffffffffff16146115a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159b90614f36565b60405180910390fd5b80601360006101000a81548160ff02191690831515021790555050565b601360039054906101000a900460ff1681565b60006115df826136df565b600001519050919050565b6115f26131e4565b73ffffffffffffffffffffffffffffffffffffffff16611610611b28565b73ffffffffffffffffffffffffffffffffffffffff1614611666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165d90614f36565b60405180910390fd5b8060108190555050565b6116786131e4565b73ffffffffffffffffffffffffffffffffffffffff16611696611b28565b73ffffffffffffffffffffffffffffffffffffffff16146116ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e390614f36565b60405180910390fd5b80600d8190555050565b600f5481565b6117046131e4565b73ffffffffffffffffffffffffffffffffffffffff16611722611b28565b73ffffffffffffffffffffffffffffffffffffffff1614611778576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176f90614f36565b60405180910390fd5b80600c8190555050565b601360009054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117fd576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61186d6131e4565b73ffffffffffffffffffffffffffffffffffffffff1661188b611b28565b73ffffffffffffffffffffffffffffffffffffffff16146118e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d890614f36565b60405180910390fd5b6118eb600061396a565b565b6118f56131e4565b73ffffffffffffffffffffffffffffffffffffffff16611913611b28565b73ffffffffffffffffffffffffffffffffffffffff1614611969576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196090614f36565b60405180910390fd5b806009908051906020019061197f929190614235565b5050565b61198b6131e4565b73ffffffffffffffffffffffffffffffffffffffff166119a9611b28565b73ffffffffffffffffffffffffffffffffffffffff16146119ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f690614f36565b60405180910390fd5b80600f8190555050565b611a116131e4565b73ffffffffffffffffffffffffffffffffffffffff16611a2f611b28565b73ffffffffffffffffffffffffffffffffffffffff1614611a85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7c90614f36565b60405180910390fd5b8060128190555050565b611a976131e4565b73ffffffffffffffffffffffffffffffffffffffff16611ab5611b28565b73ffffffffffffffffffffffffffffffffffffffff1614611b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0290614f36565b60405180910390fd5b80601360026101000a81548160ff02191690831515021790555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611b6190615375565b80601f0160208091040260200160405190810160405280929190818152602001828054611b8d90615375565b8015611bda5780601f10611baf57610100808354040283529160200191611bda565b820191906000526020600020905b815481529060010190602001808311611bbd57829003601f168201915b5050505050905090565b80601360039054906101000a900460ff1615611c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2c90614f56565b60405180910390fd5b60008111611c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6f90614e96565b60405180910390fd5b600c5481611c84611109565b611c8e91906151a0565b1115611ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc690614fd6565b60405180910390fd5b601254601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d9c91906151a0565b611da691906151a0565b1115611de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dde90614fb6565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4c90614f16565b60405180910390fd5b601360029054906101000a900460ff16611ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9b90614eb6565b60405180910390fd5b60115482601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ef291906151a0565b1115611f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2a90614ef6565b60405180910390fd5b81600f54611f419190615227565b341015611f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7a90614ed6565b60405180910390fd5b81601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fd291906151a0565b92505081905550611fe333836136d1565b5050565b611fef6131e4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612054576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006120616131e4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661210e6131e4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121539190614df9565b60405180910390a35050565b600b805461216c90615375565b80601f016020809104026020016040519081016040528092919081815260200182805461219890615375565b80156121e55780601f106121ba576101008083540402835291602001916121e5565b820191906000526020600020905b8154815290600101906020018083116121c857829003601f168201915b505050505081565b600e5481565b60115481565b6122016131e4565b73ffffffffffffffffffffffffffffffffffffffff1661221f611b28565b73ffffffffffffffffffffffffffffffffffffffff1614612275576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226c90614f36565b60405180910390fd5b80601360016101000a81548160ff02191690831515021790555050565b601360029054906101000a900460ff1681565b6122b08484846131f1565b6122cf8373ffffffffffffffffffffffffffffffffffffffff16613a30565b15612317576122e084848484613a53565b612316576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b80601360039054906101000a900460ff161561236e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236590614f56565b60405180910390fd5b600081116123b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a890614e96565b60405180910390fd5b600c54816123bd611109565b6123c791906151a0565b1115612408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ff90614fd6565b60405180910390fd5b601254601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124d591906151a0565b6124df91906151a0565b1115612520576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251790614fb6565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461258e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258590614f16565b60405180910390fd5b601360019054906101000a900460ff166125dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d490614f96565b60405180910390fd5b60105482601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461262b91906151a0565b111561266c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266390614e56565b60405180910390fd5b81600e5461267a9190615227565b3410156126bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b390614ed6565b60405180910390fd5b6000336040516020016126cf9190614cde565b6040516020818303038152906040528051906020012090506126f48460175483613bb3565b612733576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272a90614e36565b60405180910390fd5b82601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461278291906151a0565b9250508190555061279333846136d1565b50505050565b60606127a482613196565b6127e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127da90614f76565b60405180910390fd5b60001515601360049054906101000a900460ff161515141561284057600b61281660018461281191906151a0565b613bca565b600a60405160200161282a93929190614d2a565b60405160208183030381529060405290506128a8565b600061284a613d2b565b9050600081511161286a57604051806020016040528060008152506128a4565b8061288060018561287b91906151a0565b613bca565b600a60405160200161289493929190614cf9565b6040516020818303038152906040525b9150505b919050565b6128b56131e4565b73ffffffffffffffffffffffffffffffffffffffff166128d3611b28565b73ffffffffffffffffffffffffffffffffffffffff1614612929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292090614f36565b60405180910390fd5b8060118190555050565b61293b6131e4565b73ffffffffffffffffffffffffffffffffffffffff16612959611b28565b73ffffffffffffffffffffffffffffffffffffffff16146129af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a690614f36565b60405180910390fd5b80600e8190555050565b60125481565b60105481565b6129cd6131e4565b73ffffffffffffffffffffffffffffffffffffffff166129eb611b28565b73ffffffffffffffffffffffffffffffffffffffff1614612a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3890614f36565b60405180910390fd5b8060178190555050565b612a536131e4565b73ffffffffffffffffffffffffffffffffffffffff16612a71611b28565b73ffffffffffffffffffffffffffffffffffffffff1614612ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abe90614f36565b60405180910390fd5b80601360046101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612b806131e4565b73ffffffffffffffffffffffffffffffffffffffff16612b9e611b28565b73ffffffffffffffffffffffffffffffffffffffff1614612bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612beb90614f36565b60405180910390fd5b612bfe81836136d1565b5050565b612c0a6131e4565b73ffffffffffffffffffffffffffffffffffffffff16612c28611b28565b73ffffffffffffffffffffffffffffffffffffffff1614612c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7590614f36565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce590614e76565b60405180910390fd5b612cf78161396a565b50565b600d5481565b80601360039054906101000a900460ff1615612d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4890614f56565b60405180910390fd5b60008111612d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8b90614e96565b60405180910390fd5b600c5481612da0611109565b612daa91906151a0565b1115612deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de290614fd6565b60405180910390fd5b601254601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612eb891906151a0565b612ec291906151a0565b1115612f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612efa90614fb6565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614612f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6890614f16565b60405180910390fd5b601360009054906101000a900460ff16612fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fb790615016565b60405180910390fd5b60105482601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461300e91906151a0565b111561304f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304690614ff6565b60405180910390fd5b6000336040516020016130629190614cde565b6040516020818303038152906040528051906020012090506130878460185483613bb3565b6130c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130bd90614e36565b60405180910390fd5b82601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461311591906151a0565b9250508190555061312633846136d1565b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816131a16131ec565b111580156131b0575060005482105b80156131dd575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b600090565b60006131fc826136df565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613267576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166132886131e4565b73ffffffffffffffffffffffffffffffffffffffff1614806132b757506132b6856132b16131e4565b612ae4565b5b806132fc57506132c56131e4565b73ffffffffffffffffffffffffffffffffffffffff166132e484610db7565b73ffffffffffffffffffffffffffffffffffffffff16145b905080613335576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561339c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6133a98585856001613dbd565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561365f57600054821461365e57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46136ca8585856001613dc3565b5050505050565b6136db8282613dc9565b5050565b6136e76142bb565b6000829050806136f56131ec565b1161393357600054811015613932576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161393057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613814578092505050613965565b5b60011561392f57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461392a578092505050613965565b613815565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613a796131e4565b8786866040518563ffffffff1660e01b8152600401613a9b9493929190614d8b565b602060405180830381600087803b158015613ab557600080fd5b505af1925050508015613ae657506040513d601f19601f82011682018060405250810190613ae391906147bd565b60015b613b60573d8060008114613b16576040519150601f19603f3d011682016040523d82523d6000602084013e613b1b565b606091505b50600081511415613b58576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600082613bc08584613de7565b1490509392505050565b60606000821415613c12576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613d26565b600082905060005b60008214613c44578080613c2d906153d8565b915050600a82613c3d91906151f6565b9150613c1a565b60008167ffffffffffffffff811115613c6057613c5f615532565b5b6040519080825280601f01601f191660200182016040528015613c925781602001600182028036833780820191505090505b5090505b60008514613d1f57600182613cab9190615281565b9150600a85613cba9190615445565b6030613cc691906151a0565b60f81b818381518110613cdc57613cdb615503565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613d1891906151f6565b9450613c96565b8093505050505b919050565b606060098054613d3a90615375565b80601f0160208091040260200160405190810160405280929190818152602001828054613d6690615375565b8015613db35780601f10613d8857610100808354040283529160200191613db3565b820191906000526020600020905b815481529060010190602001808311613d9657829003601f168201915b5050505050905090565b50505050565b50505050565b613de3828260405180602001604052806000815250613e5c565b5050565b60008082905060005b8451811015613e51576000858281518110613e0e57613e0d615503565b5b60200260200101519050808311613e3057613e29838261421e565b9250613e3d565b613e3a818461421e565b92505b508080613e49906153d8565b915050613df0565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613ec9576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415613f04576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613f116000858386613dbd565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506140d28673ffffffffffffffffffffffffffffffffffffffff16613a30565b15614197575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46141476000878480600101955087613a53565b61417d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106140d857826000541461419257600080fd5b614202565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210614198575b8160008190555050506142186000858386613dc3565b50505050565b600082600052816020526040600020905092915050565b82805461424190615375565b90600052602060002090601f01602090048101928261426357600085556142aa565b82601f1061427c57805160ff19168380011785556142aa565b828001600101855582156142aa579182015b828111156142a957825182559160200191906001019061428e565b5b5090506142b791906142fe565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156143175760008160009055506001016142ff565b5090565b600061432e61432984615076565b615051565b9050808382526020820190508285602086028201111561435157614350615566565b5b60005b8581101561438157816143678882614467565b845260208401935060208301925050600181019050614354565b5050509392505050565b600061439e614399846150a2565b615051565b9050828152602081018484840111156143ba576143b961556b565b5b6143c5848285615333565b509392505050565b60006143e06143db846150d3565b615051565b9050828152602081018484840111156143fc576143fb61556b565b5b614407848285615333565b509392505050565b60008135905061441e81615935565b92915050565b600082601f83011261443957614438615561565b5b813561444984826020860161431b565b91505092915050565b6000813590506144618161594c565b92915050565b60008135905061447681615963565b92915050565b60008135905061448b8161597a565b92915050565b6000815190506144a08161597a565b92915050565b600082601f8301126144bb576144ba615561565b5b81356144cb84826020860161438b565b91505092915050565b600082601f8301126144e9576144e8615561565b5b81356144f98482602086016143cd565b91505092915050565b60008135905061451181615991565b92915050565b60006020828403121561452d5761452c615575565b5b600061453b8482850161440f565b91505092915050565b6000806040838503121561455b5761455a615575565b5b60006145698582860161440f565b925050602061457a8582860161440f565b9150509250929050565b60008060006060848603121561459d5761459c615575565b5b60006145ab8682870161440f565b93505060206145bc8682870161440f565b92505060406145cd86828701614502565b9150509250925092565b600080600080608085870312156145f1576145f0615575565b5b60006145ff8782880161440f565b94505060206146108782880161440f565b935050604061462187828801614502565b925050606085013567ffffffffffffffff81111561464257614641615570565b5b61464e878288016144a6565b91505092959194509250565b6000806040838503121561467157614670615575565b5b600061467f8582860161440f565b925050602061469085828601614452565b9150509250929050565b600080604083850312156146b1576146b0615575565b5b60006146bf8582860161440f565b92505060206146d085828601614502565b9150509250929050565b600080604083850312156146f1576146f0615575565b5b600083013567ffffffffffffffff81111561470f5761470e615570565b5b61471b85828601614424565b925050602061472c85828601614502565b9150509250929050565b60006020828403121561474c5761474b615575565b5b600061475a84828501614452565b91505092915050565b60006020828403121561477957614778615575565b5b600061478784828501614467565b91505092915050565b6000602082840312156147a6576147a5615575565b5b60006147b48482850161447c565b91505092915050565b6000602082840312156147d3576147d2615575565b5b60006147e184828501614491565b91505092915050565b600060208284031215614800576147ff615575565b5b600082013567ffffffffffffffff81111561481e5761481d615570565b5b61482a848285016144d4565b91505092915050565b60006020828403121561484957614848615575565b5b600061485784828501614502565b91505092915050565b6000806040838503121561487757614876615575565b5b600061488585828601614502565b92505060206148968582860161440f565b9150509250929050565b60006148ac8383614cc0565b60208301905092915050565b6148c1816152b5565b82525050565b6148d86148d3826152b5565b615421565b82525050565b60006148e982615129565b6148f38185615157565b93506148fe83615104565b8060005b8381101561492f57815161491688826148a0565b97506149218361514a565b925050600181019050614902565b5085935050505092915050565b614945816152c7565b82525050565b600061495682615134565b6149608185615168565b9350614970818560208601615342565b6149798161557a565b840191505092915050565b600061498f8261513f565b6149998185615184565b93506149a9818560208601615342565b6149b28161557a565b840191505092915050565b60006149c88261513f565b6149d28185615195565b93506149e2818560208601615342565b80840191505092915050565b600081546149fb81615375565b614a058186615195565b94506001821660008114614a205760018114614a3157614a64565b60ff19831686528186019350614a64565b614a3a85615114565b60005b83811015614a5c57815481890152600182019150602081019050614a3d565b838801955050505b50505092915050565b6000614a7a602883615184565b9150614a8582615598565b604082019050919050565b6000614a9d602a83615184565b9150614aa8826155e7565b604082019050919050565b6000614ac0602683615184565b9150614acb82615636565b604082019050919050565b6000614ae3601383615184565b9150614aee82615685565b602082019050919050565b6000614b06601c83615184565b9150614b11826156ae565b602082019050919050565b6000614b29601283615184565b9150614b34826156d7565b602082019050919050565b6000614b4c602b83615184565b9150614b5782615700565b604082019050919050565b6000614b6f601983615184565b9150614b7a8261574f565b602082019050919050565b6000614b92602083615184565b9150614b9d82615778565b602082019050919050565b6000614bb5601783615184565b9150614bc0826157a1565b602082019050919050565b6000614bd8602f83615184565b9150614be3826157ca565b604082019050919050565b6000614bfb601f83615184565b9150614c0682615819565b602082019050919050565b6000614c1e602b83615184565b9150614c2982615842565b604082019050919050565b6000614c41600083615179565b9150614c4c82615891565b600082019050919050565b6000614c64601483615184565b9150614c6f82615894565b602082019050919050565b6000614c87602383615184565b9150614c92826158bd565b604082019050919050565b6000614caa601583615184565b9150614cb58261590c565b602082019050919050565b614cc981615329565b82525050565b614cd881615329565b82525050565b6000614cea82846148c7565b60148201915081905092915050565b6000614d0582866149bd565b9150614d1182856149bd565b9150614d1d82846149ee565b9150819050949350505050565b6000614d3682866149ee565b9150614d4282856149bd565b9150614d4e82846149ee565b9150819050949350505050565b6000614d6682614c34565b9150819050919050565b6000602082019050614d8560008301846148b8565b92915050565b6000608082019050614da060008301876148b8565b614dad60208301866148b8565b614dba6040830185614ccf565b8181036060830152614dcc818461494b565b905095945050505050565b60006020820190508181036000830152614df181846148de565b905092915050565b6000602082019050614e0e600083018461493c565b92915050565b60006020820190508181036000830152614e2e8184614984565b905092915050565b60006020820190508181036000830152614e4f81614a6d565b9050919050565b60006020820190508181036000830152614e6f81614a90565b9050919050565b60006020820190508181036000830152614e8f81614ab3565b9050919050565b60006020820190508181036000830152614eaf81614ad6565b9050919050565b60006020820190508181036000830152614ecf81614af9565b9050919050565b60006020820190508181036000830152614eef81614b1c565b9050919050565b60006020820190508181036000830152614f0f81614b3f565b9050919050565b60006020820190508181036000830152614f2f81614b62565b9050919050565b60006020820190508181036000830152614f4f81614b85565b9050919050565b60006020820190508181036000830152614f6f81614ba8565b9050919050565b60006020820190508181036000830152614f8f81614bcb565b9050919050565b60006020820190508181036000830152614faf81614bee565b9050919050565b60006020820190508181036000830152614fcf81614c11565b9050919050565b60006020820190508181036000830152614fef81614c57565b9050919050565b6000602082019050818103600083015261500f81614c7a565b9050919050565b6000602082019050818103600083015261502f81614c9d565b9050919050565b600060208201905061504b6000830184614ccf565b92915050565b600061505b61506c565b905061506782826153a7565b919050565b6000604051905090565b600067ffffffffffffffff82111561509157615090615532565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156150bd576150bc615532565b5b6150c68261557a565b9050602081019050919050565b600067ffffffffffffffff8211156150ee576150ed615532565b5b6150f78261557a565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006151ab82615329565b91506151b683615329565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156151eb576151ea615476565b5b828201905092915050565b600061520182615329565b915061520c83615329565b92508261521c5761521b6154a5565b5b828204905092915050565b600061523282615329565b915061523d83615329565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561527657615275615476565b5b828202905092915050565b600061528c82615329565b915061529783615329565b9250828210156152aa576152a9615476565b5b828203905092915050565b60006152c082615309565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015615360578082015181840152602081019050615345565b8381111561536f576000848401525b50505050565b6000600282049050600182168061538d57607f821691505b602082108114156153a1576153a06154d4565b5b50919050565b6153b08261557a565b810181811067ffffffffffffffff821117156153cf576153ce615532565b5b80604052505050565b60006153e382615329565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561541657615415615476565b5b600182019050919050565b600061542c82615433565b9050919050565b600061543e8261558b565b9050919050565b600061545082615329565b915061545b83615329565b92508261546b5761546a6154a5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f496e76616c69642050726f6f66202d2041646472657373206e6f7420696e207460008201527f6865206c69737421000000000000000000000000000000000000000000000000602082015250565b7f63616e6e6f74204d696e74206d6f7265207468616e2077686974656c6973742060008201527f6d617820616d6f756e7400000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f696e76616c6964204d696e7420616d6f756e7400000000000000000000000000600082015250565b7f5075626c6963206d696e74206973206e6f7420616374697665203a2f00000000600082015250565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f43616e6e6f74204d696e74206d6f7265207468616e20746865207075626c696360008201527f206d617820616d6f756e74000000000000000000000000000000000000000000602082015250565b7f4e6f206d696e74696e672066726f6d20636f6e74726163747300000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f57686974656c697374206d696e74206973206e6f7420616374697665203a2f00600082015250565b7f6d6178696d756d206d696e7420616d6f756e74207265616368656420666f722060008201527f746869732077616c6c6574000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f63616e6e6f74206d696e74206d6f7265207468616e204f47206d617820616d6f60008201527f756e740000000000000000000000000000000000000000000000000000000000602082015250565b7f4f47204d696e74206973206e6f74206163746976650000000000000000000000600082015250565b61593e816152b5565b811461594957600080fd5b50565b615955816152c7565b811461596057600080fd5b50565b61596c816152d3565b811461597757600080fd5b50565b615983816152dd565b811461598e57600080fd5b50565b61599a81615329565b81146159a557600080fd5b5056fea2646970667358221220b1ebf173dfd6548285f03f78af08fe67f9cb2b6fcde2a9128106f3226eb3ec4564736f6c63430008070033

Deployed Bytecode Sourcemap

51328:7223:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32712:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35827:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37376:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36893:417;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56597:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56703:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31952:312;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57266:614;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38241:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55119:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54759:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51520:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51904:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56889:137;;;;;;;;;;;;;:::i;:::-;;38482:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56353:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52021:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55219:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51991:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35635:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55916:149;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55620:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51654:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56786:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51868:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33081:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8913:103;;;;;;;;;;;;;:::i;:::-;;56491:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55817:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56071:133;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55431:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8262:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35996:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53002:464;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37652:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51475:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51601:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51756:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55323:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51948:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38738:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53472:704;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57886:662;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56210:137;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55712:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51802:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51704:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55009:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55533:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38010:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54872:131;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9171:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51558:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54182:571;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32712:305;32814:4;32866:25;32851:40;;;:11;:40;;;;:105;;;;32923:33;32908:48;;;:11;:48;;;;32851:105;:158;;;;32973:36;32997:11;32973:23;:36::i;:::-;32851:158;32831:178;;32712:305;;;:::o;35827:100::-;35881:13;35914:5;35907:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35827:100;:::o;37376:204::-;37444:7;37469:16;37477:7;37469;:16::i;:::-;37464:64;;37494:34;;;;;;;;;;;;;;37464:64;37548:15;:24;37564:7;37548:24;;;;;;;;;;;;;;;;;;;;;37541:31;;37376:204;;;:::o;36893:417::-;36966:13;36982:24;36998:7;36982:15;:24::i;:::-;36966:40;;37027:5;37021:11;;:2;:11;;;37017:48;;;37041:24;;;;;;;;;;;;;;37017:48;37098:5;37082:21;;:12;:10;:12::i;:::-;:21;;;37078:139;;37109:37;37126:5;37133:12;:10;:12::i;:::-;37109:16;:37::i;:::-;37105:112;;37170:35;;;;;;;;;;;;;;37105:112;37078:139;37256:2;37229:15;:24;37245:7;37229:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;37294:7;37290:2;37274:28;;37283:5;37274:28;;;;;;;;;;;;36955:355;36893:417;;:::o;56597:100::-;8493:12;:10;:12::i;:::-;8482:23;;:7;:5;:7::i;:::-;:23;;;8474:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56681:10:::1;56669:9;:22;;;;;;;;;;;;:::i;:::-;;56597:100:::0;:::o;56703:77::-;8493:12;:10;:12::i;:::-;8482:23;;:7;:5;:7::i;:::-;:23;;;8474:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56768:6:::1;56759;;:15;;;;;;;;;;;;;;;;;;56703:77:::0;:::o;31952:312::-;32005:7;32230:15;:13;:15::i;:::-;32215:12;;32199:13;;:28;:46;32192:53;;31952:312;:::o;57266:614::-;57323:16;57353:23;57379:17;57389:6;57379:9;:17::i;:::-;57353:43;;57403:30;57450:15;57436:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57403:63;;57473:22;57498:1;57473:26;;57506:23;57542:306;57567:15;57549;:33;:65;;;;;57604:10;;57586:14;:28;;57549:65;57542:306;;;57625:25;57653:23;57661:14;57653:7;:23::i;:::-;57625:51;;57710:6;57689:27;;:17;:27;;;57685:131;;;57762:14;57729:13;57743:15;57729:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;57789:17;;;;;:::i;:::-;;;;57685:131;57824:16;;;;;:::i;:::-;;;;57616:232;57542:306;;;57861:13;57854:20;;;;;;57266:614;;;:::o;38241:170::-;38375:28;38385:4;38391:2;38395:7;38375:9;:28::i;:::-;38241:170;;;:::o;55119:94::-;8493:12;:10;:12::i;:::-;8482:23;;:7;:5;:7::i;:::-;:23;;;8474:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55202:5:::1;55183:16;:24;;;;55119:94:::0;:::o;54759:107::-;8493:12;:10;:12::i;:::-;8482:23;;:7;:5;:7::i;:::-;:23;;;8474:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54822:38:::1;54836:10;54848:11;54822:13;:38::i;:::-;54759:107:::0;:::o;51520:32::-;;;;:::o;51904:39::-;;;;;;;;;;;;;:::o;56889:137::-;8493:12;:10;:12::i;:::-;8482:23;;:7;:5;:7::i;:::-;:23;;;8474:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56934:7:::1;56955;:5;:7::i;:::-;56947:21;;56976;56947:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56933:69;;;57017:2;57009:11;;;::::0;::::1;;56926:100;56889:137::o:0;38482:185::-;38620:39;38637:4;38643:2;38647:7;38620:39;;;;;;;;;;;;:16;:39::i;:::-;38482:185;;;:::o;56353:132::-;8493:12;:10;:12::i;:::-;8482:23;;:7;:5;:7::i;:::-;:23;;;8474:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56461:18:::1;56441:17;:38;;;;;;;;;;;;:::i;:::-;;56353:132:::0;:::o;52021:28::-;;;;;;;;;;;;;:::o;55219:98::-;8493:12;:10;:12::i;:::-;8482:23;;:7;:5;:7::i;:::-;:23;;;8474:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55305:6:::1;55290:12;;:21;;;;;;;;;;;;;;;;;;55219:98:::0;:::o;51991:25::-;;;;;;;;;;;;;:::o;35635:125::-;35699:7;35726:21;35739:7;35726:12;:21::i;:::-;:26;;;35719:33;;35635:125;;;:::o;55916:149::-;8493:12;:10;:12::i;:::-;8482:23;;:7;:5;:7::i;:::-;:23;;;8474:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56040:19:::1;56009:28;:50;;;;55916:149:::0;:::o;55620:86::-;8493:12;:10;:12::i;:::-;8482:23;;:7;:5;:7::i;:::-;:23;;;8474:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55695:5:::1;55679:13;:21;;;;55620:86:::0;:::o;51654:45::-;;;;:::o;56786:97::-;8493:12;:10;:12::i;:::-;8482:23;;:7;:5;:7::i;:::-;:23;;;8474:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56866:11:::1;56853:10;:24;;;;56786:97:::0;:::o;51868:31::-;;;;;;;;;;;;;:::o;33081:206::-;33145:7;33186:1;33169:19;;:5;:19;;;33165:60;;;33197:28;;;;;;;;;;;;;;33165:60;33251:12;:19;33264:5;33251:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;33243:36;;33236:43;;33081:206;;;:::o;8913:103::-;8493:12;:10;:12::i;:::-;8482:23;;:7;:5;:7::i;:::-;:23;;;8474:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8978:30:::1;9005:1;8978:18;:30::i;:::-;8913:103::o:0;56491:100::-;8493:12;:10;:12::i;:::-;8482:23;;:7;:5;:7::i;:::-;:23;;;8474:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56575:10:::1;56563:9;:22;;;;;;;;;;;;:::i;:::-;;56491:100:::0;:::o;55817:93::-;8493:12;:10;:12::i;:::-;8482:23;;:7;:5;:7::i;:::-;:23;;;8474:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55899:5:::1;55879:17;:25;;;;55817:93:::0;:::o;56071:133::-;8493:12;:10;:12::i;:::-;8482:23;;:7;:5;:7::i;:::-;:23;;;8474:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56179:19:::1;56155:21;:43;;;;56071:133:::0;:::o;55431:96::-;8493:12;:10;:12::i;:::-;8482:23;;:7;:5;:7::i;:::-;:23;;;8474:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55515:6:::1;55496:16;;:25;;;;;;;;;;;;;;;;;;55431:96:::0;:::o;8262:87::-;8308:7;8335:6;;;;;;;;;;;8328:13;;8262:87;:::o;35996:104::-;36052:13;36085:7;36078:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35996:104;:::o;53002:464::-;53065:11;52562:6;;;;;;;;;;;52561:7;52553:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;52625:1;52611:11;:15;52603:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;52696:10;;52681:11;52665:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:41;;52657:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;52838:21;;52806:15;:27;52822:10;52806:27;;;;;;;;;;;;;;;;52773:18;:30;52792:10;52773:30;;;;;;;;;;;;;;;;52747:11;:23;52759:10;52747:23;;;;;;;;;;;;;;;;:56;;;;:::i;:::-;:86;;;;:::i;:::-;52746:113;;52738:176;;;;;;;;;;;;:::i;:::-;;;;;;;;;52942:10;52929:23;;:9;:23;;;52921:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;53093:16:::1;;;;;;;;;;;53085:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;53204:22;;53188:11;53158:15;:27;53174:10;53158:27;;;;;;;;;;;;;;;;:41;;;;:::i;:::-;53157:69;;53149:125;;;;;;;;;;;;:::i;:::-;;;;;;;;;53326:11;53306:17;;:31;;;;:::i;:::-;53291:9;:48;;53283:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;53404:11;53373:15;:27;53389:10;53373:27;;;;;;;;;;;;;;;;:42;;;;;;;:::i;:::-;;;;;;;;53422:38;53436:10;53448:11;53422:13;:38::i;:::-;53002:464:::0;;:::o;37652:287::-;37763:12;:10;:12::i;:::-;37751:24;;:8;:24;;;37747:54;;;37784:17;;;;;;;;;;;;;;37747:54;37859:8;37814:18;:32;37833:12;:10;:12::i;:::-;37814:32;;;;;;;;;;;;;;;:42;37847:8;37814:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;37912:8;37883:48;;37898:12;:10;:12::i;:::-;37883:48;;;37922:8;37883:48;;;;;;:::i;:::-;;;;;;;;37652:287;;:::o;51475:36::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51601:48::-;;;;:::o;51756:41::-;;;;:::o;55323:102::-;8493:12;:10;:12::i;:::-;8482:23;;:7;:5;:7::i;:::-;:23;;;8474:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55413:6:::1;55391:19;;:28;;;;;;;;;;;;;;;;;;55323:102:::0;:::o;51948:36::-;;;;;;;;;;;;;:::o;38738:370::-;38905:28;38915:4;38921:2;38925:7;38905:9;:28::i;:::-;38948:15;:2;:13;;;:15::i;:::-;38944:157;;;38969:56;39000:4;39006:2;39010:7;39019:5;38969:30;:56::i;:::-;38965:136;;39049:40;;;;;;;;;;;;;;38965:136;38944:157;38738:370;;;;:::o;53472:704::-;53577:11;52562:6;;;;;;;;;;;52561:7;52553:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;52625:1;52611:11;:15;52603:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;52696:10;;52681:11;52665:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:41;;52657:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;52838:21;;52806:15;:27;52822:10;52806:27;;;;;;;;;;;;;;;;52773:18;:30;52792:10;52773:30;;;;;;;;;;;;;;;;52747:11;:23;52759:10;52747:23;;;;;;;;;;;;;;;;:56;;;;:::i;:::-;:86;;;;:::i;:::-;52746:113;;52738:176;;;;;;;;;;;;:::i;:::-;;;;;;;;;52942:10;52929:23;;:9;:23;;;52921:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;53605:19:::1;;;;;;;;;;;53597:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;53725:28;;53709:11;53676:18;:30;53695:10;53676:30;;;;;;;;;;;;;;;;:44;;;;:::i;:::-;53675:78;;53667:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;53854:11;53831:20;;:34;;;;:::i;:::-;53817:9;:49;;53809:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;53898:12;53940:10;53923:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;53913:39;;;;;;53898:54;;53967:59;53986:12;54000:19;;54021:4;53967:18;:59::i;:::-;53959:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;54114:11;54080:18;:30;54099:10;54080:30;;;;;;;;;;;;;;;;:45;;;;;;;:::i;:::-;;;;;;;;54132:38;54146:10;54158:11;54132:13;:38::i;:::-;53590:586;53472:704:::0;;;:::o;57886:662::-;57960:13;57993:17;58001:8;57993:7;:17::i;:::-;57985:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;58087:5;58075:17;;:8;;;;;;;;;;;:17;;;58071:173;;;58136:17;58155:24;58166:1;58156:8;:11;;;;:::i;:::-;58155:22;:24::i;:::-;58181:9;58119:72;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58105:87;;;;58071:173;58252:28;58283:10;:8;:10::i;:::-;58252:41;;58456:1;58431:14;58425:28;:32;:117;;;;;;;;;;;;;;;;;58484:14;58500:24;58511:1;58501:8;:11;;;;:::i;:::-;58500:22;:24::i;:::-;58526:9;58467:69;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58425:117;58418:124;;;57886:662;;;;:::o;56210:137::-;8493:12;:10;:12::i;:::-;8482:23;;:7;:5;:7::i;:::-;:23;;;8474:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56321:20:::1;56296:22;:45;;;;56210:137:::0;:::o;55712:99::-;8493:12;:10;:12::i;:::-;8482:23;;:7;:5;:7::i;:::-;:23;;;8474:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55800:5:::1;55777:20;:28;;;;55712:99:::0;:::o;51802:41::-;;;;:::o;51704:47::-;;;;:::o;55009:104::-;8493:12;:10;:12::i;:::-;8482:23;;:7;:5;:7::i;:::-;:23;;;8474:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55102:5:::1;55080:19;:27;;;;55009:104:::0;:::o;55533:81::-;8493:12;:10;:12::i;:::-;8482:23;;:7;:5;:7::i;:::-;:23;;;8474:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55602:6:::1;55591:8;;:17;;;;;;;;;;;;;;;;;;55533:81:::0;:::o;38010:164::-;38107:4;38131:18;:25;38150:5;38131:25;;;;;;;;;;;;;;;:35;38157:8;38131:35;;;;;;;;;;;;;;;;;;;;;;;;;38124:42;;38010:164;;;;:::o;54872:131::-;8493:12;:10;:12::i;:::-;8482:23;;:7;:5;:7::i;:::-;:23;;;8474:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54960:37:::1;54974:9;54985:11;54960:13;:37::i;:::-;54872:131:::0;;:::o;9171:201::-;8493:12;:10;:12::i;:::-;8482:23;;:7;:5;:7::i;:::-;:23;;;8474:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9280:1:::1;9260:22;;:8;:22;;;;9252:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;9336:28;9355:8;9336:18;:28::i;:::-;9171:201:::0;:::o;51558:38::-;;;;:::o;54182:571::-;54284:11;52562:6;;;;;;;;;;;52561:7;52553:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;52625:1;52611:11;:15;52603:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;52696:10;;52681:11;52665:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:41;;52657:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;52838:21;;52806:15;:27;52822:10;52806:27;;;;;;;;;;;;;;;;52773:18;:30;52792:10;52773:30;;;;;;;;;;;;;;;;52747:11;:23;52759:10;52747:23;;;;;;;;;;;;;;;;:56;;;;:::i;:::-;:86;;;;:::i;:::-;52746:113;;52738:176;;;;;;;;;;;;:::i;:::-;;;;;;;;;52942:10;52929:23;;:9;:23;;;52921:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;54312:12:::1;;;;;;;;;;;54304:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;54408:28;;54392:11;54366;:23;54378:10;54366:23;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;54365:71;;54357:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;54485:12;54527:10;54510:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;54500:39;;;;;;54485:54;;54554:56;54573:12;54587:16;;54605:4;54554:18;:56::i;:::-;54546:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;54691:11;54664;:23;54676:10;54664:23;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;54709;54723:10;54735:11;54709:13;:38::i;:::-;54297:456;54182:571:::0;;;:::o;21069:157::-;21154:4;21193:25;21178:40;;;:11;:40;;;;21171:47;;21069:157;;;:::o;39363:174::-;39420:4;39463:7;39444:15;:13;:15::i;:::-;:26;;:53;;;;;39484:13;;39474:7;:23;39444:53;:85;;;;;39502:11;:20;39514:7;39502:20;;;;;;;;;;;:27;;;;;;;;;;;;39501:28;39444:85;39437:92;;39363:174;;;:::o;6986:98::-;7039:7;7066:10;7059:17;;6986:98;:::o;31726:92::-;31782:7;31726:92;:::o;43533:2127::-;43648:35;43686:21;43699:7;43686:12;:21::i;:::-;43648:59;;43746:4;43724:26;;:13;:18;;;:26;;;43720:67;;43759:28;;;;;;;;;;;;;;43720:67;43800:22;43842:4;43826:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;43863:36;43880:4;43886:12;:10;:12::i;:::-;43863:16;:36::i;:::-;43826:73;:126;;;;43940:12;:10;:12::i;:::-;43916:36;;:20;43928:7;43916:11;:20::i;:::-;:36;;;43826:126;43800:153;;43971:17;43966:66;;43997:35;;;;;;;;;;;;;;43966:66;44061:1;44047:16;;:2;:16;;;44043:52;;;44072:23;;;;;;;;;;;;;;44043:52;44108:43;44130:4;44136:2;44140:7;44149:1;44108:21;:43::i;:::-;44224:15;:24;44240:7;44224:24;;;;;;;;;;;;44217:31;;;;;;;;;;;44574:1;44544:12;:18;44557:4;44544:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44618:1;44590:12;:16;44603:2;44590:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44636:31;44670:11;:20;44682:7;44670:20;;;;;;;;;;;44636:54;;44721:2;44705:8;:13;;;:18;;;;;;;;;;;;;;;;;;44771:15;44738:8;:23;;;:49;;;;;;;;;;;;;;;;;;45039:19;45071:1;45061:7;:11;45039:33;;45087:31;45121:11;:24;45133:11;45121:24;;;;;;;;;;;45087:58;;45189:1;45164:27;;:8;:13;;;;;;;;;;;;:27;;;45160:384;;;45374:13;;45359:11;:28;45355:174;;45428:4;45412:8;:13;;;:20;;;;;;;;;;;;;;;;;;45481:13;:28;;;45455:8;:23;;;:54;;;;;;;;;;;;;;;;;;45355:174;45160:384;44519:1036;;;45591:7;45587:2;45572:27;;45581:4;45572:27;;;;;;;;;;;;45610:42;45631:4;45637:2;45641:7;45650:1;45610:20;:42::i;:::-;43637:2023;;43533:2127;;;:::o;57032:118::-;57111:33;57121:9;57132:11;57111:9;:33::i;:::-;57032:118;;:::o;34462:1111::-;34524:21;;:::i;:::-;34558:12;34573:7;34558:22;;34641:4;34622:15;:13;:15::i;:::-;:23;34618:888;;34658:13;;34651:4;:20;34647:859;;;34692:31;34726:11;:17;34738:4;34726:17;;;;;;;;;;;34692:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34767:9;:16;;;34762:729;;34838:1;34812:28;;:9;:14;;;:28;;;34808:101;;34876:9;34869:16;;;;;;34808:101;35211:261;35218:4;35211:261;;;35251:6;;;;;;;;35296:11;:17;35308:4;35296:17;;;;;;;;;;;35284:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35370:1;35344:28;;:9;:14;;;:28;;;35340:109;;35412:9;35405:16;;;;;;35340:109;35211:261;;;34762:729;34673:833;34647:859;34618:888;35534:31;;;;;;;;;;;;;;34462:1111;;;;:::o;9532:191::-;9606:16;9625:6;;;;;;;;;;;9606:25;;9651:8;9642:6;;:17;;;;;;;;;;;;;;;;;;9706:8;9675:40;;9696:8;9675:40;;;;;;;;;;;;9595:128;9532:191;:::o;10963:326::-;11023:4;11280:1;11258:7;:19;;;:23;11251:30;;10963:326;;;:::o;48953:667::-;49116:4;49153:2;49137:36;;;49174:12;:10;:12::i;:::-;49188:4;49194:7;49203:5;49137:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;49133:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49388:1;49371:6;:13;:18;49367:235;;;49417:40;;;;;;;;;;;;;;49367:235;49560:6;49554:13;49545:6;49541:2;49537:15;49530:38;49133:480;49266:45;;;49256:55;;;:6;:55;;;;49249:62;;;48953:667;;;;;;:::o;1253:190::-;1378:4;1431;1402:25;1415:5;1422:4;1402:12;:25::i;:::-;:33;1395:40;;1253:190;;;;;:::o;4548:723::-;4604:13;4834:1;4825:5;:10;4821:53;;;4852:10;;;;;;;;;;;;;;;;;;;;;4821:53;4884:12;4899:5;4884:20;;4915:14;4940:78;4955:1;4947:4;:9;4940:78;;4973:8;;;;;:::i;:::-;;;;5004:2;4996:10;;;;;:::i;:::-;;;4940:78;;;5028:19;5060:6;5050:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5028:39;;5078:154;5094:1;5085:5;:10;5078:154;;5122:1;5112:11;;;;;:::i;:::-;;;5189:2;5181:5;:10;;;;:::i;:::-;5168:2;:24;;;;:::i;:::-;5155:39;;5138:6;5145;5138:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;5218:2;5209:11;;;;;:::i;:::-;;;5078:154;;;5256:6;5242:21;;;;;4548:723;;;;:::o;57156:104::-;57216:13;57245:9;57238:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57156:104;:::o;50268:159::-;;;;;:::o;51086:158::-;;;;;:::o;39621:104::-;39690:27;39700:2;39704:8;39690:27;;;;;;;;;;;;:9;:27::i;:::-;39621:104;;:::o;1804:675::-;1887:7;1907:20;1930:4;1907:27;;1950:9;1945:497;1969:5;:12;1965:1;:16;1945:497;;;2003:20;2026:5;2032:1;2026:8;;;;;;;;:::i;:::-;;;;;;;;2003:31;;2069:12;2053;:28;2049:382;;2196:42;2211:12;2225;2196:14;:42::i;:::-;2181:57;;2049:382;;;2373:42;2388:12;2402;2373:14;:42::i;:::-;2358:57;;2049:382;1988:454;1983:3;;;;;:::i;:::-;;;;1945:497;;;;2459:12;2452:19;;;1804:675;;;;:::o;40098:1749::-;40221:20;40244:13;;40221:36;;40286:1;40272:16;;:2;:16;;;40268:48;;;40297:19;;;;;;;;;;;;;;40268:48;40343:1;40331:8;:13;40327:44;;;40353:18;;;;;;;;;;;;;;40327:44;40384:61;40414:1;40418:2;40422:12;40436:8;40384:21;:61::i;:::-;40757:8;40722:12;:16;40735:2;40722:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40821:8;40781:12;:16;40794:2;40781:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40880:2;40847:11;:25;40859:12;40847:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;40947:15;40897:11;:25;40909:12;40897:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;40980:20;41003:12;40980:35;;41030:11;41059:8;41044:12;:23;41030:37;;41088:15;:2;:13;;;:15::i;:::-;41084:631;;;41124:313;41180:12;41176:2;41155:38;;41172:1;41155:38;;;;;;;;;;;;41221:69;41260:1;41264:2;41268:14;;;;;;41284:5;41221:30;:69::i;:::-;41216:174;;41326:40;;;;;;;;;;;;;;41216:174;41432:3;41417:12;:18;41124:313;;41518:12;41501:13;;:29;41497:43;;41532:8;;;41497:43;41084:631;;;41581:119;41637:14;;;;;;41633:2;41612:40;;41629:1;41612:40;;;;;;;;;;;;41695:3;41680:12;:18;41581:119;;41084:631;41745:12;41729:13;:28;;;;40697:1072;;41779:60;41808:1;41812:2;41816:12;41830:8;41779:20;:60::i;:::-;40210:1637;40098:1749;;;:::o;2487:224::-;2555:13;2618:1;2612:4;2605:15;2647:1;2641:4;2634:15;2688:4;2682;2672:21;2663:30;;2487:224;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:139::-;2309:5;2347:6;2334:20;2325:29;;2363:33;2390:5;2363:33;:::i;:::-;2263:139;;;;:::o;2408:137::-;2453:5;2491:6;2478:20;2469:29;;2507:32;2533:5;2507:32;:::i;:::-;2408:137;;;;:::o;2551:141::-;2607:5;2638:6;2632:13;2623:22;;2654:32;2680:5;2654:32;:::i;:::-;2551:141;;;;:::o;2711:338::-;2766:5;2815:3;2808:4;2800:6;2796:17;2792:27;2782:122;;2823:79;;:::i;:::-;2782:122;2940:6;2927:20;2965:78;3039:3;3031:6;3024:4;3016:6;3012:17;2965:78;:::i;:::-;2956:87;;2772:277;2711:338;;;;:::o;3069:340::-;3125:5;3174:3;3167:4;3159:6;3155:17;3151:27;3141:122;;3182:79;;:::i;:::-;3141:122;3299:6;3286:20;3324:79;3399:3;3391:6;3384:4;3376:6;3372:17;3324:79;:::i;:::-;3315:88;;3131:278;3069:340;;;;:::o;3415:139::-;3461:5;3499:6;3486:20;3477:29;;3515:33;3542:5;3515:33;:::i;:::-;3415:139;;;;:::o;3560:329::-;3619:6;3668:2;3656:9;3647:7;3643:23;3639:32;3636:119;;;3674:79;;:::i;:::-;3636:119;3794:1;3819:53;3864:7;3855:6;3844:9;3840:22;3819:53;:::i;:::-;3809:63;;3765:117;3560:329;;;;:::o;3895:474::-;3963:6;3971;4020:2;4008:9;3999:7;3995:23;3991:32;3988:119;;;4026:79;;:::i;:::-;3988:119;4146:1;4171:53;4216:7;4207:6;4196:9;4192:22;4171:53;:::i;:::-;4161:63;;4117:117;4273:2;4299:53;4344:7;4335:6;4324:9;4320:22;4299:53;:::i;:::-;4289:63;;4244:118;3895:474;;;;;:::o;4375:619::-;4452:6;4460;4468;4517:2;4505:9;4496:7;4492:23;4488:32;4485:119;;;4523:79;;:::i;:::-;4485:119;4643:1;4668:53;4713:7;4704:6;4693:9;4689:22;4668:53;:::i;:::-;4658:63;;4614:117;4770:2;4796:53;4841:7;4832:6;4821:9;4817:22;4796:53;:::i;:::-;4786:63;;4741:118;4898:2;4924:53;4969:7;4960:6;4949:9;4945:22;4924:53;:::i;:::-;4914:63;;4869:118;4375:619;;;;;:::o;5000:943::-;5095:6;5103;5111;5119;5168:3;5156:9;5147:7;5143:23;5139:33;5136:120;;;5175:79;;:::i;:::-;5136:120;5295:1;5320:53;5365:7;5356:6;5345:9;5341:22;5320:53;:::i;:::-;5310:63;;5266:117;5422:2;5448:53;5493:7;5484:6;5473:9;5469:22;5448:53;:::i;:::-;5438:63;;5393:118;5550:2;5576:53;5621:7;5612:6;5601:9;5597:22;5576:53;:::i;:::-;5566:63;;5521:118;5706:2;5695:9;5691:18;5678:32;5737:18;5729:6;5726:30;5723:117;;;5759:79;;:::i;:::-;5723:117;5864:62;5918:7;5909:6;5898:9;5894:22;5864:62;:::i;:::-;5854:72;;5649:287;5000:943;;;;;;;:::o;5949:468::-;6014:6;6022;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:53;6267:7;6258:6;6247:9;6243:22;6222:53;:::i;:::-;6212:63;;6168:117;6324:2;6350:50;6392:7;6383:6;6372:9;6368:22;6350:50;:::i;:::-;6340:60;;6295:115;5949:468;;;;;:::o;6423:474::-;6491:6;6499;6548:2;6536:9;6527:7;6523:23;6519:32;6516:119;;;6554:79;;:::i;:::-;6516:119;6674:1;6699:53;6744:7;6735:6;6724:9;6720:22;6699:53;:::i;:::-;6689:63;;6645:117;6801:2;6827:53;6872:7;6863:6;6852:9;6848:22;6827:53;:::i;:::-;6817:63;;6772:118;6423:474;;;;;:::o;6903:684::-;6996:6;7004;7053:2;7041:9;7032:7;7028:23;7024:32;7021:119;;;7059:79;;:::i;:::-;7021:119;7207:1;7196:9;7192:17;7179:31;7237:18;7229:6;7226:30;7223:117;;;7259:79;;:::i;:::-;7223:117;7364:78;7434:7;7425:6;7414:9;7410:22;7364:78;:::i;:::-;7354:88;;7150:302;7491:2;7517:53;7562:7;7553:6;7542:9;7538:22;7517:53;:::i;:::-;7507:63;;7462:118;6903:684;;;;;:::o;7593:323::-;7649:6;7698:2;7686:9;7677:7;7673:23;7669:32;7666:119;;;7704:79;;:::i;:::-;7666:119;7824:1;7849:50;7891:7;7882:6;7871:9;7867:22;7849:50;:::i;:::-;7839:60;;7795:114;7593:323;;;;:::o;7922:329::-;7981:6;8030:2;8018:9;8009:7;8005:23;8001:32;7998:119;;;8036:79;;:::i;:::-;7998:119;8156:1;8181:53;8226:7;8217:6;8206:9;8202:22;8181:53;:::i;:::-;8171:63;;8127:117;7922:329;;;;:::o;8257:327::-;8315:6;8364:2;8352:9;8343:7;8339:23;8335:32;8332:119;;;8370:79;;:::i;:::-;8332:119;8490:1;8515:52;8559:7;8550:6;8539:9;8535:22;8515:52;:::i;:::-;8505:62;;8461:116;8257:327;;;;:::o;8590:349::-;8659:6;8708:2;8696:9;8687:7;8683:23;8679:32;8676:119;;;8714:79;;:::i;:::-;8676:119;8834:1;8859:63;8914:7;8905:6;8894:9;8890:22;8859:63;:::i;:::-;8849:73;;8805:127;8590:349;;;;:::o;8945:509::-;9014:6;9063:2;9051:9;9042:7;9038:23;9034:32;9031:119;;;9069:79;;:::i;:::-;9031:119;9217:1;9206:9;9202:17;9189:31;9247:18;9239:6;9236:30;9233:117;;;9269:79;;:::i;:::-;9233:117;9374:63;9429:7;9420:6;9409:9;9405:22;9374:63;:::i;:::-;9364:73;;9160:287;8945:509;;;;:::o;9460:329::-;9519:6;9568:2;9556:9;9547:7;9543:23;9539:32;9536:119;;;9574:79;;:::i;:::-;9536:119;9694:1;9719:53;9764:7;9755:6;9744:9;9740:22;9719:53;:::i;:::-;9709:63;;9665:117;9460:329;;;;:::o;9795:474::-;9863:6;9871;9920:2;9908:9;9899:7;9895:23;9891:32;9888:119;;;9926:79;;:::i;:::-;9888:119;10046:1;10071:53;10116:7;10107:6;10096:9;10092:22;10071:53;:::i;:::-;10061:63;;10017:117;10173:2;10199:53;10244:7;10235:6;10224:9;10220:22;10199:53;:::i;:::-;10189:63;;10144:118;9795:474;;;;;:::o;10275:179::-;10344:10;10365:46;10407:3;10399:6;10365:46;:::i;:::-;10443:4;10438:3;10434:14;10420:28;;10275:179;;;;:::o;10460:118::-;10547:24;10565:5;10547:24;:::i;:::-;10542:3;10535:37;10460:118;;:::o;10584:157::-;10689:45;10709:24;10727:5;10709:24;:::i;:::-;10689:45;:::i;:::-;10684:3;10677:58;10584:157;;:::o;10777:732::-;10896:3;10925:54;10973:5;10925:54;:::i;:::-;10995:86;11074:6;11069:3;10995:86;:::i;:::-;10988:93;;11105:56;11155:5;11105:56;:::i;:::-;11184:7;11215:1;11200:284;11225:6;11222:1;11219:13;11200:284;;;11301:6;11295:13;11328:63;11387:3;11372:13;11328:63;:::i;:::-;11321:70;;11414:60;11467:6;11414:60;:::i;:::-;11404:70;;11260:224;11247:1;11244;11240:9;11235:14;;11200:284;;;11204:14;11500:3;11493:10;;10901:608;;;10777:732;;;;:::o;11515:109::-;11596:21;11611:5;11596:21;:::i;:::-;11591:3;11584:34;11515:109;;:::o;11630:360::-;11716:3;11744:38;11776:5;11744:38;:::i;:::-;11798:70;11861:6;11856:3;11798:70;:::i;:::-;11791:77;;11877:52;11922:6;11917:3;11910:4;11903:5;11899:16;11877:52;:::i;:::-;11954:29;11976:6;11954:29;:::i;:::-;11949:3;11945:39;11938:46;;11720:270;11630:360;;;;:::o;11996:364::-;12084:3;12112:39;12145:5;12112:39;:::i;:::-;12167:71;12231:6;12226:3;12167:71;:::i;:::-;12160:78;;12247:52;12292:6;12287:3;12280:4;12273:5;12269:16;12247:52;:::i;:::-;12324:29;12346:6;12324:29;:::i;:::-;12319:3;12315:39;12308:46;;12088:272;11996:364;;;;:::o;12366:377::-;12472:3;12500:39;12533:5;12500:39;:::i;:::-;12555:89;12637:6;12632:3;12555:89;:::i;:::-;12548:96;;12653:52;12698:6;12693:3;12686:4;12679:5;12675:16;12653:52;:::i;:::-;12730:6;12725:3;12721:16;12714:23;;12476:267;12366:377;;;;:::o;12773:845::-;12876:3;12913:5;12907:12;12942:36;12968:9;12942:36;:::i;:::-;12994:89;13076:6;13071:3;12994:89;:::i;:::-;12987:96;;13114:1;13103:9;13099:17;13130:1;13125:137;;;;13276:1;13271:341;;;;13092:520;;13125:137;13209:4;13205:9;13194;13190:25;13185:3;13178:38;13245:6;13240:3;13236:16;13229:23;;13125:137;;13271:341;13338:38;13370:5;13338:38;:::i;:::-;13398:1;13412:154;13426:6;13423:1;13420:13;13412:154;;;13500:7;13494:14;13490:1;13485:3;13481:11;13474:35;13550:1;13541:7;13537:15;13526:26;;13448:4;13445:1;13441:12;13436:17;;13412:154;;;13595:6;13590:3;13586:16;13579:23;;13278:334;;13092:520;;12880:738;;12773:845;;;;:::o;13624:366::-;13766:3;13787:67;13851:2;13846:3;13787:67;:::i;:::-;13780:74;;13863:93;13952:3;13863:93;:::i;:::-;13981:2;13976:3;13972:12;13965:19;;13624:366;;;:::o;13996:::-;14138:3;14159:67;14223:2;14218:3;14159:67;:::i;:::-;14152:74;;14235:93;14324:3;14235:93;:::i;:::-;14353:2;14348:3;14344:12;14337:19;;13996:366;;;:::o;14368:::-;14510:3;14531:67;14595:2;14590:3;14531:67;:::i;:::-;14524:74;;14607:93;14696:3;14607:93;:::i;:::-;14725:2;14720:3;14716:12;14709:19;;14368:366;;;:::o;14740:::-;14882:3;14903:67;14967:2;14962:3;14903:67;:::i;:::-;14896:74;;14979:93;15068:3;14979:93;:::i;:::-;15097:2;15092:3;15088:12;15081:19;;14740:366;;;:::o;15112:::-;15254:3;15275:67;15339:2;15334:3;15275:67;:::i;:::-;15268:74;;15351:93;15440:3;15351:93;:::i;:::-;15469:2;15464:3;15460:12;15453:19;;15112:366;;;:::o;15484:::-;15626:3;15647:67;15711:2;15706:3;15647:67;:::i;:::-;15640:74;;15723:93;15812:3;15723:93;:::i;:::-;15841:2;15836:3;15832:12;15825:19;;15484:366;;;:::o;15856:::-;15998:3;16019:67;16083:2;16078:3;16019:67;:::i;:::-;16012:74;;16095:93;16184:3;16095:93;:::i;:::-;16213:2;16208:3;16204:12;16197:19;;15856:366;;;:::o;16228:::-;16370:3;16391:67;16455:2;16450:3;16391:67;:::i;:::-;16384:74;;16467:93;16556:3;16467:93;:::i;:::-;16585:2;16580:3;16576:12;16569:19;;16228:366;;;:::o;16600:::-;16742:3;16763:67;16827:2;16822:3;16763:67;:::i;:::-;16756:74;;16839:93;16928:3;16839:93;:::i;:::-;16957:2;16952:3;16948:12;16941:19;;16600:366;;;:::o;16972:::-;17114:3;17135:67;17199:2;17194:3;17135:67;:::i;:::-;17128:74;;17211:93;17300:3;17211:93;:::i;:::-;17329:2;17324:3;17320:12;17313:19;;16972:366;;;:::o;17344:::-;17486:3;17507:67;17571:2;17566:3;17507:67;:::i;:::-;17500:74;;17583:93;17672:3;17583:93;:::i;:::-;17701:2;17696:3;17692:12;17685:19;;17344:366;;;:::o;17716:::-;17858:3;17879:67;17943:2;17938:3;17879:67;:::i;:::-;17872:74;;17955:93;18044:3;17955:93;:::i;:::-;18073:2;18068:3;18064:12;18057:19;;17716:366;;;:::o;18088:::-;18230:3;18251:67;18315:2;18310:3;18251:67;:::i;:::-;18244:74;;18327:93;18416:3;18327:93;:::i;:::-;18445:2;18440:3;18436:12;18429:19;;18088:366;;;:::o;18460:398::-;18619:3;18640:83;18721:1;18716:3;18640:83;:::i;:::-;18633:90;;18732:93;18821:3;18732:93;:::i;:::-;18850:1;18845:3;18841:11;18834:18;;18460:398;;;:::o;18864:366::-;19006:3;19027:67;19091:2;19086:3;19027:67;:::i;:::-;19020:74;;19103:93;19192:3;19103:93;:::i;:::-;19221:2;19216:3;19212:12;19205:19;;18864:366;;;:::o;19236:::-;19378:3;19399:67;19463:2;19458:3;19399:67;:::i;:::-;19392:74;;19475:93;19564:3;19475:93;:::i;:::-;19593:2;19588:3;19584:12;19577:19;;19236:366;;;:::o;19608:::-;19750:3;19771:67;19835:2;19830:3;19771:67;:::i;:::-;19764:74;;19847:93;19936:3;19847:93;:::i;:::-;19965:2;19960:3;19956:12;19949:19;;19608:366;;;:::o;19980:108::-;20057:24;20075:5;20057:24;:::i;:::-;20052:3;20045:37;19980:108;;:::o;20094:118::-;20181:24;20199:5;20181:24;:::i;:::-;20176:3;20169:37;20094:118;;:::o;20218:256::-;20330:3;20345:75;20416:3;20407:6;20345:75;:::i;:::-;20445:2;20440:3;20436:12;20429:19;;20465:3;20458:10;;20218:256;;;;:::o;20480:589::-;20705:3;20727:95;20818:3;20809:6;20727:95;:::i;:::-;20720:102;;20839:95;20930:3;20921:6;20839:95;:::i;:::-;20832:102;;20951:92;21039:3;21030:6;20951:92;:::i;:::-;20944:99;;21060:3;21053:10;;20480:589;;;;;;:::o;21075:583::-;21297:3;21319:92;21407:3;21398:6;21319:92;:::i;:::-;21312:99;;21428:95;21519:3;21510:6;21428:95;:::i;:::-;21421:102;;21540:92;21628:3;21619:6;21540:92;:::i;:::-;21533:99;;21649:3;21642:10;;21075:583;;;;;;:::o;21664:379::-;21848:3;21870:147;22013:3;21870:147;:::i;:::-;21863:154;;22034:3;22027:10;;21664:379;;;:::o;22049:222::-;22142:4;22180:2;22169:9;22165:18;22157:26;;22193:71;22261:1;22250:9;22246:17;22237:6;22193:71;:::i;:::-;22049:222;;;;:::o;22277:640::-;22472:4;22510:3;22499:9;22495:19;22487:27;;22524:71;22592:1;22581:9;22577:17;22568:6;22524:71;:::i;:::-;22605:72;22673:2;22662:9;22658:18;22649:6;22605:72;:::i;:::-;22687;22755:2;22744:9;22740:18;22731:6;22687:72;:::i;:::-;22806:9;22800:4;22796:20;22791:2;22780:9;22776:18;22769:48;22834:76;22905:4;22896:6;22834:76;:::i;:::-;22826:84;;22277:640;;;;;;;:::o;22923:373::-;23066:4;23104:2;23093:9;23089:18;23081:26;;23153:9;23147:4;23143:20;23139:1;23128:9;23124:17;23117:47;23181:108;23284:4;23275:6;23181:108;:::i;:::-;23173:116;;22923:373;;;;:::o;23302:210::-;23389:4;23427:2;23416:9;23412:18;23404:26;;23440:65;23502:1;23491:9;23487:17;23478:6;23440:65;:::i;:::-;23302:210;;;;:::o;23518:313::-;23631:4;23669:2;23658:9;23654:18;23646:26;;23718:9;23712:4;23708:20;23704:1;23693:9;23689:17;23682:47;23746:78;23819:4;23810:6;23746:78;:::i;:::-;23738:86;;23518:313;;;;:::o;23837:419::-;24003:4;24041:2;24030:9;24026:18;24018:26;;24090:9;24084:4;24080:20;24076:1;24065:9;24061:17;24054:47;24118:131;24244:4;24118:131;:::i;:::-;24110:139;;23837:419;;;:::o;24262:::-;24428:4;24466:2;24455:9;24451:18;24443:26;;24515:9;24509:4;24505:20;24501:1;24490:9;24486:17;24479:47;24543:131;24669:4;24543:131;:::i;:::-;24535:139;;24262:419;;;:::o;24687:::-;24853:4;24891:2;24880:9;24876:18;24868:26;;24940:9;24934:4;24930:20;24926:1;24915:9;24911:17;24904:47;24968:131;25094:4;24968:131;:::i;:::-;24960:139;;24687:419;;;:::o;25112:::-;25278:4;25316:2;25305:9;25301:18;25293:26;;25365:9;25359:4;25355:20;25351:1;25340:9;25336:17;25329:47;25393:131;25519:4;25393:131;:::i;:::-;25385:139;;25112:419;;;:::o;25537:::-;25703:4;25741:2;25730:9;25726:18;25718:26;;25790:9;25784:4;25780:20;25776:1;25765:9;25761:17;25754:47;25818:131;25944:4;25818:131;:::i;:::-;25810:139;;25537:419;;;:::o;25962:::-;26128:4;26166:2;26155:9;26151:18;26143:26;;26215:9;26209:4;26205:20;26201:1;26190:9;26186:17;26179:47;26243:131;26369:4;26243:131;:::i;:::-;26235:139;;25962:419;;;:::o;26387:::-;26553:4;26591:2;26580:9;26576:18;26568:26;;26640:9;26634:4;26630:20;26626:1;26615:9;26611:17;26604:47;26668:131;26794:4;26668:131;:::i;:::-;26660:139;;26387:419;;;:::o;26812:::-;26978:4;27016:2;27005:9;27001:18;26993:26;;27065:9;27059:4;27055:20;27051:1;27040:9;27036:17;27029:47;27093:131;27219:4;27093:131;:::i;:::-;27085:139;;26812:419;;;:::o;27237:::-;27403:4;27441:2;27430:9;27426:18;27418:26;;27490:9;27484:4;27480:20;27476:1;27465:9;27461:17;27454:47;27518:131;27644:4;27518:131;:::i;:::-;27510:139;;27237:419;;;:::o;27662:::-;27828:4;27866:2;27855:9;27851:18;27843:26;;27915:9;27909:4;27905:20;27901:1;27890:9;27886:17;27879:47;27943:131;28069:4;27943:131;:::i;:::-;27935:139;;27662:419;;;:::o;28087:::-;28253:4;28291:2;28280:9;28276:18;28268:26;;28340:9;28334:4;28330:20;28326:1;28315:9;28311:17;28304:47;28368:131;28494:4;28368:131;:::i;:::-;28360:139;;28087:419;;;:::o;28512:::-;28678:4;28716:2;28705:9;28701:18;28693:26;;28765:9;28759:4;28755:20;28751:1;28740:9;28736:17;28729:47;28793:131;28919:4;28793:131;:::i;:::-;28785:139;;28512:419;;;:::o;28937:::-;29103:4;29141:2;29130:9;29126:18;29118:26;;29190:9;29184:4;29180:20;29176:1;29165:9;29161:17;29154:47;29218:131;29344:4;29218:131;:::i;:::-;29210:139;;28937:419;;;:::o;29362:::-;29528:4;29566:2;29555:9;29551:18;29543:26;;29615:9;29609:4;29605:20;29601:1;29590:9;29586:17;29579:47;29643:131;29769:4;29643:131;:::i;:::-;29635:139;;29362:419;;;:::o;29787:::-;29953:4;29991:2;29980:9;29976:18;29968:26;;30040:9;30034:4;30030:20;30026:1;30015:9;30011:17;30004:47;30068:131;30194:4;30068:131;:::i;:::-;30060:139;;29787:419;;;:::o;30212:::-;30378:4;30416:2;30405:9;30401:18;30393:26;;30465:9;30459:4;30455:20;30451:1;30440:9;30436:17;30429:47;30493:131;30619:4;30493:131;:::i;:::-;30485:139;;30212:419;;;:::o;30637:222::-;30730:4;30768:2;30757:9;30753:18;30745:26;;30781:71;30849:1;30838:9;30834:17;30825:6;30781:71;:::i;:::-;30637:222;;;;:::o;30865:129::-;30899:6;30926:20;;:::i;:::-;30916:30;;30955:33;30983:4;30975:6;30955:33;:::i;:::-;30865:129;;;:::o;31000:75::-;31033:6;31066:2;31060:9;31050:19;;31000:75;:::o;31081:311::-;31158:4;31248:18;31240:6;31237:30;31234:56;;;31270:18;;:::i;:::-;31234:56;31320:4;31312:6;31308:17;31300:25;;31380:4;31374;31370:15;31362:23;;31081:311;;;:::o;31398:307::-;31459:4;31549:18;31541:6;31538:30;31535:56;;;31571:18;;:::i;:::-;31535:56;31609:29;31631:6;31609:29;:::i;:::-;31601:37;;31693:4;31687;31683:15;31675:23;;31398:307;;;:::o;31711:308::-;31773:4;31863:18;31855:6;31852:30;31849:56;;;31885:18;;:::i;:::-;31849:56;31923:29;31945:6;31923:29;:::i;:::-;31915:37;;32007:4;32001;31997:15;31989:23;;31711:308;;;:::o;32025:132::-;32092:4;32115:3;32107:11;;32145:4;32140:3;32136:14;32128:22;;32025:132;;;:::o;32163:141::-;32212:4;32235:3;32227:11;;32258:3;32255:1;32248:14;32292:4;32289:1;32279:18;32271:26;;32163:141;;;:::o;32310:114::-;32377:6;32411:5;32405:12;32395:22;;32310:114;;;:::o;32430:98::-;32481:6;32515:5;32509:12;32499:22;;32430:98;;;:::o;32534:99::-;32586:6;32620:5;32614:12;32604:22;;32534:99;;;:::o;32639:113::-;32709:4;32741;32736:3;32732:14;32724:22;;32639:113;;;:::o;32758:184::-;32857:11;32891:6;32886:3;32879:19;32931:4;32926:3;32922:14;32907:29;;32758:184;;;;:::o;32948:168::-;33031:11;33065:6;33060:3;33053:19;33105:4;33100:3;33096:14;33081:29;;32948:168;;;;:::o;33122:147::-;33223:11;33260:3;33245:18;;33122:147;;;;:::o;33275:169::-;33359:11;33393:6;33388:3;33381:19;33433:4;33428:3;33424:14;33409:29;;33275:169;;;;:::o;33450:148::-;33552:11;33589:3;33574:18;;33450:148;;;;:::o;33604:305::-;33644:3;33663:20;33681:1;33663:20;:::i;:::-;33658:25;;33697:20;33715:1;33697:20;:::i;:::-;33692:25;;33851:1;33783:66;33779:74;33776:1;33773:81;33770:107;;;33857:18;;:::i;:::-;33770:107;33901:1;33898;33894:9;33887:16;;33604:305;;;;:::o;33915:185::-;33955:1;33972:20;33990:1;33972:20;:::i;:::-;33967:25;;34006:20;34024:1;34006:20;:::i;:::-;34001:25;;34045:1;34035:35;;34050:18;;:::i;:::-;34035:35;34092:1;34089;34085:9;34080:14;;33915:185;;;;:::o;34106:348::-;34146:7;34169:20;34187:1;34169:20;:::i;:::-;34164:25;;34203:20;34221:1;34203:20;:::i;:::-;34198:25;;34391:1;34323:66;34319:74;34316:1;34313:81;34308:1;34301:9;34294:17;34290:105;34287:131;;;34398:18;;:::i;:::-;34287:131;34446:1;34443;34439:9;34428:20;;34106:348;;;;:::o;34460:191::-;34500:4;34520:20;34538:1;34520:20;:::i;:::-;34515:25;;34554:20;34572:1;34554:20;:::i;:::-;34549:25;;34593:1;34590;34587:8;34584:34;;;34598:18;;:::i;:::-;34584:34;34643:1;34640;34636:9;34628:17;;34460:191;;;;:::o;34657:96::-;34694:7;34723:24;34741:5;34723:24;:::i;:::-;34712:35;;34657:96;;;:::o;34759:90::-;34793:7;34836:5;34829:13;34822:21;34811:32;;34759:90;;;:::o;34855:77::-;34892:7;34921:5;34910:16;;34855:77;;;:::o;34938:149::-;34974:7;35014:66;35007:5;35003:78;34992:89;;34938:149;;;:::o;35093:126::-;35130:7;35170:42;35163:5;35159:54;35148:65;;35093:126;;;:::o;35225:77::-;35262:7;35291:5;35280:16;;35225:77;;;:::o;35308:154::-;35392:6;35387:3;35382;35369:30;35454:1;35445:6;35440:3;35436:16;35429:27;35308:154;;;:::o;35468:307::-;35536:1;35546:113;35560:6;35557:1;35554:13;35546:113;;;35645:1;35640:3;35636:11;35630:18;35626:1;35621:3;35617:11;35610:39;35582:2;35579:1;35575:10;35570:15;;35546:113;;;35677:6;35674:1;35671:13;35668:101;;;35757:1;35748:6;35743:3;35739:16;35732:27;35668:101;35517:258;35468:307;;;:::o;35781:320::-;35825:6;35862:1;35856:4;35852:12;35842:22;;35909:1;35903:4;35899:12;35930:18;35920:81;;35986:4;35978:6;35974:17;35964:27;;35920:81;36048:2;36040:6;36037:14;36017:18;36014:38;36011:84;;;36067:18;;:::i;:::-;36011:84;35832:269;35781:320;;;:::o;36107:281::-;36190:27;36212:4;36190:27;:::i;:::-;36182:6;36178:40;36320:6;36308:10;36305:22;36284:18;36272:10;36269:34;36266:62;36263:88;;;36331:18;;:::i;:::-;36263:88;36371:10;36367:2;36360:22;36150:238;36107:281;;:::o;36394:233::-;36433:3;36456:24;36474:5;36456:24;:::i;:::-;36447:33;;36502:66;36495:5;36492:77;36489:103;;;36572:18;;:::i;:::-;36489:103;36619:1;36612:5;36608:13;36601:20;;36394:233;;;:::o;36633:100::-;36672:7;36701:26;36721:5;36701:26;:::i;:::-;36690:37;;36633:100;;;:::o;36739:94::-;36778:7;36807:20;36821:5;36807:20;:::i;:::-;36796:31;;36739:94;;;:::o;36839:176::-;36871:1;36888:20;36906:1;36888:20;:::i;:::-;36883:25;;36922:20;36940:1;36922:20;:::i;:::-;36917:25;;36961:1;36951:35;;36966:18;;:::i;:::-;36951:35;37007:1;37004;37000:9;36995:14;;36839:176;;;;:::o;37021:180::-;37069:77;37066:1;37059:88;37166:4;37163:1;37156:15;37190:4;37187:1;37180:15;37207:180;37255:77;37252:1;37245:88;37352:4;37349:1;37342:15;37376:4;37373:1;37366:15;37393:180;37441:77;37438:1;37431:88;37538:4;37535:1;37528:15;37562:4;37559:1;37552:15;37579:180;37627:77;37624:1;37617:88;37724:4;37721:1;37714:15;37748:4;37745:1;37738:15;37765:180;37813:77;37810:1;37803:88;37910:4;37907:1;37900:15;37934:4;37931:1;37924:15;37951:117;38060:1;38057;38050:12;38074:117;38183:1;38180;38173:12;38197:117;38306:1;38303;38296:12;38320:117;38429:1;38426;38419:12;38443:117;38552:1;38549;38542:12;38566:102;38607:6;38658:2;38654:7;38649:2;38642:5;38638:14;38634:28;38624:38;;38566:102;;;:::o;38674:94::-;38707:8;38755:5;38751:2;38747:14;38726:35;;38674:94;;;:::o;38774:227::-;38914:34;38910:1;38902:6;38898:14;38891:58;38983:10;38978:2;38970:6;38966:15;38959:35;38774:227;:::o;39007:229::-;39147:34;39143:1;39135:6;39131:14;39124:58;39216:12;39211:2;39203:6;39199:15;39192:37;39007:229;:::o;39242:225::-;39382:34;39378:1;39370:6;39366:14;39359:58;39451:8;39446:2;39438:6;39434:15;39427:33;39242:225;:::o;39473:169::-;39613:21;39609:1;39601:6;39597:14;39590:45;39473:169;:::o;39648:178::-;39788:30;39784:1;39776:6;39772:14;39765:54;39648:178;:::o;39832:168::-;39972:20;39968:1;39960:6;39956:14;39949:44;39832:168;:::o;40006:230::-;40146:34;40142:1;40134:6;40130:14;40123:58;40215:13;40210:2;40202:6;40198:15;40191:38;40006:230;:::o;40242:175::-;40382:27;40378:1;40370:6;40366:14;40359:51;40242:175;:::o;40423:182::-;40563:34;40559:1;40551:6;40547:14;40540:58;40423:182;:::o;40611:173::-;40751:25;40747:1;40739:6;40735:14;40728:49;40611:173;:::o;40790:234::-;40930:34;40926:1;40918:6;40914:14;40907:58;40999:17;40994:2;40986:6;40982:15;40975:42;40790:234;:::o;41030:181::-;41170:33;41166:1;41158:6;41154:14;41147:57;41030:181;:::o;41217:230::-;41357:34;41353:1;41345:6;41341:14;41334:58;41426:13;41421:2;41413:6;41409:15;41402:38;41217:230;:::o;41453:114::-;;:::o;41573:170::-;41713:22;41709:1;41701:6;41697:14;41690:46;41573:170;:::o;41749:222::-;41889:34;41885:1;41877:6;41873:14;41866:58;41958:5;41953:2;41945:6;41941:15;41934:30;41749:222;:::o;41977:171::-;42117:23;42113:1;42105:6;42101:14;42094:47;41977:171;:::o;42154:122::-;42227:24;42245:5;42227:24;:::i;:::-;42220:5;42217:35;42207:63;;42266:1;42263;42256:12;42207:63;42154:122;:::o;42282:116::-;42352:21;42367:5;42352:21;:::i;:::-;42345:5;42342:32;42332:60;;42388:1;42385;42378:12;42332:60;42282:116;:::o;42404:122::-;42477:24;42495:5;42477:24;:::i;:::-;42470:5;42467:35;42457:63;;42516:1;42513;42506:12;42457:63;42404:122;:::o;42532:120::-;42604:23;42621:5;42604:23;:::i;:::-;42597:5;42594:34;42584:62;;42642:1;42639;42632:12;42584:62;42532:120;:::o;42658:122::-;42731:24;42749:5;42731:24;:::i;:::-;42724:5;42721:35;42711:63;;42770:1;42767;42760:12;42711:63;42658:122;:::o

Swarm Source

ipfs://b1ebf173dfd6548285f03f78af08fe67f9cb2b6fcde2a9128106f3226eb3ec45
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.