Abstract Testnet

Token

Chainborn (CHAINBORN)
ERC-721

Overview

Max Total Supply

62 CHAINBORN

Holders

1

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
ChainbornNFT

Compiler Version
v0.8.24+commit.e11b9ed9

ZkSolc Version
v1.5.7

Optimization Enabled:
Yes with Mode 3

Other Settings:
paris EvmVersion

Contract Source Code (Solidity Standard Json-Input format)

File 1 of 18 : ChainbornNFT.sol
pragma solidity ^0.8.20;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "@pythnetwork/pyth-sdk-solidity/IPyth.sol";
import "@pythnetwork/pyth-sdk-solidity/PythStructs.sol";

contract ChainbornNFT is ERC721Enumerable, Ownable, ReentrancyGuard, IERC2981 {
    using Strings for uint256;

    // Pyth price feed
    IPyth pyth; // Pyth contract instance
    bytes32 public ethUsdPriceFeedId; // Price feed ID for ETH/USD

    // Minting states
    enum MintingState {
        TeamMint,
        WhitelistMint,
        PublicMint
    }

    uint256 public constant MAX_SUPPLY = 555;
    uint256 public constant TEAM_SUPPLY = 55;
    uint256 public constant MAX_MINT_PER_TX = 5;

    //set Mint prices in USD
    uint256 internal TeamMintPrice = 0; // Free Mint for the team
    uint256 public constant WhitelistMintPrice = 40; // $40 equivalent
    uint256 public constant PublicMintPrice = 50; // $50 equivalent

    bool public isRevealed = false;
    string private baseURI;
    string private notRevealedUri;
    mapping(uint256 => string) private _tokenMetadataHashes;
    uint256[] private availableTokenIds;

    // Royalty information
    address private _royaltyRecipient;
    uint96 private _royaltyPercentage; // In basis points (e.g., 100 = 1%)

    // Presale configuration
    mapping(address => bool) public whitelist;
    bool public isPresaleActive = false;
    bool public isPublicSaleActive = false;
    bool public paused = false;

    // Events
    event NFTMinted(address indexed minter, uint256 tokenId);
    event RevealStateChanged(bool isRevealed);
    event BaseURIChanged(string newBaseURI);
    event RoyaltiesSet(address indexed recipient, uint96 percentage);
    event SaleStateChanged(string saleType, bool state);

    constructor(
        address _pythAddress,
        bytes32 _ethUsdPriceFeedId
    ) ERC721("Chainborn", "CHAINBORN") /*Ownable(msg.sender)*/ {
        pyth = IPyth(_pythAddress);
        ethUsdPriceFeedId = _ethUsdPriceFeedId;

        _transferOwnership(msg.sender);
        // Initialize available token IDs
        for (uint256 i = 1; i <= MAX_SUPPLY; i++) {
            availableTokenIds.push(i);
        }

        // Set default royalty recipient and percentage
        _royaltyRecipient = msg.sender; // Deployer as the royalty recipient
        _royaltyPercentage = 1000; // 10% in basis points (1000 basis points = 10%)
    }

    // Function to get the current ETH price from Pyth
    function getEthUsdPrice() public view returns (uint256) {
        PythStructs.Price memory price = pyth.getPriceNoOlderThan(
            ethUsdPriceFeedId,
            100
        );

        require(price.price > 0, "Price not valid");
        return uint256(int256(price.price)) / 1e8; // Return the price in the smallest unit (e.g., wei)
    }

    // updateprice to bypass stalling
    /**
     * @dev Updates the price feeds from the Pyth Oracle.
     * @param pythPriceUpdate The price update data from Pyth.
     */
    function updatePrice(bytes[] memory pythPriceUpdate) public payable {
        uint256 updateFee = pyth.getUpdateFee(pythPriceUpdate);
        pyth.updatePriceFeeds{value: updateFee}(pythPriceUpdate);
    }

    // Function to set royalties
    function setRoyalties(
        address recipient,
        uint96 percentage
    ) external onlyOwner {
        require(percentage <= 10000, "Royalty percentage too high"); // Max 100%
        _royaltyRecipient = recipient;
        _royaltyPercentage = percentage;
        emit RoyaltiesSet(recipient, percentage);
    }

    // Implementing royaltyInfo from IERC2981
    function royaltyInfo(
        uint256 /*tokenId*/,
        uint256 salePrice
    ) public view override returns (address receiver, uint256 royaltyAmount) {
        return (_royaltyRecipient, (salePrice * _royaltyPercentage) / 10000);
    }

    // Team mint function
    function TeamOGMint(uint256 quantity) external onlyOwner {
        require(quantity > 0, "Must mint at least one token");
        require(quantity <= TEAM_SUPPLY, "Exceeds max mint for team supply");
        require(
            totalSupply() + quantity <= MAX_SUPPLY,
            "Would exceed max supply"
        );
        for (uint256 i = 0; i < quantity; i++) {
            uint256 tokenId = totalSupply() + 1;
            _safeMint(msg.sender, tokenId);
            emit NFTMinted(msg.sender, tokenId);
        }
    }

    // Team Random Public Mint Free
    function TeamMint(
        uint256 quantity
    ) public payable nonReentrant whenNotPaused {
        require(isPublicSaleActive, "Public sale is not active");
        require(quantity > 0, "Must mint at least one token");

        require(
            totalSupply() + quantity <= MAX_SUPPLY,
            "Would exceed max supply"
        );

        // Select a random index
        for (uint256 i = 0; i < quantity; i++) {
            uint256 randomIndex = uint256(
                keccak256(abi.encodePacked(block.timestamp, msg.sender, i))
            ) % availableTokenIds.length;
            uint256 tokenId = availableTokenIds[randomIndex];

            // Remove the selected token ID from the available list
            availableTokenIds[randomIndex] = availableTokenIds[
                availableTokenIds.length - 1
            ];
            availableTokenIds.pop();

            _safeMint(msg.sender, tokenId);
            emit NFTMinted(msg.sender, tokenId);
        }
    }

    // Public mint function
    function mint(uint256 quantity) public payable nonReentrant whenNotPaused {
        uint256 currentEthPriceInUsd = getEthUsdPrice();
        uint256 mintPriceInEth = (PublicMintPrice * 1e18) /
            currentEthPriceInUsd;
        uint256 totalMintPrice = mintPriceInEth * quantity;

        require(isPublicSaleActive, "Public sale is not active");
        require(quantity > 0, "Must mint at least one token");
        require(
            quantity <= MAX_MINT_PER_TX,
            "Exceeds max mint per transaction"
        );
        require(
            totalSupply() + quantity <= MAX_SUPPLY,
            "Would exceed max supply"
        );

        require(msg.value >= totalMintPrice, "Insufficient payment");

        // Select a random index
        for (uint256 i = 0; i < quantity; i++) {
            uint256 randomIndex = uint256(
                keccak256(abi.encodePacked(block.timestamp, msg.sender, i))
            ) % availableTokenIds.length;
            uint256 tokenId = availableTokenIds[randomIndex];

            // Remove the selected token ID from the available list
            availableTokenIds[randomIndex] = availableTokenIds[
                availableTokenIds.length - 1
            ];
            availableTokenIds.pop();

            _safeMint(msg.sender, tokenId);
            emit NFTMinted(msg.sender, tokenId);
        }
    }

    // Whitelist mint function
    function whitelistMint(
        uint256 quantity
    ) public payable nonReentrant whenNotPaused {
        uint256 currentEthPriceInUsd = getEthUsdPrice();
        uint256 mintPriceInWei = (WhitelistMintPrice * 1e18) /
            currentEthPriceInUsd;
        uint256 totalMintPriceInWei = mintPriceInWei * quantity;

        require(isPresaleActive, "Presale is not active");
        require(whitelist[msg.sender], "Not whitelisted");
        require(quantity > 0, "Must mint at least one token");
        require(
            quantity <= MAX_MINT_PER_TX,
            "Exceeds max mint per transaction"
        );
        require(
            totalSupply() + quantity <= MAX_SUPPLY,
            "Would exceed max supply"
        );

        require(
            msg.value >= totalMintPriceInWei,
            "Insufficient payment: Send Enough ETH"
        );

        // Select a random index
        for (uint256 i = 0; i < quantity; i++) {
            uint256 randomIndex = uint256(
                keccak256(abi.encodePacked(block.timestamp, msg.sender, i))
            ) % availableTokenIds.length;
            uint256 tokenId = availableTokenIds[randomIndex];

            // Remove the selected token ID from the available list
            availableTokenIds[randomIndex] = availableTokenIds[
                availableTokenIds.length - 1
            ];
            availableTokenIds.pop();

            _safeMint(msg.sender, tokenId);
            whitelist[msg.sender] = false; // Remove from whitelist after minting
            emit NFTMinted(msg.sender, tokenId);
        }
    }

    // Admin functions
    function addToWhitelist(address[] calldata addresses) public onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            whitelist[addresses[i]] = true;
        }
    }

    function togglePresale() external onlyOwner {
        isPresaleActive = !isPresaleActive;
        emit SaleStateChanged("Presale", isPresaleActive);
    }

    function togglePublicSale() external onlyOwner {
        isPublicSaleActive = !isPublicSaleActive;
        emit SaleStateChanged("Public", isPublicSaleActive);
    }

    function reveal() external onlyOwner {
        isRevealed = true;
        emit RevealStateChanged(true);
    }

    function unreveal() external onlyOwner {
        isRevealed = false;
        emit RevealStateChanged(false);
    }

    function setBaseURI(string memory _newBaseURI) external onlyOwner {
        baseURI = _newBaseURI;
        emit BaseURIChanged(_newBaseURI);
    }

    function setTokenMetadataHash(
        uint256 tokenId,
        string memory hash
    ) external onlyOwner {
        require(_exists(tokenId), "Token does not exist");
        _tokenMetadataHashes[tokenId] = hash;
    }

    function setNotRevealedURI(
        string memory _notRevealedURI
    ) external onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    // View functions
    function tokenURI(
        uint256 tokenId
    ) public view override returns (string memory) {
        require(_exists(tokenId), "Token does not exist");

        if (!isRevealed) {
            return notRevealedUri;
        }

        string memory hash = _tokenMetadataHashes[tokenId];
        require(bytes(hash).length > 0, "Metadata hash not set");

        return string(abi.encodePacked(baseURI, hash));

        return "";
    }

    // Withdrawal function
    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = payable(owner()).call{value: balance}("");
        require(success, "Withdraw failed");
    }

    modifier whenNotPaused() {
        require(!paused, "Contract is paused");
        _;
    }

    function togglePaused() external onlyOwner {
        paused = !paused;
    }
}

File 2 of 18 : IPyth.sol
// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.0;

import "./PythStructs.sol";
import "./IPythEvents.sol";

/// @title Consume prices from the Pyth Network (https://pyth.network/).
/// @dev Please refer to the guidance at https://docs.pyth.network/documentation/pythnet-price-feeds/best-practices for how to consume prices safely.
/// @author Pyth Data Association
interface IPyth is IPythEvents {
    /// @notice Returns the price of a price feed without any sanity checks.
    /// @dev This function returns the most recent price update in this contract without any recency checks.
    /// This function is unsafe as the returned price update may be arbitrarily far in the past.
    ///
    /// Users of this function should check the `publishTime` in the price to ensure that the returned price is
    /// sufficiently recent for their application. If you are considering using this function, it may be
    /// safer / easier to use `getPriceNoOlderThan`.
    /// @return price - please read the documentation of PythStructs.Price to understand how to use this safely.
    function getPriceUnsafe(
        bytes32 id
    ) external view returns (PythStructs.Price memory price);

    /// @notice Returns the price that is no older than `age` seconds of the current time.
    /// @dev This function is a sanity-checked version of `getPriceUnsafe` which is useful in
    /// applications that require a sufficiently-recent price. Reverts if the price wasn't updated sufficiently
    /// recently.
    /// @return price - please read the documentation of PythStructs.Price to understand how to use this safely.
    function getPriceNoOlderThan(
        bytes32 id,
        uint age
    ) external view returns (PythStructs.Price memory price);

    /// @notice Returns the exponentially-weighted moving average price of a price feed without any sanity checks.
    /// @dev This function returns the same price as `getEmaPrice` in the case where the price is available.
    /// However, if the price is not recent this function returns the latest available price.
    ///
    /// The returned price can be from arbitrarily far in the past; this function makes no guarantees that
    /// the returned price is recent or useful for any particular application.
    ///
    /// Users of this function should check the `publishTime` in the price to ensure that the returned price is
    /// sufficiently recent for their application. If you are considering using this function, it may be
    /// safer / easier to use either `getEmaPrice` or `getEmaPriceNoOlderThan`.
    /// @return price - please read the documentation of PythStructs.Price to understand how to use this safely.
    function getEmaPriceUnsafe(
        bytes32 id
    ) external view returns (PythStructs.Price memory price);

    /// @notice Returns the exponentially-weighted moving average price that is no older than `age` seconds
    /// of the current time.
    /// @dev This function is a sanity-checked version of `getEmaPriceUnsafe` which is useful in
    /// applications that require a sufficiently-recent price. Reverts if the price wasn't updated sufficiently
    /// recently.
    /// @return price - please read the documentation of PythStructs.Price to understand how to use this safely.
    function getEmaPriceNoOlderThan(
        bytes32 id,
        uint age
    ) external view returns (PythStructs.Price memory price);

