ETH Price: $2,449.58 (-0.07%)
Gas: 3.67 Gwei

Token

Moody Mink Society (MINKS)
 

Overview

Max Total Supply

201 MINKS

Holders

107

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
twitterbae.eth
Balance
1 MINKS
0xdbed69db1e6e90d55d5b0982904c9290ef7d44fd
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:
MoodyMink

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

// SPDX-License-Identifier: MIT
// 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/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/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: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.2
// 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();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

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

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

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

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the
     * zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

    // =============================================================
    //                        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.2
// 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 {
    // Reference type for token approval.
    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 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 {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _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]`.
        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 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 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 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.
            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`.
                )

                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 0x80 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

            // 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: erc721a/contracts/extensions/IERC721AQueryable.sol


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

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721AQueryable.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *
     * - `addr = address(0)`
     * - `startTimestamp = 0`
     * - `burned = false`
     * - `extraData = 0`
     *
     * If the `tokenId` is burned:
     *
     * - `addr = <Address of owner before token was burned>`
     * - `startTimestamp = <Timestamp when token was burned>`
     * - `burned = true`
     * - `extraData = <Extra data when token was burned>`
     *
     * Otherwise:
     *
     * - `addr = <Address of owner>`
     * - `startTimestamp = <Timestamp of start of ownership>`
     * - `burned = false`
     * - `extraData = <Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

// File: erc721a/contracts/extensions/ERC721AQueryable.sol


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

pragma solidity ^0.8.4;



/**
 * @title ERC721AQueryable.
 *
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *
     * - `addr = address(0)`
     * - `startTimestamp = 0`
     * - `burned = false`
     * - `extraData = 0`
     *
     * If the `tokenId` is burned:
     *
     * - `addr = <Address of owner before token was burned>`
     * - `startTimestamp = <Timestamp when token was burned>`
     * - `burned = true`
     * - `extraData = <Extra data when token was burned>`
     *
     * Otherwise:
     *
     * - `addr = <Address of owner>`
     * - `startTimestamp = <Timestamp of start of ownership>`
     * - `burned = false`
     * - `extraData = <Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) public view virtual override returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
            return ownership;
        }
        ownership = _ownershipAt(tokenId);
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] calldata tokenIds)
        external
        view
        virtual
        override
        returns (TokenOwnership[] memory)
    {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view virtual override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _nextTokenId();
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, stopLimit)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner) external view virtual override returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}

// File: contracts/MoodyMink.sol



pragma solidity >=0.8.9 <0.9.0;






