ETH Price: $3,356.70 (-0.54%)
Gas: 10 Gwei

Token

Y00tfulls (YF)
 

Overview

Max Total Supply

10,000 YF

Holders

1,037

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
8 YF
0x7d3e9ac089378e679471b0dc020c368577155074
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:
Y00tfulls

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-10-01
*/

/**
 *Submitted for verification at Etherscan.io on 2022-09-30
*/

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: @openzeppelin/contracts/utils/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: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// 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 (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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.7.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
                /// @solidity memory-safe-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.7.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 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: Y00tfulls.sol


pragma solidity ^0.8.0;






interface ContractA {
    function balanceOf(address account) external view returns (uint256);
    function totalSupply() external view returns (uint256);
    function ownerOf(uint256 tokenId) external view returns (address);
}

interface ContractB {
    function balanceOf(address account) external view returns (uint256);
    function totalSupply() external view returns (uint256);
    function ownerOf(uint256 tokenId) external view returns (address);
}

contract Y00tfulls is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;

    ContractA TokenA;
    ContractB TokenB;

    string public baseURI;
    string public baseExtension = ".json";
    bool public presale;
    bool public publicSale;
    bytes32 public merkleRoot;
    uint256 public maxSupply = 10000;
    uint256 public maxWhitelist = 3;
    uint256 public maxPublic = 100;
    uint256 public maxPerTx = 10;
    uint256 public presaleCost = 0 ether;
    uint256 public publicCost = .003 ether;
    mapping(address => uint256) public addressMintedBalance;


    constructor(string memory _initBaseURI, ContractA _tokenAddressA, ContractB _tokenAddressB) ERC721A("Y00tfulls", "YF") {
        setBaseURI(_initBaseURI);
        require(address(_tokenAddressA) != address(0) && address(_tokenAddressB) != address(0), "Token Address cannot be address 0");
        TokenA = _tokenAddressA;
        TokenB = _tokenAddressB;
    }

    // Whitelist mint
    function whitelistMint(uint256 quantity, bytes32[] calldata _merkleProof)
        public
        payable
        nonReentrant
    {
        require(presale, "The whitelist sale is not enabled!"); 
        uint256 supply = totalSupply();
        require(quantity > 0, "Quantity Must Be Higher Than Zero");
        require(quantity <= maxPerTx, "Quantity Exceeds The Limit");
        require(supply + quantity <= maxSupply, "Max Supply Reached");
        require(
            addressMintedBalance[msg.sender] + quantity <= maxWhitelist,
            "You're not allowed to mint this Much!"
        );
        require(msg.value >= presaleCost * quantity, "Not enough ether!");

        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(
            MerkleProof.verify(_merkleProof, merkleRoot, leaf),
            "Invalid proof!"
        );

        _safeMint(msg.sender, quantity);
        addressMintedBalance[msg.sender] += quantity;
    }

    // Public mint
    function mint(uint256 quantity) external payable nonReentrant {
        require(publicSale, "The public sale is not enabled!");
        uint256 supply = totalSupply();
        uint256 totalHolding = TokenA.balanceOf(msg.sender) + TokenB.balanceOf(msg.sender);
        uint256 totalCost;
        require(quantity > 0, "Quantity must be higher than zero!");
        require(quantity <= maxPerTx, "Quantity Exceeds The Limit");
        require(supply + quantity <= maxSupply, "Max supply reached!");
        require(
            addressMintedBalance[msg.sender] + quantity <= maxPublic,
            "You're not allowed to mint this Much!"
        );
        
        if(addressMintedBalance[msg.sender] >= totalHolding) {
            totalCost = quantity * publicCost;
        } else if (addressMintedBalance[msg.sender] + quantity > totalHolding) {
            totalCost = (addressMintedBalance[msg.sender] + quantity - totalHolding) * publicCost;
        } else {
            totalCost = 0;
        }
        
        require(msg.value >= totalCost, "Not enough ether!");
        _safeMint(msg.sender, quantity);
        addressMintedBalance[msg.sender] += quantity;
    }

    // Owner mint
    function devMint(uint256 quantity) external onlyOwner {
        uint256 supply = totalSupply();
        require(quantity > 0, "Quantity must be higher than zero!");
        require(supply + quantity <= maxSupply, "Max supply reached!");
        _safeMint(msg.sender, quantity);
    }

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

    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(),
                        baseExtension
                    )
                )
                : "";
    }

    // 

    // Set supply of nfts
    function setMaxSupply(uint256 _amount) public onlyOwner {
        maxSupply = _amount;
    }

    // Set merkleRoot for whitelist
    function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
        merkleRoot = _merkleRoot;
    }

    // Control sale state
    function setSale(bool _presale, bool _publicSale) public onlyOwner {
        presale = _presale;
        publicSale = _publicSale;
    }

    // Set max per wallet both presale and public sale
    function setMax(uint256 _presale, uint256 _public) public onlyOwner {
        maxWhitelist = _presale;
        maxPublic = _public;
    }

    // Set max per transaction
    function setTx(uint256 _amount) public onlyOwner {
        maxPerTx = _amount;
    }

    // Set mint price for both presale and public sale
    function setPrice(uint256 _whitelistCost, uint256 _publicCost) public onlyOwner {
        presaleCost = _whitelistCost;
        publicCost = _publicCost;
    }

    // Set baseURI
    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    // Set contract addresses for both collection
    function setContractAddress(ContractA _tokenAddressA, ContractB _tokenAddressB) public onlyOwner {
        require(address(_tokenAddressA) != address(0) && address(_tokenAddressB) != address(0), "Token Address cannot be address 0");
        TokenA = _tokenAddressA;
        TokenB = _tokenAddressB;
    }

    // Airdrop NFT to anyone
    function airdrop(address _address ,uint256 quantity) public onlyOwner {
        uint256 supply = totalSupply();
        require(quantity > 0, "Quantity must be higher than zero!");
        require(supply + quantity <= maxSupply, "Max supply reached!");
        _safeMint(_address, quantity);
    }

    // Get total nft count in both collection
    function getHoldings(address _address) public view returns (uint256) {
        uint256 total = TokenA.balanceOf(_address) + TokenB.balanceOf(_address);
        return total;
    }

    // Get calculated cost
    function getCost(uint256 quantity) public view returns (uint256) {
        uint256 totalHolding = TokenA.balanceOf(msg.sender) + TokenB.balanceOf(msg.sender);
        uint256 totalCost;

        if(addressMintedBalance[msg.sender] >= totalHolding) {
            totalCost = quantity * publicCost;
        } else if (addressMintedBalance[msg.sender] + quantity > totalHolding) {
            totalCost = (addressMintedBalance[msg.sender] + quantity - totalHolding) * publicCost;
        } else {
            totalCost = 0;
        }

        return totalCost;
    }

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    // Withdraw the funds from the contract
    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"contract ContractA","name":"_tokenAddressA","type":"address"},{"internalType":"contract ContractB","name":"_tokenAddressB","type":"address"}],"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":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"getCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"getHoldings","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ContractA","name":"_tokenAddressA","type":"address"},{"internalType":"contract ContractB","name":"_tokenAddressB","type":"address"}],"name":"setContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_presale","type":"uint256"},{"internalType":"uint256","name":"_public","type":"uint256"}],"name":"setMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelistCost","type":"uint256"},{"internalType":"uint256","name":"_publicCost","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_presale","type":"bool"},{"internalType":"bool","name":"_publicSale","type":"bool"}],"name":"setSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d9080519060200190620000519291906200048f565b5061271060105560036011556064601255600a6013556000601455660aa87bee5380006015553480156200008457600080fd5b50604051620057ad380380620057ad8339818101604052810190620000aa9190620005eb565b6040518060400160405280600981526020017f5930307466756c6c7300000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f594600000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200012e9291906200048f565b508060039080519060200190620001479291906200048f565b5062000158620002d160201b60201c565b60008190555050506200018062000174620002da60201b60201c565b620002e260201b60201c565b60016009819055506200019983620003a860201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015620002045750600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b62000246576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200023d90620006d6565b60405180910390fd5b81600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505062000995565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003b8620003d460201b60201c565b80600c9080519060200190620003d09291906200048f565b5050565b620003e4620002da60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200040a6200046560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000463576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200045a90620006b4565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200049d90620007fa565b90600052602060002090601f016020900481019282620004c157600085556200050d565b82601f10620004dc57805160ff19168380011785556200050d565b828001600101855582156200050d579182015b828111156200050c578251825591602001919060010190620004ef565b5b5090506200051c919062000520565b5090565b5b808211156200053b57600081600090555060010162000521565b5090565b600062000556620005508462000721565b620006f8565b905082815260208101848484011115620005755762000574620008c9565b5b62000582848285620007c4565b509392505050565b6000815190506200059b8162000961565b92915050565b600081519050620005b2816200097b565b92915050565b600082601f830112620005d057620005cf620008c4565b5b8151620005e28482602086016200053f565b91505092915050565b600080600060608486031215620006075762000606620008d3565b5b600084015167ffffffffffffffff811115620006285762000627620008ce565b5b6200063686828701620005b8565b935050602062000649868287016200058a565b92505060406200065c86828701620005a1565b9150509250925092565b60006200067560208362000757565b91506200068282620008e9565b602082019050919050565b60006200069c60218362000757565b9150620006a98262000912565b604082019050919050565b60006020820190508181036000830152620006cf8162000666565b9050919050565b60006020820190508181036000830152620006f1816200068d565b9050919050565b60006200070462000717565b905062000712828262000830565b919050565b6000604051905090565b600067ffffffffffffffff8211156200073f576200073e62000895565b5b6200074a82620008d8565b9050602081019050919050565b600082825260208201905092915050565b60006200077582620007a4565b9050919050565b6000620007898262000768565b9050919050565b60006200079d8262000768565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015620007e4578082015181840152602081019050620007c7565b83811115620007f4576000848401525b50505050565b600060028204905060018216806200081357607f821691505b602082108114156200082a576200082962000866565b5b50919050565b6200083b82620008d8565b810181811067ffffffffffffffff821117156200085d576200085c62000895565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f546f6b656e20416464726573732063616e6e6f7420626520616464726573732060008201527f3000000000000000000000000000000000000000000000000000000000000000602082015250565b6200096c816200077c565b81146200097857600080fd5b50565b620009868162000790565b81146200099257600080fd5b50565b614e0880620009a56000396000f3fe6080604052600436106102725760003560e01c806370a082311161014f578063bf0d96c3116100c1578063e985e9c51161007a578063e985e9c514610932578063ee82e5a01461096f578063f2fde38b14610998578063f7d97577146109c1578063f968adbe146109ea578063fdea8e0b14610a1557610272565b8063bf0d96c31461082f578063c66828621461085a578063c87b56dd14610885578063d2cab056146108c2578063d5abeb01146108de578063da3ef23f1461090957610272565b80638ba4cc3c116101135780638ba4cc3c146107425780638da5cb5b1461076b57806395d89b4114610796578063a0712d68146107c1578063a22cb465146107dd578063b88d4fde1461080657610272565b806370a082311461066f578063715018a6146106ac5780637cb64759146106c35780637dc42975146106ec5780638693da201461071757610272565b806333bc1c5c116101e857806355f804b3116101ac57806355f804b31461054f5780635a4dd47d14610578578063620cc86c146105b55780636352211e146105de5780636c0360eb1461061b5780636f8b44b01461064657610272565b806333bc1c5c14610492578063375a069a146104bd5780633b91ceef146104e65780633ccfd60b1461050f57806342842e0e1461052657610272565b806318cae2691161023a57806318cae269146103705780631be52dc4146103ad57806323626df7146103ea57806323b872dd146104135780632a23d07d1461043c5780632eb4a7ab1461046757610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063095ea7b31461031c57806318160ddd14610345575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613c5b565b610a40565b6040516102ab919061426d565b60405180910390f35b3480156102c057600080fd5b506102c9610b22565b6040516102d691906142a3565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613d3e565b610bb4565b6040516103139190614206565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e9190613bae565b610c30565b005b34801561035157600080fd5b5061035a610d3b565b60405161036791906144a5565b60405180910390f35b34801561037c57600080fd5b5061039760048036038101906103929190613a2b565b610d52565b6040516103a491906144a5565b60405180910390f35b3480156103b957600080fd5b506103d460048036038101906103cf9190613a2b565b610d6a565b6040516103e191906144a5565b60405180910390f35b3480156103f657600080fd5b50610411600480360381019061040c9190613cb5565b610ed8565b005b34801561041f57600080fd5b5061043a60048036038101906104359190613a98565b61100f565b005b34801561044857600080fd5b5061045161101f565b60405161045e91906144a5565b60405180910390f35b34801561047357600080fd5b5061047c611025565b6040516104899190614288565b60405180910390f35b34801561049e57600080fd5b506104a761102b565b6040516104b4919061426d565b60405180910390f35b3480156104c957600080fd5b506104e460048036038101906104df9190613d3e565b61103e565b005b3480156104f257600080fd5b5061050d60048036038101906105089190613df8565b6110f3565b005b34801561051b57600080fd5b5061052461110d565b005b34801561053257600080fd5b5061054d60048036038101906105489190613a98565b611164565b005b34801561055b57600080fd5b5061057660048036038101906105719190613cf5565b611184565b005b34801561058457600080fd5b5061059f600480360381019061059a9190613d3e565b6111a6565b6040516105ac91906144a5565b60405180910390f35b3480156105c157600080fd5b506105dc60048036038101906105d79190613d3e565b611434565b005b3480156105ea57600080fd5b5061060560048036038101906106009190613d3e565b611446565b6040516106129190614206565b60405180910390f35b34801561062757600080fd5b5061063061145c565b60405161063d91906142a3565b60405180910390f35b34801561065257600080fd5b5061066d60048036038101906106689190613d3e565b6114ea565b005b34801561067b57600080fd5b5061069660048036038101906106919190613a2b565b6114fc565b6040516106a391906144a5565b60405180910390f35b3480156106b857600080fd5b506106c16115cc565b005b3480156106cf57600080fd5b506106ea60048036038101906106e59190613c2e565b6115e0565b005b3480156106f857600080fd5b506107016115f2565b60405161070e91906144a5565b60405180910390f35b34801561072357600080fd5b5061072c6115f8565b60405161073991906144a5565b60405180910390f35b34801561074e57600080fd5b5061076960048036038101906107649190613bae565b6115fe565b005b34801561077757600080fd5b506107806116b4565b60405161078d9190614206565b60405180910390f35b3480156107a257600080fd5b506107ab6116de565b6040516107b891906142a3565b60405180910390f35b6107db60048036038101906107d69190613d3e565b611770565b005b3480156107e957600080fd5b5061080460048036038101906107ff9190613b6e565b611cb3565b005b34801561081257600080fd5b5061082d60048036038101906108289190613aeb565b611e2b565b005b34801561083b57600080fd5b50610844611ea7565b60405161085191906144a5565b60405180910390f35b34801561086657600080fd5b5061086f611ead565b60405161087c91906142a3565b60405180910390f35b34801561089157600080fd5b506108ac60048036038101906108a79190613d3e565b611f3b565b6040516108b991906142a3565b60405180910390f35b6108dc60048036038101906108d79190613d98565b611fe5565b005b3480156108ea57600080fd5b506108f361236c565b60405161090091906144a5565b60405180910390f35b34801561091557600080fd5b50610930600480360381019061092b9190613cf5565b612372565b005b34801561093e57600080fd5b5061095960048036038101906109549190613a58565b612394565b604051610966919061426d565b60405180910390f35b34801561097b57600080fd5b5061099660048036038101906109919190613bee565b612428565b005b3480156109a457600080fd5b506109bf60048036038101906109ba9190613a2b565b612468565b005b3480156109cd57600080fd5b506109e860048036038101906109e39190613df8565b6124ec565b005b3480156109f657600080fd5b506109ff612506565b604051610a0c91906144a5565b60405180910390f35b348015610a2157600080fd5b50610a2a61250c565b604051610a37919061426d565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b0b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b1b5750610b1a8261251f565b5b9050919050565b606060028054610b3190614798565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5d90614798565b8015610baa5780601f10610b7f57610100808354040283529160200191610baa565b820191906000526020600020905b815481529060010190602001808311610b8d57829003601f168201915b5050505050905090565b6000610bbf82612589565b610bf5576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c3b82611446565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ca3576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cc26125d7565b73ffffffffffffffffffffffffffffffffffffffff1614158015610cf45750610cf281610ced6125d7565b612394565b155b15610d2b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d368383836125df565b505050565b6000610d45612691565b6001546000540303905090565b60166020528060005260406000206000915090505481565b600080600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b8152600401610dc89190614206565b60206040518083038186803b158015610de057600080fd5b505afa158015610df4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e189190613d6b565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231856040518263ffffffff1660e01b8152600401610e739190614206565b60206040518083038186803b158015610e8b57600080fd5b505afa158015610e9f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec39190613d6b565b610ecd919061459f565b905080915050919050565b610ee061269a565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015610f4a5750600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b610f89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8090614465565b60405180910390fd5b81600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b61101a838383612718565b505050565b60145481565b600f5481565b600e60019054906101000a900460ff1681565b61104661269a565b6000611050610d3b565b905060008211611095576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108c90614385565b60405180910390fd5b60105482826110a4919061459f565b11156110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc906143e5565b60405180910390fd5b6110ef3383612bce565b5050565b6110fb61269a565b81601181905550806012819055505050565b61111561269a565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611160573d6000803e3d6000fd5b5050565b61117f83838360405180602001604052806000815250611e2b565b505050565b61118c61269a565b80600c90805190602001906111a2929190613752565b5050565b600080600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016112049190614206565b60206040518083038186803b15801561121c57600080fd5b505afa158015611230573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112549190613d6b565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016112af9190614206565b60206040518083038186803b1580156112c757600080fd5b505afa1580156112db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ff9190613d6b565b611309919061459f565b9050600081601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061136857601554846113619190614626565b905061142a565b8184601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113b4919061459f565b1115611424576015548285601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611409919061459f565b6114139190614680565b61141d9190614626565b9050611429565b600090505b5b8092505050919050565b61143c61269a565b8060138190555050565b600061145182612bec565b600001519050919050565b600c805461146990614798565b80601f016020809104026020016040519081016040528092919081815260200182805461149590614798565b80156114e25780601f106114b7576101008083540402835291602001916114e2565b820191906000526020600020905b8154815290600101906020018083116114c557829003601f168201915b505050505081565b6114f261269a565b8060108190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611564576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6115d461269a565b6115de6000612e7b565b565b6115e861269a565b80600f8190555050565b60125481565b60155481565b61160661269a565b6000611610610d3b565b905060008211611655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164c90614385565b60405180910390fd5b6010548282611664919061459f565b11156116a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169c906143e5565b60405180910390fd5b6116af8383612bce565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546116ed90614798565b80601f016020809104026020016040519081016040528092919081815260200182805461171990614798565b80156117665780601f1061173b57610100808354040283529160200191611766565b820191906000526020600020905b81548152906001019060200180831161174957829003601f168201915b5050505050905090565b600260095414156117b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ad90614445565b60405180910390fd5b6002600981905550600e60019054906101000a900460ff1661180d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180490614485565b60405180910390fd5b6000611817610d3b565b90506000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016118769190614206565b60206040518083038186803b15801561188e57600080fd5b505afa1580156118a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118c69190613d6b565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016119219190614206565b60206040518083038186803b15801561193957600080fd5b505afa15801561194d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119719190613d6b565b61197b919061459f565b905060008084116119c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b890614385565b60405180910390fd5b601354841115611a06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fd90614325565b60405180910390fd5b6010548484611a15919061459f565b1115611a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4d906143e5565b60405180910390fd5b60125484601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611aa4919061459f565b1115611ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adc906142e5565b60405180910390fd5b81601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611b405760155484611b399190614626565b9050611c02565b8184601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b8c919061459f565b1115611bfc576015548285601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611be1919061459f565b611beb9190614680565b611bf59190614626565b9050611c01565b600090505b5b80341015611c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3c906142c5565b60405180910390fd5b611c4f3385612bce565b83601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c9e919061459f565b92505081905550505050600160098190555050565b611cbb6125d7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d20576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611d2d6125d7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611dda6125d7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e1f919061426d565b60405180910390a35050565b611e36848484612718565b611e558373ffffffffffffffffffffffffffffffffffffffff16612f41565b8015611e6a5750611e6884848484612f64565b155b15611ea1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60115481565b600d8054611eba90614798565b80601f0160208091040260200160405190810160405280929190818152602001828054611ee690614798565b8015611f335780601f10611f0857610100808354040283529160200191611f33565b820191906000526020600020905b815481529060010190602001808311611f1657829003601f168201915b505050505081565b6060611f4682612589565b611f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7c906143c5565b60405180910390fd5b6000611f8f6130c4565b90506000815111611faf5760405180602001604052806000815250611fdd565b80611fb984613156565b600d604051602001611fcd939291906141d5565b6040516020818303038152906040525b915050919050565b6002600954141561202b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202290614445565b60405180910390fd5b6002600981905550600e60009054906101000a900460ff16612082576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207990614405565b60405180910390fd5b600061208c610d3b565b9050600084116120d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c890614365565b60405180910390fd5b601354841115612116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210d90614325565b60405180910390fd5b6010548482612125919061459f565b1115612166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215d90614425565b60405180910390fd5b60115484601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121b4919061459f565b11156121f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ec906142e5565b60405180910390fd5b836014546122039190614626565b341015612245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223c906142c5565b60405180910390fd5b60003360405160200161225891906141ba565b6040516020818303038152906040528051906020012090506122be848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f54836132b7565b6122fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f490614305565b60405180910390fd5b6123073386612bce565b84601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612356919061459f565b9250508190555050506001600981905550505050565b60105481565b61237a61269a565b80600d9080519060200190612390929190613752565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61243061269a565b81600e60006101000a81548160ff02191690831515021790555080600e60016101000a81548160ff0219169083151502179055505050565b61247061269a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d790614345565b60405180910390fd5b6124e981612e7b565b50565b6124f461269a565b81601481905550806015819055505050565b60135481565b600e60009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612594612691565b111580156125a3575060005482105b80156125d0575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6126a26125d7565b73ffffffffffffffffffffffffffffffffffffffff166126c06116b4565b73ffffffffffffffffffffffffffffffffffffffff1614612716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270d906143a5565b60405180910390fd5b565b600061272382612bec565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461278e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166127af6125d7565b73ffffffffffffffffffffffffffffffffffffffff1614806127de57506127dd856127d86125d7565b612394565b5b8061282357506127ec6125d7565b73ffffffffffffffffffffffffffffffffffffffff1661280b84610bb4565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061285c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156128c3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128d085858560016132ce565b6128dc600084876125df565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612b5c576000548214612b5b57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612bc785858560016132d4565b5050505050565b612be88282604051806020016040528060008152506132da565b5050565b612bf46137d8565b600082905080612c02612691565b11158015612c11575060005481105b15612e44576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612e4257600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612d26578092505050612e76565b5b600115612e4157818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612e3c578092505050612e76565b612d27565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f8a6125d7565b8786866040518563ffffffff1660e01b8152600401612fac9493929190614221565b602060405180830381600087803b158015612fc657600080fd5b505af1925050508015612ff757506040513d601f19601f82011682018060405250810190612ff49190613c88565b60015b613071573d8060008114613027576040519150601f19603f3d011682016040523d82523d6000602084013e61302c565b606091505b50600081511415613069576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c80546130d390614798565b80601f01602080910402602001604051908101604052809291908181526020018280546130ff90614798565b801561314c5780601f106131215761010080835404028352916020019161314c565b820191906000526020600020905b81548152906001019060200180831161312f57829003601f168201915b5050505050905090565b6060600082141561319e576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506132b2565b600082905060005b600082146131d05780806131b9906147fb565b915050600a826131c991906145f5565b91506131a6565b60008167ffffffffffffffff8111156131ec576131eb614955565b5b6040519080825280601f01601f19166020018201604052801561321e5781602001600182028036833780820191505090505b5090505b600085146132ab576001826132379190614680565b9150600a856132469190614868565b6030613252919061459f565b60f81b81838151811061326857613267614926565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132a491906145f5565b9450613222565b8093505050505b919050565b6000826132c485846132ec565b1490509392505050565b50505050565b50505050565b6132e78383836001613342565b505050565b60008082905060005b8451811015613337576133228286838151811061331557613314614926565b5b6020026020010151613710565b9150808061332f906147fb565b9150506132f5565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156133af576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156133ea576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6133f760008683876132ce565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156135c157506135c08773ffffffffffffffffffffffffffffffffffffffff16612f41565b5b15613687575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46136366000888480600101955088612f64565b61366c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156135c757826000541461368257600080fd5b6136f3565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613688575b81600081905550505061370960008683876132d4565b5050505050565b600081831061372857613723828461373b565b613733565b613732838361373b565b5b905092915050565b600082600052816020526040600020905092915050565b82805461375e90614798565b90600052602060002090601f01602090048101928261378057600085556137c7565b82601f1061379957805160ff19168380011785556137c7565b828001600101855582156137c7579182015b828111156137c65782518255916020019190600101906137ab565b5b5090506137d4919061381b565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561383457600081600090555060010161381c565b5090565b600061384b613846846144e5565b6144c0565b90508281526020810184848401111561386757613866614993565b5b613872848285614756565b509392505050565b600061388d61388884614516565b6144c0565b9050828152602081018484840111156138a9576138a8614993565b5b6138b4848285614756565b509392505050565b6000813590506138cb81614d31565b92915050565b60008083601f8401126138e7576138e6614989565b5b8235905067ffffffffffffffff81111561390457613903614984565b5b6020830191508360208202830111156139205761391f61498e565b5b9250929050565b60008135905061393681614d48565b92915050565b60008135905061394b81614d5f565b92915050565b60008135905061396081614d76565b92915050565b60008151905061397581614d76565b92915050565b600082601f8301126139905761398f614989565b5b81356139a0848260208601613838565b91505092915050565b6000813590506139b881614d8d565b92915050565b6000813590506139cd81614da4565b92915050565b600082601f8301126139e8576139e7614989565b5b81356139f884826020860161387a565b91505092915050565b600081359050613a1081614dbb565b92915050565b600081519050613a2581614dbb565b92915050565b600060208284031215613a4157613a4061499d565b5b6000613a4f848285016138bc565b91505092915050565b60008060408385031215613a6f57613a6e61499d565b5b6000613a7d858286016138bc565b9250506020613a8e858286016138bc565b9150509250929050565b600080600060608486031215613ab157613ab061499d565b5b6000613abf868287016138bc565b9350506020613ad0868287016138bc565b9250506040613ae186828701613a01565b9150509250925092565b60008060008060808587031215613b0557613b0461499d565b5b6000613b13878288016138bc565b9450506020613b24878288016138bc565b9350506040613b3587828801613a01565b925050606085013567ffffffffffffffff811115613b5657613b55614998565b5b613b628782880161397b565b91505092959194509250565b60008060408385031215613b8557613b8461499d565b5b6000613b93858286016138bc565b9250506020613ba485828601613927565b9150509250929050565b60008060408385031215613bc557613bc461499d565b5b6000613bd3858286016138bc565b9250506020613be485828601613a01565b9150509250929050565b60008060408385031215613c0557613c0461499d565b5b6000613c1385828601613927565b9250506020613c2485828601613927565b9150509250929050565b600060208284031215613c4457613c4361499d565b5b6000613c528482850161393c565b91505092915050565b600060208284031215613c7157613c7061499d565b5b6000613c7f84828501613951565b91505092915050565b600060208284031215613c9e57613c9d61499d565b5b6000613cac84828501613966565b91505092915050565b60008060408385031215613ccc57613ccb61499d565b5b6000613cda858286016139a9565b9250506020613ceb858286016139be565b9150509250929050565b600060208284031215613d0b57613d0a61499d565b5b600082013567ffffffffffffffff811115613d2957613d28614998565b5b613d35848285016139d3565b91505092915050565b600060208284031215613d5457613d5361499d565b5b6000613d6284828501613a01565b91505092915050565b600060208284031215613d8157613d8061499d565b5b6000613d8f84828501613a16565b91505092915050565b600080600060408486031215613db157613db061499d565b5b6000613dbf86828701613a01565b935050602084013567ffffffffffffffff811115613de057613ddf614998565b5b613dec868287016138d1565b92509250509250925092565b60008060408385031215613e0f57613e0e61499d565b5b6000613e1d85828601613a01565b9250506020613e2e85828601613a01565b9150509250929050565b613e41816146b4565b82525050565b613e58613e53826146b4565b614844565b82525050565b613e67816146c6565b82525050565b613e76816146d2565b82525050565b6000613e878261455c565b613e918185614572565b9350613ea1818560208601614765565b613eaa816149a2565b840191505092915050565b6000613ec082614567565b613eca8185614583565b9350613eda818560208601614765565b613ee3816149a2565b840191505092915050565b6000613ef982614567565b613f038185614594565b9350613f13818560208601614765565b80840191505092915050565b60008154613f2c81614798565b613f368186614594565b94506001821660008114613f515760018114613f6257613f95565b60ff19831686528186019350613f95565b613f6b85614547565b60005b83811015613f8d57815481890152600182019150602081019050613f6e565b838801955050505b50505092915050565b6000613fab601183614583565b9150613fb6826149c0565b602082019050919050565b6000613fce602583614583565b9150613fd9826149e9565b604082019050919050565b6000613ff1600e83614583565b9150613ffc82614a38565b602082019050919050565b6000614014601a83614583565b915061401f82614a61565b602082019050919050565b6000614037602683614583565b915061404282614a8a565b604082019050919050565b600061405a602183614583565b915061406582614ad9565b604082019050919050565b600061407d602283614583565b915061408882614b28565b604082019050919050565b60006140a0602083614583565b91506140ab82614b77565b602082019050919050565b60006140c3602f83614583565b91506140ce82614ba0565b604082019050919050565b60006140e6601383614583565b91506140f182614bef565b602082019050919050565b6000614109602283614583565b915061411482614c18565b604082019050919050565b600061412c601283614583565b915061413782614c67565b602082019050919050565b600061414f601f83614583565b915061415a82614c90565b602082019050919050565b6000614172602183614583565b915061417d82614cb9565b604082019050919050565b6000614195601f83614583565b91506141a082614d08565b602082019050919050565b6141b48161474c565b82525050565b60006141c68284613e47565b60148201915081905092915050565b60006141e18286613eee565b91506141ed8285613eee565b91506141f98284613f1f565b9150819050949350505050565b600060208201905061421b6000830184613e38565b92915050565b60006080820190506142366000830187613e38565b6142436020830186613e38565b61425060408301856141ab565b81810360608301526142628184613e7c565b905095945050505050565b60006020820190506142826000830184613e5e565b92915050565b600060208201905061429d6000830184613e6d565b92915050565b600060208201905081810360008301526142bd8184613eb5565b905092915050565b600060208201905081810360008301526142de81613f9e565b9050919050565b600060208201905081810360008301526142fe81613fc1565b9050919050565b6000602082019050818103600083015261431e81613fe4565b9050919050565b6000602082019050818103600083015261433e81614007565b9050919050565b6000602082019050818103600083015261435e8161402a565b9050919050565b6000602082019050818103600083015261437e8161404d565b9050919050565b6000602082019050818103600083015261439e81614070565b9050919050565b600060208201905081810360008301526143be81614093565b9050919050565b600060208201905081810360008301526143de816140b6565b9050919050565b600060208201905081810360008301526143fe816140d9565b9050919050565b6000602082019050818103600083015261441e816140fc565b9050919050565b6000602082019050818103600083015261443e8161411f565b9050919050565b6000602082019050818103600083015261445e81614142565b9050919050565b6000602082019050818103600083015261447e81614165565b9050919050565b6000602082019050818103600083015261449e81614188565b9050919050565b60006020820190506144ba60008301846141ab565b92915050565b60006144ca6144db565b90506144d682826147ca565b919050565b6000604051905090565b600067ffffffffffffffff821115614500576144ff614955565b5b614509826149a2565b9050602081019050919050565b600067ffffffffffffffff82111561453157614530614955565b5b61453a826149a2565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006145aa8261474c565b91506145b58361474c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145ea576145e9614899565b5b828201905092915050565b60006146008261474c565b915061460b8361474c565b92508261461b5761461a6148c8565b5b828204905092915050565b60006146318261474c565b915061463c8361474c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561467557614674614899565b5b828202905092915050565b600061468b8261474c565b91506146968361474c565b9250828210156146a9576146a8614899565b5b828203905092915050565b60006146bf8261472c565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000614713826146b4565b9050919050565b6000614725826146b4565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614783578082015181840152602081019050614768565b83811115614792576000848401525b50505050565b600060028204905060018216806147b057607f821691505b602082108114156147c4576147c36148f7565b5b50919050565b6147d3826149a2565b810181811067ffffffffffffffff821117156147f2576147f1614955565b5b80604052505050565b60006148068261474c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561483957614838614899565b5b600182019050919050565b600061484f82614856565b9050919050565b6000614861826149b3565b9050919050565b60006148738261474c565b915061487e8361474c565b92508261488e5761488d6148c8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4e6f7420656e6f75676820657468657221000000000000000000000000000000600082015250565b7f596f75277265206e6f7420616c6c6f77656420746f206d696e7420746869732060008201527f4d75636821000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b7f5175616e74697479204578636565647320546865204c696d6974000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5175616e74697479204d75737420426520486967686572205468616e205a657260008201527f6f00000000000000000000000000000000000000000000000000000000000000602082015250565b7f5175616e74697479206d75737420626520686967686572207468616e207a657260008201527f6f21000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d617820737570706c7920726561636865642100000000000000000000000000600082015250565b7f5468652077686974656c6973742073616c65206973206e6f7420656e61626c6560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d617820537570706c7920526561636865640000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f546f6b656e20416464726573732063616e6e6f7420626520616464726573732060008201527f3000000000000000000000000000000000000000000000000000000000000000602082015250565b7f546865207075626c69632073616c65206973206e6f7420656e61626c65642100600082015250565b614d3a816146b4565b8114614d4557600080fd5b50565b614d51816146c6565b8114614d5c57600080fd5b50565b614d68816146d2565b8114614d7357600080fd5b50565b614d7f816146dc565b8114614d8a57600080fd5b50565b614d9681614708565b8114614da157600080fd5b50565b614dad8161471a565b8114614db857600080fd5b50565b614dc48161474c565b8114614dcf57600080fd5b5056fea2646970667358221220b8ad1b6c85521bc8b65c35f3ea3e439538a91788541206f981db8ba391a2e02764736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000600000000000000000000000002e006cc67e282e1c92692e796287e269665c1741000000000000000000000000705b9dbd0d5607beafe12e2fb74d64268d3ba35f0000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d58587378326e783456384242524a37726b4d787879474c69523154557442795537693237544e7867537745662f00000000000000000000

