Abstract Testnet

Token

Penguin Onchain (Pengo)
ERC-721

Overview

Max Total Supply

10 Pengo

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:
PenguinOnchain

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 9 : PenguinOnchain.sol
// SPDX-License-Identifier: MIT
/*
 * ** author  : Onchain Pengo Lab
 * ** package : @contracts/ERC721/PengoFactory.sol
 */
pragma solidity ^0.8.0;

import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "../interfaces/IPengoFactory.sol";
import "../interfaces/IPenguinOnchain.sol";

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

    IPengoFactory public factory;
    uint256 public constant MAX_SUPPLY = 20000;
    uint256 public constant MINT_PRICE = 0.01 ether;
    uint256 public constant MAX_MINT_PER_WALLET = 10;
    uint256 public constant ROYALTY_PERCENT = 5;

    address public BENEFICARY_ADDRESS;
    address public ROYALTY_ADDRESS;

    mapping(address => uint256) public mintedPerWallet;

    mapping(uint256 => Accessory[]) public accessories;
    mapping(uint256 => Traits) public nftTraits;

    event AccessoryAdded(uint256 indexed tokenId, string accessoryType, uint256 accessoryId);
    event AccessoryListed(uint256 indexed accessoryId, uint256 price);
    event AccessoryPurchased(uint256 indexed accessoryId, address buyer);

    constructor() ERC721A("Penguin Onchain", "Pengo") {
        BENEFICARY_ADDRESS = owner();
        ROYALTY_ADDRESS = owner();
    }

    function mintPengo(uint256 _mintAmount) public payable nonReentrant returns (uint256[] memory) {
        require(totalSupply() < MAX_SUPPLY, "Sold out");
        require(msg.value >= _mintAmount * MINT_PRICE, "Insufficient payment for minting");
        require(mintedPerWallet[msg.sender] < MAX_MINT_PER_WALLET, "Max mint per wallet reached");

        _safeMint(msg.sender, _mintAmount);

        mintedPerWallet[msg.sender]++;
        uint256[] memory newTokenIds = new uint256[](_mintAmount);
        for (uint256 i = 0; i < _mintAmount; i++) {
            newTokenIds[i] = totalSupply() + i;
            updateTraits(newTokenIds[i]);
        }
        return newTokenIds;
    }

    function addAccessory(
        uint256 tokenId,
        string memory accessoryType,
        string memory svgData
    ) public {
        require(ownerOf(tokenId) == msg.sender, "Not the owner of this NFT");
        for (uint256 i = 0; i < accessories[tokenId].length; i++) {
            require(keccak256(bytes(accessories[tokenId][i].accessoryType)) != keccak256(bytes(accessoryType)), "Accessory slot already filled");
        }

        accessories[tokenId].push(Accessory({
            accessoryType: accessoryType,
            svgData: svgData,
            sellingPrice: 0,
            lastPrice: 0,
            owner: msg.sender,
            forSale: false
        }));

        updateTraits(tokenId);
        emit AccessoryAdded(tokenId, accessoryType, accessories[tokenId].length - 1);
    }

    function listAccessoryForSale(
        uint256 tokenId,
        uint256 accessoryId,
        uint256 price
    ) public {
        Accessory storage accessory = accessories[tokenId][accessoryId];
        require(accessory.owner == msg.sender, "Not the owner of this accessory");

        accessory.sellingPrice = price;
        accessory.forSale = true;

        emit AccessoryListed(accessoryId, price);
    }

    function purchaseAccessory(uint256 fromTokenId, uint256 toTokenId, uint256 accessoryId) public payable nonReentrant {
        Accessory storage accessory = accessories[fromTokenId][accessoryId];
        require(accessory.forSale, "Accessory is not for sale");
        require(msg.value >= accessory.sellingPrice, "Insufficient payment");

        for (uint256 i = 0; i < accessories[toTokenId].length; i++) {
            require(keccak256(bytes(accessories[toTokenId][i].accessoryType)) != keccak256(bytes(accessory.accessoryType)), "Accessory slot already filled");
        }

        uint256 royalty = (msg.value * ROYALTY_PERCENT) / 100;
        uint256 sellerAmount = msg.value - royalty;

        address previousOwner = accessory.owner;

        accessories[toTokenId].push(Accessory({
            accessoryType: accessory.accessoryType,
            svgData: accessory.svgData,
            sellingPrice: 0,
            lastPrice: msg.value,
            owner: msg.sender,
            forSale: false
        }));
        updateTraits(toTokenId);

        delete accessories[fromTokenId][accessoryId];
        updateTraits(fromTokenId);

        (bool successSeller, ) = payable(previousOwner).call{value: sellerAmount}("");
        require(successSeller, "Transfer to seller failed");

        (bool successRoyalty, ) = payable(owner()).call{value: royalty}("");
        require(successRoyalty, "Transfer to royalty failed");

        emit AccessoryPurchased(accessoryId, msg.sender);
    }

    function updateTraits(uint256 tokenId) internal {
        uint256 totalValue = 0;
        for (uint256 i = 0; i < accessories[tokenId].length; i++) {
            totalValue += accessories[tokenId][i].lastPrice;
        }

        if (totalValue < 1 ether) {
            nftTraits[tokenId] = Traits({
                category: "lil pengo",
                networth: string.concat(totalValue.toString(), " Eth")
            });
        } else if (totalValue < 2 ether) {
            nftTraits[tokenId] = Traits({
                category: "pengo army",
                networth: string.concat(totalValue.toString(), " Eth")
            });
        } else if (totalValue < 5 ether){
            nftTraits[tokenId] = Traits({
                category: "pengo millionaire",
                networth: string.concat(totalValue.toString(), " Eth")
            });
        } else if (totalValue < 10 ether){
            nftTraits[tokenId] = Traits({
                category: "pengo billionaire",
                networth: string.concat(totalValue.toString(), " Eth")
            });
        } else {
            nftTraits[tokenId] = Traits({
                category: "funcking rich pengo",
                networth: string.concat(totalValue.toString(), " Eth")
            });
        }
    }

    function getNFTDetails(uint256 tokenId) public view returns (Accessory[] memory, Traits memory) {
        return (accessories[tokenId], nftTraits[tokenId]);
    }

    function tokenURI(
        uint256 tokenId
    ) public view override returns (string memory) {
        require(_exists(tokenId), "Token ID does not exist.");
        return factory.tokenURI(tokenId);
    }

    function setRoyaltyAddress(address _royaltyAddress) public onlyOwner {
        ROYALTY_ADDRESS = _royaltyAddress;
    }

    function setBeneficiaryAddress(address _beneficiaryAddress) public onlyOwner {
        BENEFICARY_ADDRESS = _beneficiaryAddress;
    }
    
    function setFactory(IPengoFactory _factoryAddress) external onlyOwner {
        factory = _factoryAddress;
    }

    function withdraw() public onlyOwner {
        (bool success, ) = payable(BENEFICARY_ADDRESS).call{value: address(this).balance}("");
        require(success, "Withdraw failed");
    }
}

File 2 of 9 : IPengoFactory.sol
// SPDX-License-Identifier: MIT

/*
 * ** author  : Onchain Pengo Lab
 * ** package : @contracts/interfaces/IPengoFactory.sol
 */

pragma solidity ^0.8.17;

interface IPengoFactory {
    function tokenURI(
        uint256 tokenId
    ) external view returns (string memory);
}

File 3 of 9 : IPenguinOnchain.sol
// SPDX-License-Identifier: MIT

/*
 * ** author  : Onchain Pengo Lab
 * ** package : @contracts/interfaces/IPengoFactory.sol
 */

pragma solidity ^0.8.17;

interface IPenguinOnchain {
    struct Accessory {
        string accessoryType;
        string svgData;
        uint256 sellingPrice;
        uint256 lastPrice;
        address owner;
        bool forSale;
    }

    struct Traits {
        string category;
        string networth;
    }

    function getNFTDetails(uint256 tokenId) external view returns (Accessory[] memory, Traits memory);
}

File 4 of 9 : 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 5 of 9 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 0x80 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

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

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

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

File 6 of 9 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

File 7 of 9 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

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

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

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

File 8 of 9 : 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 9 of 9 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"accessoryType","type":"string"},{"indexed":false,"internalType":"uint256","name":"accessoryId","type":"uint256"}],"name":"AccessoryAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"accessoryId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"}],"name":"AccessoryListed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"accessoryId","type":"uint256"},{"indexed":false,"internalType":"address","name":"buyer","type":"address"}],"name":"AccessoryPurchased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BENEFICARY_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PER_WALLET","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":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROYALTY_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROYALTY_PERCENT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"accessories","outputs":[{"internalType":"string","name":"accessoryType","type":"string"},{"internalType":"string","name":"svgData","type":"string"},{"internalType":"uint256","name":"sellingPrice","type":"uint256"},{"internalType":"uint256","name":"lastPrice","type":"uint256"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"bool","name":"forSale","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"accessoryType","type":"string"},{"internalType":"string","name":"svgData","type":"string"}],"name":"addAccessory","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":"factory","outputs":[{"internalType":"contract IPengoFactory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getNFTDetails","outputs":[{"components":[{"internalType":"string","name":"accessoryType","type":"string"},{"internalType":"string","name":"svgData","type":"string"},{"internalType":"uint256","name":"sellingPrice","type":"uint256"},{"internalType":"uint256","name":"lastPrice","type":"uint256"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"bool","name":"forSale","type":"bool"}],"internalType":"struct IPenguinOnchain.Accessory[]","name":"","type":"tuple[]"},{"components":[{"internalType":"string","name":"category","type":"string"},{"internalType":"string","name":"networth","type":"string"}],"internalType":"struct IPenguinOnchain.Traits","name":"","type":"tuple"}],"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"accessoryId","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"}],"name":"listAccessoryForSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintPengo","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"nftTraits","outputs":[{"internalType":"string","name":"category","type":"string"},{"internalType":"string","name":"networth","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"internalType":"uint256","name":"toTokenId","type":"uint256"},{"internalType":"uint256","name":"accessoryId","type":"uint256"}],"name":"purchaseAccessory","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_beneficiaryAddress","type":"address"}],"name":"setBeneficiaryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IPengoFactory","name":"_factoryAddress","type":"address"}],"name":"setFactory","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_royaltyAddress","type":"address"}],"name":"setRoyaltyAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