contract MoodyMink is ERC721AQueryable, Ownable, ReentrancyGuard {

    using Strings for uint256;

    bytes32 public merkleRoot;
    mapping(address => bool) public whitelistClaimed;

    string public uriPrefix = '';
    string public uriSuffix = '.json';
    string public hiddenMetadataUri;

    uint256 public cost = 0.04 ether;
    uint256 public maxSupply = 5555;
    uint256 public maxMintAmountPerTx = 5;

    bool public paused = true;
    bool public whitelistMintEnabled = false;

    constructor() ERC721A('Moody Mink Society', 'MINKS') {}

    modifier mintCompliance(uint256 _mintAmount) {
        require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
        require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
        _;
    }

    modifier mintPriceCompliance(uint256 _mintAmount) {
        require(msg.value >= cost * _mintAmount, 'Insufficient funds!');
        _;
    }

    function whitelistMint(uint256 _mintAmount, bytes32[] calldata _merkleProof) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
        // Verify whitelist requirements
        require(whitelistMintEnabled, 'The whitelist sale is not enabled!');
        require(!whitelistClaimed[_msgSender()], 'Address already claimed!');
        bytes32 leaf = keccak256(abi.encodePacked(_msgSender()));
        require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), 'Invalid proof!');

        whitelistClaimed[_msgSender()] = true;
        _safeMint(_msgSender(), _mintAmount);
    }

    function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
        require(!paused, 'The contract is paused!');

        _safeMint(_msgSender(), _mintAmount);
    }

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

    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, _tokenId.toString(), uriSuffix))
        : '';
    }

    function setCost(uint256 _cost) public onlyOwner {
        cost = _cost;
    }

    function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
        maxMintAmountPerTx = _maxMintAmountPerTx;
    }

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

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

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

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

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

    function setWhitelistMintEnabled(bool _state) public onlyOwner {
        whitelistMintEnabled = _state;
    }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistMintEnabled","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600c90805190602001906200002b9291906200028f565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d9080519060200190620000799291906200028f565b50668e1bc9bf040000600f556115b360105560056011556001601260006101000a81548160ff0219169083151502179055506000601260016101000a81548160ff021916908315150217905550348015620000d357600080fd5b506040518060400160405280601281526020017f4d6f6f6479204d696e6b20536f636965747900000000000000000000000000008152506040518060400160405280600581526020017f4d494e4b530000000000000000000000000000000000000000000000000000008152508160029080519060200190620001589291906200028f565b508060039080519060200190620001719291906200028f565b5062000182620001b860201b60201c565b6000819055505050620001aa6200019e620001c160201b60201c565b620001c960201b60201c565b6001600981905550620003a4565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200029d906200036e565b90600052602060002090601f016020900481019282620002c157600085556200030d565b82601f10620002dc57805160ff19168380011785556200030d565b828001600101855582156200030d579182015b828111156200030c578251825591602001919060010190620002ef565b5b5090506200031c919062000320565b5090565b5b808211156200033b57600081600090555060010162000321565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200038757607f821691505b602082108114156200039e576200039d6200033f565b5b50919050565b61457d80620003b46000396000f3fe60806040526004361061025c5760003560e01c8063715018a611610144578063b071401b116100b6578063d2cab0561161007a578063d2cab056146108e9578063d5abeb0114610905578063db4bec4414610930578063e985e9c51461096d578063efbd73f4146109aa578063f2fde38b146109d35761025c565b8063b071401b146107f4578063b767a0981461081d578063b88d4fde14610846578063c23dc68f1461086f578063c87b56dd146108ac5761025c565b806394354fd01161010857806394354fd0146106f157806395d89b411461071c57806399a2557a14610747578063a0712d6814610784578063a22cb465146107a0578063a45ba8e7146107c95761025c565b8063715018a6146106205780637cb64759146106375780637ec4a659146106605780638462151c146106895780638da5cb5b146106c65761025c565b80633ccfd60b116101dd5780635bbb2177116101a15780635bbb2177146104e85780635c975abb1461052557806362b99ad4146105505780636352211e1461057b5780636caede3d146105b857806370a08231146105e35761025c565b80633ccfd60b1461042b57806342842e0e1461044257806344a0d68a1461046b5780634fdd43cb146104945780635503a0e8146104bd5761025c565b806316ba10e01161022457806316ba10e01461035a57806316c38b3c1461038357806318160ddd146103ac57806323b872dd146103d75780632eb4a7ab146104005761025c565b806301ffc9a71461026157806306fdde031461029e578063081812fc146102c9578063095ea7b31461030657806313faede61461032f575b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190612f61565b6109fc565b6040516102959190612fa9565b60405180910390f35b3480156102aa57600080fd5b506102b3610a8e565b6040516102c0919061305d565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb91906130b5565b610b20565b6040516102fd9190613123565b60405180910390f35b34801561031257600080fd5b5061032d6004803603810190610328919061316a565b610b9f565b005b34801561033b57600080fd5b50610344610ce3565b60405161035191906131b9565b60405180910390f35b34801561036657600080fd5b50610381600480360381019061037c9190613309565b610ce9565b005b34801561038f57600080fd5b506103aa60048036038101906103a5919061337e565b610d0b565b005b3480156103b857600080fd5b506103c1610d30565b6040516103ce91906131b9565b60405180910390f35b3480156103e357600080fd5b506103fe60048036038101906103f991906133ab565b610d47565b005b34801561040c57600080fd5b5061041561106c565b6040516104229190613417565b60405180910390f35b34801561043757600080fd5b50610440611072565b005b34801561044e57600080fd5b50610469600480360381019061046491906133ab565b611150565b005b34801561047757600080fd5b50610492600480360381019061048d91906130b5565b611170565b005b3480156104a057600080fd5b506104bb60048036038101906104b69190613309565b611182565b005b3480156104c957600080fd5b506104d26111a4565b6040516104df919061305d565b60405180910390f35b3480156104f457600080fd5b5061050f600480360381019061050a9190613492565b611232565b60405161051c9190613642565b60405180910390f35b34801561053157600080fd5b5061053a6112f5565b6040516105479190612fa9565b60405180910390f35b34801561055c57600080fd5b50610565611308565b604051610572919061305d565b60405180910390f35b34801561058757600080fd5b506105a2600480360381019061059d91906130b5565b611396565b6040516105af9190613123565b60405180910390f35b3480156105c457600080fd5b506105cd6113a8565b6040516105da9190612fa9565b60405180910390f35b3480156105ef57600080fd5b5061060a60048036038101906106059190613664565b6113bb565b60405161061791906131b9565b60405180910390f35b34801561062c57600080fd5b50610635611474565b005b34801561064357600080fd5b5061065e600480360381019061065991906136bd565b611488565b005b34801561066c57600080fd5b5061068760048036038101906106829190613309565b61149a565b005b34801561069557600080fd5b506106b060048036038101906106ab9190613664565b6114bc565b6040516106bd91906137a8565b60405180910390f35b3480156106d257600080fd5b506106db611606565b6040516106e89190613123565b60405180910390f35b3480156106fd57600080fd5b50610706611630565b60405161071391906131b9565b60405180910390f35b34801561072857600080fd5b50610731611636565b60405161073e919061305d565b60405180910390f35b34801561075357600080fd5b5061076e600480360381019061076991906137ca565b6116c8565b60405161077b91906137a8565b60405180910390f35b61079e600480360381019061079991906130b5565b6118dc565b005b3480156107ac57600080fd5b506107c760048036038101906107c2919061381d565b611a3c565b005b3480156107d557600080fd5b506107de611bb4565b6040516107eb919061305d565b60405180910390f35b34801561080057600080fd5b5061081b600480360381019061081691906130b5565b611c42565b005b34801561082957600080fd5b50610844600480360381019061083f919061337e565b611c54565b005b34801561085257600080fd5b5061086d600480360381019061086891906138fe565b611c79565b005b34801561087b57600080fd5b50610896600480360381019061089191906130b5565b611cec565b6040516108a391906139d6565b60405180910390f35b3480156108b857600080fd5b506108d360048036038101906108ce91906130b5565b611d56565b6040516108e0919061305d565b60405180910390f35b61090360048036038101906108fe9190613a47565b611e00565b005b34801561091157600080fd5b5061091a612114565b60405161092791906131b9565b60405180910390f35b34801561093c57600080fd5b5061095760048036038101906109529190613664565b61211a565b6040516109649190612fa9565b60405180910390f35b34801561097957600080fd5b50610994600480360381019061098f9190613aa7565b61213a565b6040516109a19190612fa9565b60405180910390f35b3480156109b657600080fd5b506109d160048036038101906109cc9190613ae7565b6121ce565b005b3480156109df57600080fd5b506109fa60048036038101906109f59190613664565b61228e565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a5757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a875750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610a9d90613b56565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac990613b56565b8015610b165780601f10610aeb57610100808354040283529160200191610b16565b820191906000526020600020905b815481529060010190602001808311610af957829003601f168201915b5050505050905090565b6000610b2b82612312565b610b61576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610baa82611396565b90508073ffffffffffffffffffffffffffffffffffffffff16610bcb612371565b73ffffffffffffffffffffffffffffffffffffffff1614610c2e57610bf781610bf2612371565b61213a565b610c2d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600f5481565b610cf1612379565b80600d9080519060200190610d07929190612e03565b5050565b610d13612379565b80601260006101000a81548160ff02191690831515021790555050565b6000610d3a6123f7565b6001546000540303905090565b6000610d5282612400565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610db9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610dc5846124ce565b91509150610ddb8187610dd6612371565b6124f5565b610e2757610df086610deb612371565b61213a565b610e26576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610e8e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e9b8686866001612539565b8015610ea657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f7485610f5088888761253f565b7c020000000000000000000000000000000000000000000000000000000017612567565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610ffc576000600185019050600060046000838152602001908152602001600020541415610ffa576000548114610ff9578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110648686866001612592565b505050505050565b600a5481565b61107a612379565b600260095414156110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b790613bd4565b60405180910390fd5b600260098190555060006110d2611606565b73ffffffffffffffffffffffffffffffffffffffff16476040516110f590613c25565b60006040518083038185875af1925050503d8060008114611132576040519150601f19603f3d011682016040523d82523d6000602084013e611137565b606091505b505090508061114557600080fd5b506001600981905550565b61116b83838360405180602001604052806000815250611c79565b505050565b611178612379565b80600f8190555050565b61118a612379565b80600e90805190602001906111a0929190612e03565b5050565b600d80546111b190613b56565b80601f01602080910402602001604051908101604052809291908181526020018280546111dd90613b56565b801561122a5780601f106111ff5761010080835404028352916020019161122a565b820191906000526020600020905b81548152906001019060200180831161120d57829003601f168201915b505050505081565b6060600083839050905060008167ffffffffffffffff811115611258576112576131de565b5b60405190808252806020026020018201604052801561129157816020015b61127e612e89565b8152602001906001900390816112765790505b50905060005b8281146112e9576112c08686838181106112b4576112b3613c3a565b5b90506020020135611cec565b8282815181106112d3576112d2613c3a565b5b6020026020010181905250806001019050611297565b50809250505092915050565b601260009054906101000a900460ff1681565b600c805461131590613b56565b80601f016020809104026020016040519081016040528092919081815260200182805461134190613b56565b801561138e5780601f106113635761010080835404028352916020019161138e565b820191906000526020600020905b81548152906001019060200180831161137157829003601f168201915b505050505081565b60006113a182612400565b9050919050565b601260019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611423576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61147c612379565b6114866000612598565b565b611490612379565b80600a8190555050565b6114a2612379565b80600c90805190602001906114b8929190612e03565b5050565b606060008060006114cc856113bb565b905060008167ffffffffffffffff8111156114ea576114e96131de565b5b6040519080825280602002602001820160405280156115185781602001602082028036833780820191505090505b509050611523612e89565b600061152d6123f7565b90505b8386146115f8576115408161265e565b9150816040015115611551576115ed565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461159157816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156115ec57808387806001019850815181106115df576115de613c3a565b5b6020026020010181815250505b5b806001019050611530565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b60606003805461164590613b56565b80601f016020809104026020016040519081016040528092919081815260200182805461167190613b56565b80156116be5780601f10611693576101008083540402835291602001916116be565b820191906000526020600020905b8154815290600101906020018083116116a157829003601f168201915b5050505050905090565b6060818310611703576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061170e612689565b90506117186123f7565b85101561172a576117276123f7565b94505b80841115611736578093505b6000611741876113bb565b90508486101561176457600086860390508181101561175e578091505b50611769565b600090505b60008167ffffffffffffffff811115611785576117846131de565b5b6040519080825280602002602001820160405280156117b35781602001602082028036833780820191505090505b50905060008214156117cb57809450505050506118d5565b60006117d688611cec565b9050600081604001516117eb57816000015190505b60008990505b8881141580156118015750848714155b156118c75761180f8161265e565b9250826040015115611820576118bc565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff161461186057826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118bb57808488806001019950815181106118ae576118ad613c3a565b5b6020026020010181815250505b5b8060010190506117f1565b508583528296505050505050505b9392505050565b806000811180156118ef57506011548111155b61192e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192590613cb5565b60405180910390fd5b6010548161193a610d30565b6119449190613d04565b1115611985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197c90613da6565b60405180910390fd5b8180600f546119949190613dc6565b3410156119d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cd90613e6c565b60405180910390fd5b601260009054906101000a900460ff1615611a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1d90613ed8565b60405180910390fd5b611a37611a31612692565b8461269a565b505050565b611a44612371565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aa9576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611ab6612371565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b63612371565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ba89190612fa9565b60405180910390a35050565b600e8054611bc190613b56565b80601f0160208091040260200160405190810160405280929190818152602001828054611bed90613b56565b8015611c3a5780601f10611c0f57610100808354040283529160200191611c3a565b820191906000526020600020905b815481529060010190602001808311611c1d57829003601f168201915b505050505081565b611c4a612379565b8060118190555050565b611c5c612379565b80601260016101000a81548160ff02191690831515021790555050565b611c84848484610d47565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ce657611caf848484846126b8565b611ce5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611cf4612e89565b611cfc612e89565b611d046123f7565b831080611d185750611d14612689565b8310155b15611d265780915050611d51565b611d2f8361265e565b9050806040015115611d445780915050611d51565b611d4d83612818565b9150505b919050565b6060611d6182612312565b611da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9790613f6a565b60405180910390fd5b6000611daa612838565b90506000815111611dca5760405180602001604052806000815250611df8565b80611dd4846128ca565b600d604051602001611de89392919061405a565b6040516020818303038152906040525b915050919050565b82600081118015611e1357506011548111155b611e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4990613cb5565b60405180910390fd5b60105481611e5e610d30565b611e689190613d04565b1115611ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea090613da6565b60405180910390fd5b8380600f54611eb89190613dc6565b341015611efa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef190613e6c565b60405180910390fd5b601260019054906101000a900460ff16611f49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f40906140fd565b60405180910390fd5b600b6000611f55612692565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611fdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd490614169565b60405180910390fd5b6000611fe7612692565b604051602001611ff791906141d1565b60405160208183030381529060405280519060200120905061205d858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a5483612a2b565b61209c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209390614238565b60405180910390fd5b6001600b60006120aa612692565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061210c612106612692565b8761269a565b505050505050565b60105481565b600b6020528060005260406000206000915054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156121e157506011548111155b612220576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221790613cb5565b60405180910390fd5b6010548161222c610d30565b6122369190613d04565b1115612277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226e90613da6565b60405180910390fd5b61227f612379565b612289828461269a565b505050565b612296612379565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612306576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fd906142ca565b60405180910390fd5b61230f81612598565b50565b60008161231d6123f7565b1115801561232c575060005482105b801561236a575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b612381612692565b73ffffffffffffffffffffffffffffffffffffffff1661239f611606565b73ffffffffffffffffffffffffffffffffffffffff16146123f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ec90614336565b60405180910390fd5b565b60006001905090565b6000808290508061240f6123f7565b11612497576000548110156124965760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612494575b600081141561248a57600460008360019003935083815260200190815260200160002054905061245f565b80925050506124c9565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612556868684612a42565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612666612e89565b6126826004600084815260200190815260200160002054612a4b565b9050919050565b60008054905090565b600033905090565b6126b4828260405180602001604052806000815250612b01565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126de612371565b8786866040518563ffffffff1660e01b815260040161270094939291906143ab565b602060405180830381600087803b15801561271a57600080fd5b505af192505050801561274b57506040513d601f19601f82011682018060405250810190612748919061440c565b60015b6127c5573d806000811461277b576040519150601f19603f3d011682016040523d82523d6000602084013e612780565b606091505b506000815114156127bd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b612820612e89565b61283161282c83612400565b612a4b565b9050919050565b6060600c805461284790613b56565b80601f016020809104026020016040519081016040528092919081815260200182805461287390613b56565b80156128c05780601f10612895576101008083540402835291602001916128c0565b820191906000526020600020905b8154815290600101906020018083116128a357829003601f168201915b5050505050905090565b60606000821415612912576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a26565b600082905060005b6000821461294457808061292d90614439565b915050600a8261293d91906144b1565b915061291a565b60008167ffffffffffffffff8111156129605761295f6131de565b5b6040519080825280601f01601f1916602001820160405280156129925781602001600182028036833780820191505090505b5090505b60008514612a1f576001826129ab91906144e2565b9150600a856129ba9190614516565b60306129c69190613d04565b60f81b8183815181106129dc576129db613c3a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a1891906144b1565b9450612996565b8093505050505b919050565b600082612a388584612b9e565b1490509392505050565b60009392505050565b612a53612e89565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b612b0b8383612bf4565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612b9957600080549050600083820390505b612b4b60008683806001019450866126b8565b612b81576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612b38578160005414612b9657600080fd5b50505b505050565b60008082905060005b8451811015612be957612bd482868381518110612bc757612bc6613c3a565b5b6020026020010151612db1565b91508080612be190614439565b915050612ba7565b508091505092915050565b6000805490506000821415612c35576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c426000848385612539565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612cb983612caa600086600061253f565b612cb385612ddc565b17612567565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612d5a57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612d1f565b506000821415612d96576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612dac6000848385612592565b505050565b6000818310612dc957612dc48284612dec565b612dd4565b612dd38383612dec565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b828054612e0f90613b56565b90600052602060002090601f016020900481019282612e315760008555612e78565b82601f10612e4a57805160ff1916838001178555612e78565b82800160010185558215612e78579182015b82811115612e77578251825591602001919060010190612e5c565b5b509050612e859190612ed8565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b80821115612ef1576000816000905550600101612ed9565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612f3e81612f09565b8114612f4957600080fd5b50565b600081359050612f5b81612f35565b92915050565b600060208284031215612f7757612f76612eff565b5b6000612f8584828501612f4c565b91505092915050565b60008115159050919050565b612fa381612f8e565b82525050565b6000602082019050612fbe6000830184612f9a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ffe578082015181840152602081019050612fe3565b8381111561300d576000848401525b50505050565b6000601f19601f8301169050919050565b600061302f82612fc4565b6130398185612fcf565b9350613049818560208601612fe0565b61305281613013565b840191505092915050565b600060208201905081810360008301526130778184613024565b905092915050565b6000819050919050565b6130928161307f565b811461309d57600080fd5b50565b6000813590506130af81613089565b92915050565b6000602082840312156130cb576130ca612eff565b5b60006130d9848285016130a0565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061310d826130e2565b9050919050565b61311d81613102565b82525050565b60006020820190506131386000830184613114565b92915050565b61314781613102565b811461315257600080fd5b50565b6000813590506131648161313e565b92915050565b6000806040838503121561318157613180612eff565b5b600061318f85828601613155565b92505060206131a0858286016130a0565b9150509250929050565b6131b38161307f565b82525050565b60006020820190506131ce60008301846131aa565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61321682613013565b810181811067ffffffffffffffff82111715613235576132346131de565b5b80604052505050565b6000613248612ef5565b9050613254828261320d565b919050565b600067ffffffffffffffff821115613274576132736131de565b5b61327d82613013565b9050602081019050919050565b82818337600083830152505050565b60006132ac6132a784613259565b61323e565b9050828152602081018484840111156132c8576132c76131d9565b5b6132d384828561328a565b509392505050565b600082601f8301126132f0576132ef6131d4565b5b8135613300848260208601613299565b91505092915050565b60006020828403121561331f5761331e612eff565b5b600082013567ffffffffffffffff81111561333d5761333c612f04565b5b613349848285016132db565b91505092915050565b61335b81612f8e565b811461336657600080fd5b50565b60008135905061337881613352565b92915050565b60006020828403121561339457613393612eff565b5b60006133a284828501613369565b91505092915050565b6000806000606084860312156133c4576133c3612eff565b5b60006133d286828701613155565b93505060206133e386828701613155565b92505060406133f4868287016130a0565b9150509250925092565b6000819050919050565b613411816133fe565b82525050565b600060208201905061342c6000830184613408565b92915050565b600080fd5b600080fd5b60008083601f840112613452576134516131d4565b5b8235905067ffffffffffffffff81111561346f5761346e613432565b5b60208301915083602082028301111561348b5761348a613437565b5b9250929050565b600080602083850312156134a9576134a8612eff565b5b600083013567ffffffffffffffff8111156134c7576134c6612f04565b5b6134d38582860161343c565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61351481613102565b82525050565b600067ffffffffffffffff82169050919050565b6135378161351a565b82525050565b61354681612f8e565b82525050565b600062ffffff82169050919050565b6135648161354c565b82525050565b608082016000820151613580600085018261350b565b506020820151613593602085018261352e565b5060408201516135a6604085018261353d565b5060608201516135b9606085018261355b565b50505050565b60006135cb838361356a565b60808301905092915050565b6000602082019050919050565b60006135ef826134df565b6135f981856134ea565b9350613604836134fb565b8060005b8381101561363557815161361c88826135bf565b9750613627836135d7565b925050600181019050613608565b5085935050505092915050565b6000602082019050818103600083015261365c81846135e4565b905092915050565b60006020828403121561367a57613679612eff565b5b600061368884828501613155565b91505092915050565b61369a816133fe565b81146136a557600080fd5b50565b6000813590506136b781613691565b92915050565b6000602082840312156136d3576136d2612eff565b5b60006136e1848285016136a8565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61371f8161307f565b82525050565b60006137318383613716565b60208301905092915050565b6000602082019050919050565b6000613755826136ea565b61375f81856136f5565b935061376a83613706565b8060005b8381101561379b5781516137828882613725565b975061378d8361373d565b92505060018101905061376e565b5085935050505092915050565b600060208201905081810360008301526137c2818461374a565b905092915050565b6000806000606084860312156137e3576137e2612eff565b5b60006137f186828701613155565b9350506020613802868287016130a0565b9250506040613813868287016130a0565b9150509250925092565b6000806040838503121561383457613833612eff565b5b600061384285828601613155565b925050602061385385828601613369565b9150509250929050565b600067ffffffffffffffff821115613878576138776131de565b5b61388182613013565b9050602081019050919050565b60006138a161389c8461385d565b61323e565b9050828152602081018484840111156138bd576138bc6131d9565b5b6138c884828561328a565b509392505050565b600082601f8301126138e5576138e46131d4565b5b81356138f584826020860161388e565b91505092915050565b6000806000806080858703121561391857613917612eff565b5b600061392687828801613155565b945050602061393787828801613155565b9350506040613948878288016130a0565b925050606085013567ffffffffffffffff81111561396957613968612f04565b5b613975878288016138d0565b91505092959194509250565b608082016000820151613997600085018261350b565b5060208201516139aa602085018261352e565b5060408201516139bd604085018261353d565b5060608201516139d0606085018261355b565b50505050565b60006080820190506139eb6000830184613981565b92915050565b60008083601f840112613a0757613a066131d4565b5b8235905067ffffffffffffffff811115613a2457613a23613432565b5b602083019150836020820283011115613a4057613a3f613437565b5b9250929050565b600080600060408486031215613a6057613a5f612eff565b5b6000613a6e868287016130a0565b935050602084013567ffffffffffffffff811115613a8f57613a8e612f04565b5b613a9b868287016139f1565b92509250509250925092565b60008060408385031215613abe57613abd612eff565b5b6000613acc85828601613155565b9250506020613add85828601613155565b9150509250929050565b60008060408385031215613afe57613afd612eff565b5b6000613b0c858286016130a0565b9250506020613b1d85828601613155565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613b6e57607f821691505b60208210811415613b8257613b81613b27565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613bbe601f83612fcf565b9150613bc982613b88565b602082019050919050565b60006020820190508181036000830152613bed81613bb1565b9050919050565b600081905092915050565b50565b6000613c0f600083613bf4565b9150613c1a82613bff565b600082019050919050565b6000613c3082613c02565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613c9f601483612fcf565b9150613caa82613c69565b602082019050919050565b60006020820190508181036000830152613cce81613c92565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613d0f8261307f565b9150613d1a8361307f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d4f57613d4e613cd5565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613d90601483612fcf565b9150613d9b82613d5a565b602082019050919050565b60006020820190508181036000830152613dbf81613d83565b9050919050565b6000613dd18261307f565b9150613ddc8361307f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e1557613e14613cd5565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613e56601383612fcf565b9150613e6182613e20565b602082019050919050565b60006020820190508181036000830152613e8581613e49565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000613ec2601783612fcf565b9150613ecd82613e8c565b602082019050919050565b60006020820190508181036000830152613ef181613eb5565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613f54602f83612fcf565b9150613f5f82613ef8565b604082019050919050565b60006020820190508181036000830152613f8381613f47565b9050919050565b600081905092915050565b6000613fa082612fc4565b613faa8185613f8a565b9350613fba818560208601612fe0565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613fe881613b56565b613ff28186613f8a565b9450600182166000811461400d576001811461401e57614051565b60ff19831686528186019350614051565b61402785613fc6565b60005b838110156140495781548189015260018201915060208101905061402a565b838801955050505b50505092915050565b60006140668286613f95565b91506140728285613f95565b915061407e8284613fdb565b9150819050949350505050565b7f5468652077686974656c6973742073616c65206973206e6f7420656e61626c6560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b60006140e7602283612fcf565b91506140f28261408b565b604082019050919050565b60006020820190508181036000830152614116816140da565b9050919050565b7f4164647265737320616c726561647920636c61696d6564210000000000000000600082015250565b6000614153601883612fcf565b915061415e8261411d565b602082019050919050565b6000602082019050818103600083015261418281614146565b9050919050565b60008160601b9050919050565b60006141a182614189565b9050919050565b60006141b382614196565b9050919050565b6141cb6141c682613102565b6141a8565b82525050565b60006141dd82846141ba565b60148201915081905092915050565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b6000614222600e83612fcf565b915061422d826141ec565b602082019050919050565b6000602082019050818103600083015261425181614215565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006142b4602683612fcf565b91506142bf82614258565b604082019050919050565b600060208201905081810360008301526142e3816142a7565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614320602083612fcf565b915061432b826142ea565b602082019050919050565b6000602082019050818103600083015261434f81614313565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061437d82614356565b6143878185614361565b9350614397818560208601612fe0565b6143a081613013565b840191505092915050565b60006080820190506143c06000830187613114565b6143cd6020830186613114565b6143da60408301856131aa565b81810360608301526143ec8184614372565b905095945050505050565b60008151905061440681612f35565b92915050565b60006020828403121561442257614421612eff565b5b6000614430848285016143f7565b91505092915050565b60006144448261307f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561447757614476613cd5565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006144bc8261307f565b91506144c78361307f565b9250826144d7576144d6614482565b5b828204905092915050565b60006144ed8261307f565b91506144f88361307f565b92508282101561450b5761450a613cd5565b5b828203905092915050565b60006145218261307f565b915061452c8361307f565b92508261453c5761453b614482565b5b82820690509291505056fea2646970667358221220995232a5a94cdd58cb4a645481271d586c06f14e55199457835e8108429eb4bb64736f6c63430008090033

