ETH Price: $3,484.78 (+3.37%)
Gas: 5 Gwei

Token

ChubbyPenguins (Chubby)
 

Overview

Max Total Supply

3,200 Chubby

Holders

1,400

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
jefimtil.eth
Balance
2 Chubby
0xd0fa0c70ea58ccd804651de1daf2ecd8ad7fddd6
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:
ChubbyPenguins

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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




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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/witch.sol




pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
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();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

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

    // ==============================
    //            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`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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

// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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 tokenId of the next token 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`
    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 => address) private _tokenApprovals;

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

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

    /**
     * @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 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 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 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 returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    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: 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.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view 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 auxillary 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 auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * 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 ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _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, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));
        if (to == owner) revert ApprovalToCurrentOwner();

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // 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 `_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));

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try 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))
                }
            }
        }
    }

    /**
     * @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 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 returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 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: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for { 
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp { 
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }
            
            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }
//1b0014041a0a15
    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @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.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}



pragma solidity ^0.8.0;




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

    string private baseURI;

    uint256 public price = 0.0069 ether;

    uint256 public maxPerWallet = 5;

    uint256 public maxFreePerWallet = 1;

    uint256 public maxSupply = 3200;  //Team + Community Supply


    bool public mintEnabled = false;
    bool public publicEnabled = false;

    bytes32 freelistRoot;
    bytes32 allowlistRoot;

    string public hiddenURI="ipfs://bafybeiazodctovkc7qjblt6oltqcbe2uob52t2p65qfgk7prlcy5mrdzdm/hidden.json";

    bool public revealed = false;

    
    mapping(address => bool ) private _mintedFree;

    constructor() ERC721A("ChubbyPenguins", "Chubby") {
        
     
    }




function freelistMint(bytes32[] calldata _merkleProof,uint256 count) external payable  nonReentrant {

        bool isFreeLeft = !(_mintedFree[msg.sender]) ;
        bool isEqual= count==maxFreePerWallet;

        uint256 cost = price;
       

        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        
        if(  isFreeLeft  && isEqual){
            cost=0;
        }


        if( isFreeLeft && !isEqual ){
        require(msg.value >= (count-maxFreePerWallet) * cost, "Please send the exact amount.");
        }
        else{
         require(msg.value >= count * cost, "Please send the exact amount.");

        }
        require(MerkleProof.verify(_merkleProof, freelistRoot, leaf),"Incorrect Whitelist Proof");
        require(totalSupply() + count <= maxSupply , "No more");
        require(count>0,"Please enter a number");
        require(mintEnabled, "Minting is not live yet");
        require(_numberMinted(msg.sender)+count <= maxPerWallet , "Can not mint more than 5");
       

       _mintedFree[msg.sender]=true;

        

        _safeMint(msg.sender, count);
    }

    function allowListMint(bytes32[] calldata _merkleProof,uint256 count) external payable {
        
        
       bytes32 leaf = keccak256(abi.encodePacked(msg.sender));

      
        require(MerkleProof.verify(_merkleProof, allowlistRoot, leaf),"Incorrect Whitelist Proof");
        require(msg.value >=  price * count, "Please send the exact amount.");
        require(_numberMinted(msg.sender)+count <=maxPerWallet,"You cant mint anymore");
        require(totalSupply()+count<= maxSupply , "No more");
        require(mintEnabled, "Minting is not live yet");
       

        _safeMint(msg.sender, count);
    }

    function publicMint(uint256 count) external payable   {
        

        require(msg.value >= count * price, "Please send the exact amount.");
        require(totalSupply() + count <= maxSupply , "No more NFT left");
        require(_numberMinted(msg.sender)+count <= maxPerWallet , "Can not mint more than 5");
        require(count>0,"Please enter a number");
        require(publicEnabled, "Minting is not live yet");
        
        _safeMint(msg.sender, count);
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
    function _isMintedFree(address minter) external view  returns (bool) {
        return _mintedFree[minter];
    }

    function _mintedAmount(address minter) external view  returns (uint256) {
        return _numberMinted(minter);
    }

    function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721AMetadata: URI query for nonexistent token"
    );
     if (revealed == false) {
      return hiddenURI;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), ".json"))
        : "";
  }

    function setBaseURI(string memory uri) public onlyOwner {
        baseURI = uri;
    }

    function setPreSaleRoot(bytes32 _presaleRoot_1, bytes32 _presaleRoot_2)
        external
        onlyOwner
    {  
        freelistRoot = _presaleRoot_1;
        allowlistRoot = _presaleRoot_2;
    }

  

    function setMaxPerWallet(uint256 amount) external onlyOwner {
        maxPerWallet = amount;
    }

    function setPrice(uint256 _newPrice) external onlyOwner {
        price = _newPrice;
    }

   function setMaxSupply(uint256 _newSupply) external onlyOwner {
        maxSupply = _newSupply;
    }

    function flipWhitelist(bool status) external onlyOwner {
        mintEnabled = status;
    }

    function flipPublic(bool status) external onlyOwner {
        publicEnabled = status;
    }

    function reveal() external onlyOwner {
    revealed = !revealed;
   
  }

 function airdrop(uint256 _mintAmount, address destination) public onlyOwner {
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    uint256 supply = totalSupply();
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

      _safeMint(destination, _mintAmount);
    
  }

      function withdraw() external onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success, "Transfer failed.");
    }


}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":"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":"minter","type":"address"}],"name":"_isMintedFree","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"_mintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"allowListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"flipPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"flipWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"freelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURI","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":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","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":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_presaleRoot_1","type":"bytes32"},{"internalType":"bytes32","name":"_presaleRoot_2","type":"bytes32"}],"name":"setPreSaleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526618838370f34000600b556005600c556001600d55610c80600e556000600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff0219169083151502179055506040518060800160405280604e81526020016200484f604e9139601290805190602001906200008692919062000267565b506000601360006101000a81548160ff021916908315150217905550348015620000af57600080fd5b506040518060400160405280600e81526020017f43687562627950656e6775696e730000000000000000000000000000000000008152506040518060400160405280600681526020017f436875626279000000000000000000000000000000000000000000000000000081525081600290805190602001906200013492919062000267565b5080600390805190602001906200014d92919062000267565b506200015e6200019460201b60201c565b6000819055505050620001866200017a6200019960201b60201c565b620001a160201b60201c565b60016009819055506200037c565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002759062000317565b90600052602060002090601f016020900481019282620002995760008555620002e5565b82601f10620002b457805160ff1916838001178555620002e5565b82800160010185558215620002e5579182015b82811115620002e4578251825591602001919060010190620002c7565b5b509050620002f49190620002f8565b5090565b5b8082111562000313576000816000905550600101620002f9565b5090565b600060028204905060018216806200033057607f821691505b602082108114156200034757620003466200034d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6144c3806200038c6000396000f3fe60806040526004361061023b5760003560e01c806391b7f5ed1161012e578063bc63f02e116100ab578063e985e9c51161006f578063e985e9c51461081b578063ed64892b14610858578063f2ca018214610895578063f2fde38b146108b1578063f55e7fc7146108da5761023b565b8063bc63f02e14610736578063c87b56dd1461075f578063d12397301461079c578063d5abeb01146107c7578063e268e4d3146107f25761023b565b8063a22cb465116100f2578063a22cb46514610679578063a475b5dd146106a2578063a7027357146106b9578063b88d4fde146106e4578063bbb812791461070d5761023b565b806391b7f5ed146105b357806392ea1de2146105dc57806395d89b41146105f85780639b001f4514610623578063a035b1fe1461064e5761023b565b8063453c2310116101bc57806370a082311161018057806370a08231146104e0578063715018a61461051d57806377aeead9146105345780638cc54e7f1461055d5780638da5cb5b146105885761023b565b8063453c2310146103fb578063518302271461042657806355f804b3146104515780636352211e1461047a5780636f8b44b0146104b75761023b565b806323b872dd1161020357806323b872dd146103395780632810570f146103625780632db115441461039f5780633ccfd60b146103bb57806342842e0e146103d25761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806318160ddd1461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613521565b610903565b6040516102749190613a31565b60405180910390f35b34801561028957600080fd5b50610292610995565b60405161029f9190613a4c565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca91906135c4565b610a27565b6040516102dc91906139ca565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190613414565b610aa3565b005b34801561031a57600080fd5b50610323610c4a565b6040516103309190613c4e565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b91906132fe565b610c61565b005b34801561036e57600080fd5b5061038960048036038101906103849190613291565b610c71565b6040516103969190613a31565b60405180910390f35b6103b960048036038101906103b491906135c4565b610cc7565b005b3480156103c757600080fd5b506103d0610e65565b005b3480156103de57600080fd5b506103f960048036038101906103f491906132fe565b610f90565b005b34801561040757600080fd5b50610410610fb0565b60405161041d9190613c4e565b60405180910390f35b34801561043257600080fd5b5061043b610fb6565b6040516104489190613a31565b60405180910390f35b34801561045d57600080fd5b506104786004803603810190610473919061357b565b610fc9565b005b34801561048657600080fd5b506104a1600480360381019061049c91906135c4565b61105f565b6040516104ae91906139ca565b60405180910390f35b3480156104c357600080fd5b506104de60048036038101906104d991906135c4565b611071565b005b3480156104ec57600080fd5b5061050760048036038101906105029190613291565b6110f7565b6040516105149190613c4e565b60405180910390f35b34801561052957600080fd5b506105326111b0565b005b34801561054057600080fd5b5061055b600480360381019061055691906134e1565b611238565b005b34801561056957600080fd5b506105726112c6565b60405161057f9190613a4c565b60405180910390f35b34801561059457600080fd5b5061059d611354565b6040516105aa91906139ca565b60405180910390f35b3480156105bf57600080fd5b506105da60048036038101906105d591906135c4565b61137e565b005b6105f660048036038101906105f19190613454565b611404565b005b34801561060457600080fd5b5061060d61161a565b60405161061a9190613a4c565b60405180910390f35b34801561062f57600080fd5b506106386116ac565b6040516106459190613a31565b60405180910390f35b34801561065a57600080fd5b506106636116bf565b6040516106709190613c4e565b60405180910390f35b34801561068557600080fd5b506106a0600480360381019061069b91906133d4565b6116c5565b005b3480156106ae57600080fd5b506106b761183d565b005b3480156106c557600080fd5b506106ce6118e5565b6040516106db9190613c4e565b60405180910390f35b3480156106f057600080fd5b5061070b60048036038101906107069190613351565b6118eb565b005b34801561071957600080fd5b50610734600480360381019061072f91906134b4565b61195e565b005b34801561074257600080fd5b5061075d600480360381019061075891906135f1565b6119f7565b005b34801561076b57600080fd5b50610786600480360381019061078191906135c4565b611b21565b6040516107939190613a4c565b60405180910390f35b3480156107a857600080fd5b506107b1611c77565b6040516107be9190613a31565b60405180910390f35b3480156107d357600080fd5b506107dc611c8a565b6040516107e99190613c4e565b60405180910390f35b3480156107fe57600080fd5b50610819600480360381019061081491906135c4565b611c90565b005b34801561082757600080fd5b50610842600480360381019061083d91906132be565b611d16565b60405161084f9190613a31565b60405180910390f35b34801561086457600080fd5b5061087f600480360381019061087a9190613291565b611daa565b60405161088c9190613c4e565b60405180910390f35b6108af60048036038101906108aa9190613454565b611dbc565b005b3480156108bd57600080fd5b506108d860048036038101906108d39190613291565b6121ab565b005b3480156108e657600080fd5b5061090160048036038101906108fc91906134b4565b6122a3565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061095e57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061098e5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109a490613f13565b80601f01602080910402602001604051908101604052809291908181526020018280546109d090613f13565b8015610a1d5780601f106109f257610100808354040283529160200191610a1d565b820191906000526020600020905b815481529060010190602001808311610a0057829003601f168201915b5050505050905090565b6000610a328261233c565b610a68576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aae8261239b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b16576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b35612469565b73ffffffffffffffffffffffffffffffffffffffff1614610b9857610b6181610b5c612469565b611d16565b610b97576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610c54612471565b6001546000540303905090565b610c6c838383612476565b505050565b6000601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600b5481610cd59190613dc5565b341015610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e90613bae565b60405180910390fd5b600e5481610d23610c4a565b610d2d9190613d3e565b1115610d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6590613b4e565b60405180910390fd5b600c5481610d7b33612820565b610d859190613d3e565b1115610dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbd90613aee565b60405180910390fd5b60008111610e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0090613b0e565b60405180910390fd5b600f60019054906101000a900460ff16610e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4f90613a8e565b60405180910390fd5b610e623382612877565b50565b610e6d612895565b73ffffffffffffffffffffffffffffffffffffffff16610e8b611354565b73ffffffffffffffffffffffffffffffffffffffff1614610ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed890613b8e565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610f07906139b5565b60006040518083038185875af1925050503d8060008114610f44576040519150601f19603f3d011682016040523d82523d6000602084013e610f49565b606091505b5050905080610f8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8490613bce565b60405180910390fd5b50565b610fab838383604051806020016040528060008152506118eb565b505050565b600c5481565b601360009054906101000a900460ff1681565b610fd1612895565b73ffffffffffffffffffffffffffffffffffffffff16610fef611354565b73ffffffffffffffffffffffffffffffffffffffff1614611045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103c90613b8e565b60405180910390fd5b80600a908051906020019061105b92919061303a565b5050565b600061106a8261239b565b9050919050565b611079612895565b73ffffffffffffffffffffffffffffffffffffffff16611097611354565b73ffffffffffffffffffffffffffffffffffffffff16146110ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e490613b8e565b60405180910390fd5b80600e8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561115f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111b8612895565b73ffffffffffffffffffffffffffffffffffffffff166111d6611354565b73ffffffffffffffffffffffffffffffffffffffff161461122c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122390613b8e565b60405180910390fd5b611236600061289d565b565b611240612895565b73ffffffffffffffffffffffffffffffffffffffff1661125e611354565b73ffffffffffffffffffffffffffffffffffffffff16146112b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ab90613b8e565b60405180910390fd5b81601081905550806011819055505050565b601280546112d390613f13565b80601f01602080910402602001604051908101604052809291908181526020018280546112ff90613f13565b801561134c5780601f106113215761010080835404028352916020019161134c565b820191906000526020600020905b81548152906001019060200180831161132f57829003601f168201915b505050505081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611386612895565b73ffffffffffffffffffffffffffffffffffffffff166113a4611354565b73ffffffffffffffffffffffffffffffffffffffff16146113fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f190613b8e565b60405180910390fd5b80600b8190555050565b600033604051602001611417919061396b565b60405160208183030381529060405280519060200120905061147d848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060115483612963565b6114bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b390613c0e565b60405180910390fd5b81600b546114ca9190613dc5565b34101561150c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150390613bae565b60405180910390fd5b600c548261151933612820565b6115239190613d3e565b1115611564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155b90613b2e565b60405180910390fd5b600e5482611570610c4a565b61157a9190613d3e565b11156115bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b290613aae565b60405180910390fd5b600f60009054906101000a900460ff1661160a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160190613a8e565b60405180910390fd5b6116143383612877565b50505050565b60606003805461162990613f13565b80601f016020809104026020016040519081016040528092919081815260200182805461165590613f13565b80156116a25780601f10611677576101008083540402835291602001916116a2565b820191906000526020600020905b81548152906001019060200180831161168557829003601f168201915b5050505050905090565b600f60019054906101000a900460ff1681565b600b5481565b6116cd612469565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611732576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061173f612469565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117ec612469565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118319190613a31565b60405180910390a35050565b611845612895565b73ffffffffffffffffffffffffffffffffffffffff16611863611354565b73ffffffffffffffffffffffffffffffffffffffff16146118b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b090613b8e565b60405180910390fd5b601360009054906101000a900460ff1615601360006101000a81548160ff021916908315150217905550565b600d5481565b6118f6848484612476565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611958576119218484848461297a565b611957576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611966612895565b73ffffffffffffffffffffffffffffffffffffffff16611984611354565b73ffffffffffffffffffffffffffffffffffffffff16146119da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d190613b8e565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6119ff612895565b73ffffffffffffffffffffffffffffffffffffffff16611a1d611354565b73ffffffffffffffffffffffffffffffffffffffff1614611a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6a90613b8e565b60405180910390fd5b60008211611ab6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aad90613c2e565b60405180910390fd5b6000611ac0610c4a565b9050600e548382611ad19190613d3e565b1115611b12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0990613b6e565b60405180910390fd5b611b1c8284612877565b505050565b6060611b2c8261233c565b611b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6290613a6e565b60405180910390fd5b60001515601360009054906101000a900460ff1615151415611c195760128054611b9490613f13565b80601f0160208091040260200160405190810160405280929190818152602001828054611bc090613f13565b8015611c0d5780601f10611be257610100808354040283529160200191611c0d565b820191906000526020600020905b815481529060010190602001808311611bf057829003601f168201915b50505050509050611c72565b6000611c23612ada565b90506000815111611c435760405180602001604052806000815250611c6e565b80611c4d84612b6c565b604051602001611c5e929190613986565b6040516020818303038152906040525b9150505b919050565b600f60009054906101000a900460ff1681565b600e5481565b611c98612895565b73ffffffffffffffffffffffffffffffffffffffff16611cb6611354565b73ffffffffffffffffffffffffffffffffffffffff1614611d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0390613b8e565b60405180910390fd5b80600c8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000611db582612820565b9050919050565b60026009541415611e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df990613bee565b60405180910390fd5b60026009819055506000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161590506000600d54831490506000600b549050600033604051602001611e7f919061396b565b604051602081830303815290604052805190602001209050838015611ea15750825b15611eab57600091505b838015611eb6575082155b15611f1b5781600d5486611eca9190613e1f565b611ed49190613dc5565b341015611f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0d90613bae565b60405180910390fd5b611f6a565b8185611f279190613dc5565b341015611f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6090613bae565b60405180910390fd5b5b611fb8878780806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060105483612963565b611ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fee90613c0e565b60405180910390fd5b600e5485612003610c4a565b61200d9190613d3e565b111561204e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204590613aae565b60405180910390fd5b60008511612091576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208890613b0e565b60405180910390fd5b600f60009054906101000a900460ff166120e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d790613a8e565b60405180910390fd5b600c54856120ed33612820565b6120f79190613d3e565b1115612138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212f90613aee565b60405180910390fd5b6001601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061219a3386612877565b505050506001600981905550505050565b6121b3612895565b73ffffffffffffffffffffffffffffffffffffffff166121d1611354565b73ffffffffffffffffffffffffffffffffffffffff1614612227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221e90613b8e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228e90613ace565b60405180910390fd5b6122a08161289d565b50565b6122ab612895565b73ffffffffffffffffffffffffffffffffffffffff166122c9611354565b73ffffffffffffffffffffffffffffffffffffffff161461231f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231690613b8e565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b600081612347612471565b11158015612356575060005482105b8015612394575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806123aa612471565b11612432576000548110156124315760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561242f575b60008114156124255760046000836001900393508381526020019081526020016000205490506123fa565b8092505050612464565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b60006124818261239b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146124e8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612509612469565b73ffffffffffffffffffffffffffffffffffffffff161480612538575061253785612532612469565b611d16565b5b8061257d5750612546612469565b73ffffffffffffffffffffffffffffffffffffffff1661256584610a27565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806125b6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561261d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61262a8585856001612ccd565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61272786612cd3565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831614156127b15760006001840190506000600460008381526020019081526020016000205414156127af5760005481146127ae578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128198585856001612cdd565b5050505050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b612891828260405180602001604052806000815250612ce3565b5050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000826129708584612f98565b1490509392505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129a0612469565b8786866040518563ffffffff1660e01b81526004016129c294939291906139e5565b602060405180830381600087803b1580156129dc57600080fd5b505af1925050508015612a0d57506040513d601f19601f82011682018060405250810190612a0a919061354e565b60015b612a87573d8060008114612a3d576040519150601f19603f3d011682016040523d82523d6000602084013e612a42565b606091505b50600081511415612a7f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612ae990613f13565b80601f0160208091040260200160405190810160405280929190818152602001828054612b1590613f13565b8015612b625780601f10612b3757610100808354040283529160200191612b62565b820191906000526020600020905b815481529060010190602001808311612b4557829003601f168201915b5050505050905090565b60606000821415612bb4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612cc8565b600082905060005b60008214612be6578080612bcf90613f76565b915050600a82612bdf9190613d94565b9150612bbc565b60008167ffffffffffffffff811115612c0257612c016140d0565b5b6040519080825280601f01601f191660200182016040528015612c345781602001600182028036833780820191505090505b5090505b60008514612cc157600182612c4d9190613e1f565b9150600a85612c5c9190613fe3565b6030612c689190613d3e565b60f81b818381518110612c7e57612c7d6140a1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612cba9190613d94565b9450612c38565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612d50576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612d8b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612d986000858386612ccd565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612dfd60018514612fee565b901b60a042901b612e0d86612cd3565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612f11575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ec1600087848060010195508761297a565b612ef7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612e52578260005414612f0c57600080fd5b612f7c565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612f12575b816000819055505050612f926000858386612cdd565b50505050565b60008082905060005b8451811015612fe357612fce82868381518110612fc157612fc06140a1565b5b6020026020010151612ff8565b91508080612fdb90613f76565b915050612fa1565b508091505092915050565b6000819050919050565b60008183106130105761300b8284613023565b61301b565b61301a8383613023565b5b905092915050565b600082600052816020526040600020905092915050565b82805461304690613f13565b90600052602060002090601f01602090048101928261306857600085556130af565b82601f1061308157805160ff19168380011785556130af565b828001600101855582156130af579182015b828111156130ae578251825591602001919060010190613093565b5b5090506130bc91906130c0565b5090565b5b808211156130d95760008160009055506001016130c1565b5090565b60006130f06130eb84613c8e565b613c69565b90508281526020810184848401111561310c5761310b61410e565b5b613117848285613ed1565b509392505050565b600061313261312d84613cbf565b613c69565b90508281526020810184848401111561314e5761314d61410e565b5b613159848285613ed1565b509392505050565b6000813590506131708161441a565b92915050565b60008083601f84011261318c5761318b614104565b5b8235905067ffffffffffffffff8111156131a9576131a86140ff565b5b6020830191508360208202830111156131c5576131c4614109565b5b9250929050565b6000813590506131db81614431565b92915050565b6000813590506131f081614448565b92915050565b6000813590506132058161445f565b92915050565b60008151905061321a8161445f565b92915050565b600082601f83011261323557613234614104565b5b81356132458482602086016130dd565b91505092915050565b600082601f83011261326357613262614104565b5b813561327384826020860161311f565b91505092915050565b60008135905061328b81614476565b92915050565b6000602082840312156132a7576132a6614118565b5b60006132b584828501613161565b91505092915050565b600080604083850312156132d5576132d4614118565b5b60006132e385828601613161565b92505060206132f485828601613161565b9150509250929050565b60008060006060848603121561331757613316614118565b5b600061332586828701613161565b935050602061333686828701613161565b92505060406133478682870161327c565b9150509250925092565b6000806000806080858703121561336b5761336a614118565b5b600061337987828801613161565b945050602061338a87828801613161565b935050604061339b8782880161327c565b925050606085013567ffffffffffffffff8111156133bc576133bb614113565b5b6133c887828801613220565b91505092959194509250565b600080604083850312156133eb576133ea614118565b5b60006133f985828601613161565b925050602061340a858286016131cc565b9150509250929050565b6000806040838503121561342b5761342a614118565b5b600061343985828601613161565b925050602061344a8582860161327c565b9150509250929050565b60008060006040848603121561346d5761346c614118565b5b600084013567ffffffffffffffff81111561348b5761348a614113565b5b61349786828701613176565b935093505060206134aa8682870161327c565b9150509250925092565b6000602082840312156134ca576134c9614118565b5b60006134d8848285016131cc565b91505092915050565b600080604083850312156134f8576134f7614118565b5b6000613506858286016131e1565b9250506020613517858286016131e1565b9150509250929050565b60006020828403121561353757613536614118565b5b6000613545848285016131f6565b91505092915050565b60006020828403121561356457613563614118565b5b60006135728482850161320b565b91505092915050565b60006020828403121561359157613590614118565b5b600082013567ffffffffffffffff8111156135af576135ae614113565b5b6135bb8482850161324e565b91505092915050565b6000602082840312156135da576135d9614118565b5b60006135e88482850161327c565b91505092915050565b6000806040838503121561360857613607614118565b5b60006136168582860161327c565b925050602061362785828601613161565b9150509250929050565b61363a81613e53565b82525050565b61365161364c82613e53565b613fbf565b82525050565b61366081613e65565b82525050565b600061367182613cf0565b61367b8185613d06565b935061368b818560208601613ee0565b6136948161411d565b840191505092915050565b60006136aa82613cfb565b6136b48185613d22565b93506136c4818560208601613ee0565b6136cd8161411d565b840191505092915050565b60006136e382613cfb565b6136ed8185613d33565b93506136fd818560208601613ee0565b80840191505092915050565b6000613716603083613d22565b91506137218261413b565b604082019050919050565b6000613739601783613d22565b91506137448261418a565b602082019050919050565b600061375c600783613d22565b9150613767826141b3565b602082019050919050565b600061377f602683613d22565b915061378a826141dc565b604082019050919050565b60006137a2601883613d22565b91506137ad8261422b565b602082019050919050565b60006137c5601583613d22565b91506137d082614254565b602082019050919050565b60006137e8601583613d22565b91506137f38261427d565b602082019050919050565b600061380b601083613d22565b9150613816826142a6565b602082019050919050565b600061382e601683613d22565b9150613839826142cf565b602082019050919050565b6000613851600583613d33565b915061385c826142f8565b600582019050919050565b6000613874602083613d22565b915061387f82614321565b602082019050919050565b6000613897601d83613d22565b91506138a28261434a565b602082019050919050565b60006138ba600083613d17565b91506138c582614373565b600082019050919050565b60006138dd601083613d22565b91506138e882614376565b602082019050919050565b6000613900601f83613d22565b915061390b8261439f565b602082019050919050565b6000613923601983613d22565b915061392e826143c8565b602082019050919050565b6000613946601b83613d22565b9150613951826143f1565b602082019050919050565b61396581613ec7565b82525050565b60006139778284613640565b60148201915081905092915050565b600061399282856136d8565b915061399e82846136d8565b91506139a982613844565b91508190509392505050565b60006139c0826138ad565b9150819050919050565b60006020820190506139df6000830184613631565b92915050565b60006080820190506139fa6000830187613631565b613a076020830186613631565b613a14604083018561395c565b8181036060830152613a268184613666565b905095945050505050565b6000602082019050613a466000830184613657565b92915050565b60006020820190508181036000830152613a66818461369f565b905092915050565b60006020820190508181036000830152613a8781613709565b9050919050565b60006020820190508181036000830152613aa78161372c565b9050919050565b60006020820190508181036000830152613ac78161374f565b9050919050565b60006020820190508181036000830152613ae781613772565b9050919050565b60006020820190508181036000830152613b0781613795565b9050919050565b60006020820190508181036000830152613b27816137b8565b9050919050565b60006020820190508181036000830152613b47816137db565b9050919050565b60006020820190508181036000830152613b67816137fe565b9050919050565b60006020820190508181036000830152613b8781613821565b9050919050565b60006020820190508181036000830152613ba781613867565b9050919050565b60006020820190508181036000830152613bc78161388a565b9050919050565b60006020820190508181036000830152613be7816138d0565b9050919050565b60006020820190508181036000830152613c07816138f3565b9050919050565b60006020820190508181036000830152613c2781613916565b9050919050565b60006020820190508181036000830152613c4781613939565b9050919050565b6000602082019050613c63600083018461395c565b92915050565b6000613c73613c84565b9050613c7f8282613f45565b919050565b6000604051905090565b600067ffffffffffffffff821115613ca957613ca86140d0565b5b613cb28261411d565b9050602081019050919050565b600067ffffffffffffffff821115613cda57613cd96140d0565b5b613ce38261411d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d4982613ec7565b9150613d5483613ec7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d8957613d88614014565b5b828201905092915050565b6000613d9f82613ec7565b9150613daa83613ec7565b925082613dba57613db9614043565b5b828204905092915050565b6000613dd082613ec7565b9150613ddb83613ec7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e1457613e13614014565b5b828202905092915050565b6000613e2a82613ec7565b9150613e3583613ec7565b925082821015613e4857613e47614014565b5b828203905092915050565b6000613e5e82613ea7565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613efe578082015181840152602081019050613ee3565b83811115613f0d576000848401525b50505050565b60006002820490506001821680613f2b57607f821691505b60208210811415613f3f57613f3e614072565b5b50919050565b613f4e8261411d565b810181811067ffffffffffffffff82111715613f6d57613f6c6140d0565b5b80604052505050565b6000613f8182613ec7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fb457613fb3614014565b5b600182019050919050565b6000613fca82613fd1565b9050919050565b6000613fdc8261412e565b9050919050565b6000613fee82613ec7565b9150613ff983613ec7565b92508261400957614008614043565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b7f4d696e74696e67206973206e6f74206c69766520796574000000000000000000600082015250565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f43616e206e6f74206d696e74206d6f7265207468616e20350000000000000000600082015250565b7f506c6561736520656e7465722061206e756d6265720000000000000000000000600082015250565b7f596f752063616e74206d696e7420616e796d6f72650000000000000000000000600082015250565b7f4e6f206d6f7265204e4654206c65667400000000000000000000000000000000600082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e636f72726563742057686974656c6973742050726f6f6600000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b61442381613e53565b811461442e57600080fd5b50565b61443a81613e65565b811461444557600080fd5b50565b61445181613e71565b811461445c57600080fd5b50565b61446881613e7b565b811461447357600080fd5b50565b61447f81613ec7565b811461448a57600080fd5b5056fea26469706673582212204ee740f0f435d1ef5d617ad6f2f0518450b965e0e765458a7182ff96fa0878df64736f6c63430008070033697066733a2f2f62616679626569617a6f6463746f766b6337716a626c74366f6c747163626532756f62353274327036357166676b3770726c6379356d72647a646d2f68696464656e2e6a736f6e

Deployed Bytecode

0x60806040526004361061023b5760003560e01c806391b7f5ed1161012e578063bc63f02e116100ab578063e985e9c51161006f578063e985e9c51461081b578063ed64892b14610858578063f2ca018214610895578063f2fde38b146108b1578063f55e7fc7146108da5761023b565b8063bc63f02e14610736578063c87b56dd1461075f578063d12397301461079c578063d5abeb01146107c7578063e268e4d3146107f25761023b565b8063a22cb465116100f2578063a22cb46514610679578063a475b5dd146106a2578063a7027357146106b9578063b88d4fde146106e4578063bbb812791461070d5761023b565b806391b7f5ed146105b357806392ea1de2146105dc57806395d89b41146105f85780639b001f4514610623578063a035b1fe1461064e5761023b565b8063453c2310116101bc57806370a082311161018057806370a08231146104e0578063715018a61461051d57806377aeead9146105345780638cc54e7f1461055d5780638da5cb5b146105885761023b565b8063453c2310146103fb578063518302271461042657806355f804b3146104515780636352211e1461047a5780636f8b44b0146104b75761023b565b806323b872dd1161020357806323b872dd146103395780632810570f146103625780632db115441461039f5780633ccfd60b146103bb57806342842e0e146103d25761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806318160ddd1461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613521565b610903565b6040516102749190613a31565b60405180910390f35b34801561028957600080fd5b50610292610995565b60405161029f9190613a4c565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca91906135c4565b610a27565b6040516102dc91906139ca565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190613414565b610aa3565b005b34801561031a57600080fd5b50610323610c4a565b6040516103309190613c4e565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b91906132fe565b610c61565b005b34801561036e57600080fd5b5061038960048036038101906103849190613291565b610c71565b6040516103969190613a31565b60405180910390f35b6103b960048036038101906103b491906135c4565b610cc7565b005b3480156103c757600080fd5b506103d0610e65565b005b3480156103de57600080fd5b506103f960048036038101906103f491906132fe565b610f90565b005b34801561040757600080fd5b50610410610fb0565b60405161041d9190613c4e565b60405180910390f35b34801561043257600080fd5b5061043b610fb6565b6040516104489190613a31565b60405180910390f35b34801561045d57600080fd5b506104786004803603810190610473919061357b565b610fc9565b005b34801561048657600080fd5b506104a1600480360381019061049c91906135c4565b61105f565b6040516104ae91906139ca565b60405180910390f35b3480156104c357600080fd5b506104de60048036038101906104d991906135c4565b611071565b005b3480156104ec57600080fd5b5061050760048036038101906105029190613291565b6110f7565b6040516105149190613c4e565b60405180910390f35b34801561052957600080fd5b506105326111b0565b005b34801561054057600080fd5b5061055b600480360381019061055691906134e1565b611238565b005b34801561056957600080fd5b506105726112c6565b60405161057f9190613a4c565b60405180910390f35b34801561059457600080fd5b5061059d611354565b6040516105aa91906139ca565b60405180910390f35b3480156105bf57600080fd5b506105da60048036038101906105d591906135c4565b61137e565b005b6105f660048036038101906105f19190613454565b611404565b005b34801561060457600080fd5b5061060d61161a565b60405161061a9190613a4c565b60405180910390f35b34801561062f57600080fd5b506106386116ac565b6040516106459190613a31565b60405180910390f35b34801561065a57600080fd5b506106636116bf565b6040516106709190613c4e565b60405180910390f35b34801561068557600080fd5b506106a0600480360381019061069b91906133d4565b6116c5565b005b3480156106ae57600080fd5b506106b761183d565b005b3480156106c557600080fd5b506106ce6118e5565b6040516106db9190613c4e565b60405180910390f35b3480156106f057600080fd5b5061070b60048036038101906107069190613351565b6118eb565b005b34801561071957600080fd5b50610734600480360381019061072f91906134b4565b61195e565b005b34801561074257600080fd5b5061075d600480360381019061075891906135f1565b6119f7565b005b34801561076b57600080fd5b50610786600480360381019061078191906135c4565b611b21565b6040516107939190613a4c565b60405180910390f35b3480156107a857600080fd5b506107b1611c77565b6040516107be9190613a31565b60405180910390f35b3480156107d357600080fd5b506107dc611c8a565b6040516107e99190613c4e565b60405180910390f35b3480156107fe57600080fd5b50610819600480360381019061081491906135c4565b611c90565b005b34801561082757600080fd5b50610842600480360381019061083d91906132be565b611d16565b60405161084f9190613a31565b60405180910390f35b34801561086457600080fd5b5061087f600480360381019061087a9190613291565b611daa565b60405161088c9190613c4e565b60405180910390f35b6108af60048036038101906108aa9190613454565b611dbc565b005b3480156108bd57600080fd5b506108d860048036038101906108d39190613291565b6121ab565b005b3480156108e657600080fd5b5061090160048036038101906108fc91906134b4565b6122a3565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061095e57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061098e5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109a490613f13565b80601f01602080910402602001604051908101604052809291908181526020018280546109d090613f13565b8015610a1d5780601f106109f257610100808354040283529160200191610a1d565b820191906000526020600020905b815481529060010190602001808311610a0057829003601f168201915b5050505050905090565b6000610a328261233c565b610a68576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aae8261239b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b16576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b35612469565b73ffffffffffffffffffffffffffffffffffffffff1614610b9857610b6181610b5c612469565b611d16565b610b97576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610c54612471565b6001546000540303905090565b610c6c838383612476565b505050565b6000601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600b5481610cd59190613dc5565b341015610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e90613bae565b60405180910390fd5b600e5481610d23610c4a565b610d2d9190613d3e565b1115610d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6590613b4e565b60405180910390fd5b600c5481610d7b33612820565b610d859190613d3e565b1115610dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbd90613aee565b60405180910390fd5b60008111610e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0090613b0e565b60405180910390fd5b600f60019054906101000a900460ff16610e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4f90613a8e565b60405180910390fd5b610e623382612877565b50565b610e6d612895565b73ffffffffffffffffffffffffffffffffffffffff16610e8b611354565b73ffffffffffffffffffffffffffffffffffffffff1614610ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed890613b8e565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610f07906139b5565b60006040518083038185875af1925050503d8060008114610f44576040519150601f19603f3d011682016040523d82523d6000602084013e610f49565b606091505b5050905080610f8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8490613bce565b60405180910390fd5b50565b610fab838383604051806020016040528060008152506118eb565b505050565b600c5481565b601360009054906101000a900460ff1681565b610fd1612895565b73ffffffffffffffffffffffffffffffffffffffff16610fef611354565b73ffffffffffffffffffffffffffffffffffffffff1614611045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103c90613b8e565b60405180910390fd5b80600a908051906020019061105b92919061303a565b5050565b600061106a8261239b565b9050919050565b611079612895565b73ffffffffffffffffffffffffffffffffffffffff16611097611354565b73ffffffffffffffffffffffffffffffffffffffff16146110ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e490613b8e565b60405180910390fd5b80600e8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561115f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111b8612895565b73ffffffffffffffffffffffffffffffffffffffff166111d6611354565b73ffffffffffffffffffffffffffffffffffffffff161461122c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122390613b8e565b60405180910390fd5b611236600061289d565b565b611240612895565b73ffffffffffffffffffffffffffffffffffffffff1661125e611354565b73ffffffffffffffffffffffffffffffffffffffff16146112b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ab90613b8e565b60405180910390fd5b81601081905550806011819055505050565b601280546112d390613f13565b80601f01602080910402602001604051908101604052809291908181526020018280546112ff90613f13565b801561134c5780601f106113215761010080835404028352916020019161134c565b820191906000526020600020905b81548152906001019060200180831161132f57829003601f168201915b505050505081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611386612895565b73ffffffffffffffffffffffffffffffffffffffff166113a4611354565b73ffffffffffffffffffffffffffffffffffffffff16146113fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f190613b8e565b60405180910390fd5b80600b8190555050565b600033604051602001611417919061396b565b60405160208183030381529060405280519060200120905061147d848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060115483612963565b6114bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b390613c0e565b60405180910390fd5b81600b546114ca9190613dc5565b34101561150c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150390613bae565b60405180910390fd5b600c548261151933612820565b6115239190613d3e565b1115611564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155b90613b2e565b60405180910390fd5b600e5482611570610c4a565b61157a9190613d3e565b11156115bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b290613aae565b60405180910390fd5b600f60009054906101000a900460ff1661160a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160190613a8e565b60405180910390fd5b6116143383612877565b50505050565b60606003805461162990613f13565b80601f016020809104026020016040519081016040528092919081815260200182805461165590613f13565b80156116a25780601f10611677576101008083540402835291602001916116a2565b820191906000526020600020905b81548152906001019060200180831161168557829003601f168201915b5050505050905090565b600f60019054906101000a900460ff1681565b600b5481565b6116cd612469565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611732576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061173f612469565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117ec612469565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118319190613a31565b60405180910390a35050565b611845612895565b73ffffffffffffffffffffffffffffffffffffffff16611863611354565b73ffffffffffffffffffffffffffffffffffffffff16146118b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b090613b8e565b60405180910390fd5b601360009054906101000a900460ff1615601360006101000a81548160ff021916908315150217905550565b600d5481565b6118f6848484612476565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611958576119218484848461297a565b611957576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611966612895565b73ffffffffffffffffffffffffffffffffffffffff16611984611354565b73ffffffffffffffffffffffffffffffffffffffff16146119da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d190613b8e565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6119ff612895565b73ffffffffffffffffffffffffffffffffffffffff16611a1d611354565b73ffffffffffffffffffffffffffffffffffffffff1614611a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6a90613b8e565b60405180910390fd5b60008211611ab6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aad90613c2e565b60405180910390fd5b6000611ac0610c4a565b9050600e548382611ad19190613d3e565b1115611b12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0990613b6e565b60405180910390fd5b611b1c8284612877565b505050565b6060611b2c8261233c565b611b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6290613a6e565b60405180910390fd5b60001515601360009054906101000a900460ff1615151415611c195760128054611b9490613f13565b80601f0160208091040260200160405190810160405280929190818152602001828054611bc090613f13565b8015611c0d5780601f10611be257610100808354040283529160200191611c0d565b820191906000526020600020905b815481529060010190602001808311611bf057829003601f168201915b50505050509050611c72565b6000611c23612ada565b90506000815111611c435760405180602001604052806000815250611c6e565b80611c4d84612b6c565b604051602001611c5e929190613986565b6040516020818303038152906040525b9150505b919050565b600f60009054906101000a900460ff1681565b600e5481565b611c98612895565b73ffffffffffffffffffffffffffffffffffffffff16611cb6611354565b73ffffffffffffffffffffffffffffffffffffffff1614611d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0390613b8e565b60405180910390fd5b80600c8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000611db582612820565b9050919050565b60026009541415611e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df990613bee565b60405180910390fd5b60026009819055506000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161590506000600d54831490506000600b549050600033604051602001611e7f919061396b565b604051602081830303815290604052805190602001209050838015611ea15750825b15611eab57600091505b838015611eb6575082155b15611f1b5781600d5486611eca9190613e1f565b611ed49190613dc5565b341015611f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0d90613bae565b60405180910390fd5b611f6a565b8185611f279190613dc5565b341015611f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6090613bae565b60405180910390fd5b5b611fb8878780806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060105483612963565b611ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fee90613c0e565b60405180910390fd5b600e5485612003610c4a565b61200d9190613d3e565b111561204e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204590613aae565b60405180910390fd5b60008511612091576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208890613b0e565b60405180910390fd5b600f60009054906101000a900460ff166120e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d790613a8e565b60405180910390fd5b600c54856120ed33612820565b6120f79190613d3e565b1115612138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212f90613aee565b60405180910390fd5b6001601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061219a3386612877565b505050506001600981905550505050565b6121b3612895565b73ffffffffffffffffffffffffffffffffffffffff166121d1611354565b73ffffffffffffffffffffffffffffffffffffffff1614612227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221e90613b8e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228e90613ace565b60405180910390fd5b6122a08161289d565b50565b6122ab612895565b73ffffffffffffffffffffffffffffffffffffffff166122c9611354565b73ffffffffffffffffffffffffffffffffffffffff161461231f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231690613b8e565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b600081612347612471565b11158015612356575060005482105b8015612394575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806123aa612471565b11612432576000548110156124315760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561242f575b60008114156124255760046000836001900393508381526020019081526020016000205490506123fa565b8092505050612464565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b60006124818261239b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146124e8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612509612469565b73ffffffffffffffffffffffffffffffffffffffff161480612538575061253785612532612469565b611d16565b5b8061257d5750612546612469565b73ffffffffffffffffffffffffffffffffffffffff1661256584610a27565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806125b6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561261d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61262a8585856001612ccd565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61272786612cd3565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831614156127b15760006001840190506000600460008381526020019081526020016000205414156127af5760005481146127ae578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128198585856001612cdd565b5050505050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b612891828260405180602001604052806000815250612ce3565b5050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000826129708584612f98565b1490509392505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129a0612469565b8786866040518563ffffffff1660e01b81526004016129c294939291906139e5565b602060405180830381600087803b1580156129dc57600080fd5b505af1925050508015612a0d57506040513d601f19601f82011682018060405250810190612a0a919061354e565b60015b612a87573d8060008114612a3d576040519150601f19603f3d011682016040523d82523d6000602084013e612a42565b606091505b50600081511415612a7f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612ae990613f13565b80601f0160208091040260200160405190810160405280929190818152602001828054612b1590613f13565b8015612b625780601f10612b3757610100808354040283529160200191612b62565b820191906000526020600020905b815481529060010190602001808311612b4557829003601f168201915b5050505050905090565b60606000821415612bb4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612cc8565b600082905060005b60008214612be6578080612bcf90613f76565b915050600a82612bdf9190613d94565b9150612bbc565b60008167ffffffffffffffff811115612c0257612c016140d0565b5b6040519080825280601f01601f191660200182016040528015612c345781602001600182028036833780820191505090505b5090505b60008514612cc157600182612c4d9190613e1f565b9150600a85612c5c9190613fe3565b6030612c689190613d3e565b60f81b818381518110612c7e57612c7d6140a1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612cba9190613d94565b9450612c38565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612d50576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612d8b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612d986000858386612ccd565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612dfd60018514612fee565b901b60a042901b612e0d86612cd3565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612f11575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ec1600087848060010195508761297a565b612ef7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612e52578260005414612f0c57600080fd5b612f7c565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612f12575b816000819055505050612f926000858386612cdd565b50505050565b60008082905060005b8451811015612fe357612fce82868381518110612fc157612fc06140a1565b5b6020026020010151612ff8565b91508080612fdb90613f76565b915050612fa1565b508091505092915050565b6000819050919050565b60008183106130105761300b8284613023565b61301b565b61301a8383613023565b5b905092915050565b600082600052816020526040600020905092915050565b82805461304690613f13565b90600052602060002090601f01602090048101928261306857600085556130af565b82601f1061308157805160ff19168380011785556130af565b828001600101855582156130af579182015b828111156130ae578251825591602001919060010190613093565b5b5090506130bc91906130c0565b5090565b5b808211156130d95760008160009055506001016130c1565b5090565b60006130f06130eb84613c8e565b613c69565b90508281526020810184848401111561310c5761310b61410e565b5b613117848285613ed1565b509392505050565b600061313261312d84613cbf565b613c69565b90508281526020810184848401111561314e5761314d61410e565b5b613159848285613ed1565b509392505050565b6000813590506131708161441a565b92915050565b60008083601f84011261318c5761318b614104565b5b8235905067ffffffffffffffff8111156131a9576131a86140ff565b5b6020830191508360208202830111156131c5576131c4614109565b5b9250929050565b6000813590506131db81614431565b92915050565b6000813590506131f081614448565b92915050565b6000813590506132058161445f565b92915050565b60008151905061321a8161445f565b92915050565b600082601f83011261323557613234614104565b5b81356132458482602086016130dd565b91505092915050565b600082601f83011261326357613262614104565b5b813561327384826020860161311f565b91505092915050565b60008135905061328b81614476565b92915050565b6000602082840312156132a7576132a6614118565b5b60006132b584828501613161565b91505092915050565b600080604083850312156132d5576132d4614118565b5b60006132e385828601613161565b92505060206132f485828601613161565b9150509250929050565b60008060006060848603121561331757613316614118565b5b600061332586828701613161565b935050602061333686828701613161565b92505060406133478682870161327c565b9150509250925092565b6000806000806080858703121561336b5761336a614118565b5b600061337987828801613161565b945050602061338a87828801613161565b935050604061339b8782880161327c565b925050606085013567ffffffffffffffff8111156133bc576133bb614113565b5b6133c887828801613220565b91505092959194509250565b600080604083850312156133eb576133ea614118565b5b60006133f985828601613161565b925050602061340a858286016131cc565b9150509250929050565b6000806040838503121561342b5761342a614118565b5b600061343985828601613161565b925050602061344a8582860161327c565b9150509250929050565b60008060006040848603121561346d5761346c614118565b5b600084013567ffffffffffffffff81111561348b5761348a614113565b5b61349786828701613176565b935093505060206134aa8682870161327c565b9150509250925092565b6000602082840312156134ca576134c9614118565b5b60006134d8848285016131cc565b91505092915050565b600080604083850312156134f8576134f7614118565b5b6000613506858286016131e1565b9250506020613517858286016131e1565b9150509250929050565b60006020828403121561353757613536614118565b5b6000613545848285016131f6565b91505092915050565b60006020828403121561356457613563614118565b5b60006135728482850161320b565b91505092915050565b60006020828403121561359157613590614118565b5b600082013567ffffffffffffffff8111156135af576135ae614113565b5b6135bb8482850161324e565b91505092915050565b6000602082840312156135da576135d9614118565b5b60006135e88482850161327c565b91505092915050565b6000806040838503121561360857613607614118565b5b60006136168582860161327c565b925050602061362785828601613161565b9150509250929050565b61363a81613e53565b82525050565b61365161364c82613e53565b613fbf565b82525050565b61366081613e65565b82525050565b600061367182613cf0565b61367b8185613d06565b935061368b818560208601613ee0565b6136948161411d565b840191505092915050565b60006136aa82613cfb565b6136b48185613d22565b93506136c4818560208601613ee0565b6136cd8161411d565b840191505092915050565b60006136e382613cfb565b6136ed8185613d33565b93506136fd818560208601613ee0565b80840191505092915050565b6000613716603083613d22565b91506137218261413b565b604082019050919050565b6000613739601783613d22565b91506137448261418a565b602082019050919050565b600061375c600783613d22565b9150613767826141b3565b602082019050919050565b600061377f602683613d22565b915061378a826141dc565b604082019050919050565b60006137a2601883613d22565b91506137ad8261422b565b602082019050919050565b60006137c5601583613d22565b91506137d082614254565b602082019050919050565b60006137e8601583613d22565b91506137f38261427d565b602082019050919050565b600061380b601083613d22565b9150613816826142a6565b602082019050919050565b600061382e601683613d22565b9150613839826142cf565b602082019050919050565b6000613851600583613d33565b915061385c826142f8565b600582019050919050565b6000613874602083613d22565b915061387f82614321565b602082019050919050565b6000613897601d83613d22565b91506138a28261434a565b602082019050919050565b60006138ba600083613d17565b91506138c582614373565b600082019050919050565b60006138dd601083613d22565b91506138e882614376565b602082019050919050565b6000613900601f83613d22565b915061390b8261439f565b602082019050919050565b6000613923601983613d22565b915061392e826143c8565b602082019050919050565b6000613946601b83613d22565b9150613951826143f1565b602082019050919050565b61396581613ec7565b82525050565b60006139778284613640565b60148201915081905092915050565b600061399282856136d8565b915061399e82846136d8565b91506139a982613844565b91508190509392505050565b60006139c0826138ad565b9150819050919050565b60006020820190506139df6000830184613631565b92915050565b60006080820190506139fa6000830187613631565b613a076020830186613631565b613a14604083018561395c565b8181036060830152613a268184613666565b905095945050505050565b6000602082019050613a466000830184613657565b92915050565b60006020820190508181036000830152613a66818461369f565b905092915050565b60006020820190508181036000830152613a8781613709565b9050919050565b60006020820190508181036000830152613aa78161372c565b9050919050565b60006020820190508181036000830152613ac78161374f565b9050919050565b60006020820190508181036000830152613ae781613772565b9050919050565b60006020820190508181036000830152613b0781613795565b9050919050565b60006020820190508181036000830152613b27816137b8565b9050919050565b60006020820190508181036000830152613b47816137db565b9050919050565b60006020820190508181036000830152613b67816137fe565b9050919050565b60006020820190508181036000830152613b8781613821565b9050919050565b60006020820190508181036000830152613ba781613867565b9050919050565b60006020820190508181036000830152613bc78161388a565b9050919050565b60006020820190508181036000830152613be7816138d0565b9050919050565b60006020820190508181036000830152613c07816138f3565b9050919050565b60006020820190508181036000830152613c2781613916565b9050919050565b60006020820190508181036000830152613c4781613939565b9050919050565b6000602082019050613c63600083018461395c565b92915050565b6000613c73613c84565b9050613c7f8282613f45565b919050565b6000604051905090565b600067ffffffffffffffff821115613ca957613ca86140d0565b5b613cb28261411d565b9050602081019050919050565b600067ffffffffffffffff821115613cda57613cd96140d0565b5b613ce38261411d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d4982613ec7565b9150613d5483613ec7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d8957613d88614014565b5b828201905092915050565b6000613d9f82613ec7565b9150613daa83613ec7565b925082613dba57613db9614043565b5b828204905092915050565b6000613dd082613ec7565b9150613ddb83613ec7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e1457613e13614014565b5b828202905092915050565b6000613e2a82613ec7565b9150613e3583613ec7565b925082821015613e4857613e47614014565b5b828203905092915050565b6000613e5e82613ea7565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613efe578082015181840152602081019050613ee3565b83811115613f0d576000848401525b50505050565b60006002820490506001821680613f2b57607f821691505b60208210811415613f3f57613f3e614072565b5b50919050565b613f4e8261411d565b810181811067ffffffffffffffff82111715613f6d57613f6c6140d0565b5b80604052505050565b6000613f8182613ec7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fb457613fb3614014565b5b600182019050919050565b6000613fca82613fd1565b9050919050565b6000613fdc8261412e565b9050919050565b6000613fee82613ec7565b9150613ff983613ec7565b92508261400957614008614043565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b7f4d696e74696e67206973206e6f74206c69766520796574000000000000000000600082015250565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f43616e206e6f74206d696e74206d6f7265207468616e20350000000000000000600082015250565b7f506c6561736520656e7465722061206e756d6265720000000000000000000000600082015250565b7f596f752063616e74206d696e7420616e796d6f72650000000000000000000000600082015250565b7f4e6f206d6f7265204e4654206c65667400000000000000000000000000000000600082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e636f72726563742057686974656c6973742050726f6f6600000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b61442381613e53565b811461442e57600080fd5b50565b61443a81613e65565b811461444557600080fd5b50565b61445181613e71565b811461445c57600080fd5b50565b61446881613e7b565b811461447357600080fd5b50565b61447f81613ec7565b811461448a57600080fd5b5056fea26469706673582212204ee740f0f435d1ef5d617ad6f2f0518450b965e0e765458a7182ff96fa0878df64736f6c63430008070033

Deployed Bytecode Sourcemap

88087:5334:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24614:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29627:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31695:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31155:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23668:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32581:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;91237:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90631:484;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;93208:206;;;;;;;;;;;;;:::i;:::-;;32822:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88264:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88667:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91975:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29416:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92497:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25293:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55143:103;;;;;;;;;;;;;:::i;:::-;;92071:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88554:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54492:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92398:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;89992:631;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29796:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88455:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88220:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31971:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92810:75;;;;;;;;;;;;;:::i;:::-;;88304:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33078:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92607:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92890:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;91486:481;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88417:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88348;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92290:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32350:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91359:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88849:1135;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55401:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92709:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24614:615;24699:4;25014:10;24999:25;;:11;:25;;;;:102;;;;25091:10;25076:25;;:11;:25;;;;24999:102;:179;;;;25168:10;25153:25;;:11;:25;;;;24999:179;24979:199;;24614:615;;;:::o;29627:100::-;29681:13;29714:5;29707:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29627:100;:::o;31695:204::-;31763:7;31788:16;31796:7;31788;:16::i;:::-;31783:64;;31813:34;;;;;;;;;;;;;;31783:64;31867:15;:24;31883:7;31867:24;;;;;;;;;;;;;;;;;;;;;31860:31;;31695:204;;;:::o;31155:474::-;31228:13;31260:27;31279:7;31260:18;:27::i;:::-;31228:61;;31310:5;31304:11;;:2;:11;;;31300:48;;;31324:24;;;;;;;;;;;;;;31300:48;31388:5;31365:28;;:19;:17;:19::i;:::-;:28;;;31361:175;;31413:44;31430:5;31437:19;:17;:19::i;:::-;31413:16;:44::i;:::-;31408:128;;31485:35;;;;;;;;;;;;;;31408:128;31361:175;31575:2;31548:15;:24;31564:7;31548:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;31613:7;31609:2;31593:28;;31602:5;31593:28;;;;;;;;;;;;31217:412;31155:474;;:::o;23668:315::-;23721:7;23949:15;:13;:15::i;:::-;23934:12;;23918:13;;:28;:46;23911:53;;23668:315;:::o;32581:170::-;32715:28;32725:4;32731:2;32735:7;32715:9;:28::i;:::-;32581:170;;;:::o;91237:114::-;91300:4;91324:11;:19;91336:6;91324:19;;;;;;;;;;;;;;;;;;;;;;;;;91317:26;;91237:114;;;:::o;90631:484::-;90737:5;;90729;:13;;;;:::i;:::-;90716:9;:26;;90708:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;90820:9;;90811:5;90795:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;90787:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;90905:12;;90896:5;90870:25;90884:10;90870:13;:25::i;:::-;:31;;;;:::i;:::-;:47;;90862:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;90972:1;90966:5;:7;90958:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;91017:13;;;;;;;;;;;91009:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;91079:28;91089:10;91101:5;91079:9;:28::i;:::-;90631:484;:::o;93208:206::-;54723:12;:10;:12::i;:::-;54712:23;;:7;:5;:7::i;:::-;:23;;;54704:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;93259:12:::1;93285:10;93277:24;;93323:21;93277:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93258:101;;;93378:7;93370:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;93247:167;93208:206::o:0;32822:185::-;32960:39;32977:4;32983:2;32987:7;32960:39;;;;;;;;;;;;:16;:39::i;:::-;32822:185;;;:::o;88264:31::-;;;;:::o;88667:28::-;;;;;;;;;;;;;:::o;91975:88::-;54723:12;:10;:12::i;:::-;54712:23;;:7;:5;:7::i;:::-;:23;;;54704:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;92052:3:::1;92042:7;:13;;;;;;;;;;;;:::i;:::-;;91975:88:::0;:::o;29416:144::-;29480:7;29523:27;29542:7;29523:18;:27::i;:::-;29500:52;;29416:144;;;:::o;92497:102::-;54723:12;:10;:12::i;:::-;54712:23;;:7;:5;:7::i;:::-;:23;;;54704:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;92581:10:::1;92569:9;:22;;;;92497:102:::0;:::o;25293:224::-;25357:7;25398:1;25381:19;;:5;:19;;;25377:60;;;25409:28;;;;;;;;;;;;;;25377:60;20632:13;25455:18;:25;25474:5;25455:25;;;;;;;;;;;;;;;;:54;25448:61;;25293:224;;;:::o;55143:103::-;54723:12;:10;:12::i;:::-;54712:23;;:7;:5;:7::i;:::-;:23;;;54704:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55208:30:::1;55235:1;55208:18;:30::i;:::-;55143:103::o:0;92071:205::-;54723:12;:10;:12::i;:::-;54712:23;;:7;:5;:7::i;:::-;:23;;;54704:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;92213:14:::1;92198:12;:29;;;;92254:14;92238:13;:30;;;;92071:205:::0;;:::o;88554:104::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54492:87::-;54538:7;54565:6;;;;;;;;;;;54558:13;;54492:87;:::o;92398:92::-;54723:12;:10;:12::i;:::-;54712:23;;:7;:5;:7::i;:::-;:23;;;54704:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;92473:9:::1;92465:5;:17;;;;92398:92:::0;:::o;89992:631::-;90109:12;90151:10;90134:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;90124:39;;;;;;90109:54;;90192:53;90211:12;;90192:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90225:13;;90240:4;90192:18;:53::i;:::-;90184:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;90315:5;90307;;:13;;;;:::i;:::-;90293:9;:27;;90285:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;90407:12;;90399:5;90373:25;90387:10;90373:13;:25::i;:::-;:31;;;;:::i;:::-;:46;;90365:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;90485:9;;90477:5;90463:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:31;;90455:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;90526:11;;;;;;;;;;;90518:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;90587:28;90597:10;90609:5;90587:9;:28::i;:::-;90079:544;89992:631;;;:::o;29796:104::-;29852:13;29885:7;29878:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29796:104;:::o;88455:33::-;;;;;;;;;;;;;:::o;88220:35::-;;;;:::o;31971:308::-;32082:19;:17;:19::i;:::-;32070:31;;:8;:31;;;32066:61;;;32110:17;;;;;;;;;;;;;;32066:61;32192:8;32140:18;:39;32159:19;:17;:19::i;:::-;32140:39;;;;;;;;;;;;;;;:49;32180:8;32140:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32252:8;32216:55;;32231:19;:17;:19::i;:::-;32216:55;;;32262:8;32216:55;;;;;;:::i;:::-;;;;;;;;31971:308;;:::o;92810:75::-;54723:12;:10;:12::i;:::-;54712:23;;:7;:5;:7::i;:::-;:23;;;54704:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;92866:8:::1;;;;;;;;;;;92865:9;92854:8;;:20;;;;;;;;;;;;;;;;;;92810:75::o:0;88304:35::-;;;;:::o;33078:396::-;33245:28;33255:4;33261:2;33265:7;33245:9;:28::i;:::-;33306:1;33288:2;:14;;;:19;33284:183;;33327:56;33358:4;33364:2;33368:7;33377:5;33327:30;:56::i;:::-;33322:145;;33411:40;;;;;;;;;;;;;;33322:145;33284:183;33078:396;;;;:::o;92607:94::-;54723:12;:10;:12::i;:::-;54712:23;;:7;:5;:7::i;:::-;:23;;;54704:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;92687:6:::1;92673:11;;:20;;;;;;;;;;;;;;;;;;92607:94:::0;:::o;92890:308::-;54723:12;:10;:12::i;:::-;54712:23;;:7;:5;:7::i;:::-;:23;;;54704:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;92995:1:::1;92981:11;:15;92973:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;93035:14;93052:13;:11;:13::i;:::-;93035:30;;93104:9;;93089:11;93080:6;:20;;;;:::i;:::-;:33;;93072:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;93151:35;93161:11;93174;93151:9;:35::i;:::-;92966:232;92890:308:::0;;:::o;91486:481::-;91584:13;91625:16;91633:7;91625;:16::i;:::-;91609:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;91731:5;91719:17;;:8;;;;;;;;;;;:17;;;91715:56;;;91754:9;91747:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91715:56;91779:28;91810:10;:8;:10::i;:::-;91779:41;;91865:1;91840:14;91834:28;:32;:127;;;;;;;;;;;;;;;;;91902:14;91918:18;:7;:16;:18::i;:::-;91885:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;91834:127;91827:134;;;91486:481;;;;:::o;88417:31::-;;;;;;;;;;;;;:::o;88348:::-;;;;:::o;92290:100::-;54723:12;:10;:12::i;:::-;54712:23;;:7;:5;:7::i;:::-;:23;;;54704:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;92376:6:::1;92361:12;:21;;;;92290:100:::0;:::o;32350:164::-;32447:4;32471:18;:25;32490:5;32471:25;;;;;;;;;;;;;;;:35;32497:8;32471:35;;;;;;;;;;;;;;;;;;;;;;;;;32464:42;;32350:164;;;;:::o;91359:119::-;91422:7;91449:21;91463:6;91449:13;:21::i;:::-;91442:28;;91359:119;;;:::o;88849:1135::-;1853:1;2451:7;;:19;;2443:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1853:1;2584:7;:18;;;;88962:15:::1;88982:11;:23;88994:10;88982:23;;;;;;;;;;;;;;;;;;;;;;;;;88980:26;88962:44;;89018:12;89039:16;;89032:5;:23;89018:37;;89068:12;89083:5;;89068:20;;89110:12;89152:10;89135:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;89125:39;;;;;;89110:54;;89190:10;:22;;;;;89205:7;89190:22;89185:61;;;89233:1;89228:6;;89185:61;89264:10;:22;;;;;89279:7;89278:8;89264:22;89260:244;;;89347:4;89327:16;;89321:5;:22;;;;:::i;:::-;89320:31;;;;:::i;:::-;89307:9;:44;;89299:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;89260:244;;;89452:4;89444:5;:12;;;;:::i;:::-;89431:9;:25;;89423:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;89260:244;89522:52;89541:12;;89522:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89555:12;;89569:4;89522:18;:52::i;:::-;89514:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;89647:9;;89638:5;89622:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;89614:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;89694:1;89688:5;:7;89680:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;89739:11;;;;;;;;;;;89731:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;89832:12;;89823:5;89797:25;89811:10;89797:13;:25::i;:::-;:31;;;;:::i;:::-;:47;;89789:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;89919:4;89895:11;:23;89907:10;89895:23;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;89948;89958:10;89970:5;89948:9;:28::i;:::-;88949:1035;;;;1809:1:::0;2763:7;:22;;;;88849:1135;;;:::o;55401:201::-;54723:12;:10;:12::i;:::-;54712:23;;:7;:5;:7::i;:::-;:23;;;54704:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55510:1:::1;55490:22;;:8;:22;;;;55482:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;55566:28;55585:8;55566:18;:28::i;:::-;55401:201:::0;:::o;92709:93::-;54723:12;:10;:12::i;:::-;54712:23;;:7;:5;:7::i;:::-;:23;;;54704:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;92788:6:::1;92772:13;;:22;;;;;;;;;;;;;;;;;;92709:93:::0;:::o;33729:273::-;33786:4;33842:7;33823:15;:13;:15::i;:::-;:26;;:66;;;;;33876:13;;33866:7;:23;33823:66;:152;;;;;33974:1;21402:8;33927:17;:26;33945:7;33927:26;;;;;;;;;;;;:43;:48;33823:152;33803:172;;33729:273;;;:::o;26931:1129::-;26998:7;27018:12;27033:7;27018:22;;27101:4;27082:15;:13;:15::i;:::-;:23;27078:915;;27135:13;;27128:4;:20;27124:869;;;27173:14;27190:17;:23;27208:4;27190:23;;;;;;;;;;;;27173:40;;27306:1;21402:8;27279:6;:23;:28;27275:699;;;27798:113;27815:1;27805:6;:11;27798:113;;;27858:17;:25;27876:6;;;;;;;27858:25;;;;;;;;;;;;27849:34;;27798:113;;;27944:6;27937:13;;;;;;27275:699;27150:843;27124:869;27078:915;28021:31;;;;;;;;;;;;;;26931:1129;;;;:::o;47719:105::-;47779:7;47806:10;47799:17;;47719:105;:::o;23191:92::-;23247:7;23191:92;:::o;38976:2515::-;39091:27;39121;39140:7;39121:18;:27::i;:::-;39091:57;;39206:4;39165:45;;39181:19;39165:45;;;39161:86;;39219:28;;;;;;;;;;;;;;39161:86;39260:22;39309:4;39286:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;39330:43;39347:4;39353:19;:17;:19::i;:::-;39330:16;:43::i;:::-;39286:87;:147;;;;39414:19;:17;:19::i;:::-;39390:43;;:20;39402:7;39390:11;:20::i;:::-;:43;;;39286:147;39260:174;;39452:17;39447:66;;39478:35;;;;;;;;;;;;;;39447:66;39542:1;39528:16;;:2;:16;;;39524:52;;;39553:23;;;;;;;;;;;;;;39524:52;39589:43;39611:4;39617:2;39621:7;39630:1;39589:21;:43::i;:::-;39705:15;:24;39721:7;39705:24;;;;;;;;;;;;39698:31;;;;;;;;;;;40097:18;:24;40116:4;40097:24;;;;;;;;;;;;;;;;40095:26;;;;;;;;;;;;40166:18;:22;40185:2;40166:22;;;;;;;;;;;;;;;;40164:24;;;;;;;;;;;21684:8;21286:3;40547:15;:41;;40505:21;40523:2;40505:17;:21::i;:::-;:84;:128;40459:17;:26;40477:7;40459:26;;;;;;;;;;;:174;;;;40803:1;21684:8;40753:19;:46;:51;40749:626;;;40825:19;40857:1;40847:7;:11;40825:33;;41014:1;40980:17;:30;40998:11;40980:30;;;;;;;;;;;;:35;40976:384;;;41118:13;;41103:11;:28;41099:242;;41298:19;41265:17;:30;41283:11;41265:30;;;;;;;;;;;:52;;;;41099:242;40976:384;40806:569;40749:626;41422:7;41418:2;41403:27;;41412:4;41403:27;;;;;;;;;;;;41441:42;41462:4;41468:2;41472:7;41481:1;41441:20;:42::i;:::-;39080:2411;;38976:2515;;;:::o;25599:176::-;25660:7;20632:13;20769:2;25688:18;:25;25707:5;25688:25;;;;;;;;;;;;;;;;:49;;25687:80;25680:87;;25599:176;;;:::o;34086:104::-;34155:27;34165:2;34169:8;34155:27;;;;;;;;;;;;:9;:27::i;:::-;34086:104;;:::o;53163:98::-;53216:7;53243:10;53236:17;;53163:98;:::o;55762:191::-;55836:16;55855:6;;;;;;;;;;;55836:25;;55881:8;55872:6;;:17;;;;;;;;;;;;;;;;;;55936:8;55905:40;;55926:8;55905:40;;;;;;;;;;;;55825:128;55762:191;:::o;4057:190::-;4182:4;4235;4206:25;4219:5;4226:4;4206:12;:25::i;:::-;:33;4199:40;;4057:190;;;;;:::o;45188:716::-;45351:4;45397:2;45372:45;;;45418:19;:17;:19::i;:::-;45439:4;45445:7;45454:5;45372:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45368:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45672:1;45655:6;:13;:18;45651:235;;;45701:40;;;;;;;;;;;;;;45651:235;45844:6;45838:13;45829:6;45825:2;45821:15;45814:38;45368:529;45541:54;;;45531:64;;;:6;:64;;;;45524:71;;;45188:716;;;;;;:::o;91123:108::-;91183:13;91216:7;91209:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91123:108;:::o;50364:723::-;50420:13;50650:1;50641:5;:10;50637:53;;;50668:10;;;;;;;;;;;;;;;;;;;;;50637:53;50700:12;50715:5;50700:20;;50731:14;50756:78;50771:1;50763:4;:9;50756:78;;50789:8;;;;;:::i;:::-;;;;50820:2;50812:10;;;;;:::i;:::-;;;50756:78;;;50844:19;50876:6;50866:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50844:39;;50894:154;50910:1;50901:5;:10;50894:154;;50938:1;50928:11;;;;;:::i;:::-;;;51005:2;50997:5;:10;;;;:::i;:::-;50984:2;:24;;;;:::i;:::-;50971:39;;50954:6;50961;50954:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;51034:2;51025:11;;;;;:::i;:::-;;;50894:154;;;51072:6;51058:21;;;;;50364:723;;;;:::o;46552:159::-;;;;;:::o;30716:148::-;30780:14;30841:5;30831:15;;30716:148;;;:::o;47370:158::-;;;;;:::o;34563:2236::-;34686:20;34709:13;;34686:36;;34751:1;34737:16;;:2;:16;;;34733:48;;;34762:19;;;;;;;;;;;;;;34733:48;34808:1;34796:8;:13;34792:44;;;34818:18;;;;;;;;;;;;;;34792:44;34849:61;34879:1;34883:2;34887:12;34901:8;34849:21;:61::i;:::-;35453:1;20769:2;35424:1;:25;;35423:31;35411:8;:44;35385:18;:22;35404:2;35385:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;21549:3;35854:29;35881:1;35869:8;:13;35854:14;:29::i;:::-;:56;;21286:3;35791:15;:41;;35749:21;35767:2;35749:17;:21::i;:::-;:84;:162;35698:17;:31;35716:12;35698:31;;;;;;;;;;;:213;;;;35928:20;35951:12;35928:35;;35978:11;36007:8;35992:12;:23;35978:37;;36054:1;36036:2;:14;;;:19;36032:635;;36076:313;36132:12;36128:2;36107:38;;36124:1;36107:38;;;;;;;;;;;;36173:69;36212:1;36216:2;36220:14;;;;;;36236:5;36173:30;:69::i;:::-;36168:174;;36278:40;;;;;;;;;;;;;;36168:174;36384:3;36369:12;:18;36076:313;;36470:12;36453:13;;:29;36449:43;;36484:8;;;36449:43;36032:635;;;36533:119;36589:14;;;;;;36585:2;36564:40;;36581:1;36564:40;;;;;;;;;;;;36647:3;36632:12;:18;36533:119;;36032:635;36697:12;36681:13;:28;;;;35162:1559;;36731:60;36760:1;36764:2;36768:12;36782:8;36731:20;:60::i;:::-;34675:2124;34563:2236;;;:::o;4924:296::-;5007:7;5027:20;5050:4;5027:27;;5070:9;5065:118;5089:5;:12;5085:1;:16;5065:118;;;5138:33;5148:12;5162:5;5168:1;5162:8;;;;;;;;:::i;:::-;;;;;;;;5138:9;:33::i;:::-;5123:48;;5103:3;;;;;:::i;:::-;;;;5065:118;;;;5200:12;5193:19;;;4924:296;;;;:::o;30951:142::-;31009:14;31070:5;31060:15;;30951:142;;;:::o;11131:149::-;11194:7;11225:1;11221;:5;:51;;11252:20;11267:1;11270;11252:14;:20::i;:::-;11221:51;;;11229:20;11244:1;11247;11229:14;:20::i;:::-;11221:51;11214:58;;11131:149;;;;:::o;11288:268::-;11356:13;11463:1;11457:4;11450:15;11492:1;11486:4;11479:15;11533:4;11527;11517:21;11508:30;;11288:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:139::-;1762:5;1800:6;1787:20;1778:29;;1816:33;1843:5;1816:33;:::i;:::-;1716:139;;;;:::o;1861:137::-;1906:5;1944:6;1931:20;1922:29;;1960:32;1986:5;1960:32;:::i;:::-;1861:137;;;;:::o;2004:141::-;2060:5;2091:6;2085:13;2076:22;;2107:32;2133:5;2107:32;:::i;:::-;2004:141;;;;:::o;2164:338::-;2219:5;2268:3;2261:4;2253:6;2249:17;2245:27;2235:122;;2276:79;;:::i;:::-;2235:122;2393:6;2380:20;2418:78;2492:3;2484:6;2477:4;2469:6;2465:17;2418:78;:::i;:::-;2409:87;;2225:277;2164:338;;;;:::o;2522:340::-;2578:5;2627:3;2620:4;2612:6;2608:17;2604:27;2594:122;;2635:79;;:::i;:::-;2594:122;2752:6;2739:20;2777:79;2852:3;2844:6;2837:4;2829:6;2825:17;2777:79;:::i;:::-;2768:88;;2584:278;2522:340;;;;:::o;2868:139::-;2914:5;2952:6;2939:20;2930:29;;2968:33;2995:5;2968:33;:::i;:::-;2868:139;;;;:::o;3013:329::-;3072:6;3121:2;3109:9;3100:7;3096:23;3092:32;3089:119;;;3127:79;;:::i;:::-;3089:119;3247:1;3272:53;3317:7;3308:6;3297:9;3293:22;3272:53;:::i;:::-;3262:63;;3218:117;3013:329;;;;:::o;3348:474::-;3416:6;3424;3473:2;3461:9;3452:7;3448:23;3444:32;3441:119;;;3479:79;;:::i;:::-;3441:119;3599:1;3624:53;3669:7;3660:6;3649:9;3645:22;3624:53;:::i;:::-;3614:63;;3570:117;3726:2;3752:53;3797:7;3788:6;3777:9;3773:22;3752:53;:::i;:::-;3742:63;;3697:118;3348:474;;;;;:::o;3828:619::-;3905:6;3913;3921;3970:2;3958:9;3949:7;3945:23;3941:32;3938:119;;;3976:79;;:::i;:::-;3938:119;4096:1;4121:53;4166:7;4157:6;4146:9;4142:22;4121:53;:::i;:::-;4111:63;;4067:117;4223:2;4249:53;4294:7;4285:6;4274:9;4270:22;4249:53;:::i;:::-;4239:63;;4194:118;4351:2;4377:53;4422:7;4413:6;4402:9;4398:22;4377:53;:::i;:::-;4367:63;;4322:118;3828:619;;;;;:::o;4453:943::-;4548:6;4556;4564;4572;4621:3;4609:9;4600:7;4596:23;4592:33;4589:120;;;4628:79;;:::i;:::-;4589:120;4748:1;4773:53;4818:7;4809:6;4798:9;4794:22;4773:53;:::i;:::-;4763:63;;4719:117;4875:2;4901:53;4946:7;4937:6;4926:9;4922:22;4901:53;:::i;:::-;4891:63;;4846:118;5003:2;5029:53;5074:7;5065:6;5054:9;5050:22;5029:53;:::i;:::-;5019:63;;4974:118;5159:2;5148:9;5144:18;5131:32;5190:18;5182:6;5179:30;5176:117;;;5212:79;;:::i;:::-;5176:117;5317:62;5371:7;5362:6;5351:9;5347:22;5317:62;:::i;:::-;5307:72;;5102:287;4453:943;;;;;;;:::o;5402:468::-;5467:6;5475;5524:2;5512:9;5503:7;5499:23;5495:32;5492:119;;;5530:79;;:::i;:::-;5492:119;5650:1;5675:53;5720:7;5711:6;5700:9;5696:22;5675:53;:::i;:::-;5665:63;;5621:117;5777:2;5803:50;5845:7;5836:6;5825:9;5821:22;5803:50;:::i;:::-;5793:60;;5748:115;5402:468;;;;;:::o;5876:474::-;5944:6;5952;6001:2;5989:9;5980:7;5976:23;5972:32;5969:119;;;6007:79;;:::i;:::-;5969:119;6127:1;6152:53;6197:7;6188:6;6177:9;6173:22;6152:53;:::i;:::-;6142:63;;6098:117;6254:2;6280:53;6325:7;6316:6;6305:9;6301:22;6280:53;:::i;:::-;6270:63;;6225:118;5876:474;;;;;:::o;6356:704::-;6451:6;6459;6467;6516:2;6504:9;6495:7;6491:23;6487:32;6484:119;;;6522:79;;:::i;:::-;6484:119;6670:1;6659:9;6655:17;6642:31;6700:18;6692:6;6689:30;6686:117;;;6722:79;;:::i;:::-;6686:117;6835:80;6907:7;6898:6;6887:9;6883:22;6835:80;:::i;:::-;6817:98;;;;6613:312;6964:2;6990:53;7035:7;7026:6;7015:9;7011:22;6990:53;:::i;:::-;6980:63;;6935:118;6356:704;;;;;:::o;7066:323::-;7122:6;7171:2;7159:9;7150:7;7146:23;7142:32;7139:119;;;7177:79;;:::i;:::-;7139:119;7297:1;7322:50;7364:7;7355:6;7344:9;7340:22;7322:50;:::i;:::-;7312:60;;7268:114;7066:323;;;;:::o;7395:474::-;7463:6;7471;7520:2;7508:9;7499:7;7495:23;7491:32;7488:119;;;7526:79;;:::i;:::-;7488:119;7646:1;7671:53;7716:7;7707:6;7696:9;7692:22;7671:53;:::i;:::-;7661:63;;7617:117;7773:2;7799:53;7844:7;7835:6;7824:9;7820:22;7799:53;:::i;:::-;7789:63;;7744:118;7395:474;;;;;:::o;7875:327::-;7933:6;7982:2;7970:9;7961:7;7957:23;7953:32;7950:119;;;7988:79;;:::i;:::-;7950:119;8108:1;8133:52;8177:7;8168:6;8157:9;8153:22;8133:52;:::i;:::-;8123:62;;8079:116;7875:327;;;;:::o;8208:349::-;8277:6;8326:2;8314:9;8305:7;8301:23;8297:32;8294:119;;;8332:79;;:::i;:::-;8294:119;8452:1;8477:63;8532:7;8523:6;8512:9;8508:22;8477:63;:::i;:::-;8467:73;;8423:127;8208:349;;;;:::o;8563:509::-;8632:6;8681:2;8669:9;8660:7;8656:23;8652:32;8649:119;;;8687:79;;:::i;:::-;8649:119;8835:1;8824:9;8820:17;8807:31;8865:18;8857:6;8854:30;8851:117;;;8887:79;;:::i;:::-;8851:117;8992:63;9047:7;9038:6;9027:9;9023:22;8992:63;:::i;:::-;8982:73;;8778:287;8563:509;;;;:::o;9078:329::-;9137:6;9186:2;9174:9;9165:7;9161:23;9157:32;9154:119;;;9192:79;;:::i;:::-;9154:119;9312:1;9337:53;9382:7;9373:6;9362:9;9358:22;9337:53;:::i;:::-;9327:63;;9283:117;9078:329;;;;:::o;9413:474::-;9481:6;9489;9538:2;9526:9;9517:7;9513:23;9509:32;9506:119;;;9544:79;;:::i;:::-;9506:119;9664:1;9689:53;9734:7;9725:6;9714:9;9710:22;9689:53;:::i;:::-;9679:63;;9635:117;9791:2;9817:53;9862:7;9853:6;9842:9;9838:22;9817:53;:::i;:::-;9807:63;;9762:118;9413:474;;;;;:::o;9893:118::-;9980:24;9998:5;9980:24;:::i;:::-;9975:3;9968:37;9893:118;;:::o;10017:157::-;10122:45;10142:24;10160:5;10142:24;:::i;:::-;10122:45;:::i;:::-;10117:3;10110:58;10017:157;;:::o;10180:109::-;10261:21;10276:5;10261:21;:::i;:::-;10256:3;10249:34;10180:109;;:::o;10295:360::-;10381:3;10409:38;10441:5;10409:38;:::i;:::-;10463:70;10526:6;10521:3;10463:70;:::i;:::-;10456:77;;10542:52;10587:6;10582:3;10575:4;10568:5;10564:16;10542:52;:::i;:::-;10619:29;10641:6;10619:29;:::i;:::-;10614:3;10610:39;10603:46;;10385:270;10295:360;;;;:::o;10661:364::-;10749:3;10777:39;10810:5;10777:39;:::i;:::-;10832:71;10896:6;10891:3;10832:71;:::i;:::-;10825:78;;10912:52;10957:6;10952:3;10945:4;10938:5;10934:16;10912:52;:::i;:::-;10989:29;11011:6;10989:29;:::i;:::-;10984:3;10980:39;10973:46;;10753:272;10661:364;;;;:::o;11031:377::-;11137:3;11165:39;11198:5;11165:39;:::i;:::-;11220:89;11302:6;11297:3;11220:89;:::i;:::-;11213:96;;11318:52;11363:6;11358:3;11351:4;11344:5;11340:16;11318:52;:::i;:::-;11395:6;11390:3;11386:16;11379:23;;11141:267;11031:377;;;;:::o;11414:366::-;11556:3;11577:67;11641:2;11636:3;11577:67;:::i;:::-;11570:74;;11653:93;11742:3;11653:93;:::i;:::-;11771:2;11766:3;11762:12;11755:19;;11414:366;;;:::o;11786:::-;11928:3;11949:67;12013:2;12008:3;11949:67;:::i;:::-;11942:74;;12025:93;12114:3;12025:93;:::i;:::-;12143:2;12138:3;12134:12;12127:19;;11786:366;;;:::o;12158:365::-;12300:3;12321:66;12385:1;12380:3;12321:66;:::i;:::-;12314:73;;12396:93;12485:3;12396:93;:::i;:::-;12514:2;12509:3;12505:12;12498:19;;12158:365;;;:::o;12529:366::-;12671:3;12692:67;12756:2;12751:3;12692:67;:::i;:::-;12685:74;;12768:93;12857:3;12768:93;:::i;:::-;12886:2;12881:3;12877:12;12870:19;;12529:366;;;:::o;12901:::-;13043:3;13064:67;13128:2;13123:3;13064:67;:::i;:::-;13057:74;;13140:93;13229:3;13140:93;:::i;:::-;13258:2;13253:3;13249:12;13242:19;;12901:366;;;:::o;13273:::-;13415:3;13436:67;13500:2;13495:3;13436:67;:::i;:::-;13429:74;;13512:93;13601:3;13512:93;:::i;:::-;13630:2;13625:3;13621:12;13614:19;;13273:366;;;:::o;13645:::-;13787:3;13808:67;13872:2;13867:3;13808:67;:::i;:::-;13801:74;;13884:93;13973:3;13884:93;:::i;:::-;14002:2;13997:3;13993:12;13986:19;;13645:366;;;:::o;14017:::-;14159:3;14180:67;14244:2;14239:3;14180:67;:::i;:::-;14173:74;;14256:93;14345:3;14256:93;:::i;:::-;14374:2;14369:3;14365:12;14358:19;;14017:366;;;:::o;14389:::-;14531:3;14552:67;14616:2;14611:3;14552:67;:::i;:::-;14545:74;;14628:93;14717:3;14628:93;:::i;:::-;14746:2;14741:3;14737:12;14730:19;;14389:366;;;:::o;14761:400::-;14921:3;14942:84;15024:1;15019:3;14942:84;:::i;:::-;14935:91;;15035:93;15124:3;15035:93;:::i;:::-;15153:1;15148:3;15144:11;15137:18;;14761:400;;;:::o;15167:366::-;15309:3;15330:67;15394:2;15389:3;15330:67;:::i;:::-;15323:74;;15406:93;15495:3;15406:93;:::i;:::-;15524:2;15519:3;15515:12;15508:19;;15167:366;;;:::o;15539:::-;15681:3;15702:67;15766:2;15761:3;15702:67;:::i;:::-;15695:74;;15778:93;15867:3;15778:93;:::i;:::-;15896:2;15891:3;15887:12;15880:19;;15539:366;;;:::o;15911:398::-;16070:3;16091:83;16172:1;16167:3;16091:83;:::i;:::-;16084:90;;16183:93;16272:3;16183:93;:::i;:::-;16301:1;16296:3;16292:11;16285:18;;15911:398;;;:::o;16315:366::-;16457:3;16478:67;16542:2;16537:3;16478:67;:::i;:::-;16471:74;;16554:93;16643:3;16554:93;:::i;:::-;16672:2;16667:3;16663:12;16656:19;;16315:366;;;:::o;16687:::-;16829:3;16850:67;16914:2;16909:3;16850:67;:::i;:::-;16843:74;;16926:93;17015:3;16926:93;:::i;:::-;17044:2;17039:3;17035:12;17028:19;;16687:366;;;:::o;17059:::-;17201:3;17222:67;17286:2;17281:3;17222:67;:::i;:::-;17215:74;;17298:93;17387:3;17298:93;:::i;:::-;17416:2;17411:3;17407:12;17400:19;;17059:366;;;:::o;17431:::-;17573:3;17594:67;17658:2;17653:3;17594:67;:::i;:::-;17587:74;;17670:93;17759:3;17670:93;:::i;:::-;17788:2;17783:3;17779:12;17772:19;;17431:366;;;:::o;17803:118::-;17890:24;17908:5;17890:24;:::i;:::-;17885:3;17878:37;17803:118;;:::o;17927:256::-;18039:3;18054:75;18125:3;18116:6;18054:75;:::i;:::-;18154:2;18149:3;18145:12;18138:19;;18174:3;18167:10;;17927:256;;;;:::o;18189:701::-;18470:3;18492:95;18583:3;18574:6;18492:95;:::i;:::-;18485:102;;18604:95;18695:3;18686:6;18604:95;:::i;:::-;18597:102;;18716:148;18860:3;18716:148;:::i;:::-;18709:155;;18881:3;18874:10;;18189:701;;;;;:::o;18896:379::-;19080:3;19102:147;19245:3;19102:147;:::i;:::-;19095:154;;19266:3;19259:10;;18896:379;;;:::o;19281:222::-;19374:4;19412:2;19401:9;19397:18;19389:26;;19425:71;19493:1;19482:9;19478:17;19469:6;19425:71;:::i;:::-;19281:222;;;;:::o;19509:640::-;19704:4;19742:3;19731:9;19727:19;19719:27;;19756:71;19824:1;19813:9;19809:17;19800:6;19756:71;:::i;:::-;19837:72;19905:2;19894:9;19890:18;19881:6;19837:72;:::i;:::-;19919;19987:2;19976:9;19972:18;19963:6;19919:72;:::i;:::-;20038:9;20032:4;20028:20;20023:2;20012:9;20008:18;20001:48;20066:76;20137:4;20128:6;20066:76;:::i;:::-;20058:84;;19509:640;;;;;;;:::o;20155:210::-;20242:4;20280:2;20269:9;20265:18;20257:26;;20293:65;20355:1;20344:9;20340:17;20331:6;20293:65;:::i;:::-;20155:210;;;;:::o;20371:313::-;20484:4;20522:2;20511:9;20507:18;20499:26;;20571:9;20565:4;20561:20;20557:1;20546:9;20542:17;20535:47;20599:78;20672:4;20663:6;20599:78;:::i;:::-;20591:86;;20371:313;;;;:::o;20690:419::-;20856:4;20894:2;20883:9;20879:18;20871:26;;20943:9;20937:4;20933:20;20929:1;20918:9;20914:17;20907:47;20971:131;21097:4;20971:131;:::i;:::-;20963:139;;20690:419;;;:::o;21115:::-;21281:4;21319:2;21308:9;21304:18;21296:26;;21368:9;21362:4;21358:20;21354:1;21343:9;21339:17;21332:47;21396:131;21522:4;21396:131;:::i;:::-;21388:139;;21115:419;;;:::o;21540:::-;21706:4;21744:2;21733:9;21729:18;21721:26;;21793:9;21787:4;21783:20;21779:1;21768:9;21764:17;21757:47;21821:131;21947:4;21821:131;:::i;:::-;21813:139;;21540:419;;;:::o;21965:::-;22131:4;22169:2;22158:9;22154:18;22146:26;;22218:9;22212:4;22208:20;22204:1;22193:9;22189:17;22182:47;22246:131;22372:4;22246:131;:::i;:::-;22238:139;;21965:419;;;:::o;22390:::-;22556:4;22594:2;22583:9;22579:18;22571:26;;22643:9;22637:4;22633:20;22629:1;22618:9;22614:17;22607:47;22671:131;22797:4;22671:131;:::i;:::-;22663:139;;22390:419;;;:::o;22815:::-;22981:4;23019:2;23008:9;23004:18;22996:26;;23068:9;23062:4;23058:20;23054:1;23043:9;23039:17;23032:47;23096:131;23222:4;23096:131;:::i;:::-;23088:139;;22815:419;;;:::o;23240:::-;23406:4;23444:2;23433:9;23429:18;23421:26;;23493:9;23487:4;23483:20;23479:1;23468:9;23464:17;23457:47;23521:131;23647:4;23521:131;:::i;:::-;23513:139;;23240:419;;;:::o;23665:::-;23831:4;23869:2;23858:9;23854:18;23846:26;;23918:9;23912:4;23908:20;23904:1;23893:9;23889:17;23882:47;23946:131;24072:4;23946:131;:::i;:::-;23938:139;;23665:419;;;:::o;24090:::-;24256:4;24294:2;24283:9;24279:18;24271:26;;24343:9;24337:4;24333:20;24329:1;24318:9;24314:17;24307:47;24371:131;24497:4;24371:131;:::i;:::-;24363:139;;24090:419;;;:::o;24515:::-;24681:4;24719:2;24708:9;24704:18;24696:26;;24768:9;24762:4;24758:20;24754:1;24743:9;24739:17;24732:47;24796:131;24922:4;24796:131;:::i;:::-;24788:139;;24515:419;;;:::o;24940:::-;25106:4;25144:2;25133:9;25129:18;25121:26;;25193:9;25187:4;25183:20;25179:1;25168:9;25164:17;25157:47;25221:131;25347:4;25221:131;:::i;:::-;25213:139;;24940:419;;;:::o;25365:::-;25531:4;25569:2;25558:9;25554:18;25546:26;;25618:9;25612:4;25608:20;25604:1;25593:9;25589:17;25582:47;25646:131;25772:4;25646:131;:::i;:::-;25638:139;;25365:419;;;:::o;25790:::-;25956:4;25994:2;25983:9;25979:18;25971:26;;26043:9;26037:4;26033:20;26029:1;26018:9;26014:17;26007:47;26071:131;26197:4;26071:131;:::i;:::-;26063:139;;25790:419;;;:::o;26215:::-;26381:4;26419:2;26408:9;26404:18;26396:26;;26468:9;26462:4;26458:20;26454:1;26443:9;26439:17;26432:47;26496:131;26622:4;26496:131;:::i;:::-;26488:139;;26215:419;;;:::o;26640:::-;26806:4;26844:2;26833:9;26829:18;26821:26;;26893:9;26887:4;26883:20;26879:1;26868:9;26864:17;26857:47;26921:131;27047:4;26921:131;:::i;:::-;26913:139;;26640:419;;;:::o;27065:222::-;27158:4;27196:2;27185:9;27181:18;27173:26;;27209:71;27277:1;27266:9;27262:17;27253:6;27209:71;:::i;:::-;27065:222;;;;:::o;27293:129::-;27327:6;27354:20;;:::i;:::-;27344:30;;27383:33;27411:4;27403:6;27383:33;:::i;:::-;27293:129;;;:::o;27428:75::-;27461:6;27494:2;27488:9;27478:19;;27428:75;:::o;27509:307::-;27570:4;27660:18;27652:6;27649:30;27646:56;;;27682:18;;:::i;:::-;27646:56;27720:29;27742:6;27720:29;:::i;:::-;27712:37;;27804:4;27798;27794:15;27786:23;;27509:307;;;:::o;27822:308::-;27884:4;27974:18;27966:6;27963:30;27960:56;;;27996:18;;:::i;:::-;27960:56;28034:29;28056:6;28034:29;:::i;:::-;28026:37;;28118:4;28112;28108:15;28100:23;;27822:308;;;:::o;28136:98::-;28187:6;28221:5;28215:12;28205:22;;28136:98;;;:::o;28240:99::-;28292:6;28326:5;28320:12;28310:22;;28240:99;;;:::o;28345:168::-;28428:11;28462:6;28457:3;28450:19;28502:4;28497:3;28493:14;28478:29;;28345:168;;;;:::o;28519:147::-;28620:11;28657:3;28642:18;;28519:147;;;;:::o;28672:169::-;28756:11;28790:6;28785:3;28778:19;28830:4;28825:3;28821:14;28806:29;;28672:169;;;;:::o;28847:148::-;28949:11;28986:3;28971:18;;28847:148;;;;:::o;29001:305::-;29041:3;29060:20;29078:1;29060:20;:::i;:::-;29055:25;;29094:20;29112:1;29094:20;:::i;:::-;29089:25;;29248:1;29180:66;29176:74;29173:1;29170:81;29167:107;;;29254:18;;:::i;:::-;29167:107;29298:1;29295;29291:9;29284:16;;29001:305;;;;:::o;29312:185::-;29352:1;29369:20;29387:1;29369:20;:::i;:::-;29364:25;;29403:20;29421:1;29403:20;:::i;:::-;29398:25;;29442:1;29432:35;;29447:18;;:::i;:::-;29432:35;29489:1;29486;29482:9;29477:14;;29312:185;;;;:::o;29503:348::-;29543:7;29566:20;29584:1;29566:20;:::i;:::-;29561:25;;29600:20;29618:1;29600:20;:::i;:::-;29595:25;;29788:1;29720:66;29716:74;29713:1;29710:81;29705:1;29698:9;29691:17;29687:105;29684:131;;;29795:18;;:::i;:::-;29684:131;29843:1;29840;29836:9;29825:20;;29503:348;;;;:::o;29857:191::-;29897:4;29917:20;29935:1;29917:20;:::i;:::-;29912:25;;29951:20;29969:1;29951:20;:::i;:::-;29946:25;;29990:1;29987;29984:8;29981:34;;;29995:18;;:::i;:::-;29981:34;30040:1;30037;30033:9;30025:17;;29857:191;;;;:::o;30054:96::-;30091:7;30120:24;30138:5;30120:24;:::i;:::-;30109:35;;30054:96;;;:::o;30156:90::-;30190:7;30233:5;30226:13;30219:21;30208:32;;30156:90;;;:::o;30252:77::-;30289:7;30318:5;30307:16;;30252:77;;;:::o;30335:149::-;30371:7;30411:66;30404:5;30400:78;30389:89;;30335:149;;;:::o;30490:126::-;30527:7;30567:42;30560:5;30556:54;30545:65;;30490:126;;;:::o;30622:77::-;30659:7;30688:5;30677:16;;30622:77;;;:::o;30705:154::-;30789:6;30784:3;30779;30766:30;30851:1;30842:6;30837:3;30833:16;30826:27;30705:154;;;:::o;30865:307::-;30933:1;30943:113;30957:6;30954:1;30951:13;30943:113;;;31042:1;31037:3;31033:11;31027:18;31023:1;31018:3;31014:11;31007:39;30979:2;30976:1;30972:10;30967:15;;30943:113;;;31074:6;31071:1;31068:13;31065:101;;;31154:1;31145:6;31140:3;31136:16;31129:27;31065:101;30914:258;30865:307;;;:::o;31178:320::-;31222:6;31259:1;31253:4;31249:12;31239:22;;31306:1;31300:4;31296:12;31327:18;31317:81;;31383:4;31375:6;31371:17;31361:27;;31317:81;31445:2;31437:6;31434:14;31414:18;31411:38;31408:84;;;31464:18;;:::i;:::-;31408:84;31229:269;31178:320;;;:::o;31504:281::-;31587:27;31609:4;31587:27;:::i;:::-;31579:6;31575:40;31717:6;31705:10;31702:22;31681:18;31669:10;31666:34;31663:62;31660:88;;;31728:18;;:::i;:::-;31660:88;31768:10;31764:2;31757:22;31547:238;31504:281;;:::o;31791:233::-;31830:3;31853:24;31871:5;31853:24;:::i;:::-;31844:33;;31899:66;31892:5;31889:77;31886:103;;;31969:18;;:::i;:::-;31886:103;32016:1;32009:5;32005:13;31998:20;;31791:233;;;:::o;32030:100::-;32069:7;32098:26;32118:5;32098:26;:::i;:::-;32087:37;;32030:100;;;:::o;32136:94::-;32175:7;32204:20;32218:5;32204:20;:::i;:::-;32193:31;;32136:94;;;:::o;32236:176::-;32268:1;32285:20;32303:1;32285:20;:::i;:::-;32280:25;;32319:20;32337:1;32319:20;:::i;:::-;32314:25;;32358:1;32348:35;;32363:18;;:::i;:::-;32348:35;32404:1;32401;32397:9;32392:14;;32236:176;;;;:::o;32418:180::-;32466:77;32463:1;32456:88;32563:4;32560:1;32553:15;32587:4;32584:1;32577:15;32604:180;32652:77;32649:1;32642:88;32749:4;32746:1;32739:15;32773:4;32770:1;32763:15;32790:180;32838:77;32835:1;32828:88;32935:4;32932:1;32925:15;32959:4;32956:1;32949:15;32976:180;33024:77;33021:1;33014:88;33121:4;33118:1;33111:15;33145:4;33142:1;33135:15;33162:180;33210:77;33207:1;33200:88;33307:4;33304:1;33297:15;33331:4;33328:1;33321:15;33348:117;33457:1;33454;33447:12;33471:117;33580:1;33577;33570:12;33594:117;33703:1;33700;33693:12;33717:117;33826:1;33823;33816:12;33840:117;33949:1;33946;33939:12;33963:117;34072:1;34069;34062:12;34086:102;34127:6;34178:2;34174:7;34169:2;34162:5;34158:14;34154:28;34144:38;;34086:102;;;:::o;34194:94::-;34227:8;34275:5;34271:2;34267:14;34246:35;;34194:94;;;:::o;34294:235::-;34434:34;34430:1;34422:6;34418:14;34411:58;34503:18;34498:2;34490:6;34486:15;34479:43;34294:235;:::o;34535:173::-;34675:25;34671:1;34663:6;34659:14;34652:49;34535:173;:::o;34714:157::-;34854:9;34850:1;34842:6;34838:14;34831:33;34714:157;:::o;34877:225::-;35017:34;35013:1;35005:6;35001:14;34994:58;35086:8;35081:2;35073:6;35069:15;35062:33;34877:225;:::o;35108:174::-;35248:26;35244:1;35236:6;35232:14;35225:50;35108:174;:::o;35288:171::-;35428:23;35424:1;35416:6;35412:14;35405:47;35288:171;:::o;35465:::-;35605:23;35601:1;35593:6;35589:14;35582:47;35465:171;:::o;35642:166::-;35782:18;35778:1;35770:6;35766:14;35759:42;35642:166;:::o;35814:172::-;35954:24;35950:1;35942:6;35938:14;35931:48;35814:172;:::o;35992:155::-;36132:7;36128:1;36120:6;36116:14;36109:31;35992:155;:::o;36153:182::-;36293:34;36289:1;36281:6;36277:14;36270:58;36153:182;:::o;36341:179::-;36481:31;36477:1;36469:6;36465:14;36458:55;36341:179;:::o;36526:114::-;;:::o;36646:166::-;36786:18;36782:1;36774:6;36770:14;36763:42;36646:166;:::o;36818:181::-;36958:33;36954:1;36946:6;36942:14;36935:57;36818:181;:::o;37005:175::-;37145:27;37141:1;37133:6;37129:14;37122:51;37005:175;:::o;37186:177::-;37326:29;37322:1;37314:6;37310:14;37303:53;37186:177;:::o;37369:122::-;37442:24;37460:5;37442:24;:::i;:::-;37435:5;37432:35;37422:63;;37481:1;37478;37471:12;37422:63;37369:122;:::o;37497:116::-;37567:21;37582:5;37567:21;:::i;:::-;37560:5;37557:32;37547:60;;37603:1;37600;37593:12;37547:60;37497:116;:::o;37619:122::-;37692:24;37710:5;37692:24;:::i;:::-;37685:5;37682:35;37672:63;;37731:1;37728;37721:12;37672:63;37619:122;:::o;37747:120::-;37819:23;37836:5;37819:23;:::i;:::-;37812:5;37809:34;37799:62;;37857:1;37854;37847:12;37799:62;37747:120;:::o;37873:122::-;37946:24;37964:5;37946:24;:::i;:::-;37939:5;37936:35;37926:63;;37985:1;37982;37975:12;37926:63;37873:122;:::o

Swarm Source

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