9c4d535b0000000000000000000000000000000000000000000000000000000000000000010007af85088f2a4a4ee06eb919465097e71d5e79cde6e5b317bd43b946895200000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x000400000000000200130000000000020000006004100270000007100340019700030000003103550002000000010355000007100040019d0000000100200190000000250000c13d000000800a0000390000004000a0043f000000040030008c00000e6c0000413d000000000201043b000000e0022002700000071b0020009c000000420000213d000007350020009c0000007b0000213d000007420020009c000001030000a13d000007430020009c000003370000a13d000007440020009c000005bb0000613d000007450020009c0000053a0000613d000007460020009c00000e6c0000c13d0000000001000416000000000001004b00000e6c0000c13d00000000010300191c3b11fb0000040f1c3b12550000040f000000000100001900001c3c0001042e0000000001000416000000000001004b00000e6c0000c13d0000000f01000039000000800010043f0000071101000041000000a00010043f0000010001000039000000400010043f0000000501000039000000c00010043f0000071201000041000000e00010043f0000000203000039000000000103041a000000010210019000000001041002700000007f0440618f0000001f0040008c00000000010000390000000101002039000000000012004b000000550000613d0000078801000041000000000010043f0000002201000039000000040010043f000007590100004100001c3d000104300000071c0020009c0000009e0000213d000007290020009c000001160000a13d0000072a0020009c000003400000a13d0000072b0020009c000005c50000613d0000072c0020009c000005830000613d0000072d0020009c00000e6c0000c13d0000000001000416000000000001004b00000e6c0000c13d0000000a01000039000000800010043f000007530100004100001c3c0001042e000000200040008c0000006e0000413d001100000004001d000000000030043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d000000000101043b00000011020000290000001f0220003900000005022002700000000002210019000000000021004b00000002030000390000006e0000813d000000000001041b0000000101100039000000000021004b0000006a0000413d000000a00100043d00000714011001970000001e011001bf000000000013041b000000c00500043d000007150050009c000000c50000413d0000078801000041000000000010043f0000004101000039000000040010043f000007590100004100001c3d00010430000007360020009c000002590000a13d000007370020009c0000035e0000a13d000007380020009c000005de0000613d000007390020009c0000059a0000613d0000073a0020009c00000e6c0000c13d0000000001000416000000000001004b00000e6c0000c13d0000000801000039000000000201041a00000717032001970000000005000411000000000053004b000006090000c13d0000071602200197000000000021041b0000000001000414000007100010009c0000071001008041000000c00110021000000718011001c70000800d020000390000000303000039000007190400004100000000060000191c3b1c310000040f000000010020019000000e6c0000613d000000000100001900001c3c0001042e0000071d0020009c000002a50000a13d0000071e0020009c0000036f0000a13d0000071f0020009c000005ee0000613d000007200020009c000005a90000613d000007210020009c00000e6c0000c13d000000240030008c00000e6c0000413d0000000002000416000000000002004b00000e6c0000c13d0000000401100370000000000601043b000007170060009c00000e6c0000213d0000000801000039000000000201041a00000717032001970000000005000411000000000053004b000006090000c13d000000000006004b000006d00000c13d0000074e01000041000000800010043f0000002001000039000000840010043f0000002601000039000000a40010043f0000074f01000041000000c40010043f0000075001000041000000e40010043f000007510100004100001c3d000104300000000303000039000000000103041a000000010010019000000001041002700000007f0440618f0000001f0040008c00000000020000390000000102002039000000000121013f00000001001001900000003c0000c13d000000200040008c000000f00000413d001000000004001d001100000005001d000000000030043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d00000011050000290000001f025000390000000502200270000000200050008c0000000002004019000000000301043b00000010010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000000303000039000000f00000813d000000000002041b0000000102200039000000000012004b000000ec0000413d0000001f0050008c000003a60000a13d001100000005001d000000000030043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d00000011060000290000079902600198000000000101043b000006120000c13d000000e003000039000006200000013d000007490020009c000002b20000213d0000074c0020009c000003b10000613d0000074d0020009c00000e6c0000c13d000000240030008c00000e6c0000413d0000000002000416000000000002004b00000e6c0000c13d0000000401100370000000000101043b001100000001001d000007170010009c00000e6c0000213d1c3b15280000040f0000000c01000039000005b50000013d000007300020009c000002da0000213d000007330020009c000003c50000613d000007340020009c00000e6c0000c13d000000640030008c00000e6c0000413d0000000002000416000000000002004b00000e6c0000c13d0000000402100370000000000202043b001000000002001d0000002402100370000000000402043b0000075b0040009c00000e6c0000213d0000002302400039000000000032004b00000e6c0000813d0000000405400039000000000251034f000000000202043b0000075b0020009c000000750000213d0000001f0620003900000799066001970000003f066000390000079906600197000007840060009c000000750000213d00000024044000390000008006600039000000400060043f000000800020043f0000000004420019000000000034004b00000e6c0000213d0000002004500039000000000541034f00000799062001980000001f0720018f000000a004600039000001490000613d000000a008000039000000000905034f000000009a09043c0000000008a80436000000000048004b000001450000c13d000000000007004b000001560000613d000000000565034f0000000306700210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000a00220003900000000000204350000004402100370000000000402043b0000075b0040009c00000e6c0000213d0000002302400039000000000032004b00000e6c0000813d0000000405400039000000000251034f000000000202043b0000075b0020009c000000750000213d0000001f0620003900000799066001970000003f066000390000079906600197000000400700043d0000000006670019000c00000007001d000000000076004b000000000700003900000001070040390000075b0060009c000000750000213d0000000100700190000000750000c13d0000002407400039000000400060043f0000000c0400002900000000042404360000000006720019000000000036004b00000e6c0000213d0000002003500039000000000331034f00000799052001980000001f0620018f0000000001540019000001850000613d000000000703034f0000000008040019000000007907043c0000000008980436000000000018004b000001810000c13d000000000006004b000001920000613d000000000353034f0000000305600210000000000601043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f000000000031043500000000012400190000000000010435000000000100041a000000100010006c000007270000a13d0000001001000029000000000010043f0000000401000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d000000000101043b000000000101041a0000075500100198000007270000c13d000000000001004b000001be0000c13d001100100000002d0000001101000029000000010110008a001100000001001d000000000010043f0000000401000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d000000000101043b000000000101041a000000000001004b000001ab0000613d00000717011001970000000002000411000000000021004b00000bc00000c13d001100000000001d0000001001000029000000000010043f0000000e01000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d000000000101043b000000000101041a0000001002000029000000000020043f0000000e02000039000000200020043f000000110010006b00000cce0000813d0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d000000000101043b000000000201041a000000110020006c000010650000a13d000000000010043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d000000110200002900000005022000c9000000000101043b0000000001210019000000000201041a000000010320019000000001062002700000007f0660618f0000001f0060008c00000000040000390000000104002039000000000442013f00000001004001900000003c0000c13d000000400400043d0000000005640436000000000003004b0000021d0000613d000d00000006001d000e00000005001d000f00000004001d000000000010043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d0000000d06000029000000000006004b000002230000613d000000000201043b00000000010000190000000e050000290000000003510019000000000402041a000000000043043500000001022000390000002001100039000000000061004b000002140000413d0000000f04000029000002260000013d0000079a012001970000000000150435000000000006004b00000020010000390000000001006039000002260000013d00000000010000190000000f040000290000000e050000290000003f0110003900000799021001970000000001420019000000000021004b000000000200003900000001020040390000075b0010009c000000750000213d0000000100200190000000750000c13d000000400010043f000007100050009c000007100500804100000040015002100000000002040433000007100020009c00000710020080410000006002200210000000000112019f0000000002000414000007100020009c0000071002008041000000c002200210000000000112019f00000718011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d000000000101043b000f00000001001d000000800100043d000007100010009c000007100100804100000060011002100000000002000414000007100020009c0000071002008041000000c002200210000000000121019f00000789011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d0000001102000029001100010020003d000000000101043b0000000f0010006b000001c30000c13d000009d40000013d0000073d0020009c000002e30000213d000007400020009c000003ca0000613d000007410020009c00000e6c0000c13d000000640030008c00000e6c0000413d0000000002000416000000000002004b00000e6c0000c13d0000004402100370000000000202043b001000000002001d0000002402100370000000000202043b001100000002001d0000000401100370000000000101043b000000000010043f0000000e01000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d000000000101043b000000000201041a000000110020006c000010650000a13d000000000010043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d000000110500002900000005025000c9000000000101043b0000000003210019000000400100043d0000000402300039000000000402041a00000717074001970000000006000411000000000067004b0000076b0000c13d00000002033000390000001006000029000000000063041b000007900340019700000762033001c7000000000032041b0000000000610435000007100010009c000007100100804100000040011002100000000002000414000007100020009c0000071002008041000000c002200210000000000112019f00000713011001c70000800d0200003900000002030000390000079104000041000000990000013d000007240020009c000003090000213d000007270020009c000003d10000613d000007280020009c00000e6c0000c13d0000000001000416000000000001004b00000e6c0000c13d0000075e01000041000000800010043f000007530100004100001c3c0001042e0000074a0020009c000003f50000613d0000074b0020009c00000e6c0000c13d000000240030008c00000e6c0000413d0000000002000416000000000002004b00000e6c0000c13d0000000401100370000000000201043b000000000100041a000000000021004b000006a50000a13d001100000002001d000000000020043f0000000401000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d000000000101043b000000000101041a0000075500100198000006ce0000c13d0000001101000029000000000010043f0000000601000039000000200010043f000000400200003900000000010000191c3b1c1c0000040f000000000101041a000005e60000013d000007310020009c000004140000613d000007320020009c00000e6c0000c13d0000000001000416000000000001004b00000e6c0000c13d00000008010000390000049f0000013d0000073e0020009c000004880000613d0000073f0020009c00000e6c0000c13d0000000001000416000000000001004b00000e6c0000c13d0000000801000039000000000101041a00000717011001970000000002000411000000000021004b000006090000c13d0000000b01000039000000000101041a001100000001001d0000078d010000410000000000100443000000000100041000000004001004430000000001000414000007100010009c0000071001008041000000c00110021000000772011001c70000800a020000391c3b1c360000040f000000010020019000000c3c0000613d00000011020000290000071704200197000000000301043b0000000001000414000000040040008c000006c70000c13d00000001020000390000000101000031000007370000013d000007250020009c0000049b0000613d000007260020009c00000e6c0000c13d000000240030008c00000e6c0000413d0000000002000416000000000002004b00000e6c0000c13d0000000401100370000000000201043b000000000100041a000000000021004b000006520000a13d001100000002001d000000000020043f0000000401000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d000000400a00043d000000000101043b000000000101041a0000075500100198000006520000c13d0000000a01000039000000000201041a000007580100004100000000001a04350000000401a000390000001103000029000000000031043500000000010004140000071702200197000000040020008c0000077b0000c13d000000030100036700000001030000310000078d0000013d000007470020009c000004a40000613d000007480020009c00000e6c0000c13d0000000001000416000000000001004b00000e6c0000c13d0000000c010000390000049f0000013d0000072e0020009c000005010000613d0000072f0020009c00000e6c0000c13d000000240030008c00000e6c0000413d0000000401100370000000000301043b0000000902000039000000000102041a000000020010008c000005900000613d0000000201000039000000000012041b0000000101000039000000000101041a000000000200041a000000000112004900004e200010008c000006b50000413d0000074e01000041000000800010043f0000002001000039000000840010043f0000000801000039000000a40010043f0000078001000041000000c40010043f0000077f0100004100001c3d000104300000073b0020009c000005200000613d0000073c0020009c00000e6c0000c13d000000240030008c00000e6c0000413d0000000002000416000000000002004b00000e6c0000c13d0000000401100370000000000101043b001100000001001d000007170010009c00000e6c0000213d1c3b15280000040f0000000a01000039000005b50000013d000007220020009c000005330000613d000007230020009c00000e6c0000c13d000000240030008c00000e6c0000413d0000000002000416000000000002004b00000e6c0000c13d0000000401100370000000000101043b000000000010043f0000000f01000039000000200010043f000000400200003900000000010000191c3b1c1c0000040f001000000001001d00000080020000391c3b11a50000040f000000800210008a00000080010000391c3b11e90000040f000000400200043d001100000002001d000000100100002900000001011000391c3b11a50000040f000000110210006a00000011010000291c3b11e90000040f000000400200043d001000000002001d00000040010000390000000001120436000f00000001001d000000400220003900000080010000391c3b117e0000040f0000000002010019000000100120006a0000000f03000029000000000013043500000011010000291c3b117e0000040f00000010020000290000000001210049000007100020009c00000710020080410000004002200210000007100010009c00000710010080410000006001100210000000000121019f00001c3c0001042e000000000005004b0000000001000019000003aa0000613d000000e00100043d00000003025002100000079b0220027f0000079b02200167000000000121016f0000000102500210000000000121019f0000062c0000013d000000240030008c00000e6c0000413d0000000002000416000000000002004b00000e6c0000c13d0000000401100370000000000201043b000007760020019800000e6c0000c13d00000001010000390000077702200197000007960020009c000004a10000613d000007970020009c000004a10000613d000007980020009c000000000100c019000000800010043f000007530100004100001c3c0001042e0000000001000416000000000001004b00000e6c0000c13d0000000b010000390000049f0000013d0000000001000416000000000001004b00000e6c0000c13d00004e2001000039000000800010043f000007530100004100001c3c0001042e000000840030008c00000e6c0000413d0000000002000416000000000002004b00000e6c0000c13d0000000402100370000000000202043b001100000002001d000007170020009c00000e6c0000213d0000002402100370000000000202043b001000000002001d000007170020009c00000e6c0000213d0000006402100370000000000402043b0000075b0040009c00000e6c0000213d0000002302400039000000000032004b00000e6c0000813d0000000402400039000000000121034f000000000201043b00000024014000391c3b121d0000040f00000044020000390000000202200367000000000302043b0000000004010019000000110100002900000010020000291c3b13560000040f000000000100001900001c3c0001042e0000000001000416000000000001004b00000e6c0000c13d0000000203000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f00000001005001900000003c0000c13d000000800010043f000000000004004b000006620000613d000000000030043f000000000001004b0000000002000019000006670000613d00000795030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b0000040c0000413d000006670000013d000000240030008c00000e6c0000413d0000000002000416000000000002004b00000e6c0000c13d000000c002000039000000400020043f0000006002000039000000800020043f000000a00020043f0000000401100370000000000101043b000000000010043f0000000e01000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d000000000101043b001100000001001d0000000f01000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d000000000101043b000700000001001d0000001103000029000000000103041a000d00000001001d0000075b0010009c000000750000213d0000000d0100002900000005011002100000003f011000390000077a01100197000000400200043d0000000001120019000800000002001d000000000021004b000000000200003900000001020040390000075b0010009c000000750000213d0000000100200190000000750000c13d000000400010043f00000008010000290000000d020000290000000000210435000000000030043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d0000000d0000006b000008480000c13d000000400100043d001100000001001d000007830010009c000000750000213d00000011010000290000004001100039001000000001001d000000400010043f0000000701000029000000000101041a000000010210019000000001031002700000007f0330618f000f00000003001d0000001f0030008c00000000030000390000000103002039000000000331013f00000001003001900000003c0000c13d00000010030000290000000f040000290000000000430435000000000002004b00000acf0000613d0000000701000029000000000010043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d000000110200002900000060022000390000000f0000006b00000b600000c13d000000000100001900000ad60000013d000000240030008c00000e6c0000413d0000000002000416000000000002004b00000e6c0000c13d0000000401100370000000000101043b000007170010009c00000e6c0000213d000000000010043f0000000d01000039000000200010043f000000400200003900000000010000191c3b1c1c0000040f000000000101041a000000800010043f000007530100004100001c3c0001042e0000000001000416000000000001004b00000e6c0000c13d0000000a01000039000000000101041a0000071701100197000000800010043f000007530100004100001c3c0001042e000000440030008c00000e6c0000413d0000000002000416000000000002004b00000e6c0000c13d0000000402100370000000000202043b001000000002001d000007170020009c00000e6c0000213d0000002401100370000000000201043b000000000100041a000000000021004b000006a80000a13d000f00000002001d000000000020043f0000000401000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d000000000101043b000000000101041a0000075500100198000007270000c13d000000000001004b000004da0000c13d0000000f02000029000000010220008a001100000002001d000000000020043f0000000401000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d000000000101043b000000000101041a000000000001004b0000001102000029000004c70000613d00000717011001970000000002000411000000000012004b001100000001001d000008270000c13d0000000f01000029000000000010043f0000000601000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d00000010020000290000071706200197000000000101043b000000000201041a0000071602200197000000000262019f000000000021041b0000000001000414000007100010009c0000071001008041000000c00110021000000718011001c70000800d020000390000000403000039000007930400004100000011050000290000000f070000291c3b1c310000040f000000010020019000000e6c0000613d0000009c0000013d0000000001000416000000000001004b00000e6c0000c13d0000000303000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f00000001005001900000003c0000c13d000000800010043f000000000004004b000006620000613d000000000030043f000000000001004b0000000002000019000006670000613d00000782030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b000005180000413d000006670000013d0000000001000416000000000001004b00000e6c0000c13d00000000010300191c3b11fb0000040f001100000001001d001000000002001d000f00000003001d000000400100043d000e00000001001d1c3b11de0000040f0000000e040000290000000000040435000000110100002900000010020000290000000f030000291c3b13560000040f000000000100001900001c3c0001042e0000000001000416000000000001004b00000e6c0000c13d0000000501000039000000800010043f000007530100004100001c3c0001042e000000440030008c00000e6c0000413d0000000002000416000000000002004b00000e6c0000c13d0000002402100370000000000202043b001100000002001d0000000401100370000000000101043b000000000010043f0000000e01000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d000000000101043b000000000201041a000000110020006b00000e6c0000813d000000000010043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d000000110200002900000005022000c9000000000101043b0000000004210019000000000104041a000000010210019000000001061002700000007f0660618f0000001f0060008c00000000030000390000000103002039000000000331013f00000001003001900000003c0000c13d000000400300043d0000000005630436000000000002004b001100000004001d000008110000613d000e00000006001d000f00000003001d001000000005001d000000000040043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d0000000e0000006b000009db0000c13d00000000010000190000001005000029000009e60000013d000000640030008c00000e6c0000413d0000004402100370000000000302043b0000002402100370000000000202043b001000000002001d0000000401100370000000000401043b0000000902000039000000000102041a000000020010008c000006780000c13d0000074e01000041000000800010043f0000002001000039000000840010043f0000001f01000039000000a40010043f0000078101000041000000c40010043f0000077f0100004100001c3d00010430000000240030008c00000e6c0000413d0000000002000416000000000002004b00000e6c0000c13d0000000401100370000000000101043b000007170010009c00000e6c0000213d000000000001004b000006aa0000c13d0000078b01000041000000800010043f0000076a0100004100001c3d00010430000000240030008c00000e6c0000413d0000000002000416000000000002004b00000e6c0000c13d0000000401100370000000000101043b001100000001001d000007170010009c00000e6c0000213d1c3b15280000040f0000000b01000039000000000201041a000007160220019700000011022001af000000000021041b000000000100001900001c3c0001042e0000000001000416000000000001004b00000e6c0000c13d0000000101000039000000000101041a000000000200041a0000000001120049000000800010043f000007530100004100001c3c0001042e000000440030008c00000e6c0000413d0000000002000416000000000002004b00000e6c0000c13d0000000402100370000000000202043b001100000002001d000007170020009c00000e6c0000213d0000002401100370000000000201043b000000000002004b0000000001000039000000010100c039001000000002001d000000000012004b00000e6c0000c13d0000000002000411000000110020006b000006dc0000c13d0000076901000041000000800010043f0000076a0100004100001c3d00010430000000240030008c00000e6c0000413d0000000002000416000000000002004b00000e6c0000c13d0000000401100370000000000101043b1c3b153f0000040f0000071701100197000000400200043d0000000000120435000007100020009c0000071002008041000000400120021000000752011001c700001c3c0001042e000000440030008c00000e6c0000413d0000000002000416000000000002004b00000e6c0000c13d0000000402100370000000000202043b000007170020009c00000e6c0000213d0000002401100370000000000101043b001100000001001d000007170010009c00000e6c0000213d000000000020043f0000000701000039000000200010043f000000400200003900000000010000191c3b1c1c0000040f00000011020000291c3b120d0000040f000000000101041a000000ff001001900000000001000039000000010100c039000005e70000013d0000074e01000041000000800010043f0000002001000039000000840010043f000000a40010043f0000078c01000041000000c40010043f0000077f0100004100001c3d00010430000000010320008a00000005033002700000000003310019000000200400003900000001033000390000000005040019000000c0044000390000000004040433000000000041041b00000020045000390000000101100039000000000031004b000006170000c13d000000e003500039000000000062004b000006290000813d0000000302600210000000f80220018f0000079b0220027f0000079b022001670000000003030433000000000223016f000000000021041b000000010160021000000001011001bf0000000303000039000000000013041b000000000000041b0000000801000039000000000201041a00000716042001970000000006000411000000000464019f000000000041041b00000000010004140000071705200197000007100010009c0000071001008041000000c00110021000000718011001c70000800d0200003900000719040000411c3b1c310000040f000000010020019000000e6c0000613d00000001010000390000000902000039000000000012041b0000000b01000039000000000201041a00000716022001970000000003000411000000000232019f000000000021041b0000000c01000039000000000201041a0000071602200197000000000232019f000000000021041b0000002001000039000001000010044300000120000004430000071a0100004100001c3c0001042e0000004401a00039000007560200004100000000002104350000002401a00039000000180200003900000000002104350000074e0100004100000000001a04350000000401a00039000000200200003900000000002104350000071000a0009c000007100a0080410000004001a0021000000757011001c700001c3d000104300000079a02200197000000a00020043f000000000001004b00000020020000390000000002006039000000200220003900000080010000391c3b11e90000040f000000400100043d001100000001001d00000080020000391c3b11900000040f00000011020000290000000001210049000007100010009c00000710010080410000006001100210000007100020009c00000710020080410000004002200210000000000121019f00001c3c0001042e000a00000003001d0000000201000039000000000012041b000900000004001d000000000040043f0000000e01000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d000000000101043b000000000201041a0000000a0020006c000010650000a13d000000000010043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d0000000a0200002900000005022000c9000000000101043b00000000032100190000000401300039000000000101041a0000075f00100198000007e40000c13d000000400100043d00000044021000390000076703000041000000000032043500000024021000390000001903000039000007700000013d00000080010000390000079402000041000007290000013d0000008001000039000007280000013d000000000010043f0000000501000039000000200010043f000000400200003900000000010000191c3b1c1c0000040f000000000101041a0000075b01100197000000800010043f000007530100004100001c3c0001042e0000075e013000d1000000000003004b000006bb0000613d00000000023100d90000075e0020009c00000c360000c13d0000000002000416000000000012004b0000070c0000813d0000074e01000041000000800010043f0000002001000039000000840010043f000000a40010043f0000077e01000041000000c40010043f0000077f0100004100001c3d00010430000007100010009c0000071001008041000000c001100210000000000003004b0000072f0000c13d0000000002040019000007320000013d000000400100043d000006a60000013d0000071602200197000000000262019f000000000021041b0000000001000414000007100010009c0000071001008041000000c00110021000000718011001c70000800d0200003900000003030000390000071904000041000000990000013d000000000020043f0000000701000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d000000000101043b0000001102000029000000000020043f000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d000000000101043b000000000201041a0000079a022001970000001003000029000000000232019f000000000021041b000000400100043d0000000000310435000007100010009c000007100100804100000040011002100000000002000414000007100020009c0000071002008041000000c002200210000000000112019f00000713011001c70000800d020000390000000303000039000007680400004100000000050004110000001106000029000000990000013d000900000003001d00000000010004110000071701100197001000000001001d000000000010043f0000000d01000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d000000000101043b000000000101041a0000000a0010008c000008170000413d000000400100043d00000044021000390000077d03000041000000000032043500000024021000390000001b03000039000007700000013d000000400100043d00000785020000410000000000210435000007100010009c0000071001008041000000400110021000000779011001c700001c3d0001043000000718011001c7000080090200003900000000050000191c3b1c310000040f00030000000103550000006001100270000107100010019d0000071001100197000000000001004b000007420000c13d00000001002001900000009c0000c13d000000400100043d00000044021000390000078e03000041000000000032043500000024021000390000000f03000039000007700000013d0000075b0010009c000000750000213d0000001f0410003900000799044001970000003f044000390000079905400197000000400400043d0000000005540019000000000045004b000000000600003900000001060040390000075b0050009c000000750000213d0000000100600190000000750000c13d000000400050043f000000000614043600000799031001980000001f0410018f000000000136001900000003050003670000075d0000613d000000000705034f000000007807043c0000000006860436000000000016004b000007590000c13d000000000004004b000007390000613d000000000335034f0000000304400210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000007390000013d00000044021000390000078f03000041000000000032043500000024021000390000001f0300003900000000003204350000074e020000410000000000210435000000040210003900000020030000390000000000320435000007100010009c0000071001008041000000400110021000000757011001c700001c3d000104300000071000a0009c00110000000a001d000007100300004100000000030a40190000004003300210000007100010009c0000071001008041000000c001100210000000000131019f00000759011001c71c3b1c360000040f0000006003100270000107100030019d000007100330019700030000000103550000000100200190000007f30000613d000000110a00002900000799053001980000001f0630018f00000000025a0019000007970000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000028004b000007930000c13d000000000006004b000007a40000613d000000000151034f0000000305600210000000000602043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001204350000001f0130003900000799011001970000000002a10019000000000012004b000000000100003900000001010040390000075b0020009c000000750000213d0000000100100190000000750000c13d000000400020043f0000075c0030009c00000e6c0000213d000000200030008c00000e6c0000413d00000000010a04330000075b0010009c00000e6c0000213d0000000005a300190000000001a100190000001f03100039000000000053004b00000000060000190000075d060080410000075d033001970000075d07500197000000000873013f000000000073004b00000000030000190000075d030040410000075d0080009c000000000306c019000000000003004b00000e6c0000c13d00000000310104340000075b0010009c000000750000213d0000001f0610003900000799066001970000003f06600039000007990460019700000000042400190000075b0040009c000000750000213d000000400040043f00000000041204360000000006310019000000000056004b00000e6c0000213d000000000001004b000007df0000613d000000000500001900000000064500190000000007350019000000000707043300000000007604350000002005500039000000000015004b000007d80000413d00000000014100190000000000010435000000400100043d001100000001001d0000066d0000013d000800000002001d000700000001001d000e00000003001d0000000201300039000000000101041a0000000002000416000000000012004b000008fa0000813d000000400100043d00000044021000390000076603000041000000000032043500000024021000390000001403000039000007700000013d0000001f0530018f0000075a06300198000000400200043d0000000004620019000007fe0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000007fa0000c13d000000000005004b0000080b0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000007100020009c00000710020080410000004002200210000000000112019f00001c3d000104300000079a011001970000000000150435000000000006004b00000020010000390000000001006039000009e70000013d0000000001000415000800000001001d000000400100043d000c00000001001d0000076b0010009c000000750000213d0000000c010000290000002002100039000b00000002001d000000400020043f0000000000010435000000090000006b00000a160000c13d000000400100043d0000077c02000041000007290000013d000000000010043f0000000701000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d000000000101043b00000000020004110000071702200197000000000020043f000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d000000000101043b000000000101041a000000ff00100190000004df0000c13d000000400100043d0000079202000041000007290000013d000000000501043b000000200600008a00000000070000190000000808000029000000400900043d000007600090009c000000750000213d000000c004900039000000400040043f000000000105041a0000000102100190000000010a1002700000007f0aa0618f0000001f00a0008c00000000030000390000000103002039000000000331013f00000001003001900000003c0000c13d0000000000a40435000000000002004b001100000005001d001000000007001d000f00000008001d000e00000009001d000008800000613d000b0000000a001d000c00000004001d000000000050043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d0000000e09000029000000e0029000390000000b0a00002900000000000a004b000000200600008a00000010070000290000000f08000029000008870000613d000000000301043b00000000010000190000000004210019000000000503041a0000000000540435000000010330003900000020011000390000000000a1004b000008780000413d000008880000013d0000079a01100197000000e002900039000000000012043500000000000a004b000000200100003900000000010060390000088a0000013d000000000100001900000011050000290000000c0400002900000000029200490000000001120019000000a10110008a000000000261016f0000000001420019000000000021004b000000000200003900000001020040390000075b0010009c000000750000213d0000000100200190000000750000c13d000000400010043f000000000a4904360000000101500039000000000201041a0000000103200190000000010c2002700000007f0cc0618f0000001f00c0008c00000000040000390000000104002039000000000442013f00000001004001900000003c0000c13d000000400b00043d0000000004cb0436000000000003004b000008ca0000613d000900000004001d000a0000000c001d000b0000000b001d000c0000000a001d000000000010043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d0000000a0c00002900000000000c004b000000200600008a00000010070000290000000f08000029000008d00000613d000000000201043b000000000100001900000011050000290000000e090000290000000c0a0000290000000b0b000029000000090d0000290000000003d10019000000000402041a0000000000430435000000010220003900000020011000390000000000c1004b000008c20000413d000008d50000013d0000079a01200197000000000014043500000000000c004b00000020010000390000000001006039000008d50000013d000000000100001900000011050000290000000e090000290000000c0a0000290000000b0b0000290000003f01100039000000000261016f0000000001b20019000000000021004b000000000200003900000001020040390000075b0010009c000000750000213d0000000100200190000000750000c13d0000002008800039000000400010043f0000000000ba04350000000201500039000000000101041a000000400290003900000000001204350000000301500039000000000101041a000000600290003900000000001204350000000401500039000000000101041a0000008002900039000007170310019700000000003204350000075f001001980000000001000039000000010100c039000000a00290003900000000001204350000000000980435000000050550003900000001077000390000000d0070006c0000084c0000413d0000045e0000013d001100000000001d0000001001000029000000000010043f0000000e01000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d000000000101043b000000000101041a000000110010006b00000b200000813d0000001001000029000000000010043f0000000e01000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d000000000101043b000000000201041a000000110020006c000010650000a13d000000000010043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d000000110200002900000005022000c9000000000101043b0000000001210019000000000201041a000000010320019000000001062002700000007f0660618f0000001f0060008c00000000040000390000000104002039000000000442013f00000001004001900000003c0000c13d000000400400043d0000000005640436000000000003004b000009550000613d000c00000006001d000d00000005001d000f00000004001d000000000010043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d0000000c06000029000000000006004b0000095b0000613d000000000201043b00000000010000190000000d050000290000000003510019000000000402041a000000000043043500000001022000390000002001100039000000000061004b0000094c0000413d0000000f040000290000095e0000013d0000079a012001970000000000150435000000000006004b000000200100003900000000010060390000095e0000013d00000000010000190000000f040000290000000d050000290000003f0110003900000799021001970000000001420019000000000021004b000000000200003900000001020040390000075b0010009c000000750000213d0000000100200190000000750000c13d000000400010043f000007100050009c000007100500804100000040015002100000000002040433000007100020009c00000710020080410000006002200210000000000112019f0000000002000414000007100020009c0000071002008041000000c002200210000000000112019f00000718011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d0000000e02000029000000000202041a000000010320019000000001072002700000007f0770618f000000400500043d0000001f0070008c00000000040000390000000104002039000000000442013f000000000101043b00000001004001900000003c0000c13d000f00000001001d0000000006750436000000000003004b000009a90000613d000b00000007001d000c00000006001d000d00000005001d0000000e01000029000000000010043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d0000000b07000029000000000007004b000009af0000613d000000000201043b00000000010000190000000d050000290000000c060000290000000003610019000000000402041a000000000043043500000001022000390000002001100039000000000071004b000009a10000413d000009b20000013d0000079a012001970000000000160435000000000007004b00000020010000390000000001006039000009b20000013d00000000010000190000000d050000290000000c060000290000003f0110003900000799021001970000000001520019000000000021004b000000000200003900000001020040390000075b0010009c000000750000213d0000000100200190000000750000c13d000000400010043f000007100060009c000007100600804100000040016002100000000002050433000007100020009c00000710020080410000006002200210000000000112019f0000000002000414000007100020009c0000071002008041000000c002200210000000000112019f00000718011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d0000001102000029001100010020003d000000000101043b0000000f0010006b000008fb0000c13d000000400100043d00000044021000390000078a03000041000000000032043500000024021000390000001d03000039000007700000013d000000000201043b000000000100001900000010050000290000000e060000290000000003510019000000000402041a000000000043043500000001022000390000002001100039000000000061004b000009df0000413d0000000f030000290000003f0110003900000799011001970000000002310019000000000012004b000000000100003900000001010040390000075b0020009c000000750000213d0000000100100190000000750000c13d000f00000003001d001000000005001d000e00000002001d000000400020043f00000011050000290000000101500039000000000201041a000000010320019000000001042002700000007f0440618f000d00000004001d0000001f0040008c00000000040000390000000104002039000000000442013f00000001004001900000003c0000c13d0000000e040000290000000d050000290000000004540436000c00000004001d000000000003004b00000a730000613d000000000010043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d0000000d0000006b00000b140000c13d000000000100001900000a790000013d000000000100041a000e00000001001d0000001001000029000000000010043f0000000501000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d00000009020000290000076c022000d1000000000101043b000000000301041a0000000002230019000000000021041b0000076d0100004100000000001004430000000001000414000007100010009c0000071001008041000000c0011002100000076e011001c70000800b020000391c3b1c360000040f000000010020019000000c3c0000613d000000000101043b001100000001001d0000000e01000029000000000010043f0000000401000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d0000001102000029000000a0022002100000000903000029000000010030008c00000000030000190000076f03006041000000000223019f0000001006000029000000000262019f000000000101043b000000000021041b0000000001000414000007100010009c0000071001008041000000c00110021000000718011001c70000800d020000390000000403000039000007700400004100000000050000190000000e070000291c3b1c310000040f000000010020019000000e6c0000613d0000000e02000029000f00090020002d001100000002001d000000110700002900000001077000390000000f0070006c00000bbb0000613d0000000001000414000007100010009c0000071001008041000000c00110021000000718011001c70000800d020000390000000403000039000007700400004100000000050000190000001006000029001100000007001d1c3b1c310000040f000000010020019000000a600000c13d00000e6c0000013d0000079a012001970000000c0200002900000000001204350000000d0000006b000000200100003900000000010060390000000c020000290000000e0220006a00000000011200190000001f0110003900000799021001970000000e01200029000000000021004b000000000200003900000001020040390000075b0010009c000000100b0000290000000f06000029000000750000213d0000000100200190000000750000c13d000000400010043f00000011050000290000000402500039000000000402041a0000000302500039000000000302041a0000000202500039000000000202041a000000c00500003900000000055104360000000006060433000000c0071000390000000000670435000000e007100039000000000006004b00000aa00000613d00000000080000190000000009780019000000000a8b0019000000000a0a04330000000000a904350000002008800039000000000068004b00000a990000413d000000000876001900000000000804350000001f0660003900000799066001970000000007760019000000000617004900000000006504350000000e0500002900000000060504330000000005670436000000000006004b0000000c0a00002900000ab50000613d0000000007000019000000000857001900000000097a0019000000000909043300000000009804350000002007700039000000000067004b00000aae0000413d000000000756001900000000000704350000075f004001980000000007000039000000010700c039000000a008100039000000000078043500000717044001970000008007100039000000000047043500000060041000390000000000340435000000400310003900000000002304350000001f02600039000007990220019700000000031500490000000002230019000007100020009c00000710020080410000006002200210000007100010009c00000710010080410000004001100210000000000112019f00001c3c0001042e0000079a011001970000001102000029000000600220003900000000001204350000000f0000006b00000020010000390000000001006039000000110220006a0000000001120019000000210110008a00000799021001970000001001200029000000000021004b000000000200003900000001020040390000075b0010009c000000750000213d0000000100200190000000750000c13d000000400010043f000000110100002900000010020000290000000001210436000f00000001001d00000007010000290000000101100039000000000201041a000000010320019000000001042002700000007f0440618f001000000004001d0000001f0040008c00000000040000390000000104002039000000000442013f00000001004001900000003c0000c13d000000400400043d000e00000004001d00000010050000290000000004540436000d00000004001d000000000003004b00000b6b0000613d000000000010043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d0000001005000029000000000005004b00000000020000190000000d0600002900000b710000613d000000000101043b00000000020000190000000003620019000000000401041a000000000043043500000001011000390000002002200039000000000052004b00000b0c0000413d00000b710000013d000000000201043b00000000010000190000000c050000290000000d060000290000000003510019000000000402041a000000000043043500000001022000390000002001100039000000000061004b00000b180000413d00000a790000013d0000000001000416000f0005001000cd000000000001004b00000b270000613d0000000f011000f9000000050010008c00000c360000c13d0000001001000029000000000010043f0000000e01000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d000000000101043b000c00000001001d000000400100043d001100000001001d000007600010009c000000750000213d0000001101000029000000c001100039000d00000001001d000000400010043f0000000e01000029000000000101041a000000010210019000000001031002700000007f0330618f000b00000003001d0000001f0030008c00000000030000390000000103002039000000000331013f00000001003001900000003c0000c13d0000000d030000290000000b040000290000000000430435000000000002004b00000c3d0000613d0000000e01000029000000000010043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d0000001102000029000000e0022000390000000b0000006b00000d4e0000c13d000000000100001900000d580000013d000000000301043b00000000010000190000000f060000290000000004210019000000000503041a000000000054043500000001033000390000002001100039000000000061004b00000b630000413d00000ad60000013d0000079a012001970000000d020000290000000000120435000000100000006b000000200200003900000000020060390000003f0120003900000799021001970000000e01200029000000000021004b000000000200003900000001020040390000075b0010009c000000750000213d0000000100200190000000750000c13d000000400010043f0000000f010000290000000e0200002900000000002104350000004002000039000000400100043d00000000042104360000000802000029000000000502043300000040021000390000000000520435000000600610003900000005025002100000000002620019000000000005004b00000bc40000c13d0000000003120049000000000034043500000011030000290000000004030433000000400300003900000000033204360000004005200039000000006404043400000000004504350000006005200039000000000004004b00000b9f0000613d000000000700001900000000085700190000000009760019000000000909043300000000009804350000002007700039000000000047004b00000b980000413d000000000654001900000000000604350000001f04400039000007990440019700000000055400190000000f0400002900000000040404330000000002250049000000000023043500000000430404340000000002350436000000000003004b00000bb40000613d000000000500001900000000062500190000000007540019000000000707043300000000007604350000002005500039000000000035004b00000bad0000413d000000000423001900000000000404350000001f0330003900000799033001970000000002120049000000000232001900000ac70000013d000000100000006b00000c0f0000c13d000000400100043d0000077b02000041000007290000013d000000400100043d00000044021000390000078603000041000006a10000013d000000000700001900000be20000013d00000000039a0019000000000003043500000040038000390000000003030433000000400b20003900000000003b043500000060038000390000000003030433000000600b20003900000000003b0435000000800380003900000000030304330000071703300197000000800b20003900000000003b0435000000a002200039000000a0038000390000000003030433000000000003004b0000000003000039000000010300c03900000000003204350000001f02a00039000007990220019700000000029200190000000107700039000000000057004b00000b8b0000813d0000000008120049000000600880008a000000000686043600000008030000290000002003300039000800000003001d000000000803043300000000ab080434000000c0030000390000000009320436000000c00c20003900000000db0b04340000000000bc0435000000e00c20003900000000000b004b00000bfa0000613d000000000e000019000000000fce00190000000003ed0019000000000303043300000000003f0435000000200ee000390000000000be004b00000bf30000413d0000000003cb001900000000000304350000001f03b0003900000799033001970000000003c30019000000000a0a0433000000000b2300490000000000b9043500000000ba0a04340000000009a3043600000000000a004b00000bc60000613d000000000c00001900000000039c0019000000000dcb0019000000000d0d04330000000000d30435000000200cc000390000000000ac004b00000c070000413d00000bc60000013d0000000f01000029000000000010041b00000771010000410000000000100443000000000100041100000004001004430000000001000414000007100010009c0000071001008041000000c00110021000000772011001c700008002020000391c3b1c360000040f000000010020019000000c3c0000613d000000000101043b000000000001004b00000c450000c13d0000000001000415000000080110006900000000010000020000001001000029000000000010043f0000000d01000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d000000000101043b000000000201041a000000010220003a000000090300002900000e190000c13d0000078801000041000000000010043f0000001101000039000000040010043f000007590100004100001c3d00010430000000000001042f0000079a011001970000001102000029000000e00220003900000000001204350000000b0000006b0000002001000039000000000100603900000d580000013d000700800000003d0000000b070000290000000e0300002900000001010000390000000f0030006c00000000020000390000000102004039001100000002001d0000000100100190000000100200002900000e690000613d0000000001000415000d00000001001d000000400a00043d0000006401a0003900000080040000390000000000410435000007730100004100000000001a04350000000401a0003900000000002104350000004401a00039000e00000003001d00000000003104350000002401a0003900000000000104350000000c0100002900000000010104330000008403a000390000000000130435000000a406a00039000000000001004b00000c6e0000613d000000000300001900000000046300190000000005730019000000000505043300000000005404350000002003300039000000000013004b00000c670000413d000000000361001900000000000304350000000004000414000000040020008c00000c7b0000c13d0000000005000415000000130550008a00000005055002100000000103000031000000200030008c0000002004000039000000000403401900000caf0000013d0000001f011000390000079901100197000000a401100039000007100010009c000007100100804100000060011002100000071000a0009c000007100300004100000000030a40190000004003300210000000000131019f000007100040009c0000071004008041000000c003400210000000000113019f000a0000000a001d1c3b1c310000040f0000000a0a00002900000060031002700000071003300197000000200030008c00000020040000390000000004034019000000200640019000000000056a001900000c9b0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b00000c970000c13d0000001f0740019000000ca80000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f00030000000103550000000005000415000000120550008a0000000505500210000000010020019000000e6e0000613d0000001f01400039000000600210018f0000000001a20019000000000021004b000000000200003900000001020040390000075b0010009c000000750000213d0000000100200190000000750000c13d000000400010043f000000200030008c00000e6c0000413d00000000010a0433000007760010019800000e6c0000c13d0000000e0300002900000001033000390000000502500270000000000201001f00000000020004150000000d0220006900000000020000020000077701100197000007730010009c00000011010000290000000b0700002900000c490000613d000000400100043d0000077802000041000007290000013d0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d000000000101043b000000400200043d001100000002001d000007600020009c000000750000213d0000001104000029000000c002400039000000400020043f0000008002400039000d00000002001d0000000003000411000000000032043500000020034000390000000c02000029000e00000003001d000000000023043500000080020000390000000000240435000000a002400039000c00000002001d00000000000204350000006002400039000b00000002001d00000000000204350000004002400039000a00000002001d0000000000020435000000000201041a000f00000002001d0000075b0020009c000000750000213d0000000f020000290000000102200039000000000021041b000000000010043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d000000000101043b00000011020000290000000002020433000900000002001d0000000032020434000800000003001d001100000002001d0000075b0020009c000000750000213d0000000f0200002900000005022000c90000000001210019000f00000001001d000000000101041a000000010010019000000001021002700000007f0220618f000700000002001d0000001f0020008c00000000020000390000000102002039000000000121013f00000001001001900000003c0000c13d0000000701000029000000200010008c00000d3a0000413d0000000f01000029000000000010043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d00000011030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000007010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00000d3a0000813d000000000002041b0000000102200039000000000012004b00000d360000413d00000011010000290000001f0010008c00000eb20000a13d0000000f01000029000000000010043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d000000200200008a0000001102200180000000000101043b00000f320000c13d000000200300003900000f3f0000013d000000000301043b00000000010000190000000b060000290000000004210019000000000503041a000000000054043500000001033000390000002001100039000000000061004b00000d510000413d000000110220006a0000000001120019000000a10110008a00000799021001970000000d01200029000000000021004b000000000200003900000001020040390000075b0010009c000000750000213d0000000100200190000000750000c13d000000400010043f00000011010000290000000d020000290000000001210436000d00000001001d0000000e010000290000000101100039000000000201041a000000010320019000000001042002700000007f0440618f000e00000004001d0000001f0040008c00000000040000390000000104002039000000000442013f00000001004001900000003c0000c13d000000400400043d000b00000004001d0000000e050000290000000004540436000600000004001d000000000003004b00000d960000613d000000000010043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d0000000e05000029000000000005004b0000000002000019000000060600002900000d9c0000613d000000000101043b00000000020000190000000003620019000000000401041a000000000043043500000001011000390000002002200039000000000052004b00000d8e0000413d00000d9c0000013d0000079a01200197000000060200002900000000001204350000000e0000006b000000200200003900000000020060390000003f0120003900000799021001970000000b01200029000000000021004b000000000200003900000001020040390000075b0010009c000000750000213d0000000100200190000000750000c13d000000400010043f000000110300002900000060023000390000000001000416000600000002001d00000000001204350000000d010000290000000b020000290000000000210435000000a001300039000b00000001001d0000000000010435000000000100041100000717011001970000008002300039000300000001001d000500000002001d00000000001204350000004001300039000400000001001d00000000000104350000000c01000029000000000101041a000e00000001001d0000075b0010009c000000750000213d0000000e0100002900000001011000390000000c02000029000000000012041b000000000020043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d000000000101043b00000011020000290000000002020433000200000002001d0000000032020434000c00000003001d001100000002001d0000075b0020009c000000750000213d0000000e0200002900000005022000c90000000001210019000e00000001001d000000000101041a000000010010019000000001021002700000007f0220618f000100000002001d0000001f0020008c00000000020000390000000102002039000000000121013f00000001001001900000003c0000c13d0000000101000029000000200010008c00000e050000413d0000000e01000029000000000010043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d00000011030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00000e050000813d000000000002041b0000000102200039000000000012004b00000e010000413d00000011010000290000001f0010008c00000ea50000a13d0000000e01000029000000000010043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d000000200200008a0000001102200180000000000101043b00000ebf0000c13d000000200300003900000ecc0000013d000000000021041b0000075b0030009c000000750000213d000000090100002900000005011002100000003f021000390000077a02200197000000400300043d0000000002230019001000000003001d000000000032004b000000000300003900000001030040390000075b0020009c000000750000213d0000000100300190000000750000c13d000000400020043f000000090200002900000010030000290000000002230436000f00000002001d0000001f0210018f000000000001004b00000e3a0000613d0000000f04000029000000000114001900000000030000310000000203300367000000003503043c0000000004540436000000000014004b00000e360000c13d000000000002004b00000000050000190000000101000039000000000101041a000000000200041a0000000001120049000000000051001a000000100300002900000c360000413d0000000002030433000000000052004b000010650000a13d000000000151001900000005025002100000000f0220002900000000001204350000000002030433000000000052004b000010650000a13d001100000005001d1c3b15750000040f00000011050000290000000105500039000000090050006c00000e3c0000413d00000009010000390000000102000039000000000021041b0000002002000039000000400100043d00000000022104360000001003000029000000000303043300000000003204350000004002100039000000000003004b00000e670000613d000000000400001900000010060000290000002006600039000000000506043300000000025204360000000104400039000000000034004b00000e610000413d000000000212004900000ac70000013d000000000100041a0000000f0010006c00000c210000613d000000000100001900001c3d00010430000000000003004b00000e7d0000c13d00000060020000390000000001020433000000000001004b00000ccb0000613d0000000702000029000007100020009c00000710020080410000004002200210000007100010009c00000710010080410000006001100210000000000121019f00001c3d000104300000001f0230003900000774022001970000003f022000390000077504200197000000400200043d0000000004420019000000000024004b000000000500003900000001050040390000075b0040009c000000750000213d0000000100500190000000750000c13d000000400040043f0000001f0430018f00000000063204360000075a05300198000700000006001d000000000356001900000e970000613d000000000601034f0000000707000029000000006806043c0000000007870436000000000037004b00000e930000c13d000000000004004b00000e710000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000e710000013d000000110000006b000000000100001900000eaa0000613d0000000c010000290000000001010433000000110400002900000003024002100000079b0220027f0000079b02200167000000000121016f0000000102400210000000000121019f00000eda0000013d000000110000006b000000000100001900000eb70000613d00000008010000290000000001010433000000110400002900000003024002100000079b0220027f0000079b02200167000000000121016f0000000102400210000000000121019f00000f4d0000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000020600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b00000ec50000c13d000000110020006c00000ed70000813d00000011020000290000000302200210000000f80220018f0000079b0220027f0000079b0220016700000002033000290000000003030433000000000223016f000000000021041b0000001101000029000000010110021000000001011001bf0000000e02000029000000000012041b0000000d010000290000000001010433001100000001001d0000000021010434000c00000002001d000d00000001001d0000075b0010009c000000750000213d0000000e010000290000000101100039000200000001001d000000000101041a000000010010019000000001021002700000007f0220618f000100000002001d0000001f0020008c00000000020000390000000102002039000000000121013f00000001001001900000003c0000c13d0000000101000029000000200010008c00000f110000413d0000000201000029000000000010043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d0000000d030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00000f110000813d000000000002041b0000000102200039000000000012004b00000f0d0000413d0000000d01000029000000200010008c00000f250000413d0000000201000029000000000010043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d000000200200008a0000000d02200180000000000101043b00000fa50000c13d000000200300003900000fb10000013d0000000d0000006b000000000100001900000fbf0000613d0000000d0300002900000003013002100000079b0110027f0000079b011001670000000c020000290000000002020433000000000112016f0000000102300210000000000121019f00000fbf0000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000090600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b00000f380000c13d000000110020006c00000f4a0000813d00000011020000290000000302200210000000f80220018f0000079b0220027f0000079b0220016700000009033000290000000003030433000000000223016f000000000021041b0000001101000029000000010110021000000001011001bf0000000f02000029000000000012041b0000000e010000290000000001010433001100000001001d0000000021010434000900000002001d000e00000001001d0000075b0010009c000000750000213d0000000f010000290000000101100039000800000001001d000000000101041a000000010010019000000001021002700000007f0220618f000700000002001d0000001f0020008c00000000020000390000000102002039000000000121013f00000001001001900000003c0000c13d0000000701000029000000200010008c00000f840000413d0000000801000029000000000010043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d0000000e030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000007010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00000f840000813d000000000002041b0000000102200039000000000012004b00000f800000413d0000000e01000029000000200010008c00000f980000413d0000000801000029000000000010043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d000000200200008a0000000e02200180000000000101043b0000106b0000c13d0000002003000039000010770000013d0000000e0000006b0000000001000019000010850000613d0000000e0300002900000003013002100000079b0110027f0000079b0110016700000009020000290000000002020433000000000112016f0000000102300210000000000121019f000010850000013d000000010320008a000000050330027000000000043100190000002003000039000000010440003900000011053000290000000005050433000000000051041b00000020033000390000000101100039000000000041004b00000faa0000c13d0000000d0020006c00000fbc0000813d0000000d020000290000000302200210000000f80220018f0000079b0220027f0000079b0220016700000011033000290000000003030433000000000223016f000000000021041b0000000d01000029000000010110021000000001011001bf0000000202000029000000000012041b000000040100002900000000010104330000000e030000290000000202300039000000000012041b000000060100002900000000010104330000000302300039000000000012041b0000000501000029000000000101043300000717011001970000000402300039000000000302041a0000076103300197000000000113019f0000000b030000290000000003030433000000000003004b00000762030000410000000003006019000000000131019f000000000012041b00000010010000291c3b15750000040f0000000901000029000000000010043f0000000e01000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d000000000101043b000000000201041a0000000a0020006c000010650000a13d000000000010043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d000000000101043b0000000801100029001100000001001d000000000101041a000000010010019000000001021002700000007f0220618f001000000002001d0000001f0020008c00000000020000390000000102002039000000000121013f00000001001001900000003c0000c13d000000100000006b000010230000613d00000010010000290000001f0010008c0000001101000029000010220000a13d0000001101000029000000000010043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d000000000101043b00000010020000290000001f02200039000000050220027000000000022100190000000103100039000000000023004b000010200000813d000000000003041b0000000103300039000000000023004b0000101c0000413d0000001102000029000000000002041b000000000001041b00000011010000290000000101100039000e00000001001d000000000101041a000000010010019000000001021002700000007f0220618f001000000002001d0000001f0020008c00000000020000390000000102002039000000000121013f00000001001001900000003c0000c13d000000100000006b000010520000613d00000010010000290000001f0010008c000010500000a13d0000000e01000029000000000010043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d000000000101043b00000010020000290000001f02200039000000050220027000000000022100190000000103100039000000000023004b0000104d0000813d000000000003041b0000000103300039000000000023004b000010490000413d0000000e02000029000000000002041b000e00000001001d0000000e01000029000000000001041b0000000f01000029001000640010012200000011020000290000000201200039000000000001041b0000000301200039000000000001041b0000000401200039000000000001041b00000009010000291c3b15750000040f000000000100041400000007020000290000071704200197000000040040008c000010db0000c13d00000001020000390000000101000031000010ec0000013d0000078801000041000000000010043f0000003201000039000000040010043f000007590100004100001c3d00010430000000010320008a000000050330027000000000043100190000002003000039000000010440003900000011053000290000000005050433000000000051041b00000020033000390000000101100039000000000041004b000010700000c13d0000000e0020006c000010820000813d0000000e020000290000000302200210000000f80220018f0000079b0220027f0000079b0220016700000011033000290000000003030433000000000223016f000000000021041b0000000e01000029000000010110021000000001011001bf0000000802000029000000000012041b0000000a0100002900000000010104330000000f030000290000000202300039000000000012041b0000000b0100002900000000010104330000000302300039000000000012041b0000000d01000029000000000101043300000717011001970000000402300039000000000302041a0000076103300197000000000113019f0000000c030000290000000003030433000000000003004b00000762030000410000000003006019000000000131019f000000000012041b00000010010000291c3b15750000040f0000001001000029000000000010043f0000000e01000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f000000010020019000000e6c0000613d000000000101043b000000000401041a000000000004004b00000c360000613d000000400100043d000000400200003900000000022104360000004005100039000000800300043d00000000003504350000006005100039000000010440008a000000000003004b000010c30000613d00000000060000190000000007560019000000a008600039000000000808043300000000008704350000002006600039000000000036004b000010bc0000413d0000000005530019000000000005043500000000004204350000001f0230003900000799022001970000006002200039000007100020009c00000710020080410000006002200210000007100010009c00000710010080410000004001100210000000000112019f0000000002000414000007100020009c0000071002008041000000c002200210000000000112019f00000718011001c70000800d02000039000000020300003900000787040000410000001005000029000002a40000013d000007100010009c0000071001008041000000c0011002100000000002000416000000100020006c000010e30000c13d0000000002040019000010e70000013d000000100320006a00000718011001c7000080090200003900000000050000191c3b1c310000040f00030000000103550000006001100270000107100010019d0000071001100197000000000001004b000010f80000c13d0000000100200190000011210000613d0000000802000039000000000302041a00000000020004140000071704300197000000040040008c000011250000c13d0000000102000039000011360000013d0000075b0010009c000000750000213d0000001f0310003900000799033001970000003f033000390000079904300197000000400300043d0000000004430019000000000034004b000000000500003900000001050040390000075b0040009c000000750000213d0000000100500190000000750000c13d000000400040043f000000000713043600000799041001980000001f0510018f00000000034700190000000306000367000011130000613d000000000806034f000000008908043c0000000007970436000000000037004b0000110f0000c13d000000000005004b000010ee0000613d000000000446034f0000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000430435000010ee0000013d000000400100043d00000044021000390000076303000041000006a10000013d000007100020009c0000071002008041000000c0012002100000000f02000029000000640020008c0000112d0000813d0000000002040019000011310000013d00000718011001c70000800902000039000000100300002900000000050000191c3b1c310000040f00030000000103550000006001100270000107100010019d0000071001100197000000000001004b0000115e0000613d0000001f0310003900000799033001970000003f033000390000079904300197000000400300043d0000000004430019000000000034004b000000000500003900000001050040390000075b0040009c000000750000213d0000000100500190000000750000c13d000000400040043f000000000613043600000799031001980000001f0410018f00000000013600190000000305000367000011510000613d000000000705034f000000007807043c0000000006860436000000000016004b0000114d0000c13d000000000004004b0000115e0000613d000000000335034f0000000304400210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000000400100043d0000000100200190000011780000613d00000003020000290000000000210435000007100010009c000007100100804100000040011002100000000002000414000007100020009c0000071002008041000000c002200210000000000112019f00000713011001c70000800d02000039000000020300003900000765040000410000000a050000291c3b1c310000040f000000010020019000000e6c0000613d00000001010000390000000902000039000000000012041b000000000100001900001c3c0001042e00000044021000390000076403000041000000000032043500000024021000390000001a03000039000007700000013d00000000430104340000000001320436000000000003004b0000118a0000613d000000000200001900000000051200190000000006240019000000000606043300000000006504350000002002200039000000000032004b000011830000413d000000000213001900000000000204350000001f0230003900000799022001970000000001210019000000000001042d00000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b0000119f0000613d000000000400001900000000051400190000000006430019000000000606043300000000006504350000002004400039000000000024004b000011980000413d000000000312001900000000000304350000001f0220003900000799022001970000000001120019000000000001042d0002000000000002000000000301041a000000010430019000000001063002700000007f0660618f0000001f0060008c00000000050000390000000105002039000000000054004b000011d60000c13d0000000005620436000000000004004b000011cd0000613d000200000006001d000100000005001d000000000010043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f0000000100200190000011dc0000613d0000000206000029000000000006004b000011d40000613d000000000201043b000000000100001900000001050000290000000003150019000000000402041a000000000043043500000001022000390000002001100039000000000061004b000011c40000413d0000000001150019000000000001042d0000079a013001970000000000150435000000000006004b000000200100003900000000010060390000000001150019000000000001042d0000000101000029000000000001042d0000078801000041000000000010043f0000002201000039000000040010043f000007590100004100001c3d00010430000000000100001900001c3d000104300000079c0010009c000011e30000813d0000002001100039000000400010043f000000000001042d0000078801000041000000000010043f0000004101000039000000040010043f000007590100004100001c3d000104300000001f0220003900000799022001970000000001120019000000000021004b000000000200003900000001020040390000075b0010009c000011f50000213d0000000100200190000011f50000c13d000000400010043f000000000001042d0000078801000041000000000010043f0000004101000039000000040010043f000007590100004100001c3d000104300000075c0010009c0000120b0000213d000000630010008c0000120b0000a13d00000002030003670000000401300370000000000101043b000007170010009c0000120b0000213d0000002402300370000000000202043b000007170020009c0000120b0000213d0000004403300370000000000303043b000000000001042d000000000100001900001c3d000104300000071702200197000000000020043f000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f00000001002001900000121b0000613d000000000101043b000000000001042d000000000100001900001c3d00010430000007150020009c0000124d0000813d00000000040100190000001f0120003900000799011001970000003f011000390000079905100197000000400100043d0000000005510019000000000015004b000000000700003900000001070040390000075b0050009c0000124d0000213d00000001007001900000124d0000c13d000000400050043f00000000052104360000000007420019000000000037004b000012530000213d00000799062001980000001f0720018f000000020440036700000000036500190000123d0000613d000000000804034f0000000009050019000000008a08043c0000000009a90436000000000039004b000012390000c13d000000000007004b0000124a0000613d000000000464034f0000000306700210000000000703043300000000076701cf000000000767022f000000000404043b0000010006600089000000000464022f00000000046401cf000000000474019f000000000043043500000000022500190000000000020435000000000001042d0000078801000041000000000010043f0000004101000039000000040010043f000007590100004100001c3d00010430000000000100001900001c3d000104300007000000000002000300000002001d000500000001001d000000000100041a000600000003001d000000000031004b000013440000a13d0000000601000029000000000010043f0000000401000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f0000000100200190000013420000613d000000000101043b000000000101041a0000075500100198000013440000c13d000000000001004b000012830000c13d0000000602000029000000010220008a000700000002001d000000000020043f0000000401000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f0000000100200190000013420000613d000000000101043b000000000101041a000000000001004b0000000702000029000012700000613d00000005020000290000071702200197000400000001001d0000071701100197000700000002001d000000000021004b000013470000c13d0000000601000029000000000010043f0000000601000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f0000000100200190000013420000613d000000000201043b000000000302041a00000000010004110000071704100197000000070040006c000012c20000613d000000000034004b000012c20000613d000500000004001d000100000003001d000200000002001d0000000701000029000000000010043f0000000701000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f0000000100200190000013420000613d000000000101043b0000000502000029000000000020043f000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f0000000100200190000013420000613d000000000101043b000000000101041a000000ff00100190000000020200002900000001030000290000134e0000613d0000000301000029000507170010019c0000134a0000613d000000000003004b000012c80000613d000000000002041b0000000701000029000000000010043f0000000501000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f0000000100200190000013420000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000501000029000000000010043f0000000501000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f0000000100200190000013420000613d000000000101043b000000000201041a0000000102200039000000000021041b0000076d0100004100000000001004430000000001000414000007100010009c0000071001008041000000c0011002100000076e011001c70000800b020000391c3b1c360000040f00000001002001900000134d0000613d000000000101043b000300000001001d0000000601000029000000000010043f0000000401000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f0000000100200190000013420000613d0000000302000029000000a00220021000000005022001af0000076f022001c7000000000101043b000000000021041b00000004010000290000076f00100198000013330000c13d00000006010000290000000101100039000300000001001d000000000010043f0000000401000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f0000000100200190000013420000613d000000000101043b000000000101041a000000000001004b000013330000c13d000000000100041a000000030010006b000013330000613d0000000301000029000000000010043f0000000401000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f0000000100200190000013420000613d000000000101043b0000000402000029000000000021041b0000000001000414000007100010009c0000071001008041000000c00110021000000718011001c70000800d02000039000000040300003900000770040000410000000705000029000000050600002900000006070000291c3b1c310000040f0000000100200190000013420000613d000000000001042d000000000100001900001c3d00010430000000400100043d0000078502000041000013500000013d000000400100043d0000079d02000041000013500000013d000000400100043d0000079f02000041000013500000013d000000000001042f000000400100043d0000079e020000410000000000210435000007100010009c0000071001008041000000400110021000000779011001c700001c3d00010430000a000000000002000100000004001d000500000002001d000600000001001d000000000100041a000700000003001d000000000031004b000014d60000a13d0000000701000029000000000010043f0000000401000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f0000000100200190000014d40000613d000000000101043b000000000101041a0000075500100198000014d60000c13d000000000001004b000013850000c13d0000000702000029000000010220008a000800000002001d000000000020043f0000000401000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f0000000100200190000014d40000613d000000000101043b000000000101041a000000000001004b0000000802000029000013720000613d00000006020000290000071702200197000300000001001d0000071701100197000800000002001d000000000021004b000014da0000c13d0000000701000029000000000010043f0000000601000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f0000000100200190000014d40000613d000000000301043b000000000403041a00000000010004110000071702100197000400000002001d000000080020006c000013c40000613d000000040040006b000013c40000613d000200000004001d000600000003001d0000000801000029000000000010043f0000000701000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f0000000100200190000014d40000613d000000000101043b0000000402000029000000000020043f000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f0000000100200190000014d40000613d000000000101043b000000000101041a000000ff0010019000000006030000290000000204000029000014e00000613d00000005010000290000071701100198000014dd0000613d000600000001001d000000000004004b000013cb0000613d000000000003041b0000000801000029000000000010043f0000000501000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f0000000100200190000014d40000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000601000029000000000010043f0000000501000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f0000000100200190000014d40000613d000000000101043b000000000201041a0000000102200039000000000021041b0000076d0100004100000000001004430000000001000414000007100010009c0000071001008041000000c0011002100000076e011001c70000800b020000391c3b1c360000040f0000000100200190000014d90000613d000000000101043b000200000001001d0000000701000029000000000010043f0000000401000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f0000000100200190000014d40000613d0000000202000029000000a0022002100000000606000029000000000262019f0000076f022001c7000000000101043b000000000021041b00000003010000290000076f00100198000014390000c13d00000007010000290000000101100039000200000001001d000000000010043f0000000401000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f0000000100200190000014d40000613d000000000101043b000000000101041a000000000001004b0000000606000029000014390000c13d000000000100041a000000020010006b000014390000613d0000000201000029000000000010043f0000000401000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f0000000100200190000014d40000613d000000000101043b0000000302000029000000000021041b00000006060000290000000001000414000007100010009c0000071001008041000000c00110021000000718011001c70000800d0200003900000004030000390000077004000041000000080500002900000007070000291c3b1c310000040f0000000100200190000014d40000613d00000771010000410000000000100443000000050100002900000004001004430000000001000414000007100010009c0000071001008041000000c00110021000000772011001c700008002020000391c3b1c360000040f0000000100200190000014d90000613d000000000101043b000000000001004b000014d30000613d0000000008000415000000400b00043d0000006401b00039000000800700003900000000007104350000004401b00039000000070200002900000000002104350000002401b0003900000008020000290000000000210435000007730100004100000000001b04350000000401b00039000000040200002900000000002104350000008403b00039000000010100002900000000210104340000000000130435000000a403b00039000000000001004b000014750000613d000000000400001900000000053400190000000006420019000000000606043300000000006504350000002004400039000000000014004b0000146e0000413d0000000002310019000000000002043500000000040004140000000602000029000000040020008c000014830000c13d00000000050004150000000a0550008a00000005055002100000000103000031000000200030008c00000020040000390000000004034019000014bb0000013d000700000008001d000500000007001d0000001f011000390000079901100197000000a401100039000007100010009c000007100100804100000060011002100000071000b0009c000007100300004100000000030b40190000004003300210000000000131019f000007100040009c0000071004008041000000c003400210000000000113019f00080000000b001d1c3b1c310000040f000000080b00002900000060031002700000071003300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000014a60000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000014a20000c13d000000000006004b000014b30000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000005000415000000090550008a00000005055002100000000100200190000014e30000613d00000007080000290000001f01400039000000600210018f0000000001b20019000000000021004b000000000200003900000001020040390000075b0010009c000015190000213d0000000100200190000015190000c13d000000400010043f000000200030008c000014d40000413d00000000010b04330000077600100198000014d40000c13d0000000502500270000000000201001f0000000002000415000000000228004900000000020000020000077701100197000007730010009c000015110000c13d000000000001042d000000000100001900001c3d00010430000000400100043d0000078502000041000015130000013d000000000001042f000000400100043d0000079d02000041000015130000013d000000400100043d0000079f02000041000015130000013d000000400100043d0000079e02000041000015130000013d000000000003004b000014e70000c13d00000060020000390000150e0000013d0000001f0230003900000774022001970000003f022000390000077504200197000000400200043d0000000004420019000000000024004b000000000500003900000001050040390000075b0040009c000015190000213d0000000100500190000015190000c13d000000400040043f0000001f0430018f00000000063204360000075a05300198000500000006001d0000000003560019000015010000613d000000000601034f0000000507000029000000006806043c0000000007870436000000000037004b000014fd0000c13d000000000004004b0000150e0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b0000151f0000c13d000000400100043d00000778020000410000000000210435000007100010009c0000071001008041000000400110021000000779011001c700001c3d000104300000078801000041000000000010043f0000004101000039000000040010043f000007590100004100001c3d000104300000000502000029000007100020009c00000710020080410000004002200210000007100010009c00000710010080410000006001100210000000000121019f00001c3d000104300000000801000039000000000101041a00000717011001970000000002000411000000000021004b0000152f0000c13d000000000001042d000000400100043d00000044021000390000078c0300004100000000003204350000074e02000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000007100010009c0000071001008041000000400110021000000757011001c700001c3d000104300001000000000002000000000200041a000000000012004b0000156d0000a13d000100000001001d000000000010043f0000000401000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f00000001002001900000156b0000613d000000000101043b000000000101041a000007550010019800000001020000290000156d0000c13d000000000001004b0000156a0000c13d000000010220008a000100000002001d000000000020043f0000000401000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f00000001002001900000156b0000613d000000000101043b000000000101041a000000000001004b0000000102000029000015570000613d000000000001042d000000000100001900001c3d00010430000000400100043d00000785020000410000000000210435000007100010009c0000071001008041000000400110021000000779011001c700001c3d000104300006000000000002000400000001001d000500000000001d000600000000001d0000000401000029000000000010043f0000000e01000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f000000010020019000001c070000613d000000000101043b000000000101041a000000060010006b000015b60000813d0000000401000029000000000010043f0000000e01000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c700008010020000391c3b1c360000040f000000010020019000001c070000613d000000000101043b000000000201041a000000060020006c00001c090000a13d000000000010043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000001c070000613d000000000101043b000000060300002900000005023000c90000000001120019000600010030003d0000000301100039000000000101041a000000050010002a000500050010002d000015b00000413d000015790000013d0000078801000041000000000010043f0000001101000039000000040010043f000007590100004100001c3d000104300000000503000029000007a00030009c000016800000a13d000007a60030009c000016be0000a13d000007a80030009c000018380000a13d000007aa0030009c000019720000a13d00000000010000190000000002010019000000010110003a000015b00000613d000000090030008c0000000a0330011a000015c00000213d000007a10020009c00001c0f0000213d00000799042001970000005f024000390000079902200197000000400300043d0000000002230019000000000032004b000000000500003900000001050040390000075b0020009c00001c0f0000213d000000010050019000001c0f0000c13d000000400020043f0000000002130436000000200440003900000799054001980000001f0440018f000015e20000613d0000000005520019000000000600003100000002066003670000000007020019000000006806043c0000000007870436000000000057004b000015de0000c13d000000000004004b000000000001004b000015b00000613d000000010110008a0000000004030433000000000014004b00001c090000a13d00000000042100190000000506000029000000090060008c0005000a50600122000000f8055002100000000006040433000007a206600197000000000565019f000007a3055001c70000000000540435000015e30000213d000000400100043d00000020041000390000000003030433000000000003004b000016010000613d000000000500001900000000064500190000000007520019000000000707043300000000007604350000002005500039000000000035004b000015fa0000413d0000000002430019000007a404000041000000000042043500000004023000390000000000210435000000430230003900000799022001970000000005120019000000000025004b000000000200003900000001020040390000075b0050009c00001c0f0000213d000000010020019000001c0f0000c13d000000400050043f000007830050009c00001c0f0000213d0000004002500039000000400020043f000007840050009c00001c0f0000213d0000008003500039000000400030043f000000130300003900000000003204350000006003500039000007ac0400004100000000004304350000000002250436000500000002001d00000000001204350000000401000029000000000010043f0000000f01000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c70000801002000039000600000005001d1c3b1c360000040f000000010020019000001c070000613d000000000301043b0000000601000029000000000501043300000000640504340000075b0040009c00001c0f0000213d000000000103041a000000010210019000000001071002700000007f0770618f0000001f0070008c00000000010000390000000101002039000000000012004b00001c150000c13d000000200070008c000400000003001d000600000004001d000300000005001d000016620000413d000100000007001d000200000006001d000000000030043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000001c070000613d00000006040000290000001f024000390000000502200270000000200040008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00000004030000290000000206000029000016620000813d000000000002041b0000000102200039000000000012004b0000165e0000413d0000001f0040008c00001ab50000a13d000000000030043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000001c070000613d00000006060000290000079902600198000000000101043b000000030700002900001b220000613d000000010320008a000000050330027000000000043100190000002003000039000000010440003900000000057300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000016780000c13d00001b230000013d000000000003004b0000178d0000613d00000000020000190000000001020019000000010220003a000015b00000613d000000090030008c0000000a0330011a000016830000213d000007a10010009c00001c0f0000213d00000799041001970000005f014000390000079901100197000000400300043d0000000001130019000000000031004b000000000500003900000001050040390000075b0010009c00001c0f0000213d000000010050019000001c0f0000c13d000000400010043f0000000001230436000000200440003900000799054001980000001f0440018f000016a50000613d0000000005510019000000000600003100000002066003670000000007010019000000006806043c0000000007870436000000000057004b000016a10000c13d000000000004004b000000000002004b000015b00000613d000000010220008a0000000004030433000000000024004b00001c090000a13d00000000041200190000000506000029000000090060008c0005000a50600122000000f8055002100000000006040433000007a206600197000000000565019f000007a3055001c70000000000540435000016a60000213d000000400200043d00000020042000390000000003030433000000000003004b000017990000c13d0000000003000019000017a10000013d00000000010000190000000002010019000000010110003a000015b00000613d000000090030008c0000000a0330011a000016bf0000213d000007a10020009c00001c0f0000213d00000799042001970000005f024000390000079902200197000000400300043d0000000002230019000000000032004b000000000500003900000001050040390000075b0020009c00001c0f0000213d000000010050019000001c0f0000c13d000000400020043f0000000002130436000000200440003900000799054001980000001f0440018f000016e10000613d0000000005520019000000000600003100000002066003670000000007020019000000006806043c0000000007870436000000000057004b000016dd0000c13d000000000004004b000000000001004b000015b00000613d000000010110008a0000000004030433000000000014004b00001c090000a13d00000000042100190000000506000029000000090060008c0005000a50600122000000f8055002100000000006040433000007a206600197000000000565019f000007a3055001c70000000000540435000016e20000213d000000400100043d00000020041000390000000003030433000000000003004b000017000000613d000000000500001900000000064500190000000007520019000000000707043300000000007604350000002005500039000000000035004b000016f90000413d0000000002430019000007a404000041000000000042043500000004023000390000000000210435000000430230003900000799022001970000000005120019000000000025004b000000000200003900000001020040390000075b0050009c00001c0f0000213d000000010020019000001c0f0000c13d000000400050043f000007830050009c00001c0f0000213d0000004002500039000000400020043f000007840050009c00001c0f0000213d0000008003500039000000400030043f0000000a0300003900000000003204350000006003500039000007a70400004100000000004304350000000002250436000500000002001d00000000001204350000000401000029000000000010043f0000000f01000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c70000801002000039000600000005001d1c3b1c360000040f000000010020019000001c070000613d000000000301043b0000000601000029000000000501043300000000640504340000075b0040009c00001c0f0000213d000000000103041a000000010010019000000001071002700000007f0770618f0000001f0070008c00000000020000390000000102002039000000000121013f000000010010019000001c150000c13d000000200070008c000400000003001d000600000004001d000300000005001d000017620000413d000100000007001d000200000006001d000000000030043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000001c070000613d00000006040000290000001f024000390000000502200270000000200040008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00000004030000290000000206000029000017620000813d000000000002041b0000000102200039000000000012004b0000175e0000413d0000001f0040008c000019070000a13d000000000030043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000001c070000613d00000006060000290000079902600198000000000101043b000000030700002900001a3e0000613d000000010320008a000000050330027000000000043100190000002003000039000000010440003900000000057300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000017780000c13d000000000062004b000017890000813d0000000302600210000000f80220018f0000079b0220027f0000079b0220016700000000037300190000000003030433000000000223016f000000000021041b000000010160021000000001011001bf000000040300002900001a430000013d000000400200043d000007830020009c00001c0f0000213d0000004001200039000000400010043f0000002001200039000007a303000041000000000031043500000001030000390000000000320435000000400200043d0000002004200039000000000500001900000000064500190000000007510019000000000707043300000000007604350000002005500039000000000035004b0000179a0000413d0000000001430019000007a404000041000000000041043500000004013000390000000000120435000000430130003900000799011001970000000005210019000000000015004b000000000100003900000001010040390000075b0050009c00001c0f0000213d000000010010019000001c0f0000c13d000000400050043f000007830050009c00001c0f0000213d0000004001500039000000400010043f000007840050009c00001c0f0000213d0000008003500039000000400030043f000000090300003900000000003104350000006003500039000007a50400004100000000004304350000000001150436000500000001001d00000000002104350000000401000029000000000010043f0000000f01000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c70000801002000039000600000005001d1c3b1c360000040f000000010020019000001c070000613d000000000601043b0000000601000029000000000301043300000000540304340000075b0040009c00001c0f0000213d000000000106041a000000010010019000000001071002700000007f0770618f0000001f0070008c00000000020000390000000102002039000000000121013f000000010010019000001c150000c13d000000200070008c000400000006001d000600000004001d000300000003001d000018030000413d000100000007001d000200000005001d000000000060043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000001c070000613d00000006040000290000001f024000390000000502200270000000200040008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00000004060000290000000205000029000018030000813d000000000002041b0000000102200039000000000012004b000017ff0000413d0000001f0040008c0000182e0000a13d000000000060043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000001c070000613d00000006070000290000079902700198000000000101043b0000000308000029000019110000613d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000040600002900000000058300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b0000181a0000c13d000000000072004b0000182b0000813d0000000302700210000000f80220018f0000079b0220027f0000079b0220016700000000038300190000000003030433000000000223016f000000000021041b000000010170021000000001011001bf000019170000013d000000000004004b000019160000613d00000003014002100000079b0110027f0000079b011001670000000002050433000000000112016f0000000102400210000000000121019f000019170000013d00000000010000190000000002010019000000010110003a000015b00000613d000000090030008c0000000a0330011a000018390000213d000007a10020009c00001c0f0000213d00000799042001970000005f024000390000079902200197000000400300043d0000000002230019000000000032004b000000000500003900000001050040390000075b0020009c00001c0f0000213d000000010050019000001c0f0000c13d000000400020043f0000000002130436000000200440003900000799054001980000001f0440018f0000185b0000613d0000000005520019000000000600003100000002066003670000000007020019000000006806043c0000000007870436000000000057004b000018570000c13d000000000004004b000000000001004b000015b00000613d000000010110008a0000000004030433000000000014004b00001c090000a13d00000000042100190000000506000029000000090060008c0005000a50600122000000f8055002100000000006040433000007a206600197000000000565019f000007a3055001c700000000005404350000185c0000213d000000400100043d00000020041000390000000003030433000000000003004b0000187a0000613d000000000500001900000000064500190000000007520019000000000707043300000000007604350000002005500039000000000035004b000018730000413d0000000002430019000007a404000041000000000042043500000004023000390000000000210435000000430230003900000799022001970000000005120019000000000025004b000000000200003900000001020040390000075b0050009c00001c0f0000213d000000010020019000001c0f0000c13d000000400050043f000007830050009c00001c0f0000213d0000004002500039000000400020043f000007840050009c00001c0f0000213d0000008003500039000000400030043f000000110300003900000000003204350000006003500039000007a90400004100000000004304350000000002250436000500000002001d00000000001204350000000401000029000000000010043f0000000f01000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c70000801002000039000600000005001d1c3b1c360000040f000000010020019000001c070000613d000000000301043b0000000601000029000000000501043300000000640504340000075b0040009c00001c0f0000213d000000000103041a000000010010019000000001071002700000007f0770618f0000001f0070008c00000000020000390000000102002039000000000121013f000000010010019000001c150000c13d000000200070008c000400000003001d000600000004001d000300000005001d000018dc0000413d000100000007001d000200000006001d000000000030043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000001c070000613d00000006040000290000001f024000390000000502200270000000200040008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00000004030000290000000206000029000018dc0000813d000000000002041b0000000102200039000000000012004b000018d80000413d0000001f0040008c00001a340000a13d000000000030043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000001c070000613d00000006060000290000079902600198000000000101043b000000030700002900001ac90000613d000000010320008a000000050330027000000000043100190000002003000039000000010440003900000000057300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000018f20000c13d000000000062004b000019030000813d0000000302600210000000f80220018f0000079b0220027f0000079b0220016700000000037300190000000003030433000000000223016f000000000021041b000000010160021000000001011001bf000000040300002900001ace0000013d000000000004004b00001a420000613d00000003014002100000079b0110027f0000079b011001670000000002060433000000000112016f0000000102400210000000000121019f00001a430000013d00000020030000390000000406000029000000000072004b000018230000413d0000182b0000013d0000000001000019000000000016041b0000000501000029000000000301043300000000540304340000075b0040009c00001c0f0000213d0000000106600039000000000106041a000000010010019000000001071002700000007f0770618f0000001f0070008c00000000020000390000000102002039000000000121013f000000010010019000001c150000c13d000000200070008c000500000006001d000600000004001d000300000003001d0000194c0000413d000200000007001d000400000005001d000000000060043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000001c070000613d00000006040000290000001f024000390000000502200270000000200040008c0000000002004019000000000301043b00000002010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000000050600002900000004050000290000194c0000813d000000000002041b0000000102200039000000000012004b000019480000413d000000200040008c0000196b0000413d000000000060043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000001c070000613d00000006070000290000079902700198000000000101043b000000030800002900001bea0000613d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000050600002900000000058300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000019630000c13d00001bec0000013d000000000004004b00001c050000613d00000003014002100000079b0110027f0000079b01100167000000000205043300001c000000013d00000000010000190000000002010019000000010110003a000015b00000613d000000090030008c0000000a0330011a000019730000213d000007a10020009c00001c0f0000213d00000799042001970000005f024000390000079902200197000000400300043d0000000002230019000000000032004b000000000500003900000001050040390000075b0020009c00001c0f0000213d000000010050019000001c0f0000c13d000000400020043f0000000002130436000000200440003900000799054001980000001f0440018f000019950000613d0000000005520019000000000600003100000002066003670000000007020019000000006806043c0000000007870436000000000057004b000019910000c13d000000000004004b000000000001004b000015b00000613d000000010110008a0000000004030433000000000014004b00001c090000a13d00000000042100190000000506000029000000090060008c0005000a50600122000000f8055002100000000006040433000007a206600197000000000565019f000007a3055001c70000000000540435000019960000213d000000400100043d00000020041000390000000003030433000000000003004b000019b40000613d000000000500001900000000064500190000000007520019000000000707043300000000007604350000002005500039000000000035004b000019ad0000413d0000000002430019000007a404000041000000000042043500000004023000390000000000210435000000430230003900000799022001970000000005120019000000000025004b000000000200003900000001020040390000075b0050009c00001c0f0000213d000000010020019000001c0f0000c13d000000400050043f000007830050009c00001c0f0000213d0000004002500039000000400020043f000007840050009c00001c0f0000213d0000008003500039000000400030043f000000110300003900000000003204350000006003500039000007ab0400004100000000004304350000000002250436000500000002001d00000000001204350000000401000029000000000010043f0000000f01000039000000200010043f0000000001000414000007100010009c0000071001008041000000c00110021000000754011001c70000801002000039000600000005001d1c3b1c360000040f000000010020019000001c070000613d000000000301043b0000000601000029000000000501043300000000640504340000075b0040009c00001c0f0000213d000000000103041a000000010010019000000001071002700000007f0770618f0000001f0070008c00000000020000390000000102002039000000000121013f000000010010019000001c150000c13d000000200070008c000400000003001d000600000004001d000300000005001d00001a160000413d000100000007001d000200000006001d000000000030043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000001c070000613d00000006040000290000001f024000390000000502200270000000200040008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000000403000029000000020600002900001a160000813d000000000002041b0000000102200039000000000012004b00001a120000413d0000001f0040008c00001abf0000a13d000000000030043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000001c070000613d00000006060000290000079902600198000000000101043b000000030700002900001b310000613d000000010320008a000000050330027000000000043100190000002003000039000000010440003900000000057300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b00001a2c0000c13d00001b320000013d000000000004004b00001acd0000613d00000003014002100000079b0110027f0000079b011001670000000002060433000000000112016f0000000102400210000000000121019f00001ace0000013d0000002003000039000000000062004b000017810000413d000017890000013d0000000001000019000000000013041b0000000501000029000000000501043300000000640504340000075b0040009c00001c0f0000213d0000000103300039000000000103041a000000010010019000000001071002700000007f0770618f0000001f0070008c00000000020000390000000102002039000000000121013f000000010010019000001c150000c13d000000200070008c000600000003001d000500000004001d000300000005001d00001a780000413d000200000007001d000400000006001d000000000030043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000001c070000613d00000005040000290000001f024000390000000502200270000000200040008c0000000002004019000000000301043b00000002010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000000603000029000000040600002900001a780000813d000000000002041b0000000102200039000000000012004b00001a740000413d000000200040008c00001aa40000413d000000000030043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000001c070000613d00000005060000290000079902600198000000000101043b000000030700002900001ab10000613d000000010320008a000000050330027000000000043100190000002003000039000000010440003900000000057300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b00001a8e0000c13d000000000062004b00001a9f0000813d0000000302600210000000f80220018f0000079b0220027f0000079b0220016700000000037300190000000003030433000000000223016f000000000021041b000000010160021000000001011001bf0000000603000029000000000013041b000000000001042d000000000004004b00001aaf0000613d00000003014002100000079b0110027f0000079b011001670000000002060433000000000112016f0000000102400210000000000121019f000000000013041b000000000001042d000000000003041b000000000001042d0000002003000039000000000062004b00001a970000413d00001a9f0000013d000000000004004b00001b400000613d00000003014002100000079b0110027f0000079b011001670000000002060433000000000112016f0000000102400210000000000121019f00001b410000013d000000000004004b00001b950000613d00000003014002100000079b0110027f0000079b011001670000000002060433000000000112016f0000000102400210000000000121019f00001b960000013d0000002003000039000000000062004b000018fb0000413d000019030000013d0000000001000019000000000013041b0000000501000029000000000501043300000000740504340000075b0040009c00001c0f0000213d0000000106300039000000000106041a000000010010019000000001031002700000007f0330618f0000001f0030008c00000000020000390000000102002039000000000121013f000000010010019000001c150000c13d000000200030008c000500000006001d000600000004001d000300000005001d00001b030000413d000200000003001d000400000007001d000000000060043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000001c070000613d00000006040000290000001f024000390000000502200270000000200040008c0000000002004019000000000301043b00000002010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000000506000029000000040700002900001b030000813d000000000002041b0000000102200039000000000012004b00001aff0000413d000000200040008c00001bfa0000413d000000000060043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000001c070000613d00000006070000290000079902700198000000000101043b000000030800002900001bea0000613d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000050600002900000000058300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b00001b1a0000c13d00001bec0000013d0000002003000039000000000062004b00001b2d0000813d0000000302600210000000f80220018f0000079b0220027f0000079b0220016700000000037300190000000003030433000000000223016f000000000021041b000000010160021000000001011001bf000000040300002900001b410000013d0000002003000039000000000062004b00001b3c0000813d0000000302600210000000f80220018f0000079b0220027f0000079b0220016700000000037300190000000003030433000000000223016f000000000021041b000000010160021000000001011001bf000000040300002900001b960000013d0000000001000019000000000013041b0000000501000029000000000501043300000000740504340000075b0040009c00001c0f0000213d0000000106300039000000000106041a000000010010019000000001031002700000007f0330618f0000001f0030008c00000000020000390000000102002039000000000121013f000000010010019000001c150000c13d000000200030008c000500000006001d000600000004001d000300000005001d00001b760000413d000200000003001d000400000007001d000000000060043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000001c070000613d00000006040000290000001f024000390000000502200270000000200040008c0000000002004019000000000301043b00000002010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000000506000029000000040700002900001b760000813d000000000002041b0000000102200039000000000012004b00001b720000413d000000200040008c00001bfa0000413d000000000060043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000001c070000613d00000006070000290000079902700198000000000101043b000000030800002900001bea0000613d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000050600002900000000058300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b00001b8d0000c13d00001bec0000013d0000000001000019000000000013041b0000000501000029000000000501043300000000740504340000075b0040009c00001c0f0000213d0000000106300039000000000106041a000000010010019000000001031002700000007f0330618f0000001f0030008c00000000020000390000000102002039000000000121013f000000010010019000001c150000c13d000000200030008c000500000006001d000600000004001d000300000005001d00001bcb0000413d000200000003001d000400000007001d000000000060043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000001c070000613d00000006040000290000001f024000390000000502200270000000200040008c0000000002004019000000000301043b00000002010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000000506000029000000040700002900001bcb0000813d000000000002041b0000000102200039000000000012004b00001bc70000413d000000200040008c00001bfa0000413d000000000060043f0000000001000414000007100010009c0000071001008041000000c00110021000000713011001c700008010020000391c3b1c360000040f000000010020019000001c070000613d00000006070000290000079902700198000000000101043b000000030800002900001bea0000613d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000050600002900000000058300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b00001be20000c13d00001bec0000013d00000020030000390000000506000029000000000072004b00001bf60000813d0000000302700210000000f80220018f0000079b0220027f0000079b0220016700000000038300190000000003030433000000000223016f000000000021041b000000010170021000000001011001bf000000000016041b000000000001042d000000000004004b00001c050000613d00000003014002100000079b0110027f0000079b011001670000000002070433000000000112016f0000000102400210000000000121019f000000000016041b000000000001042d000000000006041b000000000001042d000000000100001900001c3d000104300000078801000041000000000010043f0000003201000039000000040010043f000007590100004100001c3d000104300000078801000041000000000010043f0000004101000039000000040010043f000007590100004100001c3d000104300000078801000041000000000010043f0000002201000039000000040010043f000007590100004100001c3d00010430000000000001042f000007100010009c00000710010080410000004001100210000007100020009c00000710020080410000006002200210000000000112019f0000000002000414000007100020009c0000071002008041000000c002200210000000000112019f00000718011001c700008010020000391c3b1c360000040f000000010020019000001c2f0000613d000000000101043b000000000001042d000000000100001900001c3d0001043000001c34002104210000000102000039000000000001042d0000000002000019000000000001042d00001c39002104230000000102000039000000000001042d0000000002000019000000000001042d00001c3b0000043200001c3c0001042e00001c3d000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff50656e6775696e204f6e636861696e000000000000000000000000000000000050656e676f0000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000020000000000000000000000000ffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff02000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e000000002000000000000000000000000000000400000010000000000000000000000000000000000000000000000000000000000000000000000000078c91ed500000000000000000000000000000000000000000000000000000000b88d4fdd00000000000000000000000000000000000000000000000000000000cdcd897d00000000000000000000000000000000000000000000000000000000e985e9c400000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000ec6be06e00000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000cdcd897e00000000000000000000000000000000000000000000000000000000e54f26ef00000000000000000000000000000000000000000000000000000000c45a015400000000000000000000000000000000000000000000000000000000c45a015500000000000000000000000000000000000000000000000000000000c87b56dd00000000000000000000000000000000000000000000000000000000b88d4fde00000000000000000000000000000000000000000000000000000000c002d23d0000000000000000000000000000000000000000000000000000000095d89b4000000000000000000000000000000000000000000000000000000000a22cb46400000000000000000000000000000000000000000000000000000000a22cb46500000000000000000000000000000000000000000000000000000000a942cccb00000000000000000000000000000000000000000000000000000000b19960e60000000000000000000000000000000000000000000000000000000095d89b4100000000000000000000000000000000000000000000000000000000a204a82f0000000000000000000000000000000000000000000000000000000082260f340000000000000000000000000000000000000000000000000000000082260f35000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000078c91ed6000000000000000000000000000000000000000000000000000000007fc90f820000000000000000000000000000000000000000000000000000000032cb6b0b0000000000000000000000000000000000000000000000000000000042842e0d000000000000000000000000000000000000000000000000000000006352211d000000000000000000000000000000000000000000000000000000006352211e0000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a60000000000000000000000000000000000000000000000000000000042842e0e000000000000000000000000000000000000000000000000000000005bb47808000000000000000000000000000000000000000000000000000000003a602b4c000000000000000000000000000000000000000000000000000000003a602b4d000000000000000000000000000000000000000000000000000000003ccfd60b0000000000000000000000000000000000000000000000000000000032cb6b0c0000000000000000000000000000000000000000000000000000000034aeb56400000000000000000000000000000000000000000000000000000000095ea7b20000000000000000000000000000000000000000000000000000000018160ddc0000000000000000000000000000000000000000000000000000000018160ddd000000000000000000000000000000000000000000000000000000001f05db790000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000095ea7b300000000000000000000000000000000000000000000000000000000143759be0000000000000000000000000000000000000000000000000000000006fdde020000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000081812fc0000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000006d254da08c379a0000000000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000840000008000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000080000000000000000002000000000000000000000000000000000000400000000000000000000000000000000100000000000000000000000000000000000000000000000000000000546f6b656e20494420646f6573206e6f742065786973742e00000000000000000000000000000000000000000000000000000064000000000000000000000000c87b56dd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000000000000000000000000000ffffffffffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002386f26fc100000000000000000000000000ff0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff3fffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000005472616e7366657220746f2073656c6c6572206661696c6564000000000000005472616e7366657220746f20726f79616c7479206661696c6564000000000000d88d8784abeec0ae78979b77142e1e6d4dfff4348003189432d3e22b63ee6a1b496e73756666696369656e74207061796d656e740000000000000000000000004163636573736f7279206973206e6f7420666f722073616c650000000000000017307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31b06307db000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000800000000000000000000000000000000000000000000000000000000000000000ffffffffffffffdf0000000000000000000000000000000000000000000000010000000000000001796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d9553913202000002000000000000000000000000000000040000000000000000000000000000000200000000000000000000000000000000000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef1806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000150b7a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000003ffffffe000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000d1a57ed60000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe02e07630000000000000000000000000000000000000000000000000000000000b562e8dd000000000000000000000000000000000000000000000000000000004d6178206d696e74207065722077616c6c657420726561636865640000000000496e73756666696369656e74207061796d656e7420666f72206d696e74696e670000000000000000000000000000000000000064000000800000000000000000536f6c64206f75740000000000000000000000000000000000000000000000005265656e7472616e637947756172643a207265656e7472616e742063616c6c00c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b000000000000000000000000000000000000000000000000ffffffffffffffbf000000000000000000000000000000000000000000000000ffffffffffffff7fdf2d9b42000000000000000000000000000000000000000000000000000000004e6f7420746865206f776e6572206f662074686973204e46540000000000000052e15ab134f84fe4816b97c4a3d135945e2725295c41f26f23d1180e44bb51004e487b71000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000a000000000000000004163636573736f727920736c6f7420616c72656164792066696c6c65640000008f4eb604000000000000000000000000000000000000000000000000000000004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65729cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f395769746864726177206661696c656400000000000000000000000000000000004e6f7420746865206f776e6572206f662074686973206163636573736f727900ffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff8b150673121b01316e8e9f04c655dcb53717f3ea8192a7606efea46850852934cfb3b942000000000000000000000000000000000000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925cf4700e400000000000000000000000000000000000000000000000000000000405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace01ffc9a7000000000000000000000000000000000000000000000000000000005b5e139f0000000000000000000000000000000000000000000000000000000080ac58cd00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffe0a11481000000000000000000000000000000000000000000000000000000000059c896be00000000000000000000000000000000000000000000000000000000ea553b34000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000de0b6b3a763ffff000000000000000000000000000000000000000000000000fffffffffffffffe00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff300000000000000000000000000000000000000000000000000000000000000020457468000000000000000000000000000000000000000000000000000000006c696c2070656e676f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001bc16d674ec7ffff70656e676f2061726d79000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004563918244f3ffff70656e676f206d696c6c696f6e616972650000000000000000000000000000000000000000000000000000000000000000000000000000008ac7230489e7ffff70656e676f2062696c6c696f6e6169726500000000000000000000000000000066756e636b696e6720726963682070656e676f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003594b59ee5aec9fecbd75e86c433de0acc5505f90c869a26c5c588ac06834bf6

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