Deployed Bytecode

0x6080604052600436106102725760003560e01c806370a082311161014f578063bf0d96c3116100c1578063e985e9c51161007a578063e985e9c514610932578063ee82e5a01461096f578063f2fde38b14610998578063f7d97577146109c1578063f968adbe146109ea578063fdea8e0b14610a1557610272565b8063bf0d96c31461082f578063c66828621461085a578063c87b56dd14610885578063d2cab056146108c2578063d5abeb01146108de578063da3ef23f1461090957610272565b80638ba4cc3c116101135780638ba4cc3c146107425780638da5cb5b1461076b57806395d89b4114610796578063a0712d68146107c1578063a22cb465146107dd578063b88d4fde1461080657610272565b806370a082311461066f578063715018a6146106ac5780637cb64759146106c35780637dc42975146106ec5780638693da201461071757610272565b806333bc1c5c116101e857806355f804b3116101ac57806355f804b31461054f5780635a4dd47d14610578578063620cc86c146105b55780636352211e146105de5780636c0360eb1461061b5780636f8b44b01461064657610272565b806333bc1c5c14610492578063375a069a146104bd5780633b91ceef146104e65780633ccfd60b1461050f57806342842e0e1461052657610272565b806318cae2691161023a57806318cae269146103705780631be52dc4146103ad57806323626df7146103ea57806323b872dd146104135780632a23d07d1461043c5780632eb4a7ab1461046757610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063095ea7b31461031c57806318160ddd14610345575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613c5b565b610a40565b6040516102ab919061426d565b60405180910390f35b3480156102c057600080fd5b506102c9610b22565b6040516102d691906142a3565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613d3e565b610bb4565b6040516103139190614206565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e9190613bae565b610c30565b005b34801561035157600080fd5b5061035a610d3b565b60405161036791906144a5565b60405180910390f35b34801561037c57600080fd5b5061039760048036038101906103929190613a2b565b610d52565b6040516103a491906144a5565b60405180910390f35b3480156103b957600080fd5b506103d460048036038101906103cf9190613a2b565b610d6a565b6040516103e191906144a5565b60405180910390f35b3480156103f657600080fd5b50610411600480360381019061040c9190613cb5565b610ed8565b005b34801561041f57600080fd5b5061043a60048036038101906104359190613a98565b61100f565b005b34801561044857600080fd5b5061045161101f565b60405161045e91906144a5565b60405180910390f35b34801561047357600080fd5b5061047c611025565b6040516104899190614288565b60405180910390f35b34801561049e57600080fd5b506104a761102b565b6040516104b4919061426d565b60405180910390f35b3480156104c957600080fd5b506104e460048036038101906104df9190613d3e565b61103e565b005b3480156104f257600080fd5b5061050d60048036038101906105089190613df8565b6110f3565b005b34801561051b57600080fd5b5061052461110d565b005b34801561053257600080fd5b5061054d60048036038101906105489190613a98565b611164565b005b34801561055b57600080fd5b5061057660048036038101906105719190613cf5565b611184565b005b34801561058457600080fd5b5061059f600480360381019061059a9190613d3e565b6111a6565b6040516105ac91906144a5565b60405180910390f35b3480156105c157600080fd5b506105dc60048036038101906105d79190613d3e565b611434565b005b3480156105ea57600080fd5b5061060560048036038101906106009190613d3e565b611446565b6040516106129190614206565b60405180910390f35b34801561062757600080fd5b5061063061145c565b60405161063d91906142a3565b60405180910390f35b34801561065257600080fd5b5061066d60048036038101906106689190613d3e565b6114ea565b005b34801561067b57600080fd5b5061069660048036038101906106919190613a2b565b6114fc565b6040516106a391906144a5565b60405180910390f35b3480156106b857600080fd5b506106c16115cc565b005b3480156106cf57600080fd5b506106ea60048036038101906106e59190613c2e565b6115e0565b005b3480156106f857600080fd5b506107016115f2565b60405161070e91906144a5565b60405180910390f35b34801561072357600080fd5b5061072c6115f8565b60405161073991906144a5565b60405180910390f35b34801561074e57600080fd5b5061076960048036038101906107649190613bae565b6115fe565b005b34801561077757600080fd5b506107806116b4565b60405161078d9190614206565b60405180910390f35b3480156107a257600080fd5b506107ab6116de565b6040516107b891906142a3565b60405180910390f35b6107db60048036038101906107d69190613d3e565b611770565b005b3480156107e957600080fd5b5061080460048036038101906107ff9190613b6e565b611cb3565b005b34801561081257600080fd5b5061082d60048036038101906108289190613aeb565b611e2b565b005b34801561083b57600080fd5b50610844611ea7565b60405161085191906144a5565b60405180910390f35b34801561086657600080fd5b5061086f611ead565b60405161087c91906142a3565b60405180910390f35b34801561089157600080fd5b506108ac60048036038101906108a79190613d3e565b611f3b565b6040516108b991906142a3565b60405180910390f35b6108dc60048036038101906108d79190613d98565b611fe5565b005b3480156108ea57600080fd5b506108f361236c565b60405161090091906144a5565b60405180910390f35b34801561091557600080fd5b50610930600480360381019061092b9190613cf5565b612372565b005b34801561093e57600080fd5b5061095960048036038101906109549190613a58565b612394565b604051610966919061426d565b60405180910390f35b34801561097b57600080fd5b5061099660048036038101906109919190613bee565b612428565b005b3480156109a457600080fd5b506109bf60048036038101906109ba9190613a2b565b612468565b005b3480156109cd57600080fd5b506109e860048036038101906109e39190613df8565b6124ec565b005b3480156109f657600080fd5b506109ff612506565b604051610a0c91906144a5565b60405180910390f35b348015610a2157600080fd5b50610a2a61250c565b604051610a37919061426d565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b0b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b1b5750610b1a8261251f565b5b9050919050565b606060028054610b3190614798565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5d90614798565b8015610baa5780601f10610b7f57610100808354040283529160200191610baa565b820191906000526020600020905b815481529060010190602001808311610b8d57829003601f168201915b5050505050905090565b6000610bbf82612589565b610bf5576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c3b82611446565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ca3576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cc26125d7565b73ffffffffffffffffffffffffffffffffffffffff1614158015610cf45750610cf281610ced6125d7565b612394565b155b15610d2b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d368383836125df565b505050565b6000610d45612691565b6001546000540303905090565b60166020528060005260406000206000915090505481565b600080600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b8152600401610dc89190614206565b60206040518083038186803b158015610de057600080fd5b505afa158015610df4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e189190613d6b565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231856040518263ffffffff1660e01b8152600401610e739190614206565b60206040518083038186803b158015610e8b57600080fd5b505afa158015610e9f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec39190613d6b565b610ecd919061459f565b905080915050919050565b610ee061269a565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015610f4a5750600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b610f89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8090614465565b60405180910390fd5b81600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b61101a838383612718565b505050565b60145481565b600f5481565b600e60019054906101000a900460ff1681565b61104661269a565b6000611050610d3b565b905060008211611095576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108c90614385565b60405180910390fd5b60105482826110a4919061459f565b11156110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc906143e5565b60405180910390fd5b6110ef3383612bce565b5050565b6110fb61269a565b81601181905550806012819055505050565b61111561269a565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611160573d6000803e3d6000fd5b5050565b61117f83838360405180602001604052806000815250611e2b565b505050565b61118c61269a565b80600c90805190602001906111a2929190613752565b5050565b600080600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016112049190614206565b60206040518083038186803b15801561121c57600080fd5b505afa158015611230573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112549190613d6b565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016112af9190614206565b60206040518083038186803b1580156112c757600080fd5b505afa1580156112db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ff9190613d6b565b611309919061459f565b9050600081601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061136857601554846113619190614626565b905061142a565b8184601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113b4919061459f565b1115611424576015548285601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611409919061459f565b6114139190614680565b61141d9190614626565b9050611429565b600090505b5b8092505050919050565b61143c61269a565b8060138190555050565b600061145182612bec565b600001519050919050565b600c805461146990614798565b80601f016020809104026020016040519081016040528092919081815260200182805461149590614798565b80156114e25780601f106114b7576101008083540402835291602001916114e2565b820191906000526020600020905b8154815290600101906020018083116114c557829003601f168201915b505050505081565b6114f261269a565b8060108190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611564576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6115d461269a565b6115de6000612e7b565b565b6115e861269a565b80600f8190555050565b60125481565b60155481565b61160661269a565b6000611610610d3b565b905060008211611655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164c90614385565b60405180910390fd5b6010548282611664919061459f565b11156116a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169c906143e5565b60405180910390fd5b6116af8383612bce565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546116ed90614798565b80601f016020809104026020016040519081016040528092919081815260200182805461171990614798565b80156117665780601f1061173b57610100808354040283529160200191611766565b820191906000526020600020905b81548152906001019060200180831161174957829003601f168201915b5050505050905090565b600260095414156117b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ad90614445565b60405180910390fd5b6002600981905550600e60019054906101000a900460ff1661180d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180490614485565b60405180910390fd5b6000611817610d3b565b90506000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016118769190614206565b60206040518083038186803b15801561188e57600080fd5b505afa1580156118a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118c69190613d6b565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016119219190614206565b60206040518083038186803b15801561193957600080fd5b505afa15801561194d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119719190613d6b565b61197b919061459f565b905060008084116119c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b890614385565b60405180910390fd5b601354841115611a06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fd90614325565b60405180910390fd5b6010548484611a15919061459f565b1115611a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4d906143e5565b60405180910390fd5b60125484601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611aa4919061459f565b1115611ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adc906142e5565b60405180910390fd5b81601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611b405760155484611b399190614626565b9050611c02565b8184601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b8c919061459f565b1115611bfc576015548285601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611be1919061459f565b611beb9190614680565b611bf59190614626565b9050611c01565b600090505b5b80341015611c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3c906142c5565b60405180910390fd5b611c4f3385612bce565b83601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c9e919061459f565b92505081905550505050600160098190555050565b611cbb6125d7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d20576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611d2d6125d7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611dda6125d7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e1f919061426d565b60405180910390a35050565b611e36848484612718565b611e558373ffffffffffffffffffffffffffffffffffffffff16612f41565b8015611e6a5750611e6884848484612f64565b155b15611ea1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60115481565b600d8054611eba90614798565b80601f0160208091040260200160405190810160405280929190818152602001828054611ee690614798565b8015611f335780601f10611f0857610100808354040283529160200191611f33565b820191906000526020600020905b815481529060010190602001808311611f1657829003601f168201915b505050505081565b6060611f4682612589565b611f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7c906143c5565b60405180910390fd5b6000611f8f6130c4565b90506000815111611faf5760405180602001604052806000815250611fdd565b80611fb984613156565b600d604051602001611fcd939291906141d5565b6040516020818303038152906040525b915050919050565b6002600954141561202b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202290614445565b60405180910390fd5b6002600981905550600e60009054906101000a900460ff16612082576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207990614405565b60405180910390fd5b600061208c610d3b565b9050600084116120d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c890614365565b60405180910390fd5b601354841115612116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210d90614325565b60405180910390fd5b6010548482612125919061459f565b1115612166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215d90614425565b60405180910390fd5b60115484601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121b4919061459f565b11156121f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ec906142e5565b60405180910390fd5b836014546122039190614626565b341015612245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223c906142c5565b60405180910390fd5b60003360405160200161225891906141ba565b6040516020818303038152906040528051906020012090506122be848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f54836132b7565b6122fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f490614305565b60405180910390fd5b6123073386612bce565b84601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612356919061459f565b9250508190555050506001600981905550505050565b60105481565b61237a61269a565b80600d9080519060200190612390929190613752565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61243061269a565b81600e60006101000a81548160ff02191690831515021790555080600e60016101000a81548160ff0219169083151502179055505050565b61247061269a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d790614345565b60405180910390fd5b6124e981612e7b565b50565b6124f461269a565b81601481905550806015819055505050565b60135481565b600e60009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612594612691565b111580156125a3575060005482105b80156125d0575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6126a26125d7565b73ffffffffffffffffffffffffffffffffffffffff166126c06116b4565b73ffffffffffffffffffffffffffffffffffffffff1614612716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270d906143a5565b60405180910390fd5b565b600061272382612bec565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461278e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166127af6125d7565b73ffffffffffffffffffffffffffffffffffffffff1614806127de57506127dd856127d86125d7565b612394565b5b8061282357506127ec6125d7565b73ffffffffffffffffffffffffffffffffffffffff1661280b84610bb4565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061285c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156128c3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128d085858560016132ce565b6128dc600084876125df565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612b5c576000548214612b5b57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612bc785858560016132d4565b5050505050565b612be88282604051806020016040528060008152506132da565b5050565b612bf46137d8565b600082905080612c02612691565b11158015612c11575060005481105b15612e44576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612e4257600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612d26578092505050612e76565b5b600115612e4157818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612e3c578092505050612e76565b612d27565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f8a6125d7565b8786866040518563ffffffff1660e01b8152600401612fac9493929190614221565b602060405180830381600087803b158015612fc657600080fd5b505af1925050508015612ff757506040513d601f19601f82011682018060405250810190612ff49190613c88565b60015b613071573d8060008114613027576040519150601f19603f3d011682016040523d82523d6000602084013e61302c565b606091505b50600081511415613069576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c80546130d390614798565b80601f01602080910402602001604051908101604052809291908181526020018280546130ff90614798565b801561314c5780601f106131215761010080835404028352916020019161314c565b820191906000526020600020905b81548152906001019060200180831161312f57829003601f168201915b5050505050905090565b6060600082141561319e576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506132b2565b600082905060005b600082146131d05780806131b9906147fb565b915050600a826131c991906145f5565b91506131a6565b60008167ffffffffffffffff8111156131ec576131eb614955565b5b6040519080825280601f01601f19166020018201604052801561321e5781602001600182028036833780820191505090505b5090505b600085146132ab576001826132379190614680565b9150600a856132469190614868565b6030613252919061459f565b60f81b81838151811061326857613267614926565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132a491906145f5565b9450613222565b8093505050505b919050565b6000826132c485846132ec565b1490509392505050565b50505050565b50505050565b6132e78383836001613342565b505050565b60008082905060005b8451811015613337576133228286838151811061331557613314614926565b5b6020026020010151613710565b9150808061332f906147fb565b9150506132f5565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156133af576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156133ea576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6133f760008683876132ce565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156135c157506135c08773ffffffffffffffffffffffffffffffffffffffff16612f41565b5b15613687575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46136366000888480600101955088612f64565b61366c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156135c757826000541461368257600080fd5b6136f3565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613688575b81600081905550505061370960008683876132d4565b5050505050565b600081831061372857613723828461373b565b613733565b613732838361373b565b5b905092915050565b600082600052816020526040600020905092915050565b82805461375e90614798565b90600052602060002090601f01602090048101928261378057600085556137c7565b82601f1061379957805160ff19168380011785556137c7565b828001600101855582156137c7579182015b828111156137c65782518255916020019190600101906137ab565b5b5090506137d4919061381b565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561383457600081600090555060010161381c565b5090565b600061384b613846846144e5565b6144c0565b90508281526020810184848401111561386757613866614993565b5b613872848285614756565b509392505050565b600061388d61388884614516565b6144c0565b9050828152602081018484840111156138a9576138a8614993565b5b6138b4848285614756565b509392505050565b6000813590506138cb81614d31565b92915050565b60008083601f8401126138e7576138e6614989565b5b8235905067ffffffffffffffff81111561390457613903614984565b5b6020830191508360208202830111156139205761391f61498e565b5b9250929050565b60008135905061393681614d48565b92915050565b60008135905061394b81614d5f565b92915050565b60008135905061396081614d76565b92915050565b60008151905061397581614d76565b92915050565b600082601f8301126139905761398f614989565b5b81356139a0848260208601613838565b91505092915050565b6000813590506139b881614d8d565b92915050565b6000813590506139cd81614da4565b92915050565b600082601f8301126139e8576139e7614989565b5b81356139f884826020860161387a565b91505092915050565b600081359050613a1081614dbb565b92915050565b600081519050613a2581614dbb565b92915050565b600060208284031215613a4157613a4061499d565b5b6000613a4f848285016138bc565b91505092915050565b60008060408385031215613a6f57613a6e61499d565b5b6000613a7d858286016138bc565b9250506020613a8e858286016138bc565b9150509250929050565b600080600060608486031215613ab157613ab061499d565b5b6000613abf868287016138bc565b9350506020613ad0868287016138bc565b9250506040613ae186828701613a01565b9150509250925092565b60008060008060808587031215613b0557613b0461499d565b5b6000613b13878288016138bc565b9450506020613b24878288016138bc565b9350506040613b3587828801613a01565b925050606085013567ffffffffffffffff811115613b5657613b55614998565b5b613b628782880161397b565b91505092959194509250565b60008060408385031215613b8557613b8461499d565b5b6000613b93858286016138bc565b9250506020613ba485828601613927565b9150509250929050565b60008060408385031215613bc557613bc461499d565b5b6000613bd3858286016138bc565b9250506020613be485828601613a01565b9150509250929050565b60008060408385031215613c0557613c0461499d565b5b6000613c1385828601613927565b9250506020613c2485828601613927565b9150509250929050565b600060208284031215613c4457613c4361499d565b5b6000613c528482850161393c565b91505092915050565b600060208284031215613c7157613c7061499d565b5b6000613c7f84828501613951565b91505092915050565b600060208284031215613c9e57613c9d61499d565b5b6000613cac84828501613966565b91505092915050565b60008060408385031215613ccc57613ccb61499d565b5b6000613cda858286016139a9565b9250506020613ceb858286016139be565b9150509250929050565b600060208284031215613d0b57613d0a61499d565b5b600082013567ffffffffffffffff811115613d2957613d28614998565b5b613d35848285016139d3565b91505092915050565b600060208284031215613d5457613d5361499d565b5b6000613d6284828501613a01565b91505092915050565b600060208284031215613d8157613d8061499d565b5b6000613d8f84828501613a16565b91505092915050565b600080600060408486031215613db157613db061499d565b5b6000613dbf86828701613a01565b935050602084013567ffffffffffffffff811115613de057613ddf614998565b5b613dec868287016138d1565b92509250509250925092565b60008060408385031215613e0f57613e0e61499d565b5b6000613e1d85828601613a01565b9250506020613e2e85828601613a01565b9150509250929050565b613e41816146b4565b82525050565b613e58613e53826146b4565b614844565b82525050565b613e67816146c6565b82525050565b613e76816146d2565b82525050565b6000613e878261455c565b613e918185614572565b9350613ea1818560208601614765565b613eaa816149a2565b840191505092915050565b6000613ec082614567565b613eca8185614583565b9350613eda818560208601614765565b613ee3816149a2565b840191505092915050565b6000613ef982614567565b613f038185614594565b9350613f13818560208601614765565b80840191505092915050565b60008154613f2c81614798565b613f368186614594565b94506001821660008114613f515760018114613f6257613f95565b60ff19831686528186019350613f95565b613f6b85614547565b60005b83811015613f8d57815481890152600182019150602081019050613f6e565b838801955050505b50505092915050565b6000613fab601183614583565b9150613fb6826149c0565b602082019050919050565b6000613fce602583614583565b9150613fd9826149e9565b604082019050919050565b6000613ff1600e83614583565b9150613ffc82614a38565b602082019050919050565b6000614014601a83614583565b915061401f82614a61565b602082019050919050565b6000614037602683614583565b915061404282614a8a565b604082019050919050565b600061405a602183614583565b915061406582614ad9565b604082019050919050565b600061407d602283614583565b915061408882614b28565b604082019050919050565b60006140a0602083614583565b91506140ab82614b77565b602082019050919050565b60006140c3602f83614583565b91506140ce82614ba0565b604082019050919050565b60006140e6601383614583565b91506140f182614bef565b602082019050919050565b6000614109602283614583565b915061411482614c18565b604082019050919050565b600061412c601283614583565b915061413782614c67565b602082019050919050565b600061414f601f83614583565b915061415a82614c90565b602082019050919050565b6000614172602183614583565b915061417d82614cb9565b604082019050919050565b6000614195601f83614583565b91506141a082614d08565b602082019050919050565b6141b48161474c565b82525050565b60006141c68284613e47565b60148201915081905092915050565b60006141e18286613eee565b91506141ed8285613eee565b91506141f98284613f1f565b9150819050949350505050565b600060208201905061421b6000830184613e38565b92915050565b60006080820190506142366000830187613e38565b6142436020830186613e38565b61425060408301856141ab565b81810360608301526142628184613e7c565b905095945050505050565b60006020820190506142826000830184613e5e565b92915050565b600060208201905061429d6000830184613e6d565b92915050565b600060208201905081810360008301526142bd8184613eb5565b905092915050565b600060208201905081810360008301526142de81613f9e565b9050919050565b600060208201905081810360008301526142fe81613fc1565b9050919050565b6000602082019050818103600083015261431e81613fe4565b9050919050565b6000602082019050818103600083015261433e81614007565b9050919050565b6000602082019050818103600083015261435e8161402a565b9050919050565b6000602082019050818103600083015261437e8161404d565b9050919050565b6000602082019050818103600083015261439e81614070565b9050919050565b600060208201905081810360008301526143be81614093565b9050919050565b600060208201905081810360008301526143de816140b6565b9050919050565b600060208201905081810360008301526143fe816140d9565b9050919050565b6000602082019050818103600083015261441e816140fc565b9050919050565b6000602082019050818103600083015261443e8161411f565b9050919050565b6000602082019050818103600083015261445e81614142565b9050919050565b6000602082019050818103600083015261447e81614165565b9050919050565b6000602082019050818103600083015261449e81614188565b9050919050565b60006020820190506144ba60008301846141ab565b92915050565b60006144ca6144db565b90506144d682826147ca565b919050565b6000604051905090565b600067ffffffffffffffff821115614500576144ff614955565b5b614509826149a2565b9050602081019050919050565b600067ffffffffffffffff82111561453157614530614955565b5b61453a826149a2565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006145aa8261474c565b91506145b58361474c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145ea576145e9614899565b5b828201905092915050565b60006146008261474c565b915061460b8361474c565b92508261461b5761461a6148c8565b5b828204905092915050565b60006146318261474c565b915061463c8361474c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561467557614674614899565b5b828202905092915050565b600061468b8261474c565b91506146968361474c565b9250828210156146a9576146a8614899565b5b828203905092915050565b60006146bf8261472c565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000614713826146b4565b9050919050565b6000614725826146b4565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614783578082015181840152602081019050614768565b83811115614792576000848401525b50505050565b600060028204905060018216806147b057607f821691505b602082108114156147c4576147c36148f7565b5b50919050565b6147d3826149a2565b810181811067ffffffffffffffff821117156147f2576147f1614955565b5b80604052505050565b60006148068261474c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561483957614838614899565b5b600182019050919050565b600061484f82614856565b9050919050565b6000614861826149b3565b9050919050565b60006148738261474c565b915061487e8361474c565b92508261488e5761488d6148c8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4e6f7420656e6f75676820657468657221000000000000000000000000000000600082015250565b7f596f75277265206e6f7420616c6c6f77656420746f206d696e7420746869732060008201527f4d75636821000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b7f5175616e74697479204578636565647320546865204c696d6974000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5175616e74697479204d75737420426520486967686572205468616e205a657260008201527f6f00000000000000000000000000000000000000000000000000000000000000602082015250565b7f5175616e74697479206d75737420626520686967686572207468616e207a657260008201527f6f21000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d617820737570706c7920726561636865642100000000000000000000000000600082015250565b7f5468652077686974656c6973742073616c65206973206e6f7420656e61626c6560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d617820537570706c7920526561636865640000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f546f6b656e20416464726573732063616e6e6f7420626520616464726573732060008201527f3000000000000000000000000000000000000000000000000000000000000000602082015250565b7f546865207075626c69632073616c65206973206e6f7420656e61626c65642100600082015250565b614d3a816146b4565b8114614d4557600080fd5b50565b614d51816146c6565b8114614d5c57600080fd5b50565b614d68816146d2565b8114614d7357600080fd5b50565b614d7f816146dc565b8114614d8a57600080fd5b50565b614d9681614708565b8114614da157600080fd5b50565b614dad8161471a565b8114614db857600080fd5b50565b614dc48161474c565b8114614dcf57600080fd5b5056fea2646970667358221220b8ad1b6c85521bc8b65c35f3ea3e439538a91788541206f981db8ba391a2e02764736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000600000000000000000000000002e006cc67e282e1c92692e796287e269665c1741000000000000000000000000705b9dbd0d5607beafe12e2fb74d64268d3ba35f0000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d58587378326e783456384242524a37726b4d787879474c69523154557442795537693237544e7867537745662f00000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmXXsx2nx4V8BBRJ7rkMxxyGLiR1TUtByU7i27TNxgSwEf/
Arg [1] : _tokenAddressA (address): 0x2e006CC67E282E1c92692E796287E269665C1741
Arg [2] : _tokenAddressB (address): 0x705B9DBD0D5607BEAFe12E2fB74d64268d3bA35F

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 0000000000000000000000002e006cc67e282e1c92692e796287e269665c1741
Arg [2] : 000000000000000000000000705b9dbd0d5607beafe12e2fb74d64268d3ba35f
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [4] : 697066733a2f2f516d58587378326e783456384242524a37726b4d787879474c
Arg [5] : 69523154557442795537693237544e7867537745662f00000000000000000000


