ETH Price: $3,490.37 (+2.09%)
Gas: 13 Gwei

Token

the little frens NFT (LITTLEFRENS)
 

Overview

Max Total Supply

28,538 LITTLEFRENS

Holders

11,850

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
slums.eth
Balance
2 LITTLEFRENS
0xF5A6bD45240cD607A3673492B66C2A7675b8a030
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The Littles Frens collection is an open edition mint for anyone & everyone to join our littles ecosystem! head on over to Playside with ur new little fren to explore our spiffy new locations where you can play, win, & 1-UP ur little.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TheLittlesEvolutionContract

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

//SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

        return (royalty.receiver, royaltyAmount);
    }

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

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

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.3) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;


/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

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

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

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

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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token IDs
     * are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token IDs
     * have been transferred. This includes minting.
     * And also called after one token has been burned.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

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

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

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

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

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

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

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.4;


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

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

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

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

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

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


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

pragma solidity ^0.8.4;



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

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

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

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

// File: contracts/thelittlefrensNFT.sol

pragma solidity ^0.8.13;








/// @title Interface for prize contract (for burning prizes)
interface IPrizeContract {
    function burn(
        address address_,
        uint256[] memory ids_,
        uint256[] memory amounts_
    ) external;
}

/// ╔════╗╔╗╔╗╔═══╗───╔╗──╔══╗╔════╗╔════╗╔╗──╔═══╗╔══╗ ///
/// ╚═╗╔═╝║║║║║╔══╝───║║──╚╗╔╝╚═╗╔═╝╚═╗╔═╝║║──║╔══╝║╔═╝ ///
/// ──║║──║╚╝║║╚══╗───║║───║║───║║────║║──║║──║╚══╗║╚═╗ ///
/// ──║║──║╔╗║║╔══╝───║║───║║───║║────║║──║║──║╔══╝╚═╗║ ///
/// ──║║──║║║║║╚══╗───║╚═╗╔╝╚╗──║║────║║──║╚═╗║╚══╗╔═╝║ ///
/// ──╚╝──╚╝╚╝╚═══╝───╚══╝╚══╝──╚╝────╚╝──╚══╝╚═══╝╚══╝ ///

/**
 * @title The Littles Evolution Contract
 * @author Itzik Lerner, rminla.eth, Eugene Strelkov, Evgeniya Zaikina, benyu.eth AKA the NFTDevz
 * @notice This contract provides functionality for evolving Littles.
 */
