ETH Price: $3,484.29 (+3.64%)
Gas: 2 Gwei

Token

NFD Keys (NFDKEYS)
 

Overview

Max Total Supply

3,333 NFDKEYS

Holders

2,906

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
streamsobored.eth
Balance
1 NFDKEYS
0x94365edc741d589320602ce66677b5ddb64d3687
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:
NFDSecretKeys

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-24
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * 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.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
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 simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _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}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _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 sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _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}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _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)
        }
    }
}


/**
 * @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() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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


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


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


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

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

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

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

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

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

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

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

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

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

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

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables
     * (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`,
     * checking first that contract recipients are aware of the ERC721 protocol
     * to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move
     * this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external payable;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` 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 payable;

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

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

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

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

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}


/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _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 {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // Mapping from token ID to approved address.
    mapping(uint256 => TokenApprovalRef) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

    /**
     * Sets the auxiliary 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 virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    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, _toString(tokenId))) : '';
    }

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

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public payable virtual override {
        address owner = ownerOf(tokenId);

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

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

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @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 for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, 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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

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

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

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

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

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

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

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

            // Cache the end of the memory to calculate the length later.
            let end := str

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}





contract NFDSecretKeys is ERC721A, Ownable, ReentrancyGuard {

    uint256 public constant MAX_SUPPLY = 3333;

    bytes32 public phase1Root;
    bytes32 public phase2Root;

    uint256 public currentPhase;

    mapping(address => bool) private _hasMinted;

    // metadata URI
    string private _baseTokenURI;


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

    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

    constructor() ERC721A("NFD Keys", "NFDKEYS") {
        _mint(owner(), 1);
        currentPhase = 0;
    }

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    modifier checkAlreadyMinted() {
        require(!_hasMinted[msg.sender], "This account has already minted an NFT");
        _;
}

    modifier checkProof(bytes32[] memory proof) {
        if(currentPhase == 3 || currentPhase == 0) {
            _;
        } else {
            bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
            require(MerkleProof.verify(proof, currentPhase == 1 ? phase1Root : phase2Root, leaf), "Invalid proof");
            _;
        }
    }

    function setRootPhase1(bytes32 _merkleRoot) public onlyOwner {
        phase1Root = _merkleRoot;
    }

    function setRootPhase2(bytes32 _merkleRoot) public onlyOwner {
        phase2Root = _merkleRoot;
    }

    function setPhase(uint256 phase) public onlyOwner {
        require(phase < 4, "Incorrect phase.");
        require(currentPhase != phase, "Phase already live.");
        currentPhase = phase;
    }

    function treasuryMint(address to, uint256 mintCount) public onlyOwner {
        require(totalSupply() + mintCount <= MAX_SUPPLY, "Cant mint more than max supply");
        _mint(to, mintCount);
    }

    function mint(bytes32[] memory proof) external callerIsUser checkAlreadyMinted checkProof(proof)  {
        require(currentPhase != 0, "Mint not started!");
        require(totalSupply() + 1 <= MAX_SUPPLY, "Cant mint more than max supply");
        _hasMinted[msg.sender] = true;
        _mint(msg.sender, 1);
    }

    function hasMinted(address account) public view returns (bool) {
        return _hasMinted[account];
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentPhase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"hasMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","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":"phase1Root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phase2Root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"payable","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":"payable","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"phase","type":"uint256"}],"name":"setPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setRootPhase1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setRootPhase2","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"mintCount","type":"uint256"}],"name":"treasuryMint","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600881526020017f4e4644204b6579730000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f4e46444b4559530000000000000000000000000000000000000000000000000081525081600290816200008f9190620006f0565b508060039081620000a19190620006f0565b50620000b26200011260201b60201c565b6000819055505050620000da620000ce6200011760201b60201c565b6200011f60201b60201c565b600160098190555062000104620000f6620001e560201b60201c565b60016200020f60201b60201c565b6000600c81905550620007d7565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000805490506000820362000250576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620002656000848385620003f660201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550620002f483620002d66000866000620003fc60201b60201c565b620002e7856200042c60201b60201c565b176200043c60201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146200039757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506200035a565b5060008203620003d3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050620003f160008483856200046760201b60201c565b505050565b50505050565b60008060e883901c905060e86200041b8686846200046d60201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60009392505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004f857607f821691505b6020821081036200050e576200050d620004b0565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005787fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000539565b62000584868362000539565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005d1620005cb620005c5846200059c565b620005a6565b6200059c565b9050919050565b6000819050919050565b620005ed83620005b0565b62000605620005fc82620005d8565b84845462000546565b825550505050565b600090565b6200061c6200060d565b62000629818484620005e2565b505050565b5b8181101562000651576200064560008262000612565b6001810190506200062f565b5050565b601f821115620006a0576200066a8162000514565b620006758462000529565b8101602085101562000685578190505b6200069d620006948562000529565b8301826200062e565b50505b505050565b600082821c905092915050565b6000620006c560001984600802620006a5565b1980831691505092915050565b6000620006e08383620006b2565b9150826002028217905092915050565b620006fb8262000476565b67ffffffffffffffff81111562000717576200071662000481565b5b620007238254620004df565b6200073082828562000655565b600060209050601f83116001811462000768576000841562000753578287015190505b6200075f8582620006d2565b865550620007cf565b601f198416620007788662000514565b60005b82811015620007a2578489015182556001820191506020850194506020810190506200077b565b86831015620007c25784890151620007be601f891682620006b2565b8355505b6001600288020188555050505b505050505050565b6130b280620007e76000396000f3fe6080604052600436106101b75760003560e01c806370a08231116100ec578063b77a147b1161008a578063d5884ccb11610064578063d5884ccb146105d4578063e985e9c5146105ff578063f2fde38b1461063c578063fe325cfe14610665576101b7565b8063b77a147b14610552578063b88d4fde1461057b578063c87b56dd14610597576101b7565b806395d89b41116100c657806395d89b41146104ac578063a22cb465146104d7578063aa35cca314610500578063b3337b3214610529576101b7565b806370a082311461042d578063715018a61461046a5780638da5cb5b14610481576101b7565b80632cc826551161015957806342842e0e1161013357806342842e0e1461038057806355f804b31461039c578063576ef921146103c55780636352211e146103f0576101b7565b80632cc82655146102ef57806332cb6b0c1461031857806338e21cce14610343576101b7565b8063081812fc11610195578063081812fc1461024f578063095ea7b31461028c57806318160ddd146102a857806323b872dd146102d3576101b7565b806301ffc9a7146101bc578063055ad42e146101f957806306fdde0314610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190611f69565b61068e565b6040516101f09190611fb1565b60405180910390f35b34801561020557600080fd5b5061020e610720565b60405161021b9190611fe5565b60405180910390f35b34801561023057600080fd5b50610239610726565b6040516102469190612090565b60405180910390f35b34801561025b57600080fd5b50610276600480360381019061027191906120de565b6107b8565b604051610283919061214c565b60405180910390f35b6102a660048036038101906102a19190612193565b610837565b005b3480156102b457600080fd5b506102bd61097b565b6040516102ca9190611fe5565b60405180910390f35b6102ed60048036038101906102e891906121d3565b610992565b005b3480156102fb57600080fd5b50610316600480360381019061031191906120de565b610cb4565b005b34801561032457600080fd5b5061032d610d4d565b60405161033a9190611fe5565b60405180910390f35b34801561034f57600080fd5b5061036a60048036038101906103659190612226565b610d53565b6040516103779190611fb1565b60405180910390f35b61039a600480360381019061039591906121d3565b610da9565b005b3480156103a857600080fd5b506103c360048036038101906103be91906122b8565b610dc9565b005b3480156103d157600080fd5b506103da610de7565b6040516103e7919061231e565b60405180910390f35b3480156103fc57600080fd5b50610417600480360381019061041291906120de565b610ded565b604051610424919061214c565b60405180910390f35b34801561043957600080fd5b50610454600480360381019061044f9190612226565b610dff565b6040516104619190611fe5565b60405180910390f35b34801561047657600080fd5b5061047f610eb7565b005b34801561048d57600080fd5b50610496610ecb565b6040516104a3919061214c565b60405180910390f35b3480156104b857600080fd5b506104c1610ef5565b6040516104ce9190612090565b60405180910390f35b3480156104e357600080fd5b506104fe60048036038101906104f99190612365565b610f87565b005b34801561050c57600080fd5b5061052760048036038101906105229190612193565b611092565b005b34801561053557600080fd5b50610550600480360381019061054b91906123d1565b6110ff565b005b34801561055e57600080fd5b506105796004803603810190610574919061253c565b611111565b005b6105956004803603810190610590919061263a565b6114ba565b005b3480156105a357600080fd5b506105be60048036038101906105b991906120de565b61152d565b6040516105cb9190612090565b60405180910390f35b3480156105e057600080fd5b506105e96115cb565b6040516105f6919061231e565b60405180910390f35b34801561060b57600080fd5b50610626600480360381019061062191906126bd565b6115d1565b6040516106339190611fb1565b60405180910390f35b34801561064857600080fd5b50610663600480360381019061065e9190612226565b611665565b005b34801561067157600080fd5b5061068c600480360381019061068791906123d1565b6116e8565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106e957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107195750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600c5481565b6060600280546107359061272c565b80601f01602080910402602001604051908101604052809291908181526020018280546107619061272c565b80156107ae5780601f10610783576101008083540402835291602001916107ae565b820191906000526020600020905b81548152906001019060200180831161079157829003601f168201915b5050505050905090565b60006107c3826116fa565b6107f9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061084282610ded565b90508073ffffffffffffffffffffffffffffffffffffffff16610863611759565b73ffffffffffffffffffffffffffffffffffffffff16146108c65761088f8161088a611759565b6115d1565b6108c5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610985611761565b6001546000540303905090565b600061099d82611766565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a04576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a1084611832565b91509150610a268187610a21611759565b611859565b610a7257610a3b86610a36611759565b6115d1565b610a71576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610ad8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ae5868686600161189d565b8015610af057600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bbe85610b9a8888876118a3565b7c0200000000000000000000000000000000000000000000000000000000176118cb565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610c445760006001850190506000600460008381526020019081526020016000205403610c42576000548114610c41578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cac86868660016118f6565b505050505050565b610cbc6118fc565b60048110610cff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf6906127a9565b60405180910390fd5b80600c5403610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a90612815565b60405180910390fd5b80600c8190555050565b610d0581565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610dc4838383604051806020016040528060008152506114ba565b505050565b610dd16118fc565b8181600e9182610de29291906129ec565b505050565b600a5481565b6000610df882611766565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e66576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ebf6118fc565b610ec9600061197a565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f049061272c565b80601f0160208091040260200160405190810160405280929190818152602001828054610f309061272c565b8015610f7d5780601f10610f5257610100808354040283529160200191610f7d565b820191906000526020600020905b815481529060010190602001808311610f6057829003601f168201915b5050505050905090565b8060076000610f94611759565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611041611759565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110869190611fb1565b60405180910390a35050565b61109a6118fc565b610d05816110a661097b565b6110b09190612aeb565b11156110f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e890612b6b565b60405180910390fd5b6110fb8282611a40565b5050565b6111076118fc565b80600b8190555050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461117f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117690612bd7565b60405180910390fd5b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561120c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120390612c69565b60405180910390fd5b806003600c54148061122057506000600c54145b1561132a576000600c540361126a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126190612cd5565b60405180910390fd5b610d05600161127761097b565b6112819190612aeb565b11156112c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b990612b6b565b60405180910390fd5b6001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611325336001611a40565b6114b6565b60003360405160200161133d9190612d3d565b604051602081830303815290604052805190602001209050611375826001600c541461136b57600b5461136f565b600a545b83611bfb565b6113b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ab90612da4565b60405180910390fd5b6000600c54036113f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f090612cd5565b60405180910390fd5b610d05600161140661097b565b6114109190612aeb565b1115611451576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144890612b6b565b60405180910390fd5b6001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506114b4336001611a40565b505b5050565b6114c5848484610992565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611527576114f084848484611c12565b611526576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611538826116fa565b61156e576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611578611d62565b9050600081510361159857604051806020016040528060008152506115c3565b806115a284611df4565b6040516020016115b3929190612e00565b6040516020818303038152906040525b915050919050565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61166d6118fc565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d390612e96565b60405180910390fd5b6116e58161197a565b50565b6116f06118fc565b80600a8190555050565b600081611705611761565b11158015611714575060005482105b8015611752575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611775611761565b116117fb576000548110156117fa5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036117f8575b600081036117ee5760046000836001900393508381526020019081526020016000205490506117c4565b809250505061182d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86118ba868684611e44565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611904611e4d565b73ffffffffffffffffffffffffffffffffffffffff16611922610ecb565b73ffffffffffffffffffffffffffffffffffffffff1614611978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196f90612f02565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008054905060008203611a80576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a8d600084838561189d565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611b0483611af560008660006118a3565b611afe85611e55565b176118cb565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611ba557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611b6a565b5060008203611be0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611bf660008483856118f6565b505050565b600082611c088584611e65565b1490509392505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c38611759565b8786866040518563ffffffff1660e01b8152600401611c5a9493929190612f77565b6020604051808303816000875af1925050508015611c9657506040513d601f19601f82011682018060405250810190611c939190612fd8565b60015b611d0f573d8060008114611cc6576040519150601f19603f3d011682016040523d82523d6000602084013e611ccb565b606091505b506000815103611d07576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e8054611d719061272c565b80601f0160208091040260200160405190810160405280929190818152602001828054611d9d9061272c565b8015611dea5780601f10611dbf57610100808354040283529160200191611dea565b820191906000526020600020905b815481529060010190602001808311611dcd57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611e2f57600184039350600a81066030018453600a8104905080611e0d575b50828103602084039350808452505050919050565b60009392505050565b600033905090565b60006001821460e11b9050919050565b60008082905060005b8451811015611eb057611e9b82868381518110611e8e57611e8d613005565b5b6020026020010151611ebb565b91508080611ea890613034565b915050611e6e565b508091505092915050565b6000818310611ed357611ece8284611ee6565b611ede565b611edd8383611ee6565b5b905092915050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611f4681611f11565b8114611f5157600080fd5b50565b600081359050611f6381611f3d565b92915050565b600060208284031215611f7f57611f7e611f07565b5b6000611f8d84828501611f54565b91505092915050565b60008115159050919050565b611fab81611f96565b82525050565b6000602082019050611fc66000830184611fa2565b92915050565b6000819050919050565b611fdf81611fcc565b82525050565b6000602082019050611ffa6000830184611fd6565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561203a57808201518184015260208101905061201f565b60008484015250505050565b6000601f19601f8301169050919050565b600061206282612000565b61206c818561200b565b935061207c81856020860161201c565b61208581612046565b840191505092915050565b600060208201905081810360008301526120aa8184612057565b905092915050565b6120bb81611fcc565b81146120c657600080fd5b50565b6000813590506120d8816120b2565b92915050565b6000602082840312156120f4576120f3611f07565b5b6000612102848285016120c9565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006121368261210b565b9050919050565b6121468161212b565b82525050565b6000602082019050612161600083018461213d565b92915050565b6121708161212b565b811461217b57600080fd5b50565b60008135905061218d81612167565b92915050565b600080604083850312156121aa576121a9611f07565b5b60006121b88582860161217e565b92505060206121c9858286016120c9565b9150509250929050565b6000806000606084860312156121ec576121eb611f07565b5b60006121fa8682870161217e565b935050602061220b8682870161217e565b925050604061221c868287016120c9565b9150509250925092565b60006020828403121561223c5761223b611f07565b5b600061224a8482850161217e565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261227857612277612253565b5b8235905067ffffffffffffffff81111561229557612294612258565b5b6020830191508360018202830111156122b1576122b061225d565b5b9250929050565b600080602083850312156122cf576122ce611f07565b5b600083013567ffffffffffffffff8111156122ed576122ec611f0c565b5b6122f985828601612262565b92509250509250929050565b6000819050919050565b61231881612305565b82525050565b6000602082019050612333600083018461230f565b92915050565b61234281611f96565b811461234d57600080fd5b50565b60008135905061235f81612339565b92915050565b6000806040838503121561237c5761237b611f07565b5b600061238a8582860161217e565b925050602061239b85828601612350565b9150509250929050565b6123ae81612305565b81146123b957600080fd5b50565b6000813590506123cb816123a5565b92915050565b6000602082840312156123e7576123e6611f07565b5b60006123f5848285016123bc565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61243682612046565b810181811067ffffffffffffffff82111715612455576124546123fe565b5b80604052505050565b6000612468611efd565b9050612474828261242d565b919050565b600067ffffffffffffffff821115612494576124936123fe565b5b602082029050602081019050919050565b60006124b86124b384612479565b61245e565b905080838252602082019050602084028301858111156124db576124da61225d565b5b835b8181101561250457806124f088826123bc565b8452602084019350506020810190506124dd565b5050509392505050565b600082601f83011261252357612522612253565b5b81356125338482602086016124a5565b91505092915050565b60006020828403121561255257612551611f07565b5b600082013567ffffffffffffffff8111156125705761256f611f0c565b5b61257c8482850161250e565b91505092915050565b600080fd5b600067ffffffffffffffff8211156125a5576125a46123fe565b5b6125ae82612046565b9050602081019050919050565b82818337600083830152505050565b60006125dd6125d88461258a565b61245e565b9050828152602081018484840111156125f9576125f8612585565b5b6126048482856125bb565b509392505050565b600082601f83011261262157612620612253565b5b81356126318482602086016125ca565b91505092915050565b6000806000806080858703121561265457612653611f07565b5b60006126628782880161217e565b94505060206126738782880161217e565b9350506040612684878288016120c9565b925050606085013567ffffffffffffffff8111156126a5576126a4611f0c565b5b6126b18782880161260c565b91505092959194509250565b600080604083850312156126d4576126d3611f07565b5b60006126e28582860161217e565b92505060206126f38582860161217e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061274457607f821691505b602082108103612757576127566126fd565b5b50919050565b7f496e636f72726563742070686173652e00000000000000000000000000000000600082015250565b600061279360108361200b565b915061279e8261275d565b602082019050919050565b600060208201905081810360008301526127c281612786565b9050919050565b7f506861736520616c7265616479206c6976652e00000000000000000000000000600082015250565b60006127ff60138361200b565b915061280a826127c9565b602082019050919050565b6000602082019050818103600083015261282e816127f2565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026128a27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612865565b6128ac8683612865565b95508019841693508086168417925050509392505050565b6000819050919050565b60006128e96128e46128df84611fcc565b6128c4565b611fcc565b9050919050565b6000819050919050565b612903836128ce565b61291761290f826128f0565b848454612872565b825550505050565b600090565b61292c61291f565b6129378184846128fa565b505050565b5b8181101561295b57612950600082612924565b60018101905061293d565b5050565b601f8211156129a05761297181612840565b61297a84612855565b81016020851015612989578190505b61299d61299585612855565b83018261293c565b50505b505050565b600082821c905092915050565b60006129c3600019846008026129a5565b1980831691505092915050565b60006129dc83836129b2565b9150826002028217905092915050565b6129f68383612835565b67ffffffffffffffff811115612a0f57612a0e6123fe565b5b612a19825461272c565b612a2482828561295f565b6000601f831160018114612a535760008415612a41578287013590505b612a4b85826129d0565b865550612ab3565b601f198416612a6186612840565b60005b82811015612a8957848901358255600182019150602085019450602081019050612a64565b86831015612aa65784890135612aa2601f8916826129b2565b8355505b6001600288020188555050505b50505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612af682611fcc565b9150612b0183611fcc565b9250828201905080821115612b1957612b18612abc565b5b92915050565b7f43616e74206d696e74206d6f7265207468616e206d617820737570706c790000600082015250565b6000612b55601e8361200b565b9150612b6082612b1f565b602082019050919050565b60006020820190508181036000830152612b8481612b48565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000612bc1601e8361200b565b9150612bcc82612b8b565b602082019050919050565b60006020820190508181036000830152612bf081612bb4565b9050919050565b7f54686973206163636f756e742068617320616c7265616479206d696e7465642060008201527f616e204e46540000000000000000000000000000000000000000000000000000602082015250565b6000612c5360268361200b565b9150612c5e82612bf7565b604082019050919050565b60006020820190508181036000830152612c8281612c46565b9050919050565b7f4d696e74206e6f74207374617274656421000000000000000000000000000000600082015250565b6000612cbf60118361200b565b9150612cca82612c89565b602082019050919050565b60006020820190508181036000830152612cee81612cb2565b9050919050565b60008160601b9050919050565b6000612d0d82612cf5565b9050919050565b6000612d1f82612d02565b9050919050565b612d37612d328261212b565b612d14565b82525050565b6000612d498284612d26565b60148201915081905092915050565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b6000612d8e600d8361200b565b9150612d9982612d58565b602082019050919050565b60006020820190508181036000830152612dbd81612d81565b9050919050565b600081905092915050565b6000612dda82612000565b612de48185612dc4565b9350612df481856020860161201c565b80840191505092915050565b6000612e0c8285612dcf565b9150612e188284612dcf565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612e8060268361200b565b9150612e8b82612e24565b604082019050919050565b60006020820190508181036000830152612eaf81612e73565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612eec60208361200b565b9150612ef782612eb6565b602082019050919050565b60006020820190508181036000830152612f1b81612edf565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612f4982612f22565b612f538185612f2d565b9350612f6381856020860161201c565b612f6c81612046565b840191505092915050565b6000608082019050612f8c600083018761213d565b612f99602083018661213d565b612fa66040830185611fd6565b8181036060830152612fb88184612f3e565b905095945050505050565b600081519050612fd281611f3d565b92915050565b600060208284031215612fee57612fed611f07565b5b6000612ffc84828501612fc3565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061303f82611fcc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361307157613070612abc565b5b60018201905091905056fea2646970667358221220250b22ca118eae9e8a2f845650d941efc160d7015c805cdf439acaf20d7aa13e64736f6c63430008100033

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806370a08231116100ec578063b77a147b1161008a578063d5884ccb11610064578063d5884ccb146105d4578063e985e9c5146105ff578063f2fde38b1461063c578063fe325cfe14610665576101b7565b8063b77a147b14610552578063b88d4fde1461057b578063c87b56dd14610597576101b7565b806395d89b41116100c657806395d89b41146104ac578063a22cb465146104d7578063aa35cca314610500578063b3337b3214610529576101b7565b806370a082311461042d578063715018a61461046a5780638da5cb5b14610481576101b7565b80632cc826551161015957806342842e0e1161013357806342842e0e1461038057806355f804b31461039c578063576ef921146103c55780636352211e146103f0576101b7565b80632cc82655146102ef57806332cb6b0c1461031857806338e21cce14610343576101b7565b8063081812fc11610195578063081812fc1461024f578063095ea7b31461028c57806318160ddd146102a857806323b872dd146102d3576101b7565b806301ffc9a7146101bc578063055ad42e146101f957806306fdde0314610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190611f69565b61068e565b6040516101f09190611fb1565b60405180910390f35b34801561020557600080fd5b5061020e610720565b60405161021b9190611fe5565b60405180910390f35b34801561023057600080fd5b50610239610726565b6040516102469190612090565b60405180910390f35b34801561025b57600080fd5b50610276600480360381019061027191906120de565b6107b8565b604051610283919061214c565b60405180910390f35b6102a660048036038101906102a19190612193565b610837565b005b3480156102b457600080fd5b506102bd61097b565b6040516102ca9190611fe5565b60405180910390f35b6102ed60048036038101906102e891906121d3565b610992565b005b3480156102fb57600080fd5b50610316600480360381019061031191906120de565b610cb4565b005b34801561032457600080fd5b5061032d610d4d565b60405161033a9190611fe5565b60405180910390f35b34801561034f57600080fd5b5061036a60048036038101906103659190612226565b610d53565b6040516103779190611fb1565b60405180910390f35b61039a600480360381019061039591906121d3565b610da9565b005b3480156103a857600080fd5b506103c360048036038101906103be91906122b8565b610dc9565b005b3480156103d157600080fd5b506103da610de7565b6040516103e7919061231e565b60405180910390f35b3480156103fc57600080fd5b50610417600480360381019061041291906120de565b610ded565b604051610424919061214c565b60405180910390f35b34801561043957600080fd5b50610454600480360381019061044f9190612226565b610dff565b6040516104619190611fe5565b60405180910390f35b34801561047657600080fd5b5061047f610eb7565b005b34801561048d57600080fd5b50610496610ecb565b6040516104a3919061214c565b60405180910390f35b3480156104b857600080fd5b506104c1610ef5565b6040516104ce9190612090565b60405180910390f35b3480156104e357600080fd5b506104fe60048036038101906104f99190612365565b610f87565b005b34801561050c57600080fd5b5061052760048036038101906105229190612193565b611092565b005b34801561053557600080fd5b50610550600480360381019061054b91906123d1565b6110ff565b005b34801561055e57600080fd5b506105796004803603810190610574919061253c565b611111565b005b6105956004803603810190610590919061263a565b6114ba565b005b3480156105a357600080fd5b506105be60048036038101906105b991906120de565b61152d565b6040516105cb9190612090565b60405180910390f35b3480156105e057600080fd5b506105e96115cb565b6040516105f6919061231e565b60405180910390f35b34801561060b57600080fd5b50610626600480360381019061062191906126bd565b6115d1565b6040516106339190611fb1565b60405180910390f35b34801561064857600080fd5b50610663600480360381019061065e9190612226565b611665565b005b34801561067157600080fd5b5061068c600480360381019061068791906123d1565b6116e8565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106e957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107195750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600c5481565b6060600280546107359061272c565b80601f01602080910402602001604051908101604052809291908181526020018280546107619061272c565b80156107ae5780601f10610783576101008083540402835291602001916107ae565b820191906000526020600020905b81548152906001019060200180831161079157829003601f168201915b5050505050905090565b60006107c3826116fa565b6107f9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061084282610ded565b90508073ffffffffffffffffffffffffffffffffffffffff16610863611759565b73ffffffffffffffffffffffffffffffffffffffff16146108c65761088f8161088a611759565b6115d1565b6108c5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610985611761565b6001546000540303905090565b600061099d82611766565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a04576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a1084611832565b91509150610a268187610a21611759565b611859565b610a7257610a3b86610a36611759565b6115d1565b610a71576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610ad8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ae5868686600161189d565b8015610af057600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bbe85610b9a8888876118a3565b7c0200000000000000000000000000000000000000000000000000000000176118cb565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610c445760006001850190506000600460008381526020019081526020016000205403610c42576000548114610c41578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cac86868660016118f6565b505050505050565b610cbc6118fc565b60048110610cff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf6906127a9565b60405180910390fd5b80600c5403610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a90612815565b60405180910390fd5b80600c8190555050565b610d0581565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610dc4838383604051806020016040528060008152506114ba565b505050565b610dd16118fc565b8181600e9182610de29291906129ec565b505050565b600a5481565b6000610df882611766565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e66576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ebf6118fc565b610ec9600061197a565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f049061272c565b80601f0160208091040260200160405190810160405280929190818152602001828054610f309061272c565b8015610f7d5780601f10610f5257610100808354040283529160200191610f7d565b820191906000526020600020905b815481529060010190602001808311610f6057829003601f168201915b5050505050905090565b8060076000610f94611759565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611041611759565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110869190611fb1565b60405180910390a35050565b61109a6118fc565b610d05816110a661097b565b6110b09190612aeb565b11156110f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e890612b6b565b60405180910390fd5b6110fb8282611a40565b5050565b6111076118fc565b80600b8190555050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461117f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117690612bd7565b60405180910390fd5b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561120c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120390612c69565b60405180910390fd5b806003600c54148061122057506000600c54145b1561132a576000600c540361126a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126190612cd5565b60405180910390fd5b610d05600161127761097b565b6112819190612aeb565b11156112c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b990612b6b565b60405180910390fd5b6001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611325336001611a40565b6114b6565b60003360405160200161133d9190612d3d565b604051602081830303815290604052805190602001209050611375826001600c541461136b57600b5461136f565b600a545b83611bfb565b6113b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ab90612da4565b60405180910390fd5b6000600c54036113f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f090612cd5565b60405180910390fd5b610d05600161140661097b565b6114109190612aeb565b1115611451576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144890612b6b565b60405180910390fd5b6001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506114b4336001611a40565b505b5050565b6114c5848484610992565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611527576114f084848484611c12565b611526576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611538826116fa565b61156e576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611578611d62565b9050600081510361159857604051806020016040528060008152506115c3565b806115a284611df4565b6040516020016115b3929190612e00565b6040516020818303038152906040525b915050919050565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61166d6118fc565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d390612e96565b60405180910390fd5b6116e58161197a565b50565b6116f06118fc565b80600a8190555050565b600081611705611761565b11158015611714575060005482105b8015611752575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611775611761565b116117fb576000548110156117fa5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036117f8575b600081036117ee5760046000836001900393508381526020019081526020016000205490506117c4565b809250505061182d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86118ba868684611e44565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611904611e4d565b73ffffffffffffffffffffffffffffffffffffffff16611922610ecb565b73ffffffffffffffffffffffffffffffffffffffff1614611978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196f90612f02565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008054905060008203611a80576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a8d600084838561189d565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611b0483611af560008660006118a3565b611afe85611e55565b176118cb565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611ba557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611b6a565b5060008203611be0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611bf660008483856118f6565b505050565b600082611c088584611e65565b1490509392505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c38611759565b8786866040518563ffffffff1660e01b8152600401611c5a9493929190612f77565b6020604051808303816000875af1925050508015611c9657506040513d601f19601f82011682018060405250810190611c939190612fd8565b60015b611d0f573d8060008114611cc6576040519150601f19603f3d011682016040523d82523d6000602084013e611ccb565b606091505b506000815103611d07576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e8054611d719061272c565b80601f0160208091040260200160405190810160405280929190818152602001828054611d9d9061272c565b8015611dea5780601f10611dbf57610100808354040283529160200191611dea565b820191906000526020600020905b815481529060010190602001808311611dcd57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611e2f57600184039350600a81066030018453600a8104905080611e0d575b50828103602084039350808452505050919050565b60009392505050565b600033905090565b60006001821460e11b9050919050565b60008082905060005b8451811015611eb057611e9b82868381518110611e8e57611e8d613005565b5b6020026020010151611ebb565b91508080611ea890613034565b915050611e6e565b508091505092915050565b6000818310611ed357611ece8284611ee6565b611ede565b611edd8383611ee6565b5b905092915050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611f4681611f11565b8114611f5157600080fd5b50565b600081359050611f6381611f3d565b92915050565b600060208284031215611f7f57611f7e611f07565b5b6000611f8d84828501611f54565b91505092915050565b60008115159050919050565b611fab81611f96565b82525050565b6000602082019050611fc66000830184611fa2565b92915050565b6000819050919050565b611fdf81611fcc565b82525050565b6000602082019050611ffa6000830184611fd6565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561203a57808201518184015260208101905061201f565b60008484015250505050565b6000601f19601f8301169050919050565b600061206282612000565b61206c818561200b565b935061207c81856020860161201c565b61208581612046565b840191505092915050565b600060208201905081810360008301526120aa8184612057565b905092915050565b6120bb81611fcc565b81146120c657600080fd5b50565b6000813590506120d8816120b2565b92915050565b6000602082840312156120f4576120f3611f07565b5b6000612102848285016120c9565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006121368261210b565b9050919050565b6121468161212b565b82525050565b6000602082019050612161600083018461213d565b92915050565b6121708161212b565b811461217b57600080fd5b50565b60008135905061218d81612167565b92915050565b600080604083850312156121aa576121a9611f07565b5b60006121b88582860161217e565b92505060206121c9858286016120c9565b9150509250929050565b6000806000606084860312156121ec576121eb611f07565b5b60006121fa8682870161217e565b935050602061220b8682870161217e565b925050604061221c868287016120c9565b9150509250925092565b60006020828403121561223c5761223b611f07565b5b600061224a8482850161217e565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261227857612277612253565b5b8235905067ffffffffffffffff81111561229557612294612258565b5b6020830191508360018202830111156122b1576122b061225d565b5b9250929050565b600080602083850312156122cf576122ce611f07565b5b600083013567ffffffffffffffff8111156122ed576122ec611f0c565b5b6122f985828601612262565b92509250509250929050565b6000819050919050565b61231881612305565b82525050565b6000602082019050612333600083018461230f565b92915050565b61234281611f96565b811461234d57600080fd5b50565b60008135905061235f81612339565b92915050565b6000806040838503121561237c5761237b611f07565b5b600061238a8582860161217e565b925050602061239b85828601612350565b9150509250929050565b6123ae81612305565b81146123b957600080fd5b50565b6000813590506123cb816123a5565b92915050565b6000602082840312156123e7576123e6611f07565b5b60006123f5848285016123bc565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61243682612046565b810181811067ffffffffffffffff82111715612455576124546123fe565b5b80604052505050565b6000612468611efd565b9050612474828261242d565b919050565b600067ffffffffffffffff821115612494576124936123fe565b5b602082029050602081019050919050565b60006124b86124b384612479565b61245e565b905080838252602082019050602084028301858111156124db576124da61225d565b5b835b8181101561250457806124f088826123bc565b8452602084019350506020810190506124dd565b5050509392505050565b600082601f83011261252357612522612253565b5b81356125338482602086016124a5565b91505092915050565b60006020828403121561255257612551611f07565b5b600082013567ffffffffffffffff8111156125705761256f611f0c565b5b61257c8482850161250e565b91505092915050565b600080fd5b600067ffffffffffffffff8211156125a5576125a46123fe565b5b6125ae82612046565b9050602081019050919050565b82818337600083830152505050565b60006125dd6125d88461258a565b61245e565b9050828152602081018484840111156125f9576125f8612585565b5b6126048482856125bb565b509392505050565b600082601f83011261262157612620612253565b5b81356126318482602086016125ca565b91505092915050565b6000806000806080858703121561265457612653611f07565b5b60006126628782880161217e565b94505060206126738782880161217e565b9350506040612684878288016120c9565b925050606085013567ffffffffffffffff8111156126a5576126a4611f0c565b5b6126b18782880161260c565b91505092959194509250565b600080604083850312156126d4576126d3611f07565b5b60006126e28582860161217e565b92505060206126f38582860161217e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061274457607f821691505b602082108103612757576127566126fd565b5b50919050565b7f496e636f72726563742070686173652e00000000000000000000000000000000600082015250565b600061279360108361200b565b915061279e8261275d565b602082019050919050565b600060208201905081810360008301526127c281612786565b9050919050565b7f506861736520616c7265616479206c6976652e00000000000000000000000000600082015250565b60006127ff60138361200b565b915061280a826127c9565b602082019050919050565b6000602082019050818103600083015261282e816127f2565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026128a27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612865565b6128ac8683612865565b95508019841693508086168417925050509392505050565b6000819050919050565b60006128e96128e46128df84611fcc565b6128c4565b611fcc565b9050919050565b6000819050919050565b612903836128ce565b61291761290f826128f0565b848454612872565b825550505050565b600090565b61292c61291f565b6129378184846128fa565b505050565b5b8181101561295b57612950600082612924565b60018101905061293d565b5050565b601f8211156129a05761297181612840565b61297a84612855565b81016020851015612989578190505b61299d61299585612855565b83018261293c565b50505b505050565b600082821c905092915050565b60006129c3600019846008026129a5565b1980831691505092915050565b60006129dc83836129b2565b9150826002028217905092915050565b6129f68383612835565b67ffffffffffffffff811115612a0f57612a0e6123fe565b5b612a19825461272c565b612a2482828561295f565b6000601f831160018114612a535760008415612a41578287013590505b612a4b85826129d0565b865550612ab3565b601f198416612a6186612840565b60005b82811015612a8957848901358255600182019150602085019450602081019050612a64565b86831015612aa65784890135612aa2601f8916826129b2565b8355505b6001600288020188555050505b50505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612af682611fcc565b9150612b0183611fcc565b9250828201905080821115612b1957612b18612abc565b5b92915050565b7f43616e74206d696e74206d6f7265207468616e206d617820737570706c790000600082015250565b6000612b55601e8361200b565b9150612b6082612b1f565b602082019050919050565b60006020820190508181036000830152612b8481612b48565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000612bc1601e8361200b565b9150612bcc82612b8b565b602082019050919050565b60006020820190508181036000830152612bf081612bb4565b9050919050565b7f54686973206163636f756e742068617320616c7265616479206d696e7465642060008201527f616e204e46540000000000000000000000000000000000000000000000000000602082015250565b6000612c5360268361200b565b9150612c5e82612bf7565b604082019050919050565b60006020820190508181036000830152612c8281612c46565b9050919050565b7f4d696e74206e6f74207374617274656421000000000000000000000000000000600082015250565b6000612cbf60118361200b565b9150612cca82612c89565b602082019050919050565b60006020820190508181036000830152612cee81612cb2565b9050919050565b60008160601b9050919050565b6000612d0d82612cf5565b9050919050565b6000612d1f82612d02565b9050919050565b612d37612d328261212b565b612d14565b82525050565b6000612d498284612d26565b60148201915081905092915050565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b6000612d8e600d8361200b565b9150612d9982612d58565b602082019050919050565b60006020820190508181036000830152612dbd81612d81565b9050919050565b600081905092915050565b6000612dda82612000565b612de48185612dc4565b9350612df481856020860161201c565b80840191505092915050565b6000612e0c8285612dcf565b9150612e188284612dcf565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612e8060268361200b565b9150612e8b82612e24565b604082019050919050565b60006020820190508181036000830152612eaf81612e73565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612eec60208361200b565b9150612ef782612eb6565b602082019050919050565b60006020820190508181036000830152612f1b81612edf565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612f4982612f22565b612f538185612f2d565b9350612f6381856020860161201c565b612f6c81612046565b840191505092915050565b6000608082019050612f8c600083018761213d565b612f99602083018661213d565b612fa66040830185611fd6565b8181036060830152612fb88184612f3e565b905095945050505050565b600081519050612fd281611f3d565b92915050565b600060208284031215612fee57612fed611f07565b5b6000612ffc84828501612fc3565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061303f82611fcc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361307157613070612abc565b5b60018201905091905056fea2646970667358221220250b22ca118eae9e8a2f845650d941efc160d7015c805cdf439acaf20d7aa13e64736f6c63430008100033

Deployed Bytecode Sourcemap

66699:2397:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33660:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66884:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34562:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41053:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40486:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30313:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44692:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68237:202;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66768:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68985:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47613:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67154:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66818:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35955:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31497:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14690:103;;;;;;;;;;;;;:::i;:::-;;14042:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34738:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41611:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68447:202;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68125:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68657:320;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48404:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34948:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66850:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42002:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14948:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68013:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33660:639;33745:4;34084:10;34069:25;;:11;:25;;;;:102;;;;34161:10;34146:25;;:11;:25;;;;34069:102;:179;;;;34238:10;34223:25;;:11;:25;;;;34069:179;34049:199;;33660:639;;;:::o;66884:27::-;;;;:::o;34562:100::-;34616:13;34649:5;34642:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34562:100;:::o;41053:218::-;41129:7;41154:16;41162:7;41154;:16::i;:::-;41149:64;;41179:34;;;;;;;;;;;;;;41149:64;41233:15;:24;41249:7;41233:24;;;;;;;;;;;:30;;;;;;;;;;;;41226:37;;41053:218;;;:::o;40486:408::-;40575:13;40591:16;40599:7;40591;:16::i;:::-;40575:32;;40647:5;40624:28;;:19;:17;:19::i;:::-;:28;;;40620:175;;40672:44;40689:5;40696:19;:17;:19::i;:::-;40672:16;:44::i;:::-;40667:128;;40744:35;;;;;;;;;;;;;;40667:128;40620:175;40840:2;40807:15;:24;40823:7;40807:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;40878:7;40874:2;40858:28;;40867:5;40858:28;;;;;;;;;;;;40564:330;40486:408;;:::o;30313:323::-;30374:7;30602:15;:13;:15::i;:::-;30587:12;;30571:13;;:28;:46;30564:53;;30313:323;:::o;44692:2825::-;44834:27;44864;44883:7;44864:18;:27::i;:::-;44834:57;;44949:4;44908:45;;44924:19;44908:45;;;44904:86;;44962:28;;;;;;;;;;;;;;44904:86;45004:27;45033:23;45060:35;45087:7;45060:26;:35::i;:::-;45003:92;;;;45195:68;45220:15;45237:4;45243:19;:17;:19::i;:::-;45195:24;:68::i;:::-;45190:180;;45283:43;45300:4;45306:19;:17;:19::i;:::-;45283:16;:43::i;:::-;45278:92;;45335:35;;;;;;;;;;;;;;45278:92;45190:180;45401:1;45387:16;;:2;:16;;;45383:52;;45412:23;;;;;;;;;;;;;;45383:52;45448:43;45470:4;45476:2;45480:7;45489:1;45448:21;:43::i;:::-;45584:15;45581:160;;;45724:1;45703:19;45696:30;45581:160;46121:18;:24;46140:4;46121:24;;;;;;;;;;;;;;;;46119:26;;;;;;;;;;;;46190:18;:22;46209:2;46190:22;;;;;;;;;;;;;;;;46188:24;;;;;;;;;;;46512:146;46549:2;46598:45;46613:4;46619:2;46623:19;46598:14;:45::i;:::-;26712:8;46570:73;46512:18;:146::i;:::-;46483:17;:26;46501:7;46483:26;;;;;;;;;;;:175;;;;46829:1;26712:8;46778:19;:47;:52;46774:627;;46851:19;46883:1;46873:7;:11;46851:33;;47040:1;47006:17;:30;47024:11;47006:30;;;;;;;;;;;;:35;47002:384;;47144:13;;47129:11;:28;47125:242;;47324:19;47291:17;:30;47309:11;47291:30;;;;;;;;;;;:52;;;;47125:242;47002:384;46832:569;46774:627;47448:7;47444:2;47429:27;;47438:4;47429:27;;;;;;;;;;;;47467:42;47488:4;47494:2;47498:7;47507:1;47467:20;:42::i;:::-;44823:2694;;;44692:2825;;;:::o;68237:202::-;13928:13;:11;:13::i;:::-;68314:1:::1;68306:5;:9;68298:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;68371:5;68355:12;;:21:::0;68347:53:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;68426:5;68411:12;:20;;;;68237:202:::0;:::o;66768:41::-;66805:4;66768:41;:::o;68985:108::-;69042:4;69066:10;:19;69077:7;69066:19;;;;;;;;;;;;;;;;;;;;;;;;;69059:26;;68985:108;;;:::o;47613:193::-;47759:39;47776:4;47782:2;47786:7;47759:39;;;;;;;;;;;;:16;:39::i;:::-;47613:193;;;:::o;67154:106::-;13928:13;:11;:13::i;:::-;67245:7:::1;;67229:13;:23;;;;;;;:::i;:::-;;67154:106:::0;;:::o;66818:25::-;;;;:::o;35955:152::-;36027:7;36070:27;36089:7;36070:18;:27::i;:::-;36047:52;;35955:152;;;:::o;31497:233::-;31569:7;31610:1;31593:19;;:5;:19;;;31589:60;;31621:28;;;;;;;;;;;;;;31589:60;25656:13;31667:18;:25;31686:5;31667:25;;;;;;;;;;;;;;;;:55;31660:62;;31497:233;;;:::o;14690:103::-;13928:13;:11;:13::i;:::-;14755:30:::1;14782:1;14755:18;:30::i;:::-;14690:103::o:0;14042:87::-;14088:7;14115:6;;;;;;;;;;;14108:13;;14042:87;:::o;34738:104::-;34794:13;34827:7;34820:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34738:104;:::o;41611:234::-;41758:8;41706:18;:39;41725:19;:17;:19::i;:::-;41706:39;;;;;;;;;;;;;;;:49;41746:8;41706:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;41818:8;41782:55;;41797:19;:17;:19::i;:::-;41782:55;;;41828:8;41782:55;;;;;;:::i;:::-;;;;;;;;41611:234;;:::o;68447:202::-;13928:13;:11;:13::i;:::-;66805:4:::1;68552:9;68536:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;68528:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;68621:20;68627:2;68631:9;68621:5;:20::i;:::-;68447:202:::0;;:::o;68125:104::-;13928:13;:11;:13::i;:::-;68210:11:::1;68197:10;:24;;;;68125:104:::0;:::o;68657:320::-;67440:10;67427:23;;:9;:23;;;67419:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;67563:10:::1;:22;67574:10;67563:22;;;;;;;;;;;;;;;;;;;;;;;;;67562:23;67554:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;68747:5:::2;67726:1;67710:12;;:17;:38;;;;67747:1;67731:12;;:17;67710:38;67707:291;;;68790:1:::3;68774:12;;:17:::0;68766:47:::3;;;;;;;;;;;;:::i;:::-;;;;;;;;;66805:4;68848:1;68832:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:31;;68824:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;68934:4;68909:10;:22;68920:10;68909:22;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;68949:20;68955:10;68967:1;68949:5;:20::i;:::-;67707:291:::2;;;67799:12;67841:10;67824:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;67814:39;;;;;;67799:54;;67876:76;67895:5;67918:1;67902:12;;:17;:43;;67935:10;;67902:43;;;67922:10;;67902:43;67947:4;67876:18;:76::i;:::-;67868:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;68790:1:::3;68774:12;;:17:::0;68766:47:::3;;;;;;;;;;;;:::i;:::-;;;;;;;;;66805:4;68848:1;68832:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:31;;68824:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;68934:4;68909:10;:22;68920:10;68909:22;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;68949:20;68955:10;68967:1;68949:5;:20::i;:::-;67784:214:::2;67707:291;67639:1;68657:320:::0;:::o;48404:407::-;48579:31;48592:4;48598:2;48602:7;48579:12;:31::i;:::-;48643:1;48625:2;:14;;;:19;48621:183;;48664:56;48695:4;48701:2;48705:7;48714:5;48664:30;:56::i;:::-;48659:145;;48748:40;;;;;;;;;;;;;;48659:145;48621:183;48404:407;;;;:::o;34948:318::-;35021:13;35052:16;35060:7;35052;:16::i;:::-;35047:59;;35077:29;;;;;;;;;;;;;;35047:59;35119:21;35143:10;:8;:10::i;:::-;35119:34;;35196:1;35177:7;35171:21;:26;:87;;;;;;;;;;;;;;;;;35224:7;35233:18;35243:7;35233:9;:18::i;:::-;35207:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;35171:87;35164:94;;;34948:318;;;:::o;66850:25::-;;;;:::o;42002:164::-;42099:4;42123:18;:25;42142:5;42123:25;;;;;;;;;;;;;;;:35;42149:8;42123:35;;;;;;;;;;;;;;;;;;;;;;;;;42116:42;;42002:164;;;;:::o;14948:201::-;13928:13;:11;:13::i;:::-;15057:1:::1;15037:22;;:8;:22;;::::0;15029:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;15113:28;15132:8;15113:18;:28::i;:::-;14948:201:::0;:::o;68013:104::-;13928:13;:11;:13::i;:::-;68098:11:::1;68085:10;:24;;;;68013:104:::0;:::o;42424:282::-;42489:4;42545:7;42526:15;:13;:15::i;:::-;:26;;:66;;;;;42579:13;;42569:7;:23;42526:66;:153;;;;;42678:1;26432:8;42630:17;:26;42648:7;42630:26;;;;;;;;;;;;:44;:49;42526:153;42506:173;;42424:282;;;:::o;64732:105::-;64792:7;64819:10;64812:17;;64732:105;:::o;29829:92::-;29885:7;29829:92;:::o;37110:1275::-;37177:7;37197:12;37212:7;37197:22;;37280:4;37261:15;:13;:15::i;:::-;:23;37257:1061;;37314:13;;37307:4;:20;37303:1015;;;37352:14;37369:17;:23;37387:4;37369:23;;;;;;;;;;;;37352:40;;37486:1;26432:8;37458:6;:24;:29;37454:845;;38123:113;38140:1;38130:6;:11;38123:113;;38183:17;:25;38201:6;;;;;;;38183:25;;;;;;;;;;;;38174:34;;38123:113;;;38269:6;38262:13;;;;;;37454:845;37329:989;37303:1015;37257:1061;38346:31;;;;;;;;;;;;;;37110:1275;;;;:::o;43587:485::-;43689:27;43718:23;43759:38;43800:15;:24;43816:7;43800:24;;;;;;;;;;;43759:65;;43977:18;43954:41;;44034:19;44028:26;44009:45;;43939:126;43587:485;;;:::o;42815:659::-;42964:11;43129:16;43122:5;43118:28;43109:37;;43289:16;43278:9;43274:32;43261:45;;43439:15;43428:9;43425:30;43417:5;43406:9;43403:20;43400:56;43390:66;;42815:659;;;;;:::o;49473:159::-;;;;;:::o;64041:311::-;64176:7;64196:16;26836:3;64222:19;:41;;64196:68;;26836:3;64290:31;64301:4;64307:2;64311:9;64290:10;:31::i;:::-;64282:40;;:62;;64275:69;;;64041:311;;;;;:::o;38933:450::-;39013:14;39181:16;39174:5;39170:28;39161:37;;39358:5;39344:11;39319:23;39315:41;39312:52;39305:5;39302:63;39292:73;;38933:450;;;;:::o;50297:158::-;;;;;:::o;14207:132::-;14282:12;:10;:12::i;:::-;14271:23;;:7;:5;:7::i;:::-;:23;;;14263:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14207:132::o;15309:191::-;15383:16;15402:6;;;;;;;;;;;15383:25;;15428:8;15419:6;;:17;;;;;;;;;;;;;;;;;;15483:8;15452:40;;15473:8;15452:40;;;;;;;;;;;;15372:128;15309:191;:::o;52073:2966::-;52146:20;52169:13;;52146:36;;52209:1;52197:8;:13;52193:44;;52219:18;;;;;;;;;;;;;;52193:44;52250:61;52280:1;52284:2;52288:12;52302:8;52250:21;:61::i;:::-;52794:1;25794:2;52764:1;:26;;52763:32;52751:8;:45;52725:18;:22;52744:2;52725:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;53073:139;53110:2;53164:33;53187:1;53191:2;53195:1;53164:14;:33::i;:::-;53131:30;53152:8;53131:20;:30::i;:::-;:66;53073:18;:139::i;:::-;53039:17;:31;53057:12;53039:31;;;;;;;;;;;:173;;;;53229:16;53260:11;53289:8;53274:12;:23;53260:37;;53810:16;53806:2;53802:25;53790:37;;54182:12;54142:8;54101:1;54039:25;53980:1;53919;53892:335;54553:1;54539:12;54535:20;54493:346;54594:3;54585:7;54582:16;54493:346;;54812:7;54802:8;54799:1;54772:25;54769:1;54766;54761:59;54647:1;54638:7;54634:15;54623:26;;54493:346;;;54497:77;54884:1;54872:8;:13;54868:45;;54894:19;;;;;;;;;;;;;;54868:45;54946:3;54930:13;:19;;;;52499:2462;;54971:60;55000:1;55004:2;55008:12;55022:8;54971:20;:60::i;:::-;52135:2904;52073:2966;;:::o;1096:190::-;1221:4;1274;1245:25;1258:5;1265:4;1245:12;:25::i;:::-;:33;1238:40;;1096:190;;;;;:::o;50895:716::-;51058:4;51104:2;51079:45;;;51125:19;:17;:19::i;:::-;51146:4;51152:7;51161:5;51079:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;51075:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51379:1;51362:6;:13;:18;51358:235;;51408:40;;;;;;;;;;;;;;51358:235;51551:6;51545:13;51536:6;51532:2;51528:15;51521:38;51075:529;51248:54;;;51238:64;;;:6;:64;;;;51231:71;;;50895:716;;;;;;:::o;67032:114::-;67092:13;67125;67118:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67032:114;:::o;64939:1745::-;65004:17;65438:4;65431;65425:11;65421:22;65530:1;65524:4;65517:15;65605:4;65602:1;65598:12;65591:19;;65687:1;65682:3;65675:14;65791:3;66030:5;66012:428;66038:1;66012:428;;;66078:1;66073:3;66069:11;66062:18;;66249:2;66243:4;66239:13;66235:2;66231:22;66226:3;66218:36;66343:2;66337:4;66333:13;66325:21;;66410:4;66012:428;66400:25;66012:428;66016:21;66479:3;66474;66470:13;66594:4;66589:3;66585:14;66578:21;;66659:6;66654:3;66647:19;65043:1634;;;64939:1745;;;:::o;63742:147::-;63879:6;63742:147;;;;;:::o;12749:98::-;12802:7;12829:10;12822:17;;12749:98;:::o;39485:324::-;39555:14;39788:1;39778:8;39775:15;39749:24;39745:46;39735:56;;39485:324;;;:::o;1963:296::-;2046:7;2066:20;2089:4;2066:27;;2109:9;2104:118;2128:5;:12;2124:1;:16;2104:118;;;2177:33;2187:12;2201:5;2207:1;2201:8;;;;;;;;:::i;:::-;;;;;;;;2177:9;:33::i;:::-;2162:48;;2142:3;;;;;:::i;:::-;;;;2104:118;;;;2239:12;2232:19;;;1963:296;;;;:::o;9003:149::-;9066:7;9097:1;9093;:5;:51;;9124:20;9139:1;9142;9124:14;:20::i;:::-;9093:51;;;9101:20;9116:1;9119;9101:14;:20::i;:::-;9093:51;9086:58;;9003:149;;;;:::o;9160:268::-;9228:13;9335:1;9329:4;9322:15;9364:1;9358:4;9351:15;9405:4;9399;9389:21;9380:30;;9160:268;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:118::-;1688:24;1706:5;1688:24;:::i;:::-;1683:3;1676:37;1601:118;;:::o;1725:222::-;1818:4;1856:2;1845:9;1841:18;1833:26;;1869:71;1937:1;1926:9;1922:17;1913:6;1869:71;:::i;:::-;1725:222;;;;:::o;1953:99::-;2005:6;2039:5;2033:12;2023:22;;1953:99;;;:::o;2058:169::-;2142:11;2176:6;2171:3;2164:19;2216:4;2211:3;2207:14;2192:29;;2058:169;;;;:::o;2233:246::-;2314:1;2324:113;2338:6;2335:1;2332:13;2324:113;;;2423:1;2418:3;2414:11;2408:18;2404:1;2399:3;2395:11;2388:39;2360:2;2357:1;2353:10;2348:15;;2324:113;;;2471:1;2462:6;2457:3;2453:16;2446:27;2295:184;2233:246;;;:::o;2485:102::-;2526:6;2577:2;2573:7;2568:2;2561:5;2557:14;2553:28;2543:38;;2485:102;;;:::o;2593:377::-;2681:3;2709:39;2742:5;2709:39;:::i;:::-;2764:71;2828:6;2823:3;2764:71;:::i;:::-;2757:78;;2844:65;2902:6;2897:3;2890:4;2883:5;2879:16;2844:65;:::i;:::-;2934:29;2956:6;2934:29;:::i;:::-;2929:3;2925:39;2918:46;;2685:285;2593:377;;;;:::o;2976:313::-;3089:4;3127:2;3116:9;3112:18;3104:26;;3176:9;3170:4;3166:20;3162:1;3151:9;3147:17;3140:47;3204:78;3277:4;3268:6;3204:78;:::i;:::-;3196:86;;2976:313;;;;:::o;3295:122::-;3368:24;3386:5;3368:24;:::i;:::-;3361:5;3358:35;3348:63;;3407:1;3404;3397:12;3348:63;3295:122;:::o;3423:139::-;3469:5;3507:6;3494:20;3485:29;;3523:33;3550:5;3523:33;:::i;:::-;3423:139;;;;:::o;3568:329::-;3627:6;3676:2;3664:9;3655:7;3651:23;3647:32;3644:119;;;3682:79;;:::i;:::-;3644:119;3802:1;3827:53;3872:7;3863:6;3852:9;3848:22;3827:53;:::i;:::-;3817:63;;3773:117;3568:329;;;;:::o;3903:126::-;3940:7;3980:42;3973:5;3969:54;3958:65;;3903:126;;;:::o;4035:96::-;4072:7;4101:24;4119:5;4101:24;:::i;:::-;4090:35;;4035:96;;;:::o;4137:118::-;4224:24;4242:5;4224:24;:::i;:::-;4219:3;4212:37;4137:118;;:::o;4261:222::-;4354:4;4392:2;4381:9;4377:18;4369:26;;4405:71;4473:1;4462:9;4458:17;4449:6;4405:71;:::i;:::-;4261:222;;;;:::o;4489:122::-;4562:24;4580:5;4562:24;:::i;:::-;4555:5;4552:35;4542:63;;4601:1;4598;4591:12;4542:63;4489:122;:::o;4617:139::-;4663:5;4701:6;4688:20;4679:29;;4717:33;4744:5;4717:33;:::i;:::-;4617:139;;;;:::o;4762:474::-;4830:6;4838;4887:2;4875:9;4866:7;4862:23;4858:32;4855:119;;;4893:79;;:::i;:::-;4855:119;5013:1;5038:53;5083:7;5074:6;5063:9;5059:22;5038:53;:::i;:::-;5028:63;;4984:117;5140:2;5166:53;5211:7;5202:6;5191:9;5187:22;5166:53;:::i;:::-;5156:63;;5111:118;4762:474;;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:329::-;5926:6;5975:2;5963:9;5954:7;5950:23;5946:32;5943:119;;;5981:79;;:::i;:::-;5943:119;6101:1;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6072:117;5867:329;;;;:::o;6202:117::-;6311:1;6308;6301:12;6325:117;6434:1;6431;6424:12;6448:117;6557:1;6554;6547:12;6585:553;6643:8;6653:6;6703:3;6696:4;6688:6;6684:17;6680:27;6670:122;;6711:79;;:::i;:::-;6670:122;6824:6;6811:20;6801:30;;6854:18;6846:6;6843:30;6840:117;;;6876:79;;:::i;:::-;6840:117;6990:4;6982:6;6978:17;6966:29;;7044:3;7036:4;7028:6;7024:17;7014:8;7010:32;7007:41;7004:128;;;7051:79;;:::i;:::-;7004:128;6585:553;;;;;:::o;7144:529::-;7215:6;7223;7272:2;7260:9;7251:7;7247:23;7243:32;7240:119;;;7278:79;;:::i;:::-;7240:119;7426:1;7415:9;7411:17;7398:31;7456:18;7448:6;7445:30;7442:117;;;7478:79;;:::i;:::-;7442:117;7591:65;7648:7;7639:6;7628:9;7624:22;7591:65;:::i;:::-;7573:83;;;;7369:297;7144:529;;;;;:::o;7679:77::-;7716:7;7745:5;7734:16;;7679:77;;;:::o;7762:118::-;7849:24;7867:5;7849:24;:::i;:::-;7844:3;7837:37;7762:118;;:::o;7886:222::-;7979:4;8017:2;8006:9;8002:18;7994:26;;8030:71;8098:1;8087:9;8083:17;8074:6;8030:71;:::i;:::-;7886:222;;;;:::o;8114:116::-;8184:21;8199:5;8184:21;:::i;:::-;8177:5;8174:32;8164:60;;8220:1;8217;8210:12;8164:60;8114:116;:::o;8236:133::-;8279:5;8317:6;8304:20;8295:29;;8333:30;8357:5;8333:30;:::i;:::-;8236:133;;;;:::o;8375:468::-;8440:6;8448;8497:2;8485:9;8476:7;8472:23;8468:32;8465:119;;;8503:79;;:::i;:::-;8465:119;8623:1;8648:53;8693:7;8684:6;8673:9;8669:22;8648:53;:::i;:::-;8638:63;;8594:117;8750:2;8776:50;8818:7;8809:6;8798:9;8794:22;8776:50;:::i;:::-;8766:60;;8721:115;8375:468;;;;;:::o;8849:122::-;8922:24;8940:5;8922:24;:::i;:::-;8915:5;8912:35;8902:63;;8961:1;8958;8951:12;8902:63;8849:122;:::o;8977:139::-;9023:5;9061:6;9048:20;9039:29;;9077:33;9104:5;9077:33;:::i;:::-;8977:139;;;;:::o;9122:329::-;9181:6;9230:2;9218:9;9209:7;9205:23;9201:32;9198:119;;;9236:79;;:::i;:::-;9198:119;9356:1;9381:53;9426:7;9417:6;9406:9;9402:22;9381:53;:::i;:::-;9371:63;;9327:117;9122:329;;;;:::o;9457:180::-;9505:77;9502:1;9495:88;9602:4;9599:1;9592:15;9626:4;9623:1;9616:15;9643:281;9726:27;9748:4;9726:27;:::i;:::-;9718:6;9714:40;9856:6;9844:10;9841:22;9820:18;9808:10;9805:34;9802:62;9799:88;;;9867:18;;:::i;:::-;9799:88;9907:10;9903:2;9896:22;9686:238;9643:281;;:::o;9930:129::-;9964:6;9991:20;;:::i;:::-;9981:30;;10020:33;10048:4;10040:6;10020:33;:::i;:::-;9930:129;;;:::o;10065:311::-;10142:4;10232:18;10224:6;10221:30;10218:56;;;10254:18;;:::i;:::-;10218:56;10304:4;10296:6;10292:17;10284:25;;10364:4;10358;10354:15;10346:23;;10065:311;;;:::o;10399:710::-;10495:5;10520:81;10536:64;10593:6;10536:64;:::i;:::-;10520:81;:::i;:::-;10511:90;;10621:5;10650:6;10643:5;10636:21;10684:4;10677:5;10673:16;10666:23;;10737:4;10729:6;10725:17;10717:6;10713:30;10766:3;10758:6;10755:15;10752:122;;;10785:79;;:::i;:::-;10752:122;10900:6;10883:220;10917:6;10912:3;10909:15;10883:220;;;10992:3;11021:37;11054:3;11042:10;11021:37;:::i;:::-;11016:3;11009:50;11088:4;11083:3;11079:14;11072:21;;10959:144;10943:4;10938:3;10934:14;10927:21;;10883:220;;;10887:21;10501:608;;10399:710;;;;;:::o;11132:370::-;11203:5;11252:3;11245:4;11237:6;11233:17;11229:27;11219:122;;11260:79;;:::i;:::-;11219:122;11377:6;11364:20;11402:94;11492:3;11484:6;11477:4;11469:6;11465:17;11402:94;:::i;:::-;11393:103;;11209:293;11132:370;;;;:::o;11508:539::-;11592:6;11641:2;11629:9;11620:7;11616:23;11612:32;11609:119;;;11647:79;;:::i;:::-;11609:119;11795:1;11784:9;11780:17;11767:31;11825:18;11817:6;11814:30;11811:117;;;11847:79;;:::i;:::-;11811:117;11952:78;12022:7;12013:6;12002:9;11998:22;11952:78;:::i;:::-;11942:88;;11738:302;11508:539;;;;:::o;12053:117::-;12162:1;12159;12152:12;12176:307;12237:4;12327:18;12319:6;12316:30;12313:56;;;12349:18;;:::i;:::-;12313:56;12387:29;12409:6;12387:29;:::i;:::-;12379:37;;12471:4;12465;12461:15;12453:23;;12176:307;;;:::o;12489:146::-;12586:6;12581:3;12576;12563:30;12627:1;12618:6;12613:3;12609:16;12602:27;12489:146;;;:::o;12641:423::-;12718:5;12743:65;12759:48;12800:6;12759:48;:::i;:::-;12743:65;:::i;:::-;12734:74;;12831:6;12824:5;12817:21;12869:4;12862:5;12858:16;12907:3;12898:6;12893:3;12889:16;12886:25;12883:112;;;12914:79;;:::i;:::-;12883:112;13004:54;13051:6;13046:3;13041;13004:54;:::i;:::-;12724:340;12641:423;;;;;:::o;13083:338::-;13138:5;13187:3;13180:4;13172:6;13168:17;13164:27;13154:122;;13195:79;;:::i;:::-;13154:122;13312:6;13299:20;13337:78;13411:3;13403:6;13396:4;13388:6;13384:17;13337:78;:::i;:::-;13328:87;;13144:277;13083:338;;;;:::o;13427:943::-;13522:6;13530;13538;13546;13595:3;13583:9;13574:7;13570:23;13566:33;13563:120;;;13602:79;;:::i;:::-;13563:120;13722:1;13747:53;13792:7;13783:6;13772:9;13768:22;13747:53;:::i;:::-;13737:63;;13693:117;13849:2;13875:53;13920:7;13911:6;13900:9;13896:22;13875:53;:::i;:::-;13865:63;;13820:118;13977:2;14003:53;14048:7;14039:6;14028:9;14024:22;14003:53;:::i;:::-;13993:63;;13948:118;14133:2;14122:9;14118:18;14105:32;14164:18;14156:6;14153:30;14150:117;;;14186:79;;:::i;:::-;14150:117;14291:62;14345:7;14336:6;14325:9;14321:22;14291:62;:::i;:::-;14281:72;;14076:287;13427:943;;;;;;;:::o;14376:474::-;14444:6;14452;14501:2;14489:9;14480:7;14476:23;14472:32;14469:119;;;14507:79;;:::i;:::-;14469:119;14627:1;14652:53;14697:7;14688:6;14677:9;14673:22;14652:53;:::i;:::-;14642:63;;14598:117;14754:2;14780:53;14825:7;14816:6;14805:9;14801:22;14780:53;:::i;:::-;14770:63;;14725:118;14376:474;;;;;:::o;14856:180::-;14904:77;14901:1;14894:88;15001:4;14998:1;14991:15;15025:4;15022:1;15015:15;15042:320;15086:6;15123:1;15117:4;15113:12;15103:22;;15170:1;15164:4;15160:12;15191:18;15181:81;;15247:4;15239:6;15235:17;15225:27;;15181:81;15309:2;15301:6;15298:14;15278:18;15275:38;15272:84;;15328:18;;:::i;:::-;15272:84;15093:269;15042:320;;;:::o;15368:166::-;15508:18;15504:1;15496:6;15492:14;15485:42;15368:166;:::o;15540:366::-;15682:3;15703:67;15767:2;15762:3;15703:67;:::i;:::-;15696:74;;15779:93;15868:3;15779:93;:::i;:::-;15897:2;15892:3;15888:12;15881:19;;15540:366;;;:::o;15912:419::-;16078:4;16116:2;16105:9;16101:18;16093:26;;16165:9;16159:4;16155:20;16151:1;16140:9;16136:17;16129:47;16193:131;16319:4;16193:131;:::i;:::-;16185:139;;15912:419;;;:::o;16337:169::-;16477:21;16473:1;16465:6;16461:14;16454:45;16337:169;:::o;16512:366::-;16654:3;16675:67;16739:2;16734:3;16675:67;:::i;:::-;16668:74;;16751:93;16840:3;16751:93;:::i;:::-;16869:2;16864:3;16860:12;16853:19;;16512:366;;;:::o;16884:419::-;17050:4;17088:2;17077:9;17073:18;17065:26;;17137:9;17131:4;17127:20;17123:1;17112:9;17108:17;17101:47;17165:131;17291:4;17165:131;:::i;:::-;17157:139;;16884:419;;;:::o;17309:97::-;17368:6;17396:3;17386:13;;17309:97;;;;:::o;17412:141::-;17461:4;17484:3;17476:11;;17507:3;17504:1;17497:14;17541:4;17538:1;17528:18;17520:26;;17412:141;;;:::o;17559:93::-;17596:6;17643:2;17638;17631:5;17627:14;17623:23;17613:33;;17559:93;;;:::o;17658:107::-;17702:8;17752:5;17746:4;17742:16;17721:37;;17658:107;;;;:::o;17771:393::-;17840:6;17890:1;17878:10;17874:18;17913:97;17943:66;17932:9;17913:97;:::i;:::-;18031:39;18061:8;18050:9;18031:39;:::i;:::-;18019:51;;18103:4;18099:9;18092:5;18088:21;18079:30;;18152:4;18142:8;18138:19;18131:5;18128:30;18118:40;;17847:317;;17771:393;;;;;:::o;18170:60::-;18198:3;18219:5;18212:12;;18170:60;;;:::o;18236:142::-;18286:9;18319:53;18337:34;18346:24;18364:5;18346:24;:::i;:::-;18337:34;:::i;:::-;18319:53;:::i;:::-;18306:66;;18236:142;;;:::o;18384:75::-;18427:3;18448:5;18441:12;;18384:75;;;:::o;18465:269::-;18575:39;18606:7;18575:39;:::i;:::-;18636:91;18685:41;18709:16;18685:41;:::i;:::-;18677:6;18670:4;18664:11;18636:91;:::i;:::-;18630:4;18623:105;18541:193;18465:269;;;:::o;18740:73::-;18785:3;18740:73;:::o;18819:189::-;18896:32;;:::i;:::-;18937:65;18995:6;18987;18981:4;18937:65;:::i;:::-;18872:136;18819:189;;:::o;19014:186::-;19074:120;19091:3;19084:5;19081:14;19074:120;;;19145:39;19182:1;19175:5;19145:39;:::i;:::-;19118:1;19111:5;19107:13;19098:22;;19074:120;;;19014:186;;:::o;19206:543::-;19307:2;19302:3;19299:11;19296:446;;;19341:38;19373:5;19341:38;:::i;:::-;19425:29;19443:10;19425:29;:::i;:::-;19415:8;19411:44;19608:2;19596:10;19593:18;19590:49;;;19629:8;19614:23;;19590:49;19652:80;19708:22;19726:3;19708:22;:::i;:::-;19698:8;19694:37;19681:11;19652:80;:::i;:::-;19311:431;;19296:446;19206:543;;;:::o;19755:117::-;19809:8;19859:5;19853:4;19849:16;19828:37;;19755:117;;;;:::o;19878:169::-;19922:6;19955:51;20003:1;19999:6;19991:5;19988:1;19984:13;19955:51;:::i;:::-;19951:56;20036:4;20030;20026:15;20016:25;;19929:118;19878:169;;;;:::o;20052:295::-;20128:4;20274:29;20299:3;20293:4;20274:29;:::i;:::-;20266:37;;20336:3;20333:1;20329:11;20323:4;20320:21;20312:29;;20052:295;;;;:::o;20352:1403::-;20476:44;20516:3;20511;20476:44;:::i;:::-;20585:18;20577:6;20574:30;20571:56;;;20607:18;;:::i;:::-;20571:56;20651:38;20683:4;20677:11;20651:38;:::i;:::-;20736:67;20796:6;20788;20782:4;20736:67;:::i;:::-;20830:1;20859:2;20851:6;20848:14;20876:1;20871:632;;;;21547:1;21564:6;21561:84;;;21620:9;21615:3;21611:19;21598:33;21589:42;;21561:84;21671:67;21731:6;21724:5;21671:67;:::i;:::-;21665:4;21658:81;21520:229;20841:908;;20871:632;20923:4;20919:9;20911:6;20907:22;20957:37;20989:4;20957:37;:::i;:::-;21016:1;21030:215;21044:7;21041:1;21038:14;21030:215;;;21130:9;21125:3;21121:19;21108:33;21100:6;21093:49;21181:1;21173:6;21169:14;21159:24;;21228:2;21217:9;21213:18;21200:31;;21067:4;21064:1;21060:12;21055:17;;21030:215;;;21273:6;21264:7;21261:19;21258:186;;;21338:9;21333:3;21329:19;21316:33;21381:48;21423:4;21415:6;21411:17;21400:9;21381:48;:::i;:::-;21373:6;21366:64;21281:163;21258:186;21490:1;21486;21478:6;21474:14;21470:22;21464:4;21457:36;20878:625;;;20841:908;;20451:1304;;;20352:1403;;;:::o;21761:180::-;21809:77;21806:1;21799:88;21906:4;21903:1;21896:15;21930:4;21927:1;21920:15;21947:191;21987:3;22006:20;22024:1;22006:20;:::i;:::-;22001:25;;22040:20;22058:1;22040:20;:::i;:::-;22035:25;;22083:1;22080;22076:9;22069:16;;22104:3;22101:1;22098:10;22095:36;;;22111:18;;:::i;:::-;22095:36;21947:191;;;;:::o;22144:180::-;22284:32;22280:1;22272:6;22268:14;22261:56;22144:180;:::o;22330:366::-;22472:3;22493:67;22557:2;22552:3;22493:67;:::i;:::-;22486:74;;22569:93;22658:3;22569:93;:::i;:::-;22687:2;22682:3;22678:12;22671:19;;22330:366;;;:::o;22702:419::-;22868:4;22906:2;22895:9;22891:18;22883:26;;22955:9;22949:4;22945:20;22941:1;22930:9;22926:17;22919:47;22983:131;23109:4;22983:131;:::i;:::-;22975:139;;22702:419;;;:::o;23127:180::-;23267:32;23263:1;23255:6;23251:14;23244:56;23127:180;:::o;23313:366::-;23455:3;23476:67;23540:2;23535:3;23476:67;:::i;:::-;23469:74;;23552:93;23641:3;23552:93;:::i;:::-;23670:2;23665:3;23661:12;23654:19;;23313:366;;;:::o;23685:419::-;23851:4;23889:2;23878:9;23874:18;23866:26;;23938:9;23932:4;23928:20;23924:1;23913:9;23909:17;23902:47;23966:131;24092:4;23966:131;:::i;:::-;23958:139;;23685:419;;;:::o;24110:225::-;24250:34;24246:1;24238:6;24234:14;24227:58;24319:8;24314:2;24306:6;24302:15;24295:33;24110:225;:::o;24341:366::-;24483:3;24504:67;24568:2;24563:3;24504:67;:::i;:::-;24497:74;;24580:93;24669:3;24580:93;:::i;:::-;24698:2;24693:3;24689:12;24682:19;;24341:366;;;:::o;24713:419::-;24879:4;24917:2;24906:9;24902:18;24894:26;;24966:9;24960:4;24956:20;24952:1;24941:9;24937:17;24930:47;24994:131;25120:4;24994:131;:::i;:::-;24986:139;;24713:419;;;:::o;25138:167::-;25278:19;25274:1;25266:6;25262:14;25255:43;25138:167;:::o;25311:366::-;25453:3;25474:67;25538:2;25533:3;25474:67;:::i;:::-;25467:74;;25550:93;25639:3;25550:93;:::i;:::-;25668:2;25663:3;25659:12;25652:19;;25311:366;;;:::o;25683:419::-;25849:4;25887:2;25876:9;25872:18;25864:26;;25936:9;25930:4;25926:20;25922:1;25911:9;25907:17;25900:47;25964:131;26090:4;25964:131;:::i;:::-;25956:139;;25683:419;;;:::o;26108:94::-;26141:8;26189:5;26185:2;26181:14;26160:35;;26108:94;;;:::o;26208:::-;26247:7;26276:20;26290:5;26276:20;:::i;:::-;26265:31;;26208:94;;;:::o;26308:100::-;26347:7;26376:26;26396:5;26376:26;:::i;:::-;26365:37;;26308:100;;;:::o;26414:157::-;26519:45;26539:24;26557:5;26539:24;:::i;:::-;26519:45;:::i;:::-;26514:3;26507:58;26414:157;;:::o;26577:256::-;26689:3;26704:75;26775:3;26766:6;26704:75;:::i;:::-;26804:2;26799:3;26795:12;26788:19;;26824:3;26817:10;;26577:256;;;;:::o;26839:163::-;26979:15;26975:1;26967:6;26963:14;26956:39;26839:163;:::o;27008:366::-;27150:3;27171:67;27235:2;27230:3;27171:67;:::i;:::-;27164:74;;27247:93;27336:3;27247:93;:::i;:::-;27365:2;27360:3;27356:12;27349:19;;27008:366;;;:::o;27380:419::-;27546:4;27584:2;27573:9;27569:18;27561:26;;27633:9;27627:4;27623:20;27619:1;27608:9;27604:17;27597:47;27661:131;27787:4;27661:131;:::i;:::-;27653:139;;27380:419;;;:::o;27805:148::-;27907:11;27944:3;27929:18;;27805:148;;;;:::o;27959:390::-;28065:3;28093:39;28126:5;28093:39;:::i;:::-;28148:89;28230:6;28225:3;28148:89;:::i;:::-;28141:96;;28246:65;28304:6;28299:3;28292:4;28285:5;28281:16;28246:65;:::i;:::-;28336:6;28331:3;28327:16;28320:23;;28069:280;27959:390;;;;:::o;28355:435::-;28535:3;28557:95;28648:3;28639:6;28557:95;:::i;:::-;28550:102;;28669:95;28760:3;28751:6;28669:95;:::i;:::-;28662:102;;28781:3;28774:10;;28355:435;;;;;:::o;28796:225::-;28936:34;28932:1;28924:6;28920:14;28913:58;29005:8;29000:2;28992:6;28988:15;28981:33;28796:225;:::o;29027:366::-;29169:3;29190:67;29254:2;29249:3;29190:67;:::i;:::-;29183:74;;29266:93;29355:3;29266:93;:::i;:::-;29384:2;29379:3;29375:12;29368:19;;29027:366;;;:::o;29399:419::-;29565:4;29603:2;29592:9;29588:18;29580:26;;29652:9;29646:4;29642:20;29638:1;29627:9;29623:17;29616:47;29680:131;29806:4;29680:131;:::i;:::-;29672:139;;29399:419;;;:::o;29824:182::-;29964:34;29960:1;29952:6;29948:14;29941:58;29824:182;:::o;30012:366::-;30154:3;30175:67;30239:2;30234:3;30175:67;:::i;:::-;30168:74;;30251:93;30340:3;30251:93;:::i;:::-;30369:2;30364:3;30360:12;30353:19;;30012:366;;;:::o;30384:419::-;30550:4;30588:2;30577:9;30573:18;30565:26;;30637:9;30631:4;30627:20;30623:1;30612:9;30608:17;30601:47;30665:131;30791:4;30665:131;:::i;:::-;30657:139;;30384:419;;;:::o;30809:98::-;30860:6;30894:5;30888:12;30878:22;;30809:98;;;:::o;30913:168::-;30996:11;31030:6;31025:3;31018:19;31070:4;31065:3;31061:14;31046:29;;30913:168;;;;:::o;31087:373::-;31173:3;31201:38;31233:5;31201:38;:::i;:::-;31255:70;31318:6;31313:3;31255:70;:::i;:::-;31248:77;;31334:65;31392:6;31387:3;31380:4;31373:5;31369:16;31334:65;:::i;:::-;31424:29;31446:6;31424:29;:::i;:::-;31419:3;31415:39;31408:46;;31177:283;31087:373;;;;:::o;31466:640::-;31661:4;31699:3;31688:9;31684:19;31676:27;;31713:71;31781:1;31770:9;31766:17;31757:6;31713:71;:::i;:::-;31794:72;31862:2;31851:9;31847:18;31838:6;31794:72;:::i;:::-;31876;31944:2;31933:9;31929:18;31920:6;31876:72;:::i;:::-;31995:9;31989:4;31985:20;31980:2;31969:9;31965:18;31958:48;32023:76;32094:4;32085:6;32023:76;:::i;:::-;32015:84;;31466:640;;;;;;;:::o;32112:141::-;32168:5;32199:6;32193:13;32184:22;;32215:32;32241:5;32215:32;:::i;:::-;32112:141;;;;:::o;32259:349::-;32328:6;32377:2;32365:9;32356:7;32352:23;32348:32;32345:119;;;32383:79;;:::i;:::-;32345:119;32503:1;32528:63;32583:7;32574:6;32563:9;32559:22;32528:63;:::i;:::-;32518:73;;32474:127;32259:349;;;;:::o;32614:180::-;32662:77;32659:1;32652:88;32759:4;32756:1;32749:15;32783:4;32780:1;32773:15;32800:233;32839:3;32862:24;32880:5;32862:24;:::i;:::-;32853:33;;32908:66;32901:5;32898:77;32895:103;;32978:18;;:::i;:::-;32895:103;33025:1;33018:5;33014:13;33007:20;;32800:233;;;:::o

Swarm Source

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