Deployed Bytecode Sourcemap

57415:7375:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39137:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42250:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43753:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43316:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38386:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57956:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63638:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62935:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44618:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57868:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57687:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57658:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60652:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62252:140;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64644:143;;;;;;;;;;;;;:::i;:::-;;44859:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62772:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63856:576;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62432:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42058:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57560:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61771:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39506:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16828:103;;;;;;;;;;;;;:::i;:::-;;61910:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57796:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57911:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63281:302;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16180:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42419:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59430:1195;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44029:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45115:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57758:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57588:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61081:644;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58418:984;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57719:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64440:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44387:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62049:139;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17086:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62582:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57833:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57632:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39137:305;39239:4;39291:25;39276:40;;;:11;:40;;;;:105;;;;39348:33;39333:48;;;:11;:48;;;;39276:105;:158;;;;39398:36;39422:11;39398:23;:36::i;:::-;39276:158;39256:178;;39137:305;;;:::o;42250:100::-;42304:13;42337:5;42330:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42250:100;:::o;43753:204::-;43821:7;43846:16;43854:7;43846;:16::i;:::-;43841:64;;43871:34;;;;;;;;;;;;;;43841:64;43925:15;:24;43941:7;43925:24;;;;;;;;;;;;;;;;;;;;;43918:31;;43753:204;;;:::o;43316:371::-;43389:13;43405:24;43421:7;43405:15;:24::i;:::-;43389:40;;43450:5;43444:11;;:2;:11;;;43440:48;;;43464:24;;;;;;;;;;;;;;43440:48;43521:5;43505:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;43531:37;43548:5;43555:12;:10;:12::i;:::-;43531:16;:37::i;:::-;43530:38;43505:63;43501:138;;;43592:35;;;;;;;;;;;;;;43501:138;43651:28;43660:2;43664:7;43673:5;43651:8;:28::i;:::-;43378:309;43316:371;;:::o;38386:303::-;38430:7;38655:15;:13;:15::i;:::-;38640:12;;38624:13;;:28;:46;38617:53;;38386:303;:::o;57956:55::-;;;;;;;;;;;;;;;;;:::o;63638:182::-;63698:7;63718:13;63763:6;;;;;;;;;;;:16;;;63780:8;63763:26;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;63734:6;;;;;;;;;;;:16;;;63751:8;63734:26;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:55;;;;:::i;:::-;63718:71;;63807:5;63800:12;;;63638:182;;;:::o;62935:308::-;16066:13;:11;:13::i;:::-;63086:1:::1;63051:37;;63059:14;63051:37;;;;:78;;;;;63127:1;63092:37;;63100:14;63092:37;;;;63051:78;63043:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;63187:14;63178:6;;:23;;;;;;;;;;;;;;;;;;63221:14;63212:6;;:23;;;;;;;;;;;;;;;;;;62935:308:::0;;:::o;44618:170::-;44752:28;44762:4;44768:2;44772:7;44752:9;:28::i;:::-;44618:170;;;:::o;57868:36::-;;;;:::o;57687:25::-;;;;:::o;57658:22::-;;;;;;;;;;;;;:::o;60652:288::-;16066:13;:11;:13::i;:::-;60717:14:::1;60734:13;:11;:13::i;:::-;60717:30;;60777:1;60766:8;:12;60758:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;60857:9;;60845:8;60836:6;:17;;;;:::i;:::-;:30;;60828:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;60901:31;60911:10;60923:8;60901:9;:31::i;:::-;60706:234;60652:288:::0;:::o;62252:140::-;16066:13;:11;:13::i;:::-;62346:8:::1;62331:12;:23;;;;62377:7;62365:9;:19;;;;62252:140:::0;;:::o;64644:143::-;16066:13;:11;:13::i;:::-;64692:15:::1;64710:21;64692:39;;64750:10;64742:28;;:37;64771:7;64742:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;64681:106;64644:143::o:0;44859:185::-;44997:39;45014:4;45020:2;45024:7;44997:39;;;;;;;;;;;;:16;:39::i;:::-;44859:185;;;:::o;62772:104::-;16066:13;:11;:13::i;:::-;62857:11:::1;62847:7;:21;;;;;;;;;;;;:::i;:::-;;62772:104:::0;:::o;63856:576::-;63912:7;63932:20;63986:6;;;;;;;;;;;:16;;;64003:10;63986:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;63955:6;;;;;;;;;;;:16;;;63972:10;63955:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:59;;;;:::i;:::-;63932:82;;64025:17;64094:12;64058:20;:32;64079:10;64058:32;;;;;;;;;;;;;;;;:48;64055:341;;64146:10;;64135:8;:21;;;;:::i;:::-;64123:33;;64055:341;;;64224:12;64213:8;64178:20;:32;64199:10;64178:32;;;;;;;;;;;;;;;;:43;;;;:::i;:::-;:58;64174:222;;;64328:10;;64312:12;64301:8;64266:20;:32;64287:10;64266:32;;;;;;;;;;;;;;;;:43;;;;:::i;:::-;:58;;;;:::i;:::-;64265:73;;;;:::i;:::-;64253:85;;64174:222;;;64383:1;64371:13;;64174:222;64055:341;64415:9;64408:16;;;;63856:576;;;:::o;62432:86::-;16066:13;:11;:13::i;:::-;62503:7:::1;62492:8;:18;;;;62432:86:::0;:::o;42058:125::-;42122:7;42149:21;42162:7;42149:12;:21::i;:::-;:26;;;42142:33;;42058:125;;;:::o;57560:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;61771:94::-;16066:13;:11;:13::i;:::-;61850:7:::1;61838:9;:19;;;;61771:94:::0;:::o;39506:206::-;39570:7;39611:1;39594:19;;:5;:19;;;39590:60;;;39622:28;;;;;;;;;;;;;;39590:60;39676:12;:19;39689:5;39676:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;39668:36;;39661:43;;39506:206;;;:::o;16828:103::-;16066:13;:11;:13::i;:::-;16893:30:::1;16920:1;16893:18;:30::i;:::-;16828:103::o:0;61910:104::-;16066:13;:11;:13::i;:::-;61995:11:::1;61982:10;:24;;;;61910:104:::0;:::o;57796:30::-;;;;:::o;57911:38::-;;;;:::o;63281:302::-;16066:13;:11;:13::i;:::-;63362:14:::1;63379:13;:11;:13::i;:::-;63362:30;;63422:1;63411:8;:12;63403:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;63502:9;;63490:8;63481:6;:17;;;;:::i;:::-;:30;;63473:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;63546:29;63556:8;63566;63546:9;:29::i;:::-;63351:232;63281:302:::0;;:::o;16180:87::-;16226:7;16253:6;;;;;;;;;;;16246:13;;16180:87;:::o;42419:104::-;42475:13;42508:7;42501:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42419:104;:::o;59430:1195::-;1883:1;2481:7;;:19;;2473:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1883:1;2614:7;:18;;;;59511:10:::1;;;;;;;;;;;59503:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;59568:14;59585:13;:11;:13::i;:::-;59568:30;;59609:20;59663:6;;;;;;;;;;;:16;;;59680:10;59663:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;59632:6;;;;;;;;;;;:16;;;59649:10;59632:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:59;;;;:::i;:::-;59609:82;;59702:17;59749:1:::0;59738:8:::1;:12;59730:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;59820:8;;59808;:20;;59800:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;59899:9;;59887:8;59878:6;:17;;;;:::i;:::-;:30;;59870:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;60012:9;;60000:8;59965:20;:32;59986:10;59965:32;;;;;;;;;;;;;;;;:43;;;;:::i;:::-;:56;;59943:143;;;;;;;;;;;;:::i;:::-;;;;;;;;;60146:12;60110:20;:32;60131:10;60110:32;;;;;;;;;;;;;;;;:48;60107:341;;60198:10;;60187:8;:21;;;;:::i;:::-;60175:33;;60107:341;;;60276:12;60265:8;60230:20;:32;60251:10;60230:32;;;;;;;;;;;;;;;;:43;;;;:::i;:::-;:58;60226:222;;;60380:10;;60364:12;60353:8;60318:20;:32;60339:10;60318:32;;;;;;;;;;;;;;;;:43;;;;:::i;:::-;:58;;;;:::i;:::-;60317:73;;;;:::i;:::-;60305:85;;60226:222;;;60435:1;60423:13;;60226:222;60107:341;60489:9;60476;:22;;60468:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;60531:31;60541:10;60553:8;60531:9;:31::i;:::-;60609:8;60573:20;:32;60594:10;60573:32;;;;;;;;;;;;;;;;:44;;;;;;;:::i;:::-;;;;;;;;59492:1133;;;1839:1:::0;2793:7;:22;;;;59430:1195;:::o;44029:287::-;44140:12;:10;:12::i;:::-;44128:24;;:8;:24;;;44124:54;;;44161:17;;;;;;;;;;;;;;44124:54;44236:8;44191:18;:32;44210:12;:10;:12::i;:::-;44191:32;;;;;;;;;;;;;;;:42;44224:8;44191:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;44289:8;44260:48;;44275:12;:10;:12::i;:::-;44260:48;;;44299:8;44260:48;;;;;;:::i;:::-;;;;;;;;44029:287;;:::o;45115:369::-;45282:28;45292:4;45298:2;45302:7;45282:9;:28::i;:::-;45325:15;:2;:13;;;:15::i;:::-;:76;;;;;45345:56;45376:4;45382:2;45386:7;45395:5;45345:30;:56::i;:::-;45344:57;45325:76;45321:156;;;45425:40;;;;;;;;;;;;;;45321:156;45115:369;;;;:::o;57758:31::-;;;;:::o;57588:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;61081:644::-;61199:13;61252:16;61260:7;61252;:16::i;:::-;61230:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;61356:28;61387:10;:8;:10::i;:::-;61356:41;;61461:1;61436:14;61430:28;:32;:287;;;;;;;;;;;;;;;;;61554:14;61595:18;:7;:16;:18::i;:::-;61640:13;61511:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61430:287;61410:307;;;61081:644;;;:::o;58418:984::-;1883:1;2481:7;;:19;;2473:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1883:1;2614:7;:18;;;;58571:7:::1;;;;;;;;;;;58563:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;58629:14;58646:13;:11;:13::i;:::-;58629:30;;58689:1;58678:8;:12;58670:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;58759:8;;58747;:20;;58739:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;58838:9;;58826:8;58817:6;:17;;;;:::i;:::-;:30;;58809:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;58950:12;;58938:8;58903:20;:32;58924:10;58903:32;;;;;;;;;;;;;;;;:43;;;;:::i;:::-;:59;;58881:146;;;;;;;;;;;;:::i;:::-;;;;;;;;;59073:8;59059:11;;:22;;;;:::i;:::-;59046:9;:35;;59038:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;59116:12;59158:10;59141:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;59131:39;;;;;;59116:54;;59203:50;59222:12;;59203:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59236:10;;59248:4;59203:18;:50::i;:::-;59181:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;59308:31;59318:10;59330:8;59308:9;:31::i;:::-;59386:8;59350:20;:32;59371:10;59350:32;;;;;;;;;;;;;;;;:44;;;;;;;:::i;:::-;;;;;;;;58552:850;;1839:1:::0;2793:7;:22;;;;58418:984;;;:::o;57719:32::-;;;;:::o;64440:151::-;16066:13;:11;:13::i;:::-;64566:17:::1;64550:13;:33;;;;;;;;;;;;:::i;:::-;;64440:151:::0;:::o;44387:164::-;44484:4;44508:18;:25;44527:5;44508:25;;;;;;;;;;;;;;;:35;44534:8;44508:35;;;;;;;;;;;;;;;;;;;;;;;;;44501:42;;44387:164;;;;:::o;62049:139::-;16066:13;:11;:13::i;:::-;62137:8:::1;62127:7;;:18;;;;;;;;;;;;;;;;;;62169:11;62156:10;;:24;;;;;;;;;;;;;;;;;;62049:139:::0;;:::o;17086:201::-;16066:13;:11;:13::i;:::-;17195:1:::1;17175:22;;:8;:22;;;;17167:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;17251:28;17270:8;17251:18;:28::i;:::-;17086:201:::0;:::o;62582:162::-;16066:13;:11;:13::i;:::-;62687:14:::1;62673:11;:28;;;;62725:11;62712:10;:24;;;;62582:162:::0;;:::o;57833:28::-;;;;:::o;57632:19::-;;;;;;;;;;;;;:::o;29034:157::-;29119:4;29158:25;29143:40;;;:11;:40;;;;29136:47;;29034:157;;;:::o;45739:174::-;45796:4;45839:7;45820:15;:13;:15::i;:::-;:26;;:53;;;;;45860:13;;45850:7;:23;45820:53;:85;;;;;45878:11;:20;45890:7;45878:20;;;;;;;;;;;:27;;;;;;;;;;;;45877:28;45820:85;45813:92;;45739:174;;;:::o;14731:98::-;14784:7;14811:10;14804:17;;14731:98;:::o;53896:196::-;54038:2;54011:15;:24;54027:7;54011:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;54076:7;54072:2;54056:28;;54065:5;54056:28;;;;;;;;;;;;53896:196;;;:::o;38160:92::-;38216:7;38243:1;38236:8;;38160:92;:::o;16345:132::-;16420:12;:10;:12::i;:::-;16409:23;;:7;:5;:7::i;:::-;:23;;;16401:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16345:132::o;48839:2130::-;48954:35;48992:21;49005:7;48992:12;:21::i;:::-;48954:59;;49052:4;49030:26;;:13;:18;;;:26;;;49026:67;;49065:28;;;;;;;;;;;;;;49026:67;49106:22;49148:4;49132:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;49169:36;49186:4;49192:12;:10;:12::i;:::-;49169:16;:36::i;:::-;49132:73;:126;;;;49246:12;:10;:12::i;:::-;49222:36;;:20;49234:7;49222:11;:20::i;:::-;:36;;;49132:126;49106:153;;49277:17;49272:66;;49303:35;;;;;;;;;;;;;;49272:66;49367:1;49353:16;;:2;:16;;;49349:52;;;49378:23;;;;;;;;;;;;;;49349:52;49414:43;49436:4;49442:2;49446:7;49455:1;49414:21;:43::i;:::-;49522:35;49539:1;49543:7;49552:4;49522:8;:35::i;:::-;49883:1;49853:12;:18;49866:4;49853:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49927:1;49899:12;:16;49912:2;49899:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49945:31;49979:11;:20;49991:7;49979:20;;;;;;;;;;;49945:54;;50030:2;50014:8;:13;;;:18;;;;;;;;;;;;;;;;;;50080:15;50047:8;:23;;;:49;;;;;;;;;;;;;;;;;;50348:19;50380:1;50370:7;:11;50348:33;;50396:31;50430:11;:24;50442:11;50430:24;;;;;;;;;;;50396:58;;50498:1;50473:27;;:8;:13;;;;;;;;;;;;:27;;;50469:384;;;50683:13;;50668:11;:28;50664:174;;50737:4;50721:8;:13;;;:20;;;;;;;;;;;;;;;;;;50790:13;:28;;;50764:8;:23;;;:54;;;;;;;;;;;;;;;;;;50664:174;50469:384;49828:1036;;;50900:7;50896:2;50881:27;;50890:4;50881:27;;;;;;;;;;;;50919:42;50940:4;50946:2;50950:7;50959:1;50919:20;:42::i;:::-;48943:2026;;48839:2130;;;:::o;45921:104::-;45990:27;46000:2;46004:8;45990:27;;;;;;;;;;;;:9;:27::i;:::-;45921:104;;:::o;40887:1109::-;40949:21;;:::i;:::-;40983:12;40998:7;40983:22;;41066:4;41047:15;:13;:15::i;:::-;:23;;:47;;;;;41081:13;;41074:4;:20;41047:47;41043:886;;;41115:31;41149:11;:17;41161:4;41149:17;;;;;;;;;;;41115:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41190:9;:16;;;41185:729;;41261:1;41235:28;;:9;:14;;;:28;;;41231:101;;41299:9;41292:16;;;;;;41231:101;41634:261;41641:4;41634:261;;;41674:6;;;;;;;;41719:11;:17;41731:4;41719:17;;;;;;;;;;;41707:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41793:1;41767:28;;:9;:14;;;:28;;;41763:109;;41835:9;41828:16;;;;;;41763:109;41634:261;;;41185:729;41096:833;41043:886;41957:31;;;;;;;;;;;;;;40887:1109;;;;:::o;17447:191::-;17521:16;17540:6;;;;;;;;;;;17521:25;;17566:8;17557:6;;:17;;;;;;;;;;;;;;;;;;17621:8;17590:40;;17611:8;17590:40;;;;;;;;;;;;17510:128;17447:191;:::o;18878:326::-;18938:4;19195:1;19173:7;:19;;;:23;19166:30;;18878:326;;;:::o;54584:667::-;54747:4;54784:2;54768:36;;;54805:12;:10;:12::i;:::-;54819:4;54825:7;54834:5;54768:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;54764:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55019:1;55002:6;:13;:18;54998:235;;;55048:40;;;;;;;;;;;;;;54998:235;55191:6;55185:13;55176:6;55172:2;55168:15;55161:38;54764:480;54897:45;;;54887:55;;;:6;:55;;;;54880:62;;;54584:667;;;;;;:::o;60965:108::-;61025:13;61058:7;61051:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60965:108;:::o;11985:723::-;12041:13;12271:1;12262:5;:10;12258:53;;;12289:10;;;;;;;;;;;;;;;;;;;;;12258:53;12321:12;12336:5;12321:20;;12352:14;12377:78;12392:1;12384:4;:9;12377:78;;12410:8;;;;;:::i;:::-;;;;12441:2;12433:10;;;;;:::i;:::-;;;12377:78;;;12465:19;12497:6;12487:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12465:39;;12515:154;12531:1;12522:5;:10;12515:154;;12559:1;12549:11;;;;;:::i;:::-;;;12626:2;12618:5;:10;;;;:::i;:::-;12605:2;:24;;;;:::i;:::-;12592:39;;12575:6;12582;12575:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;12655:2;12646:11;;;;;:::i;:::-;;;12515:154;;;12693:6;12679:21;;;;;11985:723;;;;:::o;4049:190::-;4174:4;4227;4198:25;4211:5;4218:4;4198:12;:25::i;:::-;:33;4191:40;;4049:190;;;;;:::o;55899:159::-;;;;;:::o;56717:158::-;;;;;:::o;46388:163::-;46511:32;46517:2;46521:8;46531:5;46538:4;46511:5;:32::i;:::-;46388:163;;;:::o;4916:296::-;4999:7;5019:20;5042:4;5019:27;;5062:9;5057:118;5081:5;:12;5077:1;:16;5057:118;;;5130:33;5140:12;5154:5;5160:1;5154:8;;;;;;;;:::i;:::-;;;;;;;;5130:9;:33::i;:::-;5115:48;;5095:3;;;;;:::i;:::-;;;;5057:118;;;;5192:12;5185:19;;;4916:296;;;;:::o;46810:1775::-;46949:20;46972:13;;46949:36;;47014:1;47000:16;;:2;:16;;;46996:48;;;47025:19;;;;;;;;;;;;;;46996:48;47071:1;47059:8;:13;47055:44;;;47081:18;;;;;;;;;;;;;;47055:44;47112:61;47142:1;47146:2;47150:12;47164:8;47112:21;:61::i;:::-;47485:8;47450:12;:16;47463:2;47450:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47549:8;47509:12;:16;47522:2;47509:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47608:2;47575:11;:25;47587:12;47575:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;47675:15;47625:11;:25;47637:12;47625:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;47708:20;47731:12;47708:35;;47758:11;47787:8;47772:12;:23;47758:37;;47816:4;:23;;;;;47824:15;:2;:13;;;:15::i;:::-;47816:23;47812:641;;;47860:314;47916:12;47912:2;47891:38;;47908:1;47891:38;;;;;;;;;;;;47957:69;47996:1;48000:2;48004:14;;;;;;48020:5;47957:30;:69::i;:::-;47952:174;;48062:40;;;;;;;;;;;;;;47952:174;48169:3;48153:12;:19;;47860:314;;48255:12;48238:13;;:29;48234:43;;48269:8;;;48234:43;47812:641;;;48318:120;48374:14;;;;;;48370:2;48349:40;;48366:1;48349:40;;;;;;;;;;;;48433:3;48417:12;:19;;48318:120;;47812:641;48483:12;48467:13;:28;;;;47425:1082;;48517:60;48546:1;48550:2;48554:12;48568:8;48517:20;:60::i;:::-;46938:1647;46810:1775;;;;:::o;11123:149::-;11186:7;11217:1;11213;:5;:51;;11244:20;11259:1;11262;11244:14;:20::i;:::-;11213:51;;;11221:20;11236:1;11239;11221:14;:20::i;:::-;11213:51;11206:58;;11123:149;;;;:::o;11280:268::-;11348:13;11455:1;11449:4;11442:15;11484:1;11478:4;11471:15;11525:4;11519;11509:21;11500:30;;11280: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;2508:175::-;2572:5;2610:6;2597:20;2588:29;;2626:51;2671:5;2626:51;:::i;:::-;2508:175;;;;:::o;2689:::-;2753:5;2791:6;2778:20;2769:29;;2807:51;2852:5;2807:51;:::i;:::-;2689:175;;;;:::o;2884:340::-;2940:5;2989:3;2982:4;2974:6;2970:17;2966:27;2956:122;;2997:79;;:::i;:::-;2956:122;3114:6;3101:20;3139:79;3214:3;3206:6;3199:4;3191:6;3187:17;3139:79;:::i;:::-;3130:88;;2946:278;2884:340;;;;:::o;3230:139::-;3276:5;3314:6;3301:20;3292:29;;3330:33;3357:5;3330:33;:::i;:::-;3230:139;;;;:::o;3375:143::-;3432:5;3463:6;3457:13;3448:22;;3479:33;3506:5;3479:33;:::i;:::-;3375:143;;;;:::o;3524:329::-;3583:6;3632:2;3620:9;3611:7;3607:23;3603:32;3600:119;;;3638:79;;:::i;:::-;3600:119;3758:1;3783:53;3828:7;3819:6;3808:9;3804:22;3783:53;:::i;:::-;3773:63;;3729:117;3524:329;;;;:::o;3859:474::-;3927:6;3935;3984:2;3972:9;3963:7;3959:23;3955:32;3952:119;;;3990:79;;:::i;:::-;3952:119;4110:1;4135:53;4180:7;4171:6;4160:9;4156:22;4135:53;:::i;:::-;4125:63;;4081:117;4237:2;4263:53;4308:7;4299:6;4288:9;4284:22;4263:53;:::i;:::-;4253:63;;4208:118;3859:474;;;;;:::o;4339:619::-;4416:6;4424;4432;4481:2;4469:9;4460:7;4456:23;4452:32;4449:119;;;4487:79;;:::i;:::-;4449:119;4607:1;4632:53;4677:7;4668:6;4657:9;4653:22;4632:53;:::i;:::-;4622:63;;4578:117;4734:2;4760:53;4805:7;4796:6;4785:9;4781:22;4760:53;:::i;:::-;4750:63;;4705:118;4862:2;4888:53;4933:7;4924:6;4913:9;4909:22;4888:53;:::i;:::-;4878:63;;4833:118;4339:619;;;;;:::o;4964:943::-;5059:6;5067;5075;5083;5132:3;5120:9;5111:7;5107:23;5103:33;5100:120;;;5139:79;;:::i;:::-;5100:120;5259:1;5284:53;5329:7;5320:6;5309:9;5305:22;5284:53;:::i;:::-;5274:63;;5230:117;5386:2;5412:53;5457:7;5448:6;5437:9;5433:22;5412:53;:::i;:::-;5402:63;;5357:118;5514:2;5540:53;5585:7;5576:6;5565:9;5561:22;5540:53;:::i;:::-;5530:63;;5485:118;5670:2;5659:9;5655:18;5642:32;5701:18;5693:6;5690:30;5687:117;;;5723:79;;:::i;:::-;5687:117;5828:62;5882:7;5873:6;5862:9;5858:22;5828:62;:::i;:::-;5818:72;;5613:287;4964:943;;;;;;;:::o;5913:468::-;5978:6;5986;6035:2;6023:9;6014:7;6010:23;6006:32;6003:119;;;6041:79;;:::i;:::-;6003:119;6161:1;6186:53;6231:7;6222:6;6211:9;6207:22;6186:53;:::i;:::-;6176:63;;6132:117;6288:2;6314:50;6356:7;6347:6;6336:9;6332:22;6314:50;:::i;:::-;6304:60;;6259:115;5913:468;;;;;:::o;6387:474::-;6455:6;6463;6512:2;6500:9;6491:7;6487:23;6483:32;6480:119;;;6518:79;;:::i;:::-;6480:119;6638:1;6663:53;6708:7;6699:6;6688:9;6684:22;6663:53;:::i;:::-;6653:63;;6609:117;6765:2;6791:53;6836:7;6827:6;6816:9;6812:22;6791:53;:::i;:::-;6781:63;;6736:118;6387:474;;;;;:::o;6867:462::-;6929:6;6937;6986:2;6974:9;6965:7;6961:23;6957:32;6954:119;;;6992:79;;:::i;:::-;6954:119;7112:1;7137:50;7179:7;7170:6;7159:9;7155:22;7137:50;:::i;:::-;7127:60;;7083:114;7236:2;7262:50;7304:7;7295:6;7284:9;7280:22;7262:50;:::i;:::-;7252:60;;7207:115;6867:462;;;;;:::o;7335:329::-;7394:6;7443:2;7431:9;7422:7;7418:23;7414:32;7411:119;;;7449:79;;:::i;:::-;7411:119;7569:1;7594:53;7639:7;7630:6;7619:9;7615:22;7594:53;:::i;:::-;7584:63;;7540:117;7335:329;;;;:::o;7670:327::-;7728:6;7777:2;7765:9;7756:7;7752:23;7748:32;7745:119;;;7783:79;;:::i;:::-;7745:119;7903:1;7928:52;7972:7;7963:6;7952:9;7948:22;7928:52;:::i;:::-;7918:62;;7874:116;7670:327;;;;:::o;8003:349::-;8072:6;8121:2;8109:9;8100:7;8096:23;8092:32;8089:119;;;8127:79;;:::i;:::-;8089:119;8247:1;8272:63;8327:7;8318:6;8307:9;8303:22;8272:63;:::i;:::-;8262:73;;8218:127;8003:349;;;;:::o;8358:546::-;8462:6;8470;8519:2;8507:9;8498:7;8494:23;8490:32;8487:119;;;8525:79;;:::i;:::-;8487:119;8645:1;8670:71;8733:7;8724:6;8713:9;8709:22;8670:71;:::i;:::-;8660:81;;8616:135;8790:2;8816:71;8879:7;8870:6;8859:9;8855:22;8816:71;:::i;:::-;8806:81;;8761:136;8358:546;;;;;:::o;8910:509::-;8979:6;9028:2;9016:9;9007:7;9003:23;8999:32;8996:119;;;9034:79;;:::i;:::-;8996:119;9182:1;9171:9;9167:17;9154:31;9212:18;9204:6;9201:30;9198:117;;;9234:79;;:::i;:::-;9198:117;9339:63;9394:7;9385:6;9374:9;9370:22;9339:63;:::i;:::-;9329:73;;9125:287;8910:509;;;;:::o;9425:329::-;9484:6;9533:2;9521:9;9512:7;9508:23;9504:32;9501:119;;;9539:79;;:::i;:::-;9501:119;9659:1;9684:53;9729:7;9720:6;9709:9;9705:22;9684:53;:::i;:::-;9674:63;;9630:117;9425:329;;;;:::o;9760:351::-;9830:6;9879:2;9867:9;9858:7;9854:23;9850:32;9847:119;;;9885:79;;:::i;:::-;9847:119;10005:1;10030:64;10086:7;10077:6;10066:9;10062:22;10030:64;:::i;:::-;10020:74;;9976:128;9760:351;;;;:::o;10117:704::-;10212:6;10220;10228;10277:2;10265:9;10256:7;10252:23;10248:32;10245:119;;;10283:79;;:::i;:::-;10245:119;10403:1;10428:53;10473:7;10464:6;10453:9;10449:22;10428:53;:::i;:::-;10418:63;;10374:117;10558:2;10547:9;10543:18;10530:32;10589:18;10581:6;10578:30;10575:117;;;10611:79;;:::i;:::-;10575:117;10724:80;10796:7;10787:6;10776:9;10772:22;10724:80;:::i;:::-;10706:98;;;;10501:313;10117:704;;;;;:::o;10827:474::-;10895:6;10903;10952:2;10940:9;10931:7;10927:23;10923:32;10920:119;;;10958:79;;:::i;:::-;10920:119;11078:1;11103:53;11148:7;11139:6;11128:9;11124:22;11103:53;:::i;:::-;11093:63;;11049:117;11205:2;11231:53;11276:7;11267:6;11256:9;11252:22;11231:53;:::i;:::-;11221:63;;11176:118;10827:474;;;;;:::o;11307:118::-;11394:24;11412:5;11394:24;:::i;:::-;11389:3;11382:37;11307:118;;:::o;11431:157::-;11536:45;11556:24;11574:5;11556:24;:::i;:::-;11536:45;:::i;:::-;11531:3;11524:58;11431:157;;:::o;11594:109::-;11675:21;11690:5;11675:21;:::i;:::-;11670:3;11663:34;11594:109;;:::o;11709:118::-;11796:24;11814:5;11796:24;:::i;:::-;11791:3;11784:37;11709:118;;:::o;11833:360::-;11919:3;11947:38;11979:5;11947:38;:::i;:::-;12001:70;12064:6;12059:3;12001:70;:::i;:::-;11994:77;;12080:52;12125:6;12120:3;12113:4;12106:5;12102:16;12080:52;:::i;:::-;12157:29;12179:6;12157:29;:::i;:::-;12152:3;12148:39;12141:46;;11923:270;11833:360;;;;:::o;12199:364::-;12287:3;12315:39;12348:5;12315:39;:::i;:::-;12370:71;12434:6;12429:3;12370:71;:::i;:::-;12363:78;;12450:52;12495:6;12490:3;12483:4;12476:5;12472:16;12450:52;:::i;:::-;12527:29;12549:6;12527:29;:::i;:::-;12522:3;12518:39;12511:46;;12291:272;12199:364;;;;:::o;12569:377::-;12675:3;12703:39;12736:5;12703:39;:::i;:::-;12758:89;12840:6;12835:3;12758:89;:::i;:::-;12751:96;;12856:52;12901:6;12896:3;12889:4;12882:5;12878:16;12856:52;:::i;:::-;12933:6;12928:3;12924:16;12917:23;;12679:267;12569:377;;;;:::o;12976:845::-;13079:3;13116:5;13110:12;13145:36;13171:9;13145:36;:::i;:::-;13197:89;13279:6;13274:3;13197:89;:::i;:::-;13190:96;;13317:1;13306:9;13302:17;13333:1;13328:137;;;;13479:1;13474:341;;;;13295:520;;13328:137;13412:4;13408:9;13397;13393:25;13388:3;13381:38;13448:6;13443:3;13439:16;13432:23;;13328:137;;13474:341;13541:38;13573:5;13541:38;:::i;:::-;13601:1;13615:154;13629:6;13626:1;13623:13;13615:154;;;13703:7;13697:14;13693:1;13688:3;13684:11;13677:35;13753:1;13744:7;13740:15;13729:26;;13651:4;13648:1;13644:12;13639:17;;13615:154;;;13798:6;13793:3;13789:16;13782:23;;13481:334;;13295:520;;13083:738;;12976:845;;;;:::o;13827:366::-;13969:3;13990:67;14054:2;14049:3;13990:67;:::i;:::-;13983:74;;14066:93;14155:3;14066:93;:::i;:::-;14184:2;14179:3;14175:12;14168:19;;13827:366;;;:::o;14199:::-;14341:3;14362:67;14426:2;14421:3;14362:67;:::i;:::-;14355:74;;14438:93;14527:3;14438:93;:::i;:::-;14556:2;14551:3;14547:12;14540:19;;14199:366;;;:::o;14571:::-;14713:3;14734:67;14798:2;14793:3;14734:67;:::i;:::-;14727:74;;14810:93;14899:3;14810:93;:::i;:::-;14928:2;14923:3;14919:12;14912:19;;14571:366;;;:::o;14943:::-;15085:3;15106:67;15170:2;15165:3;15106:67;:::i;:::-;15099:74;;15182:93;15271:3;15182:93;:::i;:::-;15300:2;15295:3;15291:12;15284:19;;14943:366;;;:::o;15315:::-;15457:3;15478:67;15542:2;15537:3;15478:67;:::i;:::-;15471:74;;15554:93;15643:3;15554:93;:::i;:::-;15672:2;15667:3;15663:12;15656:19;;15315:366;;;:::o;15687:::-;15829:3;15850:67;15914:2;15909:3;15850:67;:::i;:::-;15843:74;;15926:93;16015:3;15926:93;:::i;:::-;16044:2;16039:3;16035:12;16028:19;;15687:366;;;:::o;16059:::-;16201:3;16222:67;16286:2;16281:3;16222:67;:::i;:::-;16215:74;;16298:93;16387:3;16298:93;:::i;:::-;16416:2;16411:3;16407:12;16400:19;;16059:366;;;:::o;16431:::-;16573:3;16594:67;16658:2;16653:3;16594:67;:::i;:::-;16587:74;;16670:93;16759:3;16670:93;:::i;:::-;16788:2;16783:3;16779:12;16772:19;;16431:366;;;:::o;16803:::-;16945:3;16966:67;17030:2;17025:3;16966:67;:::i;:::-;16959:74;;17042:93;17131:3;17042:93;:::i;:::-;17160:2;17155:3;17151:12;17144:19;;16803:366;;;:::o;17175:::-;17317:3;17338:67;17402:2;17397:3;17338:67;:::i;:::-;17331:74;;17414:93;17503:3;17414:93;:::i;:::-;17532:2;17527:3;17523:12;17516:19;;17175:366;;;:::o;17547:::-;17689:3;17710:67;17774:2;17769:3;17710:67;:::i;:::-;17703:74;;17786:93;17875:3;17786:93;:::i;:::-;17904:2;17899:3;17895:12;17888:19;;17547:366;;;:::o;17919:::-;18061:3;18082:67;18146:2;18141:3;18082:67;:::i;:::-;18075:74;;18158:93;18247:3;18158:93;:::i;:::-;18276:2;18271:3;18267:12;18260:19;;17919:366;;;:::o;18291:::-;18433:3;18454:67;18518:2;18513:3;18454:67;:::i;:::-;18447:74;;18530:93;18619:3;18530:93;:::i;:::-;18648:2;18643:3;18639:12;18632:19;;18291:366;;;:::o;18663:::-;18805:3;18826:67;18890:2;18885:3;18826:67;:::i;:::-;18819:74;;18902:93;18991:3;18902:93;:::i;:::-;19020:2;19015:3;19011:12;19004:19;;18663:366;;;:::o;19035:::-;19177:3;19198:67;19262:2;19257:3;19198:67;:::i;:::-;19191:74;;19274:93;19363:3;19274:93;:::i;:::-;19392:2;19387:3;19383:12;19376:19;;19035:366;;;:::o;19407:118::-;19494:24;19512:5;19494:24;:::i;:::-;19489:3;19482:37;19407:118;;:::o;19531:256::-;19643:3;19658:75;19729:3;19720:6;19658:75;:::i;:::-;19758:2;19753:3;19749:12;19742:19;;19778:3;19771:10;;19531:256;;;;:::o;19793:589::-;20018:3;20040:95;20131:3;20122:6;20040:95;:::i;:::-;20033:102;;20152:95;20243:3;20234:6;20152:95;:::i;:::-;20145:102;;20264:92;20352:3;20343:6;20264:92;:::i;:::-;20257:99;;20373:3;20366:10;;19793:589;;;;;;:::o;20388:222::-;20481:4;20519:2;20508:9;20504:18;20496:26;;20532:71;20600:1;20589:9;20585:17;20576:6;20532:71;:::i;:::-;20388:222;;;;:::o;20616:640::-;20811:4;20849:3;20838:9;20834:19;20826:27;;20863:71;20931:1;20920:9;20916:17;20907:6;20863:71;:::i;:::-;20944:72;21012:2;21001:9;20997:18;20988:6;20944:72;:::i;:::-;21026;21094:2;21083:9;21079:18;21070:6;21026:72;:::i;:::-;21145:9;21139:4;21135:20;21130:2;21119:9;21115:18;21108:48;21173:76;21244:4;21235:6;21173:76;:::i;:::-;21165:84;;20616:640;;;;;;;:::o;21262:210::-;21349:4;21387:2;21376:9;21372:18;21364:26;;21400:65;21462:1;21451:9;21447:17;21438:6;21400:65;:::i;:::-;21262:210;;;;:::o;21478:222::-;21571:4;21609:2;21598:9;21594:18;21586:26;;21622:71;21690:1;21679:9;21675:17;21666:6;21622:71;:::i;:::-;21478:222;;;;:::o;21706:313::-;21819:4;21857:2;21846:9;21842:18;21834:26;;21906:9;21900:4;21896:20;21892:1;21881:9;21877:17;21870:47;21934:78;22007:4;21998:6;21934:78;:::i;:::-;21926:86;;21706:313;;;;:::o;22025:419::-;22191:4;22229:2;22218:9;22214:18;22206:26;;22278:9;22272:4;22268:20;22264:1;22253:9;22249:17;22242:47;22306:131;22432:4;22306:131;:::i;:::-;22298:139;;22025:419;;;:::o;22450:::-;22616:4;22654:2;22643:9;22639:18;22631:26;;22703:9;22697:4;22693:20;22689:1;22678:9;22674:17;22667:47;22731:131;22857:4;22731:131;:::i;:::-;22723:139;;22450:419;;;:::o;22875:::-;23041:4;23079:2;23068:9;23064:18;23056:26;;23128:9;23122:4;23118:20;23114:1;23103:9;23099:17;23092:47;23156:131;23282:4;23156:131;:::i;:::-;23148:139;;22875:419;;;:::o;23300:::-;23466:4;23504:2;23493:9;23489:18;23481:26;;23553:9;23547:4;23543:20;23539:1;23528:9;23524:17;23517:47;23581:131;23707:4;23581:131;:::i;:::-;23573:139;;23300:419;;;:::o;23725:::-;23891:4;23929:2;23918:9;23914:18;23906:26;;23978:9;23972:4;23968:20;23964:1;23953:9;23949:17;23942:47;24006:131;24132:4;24006:131;:::i;:::-;23998:139;;23725:419;;;:::o;24150:::-;24316:4;24354:2;24343:9;24339:18;24331:26;;24403:9;24397:4;24393:20;24389:1;24378:9;24374:17;24367:47;24431:131;24557:4;24431:131;:::i;:::-;24423:139;;24150:419;;;:::o;24575:::-;24741:4;24779:2;24768:9;24764:18;24756:26;;24828:9;24822:4;24818:20;24814:1;24803:9;24799:17;24792:47;24856:131;24982:4;24856:131;:::i;:::-;24848:139;;24575:419;;;:::o;25000:::-;25166:4;25204:2;25193:9;25189:18;25181:26;;25253:9;25247:4;25243:20;25239:1;25228:9;25224:17;25217:47;25281:131;25407:4;25281:131;:::i;:::-;25273:139;;25000:419;;;:::o;25425:::-;25591:4;25629:2;25618:9;25614:18;25606:26;;25678:9;25672:4;25668:20;25664:1;25653:9;25649:17;25642:47;25706:131;25832:4;25706:131;:::i;:::-;25698:139;;25425:419;;;:::o;25850:::-;26016:4;26054:2;26043:9;26039:18;26031:26;;26103:9;26097:4;26093:20;26089:1;26078:9;26074:17;26067:47;26131:131;26257:4;26131:131;:::i;:::-;26123:139;;25850:419;;;:::o;26275:::-;26441:4;26479:2;26468:9;26464:18;26456:26;;26528:9;26522:4;26518:20;26514:1;26503:9;26499:17;26492:47;26556:131;26682:4;26556:131;:::i;:::-;26548:139;;26275:419;;;:::o;26700:::-;26866:4;26904:2;26893:9;26889:18;26881:26;;26953:9;26947:4;26943:20;26939:1;26928:9;26924:17;26917:47;26981:131;27107:4;26981:131;:::i;:::-;26973:139;;26700:419;;;:::o;27125:::-;27291:4;27329:2;27318:9;27314:18;27306:26;;27378:9;27372:4;27368:20;27364:1;27353:9;27349:17;27342:47;27406:131;27532:4;27406:131;:::i;:::-;27398:139;;27125:419;;;:::o;27550:::-;27716:4;27754:2;27743:9;27739:18;27731:26;;27803:9;27797:4;27793:20;27789:1;27778:9;27774:17;27767:47;27831:131;27957:4;27831:131;:::i;:::-;27823:139;;27550:419;;;:::o;27975:::-;28141:4;28179:2;28168:9;28164:18;28156:26;;28228:9;28222:4;28218:20;28214:1;28203:9;28199:17;28192:47;28256:131;28382:4;28256:131;:::i;:::-;28248:139;;27975:419;;;:::o;28400:222::-;28493:4;28531:2;28520:9;28516:18;28508:26;;28544:71;28612:1;28601:9;28597:17;28588:6;28544:71;:::i;:::-;28400:222;;;;:::o;28628:129::-;28662:6;28689:20;;:::i;:::-;28679:30;;28718:33;28746:4;28738:6;28718:33;:::i;:::-;28628:129;;;:::o;28763:75::-;28796:6;28829:2;28823:9;28813:19;;28763:75;:::o;28844:307::-;28905:4;28995:18;28987:6;28984:30;28981:56;;;29017:18;;:::i;:::-;28981:56;29055:29;29077:6;29055:29;:::i;:::-;29047:37;;29139:4;29133;29129:15;29121:23;;28844:307;;;:::o;29157:308::-;29219:4;29309:18;29301:6;29298:30;29295:56;;;29331:18;;:::i;:::-;29295:56;29369:29;29391:6;29369:29;:::i;:::-;29361:37;;29453:4;29447;29443:15;29435:23;;29157:308;;;:::o;29471:141::-;29520:4;29543:3;29535:11;;29566:3;29563:1;29556:14;29600:4;29597:1;29587:18;29579:26;;29471:141;;;:::o;29618:98::-;29669:6;29703:5;29697:12;29687:22;;29618:98;;;:::o;29722:99::-;29774:6;29808:5;29802:12;29792:22;;29722:99;;;:::o;29827:168::-;29910:11;29944:6;29939:3;29932:19;29984:4;29979:3;29975:14;29960:29;;29827:168;;;;:::o;30001:169::-;30085:11;30119:6;30114:3;30107:19;30159:4;30154:3;30150:14;30135:29;;30001:169;;;;:::o;30176:148::-;30278:11;30315:3;30300:18;;30176:148;;;;:::o;30330:305::-;30370:3;30389:20;30407:1;30389:20;:::i;:::-;30384:25;;30423:20;30441:1;30423:20;:::i;:::-;30418:25;;30577:1;30509:66;30505:74;30502:1;30499:81;30496:107;;;30583:18;;:::i;:::-;30496:107;30627:1;30624;30620:9;30613:16;;30330:305;;;;:::o;30641:185::-;30681:1;30698:20;30716:1;30698:20;:::i;:::-;30693:25;;30732:20;30750:1;30732:20;:::i;:::-;30727:25;;30771:1;30761:35;;30776:18;;:::i;:::-;30761:35;30818:1;30815;30811:9;30806:14;;30641:185;;;;:::o;30832:348::-;30872:7;30895:20;30913:1;30895:20;:::i;:::-;30890:25;;30929:20;30947:1;30929:20;:::i;:::-;30924:25;;31117:1;31049:66;31045:74;31042:1;31039:81;31034:1;31027:9;31020:17;31016:105;31013:131;;;31124:18;;:::i;:::-;31013:131;31172:1;31169;31165:9;31154:20;;30832:348;;;;:::o;31186:191::-;31226:4;31246:20;31264:1;31246:20;:::i;:::-;31241:25;;31280:20;31298:1;31280:20;:::i;:::-;31275:25;;31319:1;31316;31313:8;31310:34;;;31324:18;;:::i;:::-;31310:34;31369:1;31366;31362:9;31354:17;;31186:191;;;;:::o;31383:96::-;31420:7;31449:24;31467:5;31449:24;:::i;:::-;31438:35;;31383:96;;;:::o;31485:90::-;31519:7;31562:5;31555:13;31548:21;31537:32;;31485:90;;;:::o;31581:77::-;31618:7;31647:5;31636:16;;31581:77;;;:::o;31664:149::-;31700:7;31740:66;31733:5;31729:78;31718:89;;31664:149;;;:::o;31819:114::-;31874:7;31903:24;31921:5;31903:24;:::i;:::-;31892:35;;31819:114;;;:::o;31939:::-;31994:7;32023:24;32041:5;32023:24;:::i;:::-;32012:35;;31939:114;;;:::o;32059:126::-;32096:7;32136:42;32129:5;32125:54;32114:65;;32059:126;;;:::o;32191:77::-;32228:7;32257:5;32246:16;;32191:77;;;:::o;32274:154::-;32358:6;32353:3;32348;32335:30;32420:1;32411:6;32406:3;32402:16;32395:27;32274:154;;;:::o;32434:307::-;32502:1;32512:113;32526:6;32523:1;32520:13;32512:113;;;32611:1;32606:3;32602:11;32596:18;32592:1;32587:3;32583:11;32576:39;32548:2;32545:1;32541:10;32536:15;;32512:113;;;32643:6;32640:1;32637:13;32634:101;;;32723:1;32714:6;32709:3;32705:16;32698:27;32634:101;32483:258;32434:307;;;:::o;32747:320::-;32791:6;32828:1;32822:4;32818:12;32808:22;;32875:1;32869:4;32865:12;32896:18;32886:81;;32952:4;32944:6;32940:17;32930:27;;32886:81;33014:2;33006:6;33003:14;32983:18;32980:38;32977:84;;;33033:18;;:::i;:::-;32977:84;32798:269;32747:320;;;:::o;33073:281::-;33156:27;33178:4;33156:27;:::i;:::-;33148:6;33144:40;33286:6;33274:10;33271:22;33250:18;33238:10;33235:34;33232:62;33229:88;;;33297:18;;:::i;:::-;33229:88;33337:10;33333:2;33326:22;33116:238;33073:281;;:::o;33360:233::-;33399:3;33422:24;33440:5;33422:24;:::i;:::-;33413:33;;33468:66;33461:5;33458:77;33455:103;;;33538:18;;:::i;:::-;33455:103;33585:1;33578:5;33574:13;33567:20;;33360:233;;;:::o;33599:100::-;33638:7;33667:26;33687:5;33667:26;:::i;:::-;33656:37;;33599:100;;;:::o;33705:94::-;33744:7;33773:20;33787:5;33773:20;:::i;:::-;33762:31;;33705:94;;;:::o;33805:176::-;33837:1;33854:20;33872:1;33854:20;:::i;:::-;33849:25;;33888:20;33906:1;33888:20;:::i;:::-;33883:25;;33927:1;33917:35;;33932:18;;:::i;:::-;33917:35;33973:1;33970;33966:9;33961:14;;33805:176;;;;:::o;33987:180::-;34035:77;34032:1;34025:88;34132:4;34129:1;34122:15;34156:4;34153:1;34146:15;34173:180;34221:77;34218:1;34211:88;34318:4;34315:1;34308:15;34342:4;34339:1;34332:15;34359:180;34407:77;34404:1;34397:88;34504:4;34501:1;34494:15;34528:4;34525:1;34518:15;34545:180;34593:77;34590:1;34583:88;34690:4;34687:1;34680:15;34714:4;34711:1;34704:15;34731:180;34779:77;34776:1;34769:88;34876:4;34873:1;34866:15;34900:4;34897:1;34890:15;34917:117;35026:1;35023;35016:12;35040:117;35149:1;35146;35139:12;35163:117;35272:1;35269;35262:12;35286:117;35395:1;35392;35385:12;35409:117;35518:1;35515;35508:12;35532:117;35641:1;35638;35631:12;35655:102;35696:6;35747:2;35743:7;35738:2;35731:5;35727:14;35723:28;35713:38;;35655:102;;;:::o;35763:94::-;35796:8;35844:5;35840:2;35836:14;35815:35;;35763:94;;;:::o;35863:167::-;36003:19;35999:1;35991:6;35987:14;35980:43;35863:167;:::o;36036:224::-;36176:34;36172:1;36164:6;36160:14;36153:58;36245:7;36240:2;36232:6;36228:15;36221:32;36036:224;:::o;36266:164::-;36406:16;36402:1;36394:6;36390:14;36383:40;36266:164;:::o;36436:176::-;36576:28;36572:1;36564:6;36560:14;36553:52;36436:176;:::o;36618:225::-;36758:34;36754:1;36746:6;36742:14;36735:58;36827:8;36822:2;36814:6;36810:15;36803:33;36618:225;:::o;36849:220::-;36989:34;36985:1;36977:6;36973:14;36966:58;37058:3;37053:2;37045:6;37041:15;37034:28;36849:220;:::o;37075:221::-;37215:34;37211:1;37203:6;37199:14;37192:58;37284:4;37279:2;37271:6;37267:15;37260:29;37075:221;:::o;37302:182::-;37442:34;37438:1;37430:6;37426:14;37419:58;37302:182;:::o;37490:234::-;37630:34;37626:1;37618:6;37614:14;37607:58;37699:17;37694:2;37686:6;37682:15;37675:42;37490:234;:::o;37730:169::-;37870:21;37866:1;37858:6;37854:14;37847:45;37730:169;:::o;37905:221::-;38045:34;38041:1;38033:6;38029:14;38022:58;38114:4;38109:2;38101:6;38097:15;38090:29;37905:221;:::o;38132:168::-;38272:20;38268:1;38260:6;38256:14;38249:44;38132:168;:::o;38306:181::-;38446:33;38442:1;38434:6;38430:14;38423:57;38306:181;:::o;38493:220::-;38633:34;38629:1;38621:6;38617:14;38610:58;38702:3;38697:2;38689:6;38685:15;38678:28;38493:220;:::o;38719:181::-;38859:33;38855:1;38847:6;38843:14;38836:57;38719:181;:::o;38906:122::-;38979:24;38997:5;38979:24;:::i;:::-;38972:5;38969:35;38959:63;;39018:1;39015;39008:12;38959:63;38906:122;:::o;39034:116::-;39104:21;39119:5;39104:21;:::i;:::-;39097:5;39094:32;39084:60;;39140:1;39137;39130:12;39084:60;39034:116;:::o;39156:122::-;39229:24;39247:5;39229:24;:::i;:::-;39222:5;39219:35;39209:63;;39268:1;39265;39258:12;39209:63;39156:122;:::o;39284:120::-;39356:23;39373:5;39356:23;:::i;:::-;39349:5;39346:34;39336:62;;39394:1;39391;39384:12;39336:62;39284:120;:::o;39410:158::-;39501:42;39537:5;39501:42;:::i;:::-;39494:5;39491:53;39481:81;;39558:1;39555;39548:12;39481:81;39410:158;:::o;39574:::-;39665:42;39701:5;39665:42;:::i;:::-;39658:5;39655:53;39645:81;;39722:1;39719;39712:12;39645:81;39574:158;:::o;39738:122::-;39811:24;39829:5;39811:24;:::i;:::-;39804:5;39801:35;39791:63;;39850:1;39847;39840:12;39791:63;39738:122;:::o

Swarm Source

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