contract TheLittlesEvolutionContract is ERC721AQueryable, Ownable, ERC2981, ReentrancyGuard {
    using Strings for uint256;
    using ECDSA for bytes32;
    using SafeMath for uint256;

    //----------------- STATE -----------------//
    bool public paused = false;
    string public baseURI;
    string public contractURI;

    address public admin = 0x464b01D24E1542FAbF96c22fB6ea4bC84bea96d3;
    address public prizeContractAddress = 0xE948D9d3b97606304A8DB0538bDD0b6465c9DFcB;
    address public genesisSmartContractAddress = 0xc6ec80029CD2aa4B0021cEb11248C07b25D2DE34;

    address public partner1Address = 0x4475F712004D52964644cdF54280d1d9E58cE378;
    address public partner2Address = 0x747b5CC00104CdE2FfD450c46468Bc2b7e57Ad15;

    uint256 private _minNonce = 0;

    /// @dev genesisId => prizeId => isUsed
    mapping(uint256 => mapping(uint256 => bool)) public usedGenesisAndPrizes;

    mapping(address => uint256) public addressFreeMintCount;

    uint256 public maxSupply = 10000;
    uint256 public countFreeMintPerAddress = 2;

    //----------------- EVENTS -----------------//
    event AdminChanged(address admin_);
    event LittleFreeMint(address to_, uint256 mintedId_, uint256 amount, uint256 nonce_);
    event LittleEvolve(address to_, uint256 mintedId_, uint256[] prizeIdList_, uint256[] amountList_, uint256 nonce_);

    //----------------- CONSTRUCTOR -----------------//
    constructor(
        string memory name_,
        string memory symbol_,
        string memory baseURI_,
        address royaltyReciverAddress_,
        uint96 royaltyFee_
    ) ERC721A(name_, symbol_) {
        setBaseURI(baseURI_);
        setRoyalty(royaltyReciverAddress_, royaltyFee_);
    }

    //----------------- MODIFIERS -----------------//
    modifier notPaused() {
        require(!paused, "Paused");
        _;
    }

    /// @notice Prevent contract-to-contract calls
    modifier originalUser() {
        require(msg.sender == tx.origin && !_isContract(msg.sender), "Must invoke directly from your wallet");
        _;
    }

    modifier supplyNotExceeded(uint256 amount_) {
        require(totalSupply() + amount_ <= maxSupply, "Insufficient supply");
        _;
    }

    modifier userCanStillFreeMint(uint256 amount_) {
        require(addressFreeMintCount[msg.sender] + amount_ <= countFreeMintPerAddress, "Max mint per address");
        _;
    }

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

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

    function tokenURI(uint256 tokenId_) public view virtual override(IERC721A, ERC721A) returns (string memory) {
        require(_exists(tokenId_), "Nonexistent token");

        return string(abi.encodePacked(_baseURI(), tokenId_.toString(), ".json"));
    }

    /// @notice for getting eth in contract address
    receive() external payable {}

    //----------------- COMMON -----------------//
    function _isContract(address account_) internal view returns (bool) {
        uint256 size_;
        assembly {
            size_ := extcodesize(account_)
        }
        return size_ > 0;
    }

    function _isValidSignature(bytes32 msgHash_, bytes memory signature_) private view returns (bool) {
        bytes32 signedHash_ = keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", msgHash_));
        return signedHash_.recover(signature_) == admin;
    }

    //----------------- ONLY OWNER -----------------//
    function togglePaused(bool paused_) external onlyOwner {
        paused = paused_;
    }

    function setAdmin(address admin_) public onlyOwner {
        require(admin_ != address(0), "Null address");

        admin = admin_;
        emit AdminChanged(admin_);
    }

    function setPrizeContractAddress(address prizeContractAddress_) public onlyOwner {
        require(prizeContractAddress_ != address(0), "Null address");

        prizeContractAddress = prizeContractAddress_;
    }

    function setGenesisSmartContractAddress(address genesisSmartContractAddress_) external onlyOwner {
        require(genesisSmartContractAddress_ != address(0), "Null address");

        genesisSmartContractAddress = genesisSmartContractAddress_;
    }

    /// @dev change this value when change phase
    function setMinNonce(uint256 minNonce_) external onlyOwner {
        _minNonce = minNonce_;
    }

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

    function setRoyalty(address royaltyReceiverAddress_, uint96 royaltyFee_) public onlyOwner {
        _setDefaultRoyalty(royaltyReceiverAddress_, royaltyFee_);
    }

    /// @notice Update the contractURI for OpenSea, update for collection-specific metadata
    function setContractURI(string calldata contractURI_) external onlyOwner {
        contractURI = contractURI_;
    }

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

    function setCountFreeMintPerAddress(uint256 countFreeMintPerAddress_) external onlyOwner {
        countFreeMintPerAddress = countFreeMintPerAddress_;
    }

    function setPartnerAddresses(address partner1Address_, address partner2Address_) external onlyOwner {
        require(partner1Address_ != address(0), "Partner addresses must be valid");
        require(partner2Address_ != address(0), "Partner addresses must be valid");
        partner1Address = partner1Address_;
        partner2Address = partner2Address_;
    }

    function withdraw() public nonReentrant onlyOwner {
        uint256 balance_ = address(this).balance;
        require(balance_ > 0, "No ETH to withdraw");
        require(partner1Address != address(0), "Must have valid partner1 withdraw address");

        if (partner1Address == partner2Address) {
            require(payable(partner1Address).send(balance_));
        } else {
            require(partner2Address != address(0), "Must have valid partner2 withdraw address");
            uint256 split_ = balance_.mul(80).div(100);

            require(payable(partner1Address).send(split_));
            require(payable(partner2Address).send(balance_.sub(split_)));
        }
    }

    //----------------- FREE MINT -----------------//
    function freeMint(
        uint256 amount_,
        bytes memory signature_,
        uint256 nonce_
    ) external notPaused nonReentrant originalUser userCanStillFreeMint(amount_) supplyNotExceeded(amount_) {
        require(nonce_ >= _minNonce, "Invalid nonce");

        bytes32 msgHash_ = keccak256(abi.encodePacked(msg.sender, amount_, nonce_));
        require(_isValidSignature(msgHash_, signature_), "Invalid signature");
        addressFreeMintCount[msg.sender] += amount_;
        _safeMint(msg.sender, amount_);
        emit LittleFreeMint(msg.sender, _nextTokenId() - amount_, amount_, nonce_);
    }

    //----------------- EVOLVE -----------------//
    /// @notice evolve genesis to little
    /// @param genesisId_ an existing genesis owned by the caller
    /// @param l3PrizeId_ an existing l3 prize in prize list (prizeIdList_), check on the server side
    /// @param prizeIdList_ an existing prize list, contain l3 prize (l3PrizeId_), check on the server side
    /// @param amountList_ amount list, relative to prize list
    /// @param signature_ server signature, needs for confirm prizes
    /// @param nonce_ needs for server for checking uniqueness
    function evolveGenesis(
        uint256 genesisId_,
        uint256 l3PrizeId_,
        uint256[] memory prizeIdList_,
        uint256[] memory amountList_,
        bytes memory signature_,
        uint256 nonce_
    ) external notPaused nonReentrant originalUser supplyNotExceeded(1) {
        require(prizeIdList_.length == amountList_.length, "Wrong list length");
        require(IERC721A(genesisSmartContractAddress).ownerOf(genesisId_) == msg.sender, "Non a holder");

        bytes32 msgHash_ = keccak256(
            abi.encodePacked(msg.sender, genesisId_, l3PrizeId_, prizeIdList_, amountList_, nonce_)
        );
        require(_isValidSignature(msgHash_, signature_), "Invalid signature");

        require(!usedGenesisAndPrizes[genesisId_][l3PrizeId_], "Used genesis with prize");
        usedGenesisAndPrizes[genesisId_][l3PrizeId_] = true;

        IPrizeContract(prizeContractAddress).burn(msg.sender, prizeIdList_, amountList_);

        _safeMint(msg.sender, 1);
        emit LittleEvolve(msg.sender, _nextTokenId() - 1, prizeIdList_, amountList_, nonce_);
    }

    /// @notice evolve little
    /// @param id_ existing little owned by the caller
    /// @param isEvolve_ bool flag, check on the server side; true if l3 prize exist in prize list (l3PrizeId_)
    /// @param prizeIdList_ an existing prize list, contain l3 prize (l3PrizeId_), check on the server side
    /// @param amountList_ amount list, relative to prize list
    /// @param signature_ server signature, needs for confirm prizes
    /// @param nonce_ needs for server for checking uniqueness
    function evolveLittle(
        uint256 id_,
        bool isEvolve_,
        uint256[] memory prizeIdList_,
        uint256[] memory amountList_,
        bytes memory signature_,
        uint256 nonce_
    ) external notPaused nonReentrant originalUser {
        require(prizeIdList_.length == amountList_.length, "Wrong list length");
        require(ownerOf(id_) == msg.sender, "Non a holder");

        bytes32 msgHash_ = keccak256(abi.encodePacked(msg.sender, id_, isEvolve_, prizeIdList_, amountList_, nonce_));
        require(_isValidSignature(msgHash_, signature_), "Invalid signature");

        IPrizeContract(prizeContractAddress).burn(msg.sender, prizeIdList_, amountList_);

        uint256 updatedTokenId_ = id_;

        if (isEvolve_) {
            _burn(id_);
            _safeMint(msg.sender, 1);
            updatedTokenId_ = _nextTokenId() - 1; /// ???: can we get current token in better way?
        }

        emit LittleEvolve(msg.sender, updatedTokenId_, prizeIdList_, amountList_, nonce_);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"address","name":"royaltyReciverAddress_","type":"address"},{"internalType":"uint96","name":"royaltyFee_","type":"uint96"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"admin_","type":"address"}],"name":"AdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to_","type":"address"},{"indexed":false,"internalType":"uint256","name":"mintedId_","type":"uint256"},{"indexed":false,"internalType":"uint256[]","name":"prizeIdList_","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"amountList_","type":"uint256[]"},{"indexed":false,"internalType":"uint256","name":"nonce_","type":"uint256"}],"name":"LittleEvolve","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to_","type":"address"},{"indexed":false,"internalType":"uint256","name":"mintedId_","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"nonce_","type":"uint256"}],"name":"LittleFreeMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressFreeMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"countFreeMintPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"genesisId_","type":"uint256"},{"internalType":"uint256","name":"l3PrizeId_","type":"uint256"},{"internalType":"uint256[]","name":"prizeIdList_","type":"uint256[]"},{"internalType":"uint256[]","name":"amountList_","type":"uint256[]"},{"internalType":"bytes","name":"signature_","type":"bytes"},{"internalType":"uint256","name":"nonce_","type":"uint256"}],"name":"evolveGenesis","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id_","type":"uint256"},{"internalType":"bool","name":"isEvolve_","type":"bool"},{"internalType":"uint256[]","name":"prizeIdList_","type":"uint256[]"},{"internalType":"uint256[]","name":"amountList_","type":"uint256[]"},{"internalType":"bytes","name":"signature_","type":"bytes"},{"internalType":"uint256","name":"nonce_","type":"uint256"}],"name":"evolveLittle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount_","type":"uint256"},{"internalType":"bytes","name":"signature_","type":"bytes"},{"internalType":"uint256","name":"nonce_","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"genesisSmartContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"partner1Address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"partner2Address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prizeContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"admin_","type":"address"}],"name":"setAdmin","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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"contractURI_","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"countFreeMintPerAddress_","type":"uint256"}],"name":"setCountFreeMintPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"genesisSmartContractAddress_","type":"address"}],"name":"setGenesisSmartContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply_","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"minNonce_","type":"uint256"}],"name":"setMinNonce","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"partner1Address_","type":"address"},{"internalType":"address","name":"partner2Address_","type":"address"}],"name":"setPartnerAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"prizeContractAddress_","type":"address"}],"name":"setPrizeContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"royaltyReceiverAddress_","type":"address"},{"internalType":"uint96","name":"royaltyFee_","type":"uint96"}],"name":"setRoyalty","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":"bool","name":"paused_","type":"bool"}],"name":"togglePaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"usedGenesisAndPrizes","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600c805460ff19169055600f80546001600160a01b031990811673464b01d24e1542fabf96c22fb6ea4bc84bea96d31790915560108054821673e948d9d3b97606304a8db0538bdd0b6465c9dfcb17905560118054821673c6ec80029cd2aa4b0021ceb11248c07b25d2de34179055601280548216734475f712004d52964644cdf54280d1d9e58ce3781790556013805490911673747b5cc00104cde2ffd450c46468bc2b7e57ad1517905560006014556127106017556002601855348015620000cd57600080fd5b5060405162003fc838038062003fc8833981016040819052620000f091620003f4565b8484600262000100838262000559565b5060036200010f828262000559565b50506000805550620001213362000148565b6001600b5562000131836200019a565b6200013d8282620001b6565b505050505062000625565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001a4620001cc565b600d620001b2828262000559565b5050565b620001c0620001cc565b620001b282826200022e565b6008546001600160a01b031633146200022c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b565b6127106001600160601b03821611156200029e5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b606482015260840162000223565b6001600160a01b038216620002f65760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c696420726563656976657200000000000000604482015260640162000223565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600955565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200035757600080fd5b81516001600160401b03808211156200037457620003746200032f565b604051601f8301601f19908116603f011681019082821181831017156200039f576200039f6200032f565b81604052838152602092508683858801011115620003bc57600080fd5b600091505b83821015620003e05785820183015181830184015290820190620003c1565b600093810190920192909252949350505050565b600080600080600060a086880312156200040d57600080fd5b85516001600160401b03808211156200042557600080fd5b6200043389838a0162000345565b965060208801519150808211156200044a57600080fd5b6200045889838a0162000345565b955060408801519150808211156200046f57600080fd5b506200047e8882890162000345565b606088015190945090506001600160a01b03811681146200049e57600080fd5b60808701519092506001600160601b0381168114620004bc57600080fd5b809150509295509295909350565b600181811c90821680620004df57607f821691505b6020821081036200050057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200055457600081815260208120601f850160051c810160208610156200052f5750805b601f850160051c820191505b8181101562000550578281556001016200053b565b5050505b505050565b81516001600160401b038111156200057557620005756200032f565b6200058d81620005868454620004ca565b8462000506565b602080601f831160018114620005c55760008415620005ac5750858301515b600019600386901b1c1916600185901b17855562000550565b600085815260208120601f198616915b82811015620005f657888601518255948401946001909101908401620005d5565b5085821015620006155787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61399380620006356000396000f3fe6080604052600436106102b25760003560e01c8063704b6c0211610175578063a22cb465116100dc578063d5abeb0111610095578063e985e9c51161006f578063e985e9c514610879578063f2fde38b146108c2578063f851a440146108e2578063fbcb2cb41461090257600080fd5b8063d5abeb011461082e578063da541e0914610844578063e8a3d4851461086457600080fd5b8063a22cb4651461076e578063ac00fdd51461078e578063b88d4fde146107ae578063c23dc68f146107c1578063c5ef2f5b146107ee578063c87b56dd1461080e57600080fd5b80638da5cb5b1161012e5780638da5cb5b146106bb5780638f2fc60b146106d9578063938e3d7b146106f957806395d89b411461071957806399a2557a1461072e5780639c6ed49c1461074e57600080fd5b8063704b6c02146105de57806370a08231146105fe578063715018a61461061e5780638418f4d0146106335780638462151c146106535780638b1055c11461068057600080fd5b80633eaff66e116102195780635c975abb116101d25780635c975abb146105395780636352211e14610553578063694eb2ba146105735780636c0360eb146105935780636e1a1724146105a85780636f8b44b0146105be57600080fd5b80633eaff66e1461046c57806342842e0e1461049957806346921744146104ac57806355f804b3146104cc57806359fc9473146104ec5780635bbb21771461050c57600080fd5b806318160ddd1161026b57806318160ddd146103a25780631bd36ea7146103c557806323b872dd146103e55780632631b6b0146103f85780632a55205a146104185780633ccfd60b1461045757600080fd5b806301ffc9a7146102be57806306fdde03146102f3578063081812fc14610315578063095ea7b31461034d5780630a94908b146103625780630ec5a2081461038257600080fd5b366102b957005b600080fd5b3480156102ca57600080fd5b506102de6102d9366004612c6d565b610922565b60405190151581526020015b60405180910390f35b3480156102ff57600080fd5b50610308610942565b6040516102ea9190612cda565b34801561032157600080fd5b50610335610330366004612ced565b6109d4565b6040516001600160a01b0390911681526020016102ea565b61036061035b366004612d1b565b610a18565b005b34801561036e57600080fd5b5061036061037d366004612e83565b610ab8565b34801561038e57600080fd5b50601354610335906001600160a01b031681565b3480156103ae57600080fd5b50600154600054035b6040519081526020016102ea565b3480156103d157600080fd5b50601254610335906001600160a01b031681565b6103606103f3366004612f26565b610e4a565b34801561040457600080fd5b50610360610413366004612f67565b610fdb565b34801561042457600080fd5b50610438610433366004612f84565b61102b565b604080516001600160a01b0390931683526020830191909152016102ea565b34801561046357600080fd5b506103606110d9565b34801561047857600080fd5b506103b7610487366004612f67565b60166020526000908152604090205481565b6103606104a7366004612f26565b6112fc565b3480156104b857600080fd5b506103606104c7366004612ced565b61131c565b3480156104d857600080fd5b506103606104e7366004612fa6565b611329565b3480156104f857600080fd5b50610360610507366004612fee565b611341565b34801561051857600080fd5b5061052c610527366004613027565b611423565b6040516102ea91906130d7565b34801561054557600080fd5b50600c546102de9060ff1681565b34801561055f57600080fd5b5061033561056e366004612ced565b6114ee565b34801561057f57600080fd5b50601154610335906001600160a01b031681565b34801561059f57600080fd5b506103086114f9565b3480156105b457600080fd5b506103b760185481565b3480156105ca57600080fd5b506103606105d9366004612ced565b611587565b3480156105ea57600080fd5b506103606105f9366004612f67565b611594565b34801561060a57600080fd5b506103b7610619366004612f67565b611616565b34801561062a57600080fd5b50610360611664565b34801561063f57600080fd5b5061036061064e36600461312e565b611678565b34801561065f57600080fd5b5061067361066e366004612f67565b6118ad565b6040516102ea91906131ae565b34801561068c57600080fd5b506102de61069b366004612f84565b601560209081526000928352604080842090915290825290205460ff1681565b3480156106c757600080fd5b506008546001600160a01b0316610335565b3480156106e557600080fd5b506103606106f43660046131c1565b6119b5565b34801561070557600080fd5b506103606107143660046131fb565b6119c7565b34801561072557600080fd5b506103086119dc565b34801561073a57600080fd5b5061067361074936600461325a565b6119eb565b34801561075a57600080fd5b5061036061076936600461328f565b611b64565b34801561077a57600080fd5b506103606107893660046132de565b611def565b34801561079a57600080fd5b50601054610335906001600160a01b031681565b6103606107bc366004613313565b611e5b565b3480156107cd57600080fd5b506107e16107dc366004612ced565b611ea5565b6040516102ea919061337e565b3480156107fa57600080fd5b50610360610809366004612ced565b611f1d565b34801561081a57600080fd5b50610308610829366004612ced565b611f2a565b34801561083a57600080fd5b506103b760175481565b34801561085057600080fd5b5061036061085f36600461338c565b611fad565b34801561087057600080fd5b50610308611fc8565b34801561088557600080fd5b506102de610894366004612fee565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156108ce57600080fd5b506103606108dd366004612f67565b611fd5565b3480156108ee57600080fd5b50600f54610335906001600160a01b031681565b34801561090e57600080fd5b5061036061091d366004612f67565b61204e565b600061092d8261209e565b8061093c575061093c826120ec565b92915050565b606060028054610951906133a7565b80601f016020809104026020016040519081016040528092919081815260200182805461097d906133a7565b80156109ca5780601f1061099f576101008083540402835291602001916109ca565b820191906000526020600020905b8154815290600101906020018083116109ad57829003601f168201915b5050505050905090565b60006109df82612121565b6109fc576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610a23826114ee565b9050336001600160a01b03821614610a5c57610a3f8133610894565b610a5c576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600c5460ff1615610ae45760405162461bcd60e51b8152600401610adb906133e1565b60405180910390fd5b6002600b5403610b065760405162461bcd60e51b8152600401610adb90613401565b6002600b553332148015610b195750333b155b610b355760405162461bcd60e51b8152600401610adb90613438565b600160175481610b486001546000540390565b610b529190613493565b1115610b965760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e7420737570706c7960681b6044820152606401610adb565b8351855114610bdb5760405162461bcd60e51b81526020600482015260116024820152700aee4dedcce40d8d2e6e840d8cadccee8d607b1b6044820152606401610adb565b6011546040516331a9108f60e11b81526004810189905233916001600160a01b031690636352211e90602401602060405180830381865afa158015610c24573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c4891906134a6565b6001600160a01b031614610c8d5760405162461bcd60e51b815260206004820152600c60248201526b2737b71030903437b63232b960a11b6044820152606401610adb565b6000338888888887604051602001610caa969594939291906134e8565b604051602081830303815290604052805190602001209050610ccc8185612148565b610ce85760405162461bcd60e51b8152600401610adb9061352d565b60008881526015602090815260408083208a845290915290205460ff1615610d525760405162461bcd60e51b815260206004820152601760248201527f557365642067656e657369732077697468207072697a650000000000000000006044820152606401610adb565b60008881526015602090815260408083208a845290915290819020805460ff191660011790556010549051633db0f8ab60e01b81526001600160a01b0390911690633db0f8ab90610dab9033908a908a90600401613558565b600060405180830381600087803b158015610dc557600080fd5b505af1158015610dd9573d6000803e3d6000fd5b50505050610de83360016121c3565b7f61db6f6bc9d0ae3136ead2e5ebbefd51a9a2ff69e296d07f1229e662fbe74cb7336001610e1560005490565b610e1f9190613598565b888887604051610e339594939291906135ab565b60405180910390a150506001600b55505050505050565b6000610e55826121dd565b9050836001600160a01b0316816001600160a01b031614610e885760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054610eb48187335b6001600160a01b039081169116811491141790565b610edf57610ec28633610894565b610edf57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610f0657604051633a954ecd60e21b815260040160405180910390fd5b8015610f1157600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610fa357600184016000818152600460205260408120549003610fa1576000548114610fa15760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b031660008051602061393e83398151915260405160405180910390a45b505050505050565b610fe3612244565b6001600160a01b0381166110095760405162461bcd60e51b8152600401610adb906135f7565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b6000828152600a602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b03169282019290925282916110a05750604080518082019091526009546001600160a01b0381168252600160a01b90046001600160601b031660208201525b6020810151600090612710906110bf906001600160601b03168761361d565b6110c9919061364a565b91519350909150505b9250929050565b6002600b54036110fb5760405162461bcd60e51b8152600401610adb90613401565b6002600b55611108612244565b478061114b5760405162461bcd60e51b81526020600482015260126024820152714e6f2045544820746f20776974686472617760701b6044820152606401610adb565b6012546001600160a01b03166111b55760405162461bcd60e51b815260206004820152602960248201527f4d75737420686176652076616c696420706172746e657231207769746864726160448201526877206164647265737360b81b6064820152608401610adb565b6013546012546001600160a01b03918216911603611204576012546040516001600160a01b039091169082156108fc029083906000818181858888f193505050506111ff57600080fd5b6112f4565b6013546001600160a01b031661126e5760405162461bcd60e51b815260206004820152602960248201527f4d75737420686176652076616c696420706172746e657232207769746864726160448201526877206164647265737360b81b6064820152608401610adb565b6000611286606461128084605061229e565b906122aa565b6012546040519192506001600160a01b03169082156108fc029083906000818181858888f193505050506112b957600080fd5b6013546001600160a01b03166108fc6112d284846122b6565b6040518115909202916000818181858888f193505050506112f257600080fd5b505b506001600b55565b61131783838360405180602001604052806000815250611e5b565b505050565b611324612244565b601855565b611331612244565b600d61133d82826136a4565b5050565b611349612244565b6001600160a01b03821661139f5760405162461bcd60e51b815260206004820152601f60248201527f506172746e657220616464726573736573206d7573742062652076616c6964006044820152606401610adb565b6001600160a01b0381166113f55760405162461bcd60e51b815260206004820152601f60248201527f506172746e657220616464726573736573206d7573742062652076616c6964006044820152606401610adb565b601280546001600160a01b039384166001600160a01b03199182161790915560138054929093169116179055565b6060816000816001600160401b0381111561144057611440612d47565b60405190808252806020026020018201604052801561149257816020015b60408051608081018252600080825260208083018290529282018190526060820152825260001990920191018161145e5790505b50905060005b8281146114e5576114c08686838181106114b4576114b4613763565b90506020020135611ea5565b8282815181106114d2576114d2613763565b6020908102919091010152600101611498565b50949350505050565b600061093c826121dd565b600d8054611506906133a7565b80601f0160208091040260200160405190810160405280929190818152602001828054611532906133a7565b801561157f5780601f106115545761010080835404028352916020019161157f565b820191906000526020600020905b81548152906001019060200180831161156257829003601f168201915b505050505081565b61158f612244565b601755565b61159c612244565b6001600160a01b0381166115c25760405162461bcd60e51b8152600401610adb906135f7565b600f80546001600160a01b0319166001600160a01b0383169081179091556040519081527f7ce7ec0b50378fb6c0186ffb5f48325f6593fcb4ca4386f21861af3129188f5c9060200160405180910390a150565b60006001600160a01b03821661163f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b61166c612244565b61167660006122c2565b565b600c5460ff161561169b5760405162461bcd60e51b8152600401610adb906133e1565b6002600b54036116bd5760405162461bcd60e51b8152600401610adb90613401565b6002600b5533321480156116d05750333b155b6116ec5760405162461bcd60e51b8152600401610adb90613438565b82518451146117315760405162461bcd60e51b81526020600482015260116024820152700aee4dedcce40d8d2e6e840d8cadccee8d607b1b6044820152606401610adb565b3361173b876114ee565b6001600160a01b0316146117805760405162461bcd60e51b815260206004820152600c60248201526b2737b71030903437b63232b960a11b6044820152606401610adb565b600033878787878660405160200161179d96959493929190613779565b6040516020818303038152906040528051906020012090506117bf8184612148565b6117db5760405162461bcd60e51b8152600401610adb9061352d565b601054604051633db0f8ab60e01b81526001600160a01b0390911690633db0f8ab9061180f90339089908990600401613558565b600060405180830381600087803b15801561182957600080fd5b505af115801561183d573d6000803e3d6000fd5b5089925050871590506118765761185388612314565b61185e3360016121c3565b600161186960005490565b6118739190613598565b90505b7f61db6f6bc9d0ae3136ead2e5ebbefd51a9a2ff69e296d07f1229e662fbe74cb73382888887604051610e339594939291906135ab565b606060008060006118bd85611616565b90506000816001600160401b038111156118d9576118d9612d47565b604051908082528060200260200182016040528015611902578160200160208202803683370190505b50905061192f60408051608081018252600080825260208201819052918101829052606081019190915290565b60005b8386146119a9576119428161231f565b915081604001516119a15781516001600160a01b03161561196257815194505b876001600160a01b0316856001600160a01b0316036119a1578083878060010198508151811061199457611994613763565b6020026020010181815250505b600101611932565b50909695505050505050565b6119bd612244565b61133d828261235b565b6119cf612244565b600e6113178284836137ac565b606060038054610951906133a7565b6060818310611a0d57604051631960ccad60e11b815260040160405180910390fd5b600080611a1960005490565b905080841115611a27578093505b6000611a3287611616565b905084861015611a515785850381811015611a4b578091505b50611a55565b5060005b6000816001600160401b03811115611a6f57611a6f612d47565b604051908082528060200260200182016040528015611a98578160200160208202803683370190505b50905081600003611aae579350611b5d92505050565b6000611ab988611ea5565b905060008160400151611aca575080515b885b888114158015611adc5750848714155b15611b5157611aea8161231f565b92508260400151611b495782516001600160a01b031615611b0a57825191505b8a6001600160a01b0316826001600160a01b031603611b495780848880600101995081518110611b3c57611b3c613763565b6020026020010181815250505b600101611acc565b50505092835250909150505b9392505050565b600c5460ff1615611b875760405162461bcd60e51b8152600401610adb906133e1565b6002600b5403611ba95760405162461bcd60e51b8152600401610adb90613401565b6002600b553332148015611bbc5750333b155b611bd85760405162461bcd60e51b8152600401610adb90613438565b60185433600090815260166020526040902054849190611bf9908390613493565b1115611c3e5760405162461bcd60e51b81526020600482015260146024820152734d6178206d696e7420706572206164647265737360601b6044820152606401610adb565b8360175481611c506001546000540390565b611c5a9190613493565b1115611c9e5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e7420737570706c7960681b6044820152606401610adb565b601454831015611ce05760405162461bcd60e51b815260206004820152600d60248201526c496e76616c6964206e6f6e636560981b6044820152606401610adb565b6040516bffffffffffffffffffffffff193360601b1660208201526034810186905260548101849052600090607401604051602081830303815290604052805190602001209050611d318186612148565b611d4d5760405162461bcd60e51b8152600401610adb9061352d565b3360009081526016602052604081208054889290611d6c908490613493565b90915550611d7c905033876121c3565b7f4a088c22cd1e6f963b6bce7561c9f86ddb5676f42fa452c6f6c2264f8759d7e73387611da860005490565b611db29190613598565b604080516001600160a01b039093168352602083019190915281018890526060810186905260800160405180910390a150506001600b5550505050565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611e66848484610e4a565b6001600160a01b0383163b15611e9f57611e8284848484612458565b611e9f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6040805160808082018352600080835260208084018290528385018290526060808501839052855193840186528284529083018290529382018190529281018390529091506000548310611ef95792915050565b611f028361231f565b9050806040015115611f145792915050565b611b5d83612544565b611f25612244565b601455565b6060611f3582612121565b611f755760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b6044820152606401610adb565b611f7d612579565b611f8683612588565b604051602001611f9792919061386b565b6040516020818303038152906040529050919050565b611fb5612244565b600c805460ff1916911515919091179055565b600e8054611506906133a7565b611fdd612244565b6001600160a01b0381166120425760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610adb565b61204b816122c2565b50565b612056612244565b6001600160a01b03811661207c5760405162461bcd60e51b8152600401610adb906135f7565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b60006301ffc9a760e01b6001600160e01b0319831614806120cf57506380ac58cd60e01b6001600160e01b03198316145b8061093c5750506001600160e01b031916635b5e139f60e01b1490565b60006001600160e01b0319821663152a902d60e11b148061093c57506301ffc9a760e01b6001600160e01b031983161461093c565b600080548210801561093c575050600090815260046020526040902054600160e01b161590565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c81018390526000908190605c0160408051601f198184030181529190528051602090910120600f549091506001600160a01b03166121b18285612688565b6001600160a01b031614949350505050565b61133d8282604051806020016040528060008152506126ac565b60008160005481101561222b5760008181526004602052604081205490600160e01b82169003612229575b80600003611b5d575060001901600081815260046020526040902054612208565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b031633146116765760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610adb565b6000611b5d828461361d565b6000611b5d828461364a565b6000611b5d8284613598565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61204b816000612719565b60408051608081018252600080825260208201819052918101829052606081019190915260008281526004602052604090205461093c90612851565b6127106001600160601b03821611156123c95760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610adb565b6001600160a01b03821661241f5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610adb565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600955565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061248d9033908990889088906004016138aa565b6020604051808303816000875af19250505080156124c8575060408051601f3d908101601f191682019092526124c5918101906138dd565b60015b612526573d8080156124f6576040519150601f19603f3d011682016040523d82523d6000602084013e6124fb565b606091505b50805160000361251e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60408051608081018252600080825260208201819052918101829052606081019190915261093c612574836121dd565b612851565b6060600d8054610951906133a7565b6060816000036125af5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156125d957806125c3816138fa565b91506125d29050600a8361364a565b91506125b3565b6000816001600160401b038111156125f3576125f3612d47565b6040519080825280601f01601f19166020018201604052801561261d576020820181803683370190505b5090505b841561253c57612632600183613598565b915061263f600a86613913565b61264a906030613493565b60f81b81838151811061265f5761265f613763565b60200101906001600160f81b031916908160001a905350612681600a8661364a565b9450612621565b60008060006126978585612898565b915091506126a4816128da565b509392505050565b6126b68383612a90565b6001600160a01b0383163b15611317576000548281035b6126e06000868380600101945086612458565b6126fd576040516368d2bf6b60e11b815260040160405180910390fd5b8181106126cd57816000541461271257600080fd5b5050505050565b6000612724836121dd565b90508060008061274286600090815260066020526040902080549091565b91509150841561278257612757818433610e9f565b612782576127658333610894565b61278257604051632ce44b5f60e11b815260040160405180910390fd5b801561278d57600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260046020526040812091909155600160e11b8516900361281b576001860160008181526004602052604081205490036128195760005481146128195760008181526004602052604090208590555b505b60405186906000906001600160a01b0386169060008051602061393e833981519152908390a45050600180548101905550505050565b604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b60008082516041036128ce5760208301516040840151606085015160001a6128c287828585612b6a565b945094505050506110d2565b506000905060026110d2565b60008160048111156128ee576128ee613927565b036128f65750565b600181600481111561290a5761290a613927565b036129575760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610adb565b600281600481111561296b5761296b613927565b036129b85760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610adb565b60038160048111156129cc576129cc613927565b03612a245760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610adb565b6004816004811115612a3857612a38613927565b0361204b5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610adb565b6000805490829003612ab55760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b1783179055828401908390839060008051602061393e8339815191528180a4600183015b818114612b40578083600060008051602061393e833981519152600080a4600101612b1a565b5081600003612b6157604051622e076360e81b815260040160405180910390fd5b60005550505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115612ba15750600090506003612c4e565b8460ff16601b14158015612bb957508460ff16601c14155b15612bca5750600090506004612c4e565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612c1e573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612c4757600060019250925050612c4e565b9150600090505b94509492505050565b6001600160e01b03198116811461204b57600080fd5b600060208284031215612c7f57600080fd5b8135611b5d81612c57565b60005b83811015612ca5578181015183820152602001612c8d565b50506000910152565b60008151808452612cc6816020860160208601612c8a565b601f01601f19169290920160200192915050565b602081526000611b5d6020830184612cae565b600060208284031215612cff57600080fd5b5035919050565b6001600160a01b038116811461204b57600080fd5b60008060408385031215612d2e57600080fd5b8235612d3981612d06565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715612d8557612d85612d47565b604052919050565b600082601f830112612d9e57600080fd5b813560206001600160401b03821115612db957612db9612d47565b8160051b612dc8828201612d5d565b9283528481018201928281019087851115612de257600080fd5b83870192505b84831015612e0157823582529183019190830190612de8565b979650505050505050565b60006001600160401b03831115612e2557612e25612d47565b612e38601f8401601f1916602001612d5d565b9050828152838383011115612e4c57600080fd5b828260208301376000602084830101529392505050565b600082601f830112612e7457600080fd5b611b5d83833560208501612e0c565b60008060008060008060c08789031215612e9c57600080fd5b863595506020870135945060408701356001600160401b0380821115612ec157600080fd5b612ecd8a838b01612d8d565b95506060890135915080821115612ee357600080fd5b612eef8a838b01612d8d565b94506080890135915080821115612f0557600080fd5b50612f1289828a01612e63565b92505060a087013590509295509295509295565b600080600060608486031215612f3b57600080fd5b8335612f4681612d06565b92506020840135612f5681612d06565b929592945050506040919091013590565b600060208284031215612f7957600080fd5b8135611b5d81612d06565b60008060408385031215612f9757600080fd5b50508035926020909101359150565b600060208284031215612fb857600080fd5b81356001600160401b03811115612fce57600080fd5b8201601f81018413612fdf57600080fd5b61253c84823560208401612e0c565b6000806040838503121561300157600080fd5b823561300c81612d06565b9150602083013561301c81612d06565b809150509250929050565b6000806020838503121561303a57600080fd5b82356001600160401b038082111561305157600080fd5b818501915085601f83011261306557600080fd5b81358181111561307457600080fd5b8660208260051b850101111561308957600080fd5b60209290920196919550909350505050565b80516001600160a01b031682526020808201516001600160401b03169083015260408082015115159083015260609081015162ffffff16910152565b6020808252825182820181905260009190848201906040850190845b818110156119a95761310683855161309b565b92840192608092909201916001016130f3565b8035801515811461312957600080fd5b919050565b60008060008060008060c0878903121561314757600080fd5b8635955061315760208801613119565b945060408701356001600160401b0380821115612ec157600080fd5b600081518084526020808501945080840160005b838110156131a357815187529582019590820190600101613187565b509495945050505050565b602081526000611b5d6020830184613173565b600080604083850312156131d457600080fd5b82356131df81612d06565b915060208301356001600160601b038116811461301c57600080fd5b6000806020838503121561320e57600080fd5b82356001600160401b038082111561322557600080fd5b818501915085601f83011261323957600080fd5b81358181111561324857600080fd5b86602082850101111561308957600080fd5b60008060006060848603121561326f57600080fd5b833561327a81612d06565b95602085013595506040909401359392505050565b6000806000606084860312156132a457600080fd5b8335925060208401356001600160401b038111156132c157600080fd5b6132cd86828701612e63565b925050604084013590509250925092565b600080604083850312156132f157600080fd5b82356132fc81612d06565b915061330a60208401613119565b90509250929050565b6000806000806080858703121561332957600080fd5b843561333481612d06565b9350602085013561334481612d06565b92506040850135915060608501356001600160401b0381111561336657600080fd5b61337287828801612e63565b91505092959194509250565b6080810161093c828461309b565b60006020828403121561339e57600080fd5b611b5d82613119565b600181811c908216806133bb57607f821691505b6020821081036133db57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526006908201526514185d5cd95960d21b604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526025908201527f4d75737420696e766f6b65206469726563746c792066726f6d20796f75722077604082015264185b1b195d60da1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561093c5761093c61347d565b6000602082840312156134b857600080fd5b8151611b5d81612d06565b805160009060208084018383156131a357815187529582019590820190600101613187565b6001600160601b03198760601b168152856014820152846034820152600061351c61351660548401876134c3565b856134c3565b928352505060200195945050505050565b602080825260119082015270496e76616c6964207369676e617475726560781b604082015260600190565b6001600160a01b038416815260606020820181905260009061357c90830185613173565b828103604084015261358e8185613173565b9695505050505050565b8181038181111561093c5761093c61347d565b60018060a01b038616815284602082015260a0604082015260006135d260a0830186613173565b82810360608401526135e48186613173565b9150508260808301529695505050505050565b6020808252600c908201526b4e756c6c206164647265737360a01b604082015260600190565b808202811582820484141761093c5761093c61347d565b634e487b7160e01b600052601260045260246000fd5b60008261365957613659613634565b500490565b601f82111561131757600081815260208120601f850160051c810160208610156136855750805b601f850160051c820191505b81811015610fd357828155600101613691565b81516001600160401b038111156136bd576136bd612d47565b6136d1816136cb84546133a7565b8461365e565b602080601f83116001811461370657600084156136ee5750858301515b600019600386901b1c1916600185901b178555610fd3565b600085815260208120601f198616915b8281101561373557888601518255948401946001909101908401613716565b50858210156137535787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b6001600160601b03198760601b16815285601482015284151560f81b6034820152600061351c61351660358401876134c3565b6001600160401b038311156137c3576137c3612d47565b6137d7836137d183546133a7565b8361365e565b6000601f84116001811461380b57600085156137f35750838201355b600019600387901b1c1916600186901b178355612712565b600083815260209020601f19861690835b8281101561383c578685013582556020948501946001909201910161381c565b50868210156138595760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6000835161387d818460208801612c8a565b835190830190613891818360208801612c8a565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061358e90830184612cae565b6000602082840312156138ef57600080fd5b8151611b5d81612c57565b60006001820161390c5761390c61347d565b5060010190565b60008261392257613922613634565b500690565b634e487b7160e01b600052602160045260246000fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220a38f1048c46f7c0daa6880acabf2eee888b708f516c8303439815d3edafd36c364736f6c6343000811003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000004475f712004d52964644cdf54280d1d9e58ce37800000000000000000000000000000000000000000000000000000000000002ee0000000000000000000000000000000000000000000000000000000000000015746865206c6974746c65206672656e73204e4654200000000000000000000000000000000000000000000000000000000000000000000000000000000000000b4c4954544c454652454e53000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003868747470733a2f2f6d657461646174612d76322e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f6d657461646174612f0000000000000000

