ETH Price: $3,410.39 (-1.52%)
Gas: 8 Gwei

Token

Toy Ape Yacht Club (TAYC)
 

Overview

Max Total Supply

4,000 TAYC

Holders

2,901

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 TAYC
0x605fbdd3d2e9ba4966222748332a4137ed2ddee9
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:
ToyApeYachtClub

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

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


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

pragma solidity ^0.8.0;

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

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

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


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

pragma solidity ^0.8.0;

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

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

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


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/interfaces/IERC2981.sol


// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

// File: @openzeppelin/contracts/token/common/ERC2981.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;


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

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


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

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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

// File: Toybirds.sol


pragma solidity ^0.8.0;







enum ContractStatus {
  disable,
  whitelist,
  open
}

contract Toybirds is Ownable, ERC721A, ERC2981, ReentrancyGuard {
    bytes32 public rootHash =
        0x15fe95d79678244fdf487ef03caada0a0273930894ececd9f9ffa666bb74710f;

    ContractStatus public CONTRACT_STATUS = ContractStatus.disable;

    uint96 public immutable ROYALTY_FEE_NUMERATOR = 750;

    uint256 public immutable MAX_FREE_PER_WALLET = 1;
    uint256 public immutable MAX_TX_PER_WALLET = 2;
    uint256 public immutable PRICE = 0.012
     ether;
    uint256 public immutable TOTAL_SUPPLY = 3000;
    uint256 public immutable WHITELIST_TOTAL_SUPPLY = 3000;
    string public uriSuffix = '.json';

    string internal baseURI = "";

    modifier isEthAvailable(uint256 quantity) {
        require(msg.value >= getSalePrice(msg.sender, quantity), "Insufficient funds");
        _;
    }

    modifier isMaxTxReached(uint256 quantity) {
        require(_numberMinted(msg.sender) + quantity <= MAX_TX_PER_WALLET, "Exceeded tx limit");
        _;
    }

    modifier isSupplyUnavailable(uint256 quantity) {
        require(totalSupply() + quantity <= TOTAL_SUPPLY, "Max supply reached");
        _;
    }

    modifier isUser() {
        require(tx.origin == msg.sender, "Invalid User");
        _;
    }

    constructor() ERC721A("Toybirds", "TOYBIRD") {
        _setDefaultRoyalty(owner(), 750);
    }

    function getTotalSupplyLeft() public view returns (uint256) {
        return TOTAL_SUPPLY - totalSupply();
    }

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

    function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
        rootHash = _merkleRoot;
    }

    function isWhitelisted(bytes32[] memory merkleProof)
        public
        view
        returns (bool)
    {
        bytes memory encodedUserAddress = abi.encodePacked(msg.sender);
        bytes32 leaf = keccak256(encodedUserAddress);
        bool isProofValid = MerkleProof.verify(merkleProof, rootHash, leaf);

        return isProofValid;
    }

    function internalMint(address buyerAddress, uint256 quantity)
        external
        onlyOwner
        nonReentrant
        isUser
        isSupplyUnavailable(quantity)
    {
        _mint(buyerAddress, quantity);
    }

    function whitelistMint(uint256 quantity, bytes32[] memory merkleProof)
        public
        payable
        virtual
        nonReentrant
        isUser
        isSupplyUnavailable(quantity)
        isMaxTxReached(quantity)
        isEthAvailable(quantity)
    {
        require(CONTRACT_STATUS == ContractStatus.whitelist,"Not in whitelist mint stage");
        require(totalSupply() + quantity <= WHITELIST_TOTAL_SUPPLY, "Max whitelist mint supply reached");
        require(isWhitelisted(merkleProof), "Invalid Proof");

        _mint(msg.sender, quantity);
    }

    function publicMint(uint256 quantity)
        public
        payable
        virtual
        nonReentrant
        isUser
        isSupplyUnavailable(quantity)
        isMaxTxReached(quantity)
        isEthAvailable(quantity)
    {
        require(
            CONTRACT_STATUS == ContractStatus.open,
            "Not in whitelist mint stage"
        );

        _mint(msg.sender, quantity);
    }

    function getTotalMinted(address addr)
        public
        view
        returns (uint256)
    {
        return _numberMinted(addr);
    }

    function setBaseURI(string memory newURI) external virtual onlyOwner {
        baseURI = newURI;
    }

    function setStatus(ContractStatus status) external onlyOwner {
        CONTRACT_STATUS = status;
    }

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

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

        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0
            ? string(abi.encodePacked(currentBaseURI, Strings.toString(_tokenId), uriSuffix))
            : '';
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721A, ERC2981)
        returns (bool)
    {
        return
            ERC721A.supportsInterface(interfaceId) ||
            ERC2981.supportsInterface(interfaceId) ||
            super.supportsInterface(interfaceId);
    }

    function getSalePrice(address sender, uint256 quantity)
        private
        view
        returns (uint256)
    {
        bool isAlreadyMinted = _numberMinted(sender) > 0;

        return
            isAlreadyMinted
                ? PRICE * (quantity)
                : PRICE * (quantity - MAX_FREE_PER_WALLET);
    }

    function withdraw(uint256 balance)external onlyOwner nonReentrant isUser {
        (bool success, ) = msg.sender.call{value: balance}("");

        require(success, "Transfer failed.");
    }

    function withdrawAll() external onlyOwner nonReentrant isUser {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");

        require(success, "Transfer failed.");
    }
}
// File: ToyApeYachtClub.sol


pragma solidity ^0.8.0;








enum TAYCContractStatus {
  disable,
  holderMint,
  whitelist,
  open,
  holderClaim
}