Deployed Bytecode

0x60806040526004361061025c5760003560e01c8063715018a611610144578063b071401b116100b6578063d2cab0561161007a578063d2cab056146108e9578063d5abeb0114610905578063db4bec4414610930578063e985e9c51461096d578063efbd73f4146109aa578063f2fde38b146109d35761025c565b8063b071401b146107f4578063b767a0981461081d578063b88d4fde14610846578063c23dc68f1461086f578063c87b56dd146108ac5761025c565b806394354fd01161010857806394354fd0146106f157806395d89b411461071c57806399a2557a14610747578063a0712d6814610784578063a22cb465146107a0578063a45ba8e7146107c95761025c565b8063715018a6146106205780637cb64759146106375780637ec4a659146106605780638462151c146106895780638da5cb5b146106c65761025c565b80633ccfd60b116101dd5780635bbb2177116101a15780635bbb2177146104e85780635c975abb1461052557806362b99ad4146105505780636352211e1461057b5780636caede3d146105b857806370a08231146105e35761025c565b80633ccfd60b1461042b57806342842e0e1461044257806344a0d68a1461046b5780634fdd43cb146104945780635503a0e8146104bd5761025c565b806316ba10e01161022457806316ba10e01461035a57806316c38b3c1461038357806318160ddd146103ac57806323b872dd146103d75780632eb4a7ab146104005761025c565b806301ffc9a71461026157806306fdde031461029e578063081812fc146102c9578063095ea7b31461030657806313faede61461032f575b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190612f61565b6109fc565b6040516102959190612fa9565b60405180910390f35b3480156102aa57600080fd5b506102b3610a8e565b6040516102c0919061305d565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb91906130b5565b610b20565b6040516102fd9190613123565b60405180910390f35b34801561031257600080fd5b5061032d6004803603810190610328919061316a565b610b9f565b005b34801561033b57600080fd5b50610344610ce3565b60405161035191906131b9565b60405180910390f35b34801561036657600080fd5b50610381600480360381019061037c9190613309565b610ce9565b005b34801561038f57600080fd5b506103aa60048036038101906103a5919061337e565b610d0b565b005b3480156103b857600080fd5b506103c1610d30565b6040516103ce91906131b9565b60405180910390f35b3480156103e357600080fd5b506103fe60048036038101906103f991906133ab565b610d47565b005b34801561040c57600080fd5b5061041561106c565b6040516104229190613417565b60405180910390f35b34801561043757600080fd5b50610440611072565b005b34801561044e57600080fd5b50610469600480360381019061046491906133ab565b611150565b005b34801561047757600080fd5b50610492600480360381019061048d91906130b5565b611170565b005b3480156104a057600080fd5b506104bb60048036038101906104b69190613309565b611182565b005b3480156104c957600080fd5b506104d26111a4565b6040516104df919061305d565b60405180910390f35b3480156104f457600080fd5b5061050f600480360381019061050a9190613492565b611232565b60405161051c9190613642565b60405180910390f35b34801561053157600080fd5b5061053a6112f5565b6040516105479190612fa9565b60405180910390f35b34801561055c57600080fd5b50610565611308565b604051610572919061305d565b60405180910390f35b34801561058757600080fd5b506105a2600480360381019061059d91906130b5565b611396565b6040516105af9190613123565b60405180910390f35b3480156105c457600080fd5b506105cd6113a8565b6040516105da9190612fa9565b60405180910390f35b3480156105ef57600080fd5b5061060a60048036038101906106059190613664565b6113bb565b60405161061791906131b9565b60405180910390f35b34801561062c57600080fd5b50610635611474565b005b34801561064357600080fd5b5061065e600480360381019061065991906136bd565b611488565b005b34801561066c57600080fd5b5061068760048036038101906106829190613309565b61149a565b005b34801561069557600080fd5b506106b060048036038101906106ab9190613664565b6114bc565b6040516106bd91906137a8565b60405180910390f35b3480156106d257600080fd5b506106db611606565b6040516106e89190613123565b60405180910390f35b3480156106fd57600080fd5b50610706611630565b60405161071391906131b9565b60405180910390f35b34801561072857600080fd5b50610731611636565b60405161073e919061305d565b60405180910390f35b34801561075357600080fd5b5061076e600480360381019061076991906137ca565b6116c8565b60405161077b91906137a8565b60405180910390f35b61079e600480360381019061079991906130b5565b6118dc565b005b3480156107ac57600080fd5b506107c760048036038101906107c2919061381d565b611a3c565b005b3480156107d557600080fd5b506107de611bb4565b6040516107eb919061305d565b60405180910390f35b34801561080057600080fd5b5061081b600480360381019061081691906130b5565b611c42565b005b34801561082957600080fd5b50610844600480360381019061083f919061337e565b611c54565b005b34801561085257600080fd5b5061086d600480360381019061086891906138fe565b611c79565b005b34801561087b57600080fd5b50610896600480360381019061089191906130b5565b611cec565b6040516108a391906139d6565b60405180910390f35b3480156108b857600080fd5b506108d360048036038101906108ce91906130b5565b611d56565b6040516108e0919061305d565b60405180910390f35b61090360048036038101906108fe9190613a47565b611e00565b005b34801561091157600080fd5b5061091a612114565b60405161092791906131b9565b60405180910390f35b34801561093c57600080fd5b5061095760048036038101906109529190613664565b61211a565b6040516109649190612fa9565b60405180910390f35b34801561097957600080fd5b50610994600480360381019061098f9190613aa7565b61213a565b6040516109a19190612fa9565b60405180910390f35b3480156109b657600080fd5b506109d160048036038101906109cc9190613ae7565b6121ce565b005b3480156109df57600080fd5b506109fa60048036038101906109f59190613664565b61228e565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a5757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a875750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610a9d90613b56565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac990613b56565b8015610b165780601f10610aeb57610100808354040283529160200191610b16565b820191906000526020600020905b815481529060010190602001808311610af957829003601f168201915b5050505050905090565b6000610b2b82612312565b610b61576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610baa82611396565b90508073ffffffffffffffffffffffffffffffffffffffff16610bcb612371565b73ffffffffffffffffffffffffffffffffffffffff1614610c2e57610bf781610bf2612371565b61213a565b610c2d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600f5481565b610cf1612379565b80600d9080519060200190610d07929190612e03565b5050565b610d13612379565b80601260006101000a81548160ff02191690831515021790555050565b6000610d3a6123f7565b6001546000540303905090565b6000610d5282612400565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610db9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610dc5846124ce565b91509150610ddb8187610dd6612371565b6124f5565b610e2757610df086610deb612371565b61213a565b610e26576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610e8e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e9b8686866001612539565b8015610ea657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f7485610f5088888761253f565b7c020000000000000000000000000000000000000000000000000000000017612567565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610ffc576000600185019050600060046000838152602001908152602001600020541415610ffa576000548114610ff9578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110648686866001612592565b505050505050565b600a5481565b61107a612379565b600260095414156110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b790613bd4565b60405180910390fd5b600260098190555060006110d2611606565b73ffffffffffffffffffffffffffffffffffffffff16476040516110f590613c25565b60006040518083038185875af1925050503d8060008114611132576040519150601f19603f3d011682016040523d82523d6000602084013e611137565b606091505b505090508061114557600080fd5b506001600981905550565b61116b83838360405180602001604052806000815250611c79565b505050565b611178612379565b80600f8190555050565b61118a612379565b80600e90805190602001906111a0929190612e03565b5050565b600d80546111b190613b56565b80601f01602080910402602001604051908101604052809291908181526020018280546111dd90613b56565b801561122a5780601f106111ff5761010080835404028352916020019161122a565b820191906000526020600020905b81548152906001019060200180831161120d57829003601f168201915b505050505081565b6060600083839050905060008167ffffffffffffffff811115611258576112576131de565b5b60405190808252806020026020018201604052801561129157816020015b61127e612e89565b8152602001906001900390816112765790505b50905060005b8281146112e9576112c08686838181106112b4576112b3613c3a565b5b90506020020135611cec565b8282815181106112d3576112d2613c3a565b5b6020026020010181905250806001019050611297565b50809250505092915050565b601260009054906101000a900460ff1681565b600c805461131590613b56565b80601f016020809104026020016040519081016040528092919081815260200182805461134190613b56565b801561138e5780601f106113635761010080835404028352916020019161138e565b820191906000526020600020905b81548152906001019060200180831161137157829003601f168201915b505050505081565b60006113a182612400565b9050919050565b601260019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611423576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61147c612379565b6114866000612598565b565b611490612379565b80600a8190555050565b6114a2612379565b80600c90805190602001906114b8929190612e03565b5050565b606060008060006114cc856113bb565b905060008167ffffffffffffffff8111156114ea576114e96131de565b5b6040519080825280602002602001820160405280156115185781602001602082028036833780820191505090505b509050611523612e89565b600061152d6123f7565b90505b8386146115f8576115408161265e565b9150816040015115611551576115ed565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461159157816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156115ec57808387806001019850815181106115df576115de613c3a565b5b6020026020010181815250505b5b806001019050611530565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b60606003805461164590613b56565b80601f016020809104026020016040519081016040528092919081815260200182805461167190613b56565b80156116be5780601f10611693576101008083540402835291602001916116be565b820191906000526020600020905b8154815290600101906020018083116116a157829003601f168201915b5050505050905090565b6060818310611703576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061170e612689565b90506117186123f7565b85101561172a576117276123f7565b94505b80841115611736578093505b6000611741876113bb565b90508486101561176457600086860390508181101561175e578091505b50611769565b600090505b60008167ffffffffffffffff811115611785576117846131de565b5b6040519080825280602002602001820160405280156117b35781602001602082028036833780820191505090505b50905060008214156117cb57809450505050506118d5565b60006117d688611cec565b9050600081604001516117eb57816000015190505b60008990505b8881141580156118015750848714155b156118c75761180f8161265e565b9250826040015115611820576118bc565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff161461186057826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118bb57808488806001019950815181106118ae576118ad613c3a565b5b6020026020010181815250505b5b8060010190506117f1565b508583528296505050505050505b9392505050565b806000811180156118ef57506011548111155b61192e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192590613cb5565b60405180910390fd5b6010548161193a610d30565b6119449190613d04565b1115611985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197c90613da6565b60405180910390fd5b8180600f546119949190613dc6565b3410156119d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cd90613e6c565b60405180910390fd5b601260009054906101000a900460ff1615611a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1d90613ed8565b60405180910390fd5b611a37611a31612692565b8461269a565b505050565b611a44612371565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aa9576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611ab6612371565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b63612371565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ba89190612fa9565b60405180910390a35050565b600e8054611bc190613b56565b80601f0160208091040260200160405190810160405280929190818152602001828054611bed90613b56565b8015611c3a5780601f10611c0f57610100808354040283529160200191611c3a565b820191906000526020600020905b815481529060010190602001808311611c1d57829003601f168201915b505050505081565b611c4a612379565b8060118190555050565b611c5c612379565b80601260016101000a81548160ff02191690831515021790555050565b611c84848484610d47565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ce657611caf848484846126b8565b611ce5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611cf4612e89565b611cfc612e89565b611d046123f7565b831080611d185750611d14612689565b8310155b15611d265780915050611d51565b611d2f8361265e565b9050806040015115611d445780915050611d51565b611d4d83612818565b9150505b919050565b6060611d6182612312565b611da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9790613f6a565b60405180910390fd5b6000611daa612838565b90506000815111611dca5760405180602001604052806000815250611df8565b80611dd4846128ca565b600d604051602001611de89392919061405a565b6040516020818303038152906040525b915050919050565b82600081118015611e1357506011548111155b611e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4990613cb5565b60405180910390fd5b60105481611e5e610d30565b611e689190613d04565b1115611ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea090613da6565b60405180910390fd5b8380600f54611eb89190613dc6565b341015611efa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef190613e6c565b60405180910390fd5b601260019054906101000a900460ff16611f49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f40906140fd565b60405180910390fd5b600b6000611f55612692565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611fdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd490614169565b60405180910390fd5b6000611fe7612692565b604051602001611ff791906141d1565b60405160208183030381529060405280519060200120905061205d858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a5483612a2b565b61209c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209390614238565b60405180910390fd5b6001600b60006120aa612692565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061210c612106612692565b8761269a565b505050505050565b60105481565b600b6020528060005260406000206000915054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156121e157506011548111155b612220576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221790613cb5565b60405180910390fd5b6010548161222c610d30565b6122369190613d04565b1115612277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226e90613da6565b60405180910390fd5b61227f612379565b612289828461269a565b505050565b612296612379565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612306576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fd906142ca565b60405180910390fd5b61230f81612598565b50565b60008161231d6123f7565b1115801561232c575060005482105b801561236a575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b612381612692565b73ffffffffffffffffffffffffffffffffffffffff1661239f611606565b73ffffffffffffffffffffffffffffffffffffffff16146123f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ec90614336565b60405180910390fd5b565b60006001905090565b6000808290508061240f6123f7565b11612497576000548110156124965760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612494575b600081141561248a57600460008360019003935083815260200190815260200160002054905061245f565b80925050506124c9565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612556868684612a42565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612666612e89565b6126826004600084815260200190815260200160002054612a4b565b9050919050565b60008054905090565b600033905090565b6126b4828260405180602001604052806000815250612b01565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126de612371565b8786866040518563ffffffff1660e01b815260040161270094939291906143ab565b602060405180830381600087803b15801561271a57600080fd5b505af192505050801561274b57506040513d601f19601f82011682018060405250810190612748919061440c565b60015b6127c5573d806000811461277b576040519150601f19603f3d011682016040523d82523d6000602084013e612780565b606091505b506000815114156127bd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b612820612e89565b61283161282c83612400565b612a4b565b9050919050565b6060600c805461284790613b56565b80601f016020809104026020016040519081016040528092919081815260200182805461287390613b56565b80156128c05780601f10612895576101008083540402835291602001916128c0565b820191906000526020600020905b8154815290600101906020018083116128a357829003601f168201915b5050505050905090565b60606000821415612912576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a26565b600082905060005b6000821461294457808061292d90614439565b915050600a8261293d91906144b1565b915061291a565b60008167ffffffffffffffff8111156129605761295f6131de565b5b6040519080825280601f01601f1916602001820160405280156129925781602001600182028036833780820191505090505b5090505b60008514612a1f576001826129ab91906144e2565b9150600a856129ba9190614516565b60306129c69190613d04565b60f81b8183815181106129dc576129db613c3a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a1891906144b1565b9450612996565b8093505050505b919050565b600082612a388584612b9e565b1490509392505050565b60009392505050565b612a53612e89565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b612b0b8383612bf4565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612b9957600080549050600083820390505b612b4b60008683806001019450866126b8565b612b81576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612b38578160005414612b9657600080fd5b50505b505050565b60008082905060005b8451811015612be957612bd482868381518110612bc757612bc6613c3a565b5b6020026020010151612db1565b91508080612be190614439565b915050612ba7565b508091505092915050565b6000805490506000821415612c35576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c426000848385612539565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612cb983612caa600086600061253f565b612cb385612ddc565b17612567565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612d5a57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612d1f565b506000821415612d96576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612dac6000848385612592565b505050565b6000818310612dc957612dc48284612dec565b612dd4565b612dd38383612dec565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b828054612e0f90613b56565b90600052602060002090601f016020900481019282612e315760008555612e78565b82601f10612e4a57805160ff1916838001178555612e78565b82800160010185558215612e78579182015b82811115612e77578251825591602001919060010190612e5c565b5b509050612e859190612ed8565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b80821115612ef1576000816000905550600101612ed9565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612f3e81612f09565b8114612f4957600080fd5b50565b600081359050612f5b81612f35565b92915050565b600060208284031215612f7757612f76612eff565b5b6000612f8584828501612f4c565b91505092915050565b60008115159050919050565b612fa381612f8e565b82525050565b6000602082019050612fbe6000830184612f9a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ffe578082015181840152602081019050612fe3565b8381111561300d576000848401525b50505050565b6000601f19601f8301169050919050565b600061302f82612fc4565b6130398185612fcf565b9350613049818560208601612fe0565b61305281613013565b840191505092915050565b600060208201905081810360008301526130778184613024565b905092915050565b6000819050919050565b6130928161307f565b811461309d57600080fd5b50565b6000813590506130af81613089565b92915050565b6000602082840312156130cb576130ca612eff565b5b60006130d9848285016130a0565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061310d826130e2565b9050919050565b61311d81613102565b82525050565b60006020820190506131386000830184613114565b92915050565b61314781613102565b811461315257600080fd5b50565b6000813590506131648161313e565b92915050565b6000806040838503121561318157613180612eff565b5b600061318f85828601613155565b92505060206131a0858286016130a0565b9150509250929050565b6131b38161307f565b82525050565b60006020820190506131ce60008301846131aa565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61321682613013565b810181811067ffffffffffffffff82111715613235576132346131de565b5b80604052505050565b6000613248612ef5565b9050613254828261320d565b919050565b600067ffffffffffffffff821115613274576132736131de565b5b61327d82613013565b9050602081019050919050565b82818337600083830152505050565b60006132ac6132a784613259565b61323e565b9050828152602081018484840111156132c8576132c76131d9565b5b6132d384828561328a565b509392505050565b600082601f8301126132f0576132ef6131d4565b5b8135613300848260208601613299565b91505092915050565b60006020828403121561331f5761331e612eff565b5b600082013567ffffffffffffffff81111561333d5761333c612f04565b5b613349848285016132db565b91505092915050565b61335b81612f8e565b811461336657600080fd5b50565b60008135905061337881613352565b92915050565b60006020828403121561339457613393612eff565b5b60006133a284828501613369565b91505092915050565b6000806000606084860312156133c4576133c3612eff565b5b60006133d286828701613155565b93505060206133e386828701613155565b92505060406133f4868287016130a0565b9150509250925092565b6000819050919050565b613411816133fe565b82525050565b600060208201905061342c6000830184613408565b92915050565b600080fd5b600080fd5b60008083601f840112613452576134516131d4565b5b8235905067ffffffffffffffff81111561346f5761346e613432565b5b60208301915083602082028301111561348b5761348a613437565b5b9250929050565b600080602083850312156134a9576134a8612eff565b5b600083013567ffffffffffffffff8111156134c7576134c6612f04565b5b6134d38582860161343c565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61351481613102565b82525050565b600067ffffffffffffffff82169050919050565b6135378161351a565b82525050565b61354681612f8e565b82525050565b600062ffffff82169050919050565b6135648161354c565b82525050565b608082016000820151613580600085018261350b565b506020820151613593602085018261352e565b5060408201516135a6604085018261353d565b5060608201516135b9606085018261355b565b50505050565b60006135cb838361356a565b60808301905092915050565b6000602082019050919050565b60006135ef826134df565b6135f981856134ea565b9350613604836134fb565b8060005b8381101561363557815161361c88826135bf565b9750613627836135d7565b925050600181019050613608565b5085935050505092915050565b6000602082019050818103600083015261365c81846135e4565b905092915050565b60006020828403121561367a57613679612eff565b5b600061368884828501613155565b91505092915050565b61369a816133fe565b81146136a557600080fd5b50565b6000813590506136b781613691565b92915050565b6000602082840312156136d3576136d2612eff565b5b60006136e1848285016136a8565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61371f8161307f565b82525050565b60006137318383613716565b60208301905092915050565b6000602082019050919050565b6000613755826136ea565b61375f81856136f5565b935061376a83613706565b8060005b8381101561379b5781516137828882613725565b975061378d8361373d565b92505060018101905061376e565b5085935050505092915050565b600060208201905081810360008301526137c2818461374a565b905092915050565b6000806000606084860312156137e3576137e2612eff565b5b60006137f186828701613155565b9350506020613802868287016130a0565b9250506040613813868287016130a0565b9150509250925092565b6000806040838503121561383457613833612eff565b5b600061384285828601613155565b925050602061385385828601613369565b9150509250929050565b600067ffffffffffffffff821115613878576138776131de565b5b61388182613013565b9050602081019050919050565b60006138a161389c8461385d565b61323e565b9050828152602081018484840111156138bd576138bc6131d9565b5b6138c884828561328a565b509392505050565b600082601f8301126138e5576138e46131d4565b5b81356138f584826020860161388e565b91505092915050565b6000806000806080858703121561391857613917612eff565b5b600061392687828801613155565b945050602061393787828801613155565b9350506040613948878288016130a0565b925050606085013567ffffffffffffffff81111561396957613968612f04565b5b613975878288016138d0565b91505092959194509250565b608082016000820151613997600085018261350b565b5060208201516139aa602085018261352e565b5060408201516139bd604085018261353d565b5060608201516139d0606085018261355b565b50505050565b60006080820190506139eb6000830184613981565b92915050565b60008083601f840112613a0757613a066131d4565b5b8235905067ffffffffffffffff811115613a2457613a23613432565b5b602083019150836020820283011115613a4057613a3f613437565b5b9250929050565b600080600060408486031215613a6057613a5f612eff565b5b6000613a6e868287016130a0565b935050602084013567ffffffffffffffff811115613a8f57613a8e612f04565b5b613a9b868287016139f1565b92509250509250925092565b60008060408385031215613abe57613abd612eff565b5b6000613acc85828601613155565b9250506020613add85828601613155565b9150509250929050565b60008060408385031215613afe57613afd612eff565b5b6000613b0c858286016130a0565b9250506020613b1d85828601613155565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613b6e57607f821691505b60208210811415613b8257613b81613b27565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613bbe601f83612fcf565b9150613bc982613b88565b602082019050919050565b60006020820190508181036000830152613bed81613bb1565b9050919050565b600081905092915050565b50565b6000613c0f600083613bf4565b9150613c1a82613bff565b600082019050919050565b6000613c3082613c02565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613c9f601483612fcf565b9150613caa82613c69565b602082019050919050565b60006020820190508181036000830152613cce81613c92565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613d0f8261307f565b9150613d1a8361307f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d4f57613d4e613cd5565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613d90601483612fcf565b9150613d9b82613d5a565b602082019050919050565b60006020820190508181036000830152613dbf81613d83565b9050919050565b6000613dd18261307f565b9150613ddc8361307f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e1557613e14613cd5565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613e56601383612fcf565b9150613e6182613e20565b602082019050919050565b60006020820190508181036000830152613e8581613e49565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000613ec2601783612fcf565b9150613ecd82613e8c565b602082019050919050565b60006020820190508181036000830152613ef181613eb5565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613f54602f83612fcf565b9150613f5f82613ef8565b604082019050919050565b60006020820190508181036000830152613f8381613f47565b9050919050565b600081905092915050565b6000613fa082612fc4565b613faa8185613f8a565b9350613fba818560208601612fe0565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613fe881613b56565b613ff28186613f8a565b9450600182166000811461400d576001811461401e57614051565b60ff19831686528186019350614051565b61402785613fc6565b60005b838110156140495781548189015260018201915060208101905061402a565b838801955050505b50505092915050565b60006140668286613f95565b91506140728285613f95565b915061407e8284613fdb565b9150819050949350505050565b7f5468652077686974656c6973742073616c65206973206e6f7420656e61626c6560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b60006140e7602283612fcf565b91506140f28261408b565b604082019050919050565b60006020820190508181036000830152614116816140da565b9050919050565b7f4164647265737320616c726561647920636c61696d6564210000000000000000600082015250565b6000614153601883612fcf565b915061415e8261411d565b602082019050919050565b6000602082019050818103600083015261418281614146565b9050919050565b60008160601b9050919050565b60006141a182614189565b9050919050565b60006141b382614196565b9050919050565b6141cb6141c682613102565b6141a8565b82525050565b60006141dd82846141ba565b60148201915081905092915050565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b6000614222600e83612fcf565b915061422d826141ec565b602082019050919050565b6000602082019050818103600083015261425181614215565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006142b4602683612fcf565b91506142bf82614258565b604082019050919050565b600060208201905081810360008301526142e3816142a7565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614320602083612fcf565b915061432b826142ea565b602082019050919050565b6000602082019050818103600083015261434f81614313565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061437d82614356565b6143878185614361565b9350614397818560208601612fe0565b6143a081613013565b840191505092915050565b60006080820190506143c06000830187613114565b6143cd6020830186613114565b6143da60408301856131aa565b81810360608301526143ec8184614372565b905095945050505050565b60008151905061440681612f35565b92915050565b60006020828403121561442257614421612eff565b5b6000614430848285016143f7565b91505092915050565b60006144448261307f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561447757614476613cd5565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006144bc8261307f565b91506144c78361307f565b9250826144d7576144d6614482565b5b828204905092915050565b60006144ed8261307f565b91506144f88361307f565b92508282101561450b5761450a613cd5565b5b828203905092915050565b60006145218261307f565b915061452c8361307f565b92508261453c5761453b614482565b5b82820690509291505056fea2646970667358221220995232a5a94cdd58cb4a645481271d586c06f14e55199457835e8108429eb4bb64736f6c63430008090033