Deployed Bytecode

0x6080604052600436106102b25760003560e01c8063704b6c0211610175578063a22cb465116100dc578063d5abeb0111610095578063e985e9c51161006f578063e985e9c514610879578063f2fde38b146108c2578063f851a440146108e2578063fbcb2cb41461090257600080fd5b8063d5abeb011461082e578063da541e0914610844578063e8a3d4851461086457600080fd5b8063a22cb4651461076e578063ac00fdd51461078e578063b88d4fde146107ae578063c23dc68f146107c1578063c5ef2f5b146107ee578063c87b56dd1461080e57600080fd5b80638da5cb5b1161012e5780638da5cb5b146106bb5780638f2fc60b146106d9578063938e3d7b146106f957806395d89b411461071957806399a2557a1461072e5780639c6ed49c1461074e57600080fd5b8063704b6c02146105de57806370a08231146105fe578063715018a61461061e5780638418f4d0146106335780638462151c146106535780638b1055c11461068057600080fd5b80633eaff66e116102195780635c975abb116101d25780635c975abb146105395780636352211e14610553578063694eb2ba146105735780636c0360eb146105935780636e1a1724146105a85780636f8b44b0146105be57600080fd5b80633eaff66e1461046c57806342842e0e1461049957806346921744146104ac57806355f804b3146104cc57806359fc9473146104ec5780635bbb21771461050c57600080fd5b806318160ddd1161026b57806318160ddd146103a25780631bd36ea7146103c557806323b872dd146103e55780632631b6b0146103f85780632a55205a146104185780633ccfd60b1461045757600080fd5b806301ffc9a7146102be57806306fdde03146102f3578063081812fc14610315578063095ea7b31461034d5780630a94908b146103625780630ec5a2081461038257600080fd5b366102b957005b600080fd5b3480156102ca57600080fd5b506102de6102d9366004612c6d565b610922565b60405190151581526020015b60405180910390f35b3480156102ff57600080fd5b50610308610942565b6040516102ea9190612cda565b34801561032157600080fd5b50610335610330366004612ced565b6109d4565b6040516001600160a01b0390911681526020016102ea565b61036061035b366004612d1b565b610a18565b005b34801561036e57600080fd5b5061036061037d366004612e83565b610ab8565b34801561038e57600080fd5b50601354610335906001600160a01b031681565b3480156103ae57600080fd5b50600154600054035b6040519081526020016102ea565b3480156103d157600080fd5b50601254610335906001600160a01b031681565b6103606103f3366004612f26565b610e4a565b34801561040457600080fd5b50610360610413366004612f67565b610fdb565b34801561042457600080fd5b50610438610433366004612f84565b61102b565b604080516001600160a01b0390931683526020830191909152016102ea565b34801561046357600080fd5b506103606110d9565b34801561047857600080fd5b506103b7610487366004612f67565b60166020526000908152604090205481565b6103606104a7366004612f26565b6112fc565b3480156104b857600080fd5b506103606104c7366004612ced565b61131c565b3480156104d857600080fd5b506103606104e7366004612fa6565b611329565b3480156104f857600080fd5b50610360610507366004612fee565b611341565b34801561051857600080fd5b5061052c610527366004613027565b611423565b6040516102ea91906130d7565b34801561054557600080fd5b50600c546102de9060ff1681565b34801561055f57600080fd5b5061033561056e366004612ced565b6114ee565b34801561057f57600080fd5b50601154610335906001600160a01b031681565b34801561059f57600080fd5b506103086114f9565b3480156105b457600080fd5b506103b760185481565b3480156105ca57600080fd5b506103606105d9366004612ced565b611587565b3480156105ea57600080fd5b506103606105f9366004612f67565b611594565b34801561060a57600080fd5b506103b7610619366004612f67565b611616565b34801561062a57600080fd5b50610360611664565b34801561063f57600080fd5b5061036061064e36600461312e565b611678565b34801561065f57600080fd5b5061067361066e366004612f67565b6118ad565b6040516102ea91906131ae565b34801561068c57600080fd5b506102de61069b366004612f84565b601560209081526000928352604080842090915290825290205460ff1681565b3480156106c757600080fd5b506008546001600160a01b0316610335565b3480156106e557600080fd5b506103606106f43660046131c1565b6119b5565b34801561070557600080fd5b506103606107143660046131fb565b6119c7565b34801561072557600080fd5b506103086119dc565b34801561073a57600080fd5b5061067361074936600461325a565b6119eb565b34801561075a57600080fd5b5061036061076936600461328f565b611b64565b34801561077a57600080fd5b506103606107893660046132de565b611def565b34801561079a57600080fd5b50601054610335906001600160a01b031681565b6103606107bc366004613313565b611e5b565b3480156107cd57600080fd5b506107e16107dc366004612ced565b611ea5565b6040516102ea919061337e565b3480156107fa57600080fd5b50610360610809366004612ced565b611f1d565b34801561081a57600080fd5b50610308610829366004612ced565b611f2a565b34801561083a57600080fd5b506103b760175481565b34801561085057600080fd5b5061036061085f36600461338c565b611fad565b34801561087057600080fd5b50610308611fc8565b34801561088557600080fd5b506102de610894366004612fee565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156108ce57600080fd5b506103606108dd366004612f67565b611fd5565b3480156108ee57600080fd5b50600f54610335906001600160a01b031681565b34801561090e57600080fd5b5061036061091d366004612f67565b61204e565b600061092d8261209e565b8061093c575061093c826120ec565b92915050565b606060028054610951906133a7565b80601f016020809104026020016040519081016040528092919081815260200182805461097d906133a7565b80156109ca5780601f1061099f576101008083540402835291602001916109ca565b820191906000526020600020905b8154815290600101906020018083116109ad57829003601f168201915b5050505050905090565b60006109df82612121565b6109fc576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610a23826114ee565b9050336001600160a01b03821614610a5c57610a3f8133610894565b610a5c576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600c5460ff1615610ae45760405162461bcd60e51b8152600401610adb906133e1565b60405180910390fd5b6002600b5403610b065760405162461bcd60e51b8152600401610adb90613401565b6002600b553332148015610b195750333b155b610b355760405162461bcd60e51b8152600401610adb90613438565b600160175481610b486001546000540390565b610b529190613493565b1115610b965760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e7420737570706c7960681b6044820152606401610adb565b8351855114610bdb5760405162461bcd60e51b81526020600482015260116024820152700aee4dedcce40d8d2e6e840d8cadccee8d607b1b6044820152606401610adb565b6011546040516331a9108f60e11b81526004810189905233916001600160a01b031690636352211e90602401602060405180830381865afa158015610c24573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c4891906134a6565b6001600160a01b031614610c8d5760405162461bcd60e51b815260206004820152600c60248201526b2737b71030903437b63232b960a11b6044820152606401610adb565b6000338888888887604051602001610caa969594939291906134e8565b604051602081830303815290604052805190602001209050610ccc8185612148565b610ce85760405162461bcd60e51b8152600401610adb9061352d565b60008881526015602090815260408083208a845290915290205460ff1615610d525760405162461bcd60e51b815260206004820152601760248201527f557365642067656e657369732077697468207072697a650000000000000000006044820152606401610adb565b60008881526015602090815260408083208a845290915290819020805460ff191660011790556010549051633db0f8ab60e01b81526001600160a01b0390911690633db0f8ab90610dab9033908a908a90600401613558565b600060405180830381600087803b158015610dc557600080fd5b505af1158015610dd9573d6000803e3d6000fd5b50505050610de83360016121c3565b7f61db6f6bc9d0ae3136ead2e5ebbefd51a9a2ff69e296d07f1229e662fbe74cb7336001610e1560005490565b610e1f9190613598565b888887604051610e339594939291906135ab565b60405180910390a150506001600b55505050505050565b6000610e55826121dd565b9050836001600160a01b0316816001600160a01b031614610e885760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054610eb48187335b6001600160a01b039081169116811491141790565b610edf57610ec28633610894565b610edf57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610f0657604051633a954ecd60e21b815260040160405180910390fd5b8015610f1157600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610fa357600184016000818152600460205260408120549003610fa1576000548114610fa15760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b031660008051602061393e83398151915260405160405180910390a45b505050505050565b610fe3612244565b6001600160a01b0381166110095760405162461bcd60e51b8152600401610adb906135f7565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b6000828152600a602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b03169282019290925282916110a05750604080518082019091526009546001600160a01b0381168252600160a01b90046001600160601b031660208201525b6020810151600090612710906110bf906001600160601b03168761361d565b6110c9919061364a565b91519350909150505b9250929050565b6002600b54036110fb5760405162461bcd60e51b8152600401610adb90613401565b6002600b55611108612244565b478061114b5760405162461bcd60e51b81526020600482015260126024820152714e6f2045544820746f20776974686472617760701b6044820152606401610adb565b6012546001600160a01b03166111b55760405162461bcd60e51b815260206004820152602960248201527f4d75737420686176652076616c696420706172746e657231207769746864726160448201526877206164647265737360b81b6064820152608401610adb565b6013546012546001600160a01b03918216911603611204576012546040516001600160a01b039091169082156108fc029083906000818181858888f193505050506111ff57600080fd5b6112f4565b6013546001600160a01b031661126e5760405162461bcd60e51b815260206004820152602960248201527f4d75737420686176652076616c696420706172746e657232207769746864726160448201526877206164647265737360b81b6064820152608401610adb565b6000611286606461128084605061229e565b906122aa565b6012546040519192506001600160a01b03169082156108fc029083906000818181858888f193505050506112b957600080fd5b6013546001600160a01b03166108fc6112d284846122b6565b6040518115909202916000818181858888f193505050506112f257600080fd5b505b506001600b55565b61131783838360405180602001604052806000815250611e5b565b505050565b611324612244565b601855565b611331612244565b600d61133d82826136a4565b5050565b611349612244565b6001600160a01b03821661139f5760405162461bcd60e51b815260206004820152601f60248201527f506172746e657220616464726573736573206d7573742062652076616c6964006044820152606401610adb565b6001600160a01b0381166113f55760405162461bcd60e51b815260206004820152601f60248201527f506172746e657220616464726573736573206d7573742062652076616c6964006044820152606401610adb565b601280546001600160a01b039384166001600160a01b03199182161790915560138054929093169116179055565b6060816000816001600160401b0381111561144057611440612d47565b60405190808252806020026020018201604052801561149257816020015b60408051608081018252600080825260208083018290529282018190526060820152825260001990920191018161145e5790505b50905060005b8281146114e5576114c08686838181106114b4576114b4613763565b90506020020135611ea5565b8282815181106114d2576114d2613763565b6020908102919091010152600101611498565b50949350505050565b600061093c826121dd565b600d8054611506906133a7565b80601f0160208091040260200160405190810160405280929190818152602001828054611532906133a7565b801561157f5780601f106115545761010080835404028352916020019161157f565b820191906000526020600020905b81548152906001019060200180831161156257829003601f168201915b505050505081565b61158f612244565b601755565b61159c612244565b6001600160a01b0381166115c25760405162461bcd60e51b8152600401610adb906135f7565b600f80546001600160a01b0319166001600160a01b0383169081179091556040519081527f7ce7ec0b50378fb6c0186ffb5f48325f6593fcb4ca4386f21861af3129188f5c9060200160405180910390a150565b60006001600160a01b03821661163f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b61166c612244565b61167660006122c2565b565b600c5460ff161561169b5760405162461bcd60e51b8152600401610adb906133e1565b6002600b54036116bd5760405162461bcd60e51b8152600401610adb90613401565b6002600b5533321480156116d05750333b155b6116ec5760405162461bcd60e51b8152600401610adb90613438565b82518451146117315760405162461bcd60e51b81526020600482015260116024820152700aee4dedcce40d8d2e6e840d8cadccee8d607b1b6044820152606401610adb565b3361173b876114ee565b6001600160a01b0316146117805760405162461bcd60e51b815260206004820152600c60248201526b2737b71030903437b63232b960a11b6044820152606401610adb565b600033878787878660405160200161179d96959493929190613779565b6040516020818303038152906040528051906020012090506117bf8184612148565b6117db5760405162461bcd60e51b8152600401610adb9061352d565b601054604051633db0f8ab60e01b81526001600160a01b0390911690633db0f8ab9061180f90339089908990600401613558565b600060405180830381600087803b15801561182957600080fd5b505af115801561183d573d6000803e3d6000fd5b5089925050871590506118765761185388612314565b61185e3360016121c3565b600161186960005490565b6118739190613598565b90505b7f61db6f6bc9d0ae3136ead2e5ebbefd51a9a2ff69e296d07f1229e662fbe74cb73382888887604051610e339594939291906135ab565b606060008060006118bd85611616565b90506000816001600160401b038111156118d9576118d9612d47565b604051908082528060200260200182016040528015611902578160200160208202803683370190505b50905061192f60408051608081018252600080825260208201819052918101829052606081019190915290565b60005b8386146119a9576119428161231f565b915081604001516119a15781516001600160a01b03161561196257815194505b876001600160a01b0316856001600160a01b0316036119a1578083878060010198508151811061199457611994613763565b6020026020010181815250505b600101611932565b50909695505050505050565b6119bd612244565b61133d828261235b565b6119cf612244565b600e6113178284836137ac565b606060038054610951906133a7565b6060818310611a0d57604051631960ccad60e11b815260040160405180910390fd5b600080611a1960005490565b905080841115611a27578093505b6000611a3287611616565b905084861015611a515785850381811015611a4b578091505b50611a55565b5060005b6000816001600160401b03811115611a6f57611a6f612d47565b604051908082528060200260200182016040528015611a98578160200160208202803683370190505b50905081600003611aae579350611b5d92505050565b6000611ab988611ea5565b905060008160400151611aca575080515b885b888114158015611adc5750848714155b15611b5157611aea8161231f565b92508260400151611b495782516001600160a01b031615611b0a57825191505b8a6001600160a01b0316826001600160a01b031603611b495780848880600101995081518110611b3c57611b3c613763565b6020026020010181815250505b600101611acc565b50505092835250909150505b9392505050565b600c5460ff1615611b875760405162461bcd60e51b8152600401610adb906133e1565b6002600b5403611ba95760405162461bcd60e51b8152600401610adb90613401565b6002600b553332148015611bbc5750333b155b611bd85760405162461bcd60e51b8152600401610adb90613438565b60185433600090815260166020526040902054849190611bf9908390613493565b1115611c3e5760405162461bcd60e51b81526020600482015260146024820152734d6178206d696e7420706572206164647265737360601b6044820152606401610adb565b8360175481611c506001546000540390565b611c5a9190613493565b1115611c9e5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e7420737570706c7960681b6044820152606401610adb565b601454831015611ce05760405162461bcd60e51b815260206004820152600d60248201526c496e76616c6964206e6f6e636560981b6044820152606401610adb565b6040516bffffffffffffffffffffffff193360601b1660208201526034810186905260548101849052600090607401604051602081830303815290604052805190602001209050611d318186612148565b611d4d5760405162461bcd60e51b8152600401610adb9061352d565b3360009081526016602052604081208054889290611d6c908490613493565b90915550611d7c905033876121c3565b7f4a088c22cd1e6f963b6bce7561c9f86ddb5676f42fa452c6f6c2264f8759d7e73387611da860005490565b611db29190613598565b604080516001600160a01b039093168352602083019190915281018890526060810186905260800160405180910390a150506001600b5550505050565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611e66848484610e4a565b6001600160a01b0383163b15611e9f57611e8284848484612458565b611e9f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6040805160808082018352600080835260208084018290528385018290526060808501839052855193840186528284529083018290529382018190529281018390529091506000548310611ef95792915050565b611f028361231f565b9050806040015115611f145792915050565b611b5d83612544565b611f25612244565b601455565b6060611f3582612121565b611f755760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b6044820152606401610adb565b611f7d612579565b611f8683612588565b604051602001611f9792919061386b565b6040516020818303038152906040529050919050565b611fb5612244565b600c805460ff1916911515919091179055565b600e8054611506906133a7565b611fdd612244565b6001600160a01b0381166120425760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610adb565b61204b816122c2565b50565b612056612244565b6001600160a01b03811661207c5760405162461bcd60e51b8152600401610adb906135f7565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b60006301ffc9a760e01b6001600160e01b0319831614806120cf57506380ac58cd60e01b6001600160e01b03198316145b8061093c5750506001600160e01b031916635b5e139f60e01b1490565b60006001600160e01b0319821663152a902d60e11b148061093c57506301ffc9a760e01b6001600160e01b031983161461093c565b600080548210801561093c575050600090815260046020526040902054600160e01b161590565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c81018390526000908190605c0160408051601f198184030181529190528051602090910120600f549091506001600160a01b03166121b18285612688565b6001600160a01b031614949350505050565b61133d8282604051806020016040528060008152506126ac565b60008160005481101561222b5760008181526004602052604081205490600160e01b82169003612229575b80600003611b5d575060001901600081815260046020526040902054612208565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b031633146116765760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610adb565b6000611b5d828461361d565b6000611b5d828461364a565b6000611b5d8284613598565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61204b816000612719565b60408051608081018252600080825260208201819052918101829052606081019190915260008281526004602052604090205461093c90612851565b6127106001600160601b03821611156123c95760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610adb565b6001600160a01b03821661241f5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610adb565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600955565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061248d9033908990889088906004016138aa565b6020604051808303816000875af19250505080156124c8575060408051601f3d908101601f191682019092526124c5918101906138dd565b60015b612526573d8080156124f6576040519150601f19603f3d011682016040523d82523d6000602084013e6124fb565b606091505b50805160000361251e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60408051608081018252600080825260208201819052918101829052606081019190915261093c612574836121dd565b612851565b6060600d8054610951906133a7565b6060816000036125af5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156125d957806125c3816138fa565b91506125d29050600a8361364a565b91506125b3565b6000816001600160401b038111156125f3576125f3612d47565b6040519080825280601f01601f19166020018201604052801561261d576020820181803683370190505b5090505b841561253c57612632600183613598565b915061263f600a86613913565b61264a906030613493565b60f81b81838151811061265f5761265f613763565b60200101906001600160f81b031916908160001a905350612681600a8661364a565b9450612621565b60008060006126978585612898565b915091506126a4816128da565b509392505050565b6126b68383612a90565b6001600160a01b0383163b15611317576000548281035b6126e06000868380600101945086612458565b6126fd576040516368d2bf6b60e11b815260040160405180910390fd5b8181106126cd57816000541461271257600080fd5b5050505050565b6000612724836121dd565b90508060008061274286600090815260066020526040902080549091565b91509150841561278257612757818433610e9f565b612782576127658333610894565b61278257604051632ce44b5f60e11b815260040160405180910390fd5b801561278d57600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260046020526040812091909155600160e11b8516900361281b576001860160008181526004602052604081205490036128195760005481146128195760008181526004602052604090208590555b505b60405186906000906001600160a01b0386169060008051602061393e833981519152908390a45050600180548101905550505050565b604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b60008082516041036128ce5760208301516040840151606085015160001a6128c287828585612b6a565b945094505050506110d2565b506000905060026110d2565b60008160048111156128ee576128ee613927565b036128f65750565b600181600481111561290a5761290a613927565b036129575760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610adb565b600281600481111561296b5761296b613927565b036129b85760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610adb565b60038160048111156129cc576129cc613927565b03612a245760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610adb565b6004816004811115612a3857612a38613927565b0361204b5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610adb565b6000805490829003612ab55760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b1783179055828401908390839060008051602061393e8339815191528180a4600183015b818114612b40578083600060008051602061393e833981519152600080a4600101612b1a565b5081600003612b6157604051622e076360e81b815260040160405180910390fd5b60005550505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115612ba15750600090506003612c4e565b8460ff16601b14158015612bb957508460ff16601c14155b15612bca5750600090506004612c4e565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612c1e573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612c4757600060019250925050612c4e565b9150600090505b94509492505050565b6001600160e01b03198116811461204b57600080fd5b600060208284031215612c7f57600080fd5b8135611b5d81612c57565b60005b83811015612ca5578181015183820152602001612c8d565b50506000910152565b60008151808452612cc6816020860160208601612c8a565b601f01601f19169290920160200192915050565b602081526000611b5d6020830184612cae565b600060208284031215612cff57600080fd5b5035919050565b6001600160a01b038116811461204b57600080fd5b60008060408385031215612d2e57600080fd5b8235612d3981612d06565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715612d8557612d85612d47565b604052919050565b600082601f830112612d9e57600080fd5b813560206001600160401b03821115612db957612db9612d47565b8160051b612dc8828201612d5d565b9283528481018201928281019087851115612de257600080fd5b83870192505b84831015612e0157823582529183019190830190612de8565b979650505050505050565b60006001600160401b03831115612e2557612e25612d47565b612e38601f8401601f1916602001612d5d565b9050828152838383011115612e4c57600080fd5b828260208301376000602084830101529392505050565b600082601f830112612e7457600080fd5b611b5d83833560208501612e0c565b60008060008060008060c08789031215612e9c57600080fd5b863595506020870135945060408701356001600160401b0380821115612ec157600080fd5b612ecd8a838b01612d8d565b95506060890135915080821115612ee357600080fd5b612eef8a838b01612d8d565b94506080890135915080821115612f0557600080fd5b50612f1289828a01612e63565b92505060a087013590509295509295509295565b600080600060608486031215612f3b57600080fd5b8335612f4681612d06565b92506020840135612f5681612d06565b929592945050506040919091013590565b600060208284031215612f7957600080fd5b8135611b5d81612d06565b60008060408385031215612f9757600080fd5b50508035926020909101359150565b600060208284031215612fb857600080fd5b81356001600160401b03811115612fce57600080fd5b8201601f81018413612fdf57600080fd5b61253c84823560208401612e0c565b6000806040838503121561300157600080fd5b823561300c81612d06565b9150602083013561301c81612d06565b809150509250929050565b6000806020838503121561303a57600080fd5b82356001600160401b038082111561305157600080fd5b818501915085601f83011261306557600080fd5b81358181111561307457600080fd5b8660208260051b850101111561308957600080fd5b60209290920196919550909350505050565b80516001600160a01b031682526020808201516001600160401b03169083015260408082015115159083015260609081015162ffffff16910152565b6020808252825182820181905260009190848201906040850190845b818110156119a95761310683855161309b565b92840192608092909201916001016130f3565b8035801515811461312957600080fd5b919050565b60008060008060008060c0878903121561314757600080fd5b8635955061315760208801613119565b945060408701356001600160401b0380821115612ec157600080fd5b600081518084526020808501945080840160005b838110156131a357815187529582019590820190600101613187565b509495945050505050565b602081526000611b5d6020830184613173565b600080604083850312156131d457600080fd5b82356131df81612d06565b915060208301356001600160601b038116811461301c57600080fd5b6000806020838503121561320e57600080fd5b82356001600160401b038082111561322557600080fd5b818501915085601f83011261323957600080fd5b81358181111561324857600080fd5b86602082850101111561308957600080fd5b60008060006060848603121561326f57600080fd5b833561327a81612d06565b95602085013595506040909401359392505050565b6000806000606084860312156132a457600080fd5b8335925060208401356001600160401b038111156132c157600080fd5b6132cd86828701612e63565b925050604084013590509250925092565b600080604083850312156132f157600080fd5b82356132fc81612d06565b915061330a60208401613119565b90509250929050565b6000806000806080858703121561332957600080fd5b843561333481612d06565b9350602085013561334481612d06565b92506040850135915060608501356001600160401b0381111561336657600080fd5b61337287828801612e63565b91505092959194509250565b6080810161093c828461309b565b60006020828403121561339e57600080fd5b611b5d82613119565b600181811c908216806133bb57607f821691505b6020821081036133db57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526006908201526514185d5cd95960d21b604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526025908201527f4d75737420696e766f6b65206469726563746c792066726f6d20796f75722077604082015264185b1b195d60da1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561093c5761093c61347d565b6000602082840312156134b857600080fd5b8151611b5d81612d06565b805160009060208084018383156131a357815187529582019590820190600101613187565b6001600160601b03198760601b168152856014820152846034820152600061351c61351660548401876134c3565b856134c3565b928352505060200195945050505050565b602080825260119082015270496e76616c6964207369676e617475726560781b604082015260600190565b6001600160a01b038416815260606020820181905260009061357c90830185613173565b828103604084015261358e8185613173565b9695505050505050565b8181038181111561093c5761093c61347d565b60018060a01b038616815284602082015260a0604082015260006135d260a0830186613173565b82810360608401526135e48186613173565b9150508260808301529695505050505050565b6020808252600c908201526b4e756c6c206164647265737360a01b604082015260600190565b808202811582820484141761093c5761093c61347d565b634e487b7160e01b600052601260045260246000fd5b60008261365957613659613634565b500490565b601f82111561131757600081815260208120601f850160051c810160208610156136855750805b601f850160051c820191505b81811015610fd357828155600101613691565b81516001600160401b038111156136bd576136bd612d47565b6136d1816136cb84546133a7565b8461365e565b602080601f83116001811461370657600084156136ee5750858301515b600019600386901b1c1916600185901b178555610fd3565b600085815260208120601f198616915b8281101561373557888601518255948401946001909101908401613716565b50858210156137535787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b6001600160601b03198760601b16815285601482015284151560f81b6034820152600061351c61351660358401876134c3565b6001600160401b038311156137c3576137c3612d47565b6137d7836137d183546133a7565b8361365e565b6000601f84116001811461380b57600085156137f35750838201355b600019600387901b1c1916600186901b178355612712565b600083815260209020601f19861690835b8281101561383c578685013582556020948501946001909201910161381c565b50868210156138595760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6000835161387d818460208801612c8a565b835190830190613891818360208801612c8a565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061358e90830184612cae565b6000602082840312156138ef57600080fd5b8151611b5d81612c57565b60006001820161390c5761390c61347d565b5060010190565b60008261392257613922613634565b500690565b634e487b7160e01b600052602160045260246000fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220a38f1048c46f7c0daa6880acabf2eee888b708f516c8303439815d3edafd36c364736f6c63430008110033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000004475f712004d52964644cdf54280d1d9e58ce37800000000000000000000000000000000000000000000000000000000000002ee0000000000000000000000000000000000000000000000000000000000000015746865206c6974746c65206672656e73204e4654200000000000000000000000000000000000000000000000000000000000000000000000000000000000000b4c4954544c454652454e53000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003868747470733a2f2f6d657461646174612d76322e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f6d657461646174612f0000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): the little frens NFT
Arg [1] : symbol_ (string): LITTLEFRENS
Arg [2] : baseURI_ (string): https://metadata-v2.s3.us-west-1.amazonaws.com/metadata/
Arg [3] : royaltyReciverAddress_ (address): 0x4475F712004D52964644cdF54280d1d9E58cE378
Arg [4] : royaltyFee_ (uint96): 750

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 0000000000000000000000004475f712004d52964644cdf54280d1d9e58ce378
Arg [4] : 00000000000000000000000000000000000000000000000000000000000002ee
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000015
Arg [6] : 746865206c6974746c65206672656e73204e4654200000000000000000000000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [8] : 4c4954544c454652454e53000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000038
Arg [10] : 68747470733a2f2f6d657461646174612d76322e73332e75732d776573742d31
Arg [11] : 2e616d617a6f6e6177732e636f6d2f6d657461646174612f0000000000000000