contract ToyApeYachtClub is Ownable, ERC721A, ERC2981, ReentrancyGuard {
    // address to toybirds contract
    Toybirds _toybirds;
    bytes32 public rootHash =
        0x22ceab5e60371dc5abc9a79b25c97c47affa931e95192909b0c481bbe2cc481a;

    error OwnerIndexOutOfBounds();

    TAYCContractStatus public CONTRACT_STATUS = TAYCContractStatus.disable;

    uint256 public immutable MAX_FREE_PER_WALLET = 1;
    uint256 public immutable MAX_TX_PER_WALLET = 2;
    uint256 public immutable PRICE = 0.019 ether;
    uint256 public immutable TOTAL_SUPPLY = 6000;
    uint256 public immutable HOLDER_MINT_TOTAL_SUPPLY = 200;
    uint256 public immutable WHITELIST_PUBLIC_TOTAL_SUPPLY = 2800;
    uint256 public immutable CLAIM_TOTAL_SUPPLY = 3000;


    string public uriSuffix = '.json';

    string internal baseURI = "";

    uint256[12] claimedBitMap;

    modifier isEthAvailable(uint256 quantity) {
        require(msg.value >= getSalePrice(msg.sender, quantity), "Insufficient funds");
        _;
    }

    modifier isMaxTxReached(uint256 quantity) {
        require(_numberMinted(msg.sender) + quantity <= MAX_TX_PER_WALLET, "Exceeded tx limit");
        _;
    }

    modifier isSupplyUnavailable(uint256 quantity) {
        require(totalSupply() + quantity <= TOTAL_SUPPLY, "Max supply reached");
        _;
    }

    modifier isUser() {
        require(tx.origin == msg.sender, "Invalid User");
        _;
    }

    constructor(address toybirdsContract) ERC721A("Toy Ape Yacht Club", "TAYC") {
        _toybirds = Toybirds(toybirdsContract);
        // royalty
        _setDefaultRoyalty(owner(), 750);
    }

    function getTotalSupplyLeft() public view returns (uint256) {
        return TOTAL_SUPPLY - totalSupply();
    }

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

    function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
        rootHash = _merkleRoot;
    }

    function isWhitelisted(bytes32[] memory merkleProof)
        public
        view
        returns (bool)
    {
        bytes memory encodedUserAddress = abi.encodePacked(msg.sender);
        bytes32 leaf = keccak256(encodedUserAddress);
        bool isProofValid = MerkleProof.verify(merkleProof, rootHash, leaf);

        return isProofValid;
    }

    function internalMint(address buyerAddress, uint16 quantity)
        external
        onlyOwner
        isSupplyUnavailable(quantity)
    {
        _safeMint(buyerAddress, quantity);
    }

    function holderMint(uint16 quantity)
        public
        payable
        virtual
        nonReentrant
        isUser
        isMaxTxReached(quantity)
        isEthAvailable(quantity)
    {
        require(CONTRACT_STATUS == TAYCContractStatus.holderMint, "Not in whitelist mint stage");
        require(totalSupply() + quantity <= HOLDER_MINT_TOTAL_SUPPLY, "Max whitelist mint supply reached");
        require(_toybirds.balanceOf(msg.sender) > 0, "Not a Toybirds holder");

        _safeMint(msg.sender, quantity);
    }

    function whitelistMint(uint16 quantity, bytes32[] memory merkleProof)
        public
        payable
        virtual
        nonReentrant
        isUser
        isMaxTxReached(quantity)
        isEthAvailable(quantity)
    {
        require(CONTRACT_STATUS == TAYCContractStatus.whitelist,"Not in whitelist mint stage");
        require(totalSupply() + quantity <= WHITELIST_PUBLIC_TOTAL_SUPPLY + HOLDER_MINT_TOTAL_SUPPLY, "Max whitelist mint supply reached");
        require(isWhitelisted(merkleProof), "Invalid Proof");

        _safeMint(msg.sender, quantity);
    }

    function publicMint(uint16 quantity)
        public
        payable
        virtual
        nonReentrant
        isUser
        isMaxTxReached(quantity)
        isEthAvailable(quantity)
    {
        require(totalSupply() + quantity <= WHITELIST_PUBLIC_TOTAL_SUPPLY + HOLDER_MINT_TOTAL_SUPPLY, "Max supply reached");
        require(
            CONTRACT_STATUS == TAYCContractStatus.open,
            "Not in whitelist mint stage"
        );

        _safeMint(msg.sender, quantity);
    }

    function _setClaimed(uint16 tokenId) internal {
        uint256 claimedWordIndex = tokenId / 256;
        uint256 claimedBitIndex = tokenId % 256;
        claimedBitMap[claimedWordIndex] = claimedBitMap[claimedWordIndex] | (1 << claimedBitIndex);
    }

    function isClaimed(uint16 tokenId) public view returns (bool) {
        uint256 claimedWordIndex = tokenId / 256;
        uint256 claimedBitIndex = tokenId % 256;
        uint256 claimedWord = claimedBitMap[claimedWordIndex];
        uint256 mask = (1 << claimedBitIndex);
        return claimedWord & mask == mask;
    }

    function getOwnedToybirdIds(address holder) external view returns(uint16[] memory) {
      uint256 amountToybirdsOwned = _toybirds.balanceOf(holder);
      require(amountToybirdsOwned > 0, "Address does not own any Toybirds");
      uint256 totalToybirds = _toybirds.totalSupply();
      uint16[] memory ownedToybirdIds = new uint16[](amountToybirdsOwned);
      uint16 idx = 0;

      for(uint16 i = 1; i <= totalToybirds; i++) {
        if(_toybirds.ownerOf(i) == holder && !isClaimed(i)) {
          ownedToybirdIds[idx] = i;
          idx++;
        }
      }

      require(ownedToybirdIds[0] != 0, "No tokens to claim");

      return ownedToybirdIds;
    }

    function holderClaim(uint16[] calldata ownedToybirdIds) public nonReentrant {
        require(_toybirds.balanceOf(msg.sender) > 0, "Address does not own any Toybirds");
        require(CONTRACT_STATUS == TAYCContractStatus.holderClaim, "Claim is not active.");
        require(ownedToybirdIds.length > 0, "No IDs given");

        uint16 numTokensClaimed;
         
        for (uint16 i = 0; i < ownedToybirdIds.length; i++) {
            if (ownedToybirdIds[i] != 0 && _toybirds.ownerOf(ownedToybirdIds[i]) == msg.sender && !isClaimed(ownedToybirdIds[i])) {
                _setClaimed(ownedToybirdIds[i]);
                numTokensClaimed++;
            }
        }

        require(numTokensClaimed > 0, "No tokens to claim");

        _safeMint(msg.sender, numTokensClaimed);
    }

    function getTotalMinted(address addr)
        public
        view
        returns (uint256)
    {
        return _numberMinted(addr);
    }

    function setBaseURI(string memory newURI) external virtual onlyOwner {
        baseURI = newURI;
    }

    function setStatus(TAYCContractStatus status) external onlyOwner {
        CONTRACT_STATUS = status;
    }

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

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

        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0
            ? string(abi.encodePacked(currentBaseURI, Strings.toString(_tokenId), uriSuffix))
            : '';
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721A, ERC2981)
        returns (bool)
    {
        return
            ERC721A.supportsInterface(interfaceId) ||
            ERC2981.supportsInterface(interfaceId) ||
            super.supportsInterface(interfaceId);
    }

    function getSalePrice(address sender, uint256 quantity)
        private
        view
        returns (uint256)
    {
        bool isAlreadyMinted = _numberMinted(sender) > 0;

        return
            isAlreadyMinted
                ? PRICE * (quantity)
                : PRICE * (quantity - MAX_FREE_PER_WALLET);
    }

    function withdraw(uint256 balance)external onlyOwner nonReentrant isUser {
        (bool success, ) = msg.sender.call{value: balance}("");

        require(success, "Transfer failed.");
    }

    function withdrawAll() external onlyOwner nonReentrant isUser {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");

        require(success, "Transfer failed.");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"toybirdsContract","type":"address"}],"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":"OwnerIndexOutOfBounds","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":"CLAIM_TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CONTRACT_STATUS","outputs":[{"internalType":"enum TAYCContractStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"HOLDER_MINT_TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_PUBLIC_TOTAL_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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"holder","type":"address"}],"name":"getOwnedToybirdIds","outputs":[{"internalType":"uint16[]","name":"","type":"uint16[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"getTotalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalSupplyLeft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16[]","name":"ownedToybirdIds","type":"uint16[]"}],"name":"holderClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"quantity","type":"uint16"}],"name":"holderMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"buyerAddress","type":"address"},{"internalType":"uint16","name":"quantity","type":"uint16"}],"name":"internalMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"tokenId","type":"uint16"}],"name":"isClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"uint16","name":"quantity","type":"uint16"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rootHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum TAYCContractStatus","name":"status","type":"uint8"}],"name":"setStatus","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":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"quantity","type":"uint16"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101606040527f22ceab5e60371dc5abc9a79b25c97c47affa931e95192909b0c481bbe2cc481a60001b600d556000600e60006101000a81548160ff02191690836004811115620000555762000054620005ec565b5b02179055506001608090815250600260a090815250664380663abb800060c09081525061177060e09081525060c861010090815250610af061012090815250610bb8610140908152506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600f9080519060200190620000eb9291906200053c565b506040518060200160405280600081525060109080519060200190620001139291906200053c565b503480156200012157600080fd5b5060405162005f1538038062005f15833981810160405281019062000147919062000685565b6040518060400160405280601281526020017f546f792041706520596163687420436c756200000000000000000000000000008152506040518060400160405280600481526020017f5441594300000000000000000000000000000000000000000000000000000000815250620001d3620001c76200029060201b60201c565b6200029860201b60201c565b8160039080519060200190620001eb9291906200053c565b508060049080519060200190620002049291906200053c565b50620002156200035c60201b60201c565b60018190555050506001600b8190555080600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620002896200027a6200036560201b60201c565b6102ee6200038e60201b60201c565b5062000837565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200039e6200053260201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115620003ff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003f6906200073e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000472576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200046990620007b0565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600960008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000612710905090565b8280546200054a9062000801565b90600052602060002090601f0160209004810192826200056e5760008555620005ba565b82601f106200058957805160ff1916838001178555620005ba565b82800160010185558215620005ba579182015b82811115620005b95782518255916020019190600101906200059c565b5b509050620005c99190620005cd565b5090565b5b80821115620005e8576000816000905550600101620005ce565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200064d8262000620565b9050919050565b6200065f8162000640565b81146200066b57600080fd5b50565b6000815190506200067f8162000654565b92915050565b6000602082840312156200069e576200069d6200061b565b5b6000620006ae848285016200066e565b91505092915050565b600082825260208201905092915050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600062000726602a83620006b7565b91506200073382620006c8565b604082019050919050565b60006020820190508181036000830152620007598162000717565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600062000798601983620006b7565b9150620007a58262000760565b602082019050919050565b60006020820190508181036000830152620007cb8162000789565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200081a57607f821691505b60208210811415620008315762000830620007d2565b5b50919050565b60805160a05160c05160e051610100516101205161014051615628620008ed6000396000610c9601526000818161243b01528181612cf50152612e090152600081816118f50152818161209b0152818161241a0152612cd40152600081816117ed01528181611c82015261265c015260008181611c35015281816133c101526133f2015260008181611d3801528181611f5e015281816122dd0152612c0d015260008181611d5c015261339501526156286000f3fe60806040526004361061025c5760003560e01c8063715018a611610144578063ac0b434c116100b6578063defcbacb1161007a578063defcbacb146108ab578063e0b9e893146108d6578063e985e9c514610913578063f2fde38b14610950578063f607cc4c14610979578063f6847d2f146109955761025c565b8063ac0b434c146107ef578063b182e8181461080b578063b88d4fde14610827578063bf7b779c14610843578063c87b56dd1461086e5761025c565b8063902d55a511610108578063902d55a5146106dd57806395d89b4114610708578063975e840e1461073357806398710d1e1461075e5780639a9c1bb114610789578063a22cb465146107c65761025c565b8063715018a6146106305780637cb6475914610647578063853828b6146106705780638d859f3e146106875780638da5cb5b146106b25761025c565b80632a55205a116101dd57806342842e0e116101a157806342842e0e1461051b5780635033b633146105375780635503a0e81461056257806355f804b31461058d5780636352211e146105b657806370a08231146105f35761025c565b80632a55205a146104255780632e1a7d4d146104635780632e49d78b1461048c5780632fca0c6f146104b5578063355e71d8146104de5761025c565b8063174f08b811610224578063174f08b81461035f57806318160ddd1461038a5780631d80009a146103b557806323b872dd146103e0578063275193ce146103fc5761025c565b806301ffc9a714610261578063069824fb1461029e57806306fdde03146102db578063081812fc14610306578063095ea7b314610343575b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190613c06565b6109c0565b6040516102959190613c4e565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c09190613df8565b6109f2565b6040516102d29190613c4e565b60405180910390f35b3480156102e757600080fd5b506102f0610a3f565b6040516102fd9190613ec9565b60405180910390f35b34801561031257600080fd5b5061032d60048036038101906103289190613f21565b610ad1565b60405161033a9190613f8f565b60405180910390f35b61035d60048036038101906103589190613fd6565b610b50565b005b34801561036b57600080fd5b50610374610c94565b6040516103819190614025565b60405180910390f35b34801561039657600080fd5b5061039f610cb8565b6040516103ac9190614025565b60405180910390f35b3480156103c157600080fd5b506103ca610ccf565b6040516103d7919061404f565b60405180910390f35b6103fa60048036038101906103f5919061406a565b610cd5565b005b34801561040857600080fd5b50610423600480360381019061041e9190614118565b610ffa565b005b34801561043157600080fd5b5061044c60048036038101906104479190614165565b611442565b60405161045a9291906141a5565b60405180910390f35b34801561046f57600080fd5b5061048a60048036038101906104859190613f21565b61162d565b005b34801561049857600080fd5b506104b360048036038101906104ae91906141f3565b6117a9565b005b3480156104c157600080fd5b506104dc60048036038101906104d7919061425a565b6117de565b005b3480156104ea57600080fd5b506105056004803603810190610500919061429a565b611873565b6040516105129190613c4e565b60405180910390f35b6105356004803603810190610530919061406a565b6118d3565b005b34801561054357600080fd5b5061054c6118f3565b6040516105599190614025565b60405180910390f35b34801561056e57600080fd5b50610577611917565b6040516105849190613ec9565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af919061437c565b6119a5565b005b3480156105c257600080fd5b506105dd60048036038101906105d89190613f21565b6119c7565b6040516105ea9190613f8f565b60405180910390f35b3480156105ff57600080fd5b5061061a600480360381019061061591906143c5565b6119d9565b6040516106279190614025565b60405180910390f35b34801561063c57600080fd5b50610645611a92565b005b34801561065357600080fd5b5061066e600480360381019061066991906143f2565b611aa6565b005b34801561067c57600080fd5b50610685611ab8565b005b34801561069357600080fd5b5061069c611c33565b6040516106a99190614025565b60405180910390f35b3480156106be57600080fd5b506106c7611c57565b6040516106d49190613f8f565b60405180910390f35b3480156106e957600080fd5b506106f2611c80565b6040516106ff9190614025565b60405180910390f35b34801561071457600080fd5b5061071d611ca4565b60405161072a9190613ec9565b60405180910390f35b34801561073f57600080fd5b50610748611d36565b6040516107559190614025565b60405180910390f35b34801561076a57600080fd5b50610773611d5a565b6040516107809190614025565b60405180910390f35b34801561079557600080fd5b506107b060048036038101906107ab91906143c5565b611d7e565b6040516107bd9190614025565b60405180910390f35b3480156107d257600080fd5b506107ed60048036038101906107e8919061444b565b611d90565b005b6108096004803603810190610804919061429a565b611e9b565b005b6108256004803603810190610820919061448b565b61221a565b005b610841600480360381019061083c9190614588565b612520565b005b34801561084f57600080fd5b50610858612593565b6040516108659190614682565b60405180910390f35b34801561087a57600080fd5b5061089560048036038101906108909190613f21565b6125a6565b6040516108a29190613ec9565b60405180910390f35b3480156108b757600080fd5b506108c0612650565b6040516108cd9190614025565b60405180910390f35b3480156108e257600080fd5b506108fd60048036038101906108f891906143c5565b61268a565b60405161090a919061475b565b60405180910390f35b34801561091f57600080fd5b5061093a6004803603810190610935919061477d565b612a32565b6040516109479190613c4e565b60405180910390f35b34801561095c57600080fd5b50610977600480360381019061097291906143c5565b612ac6565b005b610993600480360381019061098e919061429a565b612b4a565b005b3480156109a157600080fd5b506109aa612e07565b6040516109b79190614025565b60405180910390f35b60006109cb82612e2b565b806109db57506109da82612ebd565b5b806109eb57506109ea82612ebd565b5b9050919050565b60008033604051602001610a069190614805565b60405160208183030381529060405290506000818051906020012090506000610a3285600d5484612f37565b9050809350505050919050565b606060038054610a4e9061484f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7a9061484f565b8015610ac75780601f10610a9c57610100808354040283529160200191610ac7565b820191906000526020600020905b815481529060010190602001808311610aaa57829003601f168201915b5050505050905090565b6000610adc82612f4e565b610b12576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b5b826119c7565b90508073ffffffffffffffffffffffffffffffffffffffff16610b7c612fad565b73ffffffffffffffffffffffffffffffffffffffff1614610bdf57610ba881610ba3612fad565b612a32565b610bde576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000610cc2612fb5565b6002546001540303905090565b600d5481565b6000610ce082612fbe565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d47576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610d538461308c565b91509150610d698187610d64612fad565b6130b3565b610db557610d7e86610d79612fad565b612a32565b610db4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610e1c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e2986868660016130f7565b8015610e3457600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f0285610ede8888876130fd565b7c020000000000000000000000000000000000000000000000000000000017613125565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610f8a576000600185019050600060056000838152602001908152602001600020541415610f88576001548114610f87578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ff28686866001613150565b505050505050565b6002600b541415611040576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611037906148cd565b60405180910390fd5b6002600b819055506000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016110a59190613f8f565b60206040518083038186803b1580156110bd57600080fd5b505afa1580156110d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110f59190614902565b11611135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112c906149a1565b60405180910390fd5b6004808111156111485761114761460b565b5b600e60009054906101000a900460ff16600481111561116a5761116961460b565b5b146111aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a190614a0d565b60405180910390fd5b600082829050116111f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e790614a79565b60405180910390fd5b600080600090505b838390508161ffff1610156113df57600084848361ffff168181106112205761121f614a99565b5b9050602002016020810190611235919061429a565b61ffff161415801561134757503373ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e86868561ffff168181106112ae576112ad614a99565b5b90506020020160208101906112c3919061429a565b6040518263ffffffff1660e01b81526004016112df9190614b03565b60206040518083038186803b1580156112f757600080fd5b505afa15801561130b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061132f9190614b33565b73ffffffffffffffffffffffffffffffffffffffff16145b8015611384575061138284848361ffff1681811061136857611367614a99565b5b905060200201602081019061137d919061429a565b611873565b155b156113cc576113bd84848361ffff168181106113a3576113a2614a99565b5b90506020020160208101906113b8919061429a565b613156565b81806113c890614b8f565b9250505b80806113d790614b8f565b9150506111f8565b5060008161ffff1611611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e90614c06565b60405180910390fd5b611435338261ffff166131bc565b506001600b819055505050565b6000806000600a60008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614156115d85760096040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b60006115e26131da565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff168661160e9190614c26565b6116189190614caf565b90508160000151819350935050509250929050565b6116356131e4565b6002600b54141561167b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611672906148cd565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146116f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e890614d2c565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff168260405161171790614d7d565b60006040518083038185875af1925050503d8060008114611754576040519150601f19603f3d011682016040523d82523d6000602084013e611759565b606091505b505090508061179d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179490614dde565b60405180910390fd5b506001600b8190555050565b6117b16131e4565b80600e60006101000a81548160ff021916908360048111156117d6576117d561460b565b5b021790555050565b6117e66131e4565b8061ffff167f000000000000000000000000000000000000000000000000000000000000000081611815610cb8565b61181f9190614dfe565b1115611860576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185790614ea0565b60405180910390fd5b61186e838361ffff166131bc565b505050565b600080610100836118849190614ec0565b61ffff16905060006101008461189a9190614ef1565b61ffff1690506000601183600c81106118b6576118b5614a99565b5b015490506000826001901b90508081831614945050505050919050565b6118ee83838360405180602001604052806000815250612520565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600f80546119249061484f565b80601f01602080910402602001604051908101604052809291908181526020018280546119509061484f565b801561199d5780601f106119725761010080835404028352916020019161199d565b820191906000526020600020905b81548152906001019060200180831161198057829003601f168201915b505050505081565b6119ad6131e4565b80601090805190602001906119c3929190613af7565b5050565b60006119d282612fbe565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a41576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611a9a6131e4565b611aa46000613262565b565b611aae6131e4565b80600d8190555050565b611ac06131e4565b6002600b541415611b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afd906148cd565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611b7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7390614d2c565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611ba290614d7d565b60006040518083038185875af1925050503d8060008114611bdf576040519150601f19603f3d011682016040523d82523d6000602084013e611be4565b606091505b5050905080611c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1f90614dde565b60405180910390fd5b506001600b81905550565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b606060048054611cb39061484f565b80601f0160208091040260200160405190810160405280929190818152602001828054611cdf9061484f565b8015611d2c5780601f10611d0157610100808354040283529160200191611d2c565b820191906000526020600020905b815481529060010190602001808311611d0f57829003601f168201915b5050505050905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000611d8982613326565b9050919050565b8060086000611d9d612fad565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e4a612fad565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e8f9190613c4e565b60405180910390a35050565b6002600b541415611ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed8906148cd565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4e90614d2c565b60405180910390fd5b8061ffff167f000000000000000000000000000000000000000000000000000000000000000081611f8733613326565b611f919190614dfe565b1115611fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc990614f6e565b60405180910390fd5b8161ffff16611fe1338261337d565b341015612023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201a90614fda565b60405180910390fd5b600160048111156120375761203661460b565b5b600e60009054906101000a900460ff1660048111156120595761205861460b565b5b14612099576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209090615046565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008361ffff166120c7610cb8565b6120d19190614dfe565b1115612112576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612109906150d8565b60405180910390fd5b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b815260040161216f9190613f8f565b60206040518083038186803b15801561218757600080fd5b505afa15801561219b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121bf9190614902565b116121ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f690615144565b60405180910390fd5b61220d338461ffff166131bc565b50506001600b8190555050565b6002600b541415612260576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612257906148cd565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146122d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cd90614d2c565b60405180910390fd5b8161ffff167f00000000000000000000000000000000000000000000000000000000000000008161230633613326565b6123109190614dfe565b1115612351576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234890614f6e565b60405180910390fd5b8261ffff16612360338261337d565b3410156123a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239990614fda565b60405180910390fd5b600260048111156123b6576123b561460b565b5b600e60009054906101000a900460ff1660048111156123d8576123d761460b565b5b14612418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240f90615046565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000006124649190614dfe565b8461ffff16612471610cb8565b61247b9190614dfe565b11156124bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b3906150d8565b60405180910390fd5b6124c5836109f2565b612504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fb906151b0565b60405180910390fd5b612512338561ffff166131bc565b50506001600b819055505050565b61252b848484610cd5565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461258d5761255684848484613425565b61258c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600e60009054906101000a900460ff1681565b60606125b182612f4e565b6125f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e790615242565b60405180910390fd5b60006125fa613585565b9050600081511161261a5760405180602001604052806000815250612648565b8061262484613617565b600f60405160200161263893929190615332565b6040516020818303038152906040525b915050919050565b600061265a610cb8565b7f00000000000000000000000000000000000000000000000000000000000000006126859190615363565b905090565b60606000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b81526004016126e99190613f8f565b60206040518083038186803b15801561270157600080fd5b505afa158015612715573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127399190614902565b90506000811161277e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612775906149a1565b60405180910390fd5b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b1580156127e857600080fd5b505afa1580156127fc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128209190614902565b905060008267ffffffffffffffff81111561283e5761283d613c7f565b5b60405190808252806020026020018201604052801561286c5781602001602082028036833780820191505090505b509050600080600190505b838161ffff16116129c2578673ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016128f49190614b03565b60206040518083038186803b15801561290c57600080fd5b505afa158015612920573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129449190614b33565b73ffffffffffffffffffffffffffffffffffffffff1614801561296d575061296b81611873565b155b156129af5780838361ffff168151811061298a57612989614a99565b5b602002602001019061ffff16908161ffff168152505081806129ab90614b8f565b9250505b80806129ba90614b8f565b915050612877565b506000826000815181106129d9576129d8614a99565b5b602002602001015161ffff161415612a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1d90614c06565b60405180910390fd5b81945050505050919050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612ace6131e4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3590615409565b60405180910390fd5b612b4781613262565b50565b6002600b541415612b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b87906148cd565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614612c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bfd90614d2c565b60405180910390fd5b8061ffff167f000000000000000000000000000000000000000000000000000000000000000081612c3633613326565b612c409190614dfe565b1115612c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7890614f6e565b60405180910390fd5b8161ffff16612c90338261337d565b341015612cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc990614fda565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000612d1e9190614dfe565b8361ffff16612d2b610cb8565b612d359190614dfe565b1115612d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6d90614ea0565b60405180910390fd5b60036004811115612d8a57612d8961460b565b5b600e60009054906101000a900460ff166004811115612dac57612dab61460b565b5b14612dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de390615046565b60405180910390fd5b612dfa338461ffff166131bc565b50506001600b8190555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612e8657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612eb65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612f305750612f2f82613778565b5b9050919050565b600082612f4485846137e2565b1490509392505050565b600081612f59612fb5565b11158015612f68575060015482105b8015612fa6575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080612fcd612fb5565b11613055576001548110156130545760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415613052575b600081141561304857600560008360019003935083815260200190815260200160002054905061301d565b8092505050613087565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8613114868684613838565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000610100826131669190614ec0565b61ffff16905060006101008361317c9190614ef1565b61ffff169050806001901b601183600c811061319b5761319a614a99565b5b015417601183600c81106131b2576131b1614a99565b5b0181905550505050565b6131d6828260405180602001604052806000815250613841565b5050565b6000612710905090565b6131ec6138df565b73ffffffffffffffffffffffffffffffffffffffff1661320a611c57565b73ffffffffffffffffffffffffffffffffffffffff1614613260576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325790615475565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600080600061338b85613326565b119050806133ef577f0000000000000000000000000000000000000000000000000000000000000000836133bf9190615363565b7f00000000000000000000000000000000000000000000000000000000000000006133ea9190614c26565b61341c565b827f000000000000000000000000000000000000000000000000000000000000000061341b9190614c26565b5b91505092915050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261344b612fad565b8786866040518563ffffffff1660e01b815260040161346d94939291906154ea565b602060405180830381600087803b15801561348757600080fd5b505af19250505080156134b857506040513d601f19601f820116820180604052508101906134b5919061554b565b60015b613532573d80600081146134e8576040519150601f19603f3d011682016040523d82523d6000602084013e6134ed565b606091505b5060008151141561352a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601080546135949061484f565b80601f01602080910402602001604051908101604052809291908181526020018280546135c09061484f565b801561360d5780601f106135e25761010080835404028352916020019161360d565b820191906000526020600020905b8154815290600101906020018083116135f057829003601f168201915b5050505050905090565b6060600082141561365f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613773565b600082905060005b6000821461369157808061367a90615578565b915050600a8261368a9190614caf565b9150613667565b60008167ffffffffffffffff8111156136ad576136ac613c7f565b5b6040519080825280601f01601f1916602001820160405280156136df5781602001600182028036833780820191505090505b5090505b6000851461376c576001826136f89190615363565b9150600a8561370791906155c1565b60306137139190614dfe565b60f81b81838151811061372957613728614a99565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856137659190614caf565b94506136e3565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008082905060005b845181101561382d576138188286838151811061380b5761380a614a99565b5b60200260200101516138e7565b9150808061382590615578565b9150506137eb565b508091505092915050565b60009392505050565b61384b8383613912565b60008373ffffffffffffffffffffffffffffffffffffffff163b146138da5760006001549050600083820390505b61388c6000868380600101945086613425565b6138c2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106138795781600154146138d757600080fd5b50505b505050565b600033905090565b60008183106138ff576138fa8284613ad0565b61390a565b6139098383613ad0565b5b905092915050565b600060015490506000821415613954576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61396160008483856130f7565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506139d8836139c960008660006130fd565b6139d285613ae7565b17613125565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114613a7957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050613a3e565b506000821415613ab5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806001819055505050613acb6000848385613150565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b828054613b039061484f565b90600052602060002090601f016020900481019282613b255760008555613b6c565b82601f10613b3e57805160ff1916838001178555613b6c565b82800160010185558215613b6c579182015b82811115613b6b578251825591602001919060010190613b50565b5b509050613b799190613b7d565b5090565b5b80821115613b96576000816000905550600101613b7e565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613be381613bae565b8114613bee57600080fd5b50565b600081359050613c0081613bda565b92915050565b600060208284031215613c1c57613c1b613ba4565b5b6000613c2a84828501613bf1565b91505092915050565b60008115159050919050565b613c4881613c33565b82525050565b6000602082019050613c636000830184613c3f565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613cb782613c6e565b810181811067ffffffffffffffff82111715613cd657613cd5613c7f565b5b80604052505050565b6000613ce9613b9a565b9050613cf58282613cae565b919050565b600067ffffffffffffffff821115613d1557613d14613c7f565b5b602082029050602081019050919050565b600080fd5b6000819050919050565b613d3e81613d2b565b8114613d4957600080fd5b50565b600081359050613d5b81613d35565b92915050565b6000613d74613d6f84613cfa565b613cdf565b90508083825260208201905060208402830185811115613d9757613d96613d26565b5b835b81811015613dc05780613dac8882613d4c565b845260208401935050602081019050613d99565b5050509392505050565b600082601f830112613ddf57613dde613c69565b5b8135613def848260208601613d61565b91505092915050565b600060208284031215613e0e57613e0d613ba4565b5b600082013567ffffffffffffffff811115613e2c57613e2b613ba9565b5b613e3884828501613dca565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613e7b578082015181840152602081019050613e60565b83811115613e8a576000848401525b50505050565b6000613e9b82613e41565b613ea58185613e4c565b9350613eb5818560208601613e5d565b613ebe81613c6e565b840191505092915050565b60006020820190508181036000830152613ee38184613e90565b905092915050565b6000819050919050565b613efe81613eeb565b8114613f0957600080fd5b50565b600081359050613f1b81613ef5565b92915050565b600060208284031215613f3757613f36613ba4565b5b6000613f4584828501613f0c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613f7982613f4e565b9050919050565b613f8981613f6e565b82525050565b6000602082019050613fa46000830184613f80565b92915050565b613fb381613f6e565b8114613fbe57600080fd5b50565b600081359050613fd081613faa565b92915050565b60008060408385031215613fed57613fec613ba4565b5b6000613ffb85828601613fc1565b925050602061400c85828601613f0c565b9150509250929050565b61401f81613eeb565b82525050565b600060208201905061403a6000830184614016565b92915050565b61404981613d2b565b82525050565b60006020820190506140646000830184614040565b92915050565b60008060006060848603121561408357614082613ba4565b5b600061409186828701613fc1565b93505060206140a286828701613fc1565b92505060406140b386828701613f0c565b9150509250925092565b600080fd5b60008083601f8401126140d8576140d7613c69565b5b8235905067ffffffffffffffff8111156140f5576140f46140bd565b5b60208301915083602082028301111561411157614110613d26565b5b9250929050565b6000806020838503121561412f5761412e613ba4565b5b600083013567ffffffffffffffff81111561414d5761414c613ba9565b5b614159858286016140c2565b92509250509250929050565b6000806040838503121561417c5761417b613ba4565b5b600061418a85828601613f0c565b925050602061419b85828601613f0c565b9150509250929050565b60006040820190506141ba6000830185613f80565b6141c76020830184614016565b9392505050565b600581106141db57600080fd5b50565b6000813590506141ed816141ce565b92915050565b60006020828403121561420957614208613ba4565b5b6000614217848285016141de565b91505092915050565b600061ffff82169050919050565b61423781614220565b811461424257600080fd5b50565b6000813590506142548161422e565b92915050565b6000806040838503121561427157614270613ba4565b5b600061427f85828601613fc1565b925050602061429085828601614245565b9150509250929050565b6000602082840312156142b0576142af613ba4565b5b60006142be84828501614245565b91505092915050565b600080fd5b600067ffffffffffffffff8211156142e7576142e6613c7f565b5b6142f082613c6e565b9050602081019050919050565b82818337600083830152505050565b600061431f61431a846142cc565b613cdf565b90508281526020810184848401111561433b5761433a6142c7565b5b6143468482856142fd565b509392505050565b600082601f83011261436357614362613c69565b5b813561437384826020860161430c565b91505092915050565b60006020828403121561439257614391613ba4565b5b600082013567ffffffffffffffff8111156143b0576143af613ba9565b5b6143bc8482850161434e565b91505092915050565b6000602082840312156143db576143da613ba4565b5b60006143e984828501613fc1565b91505092915050565b60006020828403121561440857614407613ba4565b5b600061441684828501613d4c565b91505092915050565b61442881613c33565b811461443357600080fd5b50565b6000813590506144458161441f565b92915050565b6000806040838503121561446257614461613ba4565b5b600061447085828601613fc1565b925050602061448185828601614436565b9150509250929050565b600080604083850312156144a2576144a1613ba4565b5b60006144b085828601614245565b925050602083013567ffffffffffffffff8111156144d1576144d0613ba9565b5b6144dd85828601613dca565b9150509250929050565b600067ffffffffffffffff82111561450257614501613c7f565b5b61450b82613c6e565b9050602081019050919050565b600061452b614526846144e7565b613cdf565b905082815260208101848484011115614547576145466142c7565b5b6145528482856142fd565b509392505050565b600082601f83011261456f5761456e613c69565b5b813561457f848260208601614518565b91505092915050565b600080600080608085870312156145a2576145a1613ba4565b5b60006145b087828801613fc1565b94505060206145c187828801613fc1565b93505060406145d287828801613f0c565b925050606085013567ffffffffffffffff8111156145f3576145f2613ba9565b5b6145ff8782880161455a565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6005811061464b5761464a61460b565b5b50565b600081905061465c8261463a565b919050565b600061466c8261464e565b9050919050565b61467c81614661565b82525050565b60006020820190506146976000830184614673565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6146d281614220565b82525050565b60006146e483836146c9565b60208301905092915050565b6000602082019050919050565b60006147088261469d565b61471281856146a8565b935061471d836146b9565b8060005b8381101561474e57815161473588826146d8565b9750614740836146f0565b925050600181019050614721565b5085935050505092915050565b6000602082019050818103600083015261477581846146fd565b905092915050565b6000806040838503121561479457614793613ba4565b5b60006147a285828601613fc1565b92505060206147b385828601613fc1565b9150509250929050565b60008160601b9050919050565b60006147d5826147bd565b9050919050565b60006147e7826147ca565b9050919050565b6147ff6147fa82613f6e565b6147dc565b82525050565b600061481182846147ee565b60148201915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061486757607f821691505b6020821081141561487b5761487a614820565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006148b7601f83613e4c565b91506148c282614881565b602082019050919050565b600060208201905081810360008301526148e6816148aa565b9050919050565b6000815190506148fc81613ef5565b92915050565b60006020828403121561491857614917613ba4565b5b6000614926848285016148ed565b91505092915050565b7f4164647265737320646f6573206e6f74206f776e20616e7920546f796269726460008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061498b602183613e4c565b91506149968261492f565b604082019050919050565b600060208201905081810360008301526149ba8161497e565b9050919050565b7f436c61696d206973206e6f74206163746976652e000000000000000000000000600082015250565b60006149f7601483613e4c565b9150614a02826149c1565b602082019050919050565b60006020820190508181036000830152614a26816149ea565b9050919050565b7f4e6f2049447320676976656e0000000000000000000000000000000000000000600082015250565b6000614a63600c83613e4c565b9150614a6e82614a2d565b602082019050919050565b60006020820190508181036000830152614a9281614a56565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000614aed614ae8614ae384614220565b614ac8565b613eeb565b9050919050565b614afd81614ad2565b82525050565b6000602082019050614b186000830184614af4565b92915050565b600081519050614b2d81613faa565b92915050565b600060208284031215614b4957614b48613ba4565b5b6000614b5784828501614b1e565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614b9a82614220565b915061ffff821415614baf57614bae614b60565b5b600182019050919050565b7f4e6f20746f6b656e7320746f20636c61696d0000000000000000000000000000600082015250565b6000614bf0601283613e4c565b9150614bfb82614bba565b602082019050919050565b60006020820190508181036000830152614c1f81614be3565b9050919050565b6000614c3182613eeb565b9150614c3c83613eeb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614c7557614c74614b60565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614cba82613eeb565b9150614cc583613eeb565b925082614cd557614cd4614c80565b5b828204905092915050565b7f496e76616c696420557365720000000000000000000000000000000000000000600082015250565b6000614d16600c83613e4c565b9150614d2182614ce0565b602082019050919050565b60006020820190508181036000830152614d4581614d09565b9050919050565b600081905092915050565b50565b6000614d67600083614d4c565b9150614d7282614d57565b600082019050919050565b6000614d8882614d5a565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000614dc8601083613e4c565b9150614dd382614d92565b602082019050919050565b60006020820190508181036000830152614df781614dbb565b9050919050565b6000614e0982613eeb565b9150614e1483613eeb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614e4957614e48614b60565b5b828201905092915050565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b6000614e8a601283613e4c565b9150614e9582614e54565b602082019050919050565b60006020820190508181036000830152614eb981614e7d565b9050919050565b6000614ecb82614220565b9150614ed683614220565b925082614ee657614ee5614c80565b5b828204905092915050565b6000614efc82614220565b9150614f0783614220565b925082614f1757614f16614c80565b5b828206905092915050565b7f4578636565646564207478206c696d6974000000000000000000000000000000600082015250565b6000614f58601183613e4c565b9150614f6382614f22565b602082019050919050565b60006020820190508181036000830152614f8781614f4b565b9050919050565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b6000614fc4601283613e4c565b9150614fcf82614f8e565b602082019050919050565b60006020820190508181036000830152614ff381614fb7565b9050919050565b7f4e6f7420696e2077686974656c697374206d696e742073746167650000000000600082015250565b6000615030601b83613e4c565b915061503b82614ffa565b602082019050919050565b6000602082019050818103600083015261505f81615023565b9050919050565b7f4d61782077686974656c697374206d696e7420737570706c792072656163686560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b60006150c2602183613e4c565b91506150cd82615066565b604082019050919050565b600060208201905081810360008301526150f1816150b5565b9050919050565b7f4e6f74206120546f79626972647320686f6c6465720000000000000000000000600082015250565b600061512e601583613e4c565b9150615139826150f8565b602082019050919050565b6000602082019050818103600083015261515d81615121565b9050919050565b7f496e76616c69642050726f6f6600000000000000000000000000000000000000600082015250565b600061519a600d83613e4c565b91506151a582615164565b602082019050919050565b600060208201905081810360008301526151c98161518d565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061522c602f83613e4c565b9150615237826151d0565b604082019050919050565b6000602082019050818103600083015261525b8161521f565b9050919050565b600081905092915050565b600061527882613e41565b6152828185615262565b9350615292818560208601613e5d565b80840191505092915050565b60008190508160005260206000209050919050565b600081546152c08161484f565b6152ca8186615262565b945060018216600081146152e557600181146152f657615329565b60ff19831686528186019350615329565b6152ff8561529e565b60005b8381101561532157815481890152600182019150602081019050615302565b838801955050505b50505092915050565b600061533e828661526d565b915061534a828561526d565b915061535682846152b3565b9150819050949350505050565b600061536e82613eeb565b915061537983613eeb565b92508282101561538c5761538b614b60565b5b828203905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006153f3602683613e4c565b91506153fe82615397565b604082019050919050565b60006020820190508181036000830152615422816153e6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061545f602083613e4c565b915061546a82615429565b602082019050919050565b6000602082019050818103600083015261548e81615452565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006154bc82615495565b6154c681856154a0565b93506154d6818560208601613e5d565b6154df81613c6e565b840191505092915050565b60006080820190506154ff6000830187613f80565b61550c6020830186613f80565b6155196040830185614016565b818103606083015261552b81846154b1565b905095945050505050565b60008151905061554581613bda565b92915050565b60006020828403121561556157615560613ba4565b5b600061556f84828501615536565b91505092915050565b600061558382613eeb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156155b6576155b5614b60565b5b600182019050919050565b60006155cc82613eeb565b91506155d783613eeb565b9250826155e7576155e6614c80565b5b82820690509291505056fea2646970667358221220c5f37fb2629dca76c5565f187786733f4afdcd226d46c411f5d44d2e66277a3e64736f6c63430008090033000000000000000000000000f4efd3d0c43a6a7e6a43baf306536cd6d6643553