    /// @notice Update price feeds with given update messages.
    /// This method requires the caller to pay a fee in wei; the required fee can be computed by calling
    /// `getUpdateFee` with the length of the `updateData` array.
    /// Prices will be updated if they are more recent than the current stored prices.
    /// The call will succeed even if the update is not the most recent.
    /// @dev Reverts if the transferred fee is not sufficient or the updateData is invalid.
    /// @param updateData Array of price update data.
    function updatePriceFeeds(bytes[] calldata updateData) external payable;

    /// @notice Wrapper around updatePriceFeeds that rejects fast if a price update is not necessary. A price update is
    /// necessary if the current on-chain publishTime is older than the given publishTime. It relies solely on the
    /// given `publishTimes` for the price feeds and does not read the actual price update publish time within `updateData`.
    ///
    /// This method requires the caller to pay a fee in wei; the required fee can be computed by calling
    /// `getUpdateFee` with the length of the `updateData` array.
    ///
    /// `priceIds` and `publishTimes` are two arrays with the same size that correspond to senders known publishTime
    /// of each priceId when calling this method. If all of price feeds within `priceIds` have updated and have
    /// a newer or equal publish time than the given publish time, it will reject the transaction to save gas.
    /// Otherwise, it calls updatePriceFeeds method to update the prices.
    ///
    /// @dev Reverts if update is not needed or the transferred fee is not sufficient or the updateData is invalid.
    /// @param updateData Array of price update data.
    /// @param priceIds Array of price ids.
    /// @param publishTimes Array of publishTimes. `publishTimes[i]` corresponds to known `publishTime` of `priceIds[i]`
    function updatePriceFeedsIfNecessary(
        bytes[] calldata updateData,
        bytes32[] calldata priceIds,
        uint64[] calldata publishTimes
    ) external payable;

    /// @notice Returns the required fee to update an array of price updates.
    /// @param updateData Array of price update data.
    /// @return feeAmount The required fee in Wei.
    function getUpdateFee(
        bytes[] calldata updateData
    ) external view returns (uint feeAmount);

    /// @notice Parse `updateData` and return price feeds of the given `priceIds` if they are all published
    /// within `minPublishTime` and `maxPublishTime`.
    ///
    /// You can use this method if you want to use a Pyth price at a fixed time and not the most recent price;
    /// otherwise, please consider using `updatePriceFeeds`. This method may store the price updates on-chain, if they
    /// are more recent than the current stored prices.
    ///
    /// This method requires the caller to pay a fee in wei; the required fee can be computed by calling
    /// `getUpdateFee` with the length of the `updateData` array.
    ///
    ///
    /// @dev Reverts if the transferred fee is not sufficient or the updateData is invalid or there is
    /// no update for any of the given `priceIds` within the given time range.
    /// @param updateData Array of price update data.
    /// @param priceIds Array of price ids.
    /// @param minPublishTime minimum acceptable publishTime for the given `priceIds`.
    /// @param maxPublishTime maximum acceptable publishTime for the given `priceIds`.
    /// @return priceFeeds Array of the price feeds corresponding to the given `priceIds` (with the same order).
    function parsePriceFeedUpdates(
        bytes[] calldata updateData,
        bytes32[] calldata priceIds,
        uint64 minPublishTime,
        uint64 maxPublishTime
    ) external payable returns (PythStructs.PriceFeed[] memory priceFeeds);

    /// @notice Similar to `parsePriceFeedUpdates` but ensures the updates returned are
    /// the first updates published in minPublishTime. That is, if there are multiple updates for a given timestamp,
    /// this method will return the first update. This method may store the price updates on-chain, if they
    /// are more recent than the current stored prices.
    ///
    ///
    /// @dev Reverts if the transferred fee is not sufficient or the updateData is invalid or there is
    /// no update for any of the given `priceIds` within the given time range and uniqueness condition.
    /// @param updateData Array of price update data.
    /// @param priceIds Array of price ids.
    /// @param minPublishTime minimum acceptable publishTime for the given `priceIds`.
    /// @param maxPublishTime maximum acceptable publishTime for the given `priceIds`.
    /// @return priceFeeds Array of the price feeds corresponding to the given `priceIds` (with the same order).
    function parsePriceFeedUpdatesUnique(
        bytes[] calldata updateData,
        bytes32[] calldata priceIds,
        uint64 minPublishTime,
        uint64 maxPublishTime
    ) external payable returns (PythStructs.PriceFeed[] memory priceFeeds);
}

File 3 of 18 : PythStructs.sol
// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.0;

contract PythStructs {
    // A price with a degree of uncertainty, represented as a price +- a confidence interval.
    //
    // The confidence interval roughly corresponds to the standard error of a normal distribution.
    // Both the price and confidence are stored in a fixed-point numeric representation,
    // `x * (10^expo)`, where `expo` is the exponent.
    //
    // Please refer to the documentation at https://docs.pyth.network/documentation/pythnet-price-feeds/best-practices for how
    // to how this price safely.
    struct Price {
        // Price
        int64 price;
        // Confidence interval around the price
        uint64 conf;
        // Price exponent
        int32 expo;
        // Unix timestamp describing when the price was published
        uint publishTime;
    }

    // PriceFeed represents a current aggregate price from pyth publisher feeds.
    struct PriceFeed {
        // The price ID.
        bytes32 id;
        // Latest available price
        Price price;
        // Latest available exponentially-weighted moving average price
        Price emaPrice;
    }
}

File 4 of 18 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

File 5 of 18 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

File 6 of 18 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// 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 7 of 18 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

import "../utils/introspection/IERC165.sol";