Deployed Bytecode Sourcemap

93818:10562:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96321:275;;;;;;;;;;-1:-1:-1;96321:275:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;96321:275:0;;;;;;;;51200:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;57691:218::-;;;;;;;;;;-1:-1:-1;57691:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;57691:218:0;1533:203:1;57124:408:0;;;;;;:::i;:::-;;:::i;:::-;;101713:1104;;;;;;;;;;-1:-1:-1;101713:1104:0;;;;;:::i;:::-;;:::i;94497:75::-;;;;;;;;;;-1:-1:-1;94497:75:0;;;;-1:-1:-1;;;;;94497:75:0;;;46951:323;;;;;;;;;;-1:-1:-1;47225:12:0;;47012:7;47209:13;:28;46951:323;;;5113:25:1;;;5101:2;5086:18;46951:323:0;4967:177:1;94415:75:0;;;;;;;;;;-1:-1:-1;94415:75:0;;;;-1:-1:-1;;;;;94415:75:0;;;61330:2825;;;;;;:::i;:::-;;:::i;97958:217::-;;;;;;;;;;-1:-1:-1;97958:217:0;;;;;:::i;:::-;;:::i;11575:442::-;;;;;;;;;;-1:-1:-1;11575:442:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;6307:32:1;;;6289:51;;6371:2;6356:18;;6349:34;;;;6262:18;11575:442:0;6115:274:1;99752:695:0;;;;;;;;;;;;;:::i;94745:55::-;;;;;;;;;;-1:-1:-1;94745:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;64251:193;;;;;;:::i;:::-;;:::i;99210:158::-;;;;;;;;;;-1:-1:-1;99210:158:0;;;;;:::i;:::-;;:::i;98602:98::-;;;;;;;;;;-1:-1:-1;98602:98:0;;;;;:::i;:::-;;:::i;99376:368::-;;;;;;;;;;-1:-1:-1;99376:368:0;;;;;:::i;:::-;;:::i;87521:528::-;;;;;;;;;;-1:-1:-1;87521:528:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;94065:26::-;;;;;;;;;;-1:-1:-1;94065:26:0;;;;;;;;52593:152;;;;;;;;;;-1:-1:-1;52593:152:0;;;;;:::i;:::-;;:::i;94319:87::-;;;;;;;;;;-1:-1:-1;94319:87:0;;;;-1:-1:-1;;;;;94319:87:0;;;94098:21;;;;;;;;;;;;;:::i;94848:42::-;;;;;;;;;;;;;;;;99100:102;;;;;;;;;;-1:-1:-1;99100:102:0;;;;;:::i;:::-;;:::i;97772:178::-;;;;;;;;;;-1:-1:-1;97772:178:0;;;;;:::i;:::-;;:::i;48135:233::-;;;;;;;;;;-1:-1:-1;48135:233:0;;;;;:::i;:::-;;:::i;31077:103::-;;;;;;;;;;;;;:::i;103332:1045::-;;;;;;;;;;-1:-1:-1;103332:1045:0;;;;;:::i;:::-;;:::i;91397:900::-;;;;;;;;;;-1:-1:-1;91397:900:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;94664:72::-;;;;;;;;;;-1:-1:-1;94664:72:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;30429:87;;;;;;;;;;-1:-1:-1;30502:6:0;;-1:-1:-1;;;;;30502:6:0;30429:87;;98708:165;;;;;;;;;;-1:-1:-1;98708:165:0;;;;;:::i;:::-;;:::i;98974:118::-;;;;;;;;;;-1:-1:-1;98974:118:0;;;;;:::i;:::-;;:::i;51376:104::-;;;;;;;;;;;;;:::i;88437:2513::-;;;;;;;;;;-1:-1:-1;88437:2513:0;;;;;:::i;:::-;;:::i;100510:624::-;;;;;;;;;;-1:-1:-1;100510:624:0;;;;;:::i;:::-;;:::i;58249:234::-;;;;;;;;;;-1:-1:-1;58249:234:0;;;;;:::i;:::-;;:::i;94232:80::-;;;;;;;;;;-1:-1:-1;94232:80:0;;;;-1:-1:-1;;;;;94232:80:0;;;65042:407;;;;;;:::i;:::-;;:::i;86934:428::-;;;;;;;;;;-1:-1:-1;86934:428:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;98495:99::-;;;;;;;;;;-1:-1:-1;98495:99:0;;;;;:::i;:::-;;:::i;96720:260::-;;;;;;;;;;-1:-1:-1;96720:260:0;;;;;:::i;:::-;;:::i;94809:32::-;;;;;;;;;;;;;;;;97674:90;;;;;;;;;;-1:-1:-1;97674:90:0;;;;;:::i;:::-;;:::i;94126:25::-;;;;;;;;;;;;;:::i;58640:164::-;;;;;;;;;;-1:-1:-1;58640:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;58761:25:0;;;58737:4;58761:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;58640:164;31335:201;;;;;;;;;;-1:-1:-1;31335:201:0;;;;;:::i;:::-;;:::i;94160:65::-;;;;;;;;;;-1:-1:-1;94160:65:0;;;;-1:-1:-1;;;;;94160:65:0;;;98183:254;;;;;;;;;;-1:-1:-1;98183:254:0;;;;;:::i;:::-;;:::i;96321:275::-;96479:4;96508:38;96534:11;96508:25;:38::i;:::-;:80;;;;96550:38;96576:11;96550:25;:38::i;:::-;96501:87;96321:275;-1:-1:-1;;96321:275:0:o;51200:100::-;51254:13;51287:5;51280:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51200:100;:::o;57691:218::-;57767:7;57792:16;57800:7;57792;:16::i;:::-;57787:64;;57817:34;;-1:-1:-1;;;57817:34:0;;;;;;;;;;;57787:64;-1:-1:-1;57871:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;57871:30:0;;57691:218::o;57124:408::-;57213:13;57229:16;57237:7;57229;:16::i;:::-;57213:32;-1:-1:-1;81457:10:0;-1:-1:-1;;;;;57262:28:0;;;57258:175;;57310:44;57327:5;81457:10;58640:164;:::i;57310:44::-;57305:128;;57382:35;;-1:-1:-1;;;57382:35:0;;;;;;;;;;;57305:128;57445:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;57445:35:0;-1:-1:-1;;;;;57445:35:0;;;;;;;;;57496:28;;57445:24;;57496:28;;;;;;;57202:330;57124:408;;:::o;101713:1104::-;95671:6;;;;95670:7;95662:26;;;;-1:-1:-1;;;95662:26:0;;;;;;;:::i;:::-;;;;;;;;;27354:1:::1;27952:7;;:19:::0;27944:63:::1;;;;-1:-1:-1::0;;;27944:63:0::1;;;;;;;:::i;:::-;27354:1;28085:7;:18:::0;95811:10:::2;95825:9;95811:23;:51:::0;::::2;;;-1:-1:-1::0;95851:10:0::2;97266:21:::0;97315:9;95811:51:::2;95803:101;;;;-1:-1:-1::0;;;95803:101:0::2;;;;;;;:::i;:::-;102002:1:::3;96022:9;;96011:7;95995:13;47225:12:::0;;47012:7;47209:13;:28;;46951:323;95995:13:::3;:23;;;;:::i;:::-;:36;;95987:68;;;::::0;-1:-1:-1;;;95987:68:0;;16126:2:1;95987:68:0::3;::::0;::::3;16108:21:1::0;16165:2;16145:18;;;16138:30;-1:-1:-1;;;16184:18:1;;;16177:49;16243:18;;95987:68:0::3;15924:343:1::0;95987:68:0::3;102047:11:::4;:18;102024:12;:19;:41;102016:71;;;::::0;-1:-1:-1;;;102016:71:0;;16474:2:1;102016:71:0::4;::::0;::::4;16456:21:1::0;16513:2;16493:18;;;16486:30;-1:-1:-1;;;16532:18:1;;;16525:47;16589:18;;102016:71:0::4;16272:341:1::0;102016:71:0::4;102115:27;::::0;102106:57:::4;::::0;-1:-1:-1;;;102106:57:0;;::::4;::::0;::::4;5113:25:1::0;;;102167:10:0::4;::::0;-1:-1:-1;;;;;102115:27:0::4;::::0;102106:45:::4;::::0;5086:18:1;;102106:57:0::4;;;;;;;;;;;;;;;;;::::0;::::4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;102106:71:0::4;;102098:96;;;::::0;-1:-1:-1;;;102098:96:0;;17076:2:1;102098:96:0::4;::::0;::::4;17058:21:1::0;17115:2;17095:18;;;17088:30;-1:-1:-1;;;17134:18:1;;;17127:42;17186:18;;102098:96:0::4;16874:336:1::0;102098:96:0::4;102207:16;102267:10;102279;102291;102303:12;102317:11;102330:6;102250:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;102226:122;;;;;;102207:141;;102367:39;102385:8;102395:10;102367:17;:39::i;:::-;102359:69;;;;-1:-1:-1::0;;;102359:69:0::4;;;;;;;:::i;:::-;102450:32;::::0;;;:20:::4;:32;::::0;;;;;;;:44;;;;;;;;;::::4;;102449:45;102441:81;;;::::0;-1:-1:-1;;;102441:81:0;;18856:2:1;102441:81:0::4;::::0;::::4;18838:21:1::0;18895:2;18875:18;;;18868:30;18934:25;18914:18;;;18907:53;18977:18;;102441:81:0::4;18654:347:1::0;102441:81:0::4;102533:32;::::0;;;:20:::4;:32;::::0;;;;;;;:44;;;;;;;;;;:51;;-1:-1:-1;;102533:51:0::4;102580:4;102533:51;::::0;;102612:20:::4;::::0;102597:80;;-1:-1:-1;;;102597:80:0;;-1:-1:-1;;;;;102612:20:0;;::::4;::::0;102597:41:::4;::::0;:80:::4;::::0;102639:10:::4;::::0;102651:12;;102665:11;;102597:80:::4;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::4;;;;;;;;;;;;::::0;::::4;;;;;;;;;102690:24;102700:10;102712:1;102690:9;:24::i;:::-;102730:79;102743:10;102772:1;102755:14;46693:7:::0;46720:13;;46638:103;102755:14:::4;:18;;;;:::i;:::-;102775:12;102789:11;102802:6;102730:79;;;;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1::0;;27310:1:0::1;28264:7;:22:::0;-1:-1:-1;;;;;;101713:1104:0:o;61330:2825::-;61472:27;61502;61521:7;61502:18;:27::i;:::-;61472:57;;61587:4;-1:-1:-1;;;;;61546:45:0;61562:19;-1:-1:-1;;;;;61546:45:0;;61542:86;;61600:28;;-1:-1:-1;;;61600:28:0;;;;;;;;;;;61542:86;61642:27;60438:24;;;:15;:24;;;;;60666:26;;61833:68;60666:26;61875:4;81457:10;61881:19;-1:-1:-1;;;;;59912:32:0;;;59756:28;;60041:20;;60063:30;;60038:56;;59453:659;61833:68;61828:180;;61921:43;61938:4;81457:10;58640:164;:::i;61921:43::-;61916:92;;61973:35;;-1:-1:-1;;;61973:35:0;;;;;;;;;;;61916:92;-1:-1:-1;;;;;62025:16:0;;62021:52;;62050:23;;-1:-1:-1;;;62050:23:0;;;;;;;;;;;62021:52;62222:15;62219:160;;;62362:1;62341:19;62334:30;62219:160;-1:-1:-1;;;;;62759:24:0;;;;;;;:18;:24;;;;;;62757:26;;-1:-1:-1;;62757:26:0;;;62828:22;;;;;;;;;62826:24;;-1:-1:-1;62826:24:0;;;55982:11;55957:23;55953:41;55940:63;-1:-1:-1;;;55940:63:0;63121:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;63416:47:0;;:52;;63412:627;;63521:1;63511:11;;63489:19;63644:30;;;:17;:30;;;;;;:35;;63640:384;;63782:13;;63767:11;:28;63763:242;;63929:30;;;;:17;:30;;;;;:52;;;63763:242;63470:569;63412:627;64086:7;64082:2;-1:-1:-1;;;;;64067:27:0;64076:4;-1:-1:-1;;;;;64067:27:0;-1:-1:-1;;;;;;;;;;;64067:27:0;;;;;;;;;64105:42;61461:2694;;;61330:2825;;;:::o;97958:217::-;30315:13;:11;:13::i;:::-;-1:-1:-1;;;;;98058:35:0;::::1;98050:60;;;;-1:-1:-1::0;;;98050:60:0::1;;;;;;;:::i;:::-;98123:20;:44:::0;;-1:-1:-1;;;;;;98123:44:0::1;-1:-1:-1::0;;;;;98123:44:0;;;::::1;::::0;;;::::1;::::0;;97958:217::o;11575:442::-;11672:7;11730:27;;;:17;:27;;;;;;;;11701:56;;;;;;;;;-1:-1:-1;;;;;11701:56:0;;;;;-1:-1:-1;;;11701:56:0;;;-1:-1:-1;;;;;11701:56:0;;;;;;;;11672:7;;11770:92;;-1:-1:-1;11821:29:0;;;;;;;;;11831:19;11821:29;-1:-1:-1;;;;;11821:29:0;;;;-1:-1:-1;;;11821:29:0;;-1:-1:-1;;;;;11821:29:0;;;;;11770:92;11912:23;;;;11874:21;;12383:5;;11899:36;;-1:-1:-1;;;;;11899:36:0;:10;:36;:::i;:::-;11898:58;;;;:::i;:::-;11977:16;;;-1:-1:-1;11874:82:0;;-1:-1:-1;;11575:442:0;;;;;;:::o;99752:695::-;27354:1;27952:7;;:19;27944:63;;;;-1:-1:-1;;;27944:63:0;;;;;;;:::i;:::-;27354:1;28085:7;:18;30315:13:::1;:11;:13::i;:::-;99832:21:::2;99872:12:::0;99864:43:::2;;;::::0;-1:-1:-1;;;99864:43:0;;21435:2:1;99864:43:0::2;::::0;::::2;21417:21:1::0;21474:2;21454:18;;;21447:30;-1:-1:-1;;;21493:18:1;;;21486:48;21551:18;;99864:43:0::2;21233:342:1::0;99864:43:0::2;99926:15;::::0;-1:-1:-1;;;;;99926:15:0::2;99918:83;;;::::0;-1:-1:-1;;;99918:83:0;;21782:2:1;99918:83:0::2;::::0;::::2;21764:21:1::0;21821:2;21801:18;;;21794:30;21860:34;21840:18;;;21833:62;-1:-1:-1;;;21911:18:1;;;21904:39;21960:19;;99918:83:0::2;21580:405:1::0;99918:83:0::2;100037:15;::::0;100018::::2;::::0;-1:-1:-1;;;;;100037:15:0;;::::2;100018::::0;::::2;:34:::0;100014:426:::2;;100085:15;::::0;100077:39:::2;::::0;-1:-1:-1;;;;;100085:15:0;;::::2;::::0;100077:39;::::2;;;::::0;100107:8;;100085:15:::2;100077:39:::0;100085:15;100077:39;100107:8;100085:15;100077:39;::::2;;;;;;100069:48;;;::::0;::::2;;100014:426;;;100158:15;::::0;-1:-1:-1;;;;;100158:15:0::2;100150:83;;;::::0;-1:-1:-1;;;100150:83:0;;22192:2:1;100150:83:0::2;::::0;::::2;22174:21:1::0;22231:2;22211:18;;;22204:30;22270:34;22250:18;;;22243:62;-1:-1:-1;;;22321:18:1;;;22314:39;22370:19;;100150:83:0::2;21990:405:1::0;100150:83:0::2;100248:14;100265:25;100286:3;100265:16;:8:::0;100278:2:::2;100265:12;:16::i;:::-;:20:::0;::::2;:25::i;:::-;100323:15;::::0;100315:37:::2;::::0;100248:42;;-1:-1:-1;;;;;;100323:15:0::2;::::0;100315:37;::::2;;;::::0;100248:42;;100323:15:::2;100315:37:::0;100323:15;100315:37;100248:42;100323:15;100315:37;::::2;;;;;;100307:46;;;::::0;::::2;;100384:15;::::0;-1:-1:-1;;;;;100384:15:0::2;100376:51;100406:20;:8:::0;100419:6;100406:12:::2;:20::i;:::-;100376:51;::::0;;::::2;::::0;;::::2;::::0;::::2;::::0;;;;;;::::2;;;;;;100368:60;;;::::0;::::2;;100135:305;100014:426;-1:-1:-1::0;27310:1:0;28264:7;:22;99752:695::o;64251:193::-;64397:39;64414:4;64420:2;64424:7;64397:39;;;;;;;;;;;;:16;:39::i;:::-;64251:193;;;:::o;99210:158::-;30315:13;:11;:13::i;:::-;99310:23:::1;:50:::0;99210:158::o;98602:98::-;30315:13;:11;:13::i;:::-;98674:7:::1;:18;98684:8:::0;98674:7;:18:::1;:::i;:::-;;98602:98:::0;:::o;99376:368::-;30315:13;:11;:13::i;:::-;-1:-1:-1;;;;;99495:30:0;::::1;99487:74;;;::::0;-1:-1:-1;;;99487:74:0;;24806:2:1;99487:74:0::1;::::0;::::1;24788:21:1::0;24845:2;24825:18;;;24818:30;24884:33;24864:18;;;24857:61;24935:18;;99487:74:0::1;24604:355:1::0;99487:74:0::1;-1:-1:-1::0;;;;;99580:30:0;::::1;99572:74;;;::::0;-1:-1:-1;;;99572:74:0;;24806:2:1;99572:74:0::1;::::0;::::1;24788:21:1::0;24845:2;24825:18;;;24818:30;24884:33;24864:18;;;24857:61;24935:18;;99572:74:0::1;24604:355:1::0;99572:74:0::1;99657:15;:34:::0;;-1:-1:-1;;;;;99657:34:0;;::::1;-1:-1:-1::0;;;;;;99657:34:0;;::::1;;::::0;;;99702:15:::1;:34:::0;;;;;::::1;::::0;::::1;;::::0;;99376:368::o;87521:528::-;87665:23;87756:8;87731:22;87756:8;-1:-1:-1;;;;;87823:36:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87823:36:0;;-1:-1:-1;;87823:36:0;;;;;;;;;;;;87786:73;;87879:9;87874:125;87895:14;87890:1;:19;87874:125;;87951:32;87971:8;;87980:1;87971:11;;;;;;;:::i;:::-;;;;;;;87951:19;:32::i;:::-;87935:10;87946:1;87935:13;;;;;;;;:::i;:::-;;;;;;;;;;:48;87911:3;;87874:125;;;-1:-1:-1;88020:10:0;87521:528;-1:-1:-1;;;;87521:528:0:o;52593:152::-;52665:7;52708:27;52727:7;52708:18;:27::i;94098:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;99100:102::-;30315:13;:11;:13::i;:::-;99172:9:::1;:22:::0;99100:102::o;97772:178::-;30315:13;:11;:13::i;:::-;-1:-1:-1;;;;;97842:20:0;::::1;97834:45;;;;-1:-1:-1::0;;;97834:45:0::1;;;;;;;:::i;:::-;97892:5;:14:::0;;-1:-1:-1;;;;;;97892:14:0::1;-1:-1:-1::0;;;;;97892:14:0;::::1;::::0;;::::1;::::0;;;97922:20:::1;::::0;1679:51:1;;;97922:20:0::1;::::0;1667:2:1;1652:18;97922:20:0::1;;;;;;;97772:178:::0;:::o;48135:233::-;48207:7;-1:-1:-1;;;;;48231:19:0;;48227:60;;48259:28;;-1:-1:-1;;;48259:28:0;;;;;;;;;;;48227:60;-1:-1:-1;;;;;;48305:25:0;;;;;:18;:25;;;;;;-1:-1:-1;;;;;48305:55:0;;48135:233::o;31077:103::-;30315:13;:11;:13::i;:::-;31142:30:::1;31169:1;31142:18;:30::i;:::-;31077:103::o:0;103332:1045::-;95671:6;;;;95670:7;95662:26;;;;-1:-1:-1;;;95662:26:0;;;;;;;:::i;:::-;27354:1:::1;27952:7;;:19:::0;27944:63:::1;;;;-1:-1:-1::0;;;27944:63:0::1;;;;;;;:::i;:::-;27354:1;28085:7;:18:::0;95811:10:::2;95825:9;95811:23;:51:::0;::::2;;;-1:-1:-1::0;95851:10:0::2;97266:21:::0;97315:9;95811:51:::2;95803:101;;;;-1:-1:-1::0;;;95803:101:0::2;;;;;;;:::i;:::-;103633:11:::3;:18;103610:12;:19;:41;103602:71;;;::::0;-1:-1:-1;;;103602:71:0;;16474:2:1;103602:71:0::3;::::0;::::3;16456:21:1::0;16513:2;16493:18;;;16486:30;-1:-1:-1;;;16532:18:1;;;16525:47;16589:18;;103602:71:0::3;16272:341:1::0;103602:71:0::3;103708:10;103692:12;103700:3:::0;103692:7:::3;:12::i;:::-;-1:-1:-1::0;;;;;103692:26:0::3;;103684:51;;;::::0;-1:-1:-1;;;103684:51:0;;17076:2:1;103684:51:0::3;::::0;::::3;17058:21:1::0;17115:2;17095:18;;;17088:30;-1:-1:-1;;;17134:18:1;;;17127:42;17186:18;;103684:51:0::3;16874:336:1::0;103684:51:0::3;103748:16;103794:10;103806:3;103811:9;103822:12;103836:11;103849:6;103777:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;103767:90;;;;;;103748:109;;103876:39;103894:8;103904:10;103876:17;:39::i;:::-;103868:69;;;;-1:-1:-1::0;;;103868:69:0::3;;;;;;;:::i;:::-;103965:20;::::0;103950:80:::3;::::0;-1:-1:-1;;;103950:80:0;;-1:-1:-1;;;;;103965:20:0;;::::3;::::0;103950:41:::3;::::0;:80:::3;::::0;103992:10:::3;::::0;104004:12;;104018:11;;103950:80:::3;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;-1:-1:-1::0;104069:3:0;;-1:-1:-1;;104085:191:0;::::3;::::0;-1:-1:-1;104085:191:0::3;;104115:10;104121:3;104115:5;:10::i;:::-;104140:24;104150:10;104162:1;104140:9;:24::i;:::-;104214:1;104197:14;46693:7:::0;46720:13;;46638:103;104197:14:::3;:18;;;;:::i;:::-;104179:36;;104085:191;104293:76;104306:10;104318:15;104335:12;104349:11;104362:6;104293:76;;;;;;;;;;:::i;91397:900::-:0;91475:16;91529:19;91563:25;91603:22;91628:16;91638:5;91628:9;:16::i;:::-;91603:41;;91659:25;91701:14;-1:-1:-1;;;;;91687:29:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;91687:29:0;;91659:57;;91731:31;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91731:31:0;91782:9;91777:472;91826:14;91811:11;:29;91777:472;;91878:15;91891:1;91878:12;:15::i;:::-;91866:27;;91916:9;:16;;;91957:8;91912:73;92007:14;;-1:-1:-1;;;;;92007:28:0;;92003:111;;92080:14;;;-1:-1:-1;92003:111:0;92157:5;-1:-1:-1;;;;;92136:26:0;:17;-1:-1:-1;;;;;92136:26:0;;92132:102;;92213:1;92187:8;92196:13;;;;;;92187:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;92132:102;91842:3;;91777:472;;;-1:-1:-1;92270:8:0;;91397:900;-1:-1:-1;;;;;;91397:900:0:o;98708:165::-;30315:13;:11;:13::i;:::-;98809:56:::1;98828:23;98853:11;98809:18;:56::i;98974:118::-:0;30315:13;:11;:13::i;:::-;99058:11:::1;:26;99072:12:::0;;99058:11;:26:::1;:::i;51376:104::-:0;51432:13;51465:7;51458:14;;;;;:::i;88437:2513::-;88580:16;88647:4;88638:5;:13;88634:45;;88660:19;;-1:-1:-1;;;88660:19:0;;;;;;;;;;;88634:45;88694:19;88728:17;88748:14;46693:7;46720:13;;46638:103;88748:14;88728:34;-1:-1:-1;88999:9:0;88992:4;:16;88988:73;;;89036:9;89029:16;;88988:73;89075:25;89103:16;89113:5;89103:9;:16::i;:::-;89075:44;;89297:4;89289:5;:12;89285:278;;;89344:12;;;89379:31;;;89375:111;;;89455:11;89435:31;;89375:111;89303:198;89285:278;;;-1:-1:-1;89546:1:0;89285:278;89577:25;89619:17;-1:-1:-1;;;;;89605:32:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;89605:32:0;;89577:60;;89656:17;89677:1;89656:22;89652:78;;89706:8;-1:-1:-1;89699:15:0;;-1:-1:-1;;;89699:15:0;89652:78;89874:31;89908:26;89928:5;89908:19;:26::i;:::-;89874:60;;89949:25;90194:9;:16;;;90189:92;;-1:-1:-1;90251:14:0;;90189:92;90312:5;90295:478;90324:4;90319:1;:9;;:45;;;;;90347:17;90332:11;:32;;90319:45;90295:478;;;90402:15;90415:1;90402:12;:15::i;:::-;90390:27;;90440:9;:16;;;90481:8;90436:73;90531:14;;-1:-1:-1;;;;;90531:28:0;;90527:111;;90604:14;;;-1:-1:-1;90527:111:0;90681:5;-1:-1:-1;;;;;90660:26:0;:17;-1:-1:-1;;;;;90660:26:0;;90656:102;;90737:1;90711:8;90720:13;;;;;;90711:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;90656:102;90366:3;;90295:478;;;-1:-1:-1;;;90858:29:0;;;-1:-1:-1;90865:8:0;;-1:-1:-1;;88437:2513:0;;;;;;:::o;100510:624::-;95671:6;;;;95670:7;95662:26;;;;-1:-1:-1;;;95662:26:0;;;;;;;:::i;:::-;27354:1:::1;27952:7;;:19:::0;27944:63:::1;;;;-1:-1:-1::0;;;27944:63:0::1;;;;;;;:::i;:::-;27354:1;28085:7;:18:::0;95811:10:::2;95825:9;95811:23;:51:::0;::::2;;;-1:-1:-1::0;95851:10:0::2;97266:21:::0;97315:9;95811:51:::2;95803:101;;;;-1:-1:-1::0;;;95803:101:0::2;;;;;;;:::i;:::-;96195:23:::3;::::0;96170:10:::3;96149:32;::::0;;;:20:::3;:32;::::0;;;;;100686:7;;96195:23;96149:42:::3;::::0;100686:7;;96149:42:::3;:::i;:::-;:69;;96141:102;;;::::0;-1:-1:-1;;;96141:102:0;;27219:2:1;96141:102:0::3;::::0;::::3;27201:21:1::0;27258:2;27238:18;;;27231:30;-1:-1:-1;;;27277:18:1;;;27270:50;27337:18;;96141:102:0::3;27017:344:1::0;96141:102:0::3;100713:7:::4;96022:9;;96011:7;95995:13;47225:12:::0;;47012:7;47209:13;:28;;46951:323;95995:13:::4;:23;;;;:::i;:::-;:36;;95987:68;;;::::0;-1:-1:-1;;;95987:68:0;;16126:2:1;95987:68:0::4;::::0;::::4;16108:21:1::0;16165:2;16145:18;;;16138:30;-1:-1:-1;;;16184:18:1;;;16177:49;16243:18;;95987:68:0::4;15924:343:1::0;95987:68:0::4;100751:9:::5;;100741:6;:19;;100733:45;;;::::0;-1:-1:-1;;;100733:45:0;;27568:2:1;100733:45:0::5;::::0;::::5;27550:21:1::0;27607:2;27587:18;;;27580:30;-1:-1:-1;;;27626:18:1;;;27619:43;27679:18;;100733:45:0::5;27366:337:1::0;100733:45:0::5;100820;::::0;-1:-1:-1;;100837:10:0::5;27913:2:1::0;27909:15;27905:53;100820:45:0::5;::::0;::::5;27893:66:1::0;27975:12;;;27968:28;;;28012:12;;;28005:28;;;100791:16:0::5;::::0;28049:12:1;;100820:45:0::5;;;;;;;;;;;;100810:56;;;;;;100791:75;;100885:39;100903:8;100913:10;100885:17;:39::i;:::-;100877:69;;;;-1:-1:-1::0;;;100877:69:0::5;;;;;;;:::i;:::-;100978:10;100957:32;::::0;;;:20:::5;:32;::::0;;;;:43;;100993:7;;100957:32;:43:::5;::::0;100993:7;;100957:43:::5;:::i;:::-;::::0;;;-1:-1:-1;101011:30:0::5;::::0;-1:-1:-1;101021:10:0::5;101033:7:::0;101011:9:::5;:30::i;:::-;101057:69;101072:10;101101:7;101084:14;46693:7:::0;46720:13;;46638:103;101084:14:::5;:24;;;;:::i;:::-;101057:69;::::0;;-1:-1:-1;;;;;28321:32:1;;;28303:51;;28385:2;28370:18;;28363:34;;;;28413:18;;28406:34;;;28471:2;28456:18;;28449:34;;;28290:3;28275:19;101057:69:0::5;;;;;;;-1:-1:-1::0;;27310:1:0::1;28264:7;:22:::0;-1:-1:-1;;;;100510:624:0:o;58249:234::-;81457:10;58344:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;58344:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;58344:60:0;;;;;;;;;;58420:55;;540:41:1;;;58344:49:0;;81457:10;58420:55;;513:18:1;58420:55:0;;;;;;;58249:234;;:::o;65042:407::-;65217:31;65230:4;65236:2;65240:7;65217:12;:31::i;:::-;-1:-1:-1;;;;;65263:14:0;;;:19;65259:183;;65302:56;65333:4;65339:2;65343:7;65352:5;65302:30;:56::i;:::-;65297:145;;65386:40;;-1:-1:-1;;;65386:40:0;;;;;;;;;;;65297:145;65042:407;;;;:::o;86934:428::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46693:7:0;46720:13;87127:7;:25;87094:103;;87176:9;86934:428;-1:-1:-1;;86934:428:0:o;87094:103::-;87219:21;87232:7;87219:12;:21::i;:::-;87207:33;;87255:9;:16;;;87251:65;;;87295:9;86934:428;-1:-1:-1;;86934:428:0:o;87251:65::-;87333:21;87346:7;87333:12;:21::i;98495:99::-;30315:13;:11;:13::i;:::-;98565:9:::1;:21:::0;98495:99::o;96720:260::-;96813:13;96847:17;96855:8;96847:7;:17::i;:::-;96839:47;;;;-1:-1:-1;;;96839:47:0;;28696:2:1;96839:47:0;;;28678:21:1;28735:2;28715:18;;;28708:30;-1:-1:-1;;;28754:18:1;;;28747:47;28811:18;;96839:47:0;28494:341:1;96839:47:0;96930:10;:8;:10::i;:::-;96942:19;:8;:17;:19::i;:::-;96913:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;96899:73;;96720:260;;;:::o;97674:90::-;30315:13;:11;:13::i;:::-;97740:6:::1;:16:::0;;-1:-1:-1;;97740:16:0::1;::::0;::::1;;::::0;;;::::1;::::0;;97674:90::o;94126:25::-;;;;;;;:::i;31335:201::-;30315:13;:11;:13::i;:::-;-1:-1:-1;;;;;31424:22:0;::::1;31416:73;;;::::0;-1:-1:-1;;;31416:73:0;;29710:2:1;31416:73:0::1;::::0;::::1;29692:21:1::0;29749:2;29729:18;;;29722:30;29788:34;29768:18;;;29761:62;-1:-1:-1;;;29839:18:1;;;29832:36;29885:19;;31416:73:0::1;29508:402:1::0;31416:73:0::1;31500:28;31519:8;31500:18;:28::i;:::-;31335:201:::0;:::o;98183:254::-;30315:13;:11;:13::i;:::-;-1:-1:-1;;;;;98299:42:0;::::1;98291:67;;;;-1:-1:-1::0;;;98291:67:0::1;;;;;;;:::i;:::-;98371:27;:58:::0;;-1:-1:-1;;;;;;98371:58:0::1;-1:-1:-1::0;;;;;98371:58:0;;;::::1;::::0;;;::::1;::::0;;98183:254::o;50298:639::-;50383:4;-1:-1:-1;;;;;;;;;50707:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;50784:25:0;;;50707:102;:179;;;-1:-1:-1;;;;;;;;50861:25:0;-1:-1:-1;;;50861:25:0;;50298:639::o;11305:215::-;11407:4;-1:-1:-1;;;;;;11431:41:0;;-1:-1:-1;;;11431:41:0;;:81;;-1:-1:-1;;;;;;;;;;8966:40:0;;;11476:36;8857:157;59062:282;59127:4;59217:13;;59207:7;:23;59164:153;;;;-1:-1:-1;;59268:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;59268:44:0;:49;;59062:282::o;97340:270::-;97481:62;;30157:66:1;97481:62:0;;;30145:79:1;30240:12;;;30233:28;;;97432:4:0;;;;30277:12:1;;97481:62:0;;;-1:-1:-1;;97481:62:0;;;;;;;;;97471:73;;97481:62;97471:73;;;;97597:5;;97471:73;;-1:-1:-1;;;;;;97597:5:0;97562:31;97471:73;97582:10;97562:19;:31::i;:::-;-1:-1:-1;;;;;97562:40:0;;;97340:270;-1:-1:-1;;;;97340:270:0:o;75202:112::-;75279:27;75289:2;75293:8;75279:27;;;;;;;;;;;;:9;:27::i;53748:1275::-;53815:7;53850;53952:13;;53945:4;:20;53941:1015;;;53990:14;54007:23;;;:17;:23;;;;;;;-1:-1:-1;;;54096:24:0;;:29;;54092:845;;54761:113;54768:6;54778:1;54768:11;54761:113;;-1:-1:-1;;;54839:6:0;54821:25;;;;:17;:25;;;;;;54761:113;;54092:845;53967:989;53941:1015;54984:31;;-1:-1:-1;;;54984:31:0;;;;;;;;;;;30594:132;30502:6;;-1:-1:-1;;;;;30502:6:0;81457:10;30658:23;30650:68;;;;-1:-1:-1;;;30650:68:0;;30502:2:1;30650:68:0;;;30484:21:1;;;30521:18;;;30514:30;30580:34;30560:18;;;30553:62;30632:18;;30650:68:0;30300:356:1;3648:98:0;3706:7;3733:5;3737:1;3733;:5;:::i;4047:98::-;4105:7;4132:5;4136:1;4132;:5;:::i;3291:98::-;3349:7;3376:5;3380:1;3376;:5;:::i;31696:191::-;31789:6;;;-1:-1:-1;;;;;31806:17:0;;;-1:-1:-1;;;;;;31806:17:0;;;;;;;31839:40;;31789:6;;;31806:17;31789:6;;31839:40;;31770:16;;31839:40;31759:128;31696:191;:::o;75581:89::-;75641:21;75647:7;75656:5;75641;:21::i;53196:161::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53324:24:0;;;;:17;:24;;;;;;53305:44;;:18;:44::i;12667:332::-;12383:5;-1:-1:-1;;;;;12770:33:0;;;;12762:88;;;;-1:-1:-1;;;12762:88:0;;30863:2:1;12762:88:0;;;30845:21:1;30902:2;30882:18;;;30875:30;30941:34;30921:18;;;30914:62;-1:-1:-1;;;30992:18:1;;;30985:40;31042:19;;12762:88:0;30661:406:1;12762:88:0;-1:-1:-1;;;;;12869:22:0;;12861:60;;;;-1:-1:-1;;;12861:60:0;;31274:2:1;12861:60:0;;;31256:21:1;31313:2;31293:18;;;31286:30;31352:27;31332:18;;;31325:55;31397:18;;12861:60:0;31072:349:1;12861:60:0;12956:35;;;;;;;;;-1:-1:-1;;;;;12956:35:0;;;;;;-1:-1:-1;;;;;12956:35:0;;;;;;;;;;-1:-1:-1;;;12934:57:0;;;;:19;:57;12667:332::o;67533:716::-;67717:88;;-1:-1:-1;;;67717:88:0;;67696:4;;-1:-1:-1;;;;;67717:45:0;;;;;:88;;81457:10;;67784:4;;67790:7;;67799:5;;67717:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;67717:88:0;;;;;;;;-1:-1:-1;;67717:88:0;;;;;;;;;;;;:::i;:::-;;;67713:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68000:6;:13;68017:1;68000:18;67996:235;;68046:40;;-1:-1:-1;;;68046:40:0;;;;;;;;;;;67996:235;68189:6;68183:13;68174:6;68170:2;68166:15;68159:38;67713:529;-1:-1:-1;;;;;;67876:64:0;-1:-1:-1;;;67876:64:0;;-1:-1:-1;67713:529:0;67533:716;;;;;;:::o;52934:166::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53045:47:0;53064:27;53083:7;53064:18;:27::i;:::-;53045:18;:47::i;96604:108::-;96664:13;96697:7;96690:14;;;;;:::i;14502:723::-;14558:13;14779:5;14788:1;14779:10;14775:53;;-1:-1:-1;;14806:10:0;;;;;;;;;;;;-1:-1:-1;;;14806:10:0;;;;;14502:723::o;14775:53::-;14853:5;14838:12;14894:78;14901:9;;14894:78;;14927:8;;;;:::i;:::-;;-1:-1:-1;14950:10:0;;-1:-1:-1;14958:2:0;14950:10;;:::i;:::-;;;14894:78;;;14982:19;15014:6;-1:-1:-1;;;;;15004:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15004:17:0;;14982:39;;15032:154;15039:10;;15032:154;;15066:11;15076:1;15066:11;;:::i;:::-;;-1:-1:-1;15135:10:0;15143:2;15135:5;:10;:::i;:::-;15122:24;;:2;:24;:::i;:::-;15109:39;;15092:6;15099;15092:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;15092:56:0;;;;;;;;-1:-1:-1;15163:11:0;15172:2;15163:11;;:::i;:::-;;;15032:154;;20425:231;20503:7;20524:17;20543:18;20565:27;20576:4;20582:9;20565:10;:27::i;:::-;20523:69;;;;20603:18;20615:5;20603:11;:18::i;:::-;-1:-1:-1;20639:9:0;20425:231;-1:-1:-1;;;20425:231:0:o;74429:689::-;74560:19;74566:2;74570:8;74560:5;:19::i;:::-;-1:-1:-1;;;;;74621:14:0;;;:19;74617:483;;74661:11;74675:13;74723:14;;;74756:233;74787:62;74826:1;74830:2;74834:7;;;;;;74843:5;74787:30;:62::i;:::-;74782:167;;74885:40;;-1:-1:-1;;;74885:40:0;;;;;;;;;;;74782:167;74984:3;74976:5;:11;74756:233;;75071:3;75054:13;;:20;75050:34;;75076:8;;;75050:34;74642:458;;74429:689;;;:::o;75899:3081::-;75979:27;76009;76028:7;76009:18;:27::i;:::-;75979:57;-1:-1:-1;75979:57:0;76049:12;;76171:35;76198:7;60327:27;60438:24;;;:15;:24;;;;;60666:26;;60438:24;;60225:485;76171:35;76114:92;;;;76223:13;76219:316;;;76344:68;76369:15;76386:4;81457:10;76392:19;81370:105;76344:68;76339:184;;76436:43;76453:4;81457:10;58640:164;:::i;76436:43::-;76431:92;;76488:35;;-1:-1:-1;;;76488:35:0;;;;;;;;;;;76431:92;76691:15;76688:160;;;76831:1;76810:19;76803:30;76688:160;-1:-1:-1;;;;;77450:24:0;;;;;;:18;:24;;;;;:60;;77478:32;77450:60;;;55982:11;55957:23;55953:41;55940:63;-1:-1:-1;;;55940:63:0;77748:26;;;;:17;:26;;;;;:205;;;;-1:-1:-1;;;78073:47:0;;:52;;78069:627;;78178:1;78168:11;;78146:19;78301:30;;;:17;:30;;;;;;:35;;78297:384;;78439:13;;78424:11;:28;78420:242;;78586:30;;;;:17;:30;;;;;:52;;;78420:242;78127:569;78069:627;78724:35;;78751:7;;78747:1;;-1:-1:-1;;;;;78724:35:0;;;-1:-1:-1;;;;;;;;;;;78724:35:0;78747:1;;78724:35;-1:-1:-1;;78947:12:0;:14;;;;;;-1:-1:-1;;;;75899:3081:0:o;55122:366::-;-1:-1:-1;;;;;;;;;;;;;55232:41:0;;;;42953:3;55318:33;;;-1:-1:-1;;;;;55284:68:0;-1:-1:-1;;;55284:68:0;-1:-1:-1;;;55382:24:0;;:29;;-1:-1:-1;;;55363:48:0;;;;43474:3;55451:28;;;;-1:-1:-1;;;55422:58:0;-1:-1:-1;55122:366:0:o;18876:747::-;18957:7;18966:12;18995:9;:16;19015:2;18995:22;18991:625;;19339:4;19324:20;;19318:27;19389:4;19374:20;;19368:27;19447:4;19432:20;;19426:27;19034:9;19418:36;19490:25;19501:4;19418:36;19318:27;19368;19490:10;:25::i;:::-;19483:32;;;;;;;;;18991:625;-1:-1:-1;19564:1:0;;-1:-1:-1;19568:35:0;19548:56;;17147:643;17225:20;17216:5;:29;;;;;;;;:::i;:::-;;17212:571;;17147:643;:::o;17212:571::-;17323:29;17314:5;:38;;;;;;;;:::i;:::-;;17310:473;;17369:34;;-1:-1:-1;;;17369:34:0;;32765:2:1;17369:34:0;;;32747:21:1;32804:2;32784:18;;;32777:30;32843:26;32823:18;;;32816:54;32887:18;;17369:34:0;32563:348:1;17310:473:0;17434:35;17425:5;:44;;;;;;;;:::i;:::-;;17421:362;;17486:41;;-1:-1:-1;;;17486:41:0;;33118:2:1;17486:41:0;;;33100:21:1;33157:2;33137:18;;;33130:30;33196:33;33176:18;;;33169:61;33247:18;;17486:41:0;32916:355:1;17421:362:0;17558:30;17549:5;:39;;;;;;;;:::i;:::-;;17545:238;;17605:44;;-1:-1:-1;;;17605:44:0;;33478:2:1;17605:44:0;;;33460:21:1;33517:2;33497:18;;;33490:30;33556:34;33536:18;;;33529:62;-1:-1:-1;;;33607:18:1;;;33600:32;33649:19;;17605:44:0;33276:398:1;17545:238:0;17680:30;17671:5;:39;;;;;;;;:::i;:::-;;17667:116;;17727:44;;-1:-1:-1;;;17727:44:0;;33881:2:1;17727:44:0;;;33863:21:1;33920:2;33900:18;;;33893:30;33959:34;33939:18;;;33932:62;-1:-1:-1;;;34010:18:1;;;34003:32;34052:19;;17727:44:0;33679:398:1;68711:2966:0;68784:20;68807:13;;;68835;;;68831:44;;68857:18;;-1:-1:-1;;;68857:18:0;;;;;;;;;;;68831:44;-1:-1:-1;;;;;69363:22:0;;;;;;:18;:22;;;;42432:2;69363:22;;;:71;;69401:32;69389:45;;69363:71;;;69677:31;;;:17;:31;;;;;-1:-1:-1;56413:15:0;;56387:24;56383:46;55982:11;55957:23;55953:41;55950:52;55940:63;;69677:173;;69912:23;;;;69677:31;;69363:22;;-1:-1:-1;;;;;;;;;;;69363:22:0;;70530:335;71191:1;71177:12;71173:20;71131:346;71232:3;71223:7;71220:16;71131:346;;71450:7;71440:8;71437:1;-1:-1:-1;;;;;;;;;;;71407:1:0;71404;71399:59;71285:1;71272:15;71131:346;;;71135:77;71510:8;71522:1;71510:13;71506:45;;71532:19;;-1:-1:-1;;;71532:19:0;;;;;;;;;;;71506:45;71568:13;:19;-1:-1:-1;64251:193:0;;;:::o;21877:1632::-;22008:7;;22942:66;22929:79;;22925:163;;;-1:-1:-1;23041:1:0;;-1:-1:-1;23045:30:0;23025:51;;22925:163;23102:1;:7;;23107:2;23102:7;;:18;;;;;23113:1;:7;;23118:2;23113:7;;23102:18;23098:102;;;-1:-1:-1;23153:1:0;;-1:-1:-1;23157:30:0;23137:51;;23098:102;23314:24;;;23297:14;23314:24;;;;;;;;;34309:25:1;;;34382:4;34370:17;;34350:18;;;34343:45;;;;34404:18;;;34397:34;;;34447:18;;;34440:34;;;23314:24:0;;34281:19:1;;23314:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;23314:24:0;;-1:-1:-1;;23314:24:0;;;-1:-1:-1;;;;;;;23353:20:0;;23349:103;;23406:1;23410:29;23390:50;;;;;;;23349:103;23472:6;-1:-1:-1;23480:20:0;;-1:-1:-1;21877:1632:0;;;;;;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:131::-;-1:-1:-1;;;;;1816:31:1;;1806:42;;1796:70;;1862:1;1859;1852:12;1877:315;1945:6;1953;2006:2;1994:9;1985:7;1981:23;1977:32;1974:52;;;2022:1;2019;2012:12;1974:52;2061:9;2048:23;2080:31;2105:5;2080:31;:::i;:::-;2130:5;2182:2;2167:18;;;;2154:32;;-1:-1:-1;;;1877:315:1:o;2197:127::-;2258:10;2253:3;2249:20;2246:1;2239:31;2289:4;2286:1;2279:15;2313:4;2310:1;2303:15;2329:275;2400:2;2394:9;2465:2;2446:13;;-1:-1:-1;;2442:27:1;2430:40;;-1:-1:-1;;;;;2485:34:1;;2521:22;;;2482:62;2479:88;;;2547:18;;:::i;:::-;2583:2;2576:22;2329:275;;-1:-1:-1;2329:275:1:o;2609:712::-;2663:5;2716:3;2709:4;2701:6;2697:17;2693:27;2683:55;;2734:1;2731;2724:12;2683:55;2770:6;2757:20;2796:4;-1:-1:-1;;;;;2815:2:1;2812:26;2809:52;;;2841:18;;:::i;:::-;2887:2;2884:1;2880:10;2910:28;2934:2;2930;2926:11;2910:28;:::i;:::-;2972:15;;;3042;;;3038:24;;;3003:12;;;;3074:15;;;3071:35;;;3102:1;3099;3092:12;3071:35;3138:2;3130:6;3126:15;3115:26;;3150:142;3166:6;3161:3;3158:15;3150:142;;;3232:17;;3220:30;;3183:12;;;;3270;;;;3150:142;;;3310:5;2609:712;-1:-1:-1;;;;;;;2609:712:1:o;3326:406::-;3390:5;-1:-1:-1;;;;;3416:6:1;3413:30;3410:56;;;3446:18;;:::i;:::-;3484:57;3529:2;3508:15;;-1:-1:-1;;3504:29:1;3535:4;3500:40;3484:57;:::i;:::-;3475:66;;3564:6;3557:5;3550:21;3604:3;3595:6;3590:3;3586:16;3583:25;3580:45;;;3621:1;3618;3611:12;3580:45;3670:6;3665:3;3658:4;3651:5;3647:16;3634:43;3724:1;3717:4;3708:6;3701:5;3697:18;3693:29;3686:40;3326:406;;;;;:::o;3737:220::-;3779:5;3832:3;3825:4;3817:6;3813:17;3809:27;3799:55;;3850:1;3847;3840:12;3799:55;3872:79;3947:3;3938:6;3925:20;3918:4;3910:6;3906:17;3872:79;:::i;3962:1000::-;4125:6;4133;4141;4149;4157;4165;4218:3;4206:9;4197:7;4193:23;4189:33;4186:53;;;4235:1;4232;4225:12;4186:53;4271:9;4258:23;4248:33;;4328:2;4317:9;4313:18;4300:32;4290:42;;4383:2;4372:9;4368:18;4355:32;-1:-1:-1;;;;;4447:2:1;4439:6;4436:14;4433:34;;;4463:1;4460;4453:12;4433:34;4486:61;4539:7;4530:6;4519:9;4515:22;4486:61;:::i;:::-;4476:71;;4600:2;4589:9;4585:18;4572:32;4556:48;;4629:2;4619:8;4616:16;4613:36;;;4645:1;4642;4635:12;4613:36;4668:63;4723:7;4712:8;4701:9;4697:24;4668:63;:::i;:::-;4658:73;;4784:3;4773:9;4769:19;4756:33;4740:49;;4814:2;4804:8;4801:16;4798:36;;;4830:1;4827;4820:12;4798:36;;4853:51;4896:7;4885:8;4874:9;4870:24;4853:51;:::i;:::-;4843:61;;;4951:3;4940:9;4936:19;4923:33;4913:43;;3962:1000;;;;;;;;:::o;5149:456::-;5226:6;5234;5242;5295:2;5283:9;5274:7;5270:23;5266:32;5263:52;;;5311:1;5308;5301:12;5263:52;5350:9;5337:23;5369:31;5394:5;5369:31;:::i;:::-;5419:5;-1:-1:-1;5476:2:1;5461:18;;5448:32;5489:33;5448:32;5489:33;:::i;:::-;5149:456;;5541:7;;-1:-1:-1;;;5595:2:1;5580:18;;;;5567:32;;5149:456::o;5610:247::-;5669:6;5722:2;5710:9;5701:7;5697:23;5693:32;5690:52;;;5738:1;5735;5728:12;5690:52;5777:9;5764:23;5796:31;5821:5;5796:31;:::i;5862:248::-;5930:6;5938;5991:2;5979:9;5970:7;5966:23;5962:32;5959:52;;;6007:1;6004;5997:12;5959:52;-1:-1:-1;;6030:23:1;;;6100:2;6085:18;;;6072:32;;-1:-1:-1;5862:248:1:o;6394:450::-;6463:6;6516:2;6504:9;6495:7;6491:23;6487:32;6484:52;;;6532:1;6529;6522:12;6484:52;6572:9;6559:23;-1:-1:-1;;;;;6597:6:1;6594:30;6591:50;;;6637:1;6634;6627:12;6591:50;6660:22;;6713:4;6705:13;;6701:27;-1:-1:-1;6691:55:1;;6742:1;6739;6732:12;6691:55;6765:73;6830:7;6825:2;6812:16;6807:2;6803;6799:11;6765:73;:::i;6849:388::-;6917:6;6925;6978:2;6966:9;6957:7;6953:23;6949:32;6946:52;;;6994:1;6991;6984:12;6946:52;7033:9;7020:23;7052:31;7077:5;7052:31;:::i;:::-;7102:5;-1:-1:-1;7159:2:1;7144:18;;7131:32;7172:33;7131:32;7172:33;:::i;:::-;7224:7;7214:17;;;6849:388;;;;;:::o;7242:615::-;7328:6;7336;7389:2;7377:9;7368:7;7364:23;7360:32;7357:52;;;7405:1;7402;7395:12;7357:52;7445:9;7432:23;-1:-1:-1;;;;;7515:2:1;7507:6;7504:14;7501:34;;;7531:1;7528;7521:12;7501:34;7569:6;7558:9;7554:22;7544:32;;7614:7;7607:4;7603:2;7599:13;7595:27;7585:55;;7636:1;7633;7626:12;7585:55;7676:2;7663:16;7702:2;7694:6;7691:14;7688:34;;;7718:1;7715;7708:12;7688:34;7771:7;7766:2;7756:6;7753:1;7749:14;7745:2;7741:23;7737:32;7734:45;7731:65;;;7792:1;7789;7782:12;7731:65;7823:2;7815:11;;;;;7845:6;;-1:-1:-1;7242:615:1;;-1:-1:-1;;;;7242:615:1:o;7862:349::-;7946:12;;-1:-1:-1;;;;;7942:38:1;7930:51;;8034:4;8023:16;;;8017:23;-1:-1:-1;;;;;8013:48:1;7997:14;;;7990:72;8125:4;8114:16;;;8108:23;8101:31;8094:39;8078:14;;;8071:63;8187:4;8176:16;;;8170:23;8195:8;8166:38;8150:14;;8143:62;7862:349::o;8216:724::-;8451:2;8503:21;;;8573:13;;8476:18;;;8595:22;;;8422:4;;8451:2;8674:15;;;;8648:2;8633:18;;;8422:4;8717:197;8731:6;8728:1;8725:13;8717:197;;;8780:52;8828:3;8819:6;8813:13;8780:52;:::i;:::-;8889:15;;;;8861:4;8852:14;;;;;8753:1;8746:9;8717:197;;8945:160;9010:20;;9066:13;;9059:21;9049:32;;9039:60;;9095:1;9092;9085:12;9039:60;8945:160;;;:::o;9110:1000::-;9270:6;9278;9286;9294;9302;9310;9363:3;9351:9;9342:7;9338:23;9334:33;9331:53;;;9380:1;9377;9370:12;9331:53;9416:9;9403:23;9393:33;;9445:35;9476:2;9465:9;9461:18;9445:35;:::i;:::-;9435:45;;9531:2;9520:9;9516:18;9503:32;-1:-1:-1;;;;;9595:2:1;9587:6;9584:14;9581:34;;;9611:1;9608;9601:12;10115:446;10179:3;10217:5;10211:12;10244:6;10239:3;10232:19;10270:4;10299:2;10294:3;10290:12;10283:19;;10336:2;10329:5;10325:14;10357:1;10367:169;10381:6;10378:1;10375:13;10367:169;;;10442:13;;10430:26;;10476:12;;;;10511:15;;;;10403:1;10396:9;10367:169;;;-1:-1:-1;10552:3:1;;10115:446;-1:-1:-1;;;;;10115:446:1:o;10566:272::-;10745:2;10734:9;10727:21;10708:4;10765:67;10828:2;10817:9;10813:18;10805:6;10765:67;:::i;10843:435::-;10910:6;10918;10971:2;10959:9;10950:7;10946:23;10942:32;10939:52;;;10987:1;10984;10977:12;10939:52;11026:9;11013:23;11045:31;11070:5;11045:31;:::i;:::-;11095:5;-1:-1:-1;11152:2:1;11137:18;;11124:32;-1:-1:-1;;;;;11187:40:1;;11175:53;;11165:81;;11242:1;11239;11232:12;11283:592;11354:6;11362;11415:2;11403:9;11394:7;11390:23;11386:32;11383:52;;;11431:1;11428;11421:12;11383:52;11471:9;11458:23;-1:-1:-1;;;;;11541:2:1;11533:6;11530:14;11527:34;;;11557:1;11554;11547:12;11527:34;11595:6;11584:9;11580:22;11570:32;;11640:7;11633:4;11629:2;11625:13;11621:27;11611:55;;11662:1;11659;11652:12;11611:55;11702:2;11689:16;11728:2;11720:6;11717:14;11714:34;;;11744:1;11741;11734:12;11714:34;11789:7;11784:2;11775:6;11771:2;11767:15;11763:24;11760:37;11757:57;;;11810:1;11807;11800:12;11880:383;11957:6;11965;11973;12026:2;12014:9;12005:7;12001:23;11997:32;11994:52;;;12042:1;12039;12032:12;11994:52;12081:9;12068:23;12100:31;12125:5;12100:31;:::i;:::-;12150:5;12202:2;12187:18;;12174:32;;-1:-1:-1;12253:2:1;12238:18;;;12225:32;;11880:383;-1:-1:-1;;;11880:383:1:o;12268:456::-;12354:6;12362;12370;12423:2;12411:9;12402:7;12398:23;12394:32;12391:52;;;12439:1;12436;12429:12;12391:52;12475:9;12462:23;12452:33;;12536:2;12525:9;12521:18;12508:32;-1:-1:-1;;;;;12555:6:1;12552:30;12549:50;;;12595:1;12592;12585:12;12549:50;12618:49;12659:7;12650:6;12639:9;12635:22;12618:49;:::i;:::-;12608:59;;;12714:2;12703:9;12699:18;12686:32;12676:42;;12268:456;;;;;:::o;12729:315::-;12794:6;12802;12855:2;12843:9;12834:7;12830:23;12826:32;12823:52;;;12871:1;12868;12861:12;12823:52;12910:9;12897:23;12929:31;12954:5;12929:31;:::i;:::-;12979:5;-1:-1:-1;13003:35:1;13034:2;13019:18;;13003:35;:::i;:::-;12993:45;;12729:315;;;;;:::o;13049:665::-;13144:6;13152;13160;13168;13221:3;13209:9;13200:7;13196:23;13192:33;13189:53;;;13238:1;13235;13228:12;13189:53;13277:9;13264:23;13296:31;13321:5;13296:31;:::i;:::-;13346:5;-1:-1:-1;13403:2:1;13388:18;;13375:32;13416:33;13375:32;13416:33;:::i;:::-;13468:7;-1:-1:-1;13522:2:1;13507:18;;13494:32;;-1:-1:-1;13577:2:1;13562:18;;13549:32;-1:-1:-1;;;;;13593:30:1;;13590:50;;;13636:1;13633;13626:12;13590:50;13659:49;13700:7;13691:6;13680:9;13676:22;13659:49;:::i;:::-;13649:59;;;13049:665;;;;;;;:::o;13719:268::-;13917:3;13902:19;;13930:51;13906:9;13963:6;13930:51;:::i;13992:180::-;14048:6;14101:2;14089:9;14080:7;14076:23;14072:32;14069:52;;;14117:1;14114;14107:12;14069:52;14140:26;14156:9;14140:26;:::i;14177:380::-;14256:1;14252:12;;;;14299;;;14320:61;;14374:4;14366:6;14362:17;14352:27;;14320:61;14427:2;14419:6;14416:14;14396:18;14393:38;14390:161;;14473:10;14468:3;14464:20;14461:1;14454:31;14508:4;14505:1;14498:15;14536:4;14533:1;14526:15;14390:161;;14177:380;;;:::o;14562:329::-;14764:2;14746:21;;;14803:1;14783:18;;;14776:29;-1:-1:-1;;;14836:2:1;14821:18;;14814:36;14882:2;14867:18;;14562:329::o;14896:355::-;15098:2;15080:21;;;15137:2;15117:18;;;15110:30;15176:33;15171:2;15156:18;;15149:61;15242:2;15227:18;;14896:355::o;15256:401::-;15458:2;15440:21;;;15497:2;15477:18;;;15470:30;15536:34;15531:2;15516:18;;15509:62;-1:-1:-1;;;15602:2:1;15587:18;;15580:35;15647:3;15632:19;;15256:401::o;15662:127::-;15723:10;15718:3;15714:20;15711:1;15704:31;15754:4;15751:1;15744:15;15778:4;15775:1;15768:15;15794:125;15859:9;;;15880:10;;;15877:36;;;15893:18;;:::i;16618:251::-;16688:6;16741:2;16729:9;16720:7;16716:23;16712:32;16709:52;;;16757:1;16754;16747:12;16709:52;16789:9;16783:16;16808:31;16833:5;16808:31;:::i;17215:398::-;17300:12;;17268:3;;17350:4;17377:14;;;17268:3;17427:13;;17419:169;;17494:13;;17482:26;;17528:12;;;;17563:15;;;;17455:1;17448:9;17419:169;;17618:685;-1:-1:-1;;;;;18020:31:1;18011:6;18007:2;18003:15;17999:53;17994:3;17987:66;18083:6;18078:2;18073:3;18069:12;18062:28;18120:6;18115:2;18110:3;18106:12;18099:28;17969:3;18149:88;18186:50;18232:2;18227:3;18223:12;18215:6;18186:50;:::i;:::-;18178:6;18149:88;:::i;:::-;18246:21;;;-1:-1:-1;;18294:2:1;18283:14;;17618:685;-1:-1:-1;;;;;17618:685:1:o;18308:341::-;18510:2;18492:21;;;18549:2;18529:18;;;18522:30;-1:-1:-1;;;18583:2:1;18568:18;;18561:47;18640:2;18625:18;;18308:341::o;19006:584::-;-1:-1:-1;;;;;19291:32:1;;19273:51;;19360:2;19355;19340:18;;19333:30;;;-1:-1:-1;;19386:67:1;;19434:18;;19426:6;19386:67;:::i;:::-;19501:9;19493:6;19489:22;19484:2;19473:9;19469:18;19462:50;19529:55;19577:6;19569;19529:55;:::i;:::-;19521:63;19006:584;-1:-1:-1;;;;;;19006:584:1:o;19595:128::-;19662:9;;;19683:11;;;19680:37;;;19697:18;;:::i;19728:729::-;20098:1;20094;20089:3;20085:11;20081:19;20073:6;20069:32;20058:9;20051:51;20138:6;20133:2;20122:9;20118:18;20111:34;20181:3;20176:2;20165:9;20161:18;20154:31;20032:4;20208:68;20271:3;20260:9;20256:19;20248:6;20208:68;:::i;:::-;20324:9;20316:6;20312:22;20307:2;20296:9;20292:18;20285:50;20352:55;20400:6;20392;20352:55;:::i;:::-;20344:63;;;20444:6;20438:3;20427:9;20423:19;20416:35;19728:729;;;;;;;;:::o;20462:336::-;20664:2;20646:21;;;20703:2;20683:18;;;20676:30;-1:-1:-1;;;20737:2:1;20722:18;;20715:42;20789:2;20774:18;;20462:336::o;20803:168::-;20876:9;;;20907;;20924:15;;;20918:22;;20904:37;20894:71;;20945:18;;:::i;20976:127::-;21037:10;21032:3;21028:20;21025:1;21018:31;21068:4;21065:1;21058:15;21092:4;21089:1;21082:15;21108:120;21148:1;21174;21164:35;;21179:18;;:::i;:::-;-1:-1:-1;21213:9:1;;21108:120::o;22526:545::-;22628:2;22623:3;22620:11;22617:448;;;22664:1;22689:5;22685:2;22678:17;22734:4;22730:2;22720:19;22804:2;22792:10;22788:19;22785:1;22781:27;22775:4;22771:38;22840:4;22828:10;22825:20;22822:47;;;-1:-1:-1;22863:4:1;22822:47;22918:2;22913:3;22909:12;22906:1;22902:20;22896:4;22892:31;22882:41;;22973:82;22991:2;22984:5;22981:13;22973:82;;;23036:17;;;23017:1;23006:13;22973:82;;23247:1352;23373:3;23367:10;-1:-1:-1;;;;;23392:6:1;23389:30;23386:56;;;23422:18;;:::i;:::-;23451:97;23541:6;23501:38;23533:4;23527:11;23501:38;:::i;:::-;23495:4;23451:97;:::i;:::-;23603:4;;23667:2;23656:14;;23684:1;23679:663;;;;24386:1;24403:6;24400:89;;;-1:-1:-1;24455:19:1;;;24449:26;24400:89;-1:-1:-1;;23204:1:1;23200:11;;;23196:24;23192:29;23182:40;23228:1;23224:11;;;23179:57;24502:81;;23649:944;;23679:663;22473:1;22466:14;;;22510:4;22497:18;;-1:-1:-1;;23715:20:1;;;23833:236;23847:7;23844:1;23841:14;23833:236;;;23936:19;;;23930:26;23915:42;;24028:27;;;;23996:1;23984:14;;;;23863:19;;23833:236;;;23837:3;24097:6;24088:7;24085:19;24082:201;;;24158:19;;;24152:26;-1:-1:-1;;24241:1:1;24237:14;;;24253:3;24233:24;24229:37;24225:42;24210:58;24195:74;;24082:201;-1:-1:-1;;;;;24329:1:1;24313:14;;;24309:22;24296:36;;-1:-1:-1;23247:1352:1:o;24964:127::-;25025:10;25020:3;25016:20;25013:1;25006:31;25056:4;25053:1;25046:15;25080:4;25077:1;25070:15;25096:705;-1:-1:-1;;;;;25492:31:1;25483:6;25479:2;25475:15;25471:53;25466:3;25459:66;25555:6;25550:2;25545:3;25541:12;25534:28;25615:6;25608:14;25601:22;25596:3;25592:32;25587:2;25582:3;25578:12;25571:54;25441:3;25647:88;25684:50;25730:2;25725:3;25721:12;25713:6;25684:50;:::i;25806:1206::-;-1:-1:-1;;;;;25925:3:1;25922:27;25919:53;;;25952:18;;:::i;:::-;25981:94;26071:3;26031:38;26063:4;26057:11;26031:38;:::i;:::-;26025:4;25981:94;:::i;:::-;26101:1;26126:2;26121:3;26118:11;26143:1;26138:616;;;;26798:1;26815:3;26812:93;;;-1:-1:-1;26871:19:1;;;26858:33;26812:93;-1:-1:-1;;23204:1:1;23200:11;;;23196:24;23192:29;23182:40;23228:1;23224:11;;;23179:57;26918:78;;26111:895;;26138:616;22473:1;22466:14;;;22510:4;22497:18;;-1:-1:-1;;26174:17:1;;;26275:9;26297:229;26311:7;26308:1;26305:14;26297:229;;;26400:19;;;26387:33;26372:49;;26507:4;26492:20;;;;26460:1;26448:14;;;;26327:12;26297:229;;;26301:3;26554;26545:7;26542:16;26539:159;;;26678:1;26674:6;26668:3;26662;26659:1;26655:11;26651:21;26647:34;26643:39;26630:9;26625:3;26621:19;26608:33;26604:79;26596:6;26589:95;26539:159;;;26741:1;26735:3;26732:1;26728:11;26724:19;26718:4;26711:33;26111:895;;25806:1206;;;:::o;28840:663::-;29120:3;29158:6;29152:13;29174:66;29233:6;29228:3;29221:4;29213:6;29209:17;29174:66;:::i;:::-;29303:13;;29262:16;;;;29325:70;29303:13;29262:16;29372:4;29360:17;;29325:70;:::i;:::-;-1:-1:-1;;;29417:20:1;;29446:22;;;29495:1;29484:13;;28840:663;-1:-1:-1;;;;28840:663:1:o;31426:489::-;-1:-1:-1;;;;;31695:15:1;;;31677:34;;31747:15;;31742:2;31727:18;;31720:43;31794:2;31779:18;;31772:34;;;31842:3;31837:2;31822:18;;31815:31;;;31620:4;;31863:46;;31889:19;;31881:6;31863:46;:::i;31920:249::-;31989:6;32042:2;32030:9;32021:7;32017:23;32013:32;32010:52;;;32058:1;32055;32048:12;32010:52;32090:9;32084:16;32109:30;32133:5;32109:30;:::i;32174:135::-;32213:3;32234:17;;;32231:43;;32254:18;;:::i;:::-;-1:-1:-1;32301:1:1;32290:13;;32174:135::o;32314:112::-;32346:1;32372;32362:35;;32377:18;;:::i;:::-;-1:-1:-1;32411:9:1;;32314:112::o;32431:127::-;32492:10;32487:3;32483:20;32480:1;32473:31;32523:4;32520:1;32513:15;32547:4;32544:1;32537:15

Swarm Source

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