Deployed Bytecode

0x60806040526004361061025c5760003560e01c8063715018a611610144578063ac0b434c116100b6578063defcbacb1161007a578063defcbacb146108ab578063e0b9e893146108d6578063e985e9c514610913578063f2fde38b14610950578063f607cc4c14610979578063f6847d2f146109955761025c565b8063ac0b434c146107ef578063b182e8181461080b578063b88d4fde14610827578063bf7b779c14610843578063c87b56dd1461086e5761025c565b8063902d55a511610108578063902d55a5146106dd57806395d89b4114610708578063975e840e1461073357806398710d1e1461075e5780639a9c1bb114610789578063a22cb465146107c65761025c565b8063715018a6146106305780637cb6475914610647578063853828b6146106705780638d859f3e146106875780638da5cb5b146106b25761025c565b80632a55205a116101dd57806342842e0e116101a157806342842e0e1461051b5780635033b633146105375780635503a0e81461056257806355f804b31461058d5780636352211e146105b657806370a08231146105f35761025c565b80632a55205a146104255780632e1a7d4d146104635780632e49d78b1461048c5780632fca0c6f146104b5578063355e71d8146104de5761025c565b8063174f08b811610224578063174f08b81461035f57806318160ddd1461038a5780631d80009a146103b557806323b872dd146103e0578063275193ce146103fc5761025c565b806301ffc9a714610261578063069824fb1461029e57806306fdde03146102db578063081812fc14610306578063095ea7b314610343575b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190613c06565b6109c0565b6040516102959190613c4e565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c09190613df8565b6109f2565b6040516102d29190613c4e565b60405180910390f35b3480156102e757600080fd5b506102f0610a3f565b6040516102fd9190613ec9565b60405180910390f35b34801561031257600080fd5b5061032d60048036038101906103289190613f21565b610ad1565b60405161033a9190613f8f565b60405180910390f35b61035d60048036038101906103589190613fd6565b610b50565b005b34801561036b57600080fd5b50610374610c94565b6040516103819190614025565b60405180910390f35b34801561039657600080fd5b5061039f610cb8565b6040516103ac9190614025565b60405180910390f35b3480156103c157600080fd5b506103ca610ccf565b6040516103d7919061404f565b60405180910390f35b6103fa60048036038101906103f5919061406a565b610cd5565b005b34801561040857600080fd5b50610423600480360381019061041e9190614118565b610ffa565b005b34801561043157600080fd5b5061044c60048036038101906104479190614165565b611442565b60405161045a9291906141a5565b60405180910390f35b34801561046f57600080fd5b5061048a60048036038101906104859190613f21565b61162d565b005b34801561049857600080fd5b506104b360048036038101906104ae91906141f3565b6117a9565b005b3480156104c157600080fd5b506104dc60048036038101906104d7919061425a565b6117de565b005b3480156104ea57600080fd5b506105056004803603810190610500919061429a565b611873565b6040516105129190613c4e565b60405180910390f35b6105356004803603810190610530919061406a565b6118d3565b005b34801561054357600080fd5b5061054c6118f3565b6040516105599190614025565b60405180910390f35b34801561056e57600080fd5b50610577611917565b6040516105849190613ec9565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af919061437c565b6119a5565b005b3480156105c257600080fd5b506105dd60048036038101906105d89190613f21565b6119c7565b6040516105ea9190613f8f565b60405180910390f35b3480156105ff57600080fd5b5061061a600480360381019061061591906143c5565b6119d9565b6040516106279190614025565b60405180910390f35b34801561063c57600080fd5b50610645611a92565b005b34801561065357600080fd5b5061066e600480360381019061066991906143f2565b611aa6565b005b34801561067c57600080fd5b50610685611ab8565b005b34801561069357600080fd5b5061069c611c33565b6040516106a99190614025565b60405180910390f35b3480156106be57600080fd5b506106c7611c57565b6040516106d49190613f8f565b60405180910390f35b3480156106e957600080fd5b506106f2611c80565b6040516106ff9190614025565b60405180910390f35b34801561071457600080fd5b5061071d611ca4565b60405161072a9190613ec9565b60405180910390f35b34801561073f57600080fd5b50610748611d36565b6040516107559190614025565b60405180910390f35b34801561076a57600080fd5b50610773611d5a565b6040516107809190614025565b60405180910390f35b34801561079557600080fd5b506107b060048036038101906107ab91906143c5565b611d7e565b6040516107bd9190614025565b60405180910390f35b3480156107d257600080fd5b506107ed60048036038101906107e8919061444b565b611d90565b005b6108096004803603810190610804919061429a565b611e9b565b005b6108256004803603810190610820919061448b565b61221a565b005b610841600480360381019061083c9190614588565b612520565b005b34801561084f57600080fd5b50610858612593565b6040516108659190614682565b60405180910390f35b34801561087a57600080fd5b5061089560048036038101906108909190613f21565b6125a6565b6040516108a29190613ec9565b60405180910390f35b3480156108b757600080fd5b506108c0612650565b6040516108cd9190614025565b60405180910390f35b3480156108e257600080fd5b506108fd60048036038101906108f891906143c5565b61268a565b60405161090a919061475b565b60405180910390f35b34801561091f57600080fd5b5061093a6004803603810190610935919061477d565b612a32565b6040516109479190613c4e565b60405180910390f35b34801561095c57600080fd5b50610977600480360381019061097291906143c5565b612ac6565b005b610993600480360381019061098e919061429a565b612b4a565b005b3480156109a157600080fd5b506109aa612e07565b6040516109b79190614025565b60405180910390f35b60006109cb82612e2b565b806109db57506109da82612ebd565b5b806109eb57506109ea82612ebd565b5b9050919050565b60008033604051602001610a069190614805565b60405160208183030381529060405290506000818051906020012090506000610a3285600d5484612f37565b9050809350505050919050565b606060038054610a4e9061484f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7a9061484f565b8015610ac75780601f10610a9c57610100808354040283529160200191610ac7565b820191906000526020600020905b815481529060010190602001808311610aaa57829003601f168201915b5050505050905090565b6000610adc82612f4e565b610b12576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b5b826119c7565b90508073ffffffffffffffffffffffffffffffffffffffff16610b7c612fad565b73ffffffffffffffffffffffffffffffffffffffff1614610bdf57610ba881610ba3612fad565b612a32565b610bde576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b7f0000000000000000000000000000000000000000000000000000000000000bb881565b6000610cc2612fb5565b6002546001540303905090565b600d5481565b6000610ce082612fbe565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d47576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610d538461308c565b91509150610d698187610d64612fad565b6130b3565b610db557610d7e86610d79612fad565b612a32565b610db4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610e1c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e2986868660016130f7565b8015610e3457600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f0285610ede8888876130fd565b7c020000000000000000000000000000000000000000000000000000000017613125565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610f8a576000600185019050600060056000838152602001908152602001600020541415610f88576001548114610f87578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ff28686866001613150565b505050505050565b6002600b541415611040576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611037906148cd565b60405180910390fd5b6002600b819055506000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016110a59190613f8f565b60206040518083038186803b1580156110bd57600080fd5b505afa1580156110d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110f59190614902565b11611135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112c906149a1565b60405180910390fd5b6004808111156111485761114761460b565b5b600e60009054906101000a900460ff16600481111561116a5761116961460b565b5b146111aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a190614a0d565b60405180910390fd5b600082829050116111f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e790614a79565b60405180910390fd5b600080600090505b838390508161ffff1610156113df57600084848361ffff168181106112205761121f614a99565b5b9050602002016020810190611235919061429a565b61ffff161415801561134757503373ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e86868561ffff168181106112ae576112ad614a99565b5b90506020020160208101906112c3919061429a565b6040518263ffffffff1660e01b81526004016112df9190614b03565b60206040518083038186803b1580156112f757600080fd5b505afa15801561130b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061132f9190614b33565b73ffffffffffffffffffffffffffffffffffffffff16145b8015611384575061138284848361ffff1681811061136857611367614a99565b5b905060200201602081019061137d919061429a565b611873565b155b156113cc576113bd84848361ffff168181106113a3576113a2614a99565b5b90506020020160208101906113b8919061429a565b613156565b81806113c890614b8f565b9250505b80806113d790614b8f565b9150506111f8565b5060008161ffff1611611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e90614c06565b60405180910390fd5b611435338261ffff166131bc565b506001600b819055505050565b6000806000600a60008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614156115d85760096040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b60006115e26131da565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff168661160e9190614c26565b6116189190614caf565b90508160000151819350935050509250929050565b6116356131e4565b6002600b54141561167b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611672906148cd565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146116f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e890614d2c565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff168260405161171790614d7d565b60006040518083038185875af1925050503d8060008114611754576040519150601f19603f3d011682016040523d82523d6000602084013e611759565b606091505b505090508061179d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179490614dde565b60405180910390fd5b506001600b8190555050565b6117b16131e4565b80600e60006101000a81548160ff021916908360048111156117d6576117d561460b565b5b021790555050565b6117e66131e4565b8061ffff167f000000000000000000000000000000000000000000000000000000000000177081611815610cb8565b61181f9190614dfe565b1115611860576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185790614ea0565b60405180910390fd5b61186e838361ffff166131bc565b505050565b600080610100836118849190614ec0565b61ffff16905060006101008461189a9190614ef1565b61ffff1690506000601183600c81106118b6576118b5614a99565b5b015490506000826001901b90508081831614945050505050919050565b6118ee83838360405180602001604052806000815250612520565b505050565b7f00000000000000000000000000000000000000000000000000000000000000c881565b600f80546119249061484f565b80601f01602080910402602001604051908101604052809291908181526020018280546119509061484f565b801561199d5780601f106119725761010080835404028352916020019161199d565b820191906000526020600020905b81548152906001019060200180831161198057829003601f168201915b505050505081565b6119ad6131e4565b80601090805190602001906119c3929190613af7565b5050565b60006119d282612fbe565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a41576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611a9a6131e4565b611aa46000613262565b565b611aae6131e4565b80600d8190555050565b611ac06131e4565b6002600b541415611b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afd906148cd565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611b7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7390614d2c565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611ba290614d7d565b60006040518083038185875af1925050503d8060008114611bdf576040519150601f19603f3d011682016040523d82523d6000602084013e611be4565b606091505b5050905080611c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1f90614dde565b60405180910390fd5b506001600b81905550565b7f000000000000000000000000000000000000000000000000004380663abb800081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f000000000000000000000000000000000000000000000000000000000000177081565b606060048054611cb39061484f565b80601f0160208091040260200160405190810160405280929190818152602001828054611cdf9061484f565b8015611d2c5780601f10611d0157610100808354040283529160200191611d2c565b820191906000526020600020905b815481529060010190602001808311611d0f57829003601f168201915b5050505050905090565b7f000000000000000000000000000000000000000000000000000000000000000281565b7f000000000000000000000000000000000000000000000000000000000000000181565b6000611d8982613326565b9050919050565b8060086000611d9d612fad565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e4a612fad565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e8f9190613c4e565b60405180910390a35050565b6002600b541415611ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed8906148cd565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4e90614d2c565b60405180910390fd5b8061ffff167f000000000000000000000000000000000000000000000000000000000000000281611f8733613326565b611f919190614dfe565b1115611fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc990614f6e565b60405180910390fd5b8161ffff16611fe1338261337d565b341015612023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201a90614fda565b60405180910390fd5b600160048111156120375761203661460b565b5b600e60009054906101000a900460ff1660048111156120595761205861460b565b5b14612099576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209090615046565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000c88361ffff166120c7610cb8565b6120d19190614dfe565b1115612112576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612109906150d8565b60405180910390fd5b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b815260040161216f9190613f8f565b60206040518083038186803b15801561218757600080fd5b505afa15801561219b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121bf9190614902565b116121ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f690615144565b60405180910390fd5b61220d338461ffff166131bc565b50506001600b8190555050565b6002600b541415612260576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612257906148cd565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146122d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cd90614d2c565b60405180910390fd5b8161ffff167f00000000000000000000000000000000000000000000000000000000000000028161230633613326565b6123109190614dfe565b1115612351576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234890614f6e565b60405180910390fd5b8261ffff16612360338261337d565b3410156123a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239990614fda565b60405180910390fd5b600260048111156123b6576123b561460b565b5b600e60009054906101000a900460ff1660048111156123d8576123d761460b565b5b14612418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240f90615046565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000c87f0000000000000000000000000000000000000000000000000000000000000af06124649190614dfe565b8461ffff16612471610cb8565b61247b9190614dfe565b11156124bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b3906150d8565b60405180910390fd5b6124c5836109f2565b612504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fb906151b0565b60405180910390fd5b612512338561ffff166131bc565b50506001600b819055505050565b61252b848484610cd5565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461258d5761255684848484613425565b61258c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600e60009054906101000a900460ff1681565b60606125b182612f4e565b6125f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e790615242565b60405180910390fd5b60006125fa613585565b9050600081511161261a5760405180602001604052806000815250612648565b8061262484613617565b600f60405160200161263893929190615332565b6040516020818303038152906040525b915050919050565b600061265a610cb8565b7f00000000000000000000000000000000000000000000000000000000000017706126859190615363565b905090565b60606000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b81526004016126e99190613f8f565b60206040518083038186803b15801561270157600080fd5b505afa158015612715573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127399190614902565b90506000811161277e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612775906149a1565b60405180910390fd5b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b1580156127e857600080fd5b505afa1580156127fc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128209190614902565b905060008267ffffffffffffffff81111561283e5761283d613c7f565b5b60405190808252806020026020018201604052801561286c5781602001602082028036833780820191505090505b509050600080600190505b838161ffff16116129c2578673ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016128f49190614b03565b60206040518083038186803b15801561290c57600080fd5b505afa158015612920573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129449190614b33565b73ffffffffffffffffffffffffffffffffffffffff1614801561296d575061296b81611873565b155b156129af5780838361ffff168151811061298a57612989614a99565b5b602002602001019061ffff16908161ffff168152505081806129ab90614b8f565b9250505b80806129ba90614b8f565b915050612877565b506000826000815181106129d9576129d8614a99565b5b602002602001015161ffff161415612a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1d90614c06565b60405180910390fd5b81945050505050919050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612ace6131e4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3590615409565b60405180910390fd5b612b4781613262565b50565b6002600b541415612b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b87906148cd565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614612c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bfd90614d2c565b60405180910390fd5b8061ffff167f000000000000000000000000000000000000000000000000000000000000000281612c3633613326565b612c409190614dfe565b1115612c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7890614f6e565b60405180910390fd5b8161ffff16612c90338261337d565b341015612cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc990614fda565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000c87f0000000000000000000000000000000000000000000000000000000000000af0612d1e9190614dfe565b8361ffff16612d2b610cb8565b612d359190614dfe565b1115612d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6d90614ea0565b60405180910390fd5b60036004811115612d8a57612d8961460b565b5b600e60009054906101000a900460ff166004811115612dac57612dab61460b565b5b14612dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de390615046565b60405180910390fd5b612dfa338461ffff166131bc565b50506001600b8190555050565b7f0000000000000000000000000000000000000000000000000000000000000af081565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612e8657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612eb65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612f305750612f2f82613778565b5b9050919050565b600082612f4485846137e2565b1490509392505050565b600081612f59612fb5565b11158015612f68575060015482105b8015612fa6575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080612fcd612fb5565b11613055576001548110156130545760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415613052575b600081141561304857600560008360019003935083815260200190815260200160002054905061301d565b8092505050613087565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8613114868684613838565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000610100826131669190614ec0565b61ffff16905060006101008361317c9190614ef1565b61ffff169050806001901b601183600c811061319b5761319a614a99565b5b015417601183600c81106131b2576131b1614a99565b5b0181905550505050565b6131d6828260405180602001604052806000815250613841565b5050565b6000612710905090565b6131ec6138df565b73ffffffffffffffffffffffffffffffffffffffff1661320a611c57565b73ffffffffffffffffffffffffffffffffffffffff1614613260576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325790615475565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600080600061338b85613326565b119050806133ef577f0000000000000000000000000000000000000000000000000000000000000001836133bf9190615363565b7f000000000000000000000000000000000000000000000000004380663abb80006133ea9190614c26565b61341c565b827f000000000000000000000000000000000000000000000000004380663abb800061341b9190614c26565b5b91505092915050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261344b612fad565b8786866040518563ffffffff1660e01b815260040161346d94939291906154ea565b602060405180830381600087803b15801561348757600080fd5b505af19250505080156134b857506040513d601f19601f820116820180604052508101906134b5919061554b565b60015b613532573d80600081146134e8576040519150601f19603f3d011682016040523d82523d6000602084013e6134ed565b606091505b5060008151141561352a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601080546135949061484f565b80601f01602080910402602001604051908101604052809291908181526020018280546135c09061484f565b801561360d5780601f106135e25761010080835404028352916020019161360d565b820191906000526020600020905b8154815290600101906020018083116135f057829003601f168201915b5050505050905090565b6060600082141561365f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613773565b600082905060005b6000821461369157808061367a90615578565b915050600a8261368a9190614caf565b9150613667565b60008167ffffffffffffffff8111156136ad576136ac613c7f565b5b6040519080825280601f01601f1916602001820160405280156136df5781602001600182028036833780820191505090505b5090505b6000851461376c576001826136f89190615363565b9150600a8561370791906155c1565b60306137139190614dfe565b60f81b81838151811061372957613728614a99565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856137659190614caf565b94506136e3565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008082905060005b845181101561382d576138188286838151811061380b5761380a614a99565b5b60200260200101516138e7565b9150808061382590615578565b9150506137eb565b508091505092915050565b60009392505050565b61384b8383613912565b60008373ffffffffffffffffffffffffffffffffffffffff163b146138da5760006001549050600083820390505b61388c6000868380600101945086613425565b6138c2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106138795781600154146138d757600080fd5b50505b505050565b600033905090565b60008183106138ff576138fa8284613ad0565b61390a565b6139098383613ad0565b5b905092915050565b600060015490506000821415613954576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61396160008483856130f7565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506139d8836139c960008660006130fd565b6139d285613ae7565b17613125565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114613a7957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050613a3e565b506000821415613ab5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806001819055505050613acb6000848385613150565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b828054613b039061484f565b90600052602060002090601f016020900481019282613b255760008555613b6c565b82601f10613b3e57805160ff1916838001178555613b6c565b82800160010185558215613b6c579182015b82811115613b6b578251825591602001919060010190613b50565b5b509050613b799190613b7d565b5090565b5b80821115613b96576000816000905550600101613b7e565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613be381613bae565b8114613bee57600080fd5b50565b600081359050613c0081613bda565b92915050565b600060208284031215613c1c57613c1b613ba4565b5b6000613c2a84828501613bf1565b91505092915050565b60008115159050919050565b613c4881613c33565b82525050565b6000602082019050613c636000830184613c3f565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613cb782613c6e565b810181811067ffffffffffffffff82111715613cd657613cd5613c7f565b5b80604052505050565b6000613ce9613b9a565b9050613cf58282613cae565b919050565b600067ffffffffffffffff821115613d1557613d14613c7f565b5b602082029050602081019050919050565b600080fd5b6000819050919050565b613d3e81613d2b565b8114613d4957600080fd5b50565b600081359050613d5b81613d35565b92915050565b6000613d74613d6f84613cfa565b613cdf565b90508083825260208201905060208402830185811115613d9757613d96613d26565b5b835b81811015613dc05780613dac8882613d4c565b845260208401935050602081019050613d99565b5050509392505050565b600082601f830112613ddf57613dde613c69565b5b8135613def848260208601613d61565b91505092915050565b600060208284031215613e0e57613e0d613ba4565b5b600082013567ffffffffffffffff811115613e2c57613e2b613ba9565b5b613e3884828501613dca565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613e7b578082015181840152602081019050613e60565b83811115613e8a576000848401525b50505050565b6000613e9b82613e41565b613ea58185613e4c565b9350613eb5818560208601613e5d565b613ebe81613c6e565b840191505092915050565b60006020820190508181036000830152613ee38184613e90565b905092915050565b6000819050919050565b613efe81613eeb565b8114613f0957600080fd5b50565b600081359050613f1b81613ef5565b92915050565b600060208284031215613f3757613f36613ba4565b5b6000613f4584828501613f0c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613f7982613f4e565b9050919050565b613f8981613f6e565b82525050565b6000602082019050613fa46000830184613f80565b92915050565b613fb381613f6e565b8114613fbe57600080fd5b50565b600081359050613fd081613faa565b92915050565b60008060408385031215613fed57613fec613ba4565b5b6000613ffb85828601613fc1565b925050602061400c85828601613f0c565b9150509250929050565b61401f81613eeb565b82525050565b600060208201905061403a6000830184614016565b92915050565b61404981613d2b565b82525050565b60006020820190506140646000830184614040565b92915050565b60008060006060848603121561408357614082613ba4565b5b600061409186828701613fc1565b93505060206140a286828701613fc1565b92505060406140b386828701613f0c565b9150509250925092565b600080fd5b60008083601f8401126140d8576140d7613c69565b5b8235905067ffffffffffffffff8111156140f5576140f46140bd565b5b60208301915083602082028301111561411157614110613d26565b5b9250929050565b6000806020838503121561412f5761412e613ba4565b5b600083013567ffffffffffffffff81111561414d5761414c613ba9565b5b614159858286016140c2565b92509250509250929050565b6000806040838503121561417c5761417b613ba4565b5b600061418a85828601613f0c565b925050602061419b85828601613f0c565b9150509250929050565b60006040820190506141ba6000830185613f80565b6141c76020830184614016565b9392505050565b600581106141db57600080fd5b50565b6000813590506141ed816141ce565b92915050565b60006020828403121561420957614208613ba4565b5b6000614217848285016141de565b91505092915050565b600061ffff82169050919050565b61423781614220565b811461424257600080fd5b50565b6000813590506142548161422e565b92915050565b6000806040838503121561427157614270613ba4565b5b600061427f85828601613fc1565b925050602061429085828601614245565b9150509250929050565b6000602082840312156142b0576142af613ba4565b5b60006142be84828501614245565b91505092915050565b600080fd5b600067ffffffffffffffff8211156142e7576142e6613c7f565b5b6142f082613c6e565b9050602081019050919050565b82818337600083830152505050565b600061431f61431a846142cc565b613cdf565b90508281526020810184848401111561433b5761433a6142c7565b5b6143468482856142fd565b509392505050565b600082601f83011261436357614362613c69565b5b813561437384826020860161430c565b91505092915050565b60006020828403121561439257614391613ba4565b5b600082013567ffffffffffffffff8111156143b0576143af613ba9565b5b6143bc8482850161434e565b91505092915050565b6000602082840312156143db576143da613ba4565b5b60006143e984828501613fc1565b91505092915050565b60006020828403121561440857614407613ba4565b5b600061441684828501613d4c565b91505092915050565b61442881613c33565b811461443357600080fd5b50565b6000813590506144458161441f565b92915050565b6000806040838503121561446257614461613ba4565b5b600061447085828601613fc1565b925050602061448185828601614436565b9150509250929050565b600080604083850312156144a2576144a1613ba4565b5b60006144b085828601614245565b925050602083013567ffffffffffffffff8111156144d1576144d0613ba9565b5b6144dd85828601613dca565b9150509250929050565b600067ffffffffffffffff82111561450257614501613c7f565b5b61450b82613c6e565b9050602081019050919050565b600061452b614526846144e7565b613cdf565b905082815260208101848484011115614547576145466142c7565b5b6145528482856142fd565b509392505050565b600082601f83011261456f5761456e613c69565b5b813561457f848260208601614518565b91505092915050565b600080600080608085870312156145a2576145a1613ba4565b5b60006145b087828801613fc1565b94505060206145c187828801613fc1565b93505060406145d287828801613f0c565b925050606085013567ffffffffffffffff8111156145f3576145f2613ba9565b5b6145ff8782880161455a565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6005811061464b5761464a61460b565b5b50565b600081905061465c8261463a565b919050565b600061466c8261464e565b9050919050565b61467c81614661565b82525050565b60006020820190506146976000830184614673565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6146d281614220565b82525050565b60006146e483836146c9565b60208301905092915050565b6000602082019050919050565b60006147088261469d565b61471281856146a8565b935061471d836146b9565b8060005b8381101561474e57815161473588826146d8565b9750614740836146f0565b925050600181019050614721565b5085935050505092915050565b6000602082019050818103600083015261477581846146fd565b905092915050565b6000806040838503121561479457614793613ba4565b5b60006147a285828601613fc1565b92505060206147b385828601613fc1565b9150509250929050565b60008160601b9050919050565b60006147d5826147bd565b9050919050565b60006147e7826147ca565b9050919050565b6147ff6147fa82613f6e565b6147dc565b82525050565b600061481182846147ee565b60148201915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061486757607f821691505b6020821081141561487b5761487a614820565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006148b7601f83613e4c565b91506148c282614881565b602082019050919050565b600060208201905081810360008301526148e6816148aa565b9050919050565b6000815190506148fc81613ef5565b92915050565b60006020828403121561491857614917613ba4565b5b6000614926848285016148ed565b91505092915050565b7f4164647265737320646f6573206e6f74206f776e20616e7920546f796269726460008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061498b602183613e4c565b91506149968261492f565b604082019050919050565b600060208201905081810360008301526149ba8161497e565b9050919050565b7f436c61696d206973206e6f74206163746976652e000000000000000000000000600082015250565b60006149f7601483613e4c565b9150614a02826149c1565b602082019050919050565b60006020820190508181036000830152614a26816149ea565b9050919050565b7f4e6f2049447320676976656e0000000000000000000000000000000000000000600082015250565b6000614a63600c83613e4c565b9150614a6e82614a2d565b602082019050919050565b60006020820190508181036000830152614a9281614a56565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000614aed614ae8614ae384614220565b614ac8565b613eeb565b9050919050565b614afd81614ad2565b82525050565b6000602082019050614b186000830184614af4565b92915050565b600081519050614b2d81613faa565b92915050565b600060208284031215614b4957614b48613ba4565b5b6000614b5784828501614b1e565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614b9a82614220565b915061ffff821415614baf57614bae614b60565b5b600182019050919050565b7f4e6f20746f6b656e7320746f20636c61696d0000000000000000000000000000600082015250565b6000614bf0601283613e4c565b9150614bfb82614bba565b602082019050919050565b60006020820190508181036000830152614c1f81614be3565b9050919050565b6000614c3182613eeb565b9150614c3c83613eeb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614c7557614c74614b60565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614cba82613eeb565b9150614cc583613eeb565b925082614cd557614cd4614c80565b5b828204905092915050565b7f496e76616c696420557365720000000000000000000000000000000000000000600082015250565b6000614d16600c83613e4c565b9150614d2182614ce0565b602082019050919050565b60006020820190508181036000830152614d4581614d09565b9050919050565b600081905092915050565b50565b6000614d67600083614d4c565b9150614d7282614d57565b600082019050919050565b6000614d8882614d5a565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000614dc8601083613e4c565b9150614dd382614d92565b602082019050919050565b60006020820190508181036000830152614df781614dbb565b9050919050565b6000614e0982613eeb565b9150614e1483613eeb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614e4957614e48614b60565b5b828201905092915050565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b6000614e8a601283613e4c565b9150614e9582614e54565b602082019050919050565b60006020820190508181036000830152614eb981614e7d565b9050919050565b6000614ecb82614220565b9150614ed683614220565b925082614ee657614ee5614c80565b5b828204905092915050565b6000614efc82614220565b9150614f0783614220565b925082614f1757614f16614c80565b5b828206905092915050565b7f4578636565646564207478206c696d6974000000000000000000000000000000600082015250565b6000614f58601183613e4c565b9150614f6382614f22565b602082019050919050565b60006020820190508181036000830152614f8781614f4b565b9050919050565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b6000614fc4601283613e4c565b9150614fcf82614f8e565b602082019050919050565b60006020820190508181036000830152614ff381614fb7565b9050919050565b7f4e6f7420696e2077686974656c697374206d696e742073746167650000000000600082015250565b6000615030601b83613e4c565b915061503b82614ffa565b602082019050919050565b6000602082019050818103600083015261505f81615023565b9050919050565b7f4d61782077686974656c697374206d696e7420737570706c792072656163686560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b60006150c2602183613e4c565b91506150cd82615066565b604082019050919050565b600060208201905081810360008301526150f1816150b5565b9050919050565b7f4e6f74206120546f79626972647320686f6c6465720000000000000000000000600082015250565b600061512e601583613e4c565b9150615139826150f8565b602082019050919050565b6000602082019050818103600083015261515d81615121565b9050919050565b7f496e76616c69642050726f6f6600000000000000000000000000000000000000600082015250565b600061519a600d83613e4c565b91506151a582615164565b602082019050919050565b600060208201905081810360008301526151c98161518d565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061522c602f83613e4c565b9150615237826151d0565b604082019050919050565b6000602082019050818103600083015261525b8161521f565b9050919050565b600081905092915050565b600061527882613e41565b6152828185615262565b9350615292818560208601613e5d565b80840191505092915050565b60008190508160005260206000209050919050565b600081546152c08161484f565b6152ca8186615262565b945060018216600081146152e557600181146152f657615329565b60ff19831686528186019350615329565b6152ff8561529e565b60005b8381101561532157815481890152600182019150602081019050615302565b838801955050505b50505092915050565b600061533e828661526d565b915061534a828561526d565b915061535682846152b3565b9150819050949350505050565b600061536e82613eeb565b915061537983613eeb565b92508282101561538c5761538b614b60565b5b828203905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006153f3602683613e4c565b91506153fe82615397565b604082019050919050565b60006020820190508181036000830152615422816153e6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061545f602083613e4c565b915061546a82615429565b602082019050919050565b6000602082019050818103600083015261548e81615452565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006154bc82615495565b6154c681856154a0565b93506154d6818560208601613e5d565b6154df81613c6e565b840191505092915050565b60006080820190506154ff6000830187613f80565b61550c6020830186613f80565b6155196040830185614016565b818103606083015261552b81846154b1565b905095945050505050565b60008151905061554581613bda565b92915050565b60006020828403121561556157615560613ba4565b5b600061556f84828501615536565b91505092915050565b600061558382613eeb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156155b6576155b5614b60565b5b600182019050919050565b60006155cc82613eeb565b91506155d783613eeb565b9250826155e7576155e6614c80565b5b82820690509291505056fea2646970667358221220c5f37fb2629dca76c5565f187786733f4afdcd226d46c411f5d44d2e66277a3e64736f6c63430008090033

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