/**
 * @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 8 of 18 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

File 9 of 18 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 10 of 18 : Context.sol
// SPDX-License-Identifier: MIT
// 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 11 of 18 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 12 of 18 : IERC165.sol
// SPDX-License-Identifier: MIT
// 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 13 of 18 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 14 of 18 : IPythEvents.sol
// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.0;

/// @title IPythEvents contains the events that Pyth contract emits.
/// @dev This interface can be used for listening to the updates for off-chain and testing purposes.
interface IPythEvents {
    /// @dev Emitted when the price feed with `id` has received a fresh update.
    /// @param id The Pyth Price Feed ID.
    /// @param publishTime Publish time of the given price update.
    /// @param price Price of the given price update.
    /// @param conf Confidence interval of the given price update.
    event PriceFeedUpdate(
        bytes32 indexed id,
        uint64 publishTime,
        int64 price,
        uint64 conf
    );
}

File 15 of 18 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 16 of 18 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 17 of 18 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 18 of 18 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

Settings
{
  "evmVersion": "paris",
  "optimizer": {
    "enabled": true,
    "mode": "3"
  },
  "outputSelection": {
    "*": {
      "*": [
        "abi",
        "metadata"
      ],
      "": [
        "ast"
      ]
    }
  },
  "detectMissingLibraries": false,
  "forceEVMLA": false,
  "enableEraVMExtensions": false,
  "libraries": {}
}

Contract ABI

[{"inputs":[{"internalType":"address","name":"_pythAddress","type":"address"},{"internalType":"bytes32","name":"_ethUsdPriceFeedId","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"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":false,"internalType":"string","name":"newBaseURI","type":"string"}],"name":"BaseURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"NFTMinted","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":false,"internalType":"bool","name":"isRevealed","type":"bool"}],"name":"RevealStateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint96","name":"percentage","type":"uint96"}],"name":"RoyaltiesSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"saleType","type":"string"},{"indexed":false,"internalType":"bool","name":"state","type":"bool"}],"name":"SaleStateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PublicMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"TeamMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"TeamOGMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"WhitelistMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ethUsdPriceFeedId","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getEthUsdPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint96","name":"percentage","type":"uint96"}],"name":"setRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"hash","type":"string"}],"name":"setTokenMetadataHash","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":[],"name":"togglePaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unreveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes[]","name":"pythPriceUpdate","type":"bytes[]"}],"name":"updatePrice","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

9c4d535b000000000000000000000000000000000000000000000000000000000000000001000641604e5bb420cda1f69793d2669cd415ff188fa8b30d5fec1bd225f79e0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000004000000000000000000000000047f2a9bdad52d65b66287253cf5ca0d2b763b486ff61491a931112ddf1bd8147cd1b641375f79f5825126d665480874634fd0ace

Deployed Bytecode

0x00030000000000020008000000000002000000000f01034f0000006003100270000005760e3001970002000000e1035500010000000103550000000100200190000000260000c13d0000008001000039000000400010043f0000000400e0008c000000490000413d00000000020f043b000000e002200270000005850020009c0000004b0000213d000005a50020009c000000950000213d000005b50020009c000000f80000213d000005bd0020009c000001480000213d000005c10020009c0000023d0000613d000005c20020009c0000024f0000613d000005c30020009c000000490000c13d0000002400e0008c000000490000413d0000000002000416000000000002004b000000490000c13d0000000401f00370000000000101043b15d40edf0000040f000005b80000013d0000000002000416000000000002004b000000490000c13d0000001f02e0003900000577022001970000008002200039000000400020043f0000001f04e0018f0000057805e001980000008002500039000000370000613d000000800600003900000000070f034f000000007807043c0000000006860436000000000026004b000000330000c13d000000000004004b000000440000613d00000000015f034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001204350000004000e0008c000000490000413d000000800600043d000005790060009c000000b40000a13d0000000001000019000015d600010430000005860020009c000000cf0000213d000005960020009c000001120000213d0000059e0020009c000001650000213d000005a20020009c0000026d0000613d000005a30020009c000002820000613d000005a40020009c000000490000c13d0000002400e0008c000000490000413d0000000002000416000000000002004b000000490000c13d0000000402f00370000000000202043b0000057d0020009c000000490000213d00000023032000390000000000e3004b000000490000813d000000040320003900000000013f034f000000000101043b000700000001001d0000057d0010009c000000490000213d000600240020003d0000000701000029000000050110021000000006011000290000000000e1004b000000490000213d0000000a01000039000000000101041a00000579011001970000000002000411000000000021004b000006420000c13d000000070000006b000003b90000613d0000000004000019000000050140021000000006011000290000000101100367000000000101043b000005790010009c000000490000213d000000000010043f0000001501000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c70000801002000039000800000004001d15d415cf0000040f00000008040000290000000100200190000000490000613d000000000101043b000000000201041a000006290220019700000001022001bf000000000021041b0000000104400039000000070040006c000000780000413d000003b90000013d000005a60020009c0000012a0000213d000005ae0020009c000001720000213d000005b20020009c0000029c0000613d000005b30020009c000002a30000613d000005b40020009c000000490000c13d0000000001000416000000000001004b000000490000c13d0000000a01000039000000000101041a00000579011001970000000002000411000000000021004b0000000001000039000000010100603915d40f180000040f0000001601000039000000000201041a0000060c03200197000005dd0020019800000000020000190000060d02006041000000000232019f000000000021041b0000000001000019000015d50001042e000000400300043d0000057a0030009c000000c90000213d000000a00400043d0000004001300039000000400010043f000000090100003900000000091304360000057b020000410000000000290435000000400700043d0000057a0070009c000000c90000213d0000004002700039000000400020043f00000000051704360000057c01000041000000000015043500000000080304330000057d0080009c000001f50000a13d000005ff01000041000000000010043f0000004101000039000000040010043f0000060001000041000015d600010430000005870020009c000001390000213d0000058f0020009c000001860000213d000005930020009c000002bd0000613d000005940020009c000002dc0000613d000005950020009c000000490000c13d0000008400e0008c000000490000413d0000000002000416000000000002004b000000490000c13d0000000402f00370000000000102043b000800000001001d000005790010009c000000490000213d0000002402f00370000000000102043b000700000001001d000005790010009c000000490000213d0000006401f00370000000000101043b0000057d0010009c000000490000213d000000040110003900000000020e001915d40e850000040f00000044020000390000000102200367000000000302043b00000000040100190000000801000029000000070200002915d4104c0000040f0000000001000019000015d50001042e000005b60020009c000001ab0000213d000005ba0020009c000002f40000613d000005bb0020009c000002f90000613d000005bc0020009c000000490000c13d0000000001000416000000000001004b000000490000c13d00000000010e001915d40e560000040f000800000001001d000700000002001d0000000002030019000600000003001d000000000100041115d413790000040f15d40f2b0000040f00000008010000290000000702000029000000060300002915d4140e0000040f0000000001000019000015d50001042e000005970020009c000001cc0000213d0000059b0020009c000003040000613d0000059c0020009c0000030c0000613d0000059d0020009c000000490000c13d0000002400e0008c000000490000413d0000000002000416000000000002004b000000490000c13d0000000401f00370000000000101043b000005790010009c000000490000213d000000000010043f0000001501000039000000200010043f0000004002000039000000000100001915d415b50000040f000005a90000013d000005a70020009c000001d70000213d000005ab0020009c0000032b0000613d000005ac0020009c000003300000613d000005ad0020009c000000490000c13d0000000001000416000000000001004b000000490000c13d0000001601000039000000000101041a000005dd00100198000002ff0000013d000005880020009c000001e80000213d0000058c0020009c000003960000613d0000058d0020009c000003bb0000613d0000058e0020009c000000490000c13d0000000001000416000000000001004b000000490000c13d0000002801000039000000800010043f000005c401000041000015d50001042e000005be0020009c000003d60000613d000005bf0020009c000003fd0000613d000005c00020009c000000490000c13d0000000001000416000000000001004b000000490000c13d0000000a01000039000000000101041a00000579011001970000000002000411000000000021004b000006420000c13d0000000f01000039000000000201041a0000062902200197000000000021041b000000800000043f0000000001000414000005760010009c0000057601008041000000c001100210000005d6011001c70000800d020000390000000103000039000005da04000041000003b60000013d0000059f0020009c000004170000613d000005a00020009c000004390000613d000005a10020009c000000490000c13d0000000001000416000000000001004b000000490000c13d0000000501000039000000800010043f000005c401000041000015d50001042e000005af0020009c000004420000613d000005b00020009c000004600000613d000005b10020009c000000490000c13d0000002400e0008c000000490000413d0000000002000416000000000002004b000000490000c13d0000000401f00370000000000101043b0000000802000039000000000302041a000000000031004b000006560000813d000000000020043f000006080110009a000003080000013d000005900020009c000004730000613d000005910020009c0000047a0000613d000005920020009c000000490000c13d0000002400e0008c000000490000413d0000000002000416000000000002004b000000490000c13d0000000401f00370000000000101043b000800000001001d000000000010043f0000000201000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f0000000100200190000000490000613d000000000101043b000000000101041a00000579001001980000069b0000c13d000000400100043d0000004402100039000005f1030000410000000000320435000000240210003900000014030000390000095a0000013d000005b70020009c0000049a0000613d000005b80020009c000004d50000613d000005b90020009c000000490000c13d0000004400e0008c000000490000413d0000000002000416000000000002004b000000490000c13d0000000402f00370000000000102043b000800000001001d000005790010009c000000490000213d0000002401f00370000000000101043b0000000802000029000000000002004b000006bc0000c13d000005c501000041000000800010043f0000002001000039000000840010043f0000002a01000039000000a40010043f0000061101000041000000c40010043f0000061201000041000000e40010043f000005c801000041000015d600010430000005980020009c000004ed0000613d000005990020009c000005920000613d0000059a0020009c000000490000c13d0000000001000416000000000001004b000000490000c13d15d40f9e0000040f000005b80000013d000005a80020009c000005a50000613d000005a90020009c000005b00000613d000005aa0020009c000000490000c13d0000002400e0008c000000490000413d0000000002000416000000000002004b000000490000c13d0000000401f00370000000000101043b000005790010009c000000490000213d15d40f770000040f000005b80000013d000005890020009c000005bf0000613d0000058a0020009c000006250000613d0000058b0020009c000000490000c13d0000000001000416000000000001004b000000490000c13d0000003201000039000000800010043f000005c401000041000015d50001042e000000000100041a0000000102100190000000010a1002700000007f0aa0618f0000001f00a0008c00000000010000390000000101002039000000000012004b0000070d0000c13d0000002000a0008c000300000004001d000400000006001d000600000007001d000700000005001d000002270000413d00010000000a001d000200000009001d000500000008001d000800000003001d000000000000043f0000000001000414000005760010009c0000057601008041000000c0011002100000057e011001c7000080100200003915d415cf0000040f0000000100200190000000490000613d00000005080000290000001f028000390000000502200270000000200080008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000000607000029000000070500002900000008030000290000000209000029000002270000813d000000000002041b0000000102200039000000000012004b000002230000413d0000001f0080008c0000064b0000a13d000500000008001d000800000003001d000000000000043f0000000001000414000005760010009c0000057601008041000000c0011002100000057e011001c7000080100200003915d415cf0000040f0000000100200190000000490000613d00000005090000290000062a02900198000000000101043b0000000808000029000006e30000c13d00000020030000390000000607000029000006f00000013d0000002400e0008c000000490000413d0000000002000416000000000002004b000000490000c13d0000000401f00370000000000201043b0000062200200198000000490000c13d00000001010000390000062302200197000006240020009c000006dc0000213d000006270020009c000005ad0000613d000006280020009c000005ad0000613d000006e00000013d0000000001000416000000000001004b000000490000c13d000000000200041a000000010320019000000001012002700000007f0110618f0000001f0010008c00000000040000390000000104002039000000000442013f00000001004001900000070d0000c13d000000800010043f000000000003004b000006620000613d000000000000043f000000000001004b0000000002000019000006670000613d00000621030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b000002650000413d000006670000013d0000000001000416000000000001004b000000490000c13d0000000a01000039000000000201041a00000579032001970000000005000411000000000053004b000006420000c13d0000057f02200197000000000021041b0000000001000414000005760010009c0000057601008041000000c00110021000000580011001c70000800d02000039000000030300003900000581040000410000000006000019000003b60000013d0000002400e0008c000000490000413d0000000401f00370000000000301043b0000000b01000039000000000201041a000000020020008c0000059b0000613d0000000202000039000000000021041b0000001601000039000000000101041a000005dd00100198000006910000c13d0000ff0000100190000007490000c13d000005c501000041000000800010043f0000002001000039000000840010043f0000001901000039000000a40010043f000005f001000041000000c40010043f000005d901000041000015d6000104300000000001000416000000000001004b000000490000c13d0000022b01000039000000800010043f000005c401000041000015d50001042e0000000001000416000000000001004b000000490000c13d0000000a01000039000000000101041a00000579011001970000000002000411000000000021004b000006420000c13d0000001601000039000000000201041a0000062903200197000000ff0020019000000000020000390000000102006039000000000323019f000000000031041b0000004001000039000000800010043f0000000701000039000000c00010043f0000060e01000041000000e00010043f000000a00020043f0000000001000414000003af0000013d0000004400e0008c000000490000413d0000000002000416000000000002004b000000490000c13d0000000402f00370000000000102043b000800000001001d000005790010009c000000490000213d0000002401f00370000000000201043b000000000002004b0000000001000039000000010100c039000700000002001d000000000012004b000000490000c13d0000000002000411000000080020006c000007550000c13d000005c501000041000000800010043f0000002001000039000000840010043f0000001901000039000000a40010043f000005dc01000041000000c40010043f000005d901000041000015d6000104300000000001000416000000000001004b000000490000c13d0000000a01000039000000000101041a00000579011001970000000002000411000000000021004b000006420000c13d0000000f01000039000000000201041a000006290220019700000001022001bf000000000021041b0000000103000039000000800030043f0000000001000414000005760010009c0000057601008041000000c001100210000005d6011001c70000800d02000039000005da04000041000003b60000013d0000000001000416000000000001004b000000490000c13d0000000801000039000003080000013d0000000001000416000000000001004b000000490000c13d0000001601000039000000000101041a0000ff00001001900000000001000039000000010100c039000000800010043f000005c401000041000015d50001042e0000000001000416000000000001004b000000490000c13d0000000d01000039000000000101041a000000800010043f000005c401000041000015d50001042e0000000001000416000000000001004b000000490000c13d0000000103000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f00000001005001900000070d0000c13d000000800010043f000000000004004b000006620000613d000000000030043f000000000001004b0000000002000019000006670000613d000005f2030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b000003230000413d000006670000013d0000000001000416000000000001004b000000490000c13d0000000f01000039000005a90000013d0000002400e0008c000000490000413d0000000002000416000000000002004b000000490000c13d0000000402f00370000000000502043b0000057d0050009c000000490000213d00000023025000390000000000e2004b000000490000813d000000040650003900000000026f034f000000000402043b0000057d0040009c000000c90000213d0000001f034000390000062a033001970000003f033000390000062a07300197000005c90070009c000000c90000213d0000008003700039000000400030043f000000800040043f000000000345001900000024033000390000000000e3004b000000490000213d000000200360003900000000033f034f0000062a054001980000001f0640018f000000a0015000390000035a0000613d000000a007000039000000000803034f000000008908043c0000000007970436000000000017004b000003560000c13d000000000006004b000003670000613d000000000353034f0000000305600210000000000601043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f0000000000310435000000a00140003900000000000104350000000a01000039000000000101041a00000579011001970000000003000411000000000031004b000008bf0000c13d000000800300043d0000057d0030009c000000c90000213d0000001001000039000000000501041a000000010050019000000001045002700000007f0440618f0000001f0040008c00000000060000390000000106002039000000000565013f00000001005001900000070d0000c13d000000200040008c0000038e0000413d000000000010043f0000001f053000390000000505500270000006030550009a000000200030008c000005d2050040410000001f044000390000000504400270000006030440009a000000000045004b0000038e0000813d000000000005041b0000000105500039000000000045004b0000038a0000413d0000001f0030008c00000bfc0000a13d000000000010043f0000062a0530019800000c230000c13d000000a006000039000005d20400004100000c310000013d0000000001000416000000000001004b000000490000c13d0000000a01000039000000000101041a00000579011001970000000002000411000000000021004b000006420000c13d0000001601000039000000000201041a0000062b032001970000ff000020019000000100033061bf000000000031041b0000004001000039000000800010043f0000000601000039000000c00010043f000005ce01000041000000e00010043f00000000010000390000000101006039000000a00010043f0000000001000414000005760010009c0000057601008041000000c001100210000005cf011001c70000800d020000390000000103000039000005d00400004115d415ca0000040f0000000100200190000000490000613d0000000001000019000015d50001042e0000004400e0008c000000490000413d0000000002000416000000000002004b000000490000c13d0000000402f00370000000000202043b000005790020009c000000490000213d0000002401f00370000000000101043b000800000001001d000005790010009c000000490000213d000000000020043f0000000501000039000000200010043f0000004002000039000000000100001915d415b50000040f000000080200002915d40ecf0000040f000000000101041a000000ff001001900000000001000039000000010100c039000005b80000013d0000004400e0008c000000490000413d0000000002000416000000000002004b000000490000c13d0000000402f00370000000000102043b000800000001001d000005790010009c000000490000213d0000002401f00370000000000101043b000700000001001d000000000010043f0000000201000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f0000000100200190000000490000613d000000000101043b000000000101041a0000057901100198000007850000c13d000000400100043d00000064021000390000061f03000041000000000032043500000044021000390000062003000041000000000032043500000024021000390000002903000039000008ec0000013d0000002400e0008c000000490000413d0000000002000416000000000002004b000000490000c13d0000000401f00370000000000301043b0000000a01000039000000000101041a00000579011001970000000002000411000000000021004b000006420000c13d000000000003004b0000074b0000613d000000380030008c000007910000413d000005c501000041000000800010043f0000002001000039000000840010043f000000a40010043f0000061901000041000000c40010043f000005d901000041000015d6000104300000002400e0008c000000490000413d0000000401f00370000000000101043b000600000001001d0000000b01000039000000000201041a000000020020008c0000059b0000613d0000000202000039000000000021041b0000001601000039000000000101041a000005dd00100198000006910000c13d000800000001001d0000000c01000039000000000201041a0000000d01000039000000000101041a000005de03000041000000800030043f000000840010043f0000006401000039000000a40010043f00000000010004140000057902200197000000040020008c000007c30000c13d0000000003000031000000800030008c00000080040000390000000004034019000007e80000013d0000000001000416000000000001004b000000490000c13d0000000a01000039000000000101041a0000057901100197000000800010043f000005c401000041000015d50001042e0000000001000416000000000001004b000000490000c13d0000000a01000039000000000101041a00000579011001970000000002000411000000000021004b000006420000c13d00000609010000410000000000100443000000000100041000000004001004430000000001000414000005760010009c0000057601008041000000c0011002100000060a011001c70000800a0200003915d415cf0000040f000000010020019000000e280000613d000000000301043b00000000010004140000000004000411000000040040008c000008200000c13d00000001020000390000000001000031000009500000013d0000000001000416000000000001004b000000490000c13d00000000010e001915d40e560000040f000800000001001d000700000002001d000600000003001d000000400100043d000500000001001d15d40e680000040f0000000504000029000000000004043500000008010000290000000702000029000000060300002915d4104c0000040f0000000001000019000015d50001042e0000000001000416000000000001004b000000490000c13d0000003701000039000000800010043f000005c401000041000015d50001042e0000004400e0008c000000490000413d0000000002000416000000000002004b000000490000c13d0000000402f00370000000000502043b000005790050009c000000490000213d0000002401f00370000000000101043b000005d50010009c000000490000213d0000000a02000039000000000202041a00000579022001970000000003000411000000000032004b000006420000c13d000005d502100197000027110020008c000008d50000413d000005c501000041000000800010043f0000002001000039000000840010043f0000001b01000039000000a40010043f000005d801000041000000c40010043f000005d901000041000015d6000104300000002400e0008c000000490000413d0000000402f00370000000000102043b000800000001001d0000057d0010009c000000490000213d000000080100002900000023041000390000000000e4004b000000490000813d0000000801000029000000040410003900000000044f034f000000000604043b0000057d0060009c000000c90000213d00000005056002100000003f045000390000061404400197000005c90040009c000000c90000213d0000008001400039000700000001001d000000400010043f000000800060043f0000000801000029000000240410003900000000054500190000000000e5004b000000490000213d000000000006004b000009ac0000c13d0000000c01000039000000000301041a0000061601000041000000070c00002900000000001c04350000000401c00039000000200200003900000000002104350000002402c00039000000800100043d00000000001204350000004402c0003900000005041002100000000006240019000805790030019b000000000001004b00000b220000c13d00000000010004140000000802000029000000040020008c00000b3f0000c13d0000000003000031000000200030008c0000002004000039000000000403401900000b6f0000013d0000004400e0008c000000490000413d0000000002000416000000000002004b000000490000c13d0000002401f00370000000000101043b0000001402000039000000000202041a000800000002001d000000a00220027015d40f420000040f000027100110011a000000400200043d00000020032000390000000000130435000000080100002900000579011001970000000000120435000005760020009c0000057602008041000000400120021000000613011001c7000015d50001042e0000004400e0008c000000490000413d0000000002000416000000000002004b000000490000c13d0000000402f00370000000000102043b000800000001001d0000002402f00370000000000402043b0000057d0040009c000000490000213d00000023024000390000000000e2004b000000490000813d000000040540003900000000025f034f000000000202043b0000057d0020009c000000c90000213d0000001f032000390000062a033001970000003f033000390000062a06300197000005c90060009c000000c90000213d0000008003600039000000400030043f000000800020043f000000000324001900000024033000390000000000e3004b000000490000213d000000200350003900000000033f034f0000062a042001980000001f0520018f000000a0014000390000051a0000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000016004b000005160000c13d000000000005004b000005270000613d000000000343034f0000000304500210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000000a00120003900000000000104350000000a01000039000000000101041a00000579011001970000000002000411000000000021004b000008bf0000c13d0000000801000029000000000010043f0000000201000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f0000000100200190000000490000613d000000000101043b000000000101041a0000057900100198000001a40000613d0000000801000029000000000010043f0000001201000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f0000000100200190000000490000613d000000000101043b000800000001001d000000800100043d000700000001001d0000057d0010009c000000c90000213d0000000801000029000000000101041a000000010010019000000001021002700000007f0220618f000600000002001d0000001f0020008c00000000020000390000000102002039000000000121013f00000001001001900000070d0000c13d0000000601000029000000200010008c0000057e0000413d0000000801000029000000000010043f0000000001000414000005760010009c0000057601008041000000c0011002100000057e011001c7000080100200003915d415cf0000040f0000000100200190000000490000613d00000007030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000006010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000057e0000813d000000000002041b0000000102200039000000000012004b0000057a0000413d00000007010000290000001f0010008c00000cff0000a13d0000000801000029000000000010043f0000000001000414000005760010009c0000057601008041000000c0011002100000057e011001c7000080100200003915d415cf0000040f0000000100200190000000490000613d000000200200008a0000000702200180000000000101043b00000d210000c13d000000a00300003900000d2f0000013d0000002400e0008c000000490000413d0000000401f00370000000000101043b000600000001001d0000000b01000039000000000201041a000000020020008c000006780000c13d000005c501000041000000800010043f0000002001000039000000840010043f0000001f01000039000000a40010043f0000060101000041000000c40010043f000005d901000041000015d6000104300000000001000416000000000001004b000000490000c13d0000001601000039000000000101041a000000ff001001900000000001000039000000010100c039000000800010043f000005c401000041000015d50001042e0000002400e0008c000000490000413d0000000002000416000000000002004b000000490000c13d0000000401f00370000000000101043b15d40f500000040f000000400200043d0000000000120435000005760020009c00000576020080410000004001200210000005cd011001c7000015d50001042e0000002400e0008c000000490000413d0000000002000416000000000002004b000000490000c13d0000000402f00370000000000502043b0000057d0050009c000000490000213d00000023025000390000000000e2004b000000490000813d000000040650003900000000026f034f000000000202043b0000057d0020009c000000c90000213d0000001f032000390000062a033001970000003f033000390000062a07300197000005c90070009c000000c90000213d0000008003700039000000400030043f000000800020043f000000000325001900000024033000390000000000e3004b000000490000213d000000200360003900000000033f034f0000062a052001980000001f0620018f000000a001500039000005e90000613d000000a007000039000000000803034f000000008908043c0000000007970436000000000017004b000005e50000c13d000000000006004b000005f60000613d000000000353034f0000000305600210000000000601043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f0000000000310435000000a00120003900000000000104350000000a01000039000000000101041a00000579011001970000000002000411000000000021004b000008bf0000c13d000000800200043d0000057d0020009c000000c90000213d0000001101000039000000000501041a000000010050019000000001035002700000007f0330618f0000001f0030008c00000000060000390000000106002039000000000565013f00000001005001900000070d0000c13d000000200030008c0000061d0000413d000000000010043f0000001f052000390000000505500270000005ca0550009a000000200020008c000005cb050040410000001f033000390000000503300270000005ca0330009a000000000035004b0000061d0000813d000000000005041b0000000105500039000000000035004b000006190000413d0000001f0020008c00000c070000a13d000000000010043f0000062a0420019800000c630000c13d000000a005000039000005cb0300004100000c710000013d0000002400e0008c000000490000413d0000000002000416000000000002004b000000490000c13d0000000401f00370000000000601043b000005790060009c000000490000213d0000000a01000039000000000201041a00000579032001970000000005000411000000000053004b000006420000c13d000000000006004b000008270000c13d000005c501000041000000800010043f0000002001000039000000840010043f0000002601000039000000a40010043f000005c601000041000000c40010043f000005c701000041000000e40010043f000005c801000041000015d600010430000005c501000041000000800010043f0000002001000039000000840010043f000000a40010043f0000060201000041000000c40010043f000005d901000041000015d600010430000000000008004b00000000010000190000064f0000613d000000000109043300000003028002100000062c0220027f0000062c02200167000000000121016f0000000102800210000000000121019f000006fd0000013d000005c501000041000000800010043f0000002001000039000000840010043f0000002c01000039000000a40010043f0000060601000041000000c40010043f0000060701000041000000e40010043f000005c801000041000015d6000104300000062902200197000000a00020043f000000000001004b000000200200003900000000020060390000002002200039000000800100003915d40e730000040f000000400100043d000800000001001d000000800200003915d40e410000040f00000008020000290000000001210049000005760010009c00000576010080410000006001100210000005760020009c00000576020080410000004002200210000000000121019f000015d50001042e0000000202000039000000000021041b0000001601000039000000000101041a000005dd00100198000006910000c13d000800000001001d0000000c01000039000000000201041a0000000d01000039000000000101041a000005de03000041000000800030043f000000840010043f0000006401000039000000a40010043f00000000010004140000057902200197000000040020008c000008330000c13d0000000003000031000000800030008c00000080040000390000000004034019000008580000013d000005c501000041000000800010043f0000002001000039000000840010043f0000001201000039000000a40010043f000005fe01000041000000c40010043f000005d901000041000015d6000104300000000f01000039000000000101041a000000ff00100190000008870000c13d0000001105000039000000000405041a000000010640019000000001024002700000007f0220618f0000001f0020008c00000000010000390000000101002039000000000114013f00000001001001900000070d0000c13d000000400100043d0000000003210436000000000006004b000009fb0000613d000000000050043f000000000002004b000000000400001900000a000000613d000005cb0500004100000000040000190000000006430019000000000705041a000000000076043500000001055000390000002004400039000000000024004b000006b40000413d00000a000000013d000700000001001d000000000020043f0000000301000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f0000000100200190000000490000613d000000000101043b000000000101041a000000070010006b000008e30000813d0000000802000029000000000020043f0000000601000039000000200010043f0000004002000039000000000100001915d415b50000040f0000000702000029000000000020043f000000200010043f0000000001000019000000400200003915d415b50000040f000000000101041a000005b80000013d000006250020009c000005ad0000613d000006260020009c000005ad0000613d000000800000043f000005c401000041000015d50001042e000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000060700002900000000058300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000006e90000c13d000000000092004b000006fa0000813d0000000302900210000000f80220018f0000062c0220027f0000062c0220016700000000038300190000000003030433000000000223016f000000000021041b000000010190021000000001011001bf0000000705000029000000000010041b00000000080704330000057d0080009c000000c90000213d0000000101000039000800000001001d000000000101041a000000010010019000000001031002700000007f0330618f0000001f0030008c00000000020000390000000102002039000000000121013f0000000100100190000007130000613d000005ff01000041000000000010043f0000002201000039000000040010043f0000060001000041000015d600010430000000200030008c000007340000413d000200000003001d000500000008001d0000000101000039000000000010043f0000000001000414000005760010009c0000057601008041000000c0011002100000057e011001c7000080100200003915d415cf0000040f0000000100200190000000490000613d00000005080000290000001f028000390000000502200270000000200080008c0000000002004019000000000301043b00000002010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000000705000029000007340000813d000000000002041b0000000102200039000000000012004b000007300000413d0000001f0080008c000008ca0000a13d000500000008001d0000000101000039000000000010043f0000000001000414000005760010009c0000057601008041000000c0011002100000057e011001c7000080100200003915d415cf0000040f0000000100200190000000490000613d000000200200008a0000000502200180000000000101043b00000aa70000c13d0000002003000039000000060600002900000ab40000013d000000000003004b000008f70000c13d000005c501000041000000800010043f0000002001000039000000840010043f0000001c01000039000000a40010043f000005fa01000041000000c40010043f000005d901000041000015d600010430000000000020043f0000000501000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f0000000100200190000000490000613d000000000101043b0000000802000029000000000020043f000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f0000000100200190000000490000613d000000000101043b000000000201041a00000629022001970000000703000029000000000232019f000000000021041b000000400100043d0000000000310435000005760010009c000005760100804100000040011002100000000002000414000005760020009c0000057602008041000000c002200210000000000112019f0000057e011001c70000800d020000390000000303000039000005db0400004100000000050004110000000806000029000003b60000013d000000080010006b000009080000c13d000000400100043d00000064021000390000061d03000041000000000032043500000044021000390000061e03000041000000000032043500000024021000390000002103000039000008ec0000013d0000000801000039000000000101041a000000000031001a000007bd0000413d00000000023100190000022b0020008c000008fe0000213d0000062c0010009c000007bd0000613d000800000000001d000600000003001d0000000102100039000700000002001d000000000100041115d411cc0000040f000000400100043d00000007020000290000000000210435000005760010009c000005760100804100000040011002100000000002000414000005760020009c0000057602008041000000c002200210000000000112019f0000057e011001c70000800d020000390000000203000039000005ee04000041000000000500041115d415ca0000040f000000060300002900000001002001900000000801000029000000490000613d0000000101100039000000000031004b000003b90000813d000800000001001d0000000801000039000000000101041a0000062c0010009c0000079c0000c13d000005ff01000041000000000010043f0000001101000039000000040010043f0000060001000041000015d600010430000005760010009c0000057601008041000000c001100210000005df011001c715d415cf0000040f00000060031002700000057603300197000000800030008c000000800400003900000000040340190000001f0640018f000000e0074001900000008005700039000007d70000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000007d30000c13d000000000006004b000007e40000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000200000001035500000001002001900000093c0000613d0000001f01400039000001e00210018f0000008004200039000000400040043f000000800030008c000000490000413d0000010001200039000000400010043f000000800100043d000005e000100198000005e1030000410000000003006019000005e205100197000000000353019f000000000031004b000000490000c13d0000000000140435000000a00300043d0000057d0030009c000000490000213d000000a0042000390000000000340435000000c00300043d000005e300300198000005e4040000410000000004006019000005e505300197000000000454019f000000000043004b000000490000c13d000000c0042000390000000000340435000000e002200039000000e00300043d0000000000320435000005e60010009c00000bce0000213d000000000001004b00000bce0000613d000005e70010009c000008810000413d000005e70210012a000005f30220012900070006002000bd000005f40010009c000008190000213d00000007012000f9000000060010006c000007bd0000c13d0000000801000029000000ff0010019000000c980000c13d000000400100043d0000004402100039000005fc0300004100000bca0000013d000005760010009c0000057601008041000000c001100210000000000003004b000009480000c13d00000000020400190000094b0000013d0000057f02200197000000000262019f000000000021041b0000000001000414000005760010009c0000057601008041000000c00110021000000580011001c70000800d0200003900000003030000390000058104000041000003b60000013d000005760010009c0000057601008041000000c001100210000005df011001c715d415cf0000040f000000800a00003900000060031002700000057603300197000000800030008c000000800400003900000000040340190000001f0640018f000000e0074001900000008005700039000008470000613d000000000801034f000000008908043c000000000a9a043600000000005a004b000008430000c13d000000000006004b000008540000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000200000001035500000001002001900000098e0000613d0000001f01400039000001e00210018f0000008004200039000000400040043f000000800030008c000000490000413d0000010001200039000000400010043f000000800100043d000005e000100198000005e1030000410000000003006019000005e205100197000000000353019f000000000031004b000000490000c13d0000000000140435000000a00300043d0000057d0030009c000000490000213d000000a0042000390000000000340435000000c00300043d000005e300300198000005e4040000410000000004006019000005e505300197000000000454019f000000000043004b000000490000c13d000000c0042000390000000000340435000000e002200039000000e00300043d0000000000320435000005e60010009c00000bce0000213d000000000001004b00000bce0000613d000005e70010009c00000c110000813d000005ff01000041000000000010043f0000001201000039000000040010043f0000060001000041000015d6000104300000000801000029000000000010043f0000001201000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f0000000100200190000000490000613d000000000101043b000000000201041a000000010320019000000001052002700000007f0550618f0000001f0050008c00000000040000390000000104002039000000000442013f00000001004001900000070d0000c13d000000400400043d000800000004001d000600000005001d0000000004540436000700000004001d000000000003004b00000bb30000613d000000000010043f0000000001000414000005760010009c0000057601008041000000c0011002100000057e011001c7000080100200003915d415cf0000040f0000000100200190000000490000613d0000000606000029000000000006004b0000000002000019000000070500002900000bb90000613d000000000101043b00000000020000190000000003250019000000000401041a000000000043043500000001011000390000002002200039000000000062004b000008b70000413d00000bb90000013d000000400100043d000000440210003900000602030000410000000000320435000005c502000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000095f0000013d000000000008004b0000000001000019000008ce0000613d000000000105043300000003028002100000062c0220027f0000062c02200167000000000121016f0000000102800210000000000121019f00000ac10000013d000000a001100210000000000151019f0000001403000039000000000013041b000000800020043f0000000001000414000005760010009c0000057601008041000000c001100210000005d6011001c70000800d020000390000000203000039000005d704000041000003b60000013d000000400100043d00000064021000390000060f03000041000000000032043500000044021000390000061003000041000000000032043500000024021000390000002b030000390000000000320435000005c5020000410000000000210435000000040210003900000020030000390000000000320435000005760010009c00000576010080410000004001100210000005f7011001c7000015d6000104300000000801000039000000000101041a000000000031001a000007bd0000413d00000000013100190000022b0010008c00000a190000a13d000005c501000041000000800010043f0000002001000039000000840010043f0000001701000039000000a40010043f000005f801000041000000c40010043f000005d901000041000015d6000104300000000002000411000000000012004b00000a7f0000c13d0000000701000029000000000010043f0000000401000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f0000000100200190000000490000613d000000000101043b000000000201041a0000057f0220019700000008022001af000000000021041b0000000701000029000000000010043f0000000201000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f0000000100200190000000490000613d000000000101043b000000000101041a0000057905100198000003f30000613d0000000001000414000005760010009c0000057601008041000000c00110021000000580011001c70000800d0200003900000004030000390000061c040000410000000806000029000000070700002915d415ca0000040f0000000100200190000000490000613d000003b90000013d0000001f0530018f0000057806300198000000400200043d0000000004620019000009990000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000009430000c13d000009990000013d00000580011001c70000800902000039000000000500001915d415ca0000040f00020000000103550000006001100270000005760010019d0000057601100197000000000001004b000009650000c13d0000000100200190000003b90000c13d000000400100043d00000044021000390000060b03000041000000000032043500000024021000390000000f030000390000000000320435000005c5020000410000000000210435000000040210003900000020030000390000000000320435000005760010009c00000576010080410000004001100210000005d4011001c7000015d6000104300000057d0010009c000000c90000213d0000001f041000390000062a044001970000003f044000390000062a05400197000000400400043d0000000005540019000000000045004b000000000600003900000001060040390000057d0050009c000000c90000213d0000000100600190000000c90000c13d000000400050043f00000000061404360000062a031001980000001f0410018f00000000013600190000000205000367000009800000613d000000000705034f000000007807043c0000000006860436000000000016004b0000097c0000c13d000000000004004b000009520000613d000000000335034f0000000304400210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000009520000013d0000001f0530018f0000057806300198000000400200043d0000000004620019000009990000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000009950000c13d000000000005004b000009a60000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000005760020009c00000576020080410000004002200210000000000112019f000015d6000104300000008006000039000009b70000013d000000200660003900000000038a0019000000000003043500000000009604350000002004400039000000000054004b000000000e020019000000000f01034f00000bf90000813d00000000084f034f000000000808043b0000057d0080009c000000490000213d000000080b8000290000004308b000390000000000e8004b000000000900001900000615090080410000061508800197000000000008004b000000000a000019000006150a004041000006150080009c000000000a09c01900000000000a004b000000490000c13d000000240cb000390000000008cf034f000000000808043b0000057d0080009c000000c90000213d0000001f098000390000062a099001970000003f099000390000062a0a900197000000400900043d000000000aa9001900000000009a004b000000000d000039000000010d0040390000057d00a0009c000000c90000213d0000000100d00190000000c90000c13d0000004000a0043f000000000a890436000000000b8b0019000000440bb000390000000000eb004b000000490000213d00000000020e0019000000200bc0003900000000010f034f000000000cbf034f0000062a0d800198000000000bda0019000009ed0000613d000000000e0c034f000000000f0a001900000000e30e043c000000000f3f04360000000000bf004b000009e90000c13d0000001f0e800190000009ae0000613d0000000003dc034f000000030ce00210000000000d0b0433000000000dcd01cf000000000dcd022f000000000303043b000001000cc000890000000003c3022f0000000003c301cf0000000003d3019f00000000003b0435000009ae0000013d00000629044001970000000000430435000000000002004b000000200400003900000000040060390000003f024000390000062a022001970000000003120019000000000023004b000000000200003900000001020040390000057d0030009c000000c90000213d0000000100200190000000c90000c13d000800000003001d000000400030043f0000002002000039000000000223043615d40e2f0000040f00000008020000290000000001210049000005760010009c0000057601008041000005760020009c000005760200804100000060011002100000004002200210000000000121019f000015d50001042e000500000003001d00000000010004110006006000100218000800000000001d000000400100043d000700000001001d000005ea0100004100000000001004430000000001000414000005760010009c0000057601008041000000c001100210000005eb011001c70000800b0200003915d415cf0000040f000000010020019000000e280000613d00000007040000290000002002400039000000000101043b000000000012043500000040014000390000000603000029000000000031043500000054014000390000000803000029000000000031043500000054010000390000000000140435000005c90040009c000000c90000213d0000008001400039000000400010043f000005760020009c000005760200804100000040012002100000000002040433000005760020009c00000576020080410000006002200210000000000112019f0000000002000414000005760020009c0000057602008041000000c002200210000000000112019f00000580011001c7000080100200003915d415cf0000040f0000000100200190000000490000613d0000001303000039000000000203041a000000000002004b000008810000613d000000000101043b00000000102100d9000005ec0110009a000005ed0220009a000000000402041a000000000201041a000000000041041b000000000103041a000000000001004b00000e290000613d000000000030043f000005ed0410009a000000000004041b000000010110008a000000000013041b0000000001000411000700000002001d15d411cc0000040f000000400100043d00000007020000290000000000210435000005760010009c000005760100804100000040011002100000000002000414000005760020009c0000057602008041000000c002200210000000000112019f0000057e011001c70000800d020000390000000203000039000005ee04000041000000000500041115d415ca0000040f0000000100200190000000490000613d00000008020000290000000102200039000800000002001d000000050020006c00000a1d0000413d00000001010000390000000b02000039000000000012041b0000000001000019000015d50001042e000000000010043f0000000501000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f0000000100200190000000490000613d000000000101043b00000000020004110000057902200197000000000020043f000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f0000000100200190000000490000613d000000000101043b000000000101041a000000ff001001900000090b0000c13d000000400100043d00000064021000390000061a03000041000000000032043500000044021000390000061b03000041000000000032043500000024021000390000003803000039000008ec0000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000060600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b00000aad0000c13d0000000505000029000000000052004b00000abf0000813d0000000302500210000000f80220018f0000062c0220027f0000062c0220016700000000036300190000000003030433000000000223016f000000000021041b000000010150021000000001011001bf0000000102000039000000000012041b000000000100041100000579061001970000000a03000039000000000103041a0000057f02100197000000000262019f000000000023041b00000000020004140000057905100197000005760020009c0000057602008041000000c00120021000000580011001c70000800d0200003900000003030000390000058104000041000700000006001d15d415ca0000040f00000001002001900000000401000029000000490000613d00000579011001970000000b020000390000000103000039000000000032041b0000000e02000039000000000002041b0000000f02000039000000000302041a0000062903300197000000000032041b0000001602000039000000000302041a0000058203300197000000000032041b0000000c02000039000000000302041a0000057f03300197000000000113019f000000000012041b0000000d010000390000000302000029000000000021041b0000000a03000039000000000103041a0000057f021001970000000706000029000000000262019f000000000023041b00000000020004140000057905100197000005760020009c0000057602008041000000c00120021000000580011001c70000800d020000390000000303000039000005810400004115d415ca0000040f0000000100200190000000490000613d0000001302000039000000000102041a0000057d0010009c000000c90000213d000700000001001d0000000101100039000000000012041b000000000020043f0000000001000414000005760010009c0000057601008041000000c0011002100000057e011001c7000080100200003915d415cf0000040f0000000100200190000000490000613d000000000101043b00000007011000290000000802000029000000000021041b0000022b0020008c000800010020003d000000130200003900000b010000413d000000000100041100000583011001c70000001402000039000000000012041b0000002001000039000001000010044300000120000004430000058401000041000015d50001042e0000008003000039000000000500001900000b2d0000013d0000001f087000390000062a088001970000000007670019000000000007043500000000066800190000000105500039000000000015004b000004cc0000813d0000000007c60049000000440770008a00000000027204360000002003300039000000000703043300000000870704340000000006760436000000000007004b00000b250000613d0000000009000019000000000a690019000000000b980019000000000b0b04330000000000ba04350000002009900039000000000079004b00000b370000413d00000b250000013d0000000002c60049000005760020009c000005760200804100000060022002100000057600c0009c000005760300004100000000030c40190000004003300210000000000232019f000005760010009c0000057601008041000000c001100210000000000112019f000000080200002900070000000c001d15d415cf0000040f00000060031002700000057603300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000070570002900000b5e0000613d000000000801034f0000000709000029000000008a08043c0000000009a90436000000000059004b00000b5a0000c13d000000000006004b00000b6b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f0002000000010355000000010020019000000bd20000613d0000001f01400039000000600210018f0000000701200029000000000021004b000000000200003900000001020040390000057d0010009c000000c90000213d0000000100200190000000c90000c13d000000400010043f000000200030008c000000490000413d00000007010000290000000001010433000700000001001d00000617010000410000000000100443000000080100002900000004001004430000000001000414000005760010009c0000057601008041000000c0011002100000060a011001c7000080020200003915d415cf0000040f000000010020019000000e280000613d000000000101043b000000000001004b000000490000613d000000400300043d000006180100004100000000001304350000000401300039000000200200003900000000002104350000002402300039000000800100043d0000000000120435000600000003001d000000440230003900000005031002100000000006230019000000000001004b00000cc20000c13d00000000010004140000000802000029000000040020008c00000ceb0000613d00000006030000290000000002360049000005760020009c00000576020080410000006002200210000005760030009c00000576030080410000004003300210000000000232019f000005760010009c0000057601008041000000c001100210000000000112019f000000070000006b00000ce00000c13d000000080200002900000ce50000013d000006290120019700000007020000290000000000120435000000060000006b000000200200003900000000020060390000003f012000390000062a031001970000000801300029000000000031004b000000000300003900000001030040390000057d0010009c000000c90000213d0000000100300190000000c90000c13d000000400010043f00000008030000290000000003030433000000000003004b00000bde0000c13d0000004402100039000005d3030000410000000000320435000000240210003900000015030000390000095a0000013d000000400100043d0000004402100039000005fd03000041000009570000013d0000001f0530018f0000057806300198000000400200043d0000000004620019000009990000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000bd90000c13d000009990000013d0000001006000039000000000506041a000000010750019000000001035002700000007f0330618f0000001f0030008c00000000040000390000000104002039000000000445013f00000001004001900000070d0000c13d0000002004100039000000000007004b00000c800000613d000000000060043f000000000003004b00000c820000613d000005d20500004100000000060000190000000007460019000000000805041a000000000087043500000001055000390000002006600039000000000036004b00000bf10000413d00000c820000013d000000400100043d000700000001001d000004bb0000013d000000000003004b000000000400001900000c000000613d000000a00400043d00000003053002100000062c0550027f0000062c05500167000000000454016f0000000103300210000000000334019f00000c3c0000013d000000000002004b000000000300001900000c0b0000613d000000a00300043d00000003042002100000062c0440027f0000062c04400167000000000443016f000000010320021000000c7c0000013d000005e70210012a000005e80320012900000006023000b9000005e90010009c00000c190000213d00000000013200d9000000060010006c000007bd0000c13d00000008010000290000ff000010019000000caf0000c13d000000400100043d0000004402100039000005f0030000410000000000320435000000240210003900000019030000390000095a0000013d000005d2040000410000002007000039000000010650008a0000000506600270000006040660009a000000000807001900000080077000390000000007070433000000000074041b00000020078000390000000104400039000000000064004b00000c280000c13d000000a006800039000000000035004b00000c3a0000813d0000000305300210000000f80550018f0000062c0550027f0000062c055001670000000006060433000000000556016f000000000054041b000000010330021000000001033001bf000000000031041b0000002003000039000000400100043d0000000004310436000000800300043d00000000003404350000004004100039000000000003004b00000c4d0000613d00000000050000190000000006450019000000a007500039000000000707043300000000007604350000002005500039000000000035004b00000c460000413d0000001f053000390000062a02500197000000000343001900000000000304350000004002200039000005760020009c00000576020080410000006002200210000005760010009c00000576010080410000004001100210000000000112019f0000000002000414000005760020009c0000057602008041000000c002200210000000000112019f00000580011001c70000800d0200003900000001030000390000060504000041000003b60000013d000005cb030000410000002006000039000000010540008a0000000505500270000005cc0550009a000000000706001900000080066000390000000006060433000000000063041b00000020067000390000000103300039000000000053004b00000c680000c13d000000a005700039000000000024004b00000c7a0000813d0000000304200210000000f80440018f0000062c0440027f0000062c044001670000000005050433000000000445016f000000000043041b00000001030000390000000104200210000000000234019f000000000021041b0000000001000019000015d50001042e00000629055001970000000000540435000000000343001900000008040000290000000004040433000000000004004b000000070800002900000c900000613d000000000500001900000000063500190000000007580019000000000707043300000000007604350000002005500039000000000045004b00000c890000413d000000000334001900000000000304350000000003130049000000200430008a00000000004104350000001f033000390000062a0230019700000a020000013d00000000010004110000057901100197000500000001001d000000000010043f0000001501000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f0000000100200190000000490000613d000000000101043b000000000101041a000000ff0010019000000d0a0000c13d000000400100043d0000004402100039000005fb03000041000009570000013d000000060000006b00000d0c0000613d0000000601000029000000050010008c00000d1d0000213d0000000801000039000000000101041a000000060010002a000007bd0000413d00000006011000290000022b0010008c00000d130000a13d000000400100043d0000004402100039000005f8030000410000000000320435000000240210003900000017030000390000095a0000013d00000080030000390000000005000019000000060c00002900000cce0000013d0000001f087000390000062a088001970000000007670019000000000007043500000000066800190000000105500039000000000015004b00000b9e0000813d0000000007c60049000000440770008a00000000027204360000002003300039000000000703043300000000870704340000000006760436000000000007004b00000cc60000613d0000000009000019000000000a690019000000000b980019000000000b0b04330000000000ba04350000002009900039000000000079004b00000cd80000413d00000cc60000013d00000580011001c7000080090200003900000007030000290000000804000029000000000500001915d415ca0000040f00020000000103550000006003100270000005760030019d000000010020019000000cf20000613d00000006010000290000057d0010009c000000c90000213d0000000601000029000000400010043f0000000001000019000015d50001042e00000576033001970000001f0530018f0000057806300198000000400200043d0000000004620019000009990000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000cfa0000c13d000009990000013d000000070000006b000000000100001900000d030000613d000000a00100043d000000070400002900000003024002100000062c0220027f0000062c02200167000000000221016f000000010140021000000d3c0000013d000000060000006b00000d1a0000c13d000000400100043d0000004402100039000005fa03000041000000000032043500000024021000390000001c030000390000095a0000013d0000000001000416000000000021004b00000d410000813d000000400100043d0000004402100039000005ef03000041000001a70000013d0000000601000029000000060010008c00000da20000413d000000400100043d0000004402100039000005f903000041000008c20000013d000000010320008a0000000503300270000000000331001900000020040000390000000103300039000000000504001900000080044000390000000004040433000000000041041b00000020045000390000000101100039000000000031004b00000d260000c13d000000a003500039000000070020006c00000d390000813d00000007020000290000000302200210000000f80220018f0000062c0220027f0000062c022001670000000003030433000000000223016f000000000021041b000000010100003900000007020000290000000102200210000000000112019f0000000802000029000000000012041b0000000001000019000015d50001042e00000000010004110005006000100218000800000000001d000000400100043d000700000001001d000005ea0100004100000000001004430000000001000414000005760010009c0000057601008041000000c001100210000005eb011001c70000800b0200003915d415cf0000040f000000010020019000000e280000613d00000007040000290000002002400039000000000101043b000000000012043500000040014000390000000503000029000000000031043500000054014000390000000803000029000000000031043500000054010000390000000000140435000005c90040009c000000c90000213d0000008001400039000000400010043f000005760020009c000005760200804100000040012002100000000002040433000005760020009c00000576020080410000006002200210000000000112019f0000000002000414000005760020009c0000057602008041000000c002200210000000000112019f00000580011001c7000080100200003915d415cf0000040f0000000100200190000000490000613d0000001303000039000000000203041a000000000002004b000008810000613d000000000101043b00000000102100d9000005ec0110009a000005ed0220009a000000000402041a000000000201041a000000000041041b000000000103041a000000000001004b00000e290000613d000000000030043f000005ed0410009a000000000004041b000000010110008a000000000013041b0000000001000411000700000002001d15d411cc0000040f000000400100043d00000007020000290000000000210435000005760010009c000005760100804100000040011002100000000002000414000005760020009c0000057602008041000000c002200210000000000112019f0000057e011001c70000800d020000390000000203000039000005ee04000041000000000500041115d415ca0000040f0000000100200190000000490000613d00000008020000290000000102200039000800000002001d000000060020006c00000d440000413d00000a7a0000013d0000000801000039000000000101041a000000060010002a000007bd0000413d00000006011000290000022c0010008c00000cbb0000813d0000000001000416000000070010006c00000db60000813d000000400100043d0000006402100039000005f50300004100000000003204350000004402100039000005f603000041000000000032043500000024021000390000002503000039000008ec0000013d00000000010004110004006000100218000800000000001d000000400100043d000700000001001d000005ea0100004100000000001004430000000001000414000005760010009c0000057601008041000000c001100210000005eb011001c70000800b0200003915d415cf0000040f000000010020019000000e280000613d00000007040000290000002002400039000000000101043b000000000012043500000040014000390000000403000029000000000031043500000054014000390000000803000029000000000031043500000054010000390000000000140435000005c90040009c000000c90000213d0000008001400039000000400010043f000005760020009c000005760200804100000040012002100000000002040433000005760020009c00000576020080410000006002200210000000000112019f0000000002000414000005760020009c0000057602008041000000c002200210000000000112019f00000580011001c7000080100200003915d415cf0000040f0000000100200190000000490000613d0000001303000039000000000203041a000000000002004b000008810000613d000000000101043b00000000102100d9000005ec0110009a000005ed0220009a000000000402041a000000000201041a000000000041041b000000000103041a000000000001004b00000e290000613d000000000030043f000005ed0410009a000000000004041b000000010110008a000000000013041b0000000001000411000700000002001d15d411cc0000040f0000000501000029000000000010043f0000001501000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f0000000100200190000000490000613d000000000101043b000000000201041a0000062902200197000000000021041b000000400100043d00000007020000290000000000210435000005760010009c000005760100804100000040011002100000000002000414000005760020009c0000057602008041000000c002200210000000000112019f0000057e011001c70000800d020000390000000203000039000005ee04000041000000000500041115d415ca0000040f0000000100200190000000490000613d00000008020000290000000102200039000800000002001d000000060020006c00000db90000413d00000a7a0000013d000000000001042f000005ff01000041000000000010043f0000003101000039000000040010043f0000060001000041000015d60001043000000000430104340000000001320436000000000003004b00000e3b0000613d000000000200001900000000051200190000000006240019000000000606043300000000006504350000002002200039000000000032004b00000e340000413d000000000213001900000000000204350000001f023000390000062a022001970000000001210019000000000001042d00000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b00000e500000613d000000000400001900000000051400190000000006430019000000000606043300000000006504350000002004400039000000000024004b00000e490000413d000000000312001900000000000304350000001f022000390000062a022001970000000001120019000000000001042d000005e60010009c00000e660000213d000000630010008c00000e660000a13d00000001030003670000000401300370000000000101043b000005790010009c00000e660000213d0000002402300370000000000202043b000005790020009c00000e660000213d0000004403300370000000000303043b000000000001042d0000000001000019000015d6000104300000062d0010009c00000e6d0000813d0000002001100039000000400010043f000000000001042d000005ff01000041000000000010043f0000004101000039000000040010043f0000060001000041000015d6000104300000001f022000390000062a022001970000000001120019000000000021004b000000000200003900000001020040390000057d0010009c00000e7f0000213d000000010020019000000e7f0000c13d000000400010043f000000000001042d000005ff01000041000000000010043f0000004101000039000000040010043f0000060001000041000015d60001043000000000030100190000001f01100039000000000021004b0000000004000019000006150400404100000615052001970000061501100197000000000651013f000000000051004b00000000010000190000061501002041000006150060009c000000000104c019000000000001004b00000ecd0000613d0000000106000367000000000136034f000000000401043b0000062e0040009c00000ec70000813d0000001f014000390000062a011001970000003f011000390000062a05100197000000400100043d0000000005510019000000000015004b000000000800003900000001080040390000057d0050009c00000ec70000213d000000010080019000000ec70000c13d000000400050043f000000000541043600000020033000390000000008430019000000000028004b00000ecd0000213d000000000336034f0000062a064001980000001f0740018f000000000265001900000eb70000613d000000000803034f0000000009050019000000008a08043c0000000009a90436000000000029004b00000eb30000c13d000000000007004b00000ec40000613d000000000363034f0000000306700210000000000702043300000000076701cf000000000767022f000000000303043b0000010006600089000000000363022f00000000036301cf000000000373019f000000000032043500000000024500190000000000020435000000000001042d000005ff01000041000000000010043f0000004101000039000000040010043f0000060001000041000015d6000104300000000001000019000015d6000104300000057902200197000000000020043f000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f000000010020019000000edd0000613d000000000101043b000000000001042d0000000001000019000015d6000104300001000000000002000100000001001d000000000010043f0000000201000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f000000010020019000000f020000613d000000000101043b000000000101041a000005790010019800000f040000613d0000000101000029000000000010043f0000000401000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f000000010020019000000f020000613d000000000101043b000000000101041a0000057901100197000000000001042d0000000001000019000015d600010430000000400100043d00000064021000390000062f03000041000000000032043500000044021000390000063003000041000000000032043500000024021000390000002c030000390000000000320435000005c5020000410000000000210435000000040210003900000020030000390000000000320435000005760010009c00000576010080410000004001100210000005f7011001c7000015d600010430000000000001004b00000f1b0000613d000000000001042d000000400100043d000000440210003900000602030000410000000000320435000005c502000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000005760010009c00000576010080410000004001100210000005d4011001c7000015d600010430000000000001004b00000f2e0000613d000000000001042d000000400100043d000000640210003900000631030000410000000000320435000000440210003900000632030000410000000000320435000000240210003900000031030000390000000000320435000005c5020000410000000000210435000000040210003900000020030000390000000000320435000005760010009c00000576010080410000004001100210000005f7011001c7000015d600010430000000000301001900000000011200a9000000000003004b00000f490000613d00000000033100d9000000000023004b00000f4a0000c13d000000000001042d000005ff01000041000000000010043f0000001101000039000000040010043f0000060001000041000015d600010430000000000010043f0000000201000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f000000010020019000000f610000613d000000000101043b000000000101041a000005790110019800000f630000613d000000000001042d0000000001000019000015d600010430000000400100043d00000064021000390000061f030000410000000000320435000000440210003900000620030000410000000000320435000000240210003900000029030000390000000000320435000005c5020000410000000000210435000000040210003900000020030000390000000000320435000005760010009c00000576010080410000004001100210000005f7011001c7000015d600010430000005790110019800000f880000613d000000000010043f0000000301000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f000000010020019000000f9c0000613d000000000101043b000000000101041a000000000001042d000000400100043d00000064021000390000061203000041000000000032043500000044021000390000061103000041000000000032043500000024021000390000002a030000390000000000320435000005c5020000410000000000210435000000040210003900000020030000390000000000320435000005760010009c00000576010080410000004001100210000005f7011001c7000015d6000104300000000001000019000015d60001043000020000000000020000000c01000039000000000201041a0000000d01000039000000000101041a000000400b00043d0000002403b0003900000064040000390000000000430435000005de0300004100000000053b04360000000403b00039000000000013043500000000010004140000057902200197000000040020008c00000fb40000c13d0000000003000031000000800030008c0000008004000039000000000403401900000fe20000013d000100000005001d0000057600b0009c000005760300004100000000030b40190000004003300210000005760010009c0000057601008041000000c001100210000000000131019f00000633011001c700020000000b001d15d415cf0000040f000000020b00002900000060031002700000057603300197000000800030008c000000800400003900000000040340190000001f0640018f000000e00740019000000000057b001900000fd00000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000fcc0000c13d000000000006004b00000fdd0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000200000001035500000001002001900000102e0000613d00000001050000290000001f01400039000001e00210018f0000000001b20019000000000021004b000000000200003900000001020040390000057d0010009c000010170000213d0000000100200190000010170000c13d000000400010043f000000800030008c000010150000413d000005c90010009c000010170000213d0000008002100039000000400020043f00000000020b0433000005e000200198000005e1030000410000000003006019000005e204200197000000000343019f000000000032004b000010150000c13d000000000321043600000000040504330000057d0040009c000010150000213d00000000004304350000004003b000390000000003030433000005e300300198000005e4040000410000000004006019000005e505300197000000000454019f000000000043004b000010150000c13d0000004004100039000000000034043500000060011000390000006003b0003900000000030304330000000000310435000005e60020009c0000101d0000213d000000000002004b0000101d0000613d000005e70120012a000000000001042d0000000001000019000015d600010430000005ff01000041000000000010043f0000004101000039000000040010043f0000060001000041000015d600010430000000400100043d0000004402100039000005fd03000041000000000032043500000024021000390000000f030000390000000000320435000005c5020000410000000000210435000000040210003900000020030000390000000000320435000005760010009c00000576010080410000004001100210000005d4011001c7000015d6000104300000001f0530018f0000057806300198000000400200043d0000000004620019000010390000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000010350000c13d000000000005004b000010460000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000005760020009c00000576020080410000004002200210000000000112019f000015d6000104300008000000000002000100000004001d000500000002001d000400000001001d000600000003001d000000000030043f0000000201000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f00000001002001900000114d0000613d000000000101043b000000000101041a00000579001001980000114f0000613d0000000601000029000000000010043f0000000201000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f00000001002001900000114d0000613d000000000101043b000000000101041a0000057901100198000011590000613d0000000002000411000305790020019b000000030010006b000010b60000613d000000000010043f0000000501000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f00000001002001900000114d0000613d000000000101043b0000000302000029000000000020043f000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f00000001002001900000114d0000613d000000000101043b000000000101041a000000ff00100190000010b60000c13d0000000601000029000000000010043f0000000201000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f00000001002001900000114d0000613d000000000101043b000000000101041a0000057900100198000011720000613d0000000601000029000000000010043f0000000401000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f00000001002001900000114d0000613d000000000101043b000000000101041a0000057901100197000000030010006c000011790000c13d00000004010000290000000502000029000000060300002915d4140e0000040f0000000001000415000200000001001d00000617010000410000000000100443000000050100002900000004001004430000000001000414000005760010009c0000057601008041000000c0011002100000060a011001c7000080020200003915d415cf0000040f00000001002001900000116d0000613d000000000101043b000000000001004b000010fa0000613d000000400b00043d0000006401b00039000000800700003900000000007104350000004401b0003900000006020000290000000000210435000000040100002900000579011001970000002402b000390000000000120435000006340100004100000000001b04350000000401b00039000000030200002900000000002104350000008403b00039000000010100002900000000210104340000000000130435000000a403b00039000000000001004b000010eb0000613d000000000400001900000000053400190000000006420019000000000606043300000000006504350000002004400039000000000014004b000010e40000413d00000000023100190000000000020435000000000300041400000005020000290000057902200197000000040020008c000010fe0000c13d0000000005000415000000080550008a00000005055002100000000003000031000000200030008c00000020040000390000000004034019000011340000013d000000000100041500000002011000690000000001000002000000000001042d000500000007001d0000001f011000390000062a01100197000000a401100039000005760010009c000005760100804100000060011002100000057600b0009c000005760400004100000000040b40190000004004400210000000000141019f000005760030009c0000057603008041000000c003300210000000000113019f00060000000b001d15d415ca0000040f000000060b00002900000060031002700000057603300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000011200000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000111c0000c13d000000000006004b0000112d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00020000000103550000000005000415000000070550008a000000050550021000000001002001900000116e0000613d0000001f01400039000000600210018f0000000001b20019000000000021004b000000000200003900000001020040390000057d0010009c000011bd0000213d0000000100200190000011bd0000c13d000000400010043f000000200030008c0000114d0000413d00000000010b043300000622001001980000114d0000c13d0000000502500270000000000201001f0000000002000415000000020220006900000000020000020000062301100197000006340010009c000011ad0000c13d000000000001042d0000000001000019000015d600010430000000400100043d00000064021000390000062f03000041000000000032043500000044021000390000063603000041000000000032043500000024021000390000002c03000039000011620000013d000000400100043d00000064021000390000061f030000410000000000320435000000440210003900000620030000410000000000320435000000240210003900000029030000390000000000320435000005c5020000410000000000210435000000040210003900000020030000390000000000320435000005760010009c00000576010080410000004001100210000005f7011001c7000015d600010430000000000001042f000000000003004b000011830000c13d0000006002000039000011aa0000013d000000400100043d00000064021000390000062f03000041000000000032043500000044021000390000063003000041000011550000013d000000400100043d00000064021000390000063103000041000000000032043500000044021000390000063203000041000000000032043500000024021000390000003103000039000011620000013d0000001f0230003900000577022001970000003f022000390000063504200197000000400200043d0000000004420019000000000024004b000000000500003900000001050040390000057d0040009c000011bd0000213d0000000100500190000011bd0000c13d000000400040043f0000001f0430018f00000000063204360000057805300198000500000006001d00000000035600190000119d0000613d000000000601034f0000000507000029000000006806043c0000000007870436000000000037004b000011990000c13d000000000004004b000011aa0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b000011c30000c13d000000400200043d000600000002001d000005c5010000410000000000120435000000040120003915d415a70000040f00000006020000290000000001210049000005760010009c00000576010080410000006001100210000005760020009c00000576020080410000004002200210000000000121019f000015d600010430000005ff01000041000000000010043f0000004101000039000000040010043f0000060001000041000015d6000104300000000502000029000005760020009c00000576020080410000004002200210000005760010009c00000576010080410000006001100210000000000121019f000015d6000104300008000000000002000600000002001d000400000001001d000000400100043d000200000001001d0000062d0010009c0000136a0000813d00000002020000290000002001200039000100000001001d000000400010043f00000000000204350000000401000029000505790010019c000013090000613d0000000601000029000000000010043f0000000201000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f0000000100200190000013070000613d000000000101043b000000000101041a0000057900100198000013140000c13d0000000801000039000000000101041a000300000001001d0000000601000029000000000010043f0000000901000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f0000000100200190000013070000613d000000000101043b0000000302000029000000000021041b0000057d0020009c0000136a0000213d00000001012000390000000803000039000000000013041b000006080120009a0000000602000029000000000021041b0000000501000029000000000010043f0000000301000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f0000000100200190000013070000613d000000000101043b000000000101041a000300000001001d0000000501000029000000000010043f0000000601000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f0000000100200190000013070000613d000000000101043b0000000302000029000000000020043f000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f0000000100200190000013070000613d000000000101043b0000000602000029000000000021041b000000000020043f0000000701000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f0000000100200190000013070000613d000000000101043b0000000302000029000000000021041b0000000501000029000000000010043f0000000301000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f0000000100200190000013070000613d000000000101043b000000000201041a000000010220003a000013250000613d000000000021041b0000000601000029000000000010043f0000000201000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f0000000100200190000013070000613d000000000101043b000000000201041a0000057f022001970000000506000029000000000262019f000000000021041b0000000001000414000005760010009c0000057601008041000000c00110021000000580011001c70000800d02000039000000040300003900000638040000410000000005000019000000060700002915d415ca0000040f0000000100200190000013070000613d0000000001000415000300000001001d00000617010000410000000000100443000000040100002900000004001004430000000001000414000005760010009c0000057601008041000000c0011002100000060a011001c7000080020200003915d415cf0000040f00000001002001900000132b0000613d000000000101043b000000000001004b00000005020000290000000107000029000012b40000613d000000400b00043d0000006401b00039000000800800003900000000008104350000004401b0003900000006030000290000000000310435000006340100004100000000001b0435000000000100041100000579011001970000000403b0003900000000001304350000002401b000390000000000010435000000020100002900000000010104330000008403b000390000000000130435000000a406b00039000000000001004b000012a70000613d000000000300001900000000046300190000000005730019000000000505043300000000005404350000002003300039000000000013004b000012a00000413d000000000361001900000000000304350000000004000414000000040020008c000012b80000c13d0000000005000415000000080550008a00000005055002100000000003000031000000200030008c00000020040000390000000004034019000012ee0000013d000000000100041500000003011000690000000001000002000000000001042d000400000008001d0000001f011000390000062a01100197000000a401100039000005760010009c000005760100804100000060011002100000057600b0009c000005760300004100000000030b40190000004003300210000000000131019f000005760040009c0000057604008041000000c003400210000000000113019f00060000000b001d15d415ca0000040f000000060b00002900000060031002700000057603300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000012da0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000012d60000c13d000000000006004b000012e70000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00020000000103550000000005000415000000070550008a000000050550021000000001002001900000132c0000613d0000001f01400039000000600210018f0000000001b20019000000000021004b000000000200003900000001020040390000057d0010009c0000136a0000213d00000001002001900000136a0000c13d000000400010043f000000200030008c000013070000413d00000000010b04330000062200100198000013070000c13d0000000502500270000000000201001f0000000002000415000000030220006900000000020000020000062301100197000006340010009c0000135a0000c13d000000000001042d0000000001000019000015d600010430000000400100043d000000440210003900000639030000410000000000320435000005c502000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000131f0000013d000000400100043d00000044021000390000063703000041000000000032043500000024021000390000001c030000390000000000320435000005c5020000410000000000210435000000040210003900000020030000390000000000320435000005760010009c00000576010080410000004001100210000005d4011001c7000015d600010430000005ff01000041000000000010043f0000001101000039000000040010043f0000060001000041000015d600010430000000000001042f000000000003004b000013300000c13d0000006002000039000013570000013d0000001f0230003900000577022001970000003f022000390000063504200197000000400200043d0000000004420019000000000024004b000000000500003900000001050040390000057d0040009c0000136a0000213d00000001005001900000136a0000c13d000000400040043f0000001f0430018f00000000063204360000057805300198000400000006001d00000000035600190000134a0000613d000000000601034f0000000407000029000000006806043c0000000007870436000000000037004b000013460000c13d000000000004004b000013570000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b000013700000c13d000000400200043d000600000002001d000005c5010000410000000000120435000000040120003915d415a70000040f00000006020000290000000001210049000005760010009c00000576010080410000006001100210000005760020009c00000576020080410000004002200210000000000121019f000015d600010430000005ff01000041000000000010043f0000004101000039000000040010043f0000060001000041000015d6000104300000000402000029000005760020009c00000576020080410000004002200210000005760010009c00000576010080410000006001100210000000000121019f000015d6000104300002000000000002000100000001001d000200000002001d000000000020043f0000000201000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f0000000100200190000013e70000613d000000000101043b000000000101041a0000057900100198000013e90000613d0000000201000029000000000010043f0000000201000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f0000000100200190000013e70000613d000000000101043b000000000101041a0000057901100198000013f30000613d00000001020000290000057902200197000000000012004b000013a30000c13d0000000101000039000000000001042d000100000002001d000000000010043f0000000501000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f0000000100200190000013e70000613d000000000101043b0000000102000029000000000020043f000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f0000000100200190000013e70000613d000000000101043b000000000101041a000000ff01100190000013c20000613d000000000001042d0000000201000029000000000010043f0000000201000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f0000000100200190000013e70000613d000000000101043b000000000101041a0000057900100198000014070000613d0000000201000029000000000010043f0000000401000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f0000000100200190000013e70000613d000000000101043b000000000101041a0000057901100197000000010010006c00000000010000390000000101006039000000000001042d0000000001000019000015d600010430000000400100043d00000064021000390000062f03000041000000000032043500000044021000390000063603000041000000000032043500000024021000390000002c03000039000013fc0000013d000000400100043d00000064021000390000061f030000410000000000320435000000440210003900000620030000410000000000320435000000240210003900000029030000390000000000320435000005c5020000410000000000210435000000040210003900000020030000390000000000320435000005760010009c00000576010080410000004001100210000005f7011001c7000015d600010430000000400100043d00000064021000390000062f03000041000000000032043500000044021000390000063003000041000013ef0000013d0006000000000002000300000002001d000400000001001d000600000003001d000000000030043f0000000201000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f0000000100200190000015770000613d000000000101043b000000000101041a000505790010019c0000157f0000613d00000004010000290000057901100197000000050010006b000015890000c13d00000003010000290000057902100198000015930000613d000400000002001d000000050020006b000015020000613d0000000501000029000000000010043f0000000301000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f0000000100200190000015770000613d000000000101043b000000000101041a000300000001001d000000000001004b000015790000613d0000000601000029000000000010043f0000000701000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f0000000100200190000015770000613d00000003020000290003000100200092000000000101043b000000000101041a000000030010006c0000149b0000613d000200000001001d0000000501000029000000000010043f0000000601000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f0000000100200190000015770000613d000000000101043b0000000302000029000000000020043f000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f0000000100200190000015770000613d000000000101043b000000000101041a000100000001001d0000000501000029000000000010043f0000000601000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f0000000100200190000015770000613d000000000101043b0000000202000029000000000020043f000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f0000000100200190000015770000613d000000000101043b0000000102000029000000000021041b000000000020043f0000000701000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f0000000100200190000015770000613d000000000101043b0000000202000029000000000021041b0000000601000029000000000010043f0000000701000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f0000000100200190000015770000613d000000000101043b000000000001041b0000000501000029000000000010043f0000000601000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f0000000100200190000015770000613d000000000101043b0000000302000029000000000020043f000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f0000000100200190000015770000613d000000000101043b000000000001041b0000000401000029000000000010043f0000000301000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f0000000100200190000015770000613d000000000101043b000000000101041a000300000001001d0000000401000029000000000010043f0000000601000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f0000000100200190000015770000613d000000000101043b0000000302000029000000000020043f000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f0000000100200190000015770000613d000000000101043b0000000602000029000000000021041b000000000020043f0000000701000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f0000000100200190000015770000613d000000000101043b0000000302000029000000000021041b0000000601000029000000000010043f0000000401000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f0000000100200190000015770000613d000000000101043b000000000201041a0000057f02200197000000000021041b0000000601000029000000000010043f0000000201000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f0000000100200190000015770000613d000000000101043b000000000101041a00000579051001980000157f0000613d0000000001000414000005760010009c0000057601008041000000c00110021000000580011001c70000800d0200003900000004030000390000061c040000410000000006000019000000060700002915d415ca0000040f0000000100200190000015770000613d0000000501000029000000000010043f0000000301000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f0000000100200190000015770000613d000000000101043b000000000201041a000000000002004b000015790000613d000000010220008a000000000021041b0000000401000029000000000010043f0000000301000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f0000000100200190000015770000613d000000000101043b000000000201041a000000010220003a000015790000613d000000000021041b0000000601000029000000000010043f0000000201000039000000200010043f0000000001000414000005760010009c0000057601008041000000c001100210000005d1011001c7000080100200003915d415cf0000040f0000000100200190000015770000613d000000000101043b000000000201041a0000057f022001970000000406000029000000000262019f000000000021041b0000000001000414000005760010009c0000057601008041000000c00110021000000580011001c70000800d02000039000000040300003900000638040000410000000505000029000000060700002915d415ca0000040f0000000100200190000015770000613d000000000001042d0000000001000019000015d600010430000005ff01000041000000000010043f0000001101000039000000040010043f0000060001000041000015d600010430000000400100043d00000064021000390000061f030000410000000000320435000000440210003900000620030000410000000000320435000000240210003900000029030000390000159c0000013d000000400100043d00000064021000390000063a03000041000000000032043500000044021000390000063b030000410000000000320435000000240210003900000025030000390000159c0000013d000000400100043d00000064021000390000063c03000041000000000032043500000044021000390000063d030000410000000000320435000000240210003900000024030000390000000000320435000005c5020000410000000000210435000000040210003900000020030000390000000000320435000005760010009c00000576010080410000004001100210000005f7011001c7000015d60001043000000060021000390000063e03000041000000000032043500000040021000390000063f030000410000000000320435000000200210003900000032030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d000000000001042f000005760010009c00000576010080410000004001100210000005760020009c00000576020080410000006002200210000000000112019f0000000002000414000005760020009c0000057602008041000000c002200210000000000112019f00000580011001c7000080100200003915d415cf0000040f0000000100200190000015c80000613d000000000101043b000000000001042d0000000001000019000015d600010430000015cd002104210000000102000039000000000001042d0000000002000019000000000001042d000015d2002104230000000102000039000000000001042d0000000002000019000000000001042d000015d400000432000015d50001042e000015d600010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffbf436861696e626f726e0000000000000000000000000000000000000000000000434841494e424f524e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0200000000000000000000000000000000000020000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000003e80000000000000000000000000000000000000000000000020000000000000000000000000000004000000100000000000000000000000000000000000000000000000000000000000000000000000000715018a500000000000000000000000000000000000000000000000000000000a22cb46400000000000000000000000000000000000000000000000000000000e222c7f800000000000000000000000000000000000000000000000000000000f2c4ce1d00000000000000000000000000000000000000000000000000000000f2c4ce1e00000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000ff4171b400000000000000000000000000000000000000000000000000000000e222c7f900000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000ed88ed9f00000000000000000000000000000000000000000000000000000000b9c3a81700000000000000000000000000000000000000000000000000000000b9c3a81800000000000000000000000000000000000000000000000000000000c21b471b00000000000000000000000000000000000000000000000000000000c87b56dd00000000000000000000000000000000000000000000000000000000a22cb46500000000000000000000000000000000000000000000000000000000a475b5dd00000000000000000000000000000000000000000000000000000000b88d4fde000000000000000000000000000000000000000000000000000000009201983400000000000000000000000000000000000000000000000000000000a0010c1700000000000000000000000000000000000000000000000000000000a0010c1800000000000000000000000000000000000000000000000000000000a0712d6800000000000000000000000000000000000000000000000000000000a0a8045e00000000000000000000000000000000000000000000000000000000920198350000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000009b19251a00000000000000000000000000000000000000000000000000000000868ff4a100000000000000000000000000000000000000000000000000000000868ff4a2000000000000000000000000000000000000000000000000000000008da5cb5b000000000000000000000000000000000000000000000000000000008ecad72100000000000000000000000000000000000000000000000000000000715018a6000000000000000000000000000000000000000000000000000000007e0c7fc5000000000000000000000000000000000000000000000000000000007f6497830000000000000000000000000000000000000000000000000000000032cb6b0b0000000000000000000000000000000000000000000000000000000054214f680000000000000000000000000000000000000000000000000000000060d938db0000000000000000000000000000000000000000000000000000000060d938dc000000000000000000000000000000000000000000000000000000006352211e0000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000054214f690000000000000000000000000000000000000000000000000000000055f804b3000000000000000000000000000000000000000000000000000000005c975abb000000000000000000000000000000000000000000000000000000003ccfd60a000000000000000000000000000000000000000000000000000000003ccfd60b0000000000000000000000000000000000000000000000000000000042842e0e000000000000000000000000000000000000000000000000000000004f6ccce70000000000000000000000000000000000000000000000000000000032cb6b0c00000000000000000000000000000000000000000000000000000000343937430000000000000000000000000000000000000000000000000000000036566f060000000000000000000000000000000000000000000000000000000018160ddc000000000000000000000000000000000000000000000000000000002592c0be000000000000000000000000000000000000000000000000000000002592c0bf000000000000000000000000000000000000000000000000000000002a55205a000000000000000000000000000000000000000000000000000000002f745c590000000000000000000000000000000000000000000000000000000018160ddd000000000000000000000000000000000000000000000000000000001e84c4130000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000095ea7b200000000000000000000000000000000000000000000000000000000095ea7b3000000000000000000000000000000000000000000000000000000000f247f4300000000000000000000000000000000000000000000000000000000158756b90000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000081812fc000000000000000000000000000000000000002000000080000000000000000008c379a0000000000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084000000800000000000000000000000000000000000000000000000000000000000000000ffffffffffffff7fce133de58ba1c6975fb16a8f1bbda43e7057fe6397fd7e694ab92e9963dff39831ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c68ce133de58ba1c6975fb16a8f1bbda43e7057fe6397fd7e694ab92e9963dff39700000000000000000000000000000000000000200000000000000000000000005075626c696300000000000000000000000000000000000000000000000000000200000000000000000000000000000000000080000000800000000000000000ac5cf8d730831538f89c27a564d8d3f199ceb1828f4cde5e480837d98bb79d8502000000000000000000000000000000000000400000000000000000000000001b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae6724d657461646174612068617368206e6f7420736574000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff02000000000000000000000000000000000000200000008000000000000000008a0eef20ed65c9cc65bee4dba772db9344af8922e098f35e280b99494f859163526f79616c74792070657263656e7461676520746f6f20686967680000000000000000000000000000000000000000000000006400000080000000000000000034b47c1a76226d51a262cecc08c72648e1c797747686ffb250ec27c279e1c42217307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c314552433732313a20617070726f766520746f2063616c6c6572000000000000000000000000000000000000000000000000000000000000000000000000ff0000a4ae35e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000440000008000000000000000000000000000000000000000000000000000000000000000008000000000000000ffffffffffffffffffffffffffffffffffffffffffffffff80000000000000000000000000000000000000000000000000000000000000007fffffffffffffff0000000000000000000000000000000000000000000000000000000080000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff80000000000000000000000000000000000000000000000000000000000000007fffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000005f5e100000000000000000000000000000000000000000000000002b5e3af16b188000000000000000000000000000000000000000000001027e72f1f1281308df5e0ff796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d9553913202000002000000000000000000000000000000040000000000000000000000009921700258681c2163fa1703a84c40f13d756cf2bf4f2d7a26c3f9afe3095f709921700258681c2163fa1703a84c40f13d756cf2bf4f2d7a26c3f9afe3095f714cc0a9c4a99ddc700de1af2c9f916a7cbfdb71f14801ccff94061ad1ef8a8040496e73756666696369656e74207061796d656e740000000000000000000000005075626c69632073616c65206973206e6f742061637469766500000000000000546f6b656e20646f6573206e6f74206578697374000000000000000000000000b10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf60000000000000000000000000000000000000000000000022b1c8c1227a0000000000000000000000000000000000000000000000cecb8f27f4200f3a5f5e0ff6820455448000000000000000000000000000000000000000000000000000000496e73756666696369656e74207061796d656e743a2053656e6420456e6f75670000000000000000000000000000000000000084000000000000000000000000576f756c6420657863656564206d617820737570706c7900000000000000000045786365656473206d6178206d696e7420706572207472616e73616374696f6e4d757374206d696e74206174206c65617374206f6e6520746f6b656e000000004e6f742077686974656c6973746564000000000000000000000000000000000050726573616c65206973206e6f742061637469766500000000000000000000005072696365206e6f742076616c69640000000000000000000000000000000000436f6e74726163742069732070617573656400000000000000000000000000004e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000005265656e7472616e637947756172643a207265656e7472616e742063616c6c004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572e497b8238be5e4f32f72d877ba0627e627848cb8a6504aa01d21a347d565198ee497b8238be5e4f32f72d877ba0627e627848cb8a6504aa01d21a347d565198d5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf6455243373231456e756d657261626c653a20676c6f62616c20696e646578206f7574206f6620626f756e647300000000000000000000000000000000000000000c085601c9b05546c4de925af5cdebeab0dd5f5d4bea4dc57b37e961749c911d9cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f3902000002000000000000000000000000000000240000000000000000000000005769746864726177206661696c65640000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff000000000000000000000000000000000000000000000000000000000001000050726573616c650000000000000000000000000000000000000000000000000074206f6620626f756e6473000000000000000000000000000000000000000000455243373231456e756d657261626c653a206f776e657220696e646578206f754552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573730000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08000000000000000000000000000000000000000000000000000000000000000d47eed45000000000000000000000000000000000000000000000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b83ef9e5e280000000000000000000000000000000000000000000000000000000045786365656473206d6178206d696e7420666f72207465616d20737570706c796e6572206e6f7220617070726f76656420666f7220616c6c00000000000000004552433732313a20617070726f76652063616c6c6572206973206e6f74206f778c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92572000000000000000000000000000000000000000000000000000000000000004552433732313a20617070726f76616c20746f2063757272656e74206f776e65656e7420746f6b656e00000000000000000000000000000000000000000000004552433732313a206f776e657220717565727920666f72206e6f6e6578697374290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e56300000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000780e9d62ffffffffffffffffffffffffffffffffffffffffffffffffffffffff80ac58cd00000000000000000000000000000000000000000000000000000000780e9d630000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000005b5e139f00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffe00000000000000000000000000000000000000000000000010000000000000000697374656e7420746f6b656e00000000000000000000000000000000000000004552433732313a20617070726f76656420717565727920666f72206e6f6e6578776e6572206e6f7220617070726f7665640000000000000000000000000000004552433732313a207472616e736665722063616c6c6572206973206e6f74206f0000000000000000000000000000000000000044000000000000000000000000150b7a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003ffffffe04552433732313a206f70657261746f7220717565727920666f72206e6f6e65784552433732313a20746f6b656e20616c7265616479206d696e74656400000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef4552433732313a206d696e7420746f20746865207a65726f20616464726573736f776e65720000000000000000000000000000000000000000000000000000004552433732313a207472616e736665722066726f6d20696e636f72726563742072657373000000000000000000000000000000000000000000000000000000004552433732313a207472616e7366657220746f20746865207a65726f2061646463656976657220696d706c656d656e74657200000000000000000000000000004552433732313a207472616e7366657220746f206e6f6e204552433732315265229f0584b295fdbd9af421047c3a347a9d89a8e561f895dcb741c526cafbb710

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

00000000000000000000000047f2a9bdad52d65b66287253cf5ca0d2b763b486ff61491a931112ddf1bd8147cd1b641375f79f5825126d665480874634fd0ace

-----Decoded View---------------
Arg [0] : _pythAddress (address): 0x47F2A9BDAd52d65b66287253cf5ca0D2b763b486
Arg [1] : _ethUsdPriceFeedId (bytes32): 0xff61491a931112ddf1bd8147cd1b641375f79f5825126d665480874634fd0ace

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000047f2a9bdad52d65b66287253cf5ca0d2b763b486
Arg [1] : ff61491a931112ddf1bd8147cd1b641375f79f5825126d665480874634fd0ace


[ 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.