Deployed Bytecode Sourcemap

77493:3716:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36042:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36944:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43427:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42868:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77805:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80492:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80606:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32695:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47134:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77601:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80928:160;;;;;;;;;;;;;:::i;:::-;;50047:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80000:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80232:138;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77725:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72625:528;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77928:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77690:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38337:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77960:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33879:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16790:103;;;;;;;;;;;;;:::i;:::-;;80697:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80378:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76501:900;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16142:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77882:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37120:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73541:2513;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79097:222;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43985:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77765:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80088:136;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80809:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50830:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72038:428;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79605:387;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78477:612;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77844:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77633:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44450:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79327:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17048:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36042:639;36127:4;36466:10;36451:25;;:11;:25;;;;:102;;;;36543:10;36528:25;;:11;:25;;;;36451:102;:179;;;;36620:10;36605:25;;:11;:25;;;;36451:179;36431:199;;36042:639;;;:::o;36944:100::-;36998:13;37031:5;37024:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36944:100;:::o;43427:218::-;43503:7;43528:16;43536:7;43528;:16::i;:::-;43523:64;;43553:34;;;;;;;;;;;;;;43523:64;43607:15;:24;43623:7;43607:24;;;;;;;;;;;:30;;;;;;;;;;;;43600:37;;43427:218;;;:::o;42868:400::-;42949:13;42965:16;42973:7;42965;:16::i;:::-;42949:32;;43021:5;42998:28;;:19;:17;:19::i;:::-;:28;;;42994:175;;43046:44;43063:5;43070:19;:17;:19::i;:::-;43046:16;:44::i;:::-;43041:128;;43118:35;;;;;;;;;;;;;;43041:128;42994:175;43214:2;43181:15;:24;43197:7;43181:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;43252:7;43248:2;43232:28;;43241:5;43232:28;;;;;;;;;;;;42938:330;42868:400;;:::o;77805:32::-;;;;:::o;80492:106::-;16028:13;:11;:13::i;:::-;80580:10:::1;80568:9;:22;;;;;;;;;;;;:::i;:::-;;80492:106:::0;:::o;80606:83::-;16028:13;:11;:13::i;:::-;80675:6:::1;80666;;:15;;;;;;;;;;;;;;;;;;80606:83:::0;:::o;32695:323::-;32756:7;32984:15;:13;:15::i;:::-;32969:12;;32953:13;;:28;:46;32946:53;;32695:323;:::o;47134:2817::-;47268:27;47298;47317:7;47298:18;:27::i;:::-;47268:57;;47383:4;47342:45;;47358:19;47342:45;;;47338:86;;47396:28;;;;;;;;;;;;;;47338:86;47438:27;47467:23;47494:35;47521:7;47494:26;:35::i;:::-;47437:92;;;;47629:68;47654:15;47671:4;47677:19;:17;:19::i;:::-;47629:24;:68::i;:::-;47624:180;;47717:43;47734:4;47740:19;:17;:19::i;:::-;47717:16;:43::i;:::-;47712:92;;47769:35;;;;;;;;;;;;;;47712:92;47624:180;47835:1;47821:16;;:2;:16;;;47817:52;;;47846:23;;;;;;;;;;;;;;47817:52;47882:43;47904:4;47910:2;47914:7;47923:1;47882:21;:43::i;:::-;48018:15;48015:160;;;48158:1;48137:19;48130:30;48015:160;48555:18;:24;48574:4;48555:24;;;;;;;;;;;;;;;;48553:26;;;;;;;;;;;;48624:18;:22;48643:2;48624:22;;;;;;;;;;;;;;;;48622:24;;;;;;;;;;;48946:146;48983:2;49032:45;49047:4;49053:2;49057:19;49032:14;:45::i;:::-;29094:8;49004:73;48946:18;:146::i;:::-;48917:17;:26;48935:7;48917:26;;;;;;;;;;;:175;;;;49263:1;29094:8;49212:19;:47;:52;49208:627;;;49285:19;49317:1;49307:7;:11;49285:33;;49474:1;49440:17;:30;49458:11;49440:30;;;;;;;;;;;;:35;49436:384;;;49578:13;;49563:11;:28;49559:242;;49758:19;49725:17;:30;49743:11;49725:30;;;;;;;;;;;:52;;;;49559:242;49436:384;49266:569;49208:627;49882:7;49878:2;49863:27;;49872:4;49863:27;;;;;;;;;;;;49901:42;49922:4;49928:2;49932:7;49941:1;49901:20;:42::i;:::-;47257:2694;;;47134:2817;;;:::o;77601:25::-;;;;:::o;80928:160::-;16028:13;:11;:13::i;:::-;1845:1:::1;2443:7;;:19;;2435:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1845:1;2576:7;:18;;;;80990:7:::2;81011;:5;:7::i;:::-;81003:21;;81032;81003:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80989:69;;;81077:2;81069:11;;;::::0;::::2;;80978:110;1801:1:::1;2755:7;:22;;;;80928:160::o:0;50047:185::-;50185:39;50202:4;50208:2;50212:7;50185:39;;;;;;;;;;;;:16;:39::i;:::-;50047:185;;;:::o;80000:80::-;16028:13;:11;:13::i;:::-;80067:5:::1;80060:4;:12;;;;80000:80:::0;:::o;80232:138::-;16028:13;:11;:13::i;:::-;80344:18:::1;80324:17;:38;;;;;;;;;;;;:::i;:::-;;80232:138:::0;:::o;77725:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;72625:528::-;72769:23;72835:22;72860:8;;:15;;72835:40;;72890:34;72948:14;72927:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;72890:73;;72983:9;72978:125;72999:14;72994:1;:19;72978:125;;73055:32;73075:8;;73084:1;73075:11;;;;;;;:::i;:::-;;;;;;;;73055:19;:32::i;:::-;73039:10;73050:1;73039:13;;;;;;;;:::i;:::-;;;;;;;:48;;;;73015:3;;;;;72978:125;;;;73124:10;73117:17;;;;72625:528;;;;:::o;77928:25::-;;;;;;;;;;;;;:::o;77690:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38337:152::-;38409:7;38452:27;38471:7;38452:18;:27::i;:::-;38429:52;;38337:152;;;:::o;77960:40::-;;;;;;;;;;;;;:::o;33879:233::-;33951:7;33992:1;33975:19;;:5;:19;;;33971:60;;;34003:28;;;;;;;;;;;;;;33971:60;28038:13;34049:18;:25;34068:5;34049:25;;;;;;;;;;;;;;;;:55;34042:62;;33879:233;;;:::o;16790:103::-;16028:13;:11;:13::i;:::-;16855:30:::1;16882:1;16855:18;:30::i;:::-;16790:103::o:0;80697:104::-;16028:13;:11;:13::i;:::-;80782:11:::1;80769:10;:24;;;;80697:104:::0;:::o;80378:106::-;16028:13;:11;:13::i;:::-;80466:10:::1;80454:9;:22;;;;;;;;;;;;:::i;:::-;;80378:106:::0;:::o;76501:900::-;76579:16;76633:19;76667:25;76707:22;76732:16;76742:5;76732:9;:16::i;:::-;76707:41;;76763:25;76805:14;76791:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76763:57;;76835:31;;:::i;:::-;76886:9;76898:15;:13;:15::i;:::-;76886:27;;76881:472;76930:14;76915:11;:29;76881:472;;76982:15;76995:1;76982:12;:15::i;:::-;76970:27;;77020:9;:16;;;77016:73;;;77061:8;;77016:73;77137:1;77111:28;;:9;:14;;;:28;;;77107:111;;77184:9;:14;;;77164:34;;77107:111;77261:5;77240:26;;:17;:26;;;77236:102;;;77317:1;77291:8;77300:13;;;;;;77291:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;77236:102;76881:472;76946:3;;;;;76881:472;;;;77374:8;77367:15;;;;;;;76501:900;;;:::o;16142:87::-;16188:7;16215:6;;;;;;;;;;;16208:13;;16142:87;:::o;77882:37::-;;;;:::o;37120:104::-;37176:13;37209:7;37202:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37120:104;:::o;73541:2513::-;73684:16;73751:4;73742:5;:13;73738:45;;73764:19;;;;;;;;;;;;;;73738:45;73798:19;73832:17;73852:14;:12;:14::i;:::-;73832:34;;73952:15;:13;:15::i;:::-;73944:5;:23;73940:87;;;73996:15;:13;:15::i;:::-;73988:23;;73940:87;74103:9;74096:4;:16;74092:73;;;74140:9;74133:16;;74092:73;74179:25;74207:16;74217:5;74207:9;:16::i;:::-;74179:44;;74401:4;74393:5;:12;74389:278;;;74426:19;74455:5;74448:4;:12;74426:34;;74497:17;74483:11;:31;74479:111;;;74559:11;74539:31;;74479:111;74407:198;74389:278;;;74650:1;74630:21;;74389:278;74681:25;74723:17;74709:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74681:60;;74781:1;74760:17;:22;74756:78;;;74810:8;74803:15;;;;;;;;74756:78;74978:31;75012:26;75032:5;75012:19;:26::i;:::-;74978:60;;75053:25;75298:9;:16;;;75293:92;;75355:9;:14;;;75335:34;;75293:92;75404:9;75416:5;75404:17;;75399:478;75428:4;75423:1;:9;;:45;;;;;75451:17;75436:11;:32;;75423:45;75399:478;;;75506:15;75519:1;75506:12;:15::i;:::-;75494:27;;75544:9;:16;;;75540:73;;;75585:8;;75540:73;75661:1;75635:28;;:9;:14;;;:28;;;75631:111;;75708:9;:14;;;75688:34;;75631:111;75785:5;75764:26;;:17;:26;;;75760:102;;;75841:1;75815:8;75824:13;;;;;;75815:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;75760:102;75399:478;75470:3;;;;;75399:478;;;;75979:11;75969:8;75962:29;76027:8;76020:15;;;;;;;;73541:2513;;;;;;:::o;79097:222::-;79162:11;78150:1;78136:11;:15;:52;;;;;78170:18;;78155:11;:33;;78136:52;78128:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;78263:9;;78248:11;78232:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;78224:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;79195:11:::1;78414;78407:4;;:18;;;;:::i;:::-;78394:9;:31;;78386:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;79228:6:::2;;;;;;;;;;;79227:7;79219:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;79275:36;79285:12;:10;:12::i;:::-;79299:11;79275:9;:36::i;:::-;78308:1:::1;79097:222:::0;;:::o;43985:308::-;44096:19;:17;:19::i;:::-;44084:31;;:8;:31;;;44080:61;;;44124:17;;;;;;;;;;;;;;44080:61;44206:8;44154:18;:39;44173:19;:17;:19::i;:::-;44154:39;;;;;;;;;;;;;;;:49;44194:8;44154:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;44266:8;44230:55;;44245:19;:17;:19::i;:::-;44230:55;;;44276:8;44230:55;;;;;;:::i;:::-;;;;;;;;43985:308;;:::o;77765:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;80088:136::-;16028:13;:11;:13::i;:::-;80197:19:::1;80176:18;:40;;;;80088:136:::0;:::o;80809:111::-;16028:13;:11;:13::i;:::-;80906:6:::1;80883:20;;:29;;;;;;;;;;;;;;;;;;80809:111:::0;:::o;50830:399::-;50997:31;51010:4;51016:2;51020:7;50997:12;:31::i;:::-;51061:1;51043:2;:14;;;:19;51039:183;;51082:56;51113:4;51119:2;51123:7;51132:5;51082:30;:56::i;:::-;51077:145;;51166:40;;;;;;;;;;;;;;51077:145;51039:183;50830:399;;;;:::o;72038:428::-;72122:21;;:::i;:::-;72156:31;;:::i;:::-;72212:15;:13;:15::i;:::-;72202:7;:25;:54;;;;72242:14;:12;:14::i;:::-;72231:7;:25;;72202:54;72198:103;;;72280:9;72273:16;;;;;72198:103;72323:21;72336:7;72323:12;:21::i;:::-;72311:33;;72359:9;:16;;;72355:65;;;72399:9;72392:16;;;;;72355:65;72437:21;72450:7;72437:12;:21::i;:::-;72430:28;;;72038:428;;;;:::o;79605:387::-;79679:13;79713:17;79721:8;79713:7;:17::i;:::-;79705:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;79795:28;79826:10;:8;:10::i;:::-;79795:41;;79885:1;79860:14;79854:28;:32;:130;;;;;;;;;;;;;;;;;79922:14;79938:19;:8;:17;:19::i;:::-;79959:9;79905:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;79854:130;79847:137;;;79605:387;;;:::o;78477:612::-;78584:11;78150:1;78136:11;:15;:52;;;;;78170:18;;78155:11;:33;;78136:52;78128:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;78263:9;;78248:11;78232:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;78224:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;78617:11:::1;78414;78407:4;;:18;;;;:::i;:::-;78394:9;:31;;78386:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;78691:20:::2;;;;;;;;;;;78683:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;78770:16;:30;78787:12;:10;:12::i;:::-;78770:30;;;;;;;;;;;;;;;;;;;;;;;;;78769:31;78761:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78840:12;78882;:10;:12::i;:::-;78865:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;78855:41;;;;;;78840:56;;78915:50;78934:12;;78915:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78948:10;;78960:4;78915:18;:50::i;:::-;78907:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;79030:4;78997:16;:30;79014:12;:10;:12::i;:::-;78997:30;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;79045:36;79055:12;:10;:12::i;:::-;79069:11;79045:9;:36::i;:::-;78630:459;78308:1:::1;78477:612:::0;;;;:::o;77844:31::-;;;;:::o;77633:48::-;;;;;;;;;;;;;;;;;;;;;;:::o;44450:164::-;44547:4;44571:18;:25;44590:5;44571:25;;;;;;;;;;;;;;;:35;44597:8;44571:35;;;;;;;;;;;;;;;;;;;;;;;;;44564:42;;44450:164;;;;:::o;79327:161::-;79413:11;78150:1;78136:11;:15;:52;;;;;78170:18;;78155:11;:33;;78136:52;78128:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;78263:9;;78248:11;78232:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;78224:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;16028:13:::1;:11;:13::i;:::-;79447:33:::2;79457:9;79468:11;79447:9;:33::i;:::-;79327:161:::0;;;:::o;17048:201::-;16028:13;:11;:13::i;:::-;17157:1:::1;17137:22;;:8;:22;;;;17129:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;17213:28;17232:8;17213:18;:28::i;:::-;17048:201:::0;:::o;44872:282::-;44937:4;44993:7;44974:15;:13;:15::i;:::-;:26;;:66;;;;;45027:13;;45017:7;:23;44974:66;:153;;;;;45126:1;28814:8;45078:17;:26;45096:7;45078:26;;;;;;;;;;;;:44;:49;44974:153;44954:173;;44872:282;;;:::o;66638:105::-;66698:7;66725:10;66718:17;;66638:105;:::o;16307:132::-;16382:12;:10;:12::i;:::-;16371:23;;:7;:5;:7::i;:::-;:23;;;16363:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16307:132::o;79496:101::-;79561:7;79588:1;79581:8;;79496:101;:::o;39492:1275::-;39559:7;39579:12;39594:7;39579:22;;39662:4;39643:15;:13;:15::i;:::-;:23;39639:1061;;39696:13;;39689:4;:20;39685:1015;;;39734:14;39751:17;:23;39769:4;39751:23;;;;;;;;;;;;39734:40;;39868:1;28814:8;39840:6;:24;:29;39836:845;;;40505:113;40522:1;40512:6;:11;40505:113;;;40565:17;:25;40583:6;;;;;;;40565:25;;;;;;;;;;;;40556:34;;40505:113;;;40651:6;40644:13;;;;;;39836:845;39711:989;39685:1015;39639:1061;40728:31;;;;;;;;;;;;;;39492:1275;;;;:::o;46035:479::-;46137:27;46166:23;46207:38;46248:15;:24;46264:7;46248:24;;;;;;;;;;;46207:65;;46419:18;46396:41;;46476:19;46470:26;46451:45;;46381:126;46035:479;;;:::o;45263:659::-;45412:11;45577:16;45570:5;45566:28;45557:37;;45737:16;45726:9;45722:32;45709:45;;45887:15;45876:9;45873:30;45865:5;45854:9;45851:20;45848:56;45838:66;;45263:659;;;;;:::o;51891:159::-;;;;;:::o;65947:311::-;66082:7;66102:16;29218:3;66128:19;:41;;66102:68;;29218:3;66196:31;66207:4;66213:2;66217:9;66196:10;:31::i;:::-;66188:40;;:62;;66181:69;;;65947:311;;;;;:::o;41315:450::-;41395:14;41563:16;41556:5;41552:28;41543:37;;41740:5;41726:11;41701:23;41697:41;41694:52;41687:5;41684:63;41674:73;;41315:450;;;;:::o;52715:158::-;;;;;:::o;17409:191::-;17483:16;17502:6;;;;;;;;;;;17483:25;;17528:8;17519:6;;:17;;;;;;;;;;;;;;;;;;17583:8;17552:40;;17573:8;17552:40;;;;;;;;;;;;17472:128;17409:191;:::o;38940:161::-;39008:21;;:::i;:::-;39049:44;39068:17;:24;39086:5;39068:24;;;;;;;;;;;;39049:18;:44::i;:::-;39042:51;;38940:161;;;:::o;32382:103::-;32437:7;32464:13;;32457:20;;32382:103;:::o;14693:98::-;14746:7;14773:10;14766:17;;14693:98;:::o;60470:112::-;60547:27;60557:2;60561:8;60547:27;;;;;;;;;;;;:9;:27::i;:::-;60470:112;;:::o;53313:716::-;53476:4;53522:2;53497:45;;;53543:19;:17;:19::i;:::-;53564:4;53570:7;53579:5;53497:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53493:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53797:1;53780:6;:13;:18;53776:235;;;53826:40;;;;;;;;;;;;;;53776:235;53969:6;53963:13;53954:6;53950:2;53946:15;53939:38;53493:529;53666:54;;;53656:64;;;:6;:64;;;;53649:71;;;53313:716;;;;;;:::o;38678:166::-;38748:21;;:::i;:::-;38789:47;38808:27;38827:7;38808:18;:27::i;:::-;38789:18;:47::i;:::-;38782:54;;38678:166;;;:::o;81096:110::-;81156:13;81189:9;81182:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81096:110;:::o;3222:723::-;3278:13;3508:1;3499:5;:10;3495:53;;;3526:10;;;;;;;;;;;;;;;;;;;;;3495:53;3558:12;3573:5;3558:20;;3589:14;3614:78;3629:1;3621:4;:9;3614:78;;3647:8;;;;;:::i;:::-;;;;3678:2;3670:10;;;;;:::i;:::-;;;3614:78;;;3702:19;3734:6;3724:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3702:39;;3752:154;3768:1;3759:5;:10;3752:154;;3796:1;3786:11;;;;;:::i;:::-;;;3863:2;3855:5;:10;;;;:::i;:::-;3842:2;:24;;;;:::i;:::-;3829:39;;3812:6;3819;3812:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3892:2;3883:11;;;;;:::i;:::-;;;3752:154;;;3930:6;3916:21;;;;;3222:723;;;;:::o;6508:190::-;6633:4;6686;6657:25;6670:5;6677:4;6657:12;:25::i;:::-;:33;6650:40;;6508:190;;;;;:::o;65648:147::-;65785:6;65648:147;;;;;:::o;40866:366::-;40932:31;;:::i;:::-;41009:6;40976:9;:14;;:41;;;;;;;;;;;28697:3;41062:6;:33;;41028:9;:24;;:68;;;;;;;;;;;41154:1;28814:8;41126:6;:24;:29;;41107:9;:16;;:48;;;;;;;;;;;29218:3;41195:6;:28;;41166:9;:19;;:58;;;;;;;;;;;40866:366;;;:::o;59697:689::-;59828:19;59834:2;59838:8;59828:5;:19::i;:::-;59907:1;59889:2;:14;;;:19;59885:483;;59929:11;59943:13;;59929:27;;59975:13;59997:8;59991:3;:14;59975:30;;60024:233;60055:62;60094:1;60098:2;60102:7;;;;;;60111:5;60055:30;:62::i;:::-;60050:167;;60153:40;;;;;;;;;;;;;;60050:167;60252:3;60244:5;:11;60024:233;;60339:3;60322:13;;:20;60318:34;;60344:8;;;60318:34;59910:458;;59885:483;59697:689;;;:::o;7375:296::-;7458:7;7478:20;7501:4;7478:27;;7521:9;7516:118;7540:5;:12;7536:1;:16;7516:118;;;7589:33;7599:12;7613:5;7619:1;7613:8;;;;;;;;:::i;:::-;;;;;;;;7589:9;:33::i;:::-;7574:48;;7554:3;;;;;:::i;:::-;;;;7516:118;;;;7651:12;7644:19;;;7375:296;;;;:::o;54491:2454::-;54564:20;54587:13;;54564:36;;54627:1;54615:8;:13;54611:44;;;54637:18;;;;;;;;;;;;;;54611:44;54668:61;54698:1;54702:2;54706:12;54720:8;54668:21;:61::i;:::-;55212:1;28176:2;55182:1;:26;;55181:32;55169:8;:45;55143:18;:22;55162:2;55143:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;55491:139;55528:2;55582:33;55605:1;55609:2;55613:1;55582:14;:33::i;:::-;55549:30;55570:8;55549:20;:30::i;:::-;:66;55491:18;:139::i;:::-;55457:17;:31;55475:12;55457:31;;;;;;;;;;;:173;;;;55647:16;55678:11;55707:8;55692:12;:23;55678:37;;55962:16;55958:2;55954:25;55942:37;;56334:12;56294:8;56253:1;56191:25;56132:1;56071;56044:335;56459:1;56445:12;56441:20;56399:346;56500:3;56491:7;56488:16;56399:346;;56718:7;56708:8;56705:1;56678:25;56675:1;56672;56667:59;56553:1;56544:7;56540:15;56529:26;;56399:346;;;56403:77;56790:1;56778:8;:13;56774:45;;;56800:19;;;;;;;;;;;;;;56774:45;56852:3;56836:13;:19;;;;54917:1950;;56877:60;56906:1;56910:2;56914:12;56928:8;56877:20;:60::i;:::-;54553:2392;54491:2454;;:::o;13582:149::-;13645:7;13676:1;13672;:5;:51;;13703:20;13718:1;13721;13703:14;:20::i;:::-;13672:51;;;13680:20;13695:1;13698;13680:14;:20::i;:::-;13672:51;13665:58;;13582:149;;;;:::o;41867:324::-;41937:14;42170:1;42160:8;42157:15;42131:24;42127:46;42117:56;;41867:324;;;:::o;13739:268::-;13807:13;13914:1;13908:4;13901:15;13943:1;13937:4;13930:15;13984:4;13978;13968:21;13959:30;;13739:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:117::-;5399:1;5396;5389:12;5413:117;5522:1;5519;5512:12;5536:180;5584:77;5581:1;5574:88;5681:4;5678:1;5671:15;5705:4;5702:1;5695:15;5722:281;5805:27;5827:4;5805:27;:::i;:::-;5797:6;5793:40;5935:6;5923:10;5920:22;5899:18;5887:10;5884:34;5881:62;5878:88;;;5946:18;;:::i;:::-;5878:88;5986:10;5982:2;5975:22;5765:238;5722:281;;:::o;6009:129::-;6043:6;6070:20;;:::i;:::-;6060:30;;6099:33;6127:4;6119:6;6099:33;:::i;:::-;6009:129;;;:::o;6144:308::-;6206:4;6296:18;6288:6;6285:30;6282:56;;;6318:18;;:::i;:::-;6282:56;6356:29;6378:6;6356:29;:::i;:::-;6348:37;;6440:4;6434;6430:15;6422:23;;6144:308;;;:::o;6458:154::-;6542:6;6537:3;6532;6519:30;6604:1;6595:6;6590:3;6586:16;6579:27;6458:154;;;:::o;6618:412::-;6696:5;6721:66;6737:49;6779:6;6737:49;:::i;:::-;6721:66;:::i;:::-;6712:75;;6810:6;6803:5;6796:21;6848:4;6841:5;6837:16;6886:3;6877:6;6872:3;6868:16;6865:25;6862:112;;;6893:79;;:::i;:::-;6862:112;6983:41;7017:6;7012:3;7007;6983:41;:::i;:::-;6702:328;6618:412;;;;;:::o;7050:340::-;7106:5;7155:3;7148:4;7140:6;7136:17;7132:27;7122:122;;7163:79;;:::i;:::-;7122:122;7280:6;7267:20;7305:79;7380:3;7372:6;7365:4;7357:6;7353:17;7305:79;:::i;:::-;7296:88;;7112:278;7050:340;;;;:::o;7396:509::-;7465:6;7514:2;7502:9;7493:7;7489:23;7485:32;7482:119;;;7520:79;;:::i;:::-;7482:119;7668:1;7657:9;7653:17;7640:31;7698:18;7690:6;7687:30;7684:117;;;7720:79;;:::i;:::-;7684:117;7825:63;7880:7;7871:6;7860:9;7856:22;7825:63;:::i;:::-;7815:73;;7611:287;7396:509;;;;:::o;7911:116::-;7981:21;7996:5;7981:21;:::i;:::-;7974:5;7971:32;7961:60;;8017:1;8014;8007:12;7961:60;7911:116;:::o;8033:133::-;8076:5;8114:6;8101:20;8092:29;;8130:30;8154:5;8130:30;:::i;:::-;8033:133;;;;:::o;8172:323::-;8228:6;8277:2;8265:9;8256:7;8252:23;8248:32;8245:119;;;8283:79;;:::i;:::-;8245:119;8403:1;8428:50;8470:7;8461:6;8450:9;8446:22;8428:50;:::i;:::-;8418:60;;8374:114;8172:323;;;;:::o;8501:619::-;8578:6;8586;8594;8643:2;8631:9;8622:7;8618:23;8614:32;8611:119;;;8649:79;;:::i;:::-;8611:119;8769:1;8794:53;8839:7;8830:6;8819:9;8815:22;8794:53;:::i;:::-;8784:63;;8740:117;8896:2;8922:53;8967:7;8958:6;8947:9;8943:22;8922:53;:::i;:::-;8912:63;;8867:118;9024:2;9050:53;9095:7;9086:6;9075:9;9071:22;9050:53;:::i;:::-;9040:63;;8995:118;8501:619;;;;;:::o;9126:77::-;9163:7;9192:5;9181:16;;9126:77;;;:::o;9209:118::-;9296:24;9314:5;9296:24;:::i;:::-;9291:3;9284:37;9209:118;;:::o;9333:222::-;9426:4;9464:2;9453:9;9449:18;9441:26;;9477:71;9545:1;9534:9;9530:17;9521:6;9477:71;:::i;:::-;9333:222;;;;:::o;9561:117::-;9670:1;9667;9660:12;9684:117;9793:1;9790;9783:12;9824:568;9897:8;9907:6;9957:3;9950:4;9942:6;9938:17;9934:27;9924:122;;9965:79;;:::i;:::-;9924:122;10078:6;10065:20;10055:30;;10108:18;10100:6;10097:30;10094:117;;;10130:79;;:::i;:::-;10094:117;10244:4;10236:6;10232:17;10220:29;;10298:3;10290:4;10282:6;10278:17;10268:8;10264:32;10261:41;10258:128;;;10305:79;;:::i;:::-;10258:128;9824:568;;;;;:::o;10398:559::-;10484:6;10492;10541:2;10529:9;10520:7;10516:23;10512:32;10509:119;;;10547:79;;:::i;:::-;10509:119;10695:1;10684:9;10680:17;10667:31;10725:18;10717:6;10714:30;10711:117;;;10747:79;;:::i;:::-;10711:117;10860:80;10932:7;10923:6;10912:9;10908:22;10860:80;:::i;:::-;10842:98;;;;10638:312;10398:559;;;;;:::o;10963:145::-;11061:6;11095:5;11089:12;11079:22;;10963:145;;;:::o;11114:215::-;11244:11;11278:6;11273:3;11266:19;11318:4;11313:3;11309:14;11294:29;;11114:215;;;;:::o;11335:163::-;11433:4;11456:3;11448:11;;11486:4;11481:3;11477:14;11469:22;;11335:163;;;:::o;11504:108::-;11581:24;11599:5;11581:24;:::i;:::-;11576:3;11569:37;11504:108;;:::o;11618:101::-;11654:7;11694:18;11687:5;11683:30;11672:41;;11618:101;;;:::o;11725:105::-;11800:23;11817:5;11800:23;:::i;:::-;11795:3;11788:36;11725:105;;:::o;11836:99::-;11907:21;11922:5;11907:21;:::i;:::-;11902:3;11895:34;11836:99;;:::o;11941:91::-;11977:7;12017:8;12010:5;12006:20;11995:31;;11941:91;;;:::o;12038:105::-;12113:23;12130:5;12113:23;:::i;:::-;12108:3;12101:36;12038:105;;:::o;12221:864::-;12370:4;12365:3;12361:14;12457:4;12450:5;12446:16;12440:23;12476:63;12533:4;12528:3;12524:14;12510:12;12476:63;:::i;:::-;12385:164;12641:4;12634:5;12630:16;12624:23;12660:61;12715:4;12710:3;12706:14;12692:12;12660:61;:::i;:::-;12559:172;12815:4;12808:5;12804:16;12798:23;12834:57;12885:4;12880:3;12876:14;12862:12;12834:57;:::i;:::-;12741:160;12988:4;12981:5;12977:16;12971:23;13007:61;13062:4;13057:3;13053:14;13039:12;13007:61;:::i;:::-;12911:167;12339:746;12221:864;;:::o;13091:303::-;13222:10;13243:108;13347:3;13339:6;13243:108;:::i;:::-;13383:4;13378:3;13374:14;13360:28;;13091:303;;;;:::o;13400:144::-;13501:4;13533;13528:3;13524:14;13516:22;;13400:144;;;:::o;13626:980::-;13807:3;13836:85;13915:5;13836:85;:::i;:::-;13937:117;14047:6;14042:3;13937:117;:::i;:::-;13930:124;;14078:87;14159:5;14078:87;:::i;:::-;14188:7;14219:1;14204:377;14229:6;14226:1;14223:13;14204:377;;;14305:6;14299:13;14332:125;14453:3;14438:13;14332:125;:::i;:::-;14325:132;;14480:91;14564:6;14480:91;:::i;:::-;14470:101;;14264:317;14251:1;14248;14244:9;14239:14;;14204:377;;;14208:14;14597:3;14590:10;;13812:794;;;13626:980;;;;:::o;14612:497::-;14817:4;14855:2;14844:9;14840:18;14832:26;;14904:9;14898:4;14894:20;14890:1;14879:9;14875:17;14868:47;14932:170;15097:4;15088:6;14932:170;:::i;:::-;14924:178;;14612:497;;;;:::o;15115:329::-;15174:6;15223:2;15211:9;15202:7;15198:23;15194:32;15191:119;;;15229:79;;:::i;:::-;15191:119;15349:1;15374:53;15419:7;15410:6;15399:9;15395:22;15374:53;:::i;:::-;15364:63;;15320:117;15115:329;;;;:::o;15450:122::-;15523:24;15541:5;15523:24;:::i;:::-;15516:5;15513:35;15503:63;;15562:1;15559;15552:12;15503:63;15450:122;:::o;15578:139::-;15624:5;15662:6;15649:20;15640:29;;15678:33;15705:5;15678:33;:::i;:::-;15578:139;;;;:::o;15723:329::-;15782:6;15831:2;15819:9;15810:7;15806:23;15802:32;15799:119;;;15837:79;;:::i;:::-;15799:119;15957:1;15982:53;16027:7;16018:6;16007:9;16003:22;15982:53;:::i;:::-;15972:63;;15928:117;15723:329;;;;:::o;16058:114::-;16125:6;16159:5;16153:12;16143:22;;16058:114;;;:::o;16178:184::-;16277:11;16311:6;16306:3;16299:19;16351:4;16346:3;16342:14;16327:29;;16178:184;;;;:::o;16368:132::-;16435:4;16458:3;16450:11;;16488:4;16483:3;16479:14;16471:22;;16368:132;;;:::o;16506:108::-;16583:24;16601:5;16583:24;:::i;:::-;16578:3;16571:37;16506:108;;:::o;16620:179::-;16689:10;16710:46;16752:3;16744:6;16710:46;:::i;:::-;16788:4;16783:3;16779:14;16765:28;;16620:179;;;;:::o;16805:113::-;16875:4;16907;16902:3;16898:14;16890:22;;16805:113;;;:::o;16954:732::-;17073:3;17102:54;17150:5;17102:54;:::i;:::-;17172:86;17251:6;17246:3;17172:86;:::i;:::-;17165:93;;17282:56;17332:5;17282:56;:::i;:::-;17361:7;17392:1;17377:284;17402:6;17399:1;17396:13;17377:284;;;17478:6;17472:13;17505:63;17564:3;17549:13;17505:63;:::i;:::-;17498:70;;17591:60;17644:6;17591:60;:::i;:::-;17581:70;;17437:224;17424:1;17421;17417:9;17412:14;;17377:284;;;17381:14;17677:3;17670:10;;17078:608;;;16954:732;;;;:::o;17692:373::-;17835:4;17873:2;17862:9;17858:18;17850:26;;17922:9;17916:4;17912:20;17908:1;17897:9;17893:17;17886:47;17950:108;18053:4;18044:6;17950:108;:::i;:::-;17942:116;;17692:373;;;;:::o;18071:619::-;18148:6;18156;18164;18213:2;18201:9;18192:7;18188:23;18184:32;18181:119;;;18219:79;;:::i;:::-;18181:119;18339:1;18364:53;18409:7;18400:6;18389:9;18385:22;18364:53;:::i;:::-;18354:63;;18310:117;18466:2;18492:53;18537:7;18528:6;18517:9;18513:22;18492:53;:::i;:::-;18482:63;;18437:118;18594:2;18620:53;18665:7;18656:6;18645:9;18641:22;18620:53;:::i;:::-;18610:63;;18565:118;18071:619;;;;;:::o;18696:468::-;18761:6;18769;18818:2;18806:9;18797:7;18793:23;18789:32;18786:119;;;18824:79;;:::i;:::-;18786:119;18944:1;18969:53;19014:7;19005:6;18994:9;18990:22;18969:53;:::i;:::-;18959:63;;18915:117;19071:2;19097:50;19139:7;19130:6;19119:9;19115:22;19097:50;:::i;:::-;19087:60;;19042:115;18696:468;;;;;:::o;19170:307::-;19231:4;19321:18;19313:6;19310:30;19307:56;;;19343:18;;:::i;:::-;19307:56;19381:29;19403:6;19381:29;:::i;:::-;19373:37;;19465:4;19459;19455:15;19447:23;;19170:307;;;:::o;19483:410::-;19560:5;19585:65;19601:48;19642:6;19601:48;:::i;:::-;19585:65;:::i;:::-;19576:74;;19673:6;19666:5;19659:21;19711:4;19704:5;19700:16;19749:3;19740:6;19735:3;19731:16;19728:25;19725:112;;;19756:79;;:::i;:::-;19725:112;19846:41;19880:6;19875:3;19870;19846:41;:::i;:::-;19566:327;19483:410;;;;;:::o;19912:338::-;19967:5;20016:3;20009:4;20001:6;19997:17;19993:27;19983:122;;20024:79;;:::i;:::-;19983:122;20141:6;20128:20;20166:78;20240:3;20232:6;20225:4;20217:6;20213:17;20166:78;:::i;:::-;20157:87;;19973:277;19912:338;;;;:::o;20256:943::-;20351:6;20359;20367;20375;20424:3;20412:9;20403:7;20399:23;20395:33;20392:120;;;20431:79;;:::i;:::-;20392:120;20551:1;20576:53;20621:7;20612:6;20601:9;20597:22;20576:53;:::i;:::-;20566:63;;20522:117;20678:2;20704:53;20749:7;20740:6;20729:9;20725:22;20704:53;:::i;:::-;20694:63;;20649:118;20806:2;20832:53;20877:7;20868:6;20857:9;20853:22;20832:53;:::i;:::-;20822:63;;20777:118;20962:2;20951:9;20947:18;20934:32;20993:18;20985:6;20982:30;20979:117;;;21015:79;;:::i;:::-;20979:117;21120:62;21174:7;21165:6;21154:9;21150:22;21120:62;:::i;:::-;21110:72;;20905:287;20256:943;;;;;;;:::o;21277:874::-;21436:4;21431:3;21427:14;21523:4;21516:5;21512:16;21506:23;21542:63;21599:4;21594:3;21590:14;21576:12;21542:63;:::i;:::-;21451:164;21707:4;21700:5;21696:16;21690:23;21726:61;21781:4;21776:3;21772:14;21758:12;21726:61;:::i;:::-;21625:172;21881:4;21874:5;21870:16;21864:23;21900:57;21951:4;21946:3;21942:14;21928:12;21900:57;:::i;:::-;21807:160;22054:4;22047:5;22043:16;22037:23;22073:61;22128:4;22123:3;22119:14;22105:12;22073:61;:::i;:::-;21977:167;21405:746;21277:874;;:::o;22157:347::-;22312:4;22350:3;22339:9;22335:19;22327:27;;22364:133;22494:1;22483:9;22479:17;22470:6;22364:133;:::i;:::-;22157:347;;;;:::o;22527:568::-;22600:8;22610:6;22660:3;22653:4;22645:6;22641:17;22637:27;22627:122;;22668:79;;:::i;:::-;22627:122;22781:6;22768:20;22758:30;;22811:18;22803:6;22800:30;22797:117;;;22833:79;;:::i;:::-;22797:117;22947:4;22939:6;22935:17;22923:29;;23001:3;22993:4;22985:6;22981:17;22971:8;22967:32;22964:41;22961:128;;;23008:79;;:::i;:::-;22961:128;22527:568;;;;;:::o;23101:704::-;23196:6;23204;23212;23261:2;23249:9;23240:7;23236:23;23232:32;23229:119;;;23267:79;;:::i;:::-;23229:119;23387:1;23412:53;23457:7;23448:6;23437:9;23433:22;23412:53;:::i;:::-;23402:63;;23358:117;23542:2;23531:9;23527:18;23514:32;23573:18;23565:6;23562:30;23559:117;;;23595:79;;:::i;:::-;23559:117;23708:80;23780:7;23771:6;23760:9;23756:22;23708:80;:::i;:::-;23690:98;;;;23485:313;23101:704;;;;;:::o;23811:474::-;23879:6;23887;23936:2;23924:9;23915:7;23911:23;23907:32;23904:119;;;23942:79;;:::i;:::-;23904:119;24062:1;24087:53;24132:7;24123:6;24112:9;24108:22;24087:53;:::i;:::-;24077:63;;24033:117;24189:2;24215:53;24260:7;24251:6;24240:9;24236:22;24215:53;:::i;:::-;24205:63;;24160:118;23811:474;;;;;:::o;24291:::-;24359:6;24367;24416:2;24404:9;24395:7;24391:23;24387:32;24384:119;;;24422:79;;:::i;:::-;24384:119;24542:1;24567:53;24612:7;24603:6;24592:9;24588:22;24567:53;:::i;:::-;24557:63;;24513:117;24669:2;24695:53;24740:7;24731:6;24720:9;24716:22;24695:53;:::i;:::-;24685:63;;24640:118;24291:474;;;;;:::o;24771:180::-;24819:77;24816:1;24809:88;24916:4;24913:1;24906:15;24940:4;24937:1;24930:15;24957:320;25001:6;25038:1;25032:4;25028:12;25018:22;;25085:1;25079:4;25075:12;25106:18;25096:81;;25162:4;25154:6;25150:17;25140:27;;25096:81;25224:2;25216:6;25213:14;25193:18;25190:38;25187:84;;;25243:18;;:::i;:::-;25187:84;25008:269;24957:320;;;:::o;25283:181::-;25423:33;25419:1;25411:6;25407:14;25400:57;25283:181;:::o;25470:366::-;25612:3;25633:67;25697:2;25692:3;25633:67;:::i;:::-;25626:74;;25709:93;25798:3;25709:93;:::i;:::-;25827:2;25822:3;25818:12;25811:19;;25470:366;;;:::o;25842:419::-;26008:4;26046:2;26035:9;26031:18;26023:26;;26095:9;26089:4;26085:20;26081:1;26070:9;26066:17;26059:47;26123:131;26249:4;26123:131;:::i;:::-;26115:139;;25842:419;;;:::o;26267:147::-;26368:11;26405:3;26390:18;;26267:147;;;;:::o;26420:114::-;;:::o;26540:398::-;26699:3;26720:83;26801:1;26796:3;26720:83;:::i;:::-;26713:90;;26812:93;26901:3;26812:93;:::i;:::-;26930:1;26925:3;26921:11;26914:18;;26540:398;;;:::o;26944:379::-;27128:3;27150:147;27293:3;27150:147;:::i;:::-;27143:154;;27314:3;27307:10;;26944:379;;;:::o;27329:180::-;27377:77;27374:1;27367:88;27474:4;27471:1;27464:15;27498:4;27495:1;27488:15;27515:170;27655:22;27651:1;27643:6;27639:14;27632:46;27515:170;:::o;27691:366::-;27833:3;27854:67;27918:2;27913:3;27854:67;:::i;:::-;27847:74;;27930:93;28019:3;27930:93;:::i;:::-;28048:2;28043:3;28039:12;28032:19;;27691:366;;;:::o;28063:419::-;28229:4;28267:2;28256:9;28252:18;28244:26;;28316:9;28310:4;28306:20;28302:1;28291:9;28287:17;28280:47;28344:131;28470:4;28344:131;:::i;:::-;28336:139;;28063:419;;;:::o;28488:180::-;28536:77;28533:1;28526:88;28633:4;28630:1;28623:15;28657:4;28654:1;28647:15;28674:305;28714:3;28733:20;28751:1;28733:20;:::i;:::-;28728:25;;28767:20;28785:1;28767:20;:::i;:::-;28762:25;;28921:1;28853:66;28849:74;28846:1;28843:81;28840:107;;;28927:18;;:::i;:::-;28840:107;28971:1;28968;28964:9;28957:16;;28674:305;;;;:::o;28985:170::-;29125:22;29121:1;29113:6;29109:14;29102:46;28985:170;:::o;29161:366::-;29303:3;29324:67;29388:2;29383:3;29324:67;:::i;:::-;29317:74;;29400:93;29489:3;29400:93;:::i;:::-;29518:2;29513:3;29509:12;29502:19;;29161:366;;;:::o;29533:419::-;29699:4;29737:2;29726:9;29722:18;29714:26;;29786:9;29780:4;29776:20;29772:1;29761:9;29757:17;29750:47;29814:131;29940:4;29814:131;:::i;:::-;29806:139;;29533:419;;;:::o;29958:348::-;29998:7;30021:20;30039:1;30021:20;:::i;:::-;30016:25;;30055:20;30073:1;30055:20;:::i;:::-;30050:25;;30243:1;30175:66;30171:74;30168:1;30165:81;30160:1;30153:9;30146:17;30142:105;30139:131;;;30250:18;;:::i;:::-;30139:131;30298:1;30295;30291:9;30280:20;;29958:348;;;;:::o;30312:169::-;30452:21;30448:1;30440:6;30436:14;30429:45;30312:169;:::o;30487:366::-;30629:3;30650:67;30714:2;30709:3;30650:67;:::i;:::-;30643:74;;30726:93;30815:3;30726:93;:::i;:::-;30844:2;30839:3;30835:12;30828:19;;30487:366;;;:::o;30859:419::-;31025:4;31063:2;31052:9;31048:18;31040:26;;31112:9;31106:4;31102:20;31098:1;31087:9;31083:17;31076:47;31140:131;31266:4;31140:131;:::i;:::-;31132:139;;30859:419;;;:::o;31284:173::-;31424:25;31420:1;31412:6;31408:14;31401:49;31284:173;:::o;31463:366::-;31605:3;31626:67;31690:2;31685:3;31626:67;:::i;:::-;31619:74;;31702:93;31791:3;31702:93;:::i;:::-;31820:2;31815:3;31811:12;31804:19;;31463:366;;;:::o;31835:419::-;32001:4;32039:2;32028:9;32024:18;32016:26;;32088:9;32082:4;32078:20;32074:1;32063:9;32059:17;32052:47;32116:131;32242:4;32116:131;:::i;:::-;32108:139;;31835:419;;;:::o;32260:234::-;32400:34;32396:1;32388:6;32384:14;32377:58;32469:17;32464:2;32456:6;32452:15;32445:42;32260:234;:::o;32500:366::-;32642:3;32663:67;32727:2;32722:3;32663:67;:::i;:::-;32656:74;;32739:93;32828:3;32739:93;:::i;:::-;32857:2;32852:3;32848:12;32841:19;;32500:366;;;:::o;32872:419::-;33038:4;33076:2;33065:9;33061:18;33053:26;;33125:9;33119:4;33115:20;33111:1;33100:9;33096:17;33089:47;33153:131;33279:4;33153:131;:::i;:::-;33145:139;;32872:419;;;:::o;33297:148::-;33399:11;33436:3;33421:18;;33297:148;;;;:::o;33451:377::-;33557:3;33585:39;33618:5;33585:39;:::i;:::-;33640:89;33722:6;33717:3;33640:89;:::i;:::-;33633:96;;33738:52;33783:6;33778:3;33771:4;33764:5;33760:16;33738:52;:::i;:::-;33815:6;33810:3;33806:16;33799:23;;33561:267;33451:377;;;;:::o;33834:141::-;33883:4;33906:3;33898:11;;33929:3;33926:1;33919:14;33963:4;33960:1;33950:18;33942:26;;33834:141;;;:::o;34005:845::-;34108:3;34145:5;34139:12;34174:36;34200:9;34174:36;:::i;:::-;34226:89;34308:6;34303:3;34226:89;:::i;:::-;34219:96;;34346:1;34335:9;34331:17;34362:1;34357:137;;;;34508:1;34503:341;;;;34324:520;;34357:137;34441:4;34437:9;34426;34422:25;34417:3;34410:38;34477:6;34472:3;34468:16;34461:23;;34357:137;;34503:341;34570:38;34602:5;34570:38;:::i;:::-;34630:1;34644:154;34658:6;34655:1;34652:13;34644:154;;;34732:7;34726:14;34722:1;34717:3;34713:11;34706:35;34782:1;34773:7;34769:15;34758:26;;34680:4;34677:1;34673:12;34668:17;;34644:154;;;34827:6;34822:3;34818:16;34811:23;;34510:334;;34324:520;;34112:738;;34005:845;;;;:::o;34856:589::-;35081:3;35103:95;35194:3;35185:6;35103:95;:::i;:::-;35096:102;;35215:95;35306:3;35297:6;35215:95;:::i;:::-;35208:102;;35327:92;35415:3;35406:6;35327:92;:::i;:::-;35320:99;;35436:3;35429:10;;34856:589;;;;;;:::o;35451:221::-;35591:34;35587:1;35579:6;35575:14;35568:58;35660:4;35655:2;35647:6;35643:15;35636:29;35451:221;:::o;35678:366::-;35820:3;35841:67;35905:2;35900:3;35841:67;:::i;:::-;35834:74;;35917:93;36006:3;35917:93;:::i;:::-;36035:2;36030:3;36026:12;36019:19;;35678:366;;;:::o;36050:419::-;36216:4;36254:2;36243:9;36239:18;36231:26;;36303:9;36297:4;36293:20;36289:1;36278:9;36274:17;36267:47;36331:131;36457:4;36331:131;:::i;:::-;36323:139;;36050:419;;;:::o;36475:174::-;36615:26;36611:1;36603:6;36599:14;36592:50;36475:174;:::o;36655:366::-;36797:3;36818:67;36882:2;36877:3;36818:67;:::i;:::-;36811:74;;36894:93;36983:3;36894:93;:::i;:::-;37012:2;37007:3;37003:12;36996:19;;36655:366;;;:::o;37027:419::-;37193:4;37231:2;37220:9;37216:18;37208:26;;37280:9;37274:4;37270:20;37266:1;37255:9;37251:17;37244:47;37308:131;37434:4;37308:131;:::i;:::-;37300:139;;37027:419;;;:::o;37452:94::-;37485:8;37533:5;37529:2;37525:14;37504:35;;37452:94;;;:::o;37552:::-;37591:7;37620:20;37634:5;37620:20;:::i;:::-;37609:31;;37552:94;;;:::o;37652:100::-;37691:7;37720:26;37740:5;37720:26;:::i;:::-;37709:37;;37652:100;;;:::o;37758:157::-;37863:45;37883:24;37901:5;37883:24;:::i;:::-;37863:45;:::i;:::-;37858:3;37851:58;37758:157;;:::o;37921:256::-;38033:3;38048:75;38119:3;38110:6;38048:75;:::i;:::-;38148:2;38143:3;38139:12;38132:19;;38168:3;38161:10;;37921:256;;;;:::o;38183:164::-;38323:16;38319:1;38311:6;38307:14;38300:40;38183:164;:::o;38353:366::-;38495:3;38516:67;38580:2;38575:3;38516:67;:::i;:::-;38509:74;;38592:93;38681:3;38592:93;:::i;:::-;38710:2;38705:3;38701:12;38694:19;;38353:366;;;:::o;38725:419::-;38891:4;38929:2;38918:9;38914:18;38906:26;;38978:9;38972:4;38968:20;38964:1;38953:9;38949:17;38942:47;39006:131;39132:4;39006:131;:::i;:::-;38998:139;;38725:419;;;:::o;39150:225::-;39290:34;39286:1;39278:6;39274:14;39267:58;39359:8;39354:2;39346:6;39342:15;39335:33;39150:225;:::o;39381:366::-;39523:3;39544:67;39608:2;39603:3;39544:67;:::i;:::-;39537:74;;39620:93;39709:3;39620:93;:::i;:::-;39738:2;39733:3;39729:12;39722:19;;39381:366;;;:::o;39753:419::-;39919:4;39957:2;39946:9;39942:18;39934:26;;40006:9;40000:4;39996:20;39992:1;39981:9;39977:17;39970:47;40034:131;40160:4;40034:131;:::i;:::-;40026:139;;39753:419;;;:::o;40178:182::-;40318:34;40314:1;40306:6;40302:14;40295:58;40178:182;:::o;40366:366::-;40508:3;40529:67;40593:2;40588:3;40529:67;:::i;:::-;40522:74;;40605:93;40694:3;40605:93;:::i;:::-;40723:2;40718:3;40714:12;40707:19;;40366:366;;;:::o;40738:419::-;40904:4;40942:2;40931:9;40927:18;40919:26;;40991:9;40985:4;40981:20;40977:1;40966:9;40962:17;40955:47;41019:131;41145:4;41019:131;:::i;:::-;41011:139;;40738:419;;;:::o;41163:98::-;41214:6;41248:5;41242:12;41232:22;;41163:98;;;:::o;41267:168::-;41350:11;41384:6;41379:3;41372:19;41424:4;41419:3;41415:14;41400:29;;41267:168;;;;:::o;41441:360::-;41527:3;41555:38;41587:5;41555:38;:::i;:::-;41609:70;41672:6;41667:3;41609:70;:::i;:::-;41602:77;;41688:52;41733:6;41728:3;41721:4;41714:5;41710:16;41688:52;:::i;:::-;41765:29;41787:6;41765:29;:::i;:::-;41760:3;41756:39;41749:46;;41531:270;41441:360;;;;:::o;41807:640::-;42002:4;42040:3;42029:9;42025:19;42017:27;;42054:71;42122:1;42111:9;42107:17;42098:6;42054:71;:::i;:::-;42135:72;42203:2;42192:9;42188:18;42179:6;42135:72;:::i;:::-;42217;42285:2;42274:9;42270:18;42261:6;42217:72;:::i;:::-;42336:9;42330:4;42326:20;42321:2;42310:9;42306:18;42299:48;42364:76;42435:4;42426:6;42364:76;:::i;:::-;42356:84;;41807:640;;;;;;;:::o;42453:141::-;42509:5;42540:6;42534:13;42525:22;;42556:32;42582:5;42556:32;:::i;:::-;42453:141;;;;:::o;42600:349::-;42669:6;42718:2;42706:9;42697:7;42693:23;42689:32;42686:119;;;42724:79;;:::i;:::-;42686:119;42844:1;42869:63;42924:7;42915:6;42904:9;42900:22;42869:63;:::i;:::-;42859:73;;42815:127;42600:349;;;;:::o;42955:233::-;42994:3;43017:24;43035:5;43017:24;:::i;:::-;43008:33;;43063:66;43056:5;43053:77;43050:103;;;43133:18;;:::i;:::-;43050:103;43180:1;43173:5;43169:13;43162:20;;42955:233;;;:::o;43194:180::-;43242:77;43239:1;43232:88;43339:4;43336:1;43329:15;43363:4;43360:1;43353:15;43380:185;43420:1;43437:20;43455:1;43437:20;:::i;:::-;43432:25;;43471:20;43489:1;43471:20;:::i;:::-;43466:25;;43510:1;43500:35;;43515:18;;:::i;:::-;43500:35;43557:1;43554;43550:9;43545:14;;43380:185;;;;:::o;43571:191::-;43611:4;43631:20;43649:1;43631:20;:::i;:::-;43626:25;;43665:20;43683:1;43665:20;:::i;:::-;43660:25;;43704:1;43701;43698:8;43695:34;;;43709:18;;:::i;:::-;43695:34;43754:1;43751;43747:9;43739:17;;43571:191;;;;:::o;43768:176::-;43800:1;43817:20;43835:1;43817:20;:::i;:::-;43812:25;;43851:20;43869:1;43851:20;:::i;:::-;43846:25;;43890:1;43880:35;;43895:18;;:::i;:::-;43880:35;43936:1;43933;43929:9;43924:14;;43768:176;;;;:::o

Swarm Source

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