000000000000000000000000f4efd3d0c43a6a7e6a43baf306536cd6d6643553

-----Decoded View---------------
Arg [0] : toybirdsContract (address): 0xf4EFd3d0C43A6a7e6A43bAf306536Cd6d6643553

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000f4efd3d0c43a6a7e6a43baf306536cd6d6643553


Deployed Bytecode Sourcemap

81657:8336:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88897:344;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83679:358;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40319:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46810:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46243:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82364:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36070:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81797:101;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50449:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;87186:803;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18516:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;89589:195;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88262:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84045:194;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86163:327;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53370:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82234:55;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82425:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88150:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41712:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37254:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75224:103;;;;;;;;;;;;;:::i;:::-;;83569:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;89792:198;;;;;;;;;;;;;:::i;:::-;;82132:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74576:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82183:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40495:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82079:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82024:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87997:145;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47368:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84247:538;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84793:584;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54161:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81945:70;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88487:402;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83331:114;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86498:680;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47759:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75482:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85385:506;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82296:61;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88897:344;89045:4;89087:38;89113:11;89087:25;:38::i;:::-;:93;;;;89142:38;89168:11;89142:25;:38::i;:::-;89087:93;:146;;;;89197:36;89221:11;89197:23;:36::i;:::-;89087:146;89067:166;;88897:344;;;:::o;83679:358::-;83780:4;83802:31;83853:10;83836:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;83802:62;;83875:12;83900:18;83890:29;;;;;;83875:44;;83930:17;83950:47;83969:11;83982:8;;83992:4;83950:18;:47::i;:::-;83930:67;;84017:12;84010:19;;;;;83679:358;;;:::o;40319:100::-;40373:13;40406:5;40399:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40319:100;:::o;46810:218::-;46886:7;46911:16;46919:7;46911;:16::i;:::-;46906:64;;46936:34;;;;;;;;;;;;;;46906:64;46990:15;:24;47006:7;46990:24;;;;;;;;;;;:30;;;;;;;;;;;;46983:37;;46810:218;;;:::o;46243:408::-;46332:13;46348:16;46356:7;46348;:16::i;:::-;46332:32;;46404:5;46381:28;;:19;:17;:19::i;:::-;:28;;;46377:175;;46429:44;46446:5;46453:19;:17;:19::i;:::-;46429:16;:44::i;:::-;46424:128;;46501:35;;;;;;;;;;;;;;46424:128;46377:175;46597:2;46564:15;:24;46580:7;46564:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;46635:7;46631:2;46615:28;;46624:5;46615:28;;;;;;;;;;;;46321:330;46243:408;;:::o;82364:50::-;;;:::o;36070:323::-;36131:7;36359:15;:13;:15::i;:::-;36344:12;;36328:13;;:28;:46;36321:53;;36070:323;:::o;81797:101::-;;;;:::o;50449:2825::-;50591:27;50621;50640:7;50621:18;:27::i;:::-;50591:57;;50706:4;50665:45;;50681:19;50665:45;;;50661:86;;50719:28;;;;;;;;;;;;;;50661:86;50761:27;50790:23;50817:35;50844:7;50817:26;:35::i;:::-;50760:92;;;;50952:68;50977:15;50994:4;51000:19;:17;:19::i;:::-;50952:24;:68::i;:::-;50947:180;;51040:43;51057:4;51063:19;:17;:19::i;:::-;51040:16;:43::i;:::-;51035:92;;51092:35;;;;;;;;;;;;;;51035:92;50947:180;51158:1;51144:16;;:2;:16;;;51140:52;;;51169:23;;;;;;;;;;;;;;51140:52;51205:43;51227:4;51233:2;51237:7;51246:1;51205:21;:43::i;:::-;51341:15;51338:160;;;51481:1;51460:19;51453:30;51338:160;51878:18;:24;51897:4;51878:24;;;;;;;;;;;;;;;;51876:26;;;;;;;;;;;;51947:18;:22;51966:2;51947:22;;;;;;;;;;;;;;;;51945:24;;;;;;;;;;;52269:146;52306:2;52355:45;52370:4;52376:2;52380:19;52355:14;:45::i;:::-;32469:8;52327:73;52269:18;:146::i;:::-;52240:17;:26;52258:7;52240:26;;;;;;;;;;;:175;;;;52586:1;32469:8;52535:19;:47;:52;52531:627;;;52608:19;52640:1;52630:7;:11;52608:33;;52797:1;52763:17;:30;52781:11;52763:30;;;;;;;;;;;;:35;52759:384;;;52901:13;;52886:11;:28;52882:242;;53081:19;53048:17;:30;53066:11;53048:30;;;;;;;;;;;:52;;;;52882:242;52759:384;52589:569;52531:627;53205:7;53201:2;53186:27;;53195:4;53186:27;;;;;;;;;;;;53224:42;53245:4;53251:2;53255:7;53264:1;53224:20;:42::i;:::-;50580:2694;;;50449:2825;;;:::o;87186:803::-;13069:1;13667:7;;:19;;13659:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;13069:1;13800:7;:18;;;;87315:1:::1;87281:9;;;;;;;;;;;:19;;;87301:10;87281:31;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:35;87273:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;87392:30;87373:49:::0;::::1;;;;;;;:::i;:::-;;:15;;;;;;;;;;;:49;;;;;;;;:::i;:::-;;;87365:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;87491:1;87466:15;;:22;;:26;87458:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;87522:23;87572:8:::0;87583:1:::1;87572:12;;87567:299;87590:15;;:22;;87586:1;:26;;;87567:299;;;87660:1;87638:15;;87654:1;87638:18;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;:23;;;;:78;;;;;87706:10;87665:51;;:9;;;;;;;;;;;:17;;;87683:15;;87699:1;87683:18;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;87665:37;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:51;;;87638:78;:112;;;;;87721:29;87731:15;;87747:1;87731:18;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;87721:9;:29::i;:::-;87720:30;87638:112;87634:221;;;87771:31;87783:15;;87799:1;87783:18;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;87771:11;:31::i;:::-;87821:18;;;;;:::i;:::-;;;;87634:221;87614:3;;;;;:::i;:::-;;;;87567:299;;;;87905:1;87886:16;:20;;;87878:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;87942:39;87952:10;87964:16;87942:39;;:9;:39::i;:::-;87262:727;13025:1:::0;13979:7;:22;;;;87186:803;;:::o;18516:442::-;18613:7;18622;18642:26;18671:17;:27;18689:8;18671:27;;;;;;;;;;;18642:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18743:1;18715:30;;:7;:16;;;:30;;;18711:92;;;18772:19;18762:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18711:92;18815:21;18880:17;:15;:17::i;:::-;18839:58;;18853:7;:23;;;18840:36;;:10;:36;;;;:::i;:::-;18839:58;;;;:::i;:::-;18815:82;;18918:7;:16;;;18936:13;18910:40;;;;;;18516:442;;;;;:::o;89589:195::-;74462:13;:11;:13::i;:::-;13069:1:::1;13667:7;;:19;;13659:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;13069:1;13800:7;:18;;;;83072:10:::2;83059:23;;:9;:23;;;83051:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;89674:12:::3;89692:10;:15;;89715:7;89692:35;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89673:54;;;89748:7;89740:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;89662:122;13025:1:::1;13979:7;:22;;;;89589:195:::0;:::o;88262:108::-;74462:13;:11;:13::i;:::-;88356:6:::1;88338:15;;:24;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;88262:108:::0;:::o;84045:194::-;74462:13;:11;:13::i;:::-;84172:8:::1;82865:149;;82959:12;82947:8;82931:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:40;;82923:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;84198:33:::2;84208:12;84222:8;84198:33;;:9;:33::i;:::-;74486:1:::1;84045:194:::0;;:::o;86163:327::-;86219:4;86236:24;86273:3;86263:7;:13;;;;:::i;:::-;86236:40;;;;86287:23;86323:3;86313:7;:13;;;;:::i;:::-;86287:39;;;;86337:19;86359:13;86373:16;86359:31;;;;;;;:::i;:::-;;;;86337:53;;86401:12;86422:15;86417:1;:20;;86401:37;;86478:4;86470;86456:11;:18;:26;86449:33;;;;;;86163:327;;;:::o;53370:193::-;53516:39;53533:4;53539:2;53543:7;53516:39;;;;;;;;;;;;:16;:39::i;:::-;53370:193;;;:::o;82234:55::-;;;:::o;82425:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;88150:104::-;74462:13;:11;:13::i;:::-;88240:6:::1;88230:7;:16;;;;;;;;;;;;:::i;:::-;;88150:104:::0;:::o;41712:152::-;41784:7;41827:27;41846:7;41827:18;:27::i;:::-;41804:52;;41712:152;;;:::o;37254:233::-;37326:7;37367:1;37350:19;;:5;:19;;;37346:60;;;37378:28;;;;;;;;;;;;;;37346:60;31413:13;37424:18;:25;37443:5;37424:25;;;;;;;;;;;;;;;;:55;37417:62;;37254:233;;;:::o;75224:103::-;74462:13;:11;:13::i;:::-;75289:30:::1;75316:1;75289:18;:30::i;:::-;75224:103::o:0;83569:102::-;74462:13;:11;:13::i;:::-;83652:11:::1;83641:8;:22;;;;83569:102:::0;:::o;89792:198::-;74462:13;:11;:13::i;:::-;13069:1:::1;13667:7;;:19;;13659:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;13069:1;13800:7;:18;;;;83072:10:::2;83059:23;;:9;:23;;;83051:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;89866:12:::3;89884:10;:15;;89907:21;89884:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89865:68;;;89954:7;89946:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;89854:136;13025:1:::1;13979:7;:22;;;;89792:198::o:0;82132:44::-;;;:::o;74576:87::-;74622:7;74649:6;;;;;;;;;;;74642:13;;74576:87;:::o;82183:44::-;;;:::o;40495:104::-;40551:13;40584:7;40577:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40495:104;:::o;82079:46::-;;;:::o;82024:48::-;;;:::o;87997:145::-;88083:7;88115:19;88129:4;88115:13;:19::i;:::-;88108:26;;87997:145;;;:::o;47368:234::-;47515:8;47463:18;:39;47482:19;:17;:19::i;:::-;47463:39;;;;;;;;;;;;;;;:49;47503:8;47463:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;47575:8;47539:55;;47554:19;:17;:19::i;:::-;47539:55;;;47585:8;47539:55;;;;;;:::i;:::-;;;;;;;;47368:234;;:::o;84247:538::-;13069:1;13667:7;;:19;;13659:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;13069:1;13800:7;:18;;;;83072:10:::1;83059:23;;:9;:23;;;83051:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;84396:8:::2;82697:160;;82798:17;82786:8;82758:25;82772:10;82758:13;:25::i;:::-;:36;;;;:::i;:::-;:57;;82750:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;84430:8:::3;82538:151;;82612:34;82625:10;82637:8;82612:12;:34::i;:::-;82599:9;:47;;82591:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;84483:29:::4;84464:48;;;;;;;;:::i;:::-;;:15;;;;;;;;;;;:48;;;;;;;;:::i;:::-;;;84456:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;84591:24;84579:8;84563:24;;:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:52;;84555:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;84706:1;84672:9;;;;;;;;;;;:19;;;84692:10;84672:31;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::4;;;;;;;;;;;;::::0;::::4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:35;84664:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;84746:31;84756:10;84768:8;84746:31;;:9;:31::i;:::-;82848:1:::3;83110::::2;13025::::0;13979:7;:22;;;;84247:538;:::o;84793:584::-;13069:1;13667:7;;:19;;13659:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;13069:1;13800:7;:18;;;;83072:10:::1;83059:23;;:9;:23;;;83051:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;84975:8:::2;82697:160;;82798:17;82786:8;82758:25;82772:10;82758:13;:25::i;:::-;:36;;;;:::i;:::-;:57;;82750:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;85009:8:::3;82538:151;;82612:34;82625:10;82637:8;82612:12;:34::i;:::-;82599:9;:47;;82591:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;85062:28:::4;85043:47;;;;;;;;:::i;:::-;;:15;;;;;;;;;;;:47;;;;;;;;:::i;:::-;;;85035:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;85200:24;85168:29;:56;;;;:::i;:::-;85156:8;85140:24;;:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:84;;85132:130;;;;;;;;;;;;:::i;:::-;;;;;;;;;85281:26;85295:11;85281:13;:26::i;:::-;85273:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;85338:31;85348:10;85360:8;85338:31;;:9;:31::i;:::-;82848:1:::3;83110::::2;13025::::0;13979:7;:22;;;;84793:584;;:::o;54161:407::-;54336:31;54349:4;54355:2;54359:7;54336:12;:31::i;:::-;54400:1;54382:2;:14;;;:19;54378:183;;54421:56;54452:4;54458:2;54462:7;54471:5;54421:30;:56::i;:::-;54416:145;;54505:40;;;;;;;;;;;;;;54416:145;54378:183;54161:407;;;;:::o;81945:70::-;;;;;;;;;;;;;:::o;88487:402::-;88561:13;88595:17;88603:8;88595:7;:17::i;:::-;88587:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;88677:28;88708:10;:8;:10::i;:::-;88677:41;;88767:1;88742:14;88736:28;:32;:145;;;;;;;;;;;;;;;;;88808:14;88824:26;88841:8;88824:16;:26::i;:::-;88852:9;88791:71;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;88736:145;88729:152;;;88487:402;;;:::o;83331:114::-;83382:7;83424:13;:11;:13::i;:::-;83409:12;:28;;;;:::i;:::-;83402:35;;83331:114;:::o;86498:680::-;86564:15;86590:27;86620:9;;;;;;;;;;;:19;;;86640:6;86620:27;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;86590:57;;86686:1;86664:19;:23;86656:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;86734:21;86758:9;;;;;;;;;;;:21;;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;86734:47;;86790:31;86837:19;86824:33;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86790:67;;86866:10;86895:8;86906:1;86895:12;;86891:182;86914:13;86909:1;:18;;;86891:182;;86972:6;86948:30;;:9;;;;;;;;;;;:17;;;86966:1;86948:20;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:30;;;:47;;;;;86983:12;86993:1;86983:9;:12::i;:::-;86982:13;86948:47;86945:119;;;87033:1;87010:15;87026:3;87010:20;;;;;;;;;;:::i;:::-;;;;;;;:24;;;;;;;;;;;87047:5;;;;;:::i;:::-;;;;86945:119;86929:3;;;;;:::i;:::-;;;;86891:182;;;;87113:1;87091:15;87107:1;87091:18;;;;;;;;:::i;:::-;;;;;;;;:23;;;;87083:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;87155:15;87148:22;;;;;;86498:680;;;:::o;47759:164::-;47856:4;47880:18;:25;47899:5;47880:25;;;;;;;;;;;;;;;:35;47906:8;47880:35;;;;;;;;;;;;;;;;;;;;;;;;;47873:42;;47759:164;;;;:::o;75482:201::-;74462:13;:11;:13::i;:::-;75591:1:::1;75571:22;;:8;:22;;;;75563:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;75647:28;75666:8;75647:18;:28::i;:::-;75482:201:::0;:::o;85385:506::-;13069:1;13667:7;;:19;;13659:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;13069:1;13800:7;:18;;;;83072:10:::1;83059:23;;:9;:23;;;83051:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;85534:8:::2;82697:160;;82798:17;82786:8;82758:25;82772:10;82758:13;:25::i;:::-;:36;;;;:::i;:::-;:57;;82750:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;85568:8:::3;82538:151;;82612:34;82625:10;82637:8;82612:12;:34::i;:::-;82599:9;:47;;82591:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;85662:24:::4;85630:29;:56;;;;:::i;:::-;85618:8;85602:24;;:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:84;;85594:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;85761:23;85742:42;;;;;;;;:::i;:::-;;:15;;;;;;;;;;;:42;;;;;;;;:::i;:::-;;;85720:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;85852:31;85862:10;85874:8;85852:31;;:9;:31::i;:::-;82848:1:::3;83110::::2;13025::::0;13979:7;:22;;;;85385:506;:::o;82296:61::-;;;:::o;39417:639::-;39502:4;39841:10;39826:25;;:11;:25;;;;:102;;;;39918:10;39903:25;;:11;:25;;;;39826:102;:179;;;;39995:10;39980:25;;:11;:25;;;;39826:179;39806:199;;39417:639;;;:::o;18246:215::-;18348:4;18387:26;18372:41;;;:11;:41;;;;:81;;;;18417:36;18441:11;18417:23;:36::i;:::-;18372:81;18365:88;;18246:215;;;:::o;3751:190::-;3876:4;3929;3900:25;3913:5;3920:4;3900:12;:25::i;:::-;:33;3893:40;;3751:190;;;;;:::o;48181:282::-;48246:4;48302:7;48283:15;:13;:15::i;:::-;:26;;:66;;;;;48336:13;;48326:7;:23;48283:66;:153;;;;;48435:1;32189:8;48387:17;:26;48405:7;48387:26;;;;;;;;;;;;:44;:49;48283:153;48263:173;;48181:282;;;:::o;70489:105::-;70549:7;70576:10;70569:17;;70489:105;:::o;88378:101::-;88443:7;88470:1;88463:8;;88378:101;:::o;42867:1275::-;42934:7;42954:12;42969:7;42954:22;;43037:4;43018:15;:13;:15::i;:::-;:23;43014:1061;;43071:13;;43064:4;:20;43060:1015;;;43109:14;43126:17;:23;43144:4;43126:23;;;;;;;;;;;;43109:40;;43243:1;32189:8;43215:6;:24;:29;43211:845;;;43880:113;43897:1;43887:6;:11;43880:113;;;43940:17;:25;43958:6;;;;;;;43940:25;;;;;;;;;;;;43931:34;;43880:113;;;44026:6;44019:13;;;;;;43211:845;43086:989;43060:1015;43014:1061;44103:31;;;;;;;;;;;;;;42867:1275;;;;:::o;49344:485::-;49446:27;49475:23;49516:38;49557:15;:24;49573:7;49557:24;;;;;;;;;;;49516:65;;49734:18;49711:41;;49791:19;49785:26;49766:45;;49696:126;49344:485;;;:::o;48572:659::-;48721:11;48886:16;48879:5;48875:28;48866:37;;49046:16;49035:9;49031:32;49018:45;;49196:15;49185:9;49182:30;49174:5;49163:9;49160:20;49157:56;49147:66;;48572:659;;;;;:::o;55230:159::-;;;;;:::o;69798:311::-;69933:7;69953:16;32593:3;69979:19;:41;;69953:68;;32593:3;70047:31;70058:4;70064:2;70068:9;70047:10;:31::i;:::-;70039:40;;:62;;70032:69;;;69798:311;;;;;:::o;44690:450::-;44770:14;44938:16;44931:5;44927:28;44918:37;;45115:5;45101:11;45076:23;45072:41;45069:52;45062:5;45059:63;45049:73;;44690:450;;;;:::o;56054:158::-;;;;;:::o;85899:256::-;85956:24;85993:3;85983:7;:13;;;;:::i;:::-;85956:40;;;;86007:23;86043:3;86033:7;:13;;;;:::i;:::-;86007:39;;;;86131:15;86126:1;:20;;86091:13;86105:16;86091:31;;;;;;;:::i;:::-;;;;:56;86057:13;86071:16;86057:31;;;;;;;:::i;:::-;;;:90;;;;85945:210;;85899:256;:::o;64321:112::-;64398:27;64408:2;64412:8;64398:27;;;;;;;;;;;;:9;:27::i;:::-;64321:112;;:::o;19240:97::-;19298:6;19324:5;19317:12;;19240:97;:::o;74741:132::-;74816:12;:10;:12::i;:::-;74805:23;;:7;:5;:7::i;:::-;:23;;;74797:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;74741:132::o;75843:191::-;75917:16;75936:6;;;;;;;;;;;75917:25;;75962:8;75953:6;;:17;;;;;;;;;;;;;;;;;;76017:8;75986:40;;76007:8;75986:40;;;;;;;;;;;;75906:128;75843:191;:::o;37569:178::-;37630:7;31413:13;31551:2;37658:18;:25;37677:5;37658:25;;;;;;;;;;;;;;;;:50;;37657:82;37650:89;;37569:178;;;:::o;89249:332::-;89354:7;89379:20;89426:1;89402:21;89416:6;89402:13;:21::i;:::-;:25;89379:48;;89460:15;:113;;89553:19;89542:8;:30;;;;:::i;:::-;89533:5;:40;;;;:::i;:::-;89460:113;;;89504:8;89495:5;:18;;;;:::i;:::-;89460:113;89440:133;;;89249:332;;;;:::o;56652:716::-;56815:4;56861:2;56836:45;;;56882:19;:17;:19::i;:::-;56903:4;56909:7;56918:5;56836:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;56832:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57136:1;57119:6;:13;:18;57115:235;;;57165:40;;;;;;;;;;;;;;57115:235;57308:6;57302:13;57293:6;57289:2;57285:15;57278:38;56832:529;57005:54;;;56995:64;;;:6;:64;;;;56988:71;;;56652:716;;;;;;:::o;83453:108::-;83513:13;83546:7;83539:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83453:108;:::o;465:723::-;521:13;751:1;742:5;:10;738:53;;;769:10;;;;;;;;;;;;;;;;;;;;;738:53;801:12;816:5;801:20;;832:14;857:78;872:1;864:4;:9;857:78;;890:8;;;;;:::i;:::-;;;;921:2;913:10;;;;;:::i;:::-;;;857:78;;;945:19;977:6;967:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;945:39;;995:154;1011:1;1002:5;:10;995:154;;1039:1;1029:11;;;;;:::i;:::-;;;1106:2;1098:5;:10;;;;:::i;:::-;1085:2;:24;;;;:::i;:::-;1072:39;;1055:6;1062;1055:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1135:2;1126:11;;;;;:::i;:::-;;;995:154;;;1173:6;1159:21;;;;;465:723;;;;:::o;15798:157::-;15883:4;15922:25;15907:40;;;:11;:40;;;;15900:47;;15798:157;;;:::o;4618:296::-;4701:7;4721:20;4744:4;4721:27;;4764:9;4759:118;4783:5;:12;4779:1;:16;4759:118;;;4832:33;4842:12;4856:5;4862:1;4856:8;;;;;;;;:::i;:::-;;;;;;;;4832:9;:33::i;:::-;4817:48;;4797:3;;;;;:::i;:::-;;;;4759:118;;;;4894:12;4887:19;;;4618:296;;;;:::o;69499:147::-;69636:6;69499:147;;;;;:::o;63548:689::-;63679:19;63685:2;63689:8;63679:5;:19::i;:::-;63758:1;63740:2;:14;;;:19;63736:483;;63780:11;63794:13;;63780:27;;63826:13;63848:8;63842:3;:14;63826:30;;63875:233;63906:62;63945:1;63949:2;63953:7;;;;;;63962:5;63906:30;:62::i;:::-;63901:167;;64004:40;;;;;;;;;;;;;;63901:167;64103:3;64095:5;:11;63875:233;;64190:3;64173:13;;:20;64169:34;;64195:8;;;64169:34;63761:458;;63736:483;63548:689;;;:::o;73127:98::-;73180:7;73207:10;73200:17;;73127:98;:::o;10825:149::-;10888:7;10919:1;10915;:5;:51;;10946:20;10961:1;10964;10946:14;:20::i;:::-;10915:51;;;10923:20;10938:1;10941;10923:14;:20::i;:::-;10915:51;10908:58;;10825:149;;;;:::o;57830:2966::-;57903:20;57926:13;;57903:36;;57966:1;57954:8;:13;57950:44;;;57976:18;;;;;;;;;;;;;;57950:44;58007:61;58037:1;58041:2;58045:12;58059:8;58007:21;:61::i;:::-;58551:1;31551:2;58521:1;:26;;58520:32;58508:8;:45;58482:18;:22;58501:2;58482:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;58830:139;58867:2;58921:33;58944:1;58948:2;58952:1;58921:14;:33::i;:::-;58888:30;58909:8;58888:20;:30::i;:::-;:66;58830:18;:139::i;:::-;58796:17;:31;58814:12;58796:31;;;;;;;;;;;:173;;;;58986:16;59017:11;59046:8;59031:12;:23;59017:37;;59567:16;59563:2;59559:25;59547:37;;59939:12;59899:8;59858:1;59796:25;59737:1;59676;59649:335;60310:1;60296:12;60292:20;60250:346;60351:3;60342:7;60339:16;60250:346;;60569:7;60559:8;60556:1;60529:25;60526:1;60523;60518:59;60404:1;60395:7;60391:15;60380:26;;60250:346;;;60254:77;60641:1;60629:8;:13;60625:45;;;60651:19;;;;;;;;;;;;;;60625:45;60703:3;60687:13;:19;;;;58256:2462;;60728:60;60757:1;60761:2;60765:12;60779:8;60728:20;:60::i;:::-;57892:2904;57830:2966;;:::o;10982:268::-;11050:13;11157:1;11151:4;11144:15;11186:1;11180:4;11173:15;11227:4;11221;11211:21;11202:30;;10982:268;;;;:::o;45242:324::-;45312:14;45545:1;45535:8;45532:15;45506:24;45502:46;45492:56;;45242:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::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:117::-;1627:1;1624;1617:12;1641:102;1682:6;1733:2;1729:7;1724:2;1717:5;1713:14;1709:28;1699:38;;1641:102;;;:::o;1749:180::-;1797:77;1794:1;1787:88;1894:4;1891:1;1884:15;1918:4;1915:1;1908:15;1935:281;2018:27;2040:4;2018:27;:::i;:::-;2010:6;2006:40;2148:6;2136:10;2133:22;2112:18;2100:10;2097:34;2094:62;2091:88;;;2159:18;;:::i;:::-;2091:88;2199:10;2195:2;2188:22;1978:238;1935:281;;:::o;2222:129::-;2256:6;2283:20;;:::i;:::-;2273:30;;2312:33;2340:4;2332:6;2312:33;:::i;:::-;2222:129;;;:::o;2357:311::-;2434:4;2524:18;2516:6;2513:30;2510:56;;;2546:18;;:::i;:::-;2510:56;2596:4;2588:6;2584:17;2576:25;;2656:4;2650;2646:15;2638:23;;2357:311;;;:::o;2674:117::-;2783:1;2780;2773:12;2797:77;2834:7;2863:5;2852:16;;2797:77;;;:::o;2880:122::-;2953:24;2971:5;2953:24;:::i;:::-;2946:5;2943:35;2933:63;;2992:1;2989;2982:12;2933:63;2880:122;:::o;3008:139::-;3054:5;3092:6;3079:20;3070:29;;3108:33;3135:5;3108:33;:::i;:::-;3008:139;;;;:::o;3170:710::-;3266:5;3291:81;3307:64;3364:6;3307:64;:::i;:::-;3291:81;:::i;:::-;3282:90;;3392:5;3421:6;3414:5;3407:21;3455:4;3448:5;3444:16;3437:23;;3508:4;3500:6;3496:17;3488:6;3484:30;3537:3;3529:6;3526:15;3523:122;;;3556:79;;:::i;:::-;3523:122;3671:6;3654:220;3688:6;3683:3;3680:15;3654:220;;;3763:3;3792:37;3825:3;3813:10;3792:37;:::i;:::-;3787:3;3780:50;3859:4;3854:3;3850:14;3843:21;;3730:144;3714:4;3709:3;3705:14;3698:21;;3654:220;;;3658:21;3272:608;;3170:710;;;;;:::o;3903:370::-;3974:5;4023:3;4016:4;4008:6;4004:17;4000:27;3990:122;;4031:79;;:::i;:::-;3990:122;4148:6;4135:20;4173:94;4263:3;4255:6;4248:4;4240:6;4236:17;4173:94;:::i;:::-;4164:103;;3980:293;3903:370;;;;:::o;4279:539::-;4363:6;4412:2;4400:9;4391:7;4387:23;4383:32;4380:119;;;4418:79;;:::i;:::-;4380:119;4566:1;4555:9;4551:17;4538:31;4596:18;4588:6;4585:30;4582:117;;;4618:79;;:::i;:::-;4582:117;4723:78;4793:7;4784:6;4773:9;4769:22;4723:78;:::i;:::-;4713:88;;4509:302;4279:539;;;;:::o;4824:99::-;4876:6;4910:5;4904:12;4894:22;;4824:99;;;:::o;4929:169::-;5013:11;5047:6;5042:3;5035:19;5087:4;5082:3;5078:14;5063:29;;4929:169;;;;:::o;5104:307::-;5172:1;5182:113;5196:6;5193:1;5190:13;5182:113;;;5281:1;5276:3;5272:11;5266:18;5262:1;5257:3;5253:11;5246:39;5218:2;5215:1;5211:10;5206:15;;5182:113;;;5313:6;5310:1;5307:13;5304:101;;;5393:1;5384:6;5379:3;5375:16;5368:27;5304:101;5153:258;5104:307;;;:::o;5417:364::-;5505:3;5533:39;5566:5;5533:39;:::i;:::-;5588:71;5652:6;5647:3;5588:71;:::i;:::-;5581:78;;5668:52;5713:6;5708:3;5701:4;5694:5;5690:16;5668:52;:::i;:::-;5745:29;5767:6;5745:29;:::i;:::-;5740:3;5736:39;5729:46;;5509:272;5417:364;;;;:::o;5787:313::-;5900:4;5938:2;5927:9;5923:18;5915:26;;5987:9;5981:4;5977:20;5973:1;5962:9;5958:17;5951:47;6015:78;6088:4;6079:6;6015:78;:::i;:::-;6007:86;;5787:313;;;;:::o;6106:77::-;6143:7;6172:5;6161:16;;6106:77;;;:::o;6189:122::-;6262:24;6280:5;6262:24;:::i;:::-;6255:5;6252:35;6242:63;;6301:1;6298;6291:12;6242:63;6189:122;:::o;6317:139::-;6363:5;6401:6;6388:20;6379:29;;6417:33;6444:5;6417:33;:::i;:::-;6317:139;;;;:::o;6462:329::-;6521:6;6570:2;6558:9;6549:7;6545:23;6541:32;6538:119;;;6576:79;;:::i;:::-;6538:119;6696:1;6721:53;6766:7;6757:6;6746:9;6742:22;6721:53;:::i;:::-;6711:63;;6667:117;6462:329;;;;:::o;6797:126::-;6834:7;6874:42;6867:5;6863:54;6852:65;;6797:126;;;:::o;6929:96::-;6966:7;6995:24;7013:5;6995:24;:::i;:::-;6984:35;;6929:96;;;:::o;7031:118::-;7118:24;7136:5;7118:24;:::i;:::-;7113:3;7106:37;7031:118;;:::o;7155:222::-;7248:4;7286:2;7275:9;7271:18;7263:26;;7299:71;7367:1;7356:9;7352:17;7343:6;7299:71;:::i;:::-;7155:222;;;;:::o;7383:122::-;7456:24;7474:5;7456:24;:::i;:::-;7449:5;7446:35;7436:63;;7495:1;7492;7485:12;7436:63;7383:122;:::o;7511:139::-;7557:5;7595:6;7582:20;7573:29;;7611:33;7638:5;7611:33;:::i;:::-;7511:139;;;;:::o;7656:474::-;7724:6;7732;7781:2;7769:9;7760:7;7756:23;7752:32;7749:119;;;7787:79;;:::i;:::-;7749:119;7907:1;7932:53;7977:7;7968:6;7957:9;7953:22;7932:53;:::i;:::-;7922:63;;7878:117;8034:2;8060:53;8105:7;8096:6;8085:9;8081:22;8060:53;:::i;:::-;8050:63;;8005:118;7656:474;;;;;:::o;8136:118::-;8223:24;8241:5;8223:24;:::i;:::-;8218:3;8211:37;8136:118;;:::o;8260:222::-;8353:4;8391:2;8380:9;8376:18;8368:26;;8404:71;8472:1;8461:9;8457:17;8448:6;8404:71;:::i;:::-;8260:222;;;;:::o;8488:118::-;8575:24;8593:5;8575:24;:::i;:::-;8570:3;8563:37;8488:118;;:::o;8612:222::-;8705:4;8743:2;8732:9;8728:18;8720:26;;8756:71;8824:1;8813:9;8809:17;8800:6;8756:71;:::i;:::-;8612:222;;;;:::o;8840:619::-;8917:6;8925;8933;8982:2;8970:9;8961:7;8957:23;8953:32;8950:119;;;8988:79;;:::i;:::-;8950:119;9108:1;9133:53;9178:7;9169:6;9158:9;9154:22;9133:53;:::i;:::-;9123:63;;9079:117;9235:2;9261:53;9306:7;9297:6;9286:9;9282:22;9261:53;:::i;:::-;9251:63;;9206:118;9363:2;9389:53;9434:7;9425:6;9414:9;9410:22;9389:53;:::i;:::-;9379:63;;9334:118;8840:619;;;;;:::o;9465:117::-;9574:1;9571;9564:12;9604:567;9676:8;9686:6;9736:3;9729:4;9721:6;9717:17;9713:27;9703:122;;9744:79;;:::i;:::-;9703:122;9857:6;9844:20;9834:30;;9887:18;9879:6;9876:30;9873:117;;;9909:79;;:::i;:::-;9873:117;10023:4;10015:6;10011:17;9999:29;;10077:3;10069:4;10061:6;10057:17;10047:8;10043:32;10040:41;10037:128;;;10084:79;;:::i;:::-;10037:128;9604:567;;;;;:::o;10177:557::-;10262:6;10270;10319:2;10307:9;10298:7;10294:23;10290:32;10287:119;;;10325:79;;:::i;:::-;10287:119;10473:1;10462:9;10458:17;10445:31;10503:18;10495:6;10492:30;10489:117;;;10525:79;;:::i;:::-;10489:117;10638:79;10709:7;10700:6;10689:9;10685:22;10638:79;:::i;:::-;10620:97;;;;10416:311;10177:557;;;;;:::o;10740:474::-;10808:6;10816;10865:2;10853:9;10844:7;10840:23;10836:32;10833:119;;;10871:79;;:::i;:::-;10833:119;10991:1;11016:53;11061:7;11052:6;11041:9;11037:22;11016:53;:::i;:::-;11006:63;;10962:117;11118:2;11144:53;11189:7;11180:6;11169:9;11165:22;11144:53;:::i;:::-;11134:63;;11089:118;10740:474;;;;;:::o;11220:332::-;11341:4;11379:2;11368:9;11364:18;11356:26;;11392:71;11460:1;11449:9;11445:17;11436:6;11392:71;:::i;:::-;11473:72;11541:2;11530:9;11526:18;11517:6;11473:72;:::i;:::-;11220:332;;;;;:::o;11558:122::-;11654:1;11647:5;11644:12;11634:40;;11670:1;11667;11660:12;11634:40;11558:122;:::o;11686:185::-;11755:5;11793:6;11780:20;11771:29;;11809:56;11859:5;11809:56;:::i;:::-;11686:185;;;;:::o;11877:375::-;11959:6;12008:2;11996:9;11987:7;11983:23;11979:32;11976:119;;;12014:79;;:::i;:::-;11976:119;12134:1;12159:76;12227:7;12218:6;12207:9;12203:22;12159:76;:::i;:::-;12149:86;;12105:140;11877:375;;;;:::o;12258:89::-;12294:7;12334:6;12327:5;12323:18;12312:29;;12258:89;;;:::o;12353:120::-;12425:23;12442:5;12425:23;:::i;:::-;12418:5;12415:34;12405:62;;12463:1;12460;12453:12;12405:62;12353:120;:::o;12479:137::-;12524:5;12562:6;12549:20;12540:29;;12578:32;12604:5;12578:32;:::i;:::-;12479:137;;;;:::o;12622:472::-;12689:6;12697;12746:2;12734:9;12725:7;12721:23;12717:32;12714:119;;;12752:79;;:::i;:::-;12714:119;12872:1;12897:53;12942:7;12933:6;12922:9;12918:22;12897:53;:::i;:::-;12887:63;;12843:117;12999:2;13025:52;13069:7;13060:6;13049:9;13045:22;13025:52;:::i;:::-;13015:62;;12970:117;12622:472;;;;;:::o;13100:327::-;13158:6;13207:2;13195:9;13186:7;13182:23;13178:32;13175:119;;;13213:79;;:::i;:::-;13175:119;13333:1;13358:52;13402:7;13393:6;13382:9;13378:22;13358:52;:::i;:::-;13348:62;;13304:116;13100:327;;;;:::o;13433:117::-;13542:1;13539;13532:12;13556:308;13618:4;13708:18;13700:6;13697:30;13694:56;;;13730:18;;:::i;:::-;13694:56;13768:29;13790:6;13768:29;:::i;:::-;13760:37;;13852:4;13846;13842:15;13834:23;;13556:308;;;:::o;13870:154::-;13954:6;13949:3;13944;13931:30;14016:1;14007:6;14002:3;13998:16;13991:27;13870:154;;;:::o;14030:412::-;14108:5;14133:66;14149:49;14191:6;14149:49;:::i;:::-;14133:66;:::i;:::-;14124:75;;14222:6;14215:5;14208:21;14260:4;14253:5;14249:16;14298:3;14289:6;14284:3;14280:16;14277:25;14274:112;;;14305:79;;:::i;:::-;14274:112;14395:41;14429:6;14424:3;14419;14395:41;:::i;:::-;14114:328;14030:412;;;;;:::o;14462:340::-;14518:5;14567:3;14560:4;14552:6;14548:17;14544:27;14534:122;;14575:79;;:::i;:::-;14534:122;14692:6;14679:20;14717:79;14792:3;14784:6;14777:4;14769:6;14765:17;14717:79;:::i;:::-;14708:88;;14524:278;14462:340;;;;:::o;14808:509::-;14877:6;14926:2;14914:9;14905:7;14901:23;14897:32;14894:119;;;14932:79;;:::i;:::-;14894:119;15080:1;15069:9;15065:17;15052:31;15110:18;15102:6;15099:30;15096:117;;;15132:79;;:::i;:::-;15096:117;15237:63;15292:7;15283:6;15272:9;15268:22;15237:63;:::i;:::-;15227:73;;15023:287;14808:509;;;;:::o;15323:329::-;15382:6;15431:2;15419:9;15410:7;15406:23;15402:32;15399:119;;;15437:79;;:::i;:::-;15399:119;15557:1;15582:53;15627:7;15618:6;15607:9;15603:22;15582:53;:::i;:::-;15572:63;;15528:117;15323:329;;;;:::o;15658:::-;15717:6;15766:2;15754:9;15745:7;15741:23;15737:32;15734:119;;;15772:79;;:::i;:::-;15734:119;15892:1;15917:53;15962:7;15953:6;15942:9;15938:22;15917:53;:::i;:::-;15907:63;;15863:117;15658:329;;;;:::o;15993:116::-;16063:21;16078:5;16063:21;:::i;:::-;16056:5;16053:32;16043:60;;16099:1;16096;16089:12;16043:60;15993:116;:::o;16115:133::-;16158:5;16196:6;16183:20;16174:29;;16212:30;16236:5;16212:30;:::i;:::-;16115:133;;;;:::o;16254:468::-;16319:6;16327;16376:2;16364:9;16355:7;16351:23;16347:32;16344:119;;;16382:79;;:::i;:::-;16344:119;16502:1;16527:53;16572:7;16563:6;16552:9;16548:22;16527:53;:::i;:::-;16517:63;;16473:117;16629:2;16655:50;16697:7;16688:6;16677:9;16673:22;16655:50;:::i;:::-;16645:60;;16600:115;16254:468;;;;;:::o;16728:682::-;16820:6;16828;16877:2;16865:9;16856:7;16852:23;16848:32;16845:119;;;16883:79;;:::i;:::-;16845:119;17003:1;17028:52;17072:7;17063:6;17052:9;17048:22;17028:52;:::i;:::-;17018:62;;16974:116;17157:2;17146:9;17142:18;17129:32;17188:18;17180:6;17177:30;17174:117;;;17210:79;;:::i;:::-;17174:117;17315:78;17385:7;17376:6;17365:9;17361:22;17315:78;:::i;:::-;17305:88;;17100:303;16728:682;;;;;:::o;17416:307::-;17477:4;17567:18;17559:6;17556:30;17553:56;;;17589:18;;:::i;:::-;17553:56;17627:29;17649:6;17627:29;:::i;:::-;17619:37;;17711:4;17705;17701:15;17693:23;;17416:307;;;:::o;17729:410::-;17806:5;17831:65;17847:48;17888:6;17847:48;:::i;:::-;17831:65;:::i;:::-;17822:74;;17919:6;17912:5;17905:21;17957:4;17950:5;17946:16;17995:3;17986:6;17981:3;17977:16;17974:25;17971:112;;;18002:79;;:::i;:::-;17971:112;18092:41;18126:6;18121:3;18116;18092:41;:::i;:::-;17812:327;17729:410;;;;;:::o;18158:338::-;18213:5;18262:3;18255:4;18247:6;18243:17;18239:27;18229:122;;18270:79;;:::i;:::-;18229:122;18387:6;18374:20;18412:78;18486:3;18478:6;18471:4;18463:6;18459:17;18412:78;:::i;:::-;18403:87;;18219:277;18158:338;;;;:::o;18502:943::-;18597:6;18605;18613;18621;18670:3;18658:9;18649:7;18645:23;18641:33;18638:120;;;18677:79;;:::i;:::-;18638:120;18797:1;18822:53;18867:7;18858:6;18847:9;18843:22;18822:53;:::i;:::-;18812:63;;18768:117;18924:2;18950:53;18995:7;18986:6;18975:9;18971:22;18950:53;:::i;:::-;18940:63;;18895:118;19052:2;19078:53;19123:7;19114:6;19103:9;19099:22;19078:53;:::i;:::-;19068:63;;19023:118;19208:2;19197:9;19193:18;19180:32;19239:18;19231:6;19228:30;19225:117;;;19261:79;;:::i;:::-;19225:117;19366:62;19420:7;19411:6;19400:9;19396:22;19366:62;:::i;:::-;19356:72;;19151:287;18502:943;;;;;;;:::o;19451:180::-;19499:77;19496:1;19489:88;19596:4;19593:1;19586:15;19620:4;19617:1;19610:15;19637:128;19733:1;19726:5;19723:12;19713:46;;19739:18;;:::i;:::-;19713:46;19637:128;:::o;19771:157::-;19831:7;19860:5;19849:16;;19866:56;19916:5;19866:56;:::i;:::-;19771:157;;;:::o;19934:::-;20005:9;20038:47;20079:5;20038:47;:::i;:::-;20025:60;;19934:157;;;:::o;20097:173::-;20205:58;20257:5;20205:58;:::i;:::-;20200:3;20193:71;20097:173;;:::o;20276:264::-;20390:4;20428:2;20417:9;20413:18;20405:26;;20441:92;20530:1;20519:9;20515:17;20506:6;20441:92;:::i;:::-;20276:264;;;;:::o;20546:113::-;20612:6;20646:5;20640:12;20630:22;;20546:113;;;:::o;20665:183::-;20763:11;20797:6;20792:3;20785:19;20837:4;20832:3;20828:14;20813:29;;20665:183;;;;:::o;20854:131::-;20920:4;20943:3;20935:11;;20973:4;20968:3;20964:14;20956:22;;20854:131;;;:::o;20991:105::-;21066:23;21083:5;21066:23;:::i;:::-;21061:3;21054:36;20991:105;;:::o;21102:175::-;21169:10;21190:44;21230:3;21222:6;21190:44;:::i;:::-;21266:4;21261:3;21257:14;21243:28;;21102:175;;;;:::o;21283:112::-;21352:4;21384;21379:3;21375:14;21367:22;;21283:112;;;:::o;21429:724::-;21546:3;21575:53;21622:5;21575:53;:::i;:::-;21644:85;21722:6;21717:3;21644:85;:::i;:::-;21637:92;;21753:55;21802:5;21753:55;:::i;:::-;21831:7;21862:1;21847:281;21872:6;21869:1;21866:13;21847:281;;;21948:6;21942:13;21975:61;22032:3;22017:13;21975:61;:::i;:::-;21968:68;;22059:59;22111:6;22059:59;:::i;:::-;22049:69;;21907:221;21894:1;21891;21887:9;21882:14;;21847:281;;;21851:14;22144:3;22137:10;;21551:602;;;21429:724;;;;:::o;22159:369::-;22300:4;22338:2;22327:9;22323:18;22315:26;;22387:9;22381:4;22377:20;22373:1;22362:9;22358:17;22351:47;22415:106;22516:4;22507:6;22415:106;:::i;:::-;22407:114;;22159:369;;;;:::o;22534:474::-;22602:6;22610;22659:2;22647:9;22638:7;22634:23;22630:32;22627:119;;;22665:79;;:::i;:::-;22627:119;22785:1;22810:53;22855:7;22846:6;22835:9;22831:22;22810:53;:::i;:::-;22800:63;;22756:117;22912:2;22938:53;22983:7;22974:6;22963:9;22959:22;22938:53;:::i;:::-;22928:63;;22883:118;22534:474;;;;;:::o;23014:94::-;23047:8;23095:5;23091:2;23087:14;23066:35;;23014:94;;;:::o;23114:::-;23153:7;23182:20;23196:5;23182:20;:::i;:::-;23171:31;;23114:94;;;:::o;23214:100::-;23253:7;23282:26;23302:5;23282:26;:::i;:::-;23271:37;;23214:100;;;:::o;23320:157::-;23425:45;23445:24;23463:5;23445:24;:::i;:::-;23425:45;:::i;:::-;23420:3;23413:58;23320:157;;:::o;23483:256::-;23595:3;23610:75;23681:3;23672:6;23610:75;:::i;:::-;23710:2;23705:3;23701:12;23694:19;;23730:3;23723:10;;23483:256;;;;:::o;23745:180::-;23793:77;23790:1;23783:88;23890:4;23887:1;23880:15;23914:4;23911:1;23904:15;23931:320;23975:6;24012:1;24006:4;24002:12;23992:22;;24059:1;24053:4;24049:12;24080:18;24070:81;;24136:4;24128:6;24124:17;24114:27;;24070:81;24198:2;24190:6;24187:14;24167:18;24164:38;24161:84;;;24217:18;;:::i;:::-;24161:84;23982:269;23931:320;;;:::o;24257:181::-;24397:33;24393:1;24385:6;24381:14;24374:57;24257:181;:::o;24444:366::-;24586:3;24607:67;24671:2;24666:3;24607:67;:::i;:::-;24600:74;;24683:93;24772:3;24683:93;:::i;:::-;24801:2;24796:3;24792:12;24785:19;;24444:366;;;:::o;24816:419::-;24982:4;25020:2;25009:9;25005:18;24997:26;;25069:9;25063:4;25059:20;25055:1;25044:9;25040:17;25033:47;25097:131;25223:4;25097:131;:::i;:::-;25089:139;;24816:419;;;:::o;25241:143::-;25298:5;25329:6;25323:13;25314:22;;25345:33;25372:5;25345:33;:::i;:::-;25241:143;;;;:::o;25390:351::-;25460:6;25509:2;25497:9;25488:7;25484:23;25480:32;25477:119;;;25515:79;;:::i;:::-;25477:119;25635:1;25660:64;25716:7;25707:6;25696:9;25692:22;25660:64;:::i;:::-;25650:74;;25606:128;25390:351;;;;:::o;25747:220::-;25887:34;25883:1;25875:6;25871:14;25864:58;25956:3;25951:2;25943:6;25939:15;25932:28;25747:220;:::o;25973:366::-;26115:3;26136:67;26200:2;26195:3;26136:67;:::i;:::-;26129:74;;26212:93;26301:3;26212:93;:::i;:::-;26330:2;26325:3;26321:12;26314:19;;25973:366;;;:::o;26345:419::-;26511:4;26549:2;26538:9;26534:18;26526:26;;26598:9;26592:4;26588:20;26584:1;26573:9;26569:17;26562:47;26626:131;26752:4;26626:131;:::i;:::-;26618:139;;26345:419;;;:::o;26770:170::-;26910:22;26906:1;26898:6;26894:14;26887:46;26770:170;:::o;26946:366::-;27088:3;27109:67;27173:2;27168:3;27109:67;:::i;:::-;27102:74;;27185:93;27274:3;27185:93;:::i;:::-;27303:2;27298:3;27294:12;27287:19;;26946:366;;;:::o;27318:419::-;27484:4;27522:2;27511:9;27507:18;27499:26;;27571:9;27565:4;27561:20;27557:1;27546:9;27542:17;27535:47;27599:131;27725:4;27599:131;:::i;:::-;27591:139;;27318:419;;;:::o;27743:162::-;27883:14;27879:1;27871:6;27867:14;27860:38;27743:162;:::o;27911:366::-;28053:3;28074:67;28138:2;28133:3;28074:67;:::i;:::-;28067:74;;28150:93;28239:3;28150:93;:::i;:::-;28268:2;28263:3;28259:12;28252:19;;27911:366;;;:::o;28283:419::-;28449:4;28487:2;28476:9;28472:18;28464:26;;28536:9;28530:4;28526:20;28522:1;28511:9;28507:17;28500:47;28564:131;28690:4;28564:131;:::i;:::-;28556:139;;28283:419;;;:::o;28708:180::-;28756:77;28753:1;28746:88;28853:4;28850:1;28843:15;28877:4;28874:1;28867:15;28894:60;28922:3;28943:5;28936:12;;28894:60;;;:::o;28960:140::-;29009:9;29042:52;29060:33;29069:23;29086:5;29069:23;:::i;:::-;29060:33;:::i;:::-;29042:52;:::i;:::-;29029:65;;28960:140;;;:::o;29106:129::-;29192:36;29222:5;29192:36;:::i;:::-;29187:3;29180:49;29106:129;;:::o;29241:220::-;29333:4;29371:2;29360:9;29356:18;29348:26;;29384:70;29451:1;29440:9;29436:17;29427:6;29384:70;:::i;:::-;29241:220;;;;:::o;29467:143::-;29524:5;29555:6;29549:13;29540:22;;29571:33;29598:5;29571:33;:::i;:::-;29467:143;;;;:::o;29616:351::-;29686:6;29735:2;29723:9;29714:7;29710:23;29706:32;29703:119;;;29741:79;;:::i;:::-;29703:119;29861:1;29886:64;29942:7;29933:6;29922:9;29918:22;29886:64;:::i;:::-;29876:74;;29832:128;29616:351;;;;:::o;29973:180::-;30021:77;30018:1;30011:88;30118:4;30115:1;30108:15;30142:4;30139:1;30132:15;30159:171;30197:3;30220:23;30237:5;30220:23;:::i;:::-;30211:32;;30265:6;30258:5;30255:17;30252:43;;;30275:18;;:::i;:::-;30252:43;30322:1;30315:5;30311:13;30304:20;;30159:171;;;:::o;30336:168::-;30476:20;30472:1;30464:6;30460:14;30453:44;30336:168;:::o;30510:366::-;30652:3;30673:67;30737:2;30732:3;30673:67;:::i;:::-;30666:74;;30749:93;30838:3;30749:93;:::i;:::-;30867:2;30862:3;30858:12;30851:19;;30510:366;;;:::o;30882:419::-;31048:4;31086:2;31075:9;31071:18;31063:26;;31135:9;31129:4;31125:20;31121:1;31110:9;31106:17;31099:47;31163:131;31289:4;31163:131;:::i;:::-;31155:139;;30882:419;;;:::o;31307:348::-;31347:7;31370:20;31388:1;31370:20;:::i;:::-;31365:25;;31404:20;31422:1;31404:20;:::i;:::-;31399:25;;31592:1;31524:66;31520:74;31517:1;31514:81;31509:1;31502:9;31495:17;31491:105;31488:131;;;31599:18;;:::i;:::-;31488:131;31647:1;31644;31640:9;31629:20;;31307:348;;;;:::o;31661:180::-;31709:77;31706:1;31699:88;31806:4;31803:1;31796:15;31830:4;31827:1;31820:15;31847:185;31887:1;31904:20;31922:1;31904:20;:::i;:::-;31899:25;;31938:20;31956:1;31938:20;:::i;:::-;31933:25;;31977:1;31967:35;;31982:18;;:::i;:::-;31967:35;32024:1;32021;32017:9;32012:14;;31847:185;;;;:::o;32038:162::-;32178:14;32174:1;32166:6;32162:14;32155:38;32038:162;:::o;32206:366::-;32348:3;32369:67;32433:2;32428:3;32369:67;:::i;:::-;32362:74;;32445:93;32534:3;32445:93;:::i;:::-;32563:2;32558:3;32554:12;32547:19;;32206:366;;;:::o;32578:419::-;32744:4;32782:2;32771:9;32767:18;32759:26;;32831:9;32825:4;32821:20;32817:1;32806:9;32802:17;32795:47;32859:131;32985:4;32859:131;:::i;:::-;32851:139;;32578:419;;;:::o;33003:147::-;33104:11;33141:3;33126:18;;33003:147;;;;:::o;33156:114::-;;:::o;33276:398::-;33435:3;33456:83;33537:1;33532:3;33456:83;:::i;:::-;33449:90;;33548:93;33637:3;33548:93;:::i;:::-;33666:1;33661:3;33657:11;33650:18;;33276:398;;;:::o;33680:379::-;33864:3;33886:147;34029:3;33886:147;:::i;:::-;33879:154;;34050:3;34043:10;;33680:379;;;:::o;34065:166::-;34205:18;34201:1;34193:6;34189:14;34182:42;34065:166;:::o;34237:366::-;34379:3;34400:67;34464:2;34459:3;34400:67;:::i;:::-;34393:74;;34476:93;34565:3;34476:93;:::i;:::-;34594:2;34589:3;34585:12;34578:19;;34237:366;;;:::o;34609:419::-;34775:4;34813:2;34802:9;34798:18;34790:26;;34862:9;34856:4;34852:20;34848:1;34837:9;34833:17;34826:47;34890:131;35016:4;34890:131;:::i;:::-;34882:139;;34609:419;;;:::o;35034:305::-;35074:3;35093:20;35111:1;35093:20;:::i;:::-;35088:25;;35127:20;35145:1;35127:20;:::i;:::-;35122:25;;35281:1;35213:66;35209:74;35206:1;35203:81;35200:107;;;35287:18;;:::i;:::-;35200:107;35331:1;35328;35324:9;35317:16;;35034:305;;;;:::o;35345:168::-;35485:20;35481:1;35473:6;35469:14;35462:44;35345:168;:::o;35519:366::-;35661:3;35682:67;35746:2;35741:3;35682:67;:::i;:::-;35675:74;;35758:93;35847:3;35758:93;:::i;:::-;35876:2;35871:3;35867:12;35860:19;;35519:366;;;:::o;35891:419::-;36057:4;36095:2;36084:9;36080:18;36072:26;;36144:9;36138:4;36134:20;36130:1;36119:9;36115:17;36108:47;36172:131;36298:4;36172:131;:::i;:::-;36164:139;;35891:419;;;:::o;36316:182::-;36355:1;36372:19;36389:1;36372:19;:::i;:::-;36367:24;;36405:19;36422:1;36405:19;:::i;:::-;36400:24;;36443:1;36433:35;;36448:18;;:::i;:::-;36433:35;36490:1;36487;36483:9;36478:14;;36316:182;;;;:::o;36504:173::-;36535:1;36552:19;36569:1;36552:19;:::i;:::-;36547:24;;36585:19;36602:1;36585:19;:::i;:::-;36580:24;;36623:1;36613:35;;36628:18;;:::i;:::-;36613:35;36669:1;36666;36662:9;36657:14;;36504:173;;;;:::o;36683:167::-;36823:19;36819:1;36811:6;36807:14;36800:43;36683:167;:::o;36856:366::-;36998:3;37019:67;37083:2;37078:3;37019:67;:::i;:::-;37012:74;;37095:93;37184:3;37095:93;:::i;:::-;37213:2;37208:3;37204:12;37197:19;;36856:366;;;:::o;37228:419::-;37394:4;37432:2;37421:9;37417:18;37409:26;;37481:9;37475:4;37471:20;37467:1;37456:9;37452:17;37445:47;37509:131;37635:4;37509:131;:::i;:::-;37501:139;;37228:419;;;:::o;37653:168::-;37793:20;37789:1;37781:6;37777:14;37770:44;37653:168;:::o;37827:366::-;37969:3;37990:67;38054:2;38049:3;37990:67;:::i;:::-;37983:74;;38066:93;38155:3;38066:93;:::i;:::-;38184:2;38179:3;38175:12;38168:19;;37827:366;;;:::o;38199:419::-;38365:4;38403:2;38392:9;38388:18;38380:26;;38452:9;38446:4;38442:20;38438:1;38427:9;38423:17;38416:47;38480:131;38606:4;38480:131;:::i;:::-;38472:139;;38199:419;;;:::o;38624:177::-;38764:29;38760:1;38752:6;38748:14;38741:53;38624:177;:::o;38807:366::-;38949:3;38970:67;39034:2;39029:3;38970:67;:::i;:::-;38963:74;;39046:93;39135:3;39046:93;:::i;:::-;39164:2;39159:3;39155:12;39148:19;;38807:366;;;:::o;39179:419::-;39345:4;39383:2;39372:9;39368:18;39360:26;;39432:9;39426:4;39422:20;39418:1;39407:9;39403:17;39396:47;39460:131;39586:4;39460:131;:::i;:::-;39452:139;;39179:419;;;:::o;39604:220::-;39744:34;39740:1;39732:6;39728:14;39721:58;39813:3;39808:2;39800:6;39796:15;39789:28;39604:220;:::o;39830:366::-;39972:3;39993:67;40057:2;40052:3;39993:67;:::i;:::-;39986:74;;40069:93;40158:3;40069:93;:::i;:::-;40187:2;40182:3;40178:12;40171:19;;39830:366;;;:::o;40202:419::-;40368:4;40406:2;40395:9;40391:18;40383:26;;40455:9;40449:4;40445:20;40441:1;40430:9;40426:17;40419:47;40483:131;40609:4;40483:131;:::i;:::-;40475:139;;40202:419;;;:::o;40627:171::-;40767:23;40763:1;40755:6;40751:14;40744:47;40627:171;:::o;40804:366::-;40946:3;40967:67;41031:2;41026:3;40967:67;:::i;:::-;40960:74;;41043:93;41132:3;41043:93;:::i;:::-;41161:2;41156:3;41152:12;41145:19;;40804:366;;;:::o;41176:419::-;41342:4;41380:2;41369:9;41365:18;41357:26;;41429:9;41423:4;41419:20;41415:1;41404:9;41400:17;41393:47;41457:131;41583:4;41457:131;:::i;:::-;41449:139;;41176:419;;;:::o;41601:163::-;41741:15;41737:1;41729:6;41725:14;41718:39;41601:163;:::o;41770:366::-;41912:3;41933:67;41997:2;41992:3;41933:67;:::i;:::-;41926:74;;42009:93;42098:3;42009:93;:::i;:::-;42127:2;42122:3;42118:12;42111:19;;41770:366;;;:::o;42142:419::-;42308:4;42346:2;42335:9;42331:18;42323:26;;42395:9;42389:4;42385:20;42381:1;42370:9;42366:17;42359:47;42423:131;42549:4;42423:131;:::i;:::-;42415:139;;42142:419;;;:::o;42567:234::-;42707:34;42703:1;42695:6;42691:14;42684:58;42776:17;42771:2;42763:6;42759:15;42752:42;42567:234;:::o;42807:366::-;42949:3;42970:67;43034:2;43029:3;42970:67;:::i;:::-;42963:74;;43046:93;43135:3;43046:93;:::i;:::-;43164:2;43159:3;43155:12;43148:19;;42807:366;;;:::o;43179:419::-;43345:4;43383:2;43372:9;43368:18;43360:26;;43432:9;43426:4;43422:20;43418:1;43407:9;43403:17;43396:47;43460:131;43586:4;43460:131;:::i;:::-;43452:139;;43179:419;;;:::o;43604:148::-;43706:11;43743:3;43728:18;;43604:148;;;;:::o;43758:377::-;43864:3;43892:39;43925:5;43892:39;:::i;:::-;43947:89;44029:6;44024:3;43947:89;:::i;:::-;43940:96;;44045:52;44090:6;44085:3;44078:4;44071:5;44067:16;44045:52;:::i;:::-;44122:6;44117:3;44113:16;44106:23;;43868:267;43758:377;;;;:::o;44141:141::-;44190:4;44213:3;44205:11;;44236:3;44233:1;44226:14;44270:4;44267:1;44257:18;44249:26;;44141:141;;;:::o;44312:845::-;44415:3;44452:5;44446:12;44481:36;44507:9;44481:36;:::i;:::-;44533:89;44615:6;44610:3;44533:89;:::i;:::-;44526:96;;44653:1;44642:9;44638:17;44669:1;44664:137;;;;44815:1;44810:341;;;;44631:520;;44664:137;44748:4;44744:9;44733;44729:25;44724:3;44717:38;44784:6;44779:3;44775:16;44768:23;;44664:137;;44810:341;44877:38;44909:5;44877:38;:::i;:::-;44937:1;44951:154;44965:6;44962:1;44959:13;44951:154;;;45039:7;45033:14;45029:1;45024:3;45020:11;45013:35;45089:1;45080:7;45076:15;45065:26;;44987:4;44984:1;44980:12;44975:17;;44951:154;;;45134:6;45129:3;45125:16;45118:23;;44817:334;;44631:520;;44419:738;;44312:845;;;;:::o;45163:589::-;45388:3;45410:95;45501:3;45492:6;45410:95;:::i;:::-;45403:102;;45522:95;45613:3;45604:6;45522:95;:::i;:::-;45515:102;;45634:92;45722:3;45713:6;45634:92;:::i;:::-;45627:99;;45743:3;45736:10;;45163:589;;;;;;:::o;45758:191::-;45798:4;45818:20;45836:1;45818:20;:::i;:::-;45813:25;;45852:20;45870:1;45852:20;:::i;:::-;45847:25;;45891:1;45888;45885:8;45882:34;;;45896:18;;:::i;:::-;45882:34;45941:1;45938;45934:9;45926:17;;45758:191;;;;:::o;45955:225::-;46095:34;46091:1;46083:6;46079:14;46072:58;46164:8;46159:2;46151:6;46147:15;46140:33;45955:225;:::o;46186:366::-;46328:3;46349:67;46413:2;46408:3;46349:67;:::i;:::-;46342:74;;46425:93;46514:3;46425:93;:::i;:::-;46543:2;46538:3;46534:12;46527:19;;46186:366;;;:::o;46558:419::-;46724:4;46762:2;46751:9;46747:18;46739:26;;46811:9;46805:4;46801:20;46797:1;46786:9;46782:17;46775:47;46839:131;46965:4;46839:131;:::i;:::-;46831:139;;46558:419;;;:::o;46983:182::-;47123:34;47119:1;47111:6;47107:14;47100:58;46983:182;:::o;47171:366::-;47313:3;47334:67;47398:2;47393:3;47334:67;:::i;:::-;47327:74;;47410:93;47499:3;47410:93;:::i;:::-;47528:2;47523:3;47519:12;47512:19;;47171:366;;;:::o;47543:419::-;47709:4;47747:2;47736:9;47732:18;47724:26;;47796:9;47790:4;47786:20;47782:1;47771:9;47767:17;47760:47;47824:131;47950:4;47824:131;:::i;:::-;47816:139;;47543:419;;;:::o;47968:98::-;48019:6;48053:5;48047:12;48037:22;;47968:98;;;:::o;48072:168::-;48155:11;48189:6;48184:3;48177:19;48229:4;48224:3;48220:14;48205:29;;48072:168;;;;:::o;48246:360::-;48332:3;48360:38;48392:5;48360:38;:::i;:::-;48414:70;48477:6;48472:3;48414:70;:::i;:::-;48407:77;;48493:52;48538:6;48533:3;48526:4;48519:5;48515:16;48493:52;:::i;:::-;48570:29;48592:6;48570:29;:::i;:::-;48565:3;48561:39;48554:46;;48336:270;48246:360;;;;:::o;48612:640::-;48807:4;48845:3;48834:9;48830:19;48822:27;;48859:71;48927:1;48916:9;48912:17;48903:6;48859:71;:::i;:::-;48940:72;49008:2;48997:9;48993:18;48984:6;48940:72;:::i;:::-;49022;49090:2;49079:9;49075:18;49066:6;49022:72;:::i;:::-;49141:9;49135:4;49131:20;49126:2;49115:9;49111:18;49104:48;49169:76;49240:4;49231:6;49169:76;:::i;:::-;49161:84;;48612:640;;;;;;;:::o;49258:141::-;49314:5;49345:6;49339:13;49330:22;;49361:32;49387:5;49361:32;:::i;:::-;49258:141;;;;:::o;49405:349::-;49474:6;49523:2;49511:9;49502:7;49498:23;49494:32;49491:119;;;49529:79;;:::i;:::-;49491:119;49649:1;49674:63;49729:7;49720:6;49709:9;49705:22;49674:63;:::i;:::-;49664:73;;49620:127;49405:349;;;;:::o;49760:233::-;49799:3;49822:24;49840:5;49822:24;:::i;:::-;49813:33;;49868:66;49861:5;49858:77;49855:103;;;49938:18;;:::i;:::-;49855:103;49985:1;49978:5;49974:13;49967:20;;49760:233;;;:::o;49999:176::-;50031:1;50048:20;50066:1;50048:20;:::i;:::-;50043:25;;50082:20;50100:1;50082:20;:::i;:::-;50077:25;;50121:1;50111:35;;50126:18;;:::i;:::-;50111:35;50167:1;50164;50160:9;50155:14;;49999:176;;;;:::o

Swarm Source

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