ETH Price: $2,664.92 (+9.94%)
Gas: 1 Gwei

Token

Gaia Archives (GAV)
 

Overview

Max Total Supply

3,128 GAV

Holders

638

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
6 GAV
0x99b4e61527bb1ee2951120ae2b53c64699265c3e
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:
Gaia_Archives_Contract

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-08-31
*/

/**
 *Submitted for verification at Etherscan.io on 2022-08-27
*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree 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 Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(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++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// File: contracts/rose.sol

/**
 *Submitted for verification at Etherscan.io on 2022-07-22
*/



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

pragma solidity ^0.8.0;

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

abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


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

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


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @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, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

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

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

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view 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 && 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 && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_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;
    }

    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 {
        _mint(to, quantity, _data, true);
    }

    /**
     * @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,
        bytes memory _data,
        bool safe
    ) 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 (safe && 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 Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

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

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


pragma solidity ^0.8.7;




contract Gaia_Archives_Contract is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;
    mapping(address => uint256) public publicClaimed;
    mapping(address => uint256) public ogClaimed;
    mapping(address => uint256) public apprClaimed;
    mapping(address => uint256) public wlClaimed;

    string public baseURI;

    bool public paused = false;
    uint256 public publicPrice = 0.015 ether;
    uint256 public publicBatchPrice = 0.1 ether;
    uint256 public contractStatus = 3;
    bool public paidMint = false;
    uint256 public publicMintPerTx = 5;
    uint256 public maxSupply = 3639;
    uint256 public paidMintSupply = 627;
    uint256 public freeMintSupply = 3012;
    bytes32 public root = 0x11d251a3c7c541a8a68635af1ed366692175fbdc9f3b07da18af66c111f85800; 

    constructor() ERC721A("Gaia Archives", "GAV") {}

    // ============ PUBLIC FUNCTIONS FOR MINTING ============
    function mint(uint256 option) external payable nonReentrant {
        require(!paused, "The contract is paused!");
        require(paidMint, "Paid mint is closed!");
        uint256 quantity = 1;
        if(option == 2) {
            quantity = 10;
            require(msg.value >= publicBatchPrice, "Insufficient Funds!");
        } else {
        require(msg.value >= publicPrice, "Insufficient Funds!");
        }
        require(quantity > 0 && totalSupply() + quantity <= maxSupply, "Invalid amount!");
        _safeMint(msg.sender, quantity);
    }
    function mintFree(uint256 quantity, bytes32[] calldata proofs) external nonReentrant {
        require(!paused, "The contract is paused!");
        require(!paidMint, "Paid mint has started");
        require(quantity + totalSupply() <= freeMintSupply, "Limit exceeded");
        require(quantity > 0 && totalSupply() + quantity <= maxSupply, "Invalid amount!");
        if(contractStatus == 0) {
        {
            require(quantity <= publicMintPerTx, "You're not allowed to mint more than max Mint Amount!");
            publicClaimed[msg.sender] += quantity;
        }
        } else {
            require(quantity <= contractStatus, "You're not allowed to mint more than max Mint Amount!");
            if(contractStatus == 1) {
                require(quantity + wlClaimed[msg.sender] <= contractStatus, "Can't mint this much!");
            }
            if(contractStatus == 2) {
                require(quantity + apprClaimed[msg.sender] <= contractStatus, "Can't mint this much!");
            }
            if(contractStatus == 3) {
                require(quantity + ogClaimed[msg.sender] <= contractStatus, "Can't mint this much!");
            }
            require(isValid(proofs), "You're not registerd for this phase");

        }
        _safeMint(msg.sender, quantity);
    }

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


    // ============ PUBLIC READ-ONLY FUNCTIONS ============
    function isValid(bytes32[] calldata _merkleProof) internal view returns (bool){
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, root, leaf), "Incorrect proof");
        return true; // Or you can mint tokens here
    }
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        tokenId.toString(),
                        ".json"
                    )
                )
                : "";
    }
    function setRoot(bytes32 _newRoot) external onlyOwner {
        root = _newRoot;
    }
    function changeStatusOfContract(uint256 _newStatus) external onlyOwner {
        contractStatus = _newStatus;
    }
    function setCost(uint256 _newPublicCost) external onlyOwner {
        publicPrice = _newPublicCost;
    }
 
    function setMaxPublic(uint256 _newMaxPublic) external onlyOwner {
        publicMintPerTx = _newMaxPublic;
    }

    function setMaxSuppy(uint256 _amount) external onlyOwner {
        maxSupply = _amount;
    }

    function setPaused(bool _state) external onlyOwner {
        paused = _state;
    }
    function togglePaidMint() external onlyOwner {
        paidMint = !paidMint;
    }
    function setBaseURI(string memory _newBaseURI) external onlyOwner {
        baseURI = _newBaseURI;
    }

    function airDrop(uint256 quantity, address _address) external onlyOwner {
        _safeMint(_address, quantity);
    }
    function getRemainingFreeNfts() external onlyOwner {
        uint256 amount = freeMintSupply - totalSupply();
        _safeMint(super.owner(), amount);
    }

    function withdraw() public onlyOwner {
         // Do not remove this otherwise you will not be able to withdraw the funds.
        // =============================================================================
        (bool ts, ) = payable(owner()).call{value: address(this).balance}("");
        require(ts);
        // =============================================================================
    }
}

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"},{"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":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"apprClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newStatus","type":"uint256"}],"name":"changeStatusOfContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractStatus","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintSupply","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":"getRemainingFreeNfts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"option","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"proofs","type":"bytes32[]"}],"name":"mintFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"ogClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"paidMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paidMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicBatchPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPublicCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxPublic","type":"uint256"}],"name":"setMaxPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxSuppy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newRoot","type":"bytes32"}],"name":"setRoot","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":[],"name":"togglePaidMint","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"wlClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60806040526000600f60006101000a81548160ff02191690831515021790555066354a6ba7a1800060105567016345785d8a000060115560036012556000601360006101000a81548160ff0219169083151502179055506005601455610e37601555610273601655610bc46017557f11d251a3c7c541a8a68635af1ed366692175fbdc9f3b07da18af66c111f8580060001b601855348015620000a157600080fd5b506040518060400160405280600d81526020017f47616961204172636869766573000000000000000000000000000000000000008152506040518060400160405280600381526020017f47415600000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001269291906200025d565b5080600390805190602001906200013f9291906200025d565b50620001506200018660201b60201c565b6000819055505050620001786200016c6200018f60201b60201c565b6200019760201b60201c565b600160098190555062000372565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200026b906200030d565b90600052602060002090601f0160209004810192826200028f5760008555620002db565b82601f10620002aa57805160ff1916838001178555620002db565b82800160010185558215620002db579182015b82811115620002da578251825591602001919060010190620002bd565b5b509050620002ea9190620002ee565b5090565b5b8082111562000309576000816000905550600101620002ef565b5090565b600060028204905060018216806200032657607f821691505b602082108114156200033d576200033c62000343565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61496d80620003826000396000f3fe6080604052600436106102725760003560e01c806373fc16ad1161014f578063c6ee20d2116100c1578063e985e9c51161007a578063e985e9c51461091b578063ebf0c71714610958578063f0238a1114610983578063f2fde38b146109ae578063fa6626b2146109d7578063fbdb849414610a1457610272565b8063c6ee20d214610809578063c87b56dd14610834578063d094363d14610871578063d5abeb011461089c578063dab5f340146108c7578063e150007e146108f057610272565b8063a0712d6811610113578063a0712d681461070a578063a22cb46514610726578063a945bf801461074f578063aed380151461077a578063b5b1cd7c146107a3578063b88d4fde146107e057610272565b806373fc16ad146106255780638da5cb5b1461066257806395d89b411461068d5780639d86f719146106b85780639ec571d5146106e157610272565b806342842e0e116101e85780635a089b30116101ac5780635a089b30146105015780635c975abb1461053e5780636352211e146105695780636c0360eb146105a657806370a08231146105d1578063715018a61461060e57610272565b806342842e0e1461045857806342dc9b9d1461048157806344a0d68a1461049857806346bc7b06146104c157806355f804b3146104d857610272565b8063166a7d401161023a578063166a7d401461037057806316c38b3c1461039b57806318160ddd146103c457806323b872dd146103ef578063341927ea146104185780633ccfd60b1461044157610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063095ea7b31461031c5780630caea53b14610345575b600080fd5b34801561028357600080fd5b5061029e600480360381019061029991906139bb565b610a3d565b6040516102ab9190613f17565b60405180910390f35b3480156102c057600080fd5b506102c9610b1f565b6040516102d69190613f4d565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613a5e565b610bb1565b6040516103139190613eb0565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e9190613921565b610c2d565b005b34801561035157600080fd5b5061035a610d38565b604051610367919061412f565b60405180910390f35b34801561037c57600080fd5b50610385610d3e565b604051610392919061412f565b60405180910390f35b3480156103a757600080fd5b506103c260048036038101906103bd9190613961565b610d44565b005b3480156103d057600080fd5b506103d9610ddd565b6040516103e6919061412f565b60405180910390f35b3480156103fb57600080fd5b506104166004803603810190610411919061380b565b610df4565b005b34801561042457600080fd5b5061043f600480360381019061043a9190613acb565b610e04565b005b34801561044d57600080fd5b506104566112ce565b005b34801561046457600080fd5b5061047f600480360381019061047a919061380b565b6113ca565b005b34801561048d57600080fd5b506104966113ea565b005b3480156104a457600080fd5b506104bf60048036038101906104ba9190613a5e565b611492565b005b3480156104cd57600080fd5b506104d6611518565b005b3480156104e457600080fd5b506104ff60048036038101906104fa9190613a15565b6115c1565b005b34801561050d57600080fd5b506105286004803603810190610523919061379e565b611657565b604051610535919061412f565b60405180910390f35b34801561054a57600080fd5b5061055361166f565b6040516105609190613f17565b60405180910390f35b34801561057557600080fd5b50610590600480360381019061058b9190613a5e565b611682565b60405161059d9190613eb0565b60405180910390f35b3480156105b257600080fd5b506105bb611698565b6040516105c89190613f4d565b60405180910390f35b3480156105dd57600080fd5b506105f860048036038101906105f3919061379e565b611726565b604051610605919061412f565b60405180910390f35b34801561061a57600080fd5b506106236117f6565b005b34801561063157600080fd5b5061064c6004803603810190610647919061379e565b61187e565b604051610659919061412f565b60405180910390f35b34801561066e57600080fd5b50610677611896565b6040516106849190613eb0565b60405180910390f35b34801561069957600080fd5b506106a26118c0565b6040516106af9190613f4d565b60405180910390f35b3480156106c457600080fd5b506106df60048036038101906106da9190613a5e565b611952565b005b3480156106ed57600080fd5b5061070860048036038101906107039190613a5e565b6119d8565b005b610724600480360381019061071f9190613a5e565b611a5e565b005b34801561073257600080fd5b5061074d600480360381019061074891906138e1565b611c67565b005b34801561075b57600080fd5b50610764611ddf565b604051610771919061412f565b60405180910390f35b34801561078657600080fd5b506107a1600480360381019061079c9190613a8b565b611de5565b005b3480156107af57600080fd5b506107ca60048036038101906107c5919061379e565b611e6f565b6040516107d7919061412f565b60405180910390f35b3480156107ec57600080fd5b506108076004803603810190610802919061385e565b611e87565b005b34801561081557600080fd5b5061081e611f03565b60405161082b919061412f565b60405180910390f35b34801561084057600080fd5b5061085b60048036038101906108569190613a5e565b611f09565b6040516108689190613f4d565b60405180910390f35b34801561087d57600080fd5b50610886611fb0565b604051610893919061412f565b60405180910390f35b3480156108a857600080fd5b506108b1611fb6565b6040516108be919061412f565b60405180910390f35b3480156108d357600080fd5b506108ee60048036038101906108e9919061398e565b611fbc565b005b3480156108fc57600080fd5b50610905612042565b604051610912919061412f565b60405180910390f35b34801561092757600080fd5b50610942600480360381019061093d91906137cb565b612048565b60405161094f9190613f17565b60405180910390f35b34801561096457600080fd5b5061096d6120dc565b60405161097a9190613f32565b60405180910390f35b34801561098f57600080fd5b506109986120e2565b6040516109a59190613f17565b60405180910390f35b3480156109ba57600080fd5b506109d560048036038101906109d0919061379e565b6120f5565b005b3480156109e357600080fd5b506109fe60048036038101906109f9919061379e565b6121ed565b604051610a0b919061412f565b60405180910390f35b348015610a2057600080fd5b50610a3b6004803603810190610a369190613a5e565b612205565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b0857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b185750610b178261228b565b5b9050919050565b606060028054610b2e9061439a565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5a9061439a565b8015610ba75780601f10610b7c57610100808354040283529160200191610ba7565b820191906000526020600020905b815481529060010190602001808311610b8a57829003601f168201915b5050505050905090565b6000610bbc826122f5565b610bf2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c3882611682565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ca0576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cbf612343565b73ffffffffffffffffffffffffffffffffffffffff1614158015610cf15750610cef81610cea612343565b612048565b155b15610d28576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d3383838361234b565b505050565b60145481565b60115481565b610d4c612343565b73ffffffffffffffffffffffffffffffffffffffff16610d6a611896565b73ffffffffffffffffffffffffffffffffffffffff1614610dc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db79061400f565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6000610de76123fd565b6001546000540303905090565b610dff838383612406565b505050565b60026009541415610e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e41906140cf565b60405180910390fd5b6002600981905550600f60009054906101000a900460ff1615610ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e999061402f565b60405180910390fd5b601360009054906101000a900460ff1615610ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee99061408f565b60405180910390fd5b601754610efd610ddd565b84610f08919061421f565b1115610f49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4090613f8f565b60405180910390fd5b600083118015610f6d575060155483610f60610ddd565b610f6a919061421f565b11155b610fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa390613fef565b60405180910390fd5b6000601254141561105757601454831115610ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff3906140af565b60405180910390fd5b82600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461104b919061421f565b925050819055506112b7565b60125483111561109c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611093906140af565b60405180910390fd5b6001601254141561113757601254600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054846110f5919061421f565b1115611136576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112d90613fcf565b60405180910390fd5b5b600260125414156111d257601254600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484611190919061421f565b11156111d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c890613fcf565b60405180910390fd5b5b6003601254141561126d57601254600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548461122b919061421f565b111561126c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126390613fcf565b60405180910390fd5b5b61127782826128bc565b6112b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ad906140ef565b60405180910390fd5b5b6112c13384612980565b6001600981905550505050565b6112d6612343565b73ffffffffffffffffffffffffffffffffffffffff166112f4611896565b73ffffffffffffffffffffffffffffffffffffffff161461134a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113419061400f565b60405180910390fd5b6000611354611896565b73ffffffffffffffffffffffffffffffffffffffff164760405161137790613e9b565b60006040518083038185875af1925050503d80600081146113b4576040519150601f19603f3d011682016040523d82523d6000602084013e6113b9565b606091505b50509050806113c757600080fd5b50565b6113e583838360405180602001604052806000815250611e87565b505050565b6113f2612343565b73ffffffffffffffffffffffffffffffffffffffff16611410611896565b73ffffffffffffffffffffffffffffffffffffffff1614611466576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145d9061400f565b60405180910390fd5b601360009054906101000a900460ff1615601360006101000a81548160ff021916908315150217905550565b61149a612343565b73ffffffffffffffffffffffffffffffffffffffff166114b8611896565b73ffffffffffffffffffffffffffffffffffffffff161461150e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115059061400f565b60405180910390fd5b8060108190555050565b611520612343565b73ffffffffffffffffffffffffffffffffffffffff1661153e611896565b73ffffffffffffffffffffffffffffffffffffffff1614611594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158b9061400f565b60405180910390fd5b600061159e610ddd565b6017546115ab91906142a6565b90506115be6115b8611896565b82612980565b50565b6115c9612343565b73ffffffffffffffffffffffffffffffffffffffff166115e7611896565b73ffffffffffffffffffffffffffffffffffffffff161461163d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116349061400f565b60405180910390fd5b80600e9080519060200190611653929190613504565b5050565b600d6020528060005260406000206000915090505481565b600f60009054906101000a900460ff1681565b600061168d8261299e565b600001519050919050565b600e80546116a59061439a565b80601f01602080910402602001604051908101604052809291908181526020018280546116d19061439a565b801561171e5780601f106116f35761010080835404028352916020019161171e565b820191906000526020600020905b81548152906001019060200180831161170157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561178e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6117fe612343565b73ffffffffffffffffffffffffffffffffffffffff1661181c611896565b73ffffffffffffffffffffffffffffffffffffffff1614611872576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118699061400f565b60405180910390fd5b61187c6000612c2d565b565b600b6020528060005260406000206000915090505481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546118cf9061439a565b80601f01602080910402602001604051908101604052809291908181526020018280546118fb9061439a565b80156119485780601f1061191d57610100808354040283529160200191611948565b820191906000526020600020905b81548152906001019060200180831161192b57829003601f168201915b5050505050905090565b61195a612343565b73ffffffffffffffffffffffffffffffffffffffff16611978611896565b73ffffffffffffffffffffffffffffffffffffffff16146119ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c59061400f565b60405180910390fd5b8060128190555050565b6119e0612343565b73ffffffffffffffffffffffffffffffffffffffff166119fe611896565b73ffffffffffffffffffffffffffffffffffffffff1614611a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4b9061400f565b60405180910390fd5b8060158190555050565b60026009541415611aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9b906140cf565b60405180910390fd5b6002600981905550600f60009054906101000a900460ff1615611afc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af39061402f565b60405180910390fd5b601360009054906101000a900460ff16611b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b429061410f565b60405180910390fd5b6000600190506002821415611ba857600a9050601154341015611ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9a90613faf565b60405180910390fd5b611bee565b601054341015611bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be490613faf565b60405180910390fd5b5b600081118015611c12575060155481611c05610ddd565b611c0f919061421f565b11155b611c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4890613fef565b60405180910390fd5b611c5b3382612980565b50600160098190555050565b611c6f612343565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cd4576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611ce1612343565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d8e612343565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611dd39190613f17565b60405180910390a35050565b60105481565b611ded612343565b73ffffffffffffffffffffffffffffffffffffffff16611e0b611896565b73ffffffffffffffffffffffffffffffffffffffff1614611e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e589061400f565b60405180910390fd5b611e6b8183612980565b5050565b600a6020528060005260406000206000915090505481565b611e92848484612406565b611eb18373ffffffffffffffffffffffffffffffffffffffff16612cf3565b8015611ec65750611ec484848484612d16565b155b15611efd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60125481565b6060611f14826122f5565b611f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4a9061404f565b60405180910390fd5b6000611f5d612e76565b90506000815111611f7d5760405180602001604052806000815250611fa8565b80611f8784612f08565b604051602001611f98929190613e6c565b6040516020818303038152906040525b915050919050565b60165481565b60155481565b611fc4612343565b73ffffffffffffffffffffffffffffffffffffffff16611fe2611896565b73ffffffffffffffffffffffffffffffffffffffff1614612038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202f9061400f565b60405180910390fd5b8060188190555050565b60175481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60185481565b601360009054906101000a900460ff1681565b6120fd612343565b73ffffffffffffffffffffffffffffffffffffffff1661211b611896565b73ffffffffffffffffffffffffffffffffffffffff1614612171576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121689061400f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d890613f6f565b60405180910390fd5b6121ea81612c2d565b50565b600c6020528060005260406000206000915090505481565b61220d612343565b73ffffffffffffffffffffffffffffffffffffffff1661222b611896565b73ffffffffffffffffffffffffffffffffffffffff1614612281576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122789061400f565b60405180910390fd5b8060148190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816123006123fd565b1115801561230f575060005482105b801561233c575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006124118261299e565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461247c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661249d612343565b73ffffffffffffffffffffffffffffffffffffffff1614806124cc57506124cb856124c6612343565b612048565b5b8061251157506124da612343565b73ffffffffffffffffffffffffffffffffffffffff166124f984610bb1565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061254a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156125b1576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125be8585856001613069565b6125ca6000848761234b565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561284a57600054821461284957878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128b5858585600161306f565b5050505050565b600080336040516020016128d09190613e51565b604051602081830303815290604052805190602001209050612936848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060185483613075565b612975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296c9061406f565b60405180910390fd5b600191505092915050565b61299a82826040518060200160405280600081525061308c565b5050565b6129a661358a565b6000829050806129b46123fd565b111580156129c3575060005481105b15612bf6576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612bf457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ad8578092505050612c28565b5b600115612bf357818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612bee578092505050612c28565b612ad9565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d3c612343565b8786866040518563ffffffff1660e01b8152600401612d5e9493929190613ecb565b602060405180830381600087803b158015612d7857600080fd5b505af1925050508015612da957506040513d601f19601f82011682018060405250810190612da691906139e8565b60015b612e23573d8060008114612dd9576040519150601f19603f3d011682016040523d82523d6000602084013e612dde565b606091505b50600081511415612e1b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e8054612e859061439a565b80601f0160208091040260200160405190810160405280929190818152602001828054612eb19061439a565b8015612efe5780601f10612ed357610100808354040283529160200191612efe565b820191906000526020600020905b815481529060010190602001808311612ee157829003601f168201915b5050505050905090565b60606000821415612f50576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613064565b600082905060005b60008214612f82578080612f6b906143fd565b915050600a82612f7b9190614275565b9150612f58565b60008167ffffffffffffffff811115612f9e57612f9d614557565b5b6040519080825280601f01601f191660200182016040528015612fd05781602001600182028036833780820191505090505b5090505b6000851461305d57600182612fe991906142a6565b9150600a85612ff8919061446a565b6030613004919061421f565b60f81b81838151811061301a57613019614528565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130569190614275565b9450612fd4565b8093505050505b919050565b50505050565b50505050565b600082613082858461309e565b1490509392505050565b61309983838360016130f4565b505050565b60008082905060005b84518110156130e9576130d4828683815181106130c7576130c6614528565b5b60200260200101516134c2565b915080806130e1906143fd565b9150506130a7565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613161576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561319c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6131a96000868387613069565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561337357506133728773ffffffffffffffffffffffffffffffffffffffff16612cf3565b5b15613439575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46133e86000888480600101955088612d16565b61341e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561337957826000541461343457600080fd5b6134a5565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561343a575b8160008190555050506134bb600086838761306f565b5050505050565b60008183106134da576134d582846134ed565b6134e5565b6134e483836134ed565b5b905092915050565b600082600052816020526040600020905092915050565b8280546135109061439a565b90600052602060002090601f0160209004810192826135325760008555613579565b82601f1061354b57805160ff1916838001178555613579565b82800160010185558215613579579182015b8281111561357857825182559160200191906001019061355d565b5b50905061358691906135cd565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156135e65760008160009055506001016135ce565b5090565b60006135fd6135f88461416f565b61414a565b90508281526020810184848401111561361957613618614595565b5b613624848285614358565b509392505050565b600061363f61363a846141a0565b61414a565b90508281526020810184848401111561365b5761365a614595565b5b613666848285614358565b509392505050565b60008135905061367d816148c4565b92915050565b60008083601f8401126136995761369861458b565b5b8235905067ffffffffffffffff8111156136b6576136b5614586565b5b6020830191508360208202830111156136d2576136d1614590565b5b9250929050565b6000813590506136e8816148db565b92915050565b6000813590506136fd816148f2565b92915050565b60008135905061371281614909565b92915050565b60008151905061372781614909565b92915050565b600082601f8301126137425761374161458b565b5b81356137528482602086016135ea565b91505092915050565b600082601f8301126137705761376f61458b565b5b813561378084826020860161362c565b91505092915050565b60008135905061379881614920565b92915050565b6000602082840312156137b4576137b361459f565b5b60006137c28482850161366e565b91505092915050565b600080604083850312156137e2576137e161459f565b5b60006137f08582860161366e565b92505060206138018582860161366e565b9150509250929050565b6000806000606084860312156138245761382361459f565b5b60006138328682870161366e565b93505060206138438682870161366e565b925050604061385486828701613789565b9150509250925092565b600080600080608085870312156138785761387761459f565b5b60006138868782880161366e565b94505060206138978782880161366e565b93505060406138a887828801613789565b925050606085013567ffffffffffffffff8111156138c9576138c861459a565b5b6138d58782880161372d565b91505092959194509250565b600080604083850312156138f8576138f761459f565b5b60006139068582860161366e565b9250506020613917858286016136d9565b9150509250929050565b600080604083850312156139385761393761459f565b5b60006139468582860161366e565b925050602061395785828601613789565b9150509250929050565b6000602082840312156139775761397661459f565b5b6000613985848285016136d9565b91505092915050565b6000602082840312156139a4576139a361459f565b5b60006139b2848285016136ee565b91505092915050565b6000602082840312156139d1576139d061459f565b5b60006139df84828501613703565b91505092915050565b6000602082840312156139fe576139fd61459f565b5b6000613a0c84828501613718565b91505092915050565b600060208284031215613a2b57613a2a61459f565b5b600082013567ffffffffffffffff811115613a4957613a4861459a565b5b613a558482850161375b565b91505092915050565b600060208284031215613a7457613a7361459f565b5b6000613a8284828501613789565b91505092915050565b60008060408385031215613aa257613aa161459f565b5b6000613ab085828601613789565b9250506020613ac18582860161366e565b9150509250929050565b600080600060408486031215613ae457613ae361459f565b5b6000613af286828701613789565b935050602084013567ffffffffffffffff811115613b1357613b1261459a565b5b613b1f86828701613683565b92509250509250925092565b613b34816142da565b82525050565b613b4b613b46826142da565b614446565b82525050565b613b5a816142ec565b82525050565b613b69816142f8565b82525050565b6000613b7a826141d1565b613b8481856141e7565b9350613b94818560208601614367565b613b9d816145a4565b840191505092915050565b6000613bb3826141dc565b613bbd8185614203565b9350613bcd818560208601614367565b613bd6816145a4565b840191505092915050565b6000613bec826141dc565b613bf68185614214565b9350613c06818560208601614367565b80840191505092915050565b6000613c1f602683614203565b9150613c2a826145c2565b604082019050919050565b6000613c42600e83614203565b9150613c4d82614611565b602082019050919050565b6000613c65601383614203565b9150613c708261463a565b602082019050919050565b6000613c88601583614203565b9150613c9382614663565b602082019050919050565b6000613cab600f83614203565b9150613cb68261468c565b602082019050919050565b6000613cce600583614214565b9150613cd9826146b5565b600582019050919050565b6000613cf1602083614203565b9150613cfc826146de565b602082019050919050565b6000613d14601783614203565b9150613d1f82614707565b602082019050919050565b6000613d37602f83614203565b9150613d4282614730565b604082019050919050565b6000613d5a600f83614203565b9150613d658261477f565b602082019050919050565b6000613d7d6000836141f8565b9150613d88826147a8565b600082019050919050565b6000613da0601583614203565b9150613dab826147ab565b602082019050919050565b6000613dc3603583614203565b9150613dce826147d4565b604082019050919050565b6000613de6601f83614203565b9150613df182614823565b602082019050919050565b6000613e09602383614203565b9150613e148261484c565b604082019050919050565b6000613e2c601483614203565b9150613e378261489b565b602082019050919050565b613e4b8161434e565b82525050565b6000613e5d8284613b3a565b60148201915081905092915050565b6000613e788285613be1565b9150613e848284613be1565b9150613e8f82613cc1565b91508190509392505050565b6000613ea682613d70565b9150819050919050565b6000602082019050613ec56000830184613b2b565b92915050565b6000608082019050613ee06000830187613b2b565b613eed6020830186613b2b565b613efa6040830185613e42565b8181036060830152613f0c8184613b6f565b905095945050505050565b6000602082019050613f2c6000830184613b51565b92915050565b6000602082019050613f476000830184613b60565b92915050565b60006020820190508181036000830152613f678184613ba8565b905092915050565b60006020820190508181036000830152613f8881613c12565b9050919050565b60006020820190508181036000830152613fa881613c35565b9050919050565b60006020820190508181036000830152613fc881613c58565b9050919050565b60006020820190508181036000830152613fe881613c7b565b9050919050565b6000602082019050818103600083015261400881613c9e565b9050919050565b6000602082019050818103600083015261402881613ce4565b9050919050565b6000602082019050818103600083015261404881613d07565b9050919050565b6000602082019050818103600083015261406881613d2a565b9050919050565b6000602082019050818103600083015261408881613d4d565b9050919050565b600060208201905081810360008301526140a881613d93565b9050919050565b600060208201905081810360008301526140c881613db6565b9050919050565b600060208201905081810360008301526140e881613dd9565b9050919050565b6000602082019050818103600083015261410881613dfc565b9050919050565b6000602082019050818103600083015261412881613e1f565b9050919050565b60006020820190506141446000830184613e42565b92915050565b6000614154614165565b905061416082826143cc565b919050565b6000604051905090565b600067ffffffffffffffff82111561418a57614189614557565b5b614193826145a4565b9050602081019050919050565b600067ffffffffffffffff8211156141bb576141ba614557565b5b6141c4826145a4565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061422a8261434e565b91506142358361434e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561426a5761426961449b565b5b828201905092915050565b60006142808261434e565b915061428b8361434e565b92508261429b5761429a6144ca565b5b828204905092915050565b60006142b18261434e565b91506142bc8361434e565b9250828210156142cf576142ce61449b565b5b828203905092915050565b60006142e58261432e565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561438557808201518184015260208101905061436a565b83811115614394576000848401525b50505050565b600060028204905060018216806143b257607f821691505b602082108114156143c6576143c56144f9565b5b50919050565b6143d5826145a4565b810181811067ffffffffffffffff821117156143f4576143f3614557565b5b80604052505050565b60006144088261434e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561443b5761443a61449b565b5b600182019050919050565b600061445182614458565b9050919050565b6000614463826145b5565b9050919050565b60006144758261434e565b91506144808361434e565b9250826144905761448f6144ca565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4c696d6974206578636565646564000000000000000000000000000000000000600082015250565b7f496e73756666696369656e742046756e64732100000000000000000000000000600082015250565b7f43616e2774206d696e742074686973206d756368210000000000000000000000600082015250565b7f496e76616c696420616d6f756e74210000000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f496e636f72726563742070726f6f660000000000000000000000000000000000600082015250565b50565b7f50616964206d696e742068617320737461727465640000000000000000000000600082015250565b7f596f75277265206e6f7420616c6c6f77656420746f206d696e74206d6f72652060008201527f7468616e206d6178204d696e7420416d6f756e74210000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f596f75277265206e6f742072656769737465726420666f72207468697320706860008201527f6173650000000000000000000000000000000000000000000000000000000000602082015250565b7f50616964206d696e7420697320636c6f73656421000000000000000000000000600082015250565b6148cd816142da565b81146148d857600080fd5b50565b6148e4816142ec565b81146148ef57600080fd5b50565b6148fb816142f8565b811461490657600080fd5b50565b61491281614302565b811461491d57600080fd5b50565b6149298161434e565b811461493457600080fd5b5056fea2646970667358221220407cece874c7d35fd9a29dfb2792e8160814ab777c29b335839e4f6ed39eadf264736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102725760003560e01c806373fc16ad1161014f578063c6ee20d2116100c1578063e985e9c51161007a578063e985e9c51461091b578063ebf0c71714610958578063f0238a1114610983578063f2fde38b146109ae578063fa6626b2146109d7578063fbdb849414610a1457610272565b8063c6ee20d214610809578063c87b56dd14610834578063d094363d14610871578063d5abeb011461089c578063dab5f340146108c7578063e150007e146108f057610272565b8063a0712d6811610113578063a0712d681461070a578063a22cb46514610726578063a945bf801461074f578063aed380151461077a578063b5b1cd7c146107a3578063b88d4fde146107e057610272565b806373fc16ad146106255780638da5cb5b1461066257806395d89b411461068d5780639d86f719146106b85780639ec571d5146106e157610272565b806342842e0e116101e85780635a089b30116101ac5780635a089b30146105015780635c975abb1461053e5780636352211e146105695780636c0360eb146105a657806370a08231146105d1578063715018a61461060e57610272565b806342842e0e1461045857806342dc9b9d1461048157806344a0d68a1461049857806346bc7b06146104c157806355f804b3146104d857610272565b8063166a7d401161023a578063166a7d401461037057806316c38b3c1461039b57806318160ddd146103c457806323b872dd146103ef578063341927ea146104185780633ccfd60b1461044157610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063095ea7b31461031c5780630caea53b14610345575b600080fd5b34801561028357600080fd5b5061029e600480360381019061029991906139bb565b610a3d565b6040516102ab9190613f17565b60405180910390f35b3480156102c057600080fd5b506102c9610b1f565b6040516102d69190613f4d565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613a5e565b610bb1565b6040516103139190613eb0565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e9190613921565b610c2d565b005b34801561035157600080fd5b5061035a610d38565b604051610367919061412f565b60405180910390f35b34801561037c57600080fd5b50610385610d3e565b604051610392919061412f565b60405180910390f35b3480156103a757600080fd5b506103c260048036038101906103bd9190613961565b610d44565b005b3480156103d057600080fd5b506103d9610ddd565b6040516103e6919061412f565b60405180910390f35b3480156103fb57600080fd5b506104166004803603810190610411919061380b565b610df4565b005b34801561042457600080fd5b5061043f600480360381019061043a9190613acb565b610e04565b005b34801561044d57600080fd5b506104566112ce565b005b34801561046457600080fd5b5061047f600480360381019061047a919061380b565b6113ca565b005b34801561048d57600080fd5b506104966113ea565b005b3480156104a457600080fd5b506104bf60048036038101906104ba9190613a5e565b611492565b005b3480156104cd57600080fd5b506104d6611518565b005b3480156104e457600080fd5b506104ff60048036038101906104fa9190613a15565b6115c1565b005b34801561050d57600080fd5b506105286004803603810190610523919061379e565b611657565b604051610535919061412f565b60405180910390f35b34801561054a57600080fd5b5061055361166f565b6040516105609190613f17565b60405180910390f35b34801561057557600080fd5b50610590600480360381019061058b9190613a5e565b611682565b60405161059d9190613eb0565b60405180910390f35b3480156105b257600080fd5b506105bb611698565b6040516105c89190613f4d565b60405180910390f35b3480156105dd57600080fd5b506105f860048036038101906105f3919061379e565b611726565b604051610605919061412f565b60405180910390f35b34801561061a57600080fd5b506106236117f6565b005b34801561063157600080fd5b5061064c6004803603810190610647919061379e565b61187e565b604051610659919061412f565b60405180910390f35b34801561066e57600080fd5b50610677611896565b6040516106849190613eb0565b60405180910390f35b34801561069957600080fd5b506106a26118c0565b6040516106af9190613f4d565b60405180910390f35b3480156106c457600080fd5b506106df60048036038101906106da9190613a5e565b611952565b005b3480156106ed57600080fd5b5061070860048036038101906107039190613a5e565b6119d8565b005b610724600480360381019061071f9190613a5e565b611a5e565b005b34801561073257600080fd5b5061074d600480360381019061074891906138e1565b611c67565b005b34801561075b57600080fd5b50610764611ddf565b604051610771919061412f565b60405180910390f35b34801561078657600080fd5b506107a1600480360381019061079c9190613a8b565b611de5565b005b3480156107af57600080fd5b506107ca60048036038101906107c5919061379e565b611e6f565b6040516107d7919061412f565b60405180910390f35b3480156107ec57600080fd5b506108076004803603810190610802919061385e565b611e87565b005b34801561081557600080fd5b5061081e611f03565b60405161082b919061412f565b60405180910390f35b34801561084057600080fd5b5061085b60048036038101906108569190613a5e565b611f09565b6040516108689190613f4d565b60405180910390f35b34801561087d57600080fd5b50610886611fb0565b604051610893919061412f565b60405180910390f35b3480156108a857600080fd5b506108b1611fb6565b6040516108be919061412f565b60405180910390f35b3480156108d357600080fd5b506108ee60048036038101906108e9919061398e565b611fbc565b005b3480156108fc57600080fd5b50610905612042565b604051610912919061412f565b60405180910390f35b34801561092757600080fd5b50610942600480360381019061093d91906137cb565b612048565b60405161094f9190613f17565b60405180910390f35b34801561096457600080fd5b5061096d6120dc565b60405161097a9190613f32565b60405180910390f35b34801561098f57600080fd5b506109986120e2565b6040516109a59190613f17565b60405180910390f35b3480156109ba57600080fd5b506109d560048036038101906109d0919061379e565b6120f5565b005b3480156109e357600080fd5b506109fe60048036038101906109f9919061379e565b6121ed565b604051610a0b919061412f565b60405180910390f35b348015610a2057600080fd5b50610a3b6004803603810190610a369190613a5e565b612205565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b0857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b185750610b178261228b565b5b9050919050565b606060028054610b2e9061439a565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5a9061439a565b8015610ba75780601f10610b7c57610100808354040283529160200191610ba7565b820191906000526020600020905b815481529060010190602001808311610b8a57829003601f168201915b5050505050905090565b6000610bbc826122f5565b610bf2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c3882611682565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ca0576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cbf612343565b73ffffffffffffffffffffffffffffffffffffffff1614158015610cf15750610cef81610cea612343565b612048565b155b15610d28576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d3383838361234b565b505050565b60145481565b60115481565b610d4c612343565b73ffffffffffffffffffffffffffffffffffffffff16610d6a611896565b73ffffffffffffffffffffffffffffffffffffffff1614610dc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db79061400f565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6000610de76123fd565b6001546000540303905090565b610dff838383612406565b505050565b60026009541415610e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e41906140cf565b60405180910390fd5b6002600981905550600f60009054906101000a900460ff1615610ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e999061402f565b60405180910390fd5b601360009054906101000a900460ff1615610ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee99061408f565b60405180910390fd5b601754610efd610ddd565b84610f08919061421f565b1115610f49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4090613f8f565b60405180910390fd5b600083118015610f6d575060155483610f60610ddd565b610f6a919061421f565b11155b610fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa390613fef565b60405180910390fd5b6000601254141561105757601454831115610ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff3906140af565b60405180910390fd5b82600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461104b919061421f565b925050819055506112b7565b60125483111561109c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611093906140af565b60405180910390fd5b6001601254141561113757601254600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054846110f5919061421f565b1115611136576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112d90613fcf565b60405180910390fd5b5b600260125414156111d257601254600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484611190919061421f565b11156111d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c890613fcf565b60405180910390fd5b5b6003601254141561126d57601254600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548461122b919061421f565b111561126c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126390613fcf565b60405180910390fd5b5b61127782826128bc565b6112b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ad906140ef565b60405180910390fd5b5b6112c13384612980565b6001600981905550505050565b6112d6612343565b73ffffffffffffffffffffffffffffffffffffffff166112f4611896565b73ffffffffffffffffffffffffffffffffffffffff161461134a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113419061400f565b60405180910390fd5b6000611354611896565b73ffffffffffffffffffffffffffffffffffffffff164760405161137790613e9b565b60006040518083038185875af1925050503d80600081146113b4576040519150601f19603f3d011682016040523d82523d6000602084013e6113b9565b606091505b50509050806113c757600080fd5b50565b6113e583838360405180602001604052806000815250611e87565b505050565b6113f2612343565b73ffffffffffffffffffffffffffffffffffffffff16611410611896565b73ffffffffffffffffffffffffffffffffffffffff1614611466576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145d9061400f565b60405180910390fd5b601360009054906101000a900460ff1615601360006101000a81548160ff021916908315150217905550565b61149a612343565b73ffffffffffffffffffffffffffffffffffffffff166114b8611896565b73ffffffffffffffffffffffffffffffffffffffff161461150e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115059061400f565b60405180910390fd5b8060108190555050565b611520612343565b73ffffffffffffffffffffffffffffffffffffffff1661153e611896565b73ffffffffffffffffffffffffffffffffffffffff1614611594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158b9061400f565b60405180910390fd5b600061159e610ddd565b6017546115ab91906142a6565b90506115be6115b8611896565b82612980565b50565b6115c9612343565b73ffffffffffffffffffffffffffffffffffffffff166115e7611896565b73ffffffffffffffffffffffffffffffffffffffff161461163d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116349061400f565b60405180910390fd5b80600e9080519060200190611653929190613504565b5050565b600d6020528060005260406000206000915090505481565b600f60009054906101000a900460ff1681565b600061168d8261299e565b600001519050919050565b600e80546116a59061439a565b80601f01602080910402602001604051908101604052809291908181526020018280546116d19061439a565b801561171e5780601f106116f35761010080835404028352916020019161171e565b820191906000526020600020905b81548152906001019060200180831161170157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561178e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6117fe612343565b73ffffffffffffffffffffffffffffffffffffffff1661181c611896565b73ffffffffffffffffffffffffffffffffffffffff1614611872576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118699061400f565b60405180910390fd5b61187c6000612c2d565b565b600b6020528060005260406000206000915090505481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546118cf9061439a565b80601f01602080910402602001604051908101604052809291908181526020018280546118fb9061439a565b80156119485780601f1061191d57610100808354040283529160200191611948565b820191906000526020600020905b81548152906001019060200180831161192b57829003601f168201915b5050505050905090565b61195a612343565b73ffffffffffffffffffffffffffffffffffffffff16611978611896565b73ffffffffffffffffffffffffffffffffffffffff16146119ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c59061400f565b60405180910390fd5b8060128190555050565b6119e0612343565b73ffffffffffffffffffffffffffffffffffffffff166119fe611896565b73ffffffffffffffffffffffffffffffffffffffff1614611a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4b9061400f565b60405180910390fd5b8060158190555050565b60026009541415611aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9b906140cf565b60405180910390fd5b6002600981905550600f60009054906101000a900460ff1615611afc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af39061402f565b60405180910390fd5b601360009054906101000a900460ff16611b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b429061410f565b60405180910390fd5b6000600190506002821415611ba857600a9050601154341015611ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9a90613faf565b60405180910390fd5b611bee565b601054341015611bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be490613faf565b60405180910390fd5b5b600081118015611c12575060155481611c05610ddd565b611c0f919061421f565b11155b611c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4890613fef565b60405180910390fd5b611c5b3382612980565b50600160098190555050565b611c6f612343565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cd4576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611ce1612343565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d8e612343565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611dd39190613f17565b60405180910390a35050565b60105481565b611ded612343565b73ffffffffffffffffffffffffffffffffffffffff16611e0b611896565b73ffffffffffffffffffffffffffffffffffffffff1614611e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e589061400f565b60405180910390fd5b611e6b8183612980565b5050565b600a6020528060005260406000206000915090505481565b611e92848484612406565b611eb18373ffffffffffffffffffffffffffffffffffffffff16612cf3565b8015611ec65750611ec484848484612d16565b155b15611efd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60125481565b6060611f14826122f5565b611f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4a9061404f565b60405180910390fd5b6000611f5d612e76565b90506000815111611f7d5760405180602001604052806000815250611fa8565b80611f8784612f08565b604051602001611f98929190613e6c565b6040516020818303038152906040525b915050919050565b60165481565b60155481565b611fc4612343565b73ffffffffffffffffffffffffffffffffffffffff16611fe2611896565b73ffffffffffffffffffffffffffffffffffffffff1614612038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202f9061400f565b60405180910390fd5b8060188190555050565b60175481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60185481565b601360009054906101000a900460ff1681565b6120fd612343565b73ffffffffffffffffffffffffffffffffffffffff1661211b611896565b73ffffffffffffffffffffffffffffffffffffffff1614612171576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121689061400f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d890613f6f565b60405180910390fd5b6121ea81612c2d565b50565b600c6020528060005260406000206000915090505481565b61220d612343565b73ffffffffffffffffffffffffffffffffffffffff1661222b611896565b73ffffffffffffffffffffffffffffffffffffffff1614612281576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122789061400f565b60405180910390fd5b8060148190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816123006123fd565b1115801561230f575060005482105b801561233c575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006124118261299e565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461247c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661249d612343565b73ffffffffffffffffffffffffffffffffffffffff1614806124cc57506124cb856124c6612343565b612048565b5b8061251157506124da612343565b73ffffffffffffffffffffffffffffffffffffffff166124f984610bb1565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061254a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156125b1576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125be8585856001613069565b6125ca6000848761234b565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561284a57600054821461284957878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128b5858585600161306f565b5050505050565b600080336040516020016128d09190613e51565b604051602081830303815290604052805190602001209050612936848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060185483613075565b612975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296c9061406f565b60405180910390fd5b600191505092915050565b61299a82826040518060200160405280600081525061308c565b5050565b6129a661358a565b6000829050806129b46123fd565b111580156129c3575060005481105b15612bf6576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612bf457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ad8578092505050612c28565b5b600115612bf357818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612bee578092505050612c28565b612ad9565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d3c612343565b8786866040518563ffffffff1660e01b8152600401612d5e9493929190613ecb565b602060405180830381600087803b158015612d7857600080fd5b505af1925050508015612da957506040513d601f19601f82011682018060405250810190612da691906139e8565b60015b612e23573d8060008114612dd9576040519150601f19603f3d011682016040523d82523d6000602084013e612dde565b606091505b50600081511415612e1b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e8054612e859061439a565b80601f0160208091040260200160405190810160405280929190818152602001828054612eb19061439a565b8015612efe5780601f10612ed357610100808354040283529160200191612efe565b820191906000526020600020905b815481529060010190602001808311612ee157829003601f168201915b5050505050905090565b60606000821415612f50576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613064565b600082905060005b60008214612f82578080612f6b906143fd565b915050600a82612f7b9190614275565b9150612f58565b60008167ffffffffffffffff811115612f9e57612f9d614557565b5b6040519080825280601f01601f191660200182016040528015612fd05781602001600182028036833780820191505090505b5090505b6000851461305d57600182612fe991906142a6565b9150600a85612ff8919061446a565b6030613004919061421f565b60f81b81838151811061301a57613019614528565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130569190614275565b9450612fd4565b8093505050505b919050565b50505050565b50505050565b600082613082858461309e565b1490509392505050565b61309983838360016130f4565b505050565b60008082905060005b84518110156130e9576130d4828683815181106130c7576130c6614528565b5b60200260200101516134c2565b915080806130e1906143fd565b9150506130a7565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613161576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561319c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6131a96000868387613069565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561337357506133728773ffffffffffffffffffffffffffffffffffffffff16612cf3565b5b15613439575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46133e86000888480600101955088612d16565b61341e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561337957826000541461343457600080fd5b6134a5565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561343a575b8160008190555050506134bb600086838761306f565b5050505050565b60008183106134da576134d582846134ed565b6134e5565b6134e483836134ed565b5b905092915050565b600082600052816020526040600020905092915050565b8280546135109061439a565b90600052602060002090601f0160209004810192826135325760008555613579565b82601f1061354b57805160ff1916838001178555613579565b82800160010185558215613579579182015b8281111561357857825182559160200191906001019061355d565b5b50905061358691906135cd565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156135e65760008160009055506001016135ce565b5090565b60006135fd6135f88461416f565b61414a565b90508281526020810184848401111561361957613618614595565b5b613624848285614358565b509392505050565b600061363f61363a846141a0565b61414a565b90508281526020810184848401111561365b5761365a614595565b5b613666848285614358565b509392505050565b60008135905061367d816148c4565b92915050565b60008083601f8401126136995761369861458b565b5b8235905067ffffffffffffffff8111156136b6576136b5614586565b5b6020830191508360208202830111156136d2576136d1614590565b5b9250929050565b6000813590506136e8816148db565b92915050565b6000813590506136fd816148f2565b92915050565b60008135905061371281614909565b92915050565b60008151905061372781614909565b92915050565b600082601f8301126137425761374161458b565b5b81356137528482602086016135ea565b91505092915050565b600082601f8301126137705761376f61458b565b5b813561378084826020860161362c565b91505092915050565b60008135905061379881614920565b92915050565b6000602082840312156137b4576137b361459f565b5b60006137c28482850161366e565b91505092915050565b600080604083850312156137e2576137e161459f565b5b60006137f08582860161366e565b92505060206138018582860161366e565b9150509250929050565b6000806000606084860312156138245761382361459f565b5b60006138328682870161366e565b93505060206138438682870161366e565b925050604061385486828701613789565b9150509250925092565b600080600080608085870312156138785761387761459f565b5b60006138868782880161366e565b94505060206138978782880161366e565b93505060406138a887828801613789565b925050606085013567ffffffffffffffff8111156138c9576138c861459a565b5b6138d58782880161372d565b91505092959194509250565b600080604083850312156138f8576138f761459f565b5b60006139068582860161366e565b9250506020613917858286016136d9565b9150509250929050565b600080604083850312156139385761393761459f565b5b60006139468582860161366e565b925050602061395785828601613789565b9150509250929050565b6000602082840312156139775761397661459f565b5b6000613985848285016136d9565b91505092915050565b6000602082840312156139a4576139a361459f565b5b60006139b2848285016136ee565b91505092915050565b6000602082840312156139d1576139d061459f565b5b60006139df84828501613703565b91505092915050565b6000602082840312156139fe576139fd61459f565b5b6000613a0c84828501613718565b91505092915050565b600060208284031215613a2b57613a2a61459f565b5b600082013567ffffffffffffffff811115613a4957613a4861459a565b5b613a558482850161375b565b91505092915050565b600060208284031215613a7457613a7361459f565b5b6000613a8284828501613789565b91505092915050565b60008060408385031215613aa257613aa161459f565b5b6000613ab085828601613789565b9250506020613ac18582860161366e565b9150509250929050565b600080600060408486031215613ae457613ae361459f565b5b6000613af286828701613789565b935050602084013567ffffffffffffffff811115613b1357613b1261459a565b5b613b1f86828701613683565b92509250509250925092565b613b34816142da565b82525050565b613b4b613b46826142da565b614446565b82525050565b613b5a816142ec565b82525050565b613b69816142f8565b82525050565b6000613b7a826141d1565b613b8481856141e7565b9350613b94818560208601614367565b613b9d816145a4565b840191505092915050565b6000613bb3826141dc565b613bbd8185614203565b9350613bcd818560208601614367565b613bd6816145a4565b840191505092915050565b6000613bec826141dc565b613bf68185614214565b9350613c06818560208601614367565b80840191505092915050565b6000613c1f602683614203565b9150613c2a826145c2565b604082019050919050565b6000613c42600e83614203565b9150613c4d82614611565b602082019050919050565b6000613c65601383614203565b9150613c708261463a565b602082019050919050565b6000613c88601583614203565b9150613c9382614663565b602082019050919050565b6000613cab600f83614203565b9150613cb68261468c565b602082019050919050565b6000613cce600583614214565b9150613cd9826146b5565b600582019050919050565b6000613cf1602083614203565b9150613cfc826146de565b602082019050919050565b6000613d14601783614203565b9150613d1f82614707565b602082019050919050565b6000613d37602f83614203565b9150613d4282614730565b604082019050919050565b6000613d5a600f83614203565b9150613d658261477f565b602082019050919050565b6000613d7d6000836141f8565b9150613d88826147a8565b600082019050919050565b6000613da0601583614203565b9150613dab826147ab565b602082019050919050565b6000613dc3603583614203565b9150613dce826147d4565b604082019050919050565b6000613de6601f83614203565b9150613df182614823565b602082019050919050565b6000613e09602383614203565b9150613e148261484c565b604082019050919050565b6000613e2c601483614203565b9150613e378261489b565b602082019050919050565b613e4b8161434e565b82525050565b6000613e5d8284613b3a565b60148201915081905092915050565b6000613e788285613be1565b9150613e848284613be1565b9150613e8f82613cc1565b91508190509392505050565b6000613ea682613d70565b9150819050919050565b6000602082019050613ec56000830184613b2b565b92915050565b6000608082019050613ee06000830187613b2b565b613eed6020830186613b2b565b613efa6040830185613e42565b8181036060830152613f0c8184613b6f565b905095945050505050565b6000602082019050613f2c6000830184613b51565b92915050565b6000602082019050613f476000830184613b60565b92915050565b60006020820190508181036000830152613f678184613ba8565b905092915050565b60006020820190508181036000830152613f8881613c12565b9050919050565b60006020820190508181036000830152613fa881613c35565b9050919050565b60006020820190508181036000830152613fc881613c58565b9050919050565b60006020820190508181036000830152613fe881613c7b565b9050919050565b6000602082019050818103600083015261400881613c9e565b9050919050565b6000602082019050818103600083015261402881613ce4565b9050919050565b6000602082019050818103600083015261404881613d07565b9050919050565b6000602082019050818103600083015261406881613d2a565b9050919050565b6000602082019050818103600083015261408881613d4d565b9050919050565b600060208201905081810360008301526140a881613d93565b9050919050565b600060208201905081810360008301526140c881613db6565b9050919050565b600060208201905081810360008301526140e881613dd9565b9050919050565b6000602082019050818103600083015261410881613dfc565b9050919050565b6000602082019050818103600083015261412881613e1f565b9050919050565b60006020820190506141446000830184613e42565b92915050565b6000614154614165565b905061416082826143cc565b919050565b6000604051905090565b600067ffffffffffffffff82111561418a57614189614557565b5b614193826145a4565b9050602081019050919050565b600067ffffffffffffffff8211156141bb576141ba614557565b5b6141c4826145a4565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061422a8261434e565b91506142358361434e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561426a5761426961449b565b5b828201905092915050565b60006142808261434e565b915061428b8361434e565b92508261429b5761429a6144ca565b5b828204905092915050565b60006142b18261434e565b91506142bc8361434e565b9250828210156142cf576142ce61449b565b5b828203905092915050565b60006142e58261432e565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561438557808201518184015260208101905061436a565b83811115614394576000848401525b50505050565b600060028204905060018216806143b257607f821691505b602082108114156143c6576143c56144f9565b5b50919050565b6143d5826145a4565b810181811067ffffffffffffffff821117156143f4576143f3614557565b5b80604052505050565b60006144088261434e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561443b5761443a61449b565b5b600182019050919050565b600061445182614458565b9050919050565b6000614463826145b5565b9050919050565b60006144758261434e565b91506144808361434e565b9250826144905761448f6144ca565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4c696d6974206578636565646564000000000000000000000000000000000000600082015250565b7f496e73756666696369656e742046756e64732100000000000000000000000000600082015250565b7f43616e2774206d696e742074686973206d756368210000000000000000000000600082015250565b7f496e76616c696420616d6f756e74210000000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f496e636f72726563742070726f6f660000000000000000000000000000000000600082015250565b50565b7f50616964206d696e742068617320737461727465640000000000000000000000600082015250565b7f596f75277265206e6f7420616c6c6f77656420746f206d696e74206d6f72652060008201527f7468616e206d6178204d696e7420416d6f756e74210000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f596f75277265206e6f742072656769737465726420666f72207468697320706860008201527f6173650000000000000000000000000000000000000000000000000000000000602082015250565b7f50616964206d696e7420697320636c6f73656421000000000000000000000000600082015250565b6148cd816142da565b81146148d857600080fd5b50565b6148e4816142ec565b81146148ef57600080fd5b50565b6148fb816142f8565b811461490657600080fd5b50565b61491281614302565b811461491d57600080fd5b50565b6149298161434e565b811461493457600080fd5b5056fea2646970667358221220407cece874c7d35fd9a29dfb2792e8160814ab777c29b335839e4f6ed39eadf264736f6c63430008070033

Deployed Bytecode Sourcemap

56587:5512:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38784:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41897:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43400:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42963:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57142:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57017:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61094:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38033:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44265:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58095:1321;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61683:413;;;;;;;;;;;;;:::i;:::-;;44506:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61185:84;;;;;;;;;;;;;:::i;:::-;;60753:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61515:160;;;;;;;;;;;;;:::i;:::-;;61275:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56854:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56937:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41705:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56907:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39153:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16522:103;;;;;;;;;;;;;:::i;:::-;;56750:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15871:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42066:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60630:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60991:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57523:566;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43676:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56970:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61389:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56695:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44762:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57067:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59896:634;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57221:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57183:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60536:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57263:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44034:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57306:88;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57107:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16780:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56801:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60869:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38784:305;38886:4;38938:25;38923:40;;;:11;:40;;;;:105;;;;38995:33;38980:48;;;:11;:48;;;;38923:105;:158;;;;39045:36;39069:11;39045:23;:36::i;:::-;38923:158;38903:178;;38784:305;;;:::o;41897:100::-;41951:13;41984:5;41977:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41897:100;:::o;43400:204::-;43468:7;43493:16;43501:7;43493;:16::i;:::-;43488:64;;43518:34;;;;;;;;;;;;;;43488:64;43572:15;:24;43588:7;43572:24;;;;;;;;;;;;;;;;;;;;;43565:31;;43400:204;;;:::o;42963:371::-;43036:13;43052:24;43068:7;43052:15;:24::i;:::-;43036:40;;43097:5;43091:11;;:2;:11;;;43087:48;;;43111:24;;;;;;;;;;;;;;43087:48;43168:5;43152:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;43178:37;43195:5;43202:12;:10;:12::i;:::-;43178:16;:37::i;:::-;43177:38;43152:63;43148:138;;;43239:35;;;;;;;;;;;;;;43148:138;43298:28;43307:2;43311:7;43320:5;43298:8;:28::i;:::-;43025:309;42963:371;;:::o;57142:34::-;;;;:::o;57017:43::-;;;;:::o;61094:85::-;16102:12;:10;:12::i;:::-;16091:23;;:7;:5;:7::i;:::-;:23;;;16083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61165:6:::1;61156;;:15;;;;;;;;;;;;;;;;;;61094:85:::0;:::o;38033:303::-;38077:7;38302:15;:13;:15::i;:::-;38287:12;;38271:13;;:28;:46;38264:53;;38033:303;:::o;44265:170::-;44399:28;44409:4;44415:2;44419:7;44399:9;:28::i;:::-;44265:170;;;:::o;58095:1321::-;10684:1;11282:7;;:19;;11274:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10684:1;11415:7;:18;;;;58200:6:::1;;;;;;;;;;;58199:7;58191:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;58254:8;;;;;;;;;;;58253:9;58245:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;58335:14;;58318:13;:11;:13::i;:::-;58307:8;:24;;;;:::i;:::-;:42;;58299:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;58398:1;58387:8;:12;:53;;;;;58431:9;;58419:8;58403:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;58387:53;58379:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;58492:1;58474:14;;:19;58471:896;;;58541:15;;58529:8;:27;;58521:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;58658:8;58629:13;:25;58643:10;58629:25;;;;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;58471:896;;;58730:14;;58718:8;:26;;58710:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;58838:1;58820:14;;:19;58817:143;;;58904:14;;58879:9;:21;58889:10;58879:21;;;;;;;;;;;;;;;;58868:8;:32;;;;:::i;:::-;:50;;58860:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;58817:143;58995:1;58977:14;;:19;58974:145;;;59063:14;;59036:11;:23;59048:10;59036:23;;;;;;;;;;;;;;;;59025:8;:34;;;;:::i;:::-;:52;;59017:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;58974:145;59154:1;59136:14;;:19;59133:143;;;59220:14;;59195:9;:21;59205:10;59195:21;;;;;;;;;;;;;;;;59184:8;:32;;;;:::i;:::-;:50;;59176:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;59133:143;59298:15;59306:6;;59298:7;:15::i;:::-;59290:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;58471:896;59377:31;59387:10;59399:8;59377:9;:31::i;:::-;10640:1:::0;11594:7;:22;;;;58095:1321;;;:::o;61683:413::-;16102:12;:10;:12::i;:::-;16091:23;;:7;:5;:7::i;:::-;:23;;;16083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61908:7:::1;61929;:5;:7::i;:::-;61921:21;;61950;61921:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61907:69;;;61995:2;61987:11;;;::::0;::::1;;61720:376;61683:413::o:0;44506:185::-;44644:39;44661:4;44667:2;44671:7;44644:39;;;;;;;;;;;;:16;:39::i;:::-;44506:185;;;:::o;61185:84::-;16102:12;:10;:12::i;:::-;16091:23;;:7;:5;:7::i;:::-;:23;;;16083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61253:8:::1;;;;;;;;;;;61252:9;61241:8;;:20;;;;;;;;;;;;;;;;;;61185:84::o:0;60753:107::-;16102:12;:10;:12::i;:::-;16091:23;;:7;:5;:7::i;:::-;:23;;;16083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60838:14:::1;60824:11;:28;;;;60753:107:::0;:::o;61515:160::-;16102:12;:10;:12::i;:::-;16091:23;;:7;:5;:7::i;:::-;:23;;;16083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61577:14:::1;61611:13;:11;:13::i;:::-;61594:14;;:30;;;;:::i;:::-;61577:47;;61635:32;61645:13;:11;:13::i;:::-;61660:6;61635:9;:32::i;:::-;61566:109;61515:160::o:0;61275:106::-;16102:12;:10;:12::i;:::-;16091:23;;:7;:5;:7::i;:::-;:23;;;16083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61362:11:::1;61352:7;:21;;;;;;;;;;;;:::i;:::-;;61275:106:::0;:::o;56854:44::-;;;;;;;;;;;;;;;;;:::o;56937:26::-;;;;;;;;;;;;;:::o;41705:125::-;41769:7;41796:21;41809:7;41796:12;:21::i;:::-;:26;;;41789:33;;41705:125;;;:::o;56907:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39153:206::-;39217:7;39258:1;39241:19;;:5;:19;;;39237:60;;;39269:28;;;;;;;;;;;;;;39237:60;39323:12;:19;39336:5;39323:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;39315:36;;39308:43;;39153:206;;;:::o;16522:103::-;16102:12;:10;:12::i;:::-;16091:23;;:7;:5;:7::i;:::-;:23;;;16083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16587:30:::1;16614:1;16587:18;:30::i;:::-;16522:103::o:0;56750:44::-;;;;;;;;;;;;;;;;;:::o;15871:87::-;15917:7;15944:6;;;;;;;;;;;15937:13;;15871:87;:::o;42066:104::-;42122:13;42155:7;42148:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42066:104;:::o;60630:117::-;16102:12;:10;:12::i;:::-;16091:23;;:7;:5;:7::i;:::-;:23;;;16083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60729:10:::1;60712:14;:27;;;;60630:117:::0;:::o;60991:95::-;16102:12;:10;:12::i;:::-;16091:23;;:7;:5;:7::i;:::-;:23;;;16083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61071:7:::1;61059:9;:19;;;;60991:95:::0;:::o;57523:566::-;10684:1;11282:7;;:19;;11274:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10684:1;11415:7;:18;;;;57603:6:::1;;;;;;;;;;;57602:7;57594:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;57656:8;;;;;;;;;;;57648:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;57700:16;57719:1;57700:20;;57744:1;57734:6;:11;57731:217;;;57773:2;57762:13;;57811:16;;57798:9;:29;;57790:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;57731:217;;;57901:11;;57888:9;:24;;57880:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;57731:217;57977:1;57966:8;:12;:53;;;;;58010:9;;57998:8;57982:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;57966:53;57958:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;58050:31;58060:10;58072:8;58050:9;:31::i;:::-;57583:506;10640:1:::0;11594:7;:22;;;;57523:566;:::o;43676:287::-;43787:12;:10;:12::i;:::-;43775:24;;:8;:24;;;43771:54;;;43808:17;;;;;;;;;;;;;;43771:54;43883:8;43838:18;:32;43857:12;:10;:12::i;:::-;43838:32;;;;;;;;;;;;;;;:42;43871:8;43838:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;43936:8;43907:48;;43922:12;:10;:12::i;:::-;43907:48;;;43946:8;43907:48;;;;;;:::i;:::-;;;;;;;;43676:287;;:::o;56970:40::-;;;;:::o;61389:120::-;16102:12;:10;:12::i;:::-;16091:23;;:7;:5;:7::i;:::-;:23;;;16083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61472:29:::1;61482:8;61492;61472:9;:29::i;:::-;61389:120:::0;;:::o;56695:48::-;;;;;;;;;;;;;;;;;:::o;44762:369::-;44929:28;44939:4;44945:2;44949:7;44929:9;:28::i;:::-;44972:15;:2;:13;;;:15::i;:::-;:76;;;;;44992:56;45023:4;45029:2;45033:7;45042:5;44992:30;:56::i;:::-;44991:57;44972:76;44968:156;;;45072:40;;;;;;;;;;;;;;44968:156;44762:369;;;;:::o;57067:33::-;;;;:::o;59896:634::-;60014:13;60067:16;60075:7;60067;:16::i;:::-;60045:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;60169:28;60200:10;:8;:10::i;:::-;60169:41;;60272:1;60247:14;60241:28;:32;:281;;;;;;;;;;;;;;;;;60365:14;60406:18;:7;:16;:18::i;:::-;60322:159;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60241:281;60221:301;;;59896:634;;;:::o;57221:35::-;;;;:::o;57183:31::-;;;;:::o;60536:88::-;16102:12;:10;:12::i;:::-;16091:23;;:7;:5;:7::i;:::-;:23;;;16083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60608:8:::1;60601:4;:15;;;;60536:88:::0;:::o;57263:36::-;;;;:::o;44034:164::-;44131:4;44155:18;:25;44174:5;44155:25;;;;;;;;;;;;;;;:35;44181:8;44155:35;;;;;;;;;;;;;;;;;;;;;;;;;44148:42;;44034:164;;;;:::o;57306:88::-;;;;:::o;57107:28::-;;;;;;;;;;;;;:::o;16780:201::-;16102:12;:10;:12::i;:::-;16091:23;;:7;:5;:7::i;:::-;:23;;;16083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16889:1:::1;16869:22;;:8;:22;;;;16861:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;16945:28;16964:8;16945:18;:28::i;:::-;16780:201:::0;:::o;56801:46::-;;;;;;;;;;;;;;;;;:::o;60869:114::-;16102:12;:10;:12::i;:::-;16091:23;;:7;:5;:7::i;:::-;:23;;;16083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60962:13:::1;60944:15;:31;;;;60869:114:::0;:::o;28678:157::-;28763:4;28802:25;28787:40;;;:11;:40;;;;28780:47;;28678:157;;;:::o;45386:174::-;45443:4;45486:7;45467:15;:13;:15::i;:::-;:26;;:53;;;;;45507:13;;45497:7;:23;45467:53;:85;;;;;45525:11;:20;45537:7;45525:20;;;;;;;;;;;:27;;;;;;;;;;;;45524:28;45467:85;45460:92;;45386:174;;;:::o;14595:98::-;14648:7;14675:10;14668:17;;14595:98;:::o;53543:196::-;53685:2;53658:15;:24;53674:7;53658:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;53723:7;53719:2;53703:28;;53712:5;53703:28;;;;;;;;;;;;53543:196;;;:::o;37807:92::-;37863:7;37890:1;37883:8;;37807:92;:::o;48486:2130::-;48601:35;48639:21;48652:7;48639:12;:21::i;:::-;48601:59;;48699:4;48677:26;;:13;:18;;;:26;;;48673:67;;48712:28;;;;;;;;;;;;;;48673:67;48753:22;48795:4;48779:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;48816:36;48833:4;48839:12;:10;:12::i;:::-;48816:16;:36::i;:::-;48779:73;:126;;;;48893:12;:10;:12::i;:::-;48869:36;;:20;48881:7;48869:11;:20::i;:::-;:36;;;48779:126;48753:153;;48924:17;48919:66;;48950:35;;;;;;;;;;;;;;48919:66;49014:1;49000:16;;:2;:16;;;48996:52;;;49025:23;;;;;;;;;;;;;;48996:52;49061:43;49083:4;49089:2;49093:7;49102:1;49061:21;:43::i;:::-;49169:35;49186:1;49190:7;49199:4;49169:8;:35::i;:::-;49530:1;49500:12;:18;49513:4;49500:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49574:1;49546:12;:16;49559:2;49546:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49592:31;49626:11;:20;49638:7;49626:20;;;;;;;;;;;49592:54;;49677:2;49661:8;:13;;;:18;;;;;;;;;;;;;;;;;;49727:15;49694:8;:23;;;:49;;;;;;;;;;;;;;;;;;49995:19;50027:1;50017:7;:11;49995:33;;50043:31;50077:11;:24;50089:11;50077:24;;;;;;;;;;;50043:58;;50145:1;50120:27;;:8;:13;;;;;;;;;;;;:27;;;50116:384;;;50330:13;;50315:11;:28;50311:174;;50384:4;50368:8;:13;;;:20;;;;;;;;;;;;;;;;;;50437:13;:28;;;50411:8;:23;;;:54;;;;;;;;;;;;;;;;;;50311:174;50116:384;49475:1036;;;50547:7;50543:2;50528:27;;50537:4;50528:27;;;;;;;;;;;;50566:42;50587:4;50593:2;50597:7;50606:1;50566:20;:42::i;:::-;48590:2026;;48486:2130;;;:::o;59603:287::-;59676:4;59692:12;59734:10;59717:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;59707:39;;;;;;59692:54;;59765:44;59784:12;;59765:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59798:4;;59804;59765:18;:44::i;:::-;59757:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;59847:4;59840:11;;;59603:287;;;;:::o;45568:104::-;45637:27;45647:2;45651:8;45637:27;;;;;;;;;;;;:9;:27::i;:::-;45568:104;;:::o;40534:1109::-;40596:21;;:::i;:::-;40630:12;40645:7;40630:22;;40713:4;40694:15;:13;:15::i;:::-;:23;;:47;;;;;40728:13;;40721:4;:20;40694:47;40690:886;;;40762:31;40796:11;:17;40808:4;40796:17;;;;;;;;;;;40762:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40837:9;:16;;;40832:729;;40908:1;40882:28;;:9;:14;;;:28;;;40878:101;;40946:9;40939:16;;;;;;40878:101;41281:261;41288:4;41281:261;;;41321:6;;;;;;;;41366:11;:17;41378:4;41366:17;;;;;;;;;;;41354:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41440:1;41414:28;;:9;:14;;;:28;;;41410:109;;41482:9;41475:16;;;;;;41410:109;41281:261;;;40832:729;40743:833;40690:886;41604:31;;;;;;;;;;;;;;40534:1109;;;;:::o;17141:191::-;17215:16;17234:6;;;;;;;;;;;17215:25;;17260:8;17251:6;;:17;;;;;;;;;;;;;;;;;;17315:8;17284:40;;17305:8;17284:40;;;;;;;;;;;;17204:128;17141:191;:::o;18572:326::-;18632:4;18889:1;18867:7;:19;;;:23;18860:30;;18572:326;;;:::o;54231:667::-;54394:4;54431:2;54415:36;;;54452:12;:10;:12::i;:::-;54466:4;54472:7;54481:5;54415:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;54411:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54666:1;54649:6;:13;:18;54645:235;;;54695:40;;;;;;;;;;;;;;54645:235;54838:6;54832:13;54823:6;54819:2;54815:15;54808:38;54411:480;54544:45;;;54534:55;;;:6;:55;;;;54527:62;;;54231:667;;;;;;:::o;59424:108::-;59484:13;59517:7;59510:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59424:108;:::o;12157:723::-;12213:13;12443:1;12434:5;:10;12430:53;;;12461:10;;;;;;;;;;;;;;;;;;;;;12430:53;12493:12;12508:5;12493:20;;12524:14;12549:78;12564:1;12556:4;:9;12549:78;;12582:8;;;;;:::i;:::-;;;;12613:2;12605:10;;;;;:::i;:::-;;;12549:78;;;12637:19;12669:6;12659:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12637:39;;12687:154;12703:1;12694:5;:10;12687:154;;12731:1;12721:11;;;;;:::i;:::-;;;12798:2;12790:5;:10;;;;:::i;:::-;12777:2;:24;;;;:::i;:::-;12764:39;;12747:6;12754;12747:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;12827:2;12818:11;;;;;:::i;:::-;;;12687:154;;;12865:6;12851:21;;;;;12157:723;;;;:::o;55546:159::-;;;;;:::o;56364:158::-;;;;;:::o;1325:190::-;1450:4;1503;1474:25;1487:5;1494:4;1474:12;:25::i;:::-;:33;1467:40;;1325:190;;;;;:::o;46035:163::-;46158:32;46164:2;46168:8;46178:5;46185:4;46158:5;:32::i;:::-;46035:163;;;:::o;2192:296::-;2275:7;2295:20;2318:4;2295:27;;2338:9;2333:118;2357:5;:12;2353:1;:16;2333:118;;;2406:33;2416:12;2430:5;2436:1;2430:8;;;;;;;;:::i;:::-;;;;;;;;2406:9;:33::i;:::-;2391:48;;2371:3;;;;;:::i;:::-;;;;2333:118;;;;2468:12;2461:19;;;2192:296;;;;:::o;46457:1775::-;46596:20;46619:13;;46596:36;;46661:1;46647:16;;:2;:16;;;46643:48;;;46672:19;;;;;;;;;;;;;;46643:48;46718:1;46706:8;:13;46702:44;;;46728:18;;;;;;;;;;;;;;46702:44;46759:61;46789:1;46793:2;46797:12;46811:8;46759:21;:61::i;:::-;47132:8;47097:12;:16;47110:2;47097:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47196:8;47156:12;:16;47169:2;47156:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47255:2;47222:11;:25;47234:12;47222:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;47322:15;47272:11;:25;47284:12;47272:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;47355:20;47378:12;47355:35;;47405:11;47434:8;47419:12;:23;47405:37;;47463:4;:23;;;;;47471:15;:2;:13;;;:15::i;:::-;47463:23;47459:641;;;47507:314;47563:12;47559:2;47538:38;;47555:1;47538:38;;;;;;;;;;;;47604:69;47643:1;47647:2;47651:14;;;;;;47667:5;47604:30;:69::i;:::-;47599:174;;47709:40;;;;;;;;;;;;;;47599:174;47816:3;47800:12;:19;;47507:314;;47902:12;47885:13;;:29;47881:43;;47916:8;;;47881:43;47459:641;;;47965:120;48021:14;;;;;;48017:2;47996:40;;48013:1;47996:40;;;;;;;;;;;;48080:3;48064:12;:19;;47965:120;;47459:641;48130:12;48114:13;:28;;;;47072:1082;;48164:60;48193:1;48197:2;48201:12;48215:8;48164:20;:60::i;:::-;46585:1647;46457:1775;;;;:::o;8399:149::-;8462:7;8493:1;8489;:5;:51;;8520:20;8535:1;8538;8520:14;:20::i;:::-;8489:51;;;8497:20;8512:1;8515;8497:14;:20::i;:::-;8489:51;8482:58;;8399:149;;;;:::o;8556:268::-;8624:13;8731:1;8725:4;8718:15;8760:1;8754:4;8747:15;8801:4;8795;8785:21;8776:30;;8556:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:139::-;1762:5;1800:6;1787:20;1778:29;;1816:33;1843:5;1816:33;:::i;:::-;1716:139;;;;:::o;1861:137::-;1906:5;1944:6;1931:20;1922:29;;1960:32;1986:5;1960:32;:::i;:::-;1861:137;;;;:::o;2004:141::-;2060:5;2091:6;2085:13;2076:22;;2107:32;2133:5;2107:32;:::i;:::-;2004:141;;;;:::o;2164:338::-;2219:5;2268:3;2261:4;2253:6;2249:17;2245:27;2235:122;;2276:79;;:::i;:::-;2235:122;2393:6;2380:20;2418:78;2492:3;2484:6;2477:4;2469:6;2465:17;2418:78;:::i;:::-;2409:87;;2225:277;2164:338;;;;:::o;2522:340::-;2578:5;2627:3;2620:4;2612:6;2608:17;2604:27;2594:122;;2635:79;;:::i;:::-;2594:122;2752:6;2739:20;2777:79;2852:3;2844:6;2837:4;2829:6;2825:17;2777:79;:::i;:::-;2768:88;;2584:278;2522:340;;;;:::o;2868:139::-;2914:5;2952:6;2939:20;2930:29;;2968:33;2995:5;2968:33;:::i;:::-;2868:139;;;;:::o;3013:329::-;3072:6;3121:2;3109:9;3100:7;3096:23;3092:32;3089:119;;;3127:79;;:::i;:::-;3089:119;3247:1;3272:53;3317:7;3308:6;3297:9;3293:22;3272:53;:::i;:::-;3262:63;;3218:117;3013:329;;;;:::o;3348:474::-;3416:6;3424;3473:2;3461:9;3452:7;3448:23;3444:32;3441:119;;;3479:79;;:::i;:::-;3441:119;3599:1;3624:53;3669:7;3660:6;3649:9;3645:22;3624:53;:::i;:::-;3614:63;;3570:117;3726:2;3752:53;3797:7;3788:6;3777:9;3773:22;3752:53;:::i;:::-;3742:63;;3697:118;3348:474;;;;;:::o;3828:619::-;3905:6;3913;3921;3970:2;3958:9;3949:7;3945:23;3941:32;3938:119;;;3976:79;;:::i;:::-;3938:119;4096:1;4121:53;4166:7;4157:6;4146:9;4142:22;4121:53;:::i;:::-;4111:63;;4067:117;4223:2;4249:53;4294:7;4285:6;4274:9;4270:22;4249:53;:::i;:::-;4239:63;;4194:118;4351:2;4377:53;4422:7;4413:6;4402:9;4398:22;4377:53;:::i;:::-;4367:63;;4322:118;3828:619;;;;;:::o;4453:943::-;4548:6;4556;4564;4572;4621:3;4609:9;4600:7;4596:23;4592:33;4589:120;;;4628:79;;:::i;:::-;4589:120;4748:1;4773:53;4818:7;4809:6;4798:9;4794:22;4773:53;:::i;:::-;4763:63;;4719:117;4875:2;4901:53;4946:7;4937:6;4926:9;4922:22;4901:53;:::i;:::-;4891:63;;4846:118;5003:2;5029:53;5074:7;5065:6;5054:9;5050:22;5029:53;:::i;:::-;5019:63;;4974:118;5159:2;5148:9;5144:18;5131:32;5190:18;5182:6;5179:30;5176:117;;;5212:79;;:::i;:::-;5176:117;5317:62;5371:7;5362:6;5351:9;5347:22;5317:62;:::i;:::-;5307:72;;5102:287;4453:943;;;;;;;:::o;5402:468::-;5467:6;5475;5524:2;5512:9;5503:7;5499:23;5495:32;5492:119;;;5530:79;;:::i;:::-;5492:119;5650:1;5675:53;5720:7;5711:6;5700:9;5696:22;5675:53;:::i;:::-;5665:63;;5621:117;5777:2;5803:50;5845:7;5836:6;5825:9;5821:22;5803:50;:::i;:::-;5793:60;;5748:115;5402:468;;;;;:::o;5876:474::-;5944:6;5952;6001:2;5989:9;5980:7;5976:23;5972:32;5969:119;;;6007:79;;:::i;:::-;5969:119;6127:1;6152:53;6197:7;6188:6;6177:9;6173:22;6152:53;:::i;:::-;6142:63;;6098:117;6254:2;6280:53;6325:7;6316:6;6305:9;6301:22;6280:53;:::i;:::-;6270:63;;6225:118;5876:474;;;;;:::o;6356:323::-;6412:6;6461:2;6449:9;6440:7;6436:23;6432:32;6429:119;;;6467:79;;:::i;:::-;6429:119;6587:1;6612:50;6654:7;6645:6;6634:9;6630:22;6612:50;:::i;:::-;6602:60;;6558:114;6356:323;;;;:::o;6685:329::-;6744:6;6793:2;6781:9;6772:7;6768:23;6764:32;6761:119;;;6799:79;;:::i;:::-;6761:119;6919:1;6944:53;6989:7;6980:6;6969:9;6965:22;6944:53;:::i;:::-;6934:63;;6890:117;6685:329;;;;:::o;7020:327::-;7078:6;7127:2;7115:9;7106:7;7102:23;7098:32;7095:119;;;7133:79;;:::i;:::-;7095:119;7253:1;7278:52;7322:7;7313:6;7302:9;7298:22;7278:52;:::i;:::-;7268:62;;7224:116;7020:327;;;;:::o;7353:349::-;7422:6;7471:2;7459:9;7450:7;7446:23;7442:32;7439:119;;;7477:79;;:::i;:::-;7439:119;7597:1;7622:63;7677:7;7668:6;7657:9;7653:22;7622:63;:::i;:::-;7612:73;;7568:127;7353:349;;;;:::o;7708:509::-;7777:6;7826:2;7814:9;7805:7;7801:23;7797:32;7794:119;;;7832:79;;:::i;:::-;7794:119;7980:1;7969:9;7965:17;7952:31;8010:18;8002:6;7999:30;7996:117;;;8032:79;;:::i;:::-;7996:117;8137:63;8192:7;8183:6;8172:9;8168:22;8137:63;:::i;:::-;8127:73;;7923:287;7708:509;;;;:::o;8223:329::-;8282:6;8331:2;8319:9;8310:7;8306:23;8302:32;8299:119;;;8337:79;;:::i;:::-;8299:119;8457:1;8482:53;8527:7;8518:6;8507:9;8503:22;8482:53;:::i;:::-;8472:63;;8428:117;8223:329;;;;:::o;8558:474::-;8626:6;8634;8683:2;8671:9;8662:7;8658:23;8654:32;8651:119;;;8689:79;;:::i;:::-;8651:119;8809:1;8834:53;8879:7;8870:6;8859:9;8855:22;8834:53;:::i;:::-;8824:63;;8780:117;8936:2;8962:53;9007:7;8998:6;8987:9;8983:22;8962:53;:::i;:::-;8952:63;;8907:118;8558:474;;;;;:::o;9038:704::-;9133:6;9141;9149;9198:2;9186:9;9177:7;9173:23;9169:32;9166:119;;;9204:79;;:::i;:::-;9166:119;9324:1;9349:53;9394:7;9385:6;9374:9;9370:22;9349:53;:::i;:::-;9339:63;;9295:117;9479:2;9468:9;9464:18;9451:32;9510:18;9502:6;9499:30;9496:117;;;9532:79;;:::i;:::-;9496:117;9645:80;9717:7;9708:6;9697:9;9693:22;9645:80;:::i;:::-;9627:98;;;;9422:313;9038:704;;;;;:::o;9748:118::-;9835:24;9853:5;9835:24;:::i;:::-;9830:3;9823:37;9748:118;;:::o;9872:157::-;9977:45;9997:24;10015:5;9997:24;:::i;:::-;9977:45;:::i;:::-;9972:3;9965:58;9872:157;;:::o;10035:109::-;10116:21;10131:5;10116:21;:::i;:::-;10111:3;10104:34;10035:109;;:::o;10150:118::-;10237:24;10255:5;10237:24;:::i;:::-;10232:3;10225:37;10150:118;;:::o;10274:360::-;10360:3;10388:38;10420:5;10388:38;:::i;:::-;10442:70;10505:6;10500:3;10442:70;:::i;:::-;10435:77;;10521:52;10566:6;10561:3;10554:4;10547:5;10543:16;10521:52;:::i;:::-;10598:29;10620:6;10598:29;:::i;:::-;10593:3;10589:39;10582:46;;10364:270;10274:360;;;;:::o;10640:364::-;10728:3;10756:39;10789:5;10756:39;:::i;:::-;10811:71;10875:6;10870:3;10811:71;:::i;:::-;10804:78;;10891:52;10936:6;10931:3;10924:4;10917:5;10913:16;10891:52;:::i;:::-;10968:29;10990:6;10968:29;:::i;:::-;10963:3;10959:39;10952:46;;10732:272;10640:364;;;;:::o;11010:377::-;11116:3;11144:39;11177:5;11144:39;:::i;:::-;11199:89;11281:6;11276:3;11199:89;:::i;:::-;11192:96;;11297:52;11342:6;11337:3;11330:4;11323:5;11319:16;11297:52;:::i;:::-;11374:6;11369:3;11365:16;11358:23;;11120:267;11010:377;;;;:::o;11393:366::-;11535:3;11556:67;11620:2;11615:3;11556:67;:::i;:::-;11549:74;;11632:93;11721:3;11632:93;:::i;:::-;11750:2;11745:3;11741:12;11734:19;;11393:366;;;:::o;11765:::-;11907:3;11928:67;11992:2;11987:3;11928:67;:::i;:::-;11921:74;;12004:93;12093:3;12004:93;:::i;:::-;12122:2;12117:3;12113:12;12106:19;;11765:366;;;:::o;12137:::-;12279:3;12300:67;12364:2;12359:3;12300:67;:::i;:::-;12293:74;;12376:93;12465:3;12376:93;:::i;:::-;12494:2;12489:3;12485:12;12478:19;;12137:366;;;:::o;12509:::-;12651:3;12672:67;12736:2;12731:3;12672:67;:::i;:::-;12665:74;;12748:93;12837:3;12748:93;:::i;:::-;12866:2;12861:3;12857:12;12850:19;;12509:366;;;:::o;12881:::-;13023:3;13044:67;13108:2;13103:3;13044:67;:::i;:::-;13037:74;;13120:93;13209:3;13120:93;:::i;:::-;13238:2;13233:3;13229:12;13222:19;;12881:366;;;:::o;13253:400::-;13413:3;13434:84;13516:1;13511:3;13434:84;:::i;:::-;13427:91;;13527:93;13616:3;13527:93;:::i;:::-;13645:1;13640:3;13636:11;13629:18;;13253:400;;;:::o;13659:366::-;13801:3;13822:67;13886:2;13881:3;13822:67;:::i;:::-;13815:74;;13898:93;13987:3;13898:93;:::i;:::-;14016:2;14011:3;14007:12;14000:19;;13659:366;;;:::o;14031:::-;14173:3;14194:67;14258:2;14253:3;14194:67;:::i;:::-;14187:74;;14270:93;14359:3;14270:93;:::i;:::-;14388:2;14383:3;14379:12;14372:19;;14031:366;;;:::o;14403:::-;14545:3;14566:67;14630:2;14625:3;14566:67;:::i;:::-;14559:74;;14642:93;14731:3;14642:93;:::i;:::-;14760:2;14755:3;14751:12;14744:19;;14403:366;;;:::o;14775:::-;14917:3;14938:67;15002:2;14997:3;14938:67;:::i;:::-;14931:74;;15014:93;15103:3;15014:93;:::i;:::-;15132:2;15127:3;15123:12;15116:19;;14775:366;;;:::o;15147:398::-;15306:3;15327:83;15408:1;15403:3;15327:83;:::i;:::-;15320:90;;15419:93;15508:3;15419:93;:::i;:::-;15537:1;15532:3;15528:11;15521:18;;15147:398;;;:::o;15551:366::-;15693:3;15714:67;15778:2;15773:3;15714:67;:::i;:::-;15707:74;;15790:93;15879:3;15790:93;:::i;:::-;15908:2;15903:3;15899:12;15892:19;;15551:366;;;:::o;15923:::-;16065:3;16086:67;16150:2;16145:3;16086:67;:::i;:::-;16079:74;;16162:93;16251:3;16162:93;:::i;:::-;16280:2;16275:3;16271:12;16264:19;;15923:366;;;:::o;16295:::-;16437:3;16458:67;16522:2;16517:3;16458:67;:::i;:::-;16451:74;;16534:93;16623:3;16534:93;:::i;:::-;16652:2;16647:3;16643:12;16636:19;;16295:366;;;:::o;16667:::-;16809:3;16830:67;16894:2;16889:3;16830:67;:::i;:::-;16823:74;;16906:93;16995:3;16906:93;:::i;:::-;17024:2;17019:3;17015:12;17008:19;;16667:366;;;:::o;17039:::-;17181:3;17202:67;17266:2;17261:3;17202:67;:::i;:::-;17195:74;;17278:93;17367:3;17278:93;:::i;:::-;17396:2;17391:3;17387:12;17380:19;;17039:366;;;:::o;17411:118::-;17498:24;17516:5;17498:24;:::i;:::-;17493:3;17486:37;17411:118;;:::o;17535:256::-;17647:3;17662:75;17733:3;17724:6;17662:75;:::i;:::-;17762:2;17757:3;17753:12;17746:19;;17782:3;17775:10;;17535:256;;;;:::o;17797:701::-;18078:3;18100:95;18191:3;18182:6;18100:95;:::i;:::-;18093:102;;18212:95;18303:3;18294:6;18212:95;:::i;:::-;18205:102;;18324:148;18468:3;18324:148;:::i;:::-;18317:155;;18489:3;18482:10;;17797:701;;;;;:::o;18504:379::-;18688:3;18710:147;18853:3;18710:147;:::i;:::-;18703:154;;18874:3;18867:10;;18504:379;;;:::o;18889:222::-;18982:4;19020:2;19009:9;19005:18;18997:26;;19033:71;19101:1;19090:9;19086:17;19077:6;19033:71;:::i;:::-;18889:222;;;;:::o;19117:640::-;19312:4;19350:3;19339:9;19335:19;19327:27;;19364:71;19432:1;19421:9;19417:17;19408:6;19364:71;:::i;:::-;19445:72;19513:2;19502:9;19498:18;19489:6;19445:72;:::i;:::-;19527;19595:2;19584:9;19580:18;19571:6;19527:72;:::i;:::-;19646:9;19640:4;19636:20;19631:2;19620:9;19616:18;19609:48;19674:76;19745:4;19736:6;19674:76;:::i;:::-;19666:84;;19117:640;;;;;;;:::o;19763:210::-;19850:4;19888:2;19877:9;19873:18;19865:26;;19901:65;19963:1;19952:9;19948:17;19939:6;19901:65;:::i;:::-;19763:210;;;;:::o;19979:222::-;20072:4;20110:2;20099:9;20095:18;20087:26;;20123:71;20191:1;20180:9;20176:17;20167:6;20123:71;:::i;:::-;19979:222;;;;:::o;20207:313::-;20320:4;20358:2;20347:9;20343:18;20335:26;;20407:9;20401:4;20397:20;20393:1;20382:9;20378:17;20371:47;20435:78;20508:4;20499:6;20435:78;:::i;:::-;20427:86;;20207:313;;;;:::o;20526:419::-;20692:4;20730:2;20719:9;20715:18;20707:26;;20779:9;20773:4;20769:20;20765:1;20754:9;20750:17;20743:47;20807:131;20933:4;20807:131;:::i;:::-;20799:139;;20526:419;;;:::o;20951:::-;21117:4;21155:2;21144:9;21140:18;21132:26;;21204:9;21198:4;21194:20;21190:1;21179:9;21175:17;21168:47;21232:131;21358:4;21232:131;:::i;:::-;21224:139;;20951:419;;;:::o;21376:::-;21542:4;21580:2;21569:9;21565:18;21557:26;;21629:9;21623:4;21619:20;21615:1;21604:9;21600:17;21593:47;21657:131;21783:4;21657:131;:::i;:::-;21649:139;;21376:419;;;:::o;21801:::-;21967:4;22005:2;21994:9;21990:18;21982:26;;22054:9;22048:4;22044:20;22040:1;22029:9;22025:17;22018:47;22082:131;22208:4;22082:131;:::i;:::-;22074:139;;21801:419;;;:::o;22226:::-;22392:4;22430:2;22419:9;22415:18;22407:26;;22479:9;22473:4;22469:20;22465:1;22454:9;22450:17;22443:47;22507:131;22633:4;22507:131;:::i;:::-;22499:139;;22226:419;;;:::o;22651:::-;22817:4;22855:2;22844:9;22840:18;22832:26;;22904:9;22898:4;22894:20;22890:1;22879:9;22875:17;22868:47;22932:131;23058:4;22932:131;:::i;:::-;22924:139;;22651:419;;;:::o;23076:::-;23242:4;23280:2;23269:9;23265:18;23257:26;;23329:9;23323:4;23319:20;23315:1;23304:9;23300:17;23293:47;23357:131;23483:4;23357:131;:::i;:::-;23349:139;;23076:419;;;:::o;23501:::-;23667:4;23705:2;23694:9;23690:18;23682:26;;23754:9;23748:4;23744:20;23740:1;23729:9;23725:17;23718:47;23782:131;23908:4;23782:131;:::i;:::-;23774:139;;23501:419;;;:::o;23926:::-;24092:4;24130:2;24119:9;24115:18;24107:26;;24179:9;24173:4;24169:20;24165:1;24154:9;24150:17;24143:47;24207:131;24333:4;24207:131;:::i;:::-;24199:139;;23926:419;;;:::o;24351:::-;24517:4;24555:2;24544:9;24540:18;24532:26;;24604:9;24598:4;24594:20;24590:1;24579:9;24575:17;24568:47;24632:131;24758:4;24632:131;:::i;:::-;24624:139;;24351:419;;;:::o;24776:::-;24942:4;24980:2;24969:9;24965:18;24957:26;;25029:9;25023:4;25019:20;25015:1;25004:9;25000:17;24993:47;25057:131;25183:4;25057:131;:::i;:::-;25049:139;;24776:419;;;:::o;25201:::-;25367:4;25405:2;25394:9;25390:18;25382:26;;25454:9;25448:4;25444:20;25440:1;25429:9;25425:17;25418:47;25482:131;25608:4;25482:131;:::i;:::-;25474:139;;25201:419;;;:::o;25626:::-;25792:4;25830:2;25819:9;25815:18;25807:26;;25879:9;25873:4;25869:20;25865:1;25854:9;25850:17;25843:47;25907:131;26033:4;25907:131;:::i;:::-;25899:139;;25626:419;;;:::o;26051:::-;26217:4;26255:2;26244:9;26240:18;26232:26;;26304:9;26298:4;26294:20;26290:1;26279:9;26275:17;26268:47;26332:131;26458:4;26332:131;:::i;:::-;26324:139;;26051:419;;;:::o;26476:222::-;26569:4;26607:2;26596:9;26592:18;26584:26;;26620:71;26688:1;26677:9;26673:17;26664:6;26620:71;:::i;:::-;26476:222;;;;:::o;26704:129::-;26738:6;26765:20;;:::i;:::-;26755:30;;26794:33;26822:4;26814:6;26794:33;:::i;:::-;26704:129;;;:::o;26839:75::-;26872:6;26905:2;26899:9;26889:19;;26839:75;:::o;26920:307::-;26981:4;27071:18;27063:6;27060:30;27057:56;;;27093:18;;:::i;:::-;27057:56;27131:29;27153:6;27131:29;:::i;:::-;27123:37;;27215:4;27209;27205:15;27197:23;;26920:307;;;:::o;27233:308::-;27295:4;27385:18;27377:6;27374:30;27371:56;;;27407:18;;:::i;:::-;27371:56;27445:29;27467:6;27445:29;:::i;:::-;27437:37;;27529:4;27523;27519:15;27511:23;;27233:308;;;:::o;27547:98::-;27598:6;27632:5;27626:12;27616:22;;27547:98;;;:::o;27651:99::-;27703:6;27737:5;27731:12;27721:22;;27651:99;;;:::o;27756:168::-;27839:11;27873:6;27868:3;27861:19;27913:4;27908:3;27904:14;27889:29;;27756:168;;;;:::o;27930:147::-;28031:11;28068:3;28053:18;;27930:147;;;;:::o;28083:169::-;28167:11;28201:6;28196:3;28189:19;28241:4;28236:3;28232:14;28217:29;;28083:169;;;;:::o;28258:148::-;28360:11;28397:3;28382:18;;28258:148;;;;:::o;28412:305::-;28452:3;28471:20;28489:1;28471:20;:::i;:::-;28466:25;;28505:20;28523:1;28505:20;:::i;:::-;28500:25;;28659:1;28591:66;28587:74;28584:1;28581:81;28578:107;;;28665:18;;:::i;:::-;28578:107;28709:1;28706;28702:9;28695:16;;28412:305;;;;:::o;28723:185::-;28763:1;28780:20;28798:1;28780:20;:::i;:::-;28775:25;;28814:20;28832:1;28814:20;:::i;:::-;28809:25;;28853:1;28843:35;;28858:18;;:::i;:::-;28843:35;28900:1;28897;28893:9;28888:14;;28723:185;;;;:::o;28914:191::-;28954:4;28974:20;28992:1;28974:20;:::i;:::-;28969:25;;29008:20;29026:1;29008:20;:::i;:::-;29003:25;;29047:1;29044;29041:8;29038:34;;;29052:18;;:::i;:::-;29038:34;29097:1;29094;29090:9;29082:17;;28914:191;;;;:::o;29111:96::-;29148:7;29177:24;29195:5;29177:24;:::i;:::-;29166:35;;29111:96;;;:::o;29213:90::-;29247:7;29290:5;29283:13;29276:21;29265:32;;29213:90;;;:::o;29309:77::-;29346:7;29375:5;29364:16;;29309:77;;;:::o;29392:149::-;29428:7;29468:66;29461:5;29457:78;29446:89;;29392:149;;;:::o;29547:126::-;29584:7;29624:42;29617:5;29613:54;29602:65;;29547:126;;;:::o;29679:77::-;29716:7;29745:5;29734:16;;29679:77;;;:::o;29762:154::-;29846:6;29841:3;29836;29823:30;29908:1;29899:6;29894:3;29890:16;29883:27;29762:154;;;:::o;29922:307::-;29990:1;30000:113;30014:6;30011:1;30008:13;30000:113;;;30099:1;30094:3;30090:11;30084:18;30080:1;30075:3;30071:11;30064:39;30036:2;30033:1;30029:10;30024:15;;30000:113;;;30131:6;30128:1;30125:13;30122:101;;;30211:1;30202:6;30197:3;30193:16;30186:27;30122:101;29971:258;29922:307;;;:::o;30235:320::-;30279:6;30316:1;30310:4;30306:12;30296:22;;30363:1;30357:4;30353:12;30384:18;30374:81;;30440:4;30432:6;30428:17;30418:27;;30374:81;30502:2;30494:6;30491:14;30471:18;30468:38;30465:84;;;30521:18;;:::i;:::-;30465:84;30286:269;30235:320;;;:::o;30561:281::-;30644:27;30666:4;30644:27;:::i;:::-;30636:6;30632:40;30774:6;30762:10;30759:22;30738:18;30726:10;30723:34;30720:62;30717:88;;;30785:18;;:::i;:::-;30717:88;30825:10;30821:2;30814:22;30604:238;30561:281;;:::o;30848:233::-;30887:3;30910:24;30928:5;30910:24;:::i;:::-;30901:33;;30956:66;30949:5;30946:77;30943:103;;;31026:18;;:::i;:::-;30943:103;31073:1;31066:5;31062:13;31055:20;;30848:233;;;:::o;31087:100::-;31126:7;31155:26;31175:5;31155:26;:::i;:::-;31144:37;;31087:100;;;:::o;31193:94::-;31232:7;31261:20;31275:5;31261:20;:::i;:::-;31250:31;;31193:94;;;:::o;31293:176::-;31325:1;31342:20;31360:1;31342:20;:::i;:::-;31337:25;;31376:20;31394:1;31376:20;:::i;:::-;31371:25;;31415:1;31405:35;;31420:18;;:::i;:::-;31405:35;31461:1;31458;31454:9;31449:14;;31293:176;;;;:::o;31475:180::-;31523:77;31520:1;31513:88;31620:4;31617:1;31610:15;31644:4;31641:1;31634:15;31661:180;31709:77;31706:1;31699:88;31806:4;31803:1;31796:15;31830:4;31827:1;31820:15;31847:180;31895:77;31892:1;31885:88;31992:4;31989:1;31982:15;32016:4;32013:1;32006:15;32033:180;32081:77;32078:1;32071:88;32178:4;32175:1;32168:15;32202:4;32199:1;32192:15;32219:180;32267:77;32264:1;32257:88;32364:4;32361:1;32354:15;32388:4;32385:1;32378:15;32405:117;32514:1;32511;32504:12;32528:117;32637:1;32634;32627:12;32651:117;32760:1;32757;32750:12;32774:117;32883:1;32880;32873:12;32897:117;33006:1;33003;32996:12;33020:117;33129:1;33126;33119:12;33143:102;33184:6;33235:2;33231:7;33226:2;33219:5;33215:14;33211:28;33201:38;;33143:102;;;:::o;33251:94::-;33284:8;33332:5;33328:2;33324:14;33303:35;;33251:94;;;:::o;33351:225::-;33491:34;33487:1;33479:6;33475:14;33468:58;33560:8;33555:2;33547:6;33543:15;33536:33;33351:225;:::o;33582:164::-;33722:16;33718:1;33710:6;33706:14;33699:40;33582:164;:::o;33752:169::-;33892:21;33888:1;33880:6;33876:14;33869:45;33752:169;:::o;33927:171::-;34067:23;34063:1;34055:6;34051:14;34044:47;33927:171;:::o;34104:165::-;34244:17;34240:1;34232:6;34228:14;34221:41;34104:165;:::o;34275:155::-;34415:7;34411:1;34403:6;34399:14;34392:31;34275:155;:::o;34436:182::-;34576:34;34572:1;34564:6;34560:14;34553:58;34436:182;:::o;34624:173::-;34764:25;34760:1;34752:6;34748:14;34741:49;34624:173;:::o;34803:234::-;34943:34;34939:1;34931:6;34927:14;34920:58;35012:17;35007:2;34999:6;34995:15;34988:42;34803:234;:::o;35043:165::-;35183:17;35179:1;35171:6;35167:14;35160:41;35043:165;:::o;35214:114::-;;:::o;35334:171::-;35474:23;35470:1;35462:6;35458:14;35451:47;35334:171;:::o;35511:240::-;35651:34;35647:1;35639:6;35635:14;35628:58;35720:23;35715:2;35707:6;35703:15;35696:48;35511:240;:::o;35757:181::-;35897:33;35893:1;35885:6;35881:14;35874:57;35757:181;:::o;35944:222::-;36084:34;36080:1;36072:6;36068:14;36061:58;36153:5;36148:2;36140:6;36136:15;36129:30;35944:222;:::o;36172:170::-;36312:22;36308:1;36300:6;36296:14;36289:46;36172:170;:::o;36348:122::-;36421:24;36439:5;36421:24;:::i;:::-;36414:5;36411:35;36401:63;;36460:1;36457;36450:12;36401:63;36348:122;:::o;36476:116::-;36546:21;36561:5;36546:21;:::i;:::-;36539:5;36536:32;36526:60;;36582:1;36579;36572:12;36526:60;36476:116;:::o;36598:122::-;36671:24;36689:5;36671:24;:::i;:::-;36664:5;36661:35;36651:63;;36710:1;36707;36700:12;36651:63;36598:122;:::o;36726:120::-;36798:23;36815:5;36798:23;:::i;:::-;36791:5;36788:34;36778:62;;36836:1;36833;36826:12;36778:62;36726:120;:::o;36852:122::-;36925:24;36943:5;36925:24;:::i;:::-;36918:5;36915:35;36905:63;;36964:1;36961;36954:12;36905:63;36852:122;:::o

Swarm Source

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