ERC-721
Overview
Max Total Supply
3,333 Teddies
Holders
1,855
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Balance
1 TeddiesLoading...
Loading
Loading...
Loading
Loading...
Loading
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:
Teddies
Compiler Version
v0.8.28+commit.7893614a
ZkSolc Version
v1.5.11
Optimization Enabled:
Yes with Mode 3
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// _____ _ _ _ _ // /__ \___ __| | __| (_) ___ ___ | |__ _ _ _ __ _ _ _ __ ___ ___ // / /\/ _ \/ _` |/ _` | |/ _ \/ __| | '_ \| | | | | '_ \| | | | '_ ` _ \ / _ \ // / / | __/ (_| | (_| | | __/\__ \ | |_) | |_| | | | | | |_| | | | | | | (_) | // \/ \___|\__,_|\__,_|_|\___||___/ |_.__/ \__, | |_| |_|\__,_|_| |_| |_|\___/ // |___/ // ******* ******* // ******* ******* // ******* ******* // ******* ******* // *********************** // *********************** // *********************** // *********************** // ********@@@@@@@========@@@@@@@ // ********@@@@@@@========@@@@@@@ // ********@@@@@@@========@@@@@@@ // ********@@@@@@@========@@@@@@@ // ***************=============== // ***************=============== // ***************=============== // ***************=============== // ####################### // ####################### // ####################### // ####################### /** * @title Teddies by numo * @author numo <@numo_0> <[email protected]> */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.28; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import {SignedAllowance} from "./SignedAllowance.sol"; using Strings for uint256; using Strings for uint8; contract Teddies is ERC721Enumerable, Ownable, ReentrancyGuard, ERC2981, SignedAllowance { /// @dev The minting phase has started. error PhaseAlreadyStarted(); /// @dev Token id does not exist. error TokenDoesNotExist(); /// @dev Withdrawal of funds failed. error WithdrawalFailed(); /// @dev Mint count is invalid, must be greater than 0. error InvalidMintCount(); /// @dev Can't mint more than a wallet has allowed. error MintAllowanceReached(); /// @dev Can't mint more than a wallet has allowed. error MintAllowanceReachedSignature(); /// @dev Can't mint more than the max supply. error MaxSupplyReached(); /// @dev When cutting the supply, the new supply must be higher than the current supply. error NewSupplyTooLow(); /// @dev Allowlist mint is not active. error AllowlistMintNotActive(); /// @dev Public mint is not active. error PublicMintNotActive(); /// @dev Contract is sealed and no changes are possible anymore. bool public isContractSealed; uint64 public MAX_SUPPLY = 3333; uint64 public currentSupply; /// @dev Allowlist mint start timestamp. uint40 public ALLOWLIST_MINT_TIMESTAMP; /// @dev Public mint start timestamp. uint40 public PUBLIC_MINT_TIMESTAMP; /// @dev Max amount of public mints per address. uint40 public MAX_PER_ADDRESS_PUBLIC = 1; /// @dev Flag to indicate whether if collection is revealed. bool public isRevealed; uint8 public constant CLASS_A = 1; uint8 public constant CLASS_B = 2; uint8 public constant CLASS_C = 3; /// @dev Mapping of addresses to the amount of allowances minted for whitelisted addresses. mapping(bytes32 => uint256) public allowancesMinted; /// @dev Mapping of addresses to the amount of allowances minted for Class B mints. mapping(bytes32 => uint256) public allowancesMintedClassB; /// @dev Mapping of addresses to the amount of public mints they have done. mapping(address => uint256) public addressPublicMintedCounts; /// @dev Mapping of token ID to its class (1 = A, 2 = B, 3 = C) /// class A = 1/1 CryptoTeddies Holder, class B = Other Teddies NFT Holder, class C = Public & Allowlist mapping(uint256 => uint8) public tokenClass; /// @dev Base URI for a token. string internal baseURI; constructor(address _allowancesSigner) ERC721("Teddies by numo", "Teddies") { ALLOWLIST_MINT_TIMESTAMP = type(uint40).max; PUBLIC_MINT_TIMESTAMP = type(uint40).max; _setDefaultRoyalty(msg.sender, 500); _setAllowancesSigner(_allowancesSigner); } /// @dev Verifies different condition of a mint is eligible. /// @param count Amount of mints /// @param maxPerAddress Amount allowed to mint modifier verifyMintConditions(uint256 count, uint256 maxPerAddress) { if (count == 0) revert InvalidMintCount(); if (count > maxPerAddress) revert MintAllowanceReached(); if (currentSupply + count > MAX_SUPPLY) revert MaxSupplyReached(); _; } /// @dev Checks if the contract is sealed. modifier whenUnsealed() { require(!isContractSealed, "Contract is sealed"); _; } /** * Checks if a certain signature is eligable to mint and updates the counter. * @param _count Amount of mints * @param _nonce The nonce using to validate the signature * @param _signature The signature to check if it is eligable to mint */ function _checkSignature(bool _classB, uint256 _count, uint256 _nonce, bytes memory _signature) internal { // this will throw if the signature is not the right one bytes32 signatureId; uint256 alreadyMinted; signatureId = validateSignature(msg.sender, _nonce, _classB ? CLASS_B : CLASS_C, _signature); alreadyMinted = _classB ? allowancesMintedClassB[signatureId] : allowancesMinted[signatureId]; // verify we don't ask for too many if (alreadyMinted + _count > _nonce) revert MintAllowanceReachedSignature(); // increment the counter of how many were minted for this signature unchecked { if (_classB) { allowancesMintedClassB[signatureId] += _count; } else { allowancesMinted[signatureId] += _count; } } } /// @dev Mints tokens to the founder. /// @param _count Amount of tokens to mint. function founderMint(uint64 _count) external onlyOwner nonReentrant verifyMintConditions(_count, _count) { uint256 newSupply = currentSupply; for (uint64 i = 0; i < _count; i++) { unchecked { _safeMint(msg.sender, ++newSupply); } tokenClass[newSupply] = CLASS_C; } currentSupply = uint64(newSupply); } /// @dev Airdrop tokens to specified addresses /// @param accounts Array of addresses to airdrop to. /// @param _amount Amount of tokens to airdrop. function airdrop(address[] calldata accounts, uint64 _amount) external onlyOwner { uint256 len = accounts.length; if (_amount > 0 && ((currentSupply + len * _amount) > MAX_SUPPLY)) revert MaxSupplyReached(); uint256 newSupply = currentSupply; for (uint64 k = 0; k < len; k++) { for (uint64 i = 0; i < _amount; i++) { unchecked { _safeMint(accounts[k], ++newSupply); } tokenClass[newSupply] = CLASS_A; // Assign Class A during mint } } currentSupply = uint64(newSupply); } /// @dev Allows a user to mint a certain amount of tokens /// This function is only callable after the allowlist minting is active /// @param _classB Whether the allowance is for Class B or not /// @param _count The amount of tokens to mint /// @param _nonce The nonce using to validate the signature /// @param _signature The signature to check if it is eligable to mint function allowlistMint(bool _classB, uint64 _count, uint256 _nonce, bytes memory _signature) external nonReentrant verifyMintConditions(_count, _nonce) { if ( ALLOWLIST_MINT_TIMESTAMP > block.timestamp && block.timestamp < PUBLIC_MINT_TIMESTAMP ) revert AllowlistMintNotActive(); uint256 newSupply = currentSupply; _checkSignature(_classB, _count, _nonce, _signature); for (uint64 i = 0; i < _count; i++) { unchecked { _safeMint(msg.sender, ++newSupply); } // Assign class B if the sender is in the Class B allowlist, otherwise class C if (_classB) { tokenClass[newSupply] = CLASS_B; // Class B } else { tokenClass[newSupply] = CLASS_C; // Class C } } currentSupply = uint64(newSupply); } /// @dev Mints tokens to msg.sender address. /// @param _count Amount of tokens to mint. function publicMint(uint64 _count) external nonReentrant verifyMintConditions(_count, MAX_PER_ADDRESS_PUBLIC) { if (PUBLIC_MINT_TIMESTAMP > block.timestamp) revert PublicMintNotActive(); uint256 newMintCount = addressPublicMintedCounts[msg.sender] + _count; if (newMintCount > MAX_PER_ADDRESS_PUBLIC) revert MintAllowanceReached(); uint256 newSupply = currentSupply; for (uint64 i = 0; i < _count; i++) { unchecked { _safeMint(msg.sender, ++newSupply); } tokenClass[newSupply] = CLASS_C; // Class C } currentSupply = uint64(newSupply); // increment the counter of how many were minted for this address addressPublicMintedCounts[msg.sender] = newMintCount; } /// @dev Returns the remaining allowance for a given signature /// @param _classB Whether the allowance is for Class B or not /// @param _nonce The nonce using to validate the signature /// @param _signature The signature to check if it is eligable to mint function remainingAllowance(bool _classB, uint256 _nonce, bytes memory _signature) external view returns (uint256) { bytes32 signatureId = validateSignature( msg.sender, _nonce, _classB ? CLASS_B : CLASS_C, _signature ); uint256 alreadyMinted = _classB ? allowancesMintedClassB[signatureId] : allowancesMinted[signatureId]; return _nonce - alreadyMinted; } /// @dev The name of the token. function name() public pure override returns (string memory) { return "Teddies by numo"; } /// @dev The symbol of the token. function symbol() public pure override returns (string memory) { return "Teddies"; } /// @dev Get the class of a token ID. function getTokenClass(uint256 tokenId) external view returns (uint8) { if (_exists(tokenId) == false) { revert TokenDoesNotExist(); } return tokenClass[tokenId]; } /// @dev Get the classes of a batch of token IDs. /// @param tokenIds The list of token IDs. /// @return An array of class IDs for the provided token IDs. function getTokenClasses(uint256[] calldata tokenIds) external view returns (uint8[] memory) { uint8[] memory classes = new uint8[](tokenIds.length); for (uint256 i = 0; i < tokenIds.length; i++) { if (!_exists(tokenIds[i])) revert TokenDoesNotExist(); classes[i] = tokenClass[tokenIds[i]]; } return classes; } /// @dev Returns the URI for a token ID. /// @param tokenId The token ID. /// @return The URI for the token. function tokenURI(uint256 tokenId) public view override returns (string memory) { if (!_exists(tokenId)) revert TokenDoesNotExist(); // Fetch the class of the token uint8 tokenClassId = tokenClass[tokenId]; if (!isRevealed) { // Return the URI for the class return string( abi.encodePacked( baseURI, "unrevealed/", tokenClassId.toString() ) ); } return string( abi.encodePacked( baseURI, tokenClassId.toString(), "/", tokenId.toString() ) ); } // ========================================================================= // Owner Functions // ========================================================================= /// @dev The baseURI for a token. function setBaseURI(string memory _baseURI) external onlyOwner { baseURI = _baseURI; } /// @dev set timestamp for a phase to start minting allowlist or public function setPhaseTimestamp(uint256 _phase, uint40 _newTimestamp) external onlyOwner { if (_phase == 0) { if (block.timestamp >= ALLOWLIST_MINT_TIMESTAMP) { revert PhaseAlreadyStarted(); } ALLOWLIST_MINT_TIMESTAMP = _newTimestamp; } else { if (block.timestamp >= PUBLIC_MINT_TIMESTAMP) { revert PhaseAlreadyStarted(); } PUBLIC_MINT_TIMESTAMP = _newTimestamp; } } /// @dev Sets allowance signer, this can be used to revoke all unused allowances already out there /// @param _newSigner The new signer function setAllowancesSigner(address _newSigner) external onlyOwner { _setAllowancesSigner(_newSigner); } /// @dev Reveals the collection function revealCollection() external onlyOwner { isRevealed = true; } /// @dev Seals the contract, so no changes are possible anymore. function sealContract() external whenUnsealed onlyOwner { isContractSealed = true; } /// @dev Sets the max supply of tokens. function setMaxSupply(uint64 _max) public whenUnsealed onlyOwner { if (_max < currentSupply) { revert NewSupplyTooLow(); } MAX_SUPPLY = _max; } /// @dev Sets the max amount of mints per address in public phase. function setMaxPerAddressPublic(uint40 _max) public whenUnsealed onlyOwner { MAX_PER_ADDRESS_PUBLIC = _max; } /// @dev Set default royalty function setDefaultRoyalty(address receiver,uint96 feeNumerator) external onlyOwner { _setDefaultRoyalty(receiver, feeNumerator); } /// @dev Deletes the default royalty. function deleteDefaultRoyalty() external onlyOwner { _deleteDefaultRoyalty(); } /// @dev Withdraws any ETH accidentally sent to the contract. function withdraw() public onlyOwner { (bool success, ) = msg.sender.call{value: address(this).balance}(""); if (!success) revert WithdrawalFailed(); } function supportsInterface( bytes4 interfaceId ) public view virtual override(ERC721Enumerable, ERC2981) returns (bool) { return super.supportsInterface(interfaceId); } }
//SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import '@openzeppelin/contracts/utils/cryptography/ECDSA.sol'; import {Strings} from "@openzeppelin/contracts/utils/Strings.sol"; /// @title SignedAllowance /// @author Simon Fremaux (@dievardump) /// @notice This contract is used to sign allowances for the Teddies by numo (edits by numo) contract SignedAllowance { using ECDSA for bytes32; // list of already used allowances mapping(bytes32 => bool) public usedAllowances; // address used to sign the allowances address private _allowancesSigner; /// @notice Helper to know allowancesSigner address /// @return the allowance signer address function allowancesSigner() public view virtual returns (address) { return _allowancesSigner; } /// @notice Helper that creates the message that signer needs to sign to allow a mint /// this is usually also used when creating the allowances, to ensure "message" /// is the same /// @param account the account to allow /// @param nonce the nonce /// @param classB the classB /// @return the message to sign function createMessage(address account, uint256 nonce, uint8 classB) public view returns (bytes32) { return keccak256(abi.encode(account, nonce, classB, address(this))); } /// @notice Helper that creates a list of messages that signer needs to sign to allow mintings /// @param accounts the accounts to allow /// @param nonces the corresponding nonces /// @param classBs the classBs /// @return messages the messages to sign function createMessages(address[] memory accounts, uint256[] memory nonces, uint8[] memory classBs) external view returns (bytes32[] memory messages) { require(accounts.length == nonces.length, '!LENGTH_MISMATCH!'); messages = new bytes32[](accounts.length); for (uint256 i; i < accounts.length; i++) { messages[i] = createMessage(accounts[i], nonces[i], classBs[i]); } } /// @notice This function verifies that the current request is valid /// @dev It ensures that _allowancesSigner signed a message containing (account, nonce, address(this)) /// and that this message was not already used /// @param account the account the allowance is associated to /// @param nonce the nonce associated to this allowance /// @param signature the signature by the allowance signer wallet /// @return the message to mark as used function validateSignature( address account, uint256 nonce, uint8 classB, bytes memory signature ) public view returns (bytes32) { return _validateSignature(account, nonce, classB, signature, allowancesSigner()); } /// @dev It ensures that signer signed a message containing (account, nonce, address(this)) /// and that this message was not already used /// @param account the account the allowance is associated to /// @param nonce the nonce associated to this allowance /// @param signature the signature by the allowance signer wallet /// @param signer the signer /// @return the message to mark as used function _validateSignature( address account, uint256 nonce, uint8 classB, bytes memory signature, address signer ) internal view returns (bytes32) { bytes32 message = createMessage(account, nonce, classB) .toEthSignedMessageHash(); // verifies that the sha3(account, nonce, address(this)) has been signed by signer require(message.recover(signature) == signer, '!INVALID_SIGNATURE!'); // verifies that the allowances was not already used require(usedAllowances[message] == false, '!ALREADY_USED!'); return message; } /// @notice internal function that verifies an allowance and marks it as used /// this function throws if signature is wrong or this nonce for this user has already been used /// @param account the account the allowance is associated to /// @param nonce the nonce /// @param signature the signature by the allowance wallet function _useAllowance( address account, uint256 nonce, uint8 classB, bytes memory signature ) internal { bytes32 message = validateSignature(account, nonce, classB, signature); usedAllowances[message] = true; } /// @notice Allows to change the allowance signer. This can be used to revoke any signed allowance not already used /// @param newSigner the new signer address function _setAllowancesSigner(address newSigner) internal { _allowancesSigner = newSigner; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/common/ERC2981.sol) pragma solidity ^0.8.0; import "../../interfaces/IERC2981.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `tokenId` must be already minted. * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../Strings.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; import "../utils/introspection/IERC165.sol"; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
{ "optimizer": { "enabled": true, "mode": "3" }, "evmVersion": "paris", "outputSelection": { "*": { "*": [ "abi" ] } }, "detectMissingLibraries": false, "forceEVMLA": false, "enableEraVMExtensions": true, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_allowancesSigner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AllowlistMintNotActive","type":"error"},{"inputs":[],"name":"InvalidMintCount","type":"error"},{"inputs":[],"name":"MaxSupplyReached","type":"error"},{"inputs":[],"name":"MintAllowanceReached","type":"error"},{"inputs":[],"name":"MintAllowanceReachedSignature","type":"error"},{"inputs":[],"name":"NewSupplyTooLow","type":"error"},{"inputs":[],"name":"PhaseAlreadyStarted","type":"error"},{"inputs":[],"name":"PublicMintNotActive","type":"error"},{"inputs":[],"name":"TokenDoesNotExist","type":"error"},{"inputs":[],"name":"WithdrawalFailed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ALLOWLIST_MINT_TIMESTAMP","outputs":[{"internalType":"uint40","name":"","type":"uint40"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CLASS_A","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CLASS_B","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CLASS_C","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_ADDRESS_PUBLIC","outputs":[{"internalType":"uint40","name":"","type":"uint40"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_TIMESTAMP","outputs":[{"internalType":"uint40","name":"","type":"uint40"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressPublicMintedCounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint64","name":"_amount","type":"uint64"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"allowancesMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"allowancesMintedClassB","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowancesSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_classB","type":"bool"},{"internalType":"uint64","name":"_count","type":"uint64"},{"internalType":"uint256","name":"_nonce","type":"uint256"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"allowlistMint","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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint8","name":"classB","type":"uint8"}],"name":"createMessage","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"nonces","type":"uint256[]"},{"internalType":"uint8[]","name":"classBs","type":"uint8[]"}],"name":"createMessages","outputs":[{"internalType":"bytes32[]","name":"messages","type":"bytes32[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentSupply","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deleteDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_count","type":"uint64"}],"name":"founderMint","outputs":[],"stateMutability":"nonpayable","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":"getTokenClass","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"getTokenClasses","outputs":[{"internalType":"uint8[]","name":"","type":"uint8[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isContractSealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","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":"uint64","name":"_count","type":"uint64"}],"name":"publicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_classB","type":"bool"},{"internalType":"uint256","name":"_nonce","type":"uint256"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"remainingAllowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":[],"name":"sealContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newSigner","type":"address"}],"name":"setAllowancesSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint40","name":"_max","type":"uint40"}],"name":"setMaxPerAddressPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_max","type":"uint64"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_phase","type":"uint256"},{"internalType":"uint40","name":"_newTimestamp","type":"uint40"}],"name":"setPhaseTimestamp","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":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenClass","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"usedAllowances","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint8","name":"classB","type":"uint8"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"validateSignature","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
9c4d535b0000000000000000000000000000000000000000000000000000000000000000010007c3be1d707bb80e4ef92d818e7e002fead8ee9ad81702eec474750e70120000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000002000000000000000000000000047d6f870b98b440ba54b047f1a27021dbf25ad0c
Deployed Bytecode
0x0002000000000002000e00000000000200010000000103550000006003100270000006df0030019d0000008004000039000000400040043f000006df033001970000000100200190000000250000c13d000000040030008c000000470000413d000000000201043b000000e004200270000006f90040009c000000490000213d000007210040009c0000005d0000213d000007350040009c000000b20000213d0000073f0040009c000002180000a13d000007400040009c000003200000213d000007430040009c0000042d0000613d000007440040009c000000470000c13d000000240030008c000000470000413d0000000002000416000000000002004b000000470000c13d0000000401100370000000000101043b1b7915790000040f000008420000013d0000000002000416000000000002004b000000470000c13d0000001f02300039000006e0022001970000008002200039000000400020043f0000001f0530018f000006e1063001980000008002600039000000350000613d000000000701034f000000007807043c0000000004840436000000000024004b000000310000c13d000000000005004b000000420000613d000000000161034f0000000304500210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000200030008c000000470000413d000000800600043d000006e20060009c000000790000a13d000000000100001900001b7b00010430000000000231034f000006fa0040009c000000960000213d0000070e0040009c000000cc0000213d000007180040009c000002400000a13d000007190040009c0000032e0000213d0000071c0040009c000004360000613d0000071d0040009c000000470000c13d0000000001000416000000000001004b000000470000c13d0000000101000039000000800010043f0000074c0100004100001b7a0001042e000007220040009c000000d90000213d0000072c0040009c000002630000a13d0000072d0040009c0000034a0000213d000007300040009c0000043d0000613d000007310040009c000000470000c13d0000000001000416000000000001004b000000470000c13d0000000a01000039000000000101041a000006e2011001970000000002000411000000000021004b000000000100003900000001010060391b7915660000040f0000001001000039000000000201041a000007900220019700000791022001c7000000000021041b000000000100001900001b7a0001042e000000400500043d000006e30050009c000000900000213d0000004001500039000000400010043f0000000f010000390000000001150436000006e4020000410000000000210435000000400700043d000006e30070009c000000900000213d0000004002700039000000400020043f00000007020000390000000003270436000006e502000041000b00000003001d00000000002304350000000002050433000c00000002001d000006e60020009c0000041e0000a13d0000078a01000041000000000010043f0000004101000039000000040010043f0000078b0100004100001b7b00010430000006fb0040009c000001470000213d000007050040009c000002700000a13d000007060040009c000003620000213d000007090040009c0000045c0000613d0000070a0040009c000000470000c13d000000240030008c000000470000413d0000000002000416000000000002004b000000470000c13d0000000401100370000000000101043b000000000010043f0000001401000039000000200010043f000000400200003900000000010000191b791b5a0000040f000000000101041a000000ff0110018f000000800010043f0000074c0100004100001b7a0001042e000007360040009c000002850000a13d000007370040009c000003ba0000213d0000073a0040009c000004770000613d0000073b0040009c000000470000c13d0000000001000416000000000001004b000000470000c13d00000000010300191b7915440000040f000c00000001001d000b00000002001d0000000002030019000a00000003001d00000000010004111b7917d10000040f1b7915c00000040f0000000c010000290000000b020000290000000a030000291b7918660000040f000000000100001900001b7a0001042e0000070f0040009c000002be0000a13d000007100040009c000003e00000213d000007130040009c000004900000613d000007140040009c000000470000c13d0000000001000416000000000001004b000000470000c13d0000000a01000039000004940000013d000007230040009c000002f20000a13d000007240040009c000003eb0000213d000007270040009c000004990000613d000007280040009c000000470000c13d000000240030008c000000470000413d0000000002000416000000000002004b000000470000c13d0000000402100370000000000502043b000006e60050009c000000470000213d0000002302500039000000000032004b000000470000813d0000000406500039000000000261034f000000000202043b000006e60020009c000000900000213d0000001f07200039000007b2077001970000003f07700039000007b2077001970000074e0070009c000000900000213d00000024055000390000008007700039000000400070043f000000800020043f0000000005520019000000000035004b000000470000213d0000002003600039000000000331034f000007b2052001980000001f0620018f000000a0015000390000010b0000613d000000a007000039000000000803034f000000008908043c0000000007970436000000000017004b000001070000c13d000000000006004b000001180000613d000000000353034f0000000305600210000000000601043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f0000000000310435000000a00120003900000000000104350000000a01000039000000000101041a000006e2011001970000000002000411000000000021004b00000b210000c13d000000800200043d000006e60020009c000000900000213d0000001501000039000000000501041a000000010050019000000001035002700000007f0330618f0000001f0030008c00000000060000390000000106002039000000000565013f0000000100500190000004270000c13d000000200030008c0000013f0000413d000000000010043f0000001f052000390000000505500270000007880550009a000000200020008c00000774050040410000001f033000390000000503300270000007880330009a000000000035004b0000013f0000813d000000000005041b0000000105500039000000000035004b0000013b0000413d0000001f0020008c00000d7a0000a13d000000000010043f000007b20420019800000ee00000c13d000000a005000039000007740300004100000eee0000013d000006fc0040009c000002ff0000a13d000006fd0040009c000003f80000213d000007000040009c000004a00000613d000007010040009c000000470000c13d000000640030008c000000470000413d0000000004000416000000000004004b000000470000c13d0000000404100370000000000404043b000006e60040009c000000470000213d0000002305400039000000000035004b000000470000813d0000000405400039000000000551034f000000000605043b000006e60060009c000000900000213d00000005056002100000003f075000390000074d077001970000074e0070009c000000900000213d0000008007700039000000400070043f000000800060043f00000024044000390000000005450019000000000035004b000000470000213d000000000006004b000001770000613d000000a006000039000000000741034f000000000707043b000006e20070009c000000470000213d00000000067604360000002004400039000000000054004b0000016f0000413d0000002404100370000000000404043b000006e60040009c000000470000213d0000002305400039000000000035004b00000000060000190000074f060080410000074f05500197000000000005004b00000000070000190000074f070040410000074f0050009c000000000706c019000000000007004b000000470000c13d0000000405400039000000000551034f000000000505043b000006e60050009c000000900000213d00000005065002100000003f076000390000074d07700197000000400800043d0000000007780019000a00000008001d000000000087004b00000000080000390000000108004039000006e60070009c000000900000213d0000000100800190000000900000c13d000000400070043f0000000a070000290000000007570436000900000007001d00000024044000390000000006460019000000000036004b000000470000213d000000000005004b000001ab0000613d0000000a05000029000000000741034f000000000707043b000000200550003900000000007504350000002004400039000000000064004b000001a40000413d0000004404100370000000000404043b000006e60040009c000000470000213d0000002305400039000000000035004b00000000060000190000074f060080410000074f05500197000000000005004b00000000070000190000074f070040410000074f0050009c000000000706c019000000000007004b000000470000c13d0000000405400039000000000551034f000000000505043b000006e60050009c000000900000213d00000005065002100000003f076000390000074d07700197000000400800043d0000000007780019000800000008001d000000000087004b00000000080000390000000108004039000006e60070009c000000900000213d0000000100800190000000900000c13d000000400070043f00000008070000290000000007570436000700000007001d00000024044000390000000006460019000000000036004b000000470000213d000000000005004b000001e10000613d0000000803000029000000000541034f000000000505043b000000ff0050008c000000470000213d000000200330003900000000005304350000002004400039000000000064004b000001d80000413d0000000a010000290000000003010433000000800100043d000000000031004b000011f50000c13d000006e60010009c000000900000213d00000005031002100000003f043000390000074d04400197000000400500043d0000000004450019000600000005001d000000000054004b00000000050000390000000105004039000006e60040009c000000900000213d0000000100500190000000900000c13d000000400040043f00000006040000290000000001140436000500000001001d0000001f0130018f000000000003004b000002020000613d00000005040000290000000003340019000000002502043c0000000004540436000000000034004b000001fe0000c13d000000000001004b000000800100043d000000000001004b00000006030000290000125b0000c13d000000400100043d00000020020000390000000002210436000000000303043300000000003204350000004002100039000000000003004b0000073b0000613d000000000400001900000006060000290000002006600039000000000506043300000000025204360000000104400039000000000034004b000002110000413d0000073b0000013d000007450040009c000006ea0000613d000007460040009c000005800000613d000007470040009c000000470000c13d000000440030008c000000470000413d0000000002000416000000000002004b000000470000c13d0000000402100370000000000202043b000006e20020009c000000470000213d0000002401100370000000000101043b000007a40010009c000000470000213d0000000a03000039000000000303041a000006e2033001970000000004000411000000000043004b0000077b0000c13d000007a401100197000027110010008c000009f70000413d000006f701000041000000800010043f0000002001000039000000840010043f0000002a01000039000000a40010043f000007a501000041000000c40010043f000007a601000041000000e40010043f000007540100004100001b7b000104300000071e0040009c000006fe0000613d0000071f0040009c000006590000613d000007200040009c000000470000c13d000000240030008c000000470000413d0000000002000416000000000002004b000000470000c13d0000000401100370000000000101043b000600000001001d000006e60010009c000000470000213d0000000b02000039000000000102041a000000020010008c000005030000613d0000000201000039000000000012041b0000000602000029000000000002004b000009250000613d0000001001000039000000000301041a00000090013002700000074801100197000000000012004b00000a030000a13d0000078401000041000000000010043f0000076d0100004100001b7b00010430000007320040009c000007440000613d000007330040009c000006720000613d000007340040009c000000470000c13d0000000001000416000000000001004b000000470000c13d0000000f01000039000000000101041a000000a801100270000006c60000013d0000070b0040009c0000075f0000613d0000070c0040009c0000068e0000613d0000070d0040009c000000470000c13d0000000001000416000000000001004b000000470000c13d0000000a01000039000000000101041a000006e2011001970000000002000411000000000021004b000000000100003900000001010060391b7915660000040f0000000c01000039000000000001041b000000000100001900001b7a0001042e0000073c0040009c000007840000613d0000073d0040009c000006ad0000613d0000073e0040009c000000470000c13d000000440030008c000000470000413d0000000002000416000000000002004b000000470000c13d0000000402100370000000000202043b000006e60020009c000000470000213d0000002304200039000000000034004b000000470000813d0000000404200039000000000441034f000000000404043b000400000004001d000006e60040009c000000470000213d000300240020003d000000040200002900000005022002100000000302200029000000000032004b000000470000213d0000002401100370000000000101043b000500000001001d000006e60010009c000000470000213d0000000a01000039000000000101041a000006e2011001970000000002000411000000000021004b0000077b0000c13d0000001001000039000000000101041a000c06e60010019b000000050000006b00000cc40000c13d000000040000006b00000cd70000613d00000000020000190000000403000029000006e602200197000006e60020009c000013250000613d0000000102200039000000000032004b000002b70000413d00000cd70000013d000007150040009c0000078c0000613d000007160040009c000006c10000613d000007170040009c000000470000c13d000000440030008c000000470000413d0000000002000416000000000002004b000000470000c13d0000000402100370000000000202043b0000002401100370000000000101043b000c00000001001d000007480010009c000000470000213d0000000a01000039000000000101041a000006e2011001970000000003000411000000000031004b0000077b0000c13d0000001001000039000000000101041a000b00000001001d00000756010000410000000000100443000000000002004b000009590000c13d0000000001000414000006df0010009c000006df01008041000000c00110021000000757011001c70000800b020000391b791b740000040f0000000100200190000014a80000613d000000000101043b0000000b0200002900000040022002700000074802200197000000000021004b00000a110000813d0000078102000041000007820100004100000040030000390000001005000039000000000405041a0000096c0000013d000007290040009c000007930000613d0000072a0040009c000006ca0000613d0000072b0040009c000000470000c13d0000000001000416000000000001004b000000470000c13d0000001001000039000000000101041a0000077000100198000006bc0000013d000007020040009c000007a40000613d000007030040009c000006dc0000613d000007040040009c000000470000c13d000000440030008c000000470000413d0000000002000416000000000002004b000000470000c13d0000000402100370000000000202043b000006e20020009c000000470000213d0000002401100370000000000101043b000c00000001001d000006e20010009c000000470000213d000000000020043f0000000501000039000000200010043f000000400200003900000000010000191b791b5a0000040f0000000c020000291b7915560000040f000000000101041a000000ff001001900000000001000039000000010100c039000008420000013d000007410040009c000004bd0000613d000007420040009c000000470000c13d000000240030008c000000470000413d0000000002000416000000000002004b000000470000c13d0000000401100370000000000101043b000000000010043f0000001201000039000006e50000013d0000071a0040009c000004e40000613d0000071b0040009c000000470000c13d0000000001000416000000000001004b000000470000c13d0000000a01000039000000000201041a000006e2032001970000000005000411000000000053004b0000077b0000c13d000006ec02200197000000000021041b0000000001000414000006df0010009c000006df01008041000000c001100210000006ed011001c70000800d020000390000000303000039000006ee0400004100000000060000191b791b6f0000040f0000000100200190000000470000613d000008e00000013d0000072e0040009c000004ef0000613d0000072f0040009c000000470000c13d0000000001000416000000000001004b000000470000c13d00000000010300191b7915440000040f000c00000001001d000b00000002001d000a00000003001d000000400100043d000900000001001d00000020020000391b7914d60000040f000000090400002900000000000404350000000c010000290000000b020000290000000a030000291b7916660000040f000000000100001900001b7a0001042e000007070040009c0000050d0000613d000007080040009c000000470000c13d000000240030008c000000470000413d0000000002000416000000000002004b000000470000c13d0000000401100370000000000101043b000c00000001001d000000000010043f0000000201000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b000000000101041a000006e2001001980000068a0000613d0000000c01000029000000000010043f0000001401000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b000000000101041a000000ff0110018f0000001002000039000000000202041a0000077000200198000009c30000c13d000000000001004b00000a8d0000c13d000000400200043d000006e30020009c000000900000213d0000004001200039000000400010043f000000200120003900000773030000410000000000310435000000010100003900000000001204350000001506000039000000000506041a000000010750019000000001035002700000007f0330618f0000001f0030008c00000000010000390000000101002039000000000115013f0000000100100190000004270000c13d000000400100043d0000002004100039000000000007004b00000d670000613d000000000060043f000000000003004b00000d690000613d000007740500004100000000060000190000000007460019000000000805041a000000000087043500000001055000390000002006600039000000000036004b000003b20000413d00000d690000013d000007380040009c000005170000613d000007390040009c000000470000c13d000000840030008c000000470000413d0000000002000416000000000002004b000000470000c13d0000000402100370000000000202043b000c00000002001d000006e20020009c000000470000213d0000002402100370000000000202043b000b00000002001d0000004402100370000000000202043b000a00000002001d000000ff0020008c000000470000213d0000006401100370000000000101043b000006e60010009c000000470000213d000000040110003900000000020300191b7914e80000040f0000000f02000039000000000202041a0000000004010019000006e2052001970000000c010000290000000b020000290000000a030000291b7919ff0000040f000008420000013d000007110040009c000005590000613d000007120040009c000000470000c13d0000000001000416000000000001004b000000470000c13d0000001001000039000000000101041a0000006801100270000005130000013d000007250040009c0000056d0000613d000007260040009c000000470000c13d000000240030008c000000470000413d0000000002000416000000000002004b000000470000c13d0000000401100370000000000101043b1b7916040000040f000008420000013d000006fe0040009c000005740000613d000006ff0040009c000000470000c13d000000240030008c000000470000413d0000000002000416000000000002004b000000470000c13d0000000401100370000000000101043b000c00000001001d000007480010009c000000470000213d0000000f01000039000000000101041a0000074900100198000000000100003900000001010060391b79162b0000040f0000000a01000039000000000101041a000006e2011001970000000002000411000000000021004b000000000100003900000001010060391b7915660000040f0000000c0100002900000090011002100000074a011001970000001002000039000000000302041a0000074b03300197000000000113019f000000000012041b000000000100001900001b7a0001042e000000000200041a000000010420019000000001032002700000007f0330618f0000001f0030008c00000000020000390000000102002039000000000024004b000007f80000613d0000078a01000041000000000010043f0000002201000039000000040010043f0000078b0100004100001b7b000104300000000001000416000000000001004b000000470000c13d000000c001000039000000400010043f0000000f01000039000000800010043f000006e401000041000005610000013d0000000001000416000000000001004b000000470000c13d0000001001000039000000000101041a0000009001100270000005130000013d0000000001000416000000000001004b000000470000c13d0000000a01000039000000000101041a000006e2011001970000000002000411000000000021004b0000077b0000c13d00000792010000410000000000100443000000000100041000000004001004430000000001000414000006df0010009c000006df01008041000000c00110021000000765011001c70000800a020000391b791b740000040f0000000100200190000014a80000613d000000000301043b0000000001000414000006df0010009c000006df01008041000000c001100210000000000003004b000008d60000c13d0000000002000411000008da0000013d000000840030008c000000470000413d0000000002000416000000000002004b000000470000c13d0000000402100370000000000202043b000c00000002001d000006e20020009c000000470000213d0000002402100370000000000202043b000b00000002001d000006e20020009c000000470000213d0000006402100370000000000202043b000006e60020009c000000470000213d0000004401100370000000000101043b000a00000001001d000000040120003900000000020300191b7914e80000040f00000000040100190000035c0000013d000000240030008c000000470000413d0000000002000416000000000002004b000000470000c13d0000000401100370000000000101043b000c00000001001d000006e20010009c000000470000213d0000000a01000039000000000101041a000006e2011001970000000002000411000000000021004b000000000100003900000001010060391b7915660000040f0000000f01000039000000000201041a000006ec022001970000000c022001af000000000021041b000000000100001900001b7a0001042e0000000001000416000000000001004b000000470000c13d0000000f01000039000000000101041a000006e201100197000000800010043f0000074c0100004100001b7a0001042e0000000001000416000000000001004b000000470000c13d0000000f01000039000000000101041a0000074900100198000006bc0000013d000000240030008c000000470000413d0000000002000416000000000002004b000000470000c13d0000000401100370000000000601043b000006e20060009c000000470000213d0000000a01000039000000000201041a000006e2032001970000000005000411000000000053004b0000077b0000c13d000000000006004b000009080000c13d000006f701000041000000800010043f0000002001000039000000840010043f0000002601000039000000a40010043f0000075201000041000000c40010043f0000075301000041000000e40010043f000007540100004100001b7b00010430000000440030008c000000470000413d0000000002000416000000000002004b000000470000c13d0000000402100370000000000202043b000c00000002001d000006e20020009c000000470000213d0000002401100370000000000101043b000b00000001001d000000000010043f0000000201000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b000000000101041a000006e201100198000009140000c13d000000400100043d0000006402100039000007a20300004100000000003204350000004402100039000007a30300004100000000003204350000002402100039000000290300003900000a220000013d000000240030008c000000470000413d0000000002000416000000000002004b000000470000c13d0000000401100370000000000101043b000006e20010009c000000470000213d1b79163f0000040f000008420000013d000000240030008c000000470000413d0000000002000416000000000002004b000000470000c13d0000000401100370000000000101043b000600000001001d000006e60010009c000000470000213d0000000a01000039000000000101041a000b06e20010019b00000000010004110000000b0010006b0000077b0000c13d0000000b02000039000000000102041a000000020010008c000009200000c13d000006f701000041000000800010043f0000002001000039000000840010043f0000001f01000039000000a40010043f0000076f01000041000000c40010043f000007790100004100001b7b000104300000000001000416000000000001004b000000470000c13d0000001001000039000000000101041a00000040011002700000074801100197000000800010043f0000074c0100004100001b7a0001042e000000440030008c000000470000413d0000000002000416000000000002004b000000470000c13d0000002402100370000000000202043b000c00000002001d0000000401100370000000000101043b000000000010043f0000000d01000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000400200043d000b00000002001d000006e30020009c000000900000213d000000000101043b0000000b040000290000004002400039000000400020043f000000000101041a0000002003400039000000a0021002700000000000230435000006e20110019800000000001404350000054a0000c13d000000400100043d000b00000001001d000006e30010009c000000900000213d0000000b040000290000004001400039000000400010043f0000000c01000039000000000101041a0000002003400039000000a0021002700000000000230435000006e20110019700000000001404350000000c010000291b7915b20000040f0000000b020000290000000002020433000027100110011a000000400300043d00000020043000390000000000140435000006e2012001970000000000130435000006df0030009c000006df03008041000000400130021000000799011001c700001b7a0001042e0000000001000416000000000001004b000000470000c13d000000c001000039000000400010043f0000000701000039000000800010043f000006e501000041000000a00010043f0000002001000039000000c00010043f0000008001000039000000e0020000391b7915320000040f000000c00110008a000006df0010009c000006df0100804100000060011002100000077d011001c700001b7a0001042e0000000001000416000000000001004b000000470000c13d0000000201000039000000800010043f0000074c0100004100001b7a0001042e000000240030008c000000470000413d0000000002000416000000000002004b000000470000c13d0000000401100370000000000101043b000006e20010009c000000470000213d000000000010043f0000001301000039000006e50000013d000000640030008c000000470000413d0000000002000416000000000002004b000000470000c13d0000000402100370000000000402043b000000000004004b0000000002000039000000010200c039000c00000004001d000000000024004b000000470000c13d0000002402100370000000000202043b000b00000002001d0000004402100370000000000402043b000006e60040009c000000470000213d0000002302400039000000000032004b000000470000813d0000000405400039000000000251034f000000000202043b000006e60020009c000000900000213d0000001f07200039000007b2077001970000003f07700039000007b2077001970000074e0070009c000000900000213d00000024044000390000008007700039000000400070043f000000800020043f0000000004420019000000000034004b000000470000213d0000002003500039000000000331034f000007b2042001980000001f0520018f000000a001400039000005b50000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000016004b000005b10000c13d000000000005004b000005c20000613d000000000343034f0000000304500210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000000a00120003900000000000104350000000f01000039000000000101041a000a00000001001d000000400100043d0000008002100039000000000300041000000000003204350000000c0000006b000000020200003900000003020060390000006003100039000000000023043500000040021000390000000b030000290000000000320435000000800200003900000000022104360000000003000411000006e2033001970000000000320435000007510010009c000000900000213d000000a003100039000000400030043f000006df0020009c000006df0200804100000040022002100000000001010433000006df0010009c000006df010080410000006001100210000000000121019f0000000002000414000006df0020009c000006df02008041000000c002200210000000000112019f000006ed011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000301043b000000400100043d0000002002100039000007580400004100000000004204350000003c0410003900000000003404350000003c030000390000000000310435000007590010009c000000900000213d0000006003100039000000400030043f000006df0020009c000006df0200804100000040022002100000000001010433000006df0010009c000006df010080410000006001100210000000000121019f0000000002000414000006df0020009c000006df02008041000000c002200210000000000112019f000006ed011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b000900000001001d000000800100043d000000410010008c000010840000613d000000400010008c0000112e0000c13d000000c00100043d0000075a021001970000075b0020009c000010870000213d000000400300043d0000006004300039000000a00500043d000000000024043500000040023000390000000000520435000000ff011002700000001b011000390000002002300039000000000012043500000009010000290000000000130435000000000000043f000006df0030009c000006df0300804100000040013002100000000002000414000006df0020009c000006df02008041000000c002200210000000000112019f0000075c011001c700000001020000391b791b740000040f0000006003100270000006df03300197000000200030008c000000200400003900000000040340190000001f0540018f00000020044001900000063e0000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b0000063a0000c13d000000000005004b0000064b0000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f000000000054043500000001002001900000116a0000c13d0000001f0530018f000006e106300198000000400200043d0000000004620019000011e20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000006540000c13d000011e20000013d0000000001000416000000000001004b000000470000c13d0000000f01000039000000000101041a000c00000001001d0000074900100198000000000100003900000001010060391b79162b0000040f0000000a01000039000000000101041a000006e2011001970000000002000411000000000021004b000000000100003900000001010060391b7915660000040f0000000c01000029000007850110019700000786011001c70000000f02000039000000000012041b000000000100001900001b7a0001042e000000240030008c000000470000413d0000000002000416000000000002004b000000470000c13d0000000401100370000000000101043b000c00000001001d000000000010043f0000000201000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b000000000101041a000006e200100198000008390000c13d0000079401000041000000000010043f0000076d0100004100001b7b00010430000000440030008c000000470000413d0000000002000416000000000002004b000000470000c13d0000000402100370000000000202043b000c00000002001d000006e20020009c000000470000213d0000002401100370000000000201043b000000000002004b0000000001000039000000010100c039000b00000002001d000000000012004b000000470000c13d00000000020004110000000c0020006c000009290000c13d000006f701000041000000800010043f0000002001000039000000840010043f0000001901000039000000a40010043f0000077801000041000000c40010043f000007790100004100001b7b00010430000000240030008c000000470000413d0000000002000416000000000002004b000000470000c13d0000000401100370000000000101043b000000000010043f0000000e01000039000000200010043f000000400200003900000000010000191b791b5a0000040f000000000101041a000000ff001001900000000001000039000000010100c039000000800010043f0000074c0100004100001b7a0001042e0000000001000416000000000001004b000000470000c13d0000001001000039000000000101041a000006e601100197000000800010043f0000074c0100004100001b7a0001042e000000640030008c000000470000413d0000000002000416000000000002004b000000470000c13d0000000402100370000000000402043b000006e20040009c000000470000213d0000004402100370000000000302043b000000ff0030008c000000470000213d0000002401100370000000000201043b00000000010400191b7915d70000040f000008420000013d000000240030008c000000470000413d0000000002000416000000000002004b000000470000c13d0000000401100370000000000101043b000000000010043f0000001101000039000000200010043f000000400200003900000000010000191b791b5a0000040f000007880000013d000000240030008c000000470000413d0000000002000416000000000002004b000000470000c13d0000000401100370000000000201043b0000076800200198000000470000c13d00000001010000390000076902200197000007ac0020009c000008c30000a13d000007ad0020009c000007a10000613d000007ae0020009c000007a10000613d000007af0020009c000007a10000613d000008c70000013d000000240030008c000000470000413d0000000004000416000000000004004b000000470000c13d0000000404100370000000000404043b000006e60040009c000000470000213d0000002305400039000000000035004b000000470000813d0000000405400039000000000151034f000000000101043b000900000001001d000006e60010009c000000470000213d000800240040003d000000090100002900000005011002100000000804100029000000000034004b000000470000213d0000003f031000390000074d033001970000074e0030009c000000900000213d0000008003300039000000400030043f0000000903000029000000800030043f0000001f0310018f000000000001004b000007270000613d000000a001100039000000a004000039000000002502043c0000000004540436000000000014004b000007230000c13d000000000003004b000000090000006b00000b500000c13d000000400100043d00000020020000390000000002210436000000800300043d00000000003204350000004002100039000000000003004b0000073b0000613d0000008004000039000000000500001900000020044000390000000006040433000000ff0660018f00000000026204360000000105500039000000000035004b000007340000413d0000000002120049000006df0020009c000006df020080410000006002200210000006df0010009c000006df010080410000004001100210000000000112019f00001b7a0001042e000000440030008c000000470000413d0000000002000416000000000002004b000000470000c13d0000000402100370000000000202043b000c00000002001d000006e20020009c000000470000213d0000002401100370000000000101043b0000000c02000029000000000002004b000008490000c13d000006f701000041000000800010043f0000002001000039000000840010043f0000002a01000039000000a40010043f0000079701000041000000c40010043f0000079801000041000000e40010043f000007540100004100001b7b00010430000000240030008c000000470000413d0000000002000416000000000002004b000000470000c13d0000000401100370000000000101043b000006e60010009c000000470000213d0000000f02000039000000000302041a0000074900300198000008690000c13d0000000a04000039000000000404041a000006e2044001970000000005000411000000000054004b0000077b0000c13d0000001004000039000000000404041a000006e604400197000000000041004b00000a150000813d0000077c01000041000000000010043f0000076d0100004100001b7b00010430000006f701000041000000800010043f0000002001000039000000840010043f000000a40010043f0000078701000041000000c40010043f000007790100004100001b7b000104300000000001000416000000000001004b000000470000c13d0000000801000039000000000101041a000000800010043f0000074c0100004100001b7a0001042e0000000001000416000000000001004b000000470000c13d0000000301000039000000800010043f0000074c0100004100001b7a0001042e000000240030008c000000470000413d0000000002000416000000000002004b000000470000c13d0000000401100370000000000101043b0000000802000039000000000302041a000000000031004b0000082d0000813d000000000020043f000007620110009a000000000101041a000000800010043f0000074c0100004100001b7a0001042e000000840030008c000000470000413d0000000002000416000000000002004b000000470000c13d0000000402100370000000000402043b000000000004004b0000000002000039000000010200c039000c00000004001d000000000024004b000000470000c13d0000002402100370000000000202043b000b00000002001d000006e60020009c000000470000213d0000004402100370000000000202043b000a00000002001d0000006402100370000000000402043b000006e60040009c000000470000213d0000002302400039000000000032004b000000470000813d0000000405400039000000000251034f000000000202043b000006e60020009c000000900000213d0000001f06200039000007b2066001970000003f06600039000007b2066001970000074e0060009c000000900000213d00000024044000390000008006600039000000400060043f000000800020043f0000000004420019000000000034004b000000470000213d0000002003500039000000000331034f000007b2042001980000001f0520018f000000a001400039000007de0000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000016004b000007da0000c13d000000000005004b000007eb0000613d000000000343034f0000000304500210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000000a00120003900000000000104350000000b01000039000000000101041a000000020010008c00000d390000c13d000000400100043d00000044021000390000076f03000041000000000032043500000024021000390000001f0300003900000a700000013d000000200030008c0000000c040000290000080a0000413d0000001f024000390000000502200270000006e70220009a000000200040008c000006e802004041000000000000043f0000001f033000390000000503300270000006e70330009a000000000032004b0000080a0000813d000000000002041b0000000102200039000000000032004b000008060000413d0000001f0040008c000008220000a13d000800000005001d000900000007001d000000000000043f0000000001000414000006df0010009c000006df01008041000000c001100210000006e9011001c70000801002000039000a00000006001d1b791b740000040f0000000a060000290000000100200190000000470000613d0000000c09000029000007b202900198000000000101043b0000000808000029000008730000c13d00000020030000390000000907000029000008800000013d000000000004004b0000000002000019000008260000613d00000000020104330000000301400210000007b30110027f000007b301100167000000000112016f0000000102400210000000000121019f0000088c0000013d000006f701000041000000800010043f0000002001000039000000840010043f0000002c01000039000000a40010043f0000078c01000041000000c40010043f0000078d01000041000000e40010043f000007540100004100001b7b000104300000000c01000029000000000010043f0000001401000039000000200010043f000000400200003900000000010000191b791b5a0000040f000000000101041a000000ff0110018f000000400200043d0000000000120435000006df0020009c000006df02008041000000400120021000000755011001c700001b7a0001042e000b00000001001d000000000020043f0000000301000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b000000000101041a0000000b0010006b00000a190000813d0000000c02000029000000000020043f0000000601000039000000200010043f000000400200003900000000010000191b791b5a0000040f0000000b02000029000000000020043f000000200010043f000000000100001900000040020000391b791b5a0000040f000000000101041a000008420000013d000006f701000041000000800010043f0000002001000039000000840010043f0000001201000039000000a40010043f0000077a01000041000000c40010043f000007790100004100001b7b00010430000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000090700002900000000058300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000008790000c13d000000000092004b0000088a0000813d0000000302900210000000f80220018f000007b30220027f000007b30220016700000000038300190000000003030433000000000223016f000000000021041b000000010190021000000001011001bf000000000010041b0000000001070433000c00000001001d000006e60010009c000000900000213d0000000104000039000000000204041a000000010020019000000001012002700000007f0110618f0000001f0010008c00000000030000390000000103002039000000000232013f0000000100200190000004270000c13d000000200010008c0000000c05000029000008ae0000413d000000000040043f0000001f025000390000000502200270000006ea0220009a000000200050008c000006eb020040410000001f011000390000000501100270000006ea0110009a000000000012004b000008ae0000813d000000000002041b0000000102200039000000000012004b000008aa0000413d0000001f0050008c000a00000006001d000008ca0000a13d000900000007001d000000000040043f0000000001000414000006df0010009c000006df01008041000000c001100210000006e9011001c700008010020000391b791b740000040f0000000100200190000000470000613d0000000c07000029000007b202700198000000000101043b000000090600002900000a2d0000c13d000000200300003900000a390000013d000007b00020009c000007a10000613d000007b10020009c000007a10000613d000000800000043f0000074c0100004100001b7a0001042e000000000005004b0000000001000019000008cf0000613d0000000b0100002900000000010104330000000302500210000007b30220027f000007b302200167000000000121016f0000000102500210000000000121019f00000a460000013d000006ed011001c70000800902000039000000000400041100000000050000191b791b6f0000040f0000006003100270000006df03300198000008e20000c13d0000000100200190000009730000613d000000000100001900001b7a0001042e0000001f04300039000006e0044001970000003f044000390000076704400197000000400500043d0000000004450019000000000054004b00000000060000390000000106004039000006e60040009c000000900000213d0000000100600190000000900000c13d000000400040043f0000001f0430018f0000000006350436000006e1053001980000000003560019000008fa0000613d000000000701034f000000007807043c0000000006860436000000000036004b000008f60000c13d000000000004004b000008de0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000008de0000013d000006ec02200197000000000262019f000000000021041b0000000001000414000006df0010009c000006df01008041000000c001100210000006ed011001c70000800d020000390000000303000039000006ee04000041000003460000013d0000000c0010006b000009770000c13d000000400100043d0000006402100039000007a00300004100000000003204350000004402100039000007a10300004100000000003204350000002402100039000000210300003900000a220000013d0000000201000039000000000012041b0000000602000029000000000002004b000009ab0000c13d0000078f01000041000000000010043f0000076d0100004100001b7b00010430000000000020043f0000000501000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b0000000c02000029000000000020043f000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b000000000201041a000007b4022001970000000b03000029000000000232019f000000000021041b000000400100043d0000000000310435000006df0010009c000006df0100804100000040011002100000000002000414000006df0020009c000006df02008041000000c002200210000000000112019f000006e9011001c70000800d020000390000000303000039000007770400004100000000050004110000000c06000029000003460000013d0000000001000414000006df0010009c000006df01008041000000c00110021000000757011001c70000800b020000391b791b740000040f0000000100200190000014a80000613d000000000101043b0000000b0400002900000068024002700000074802200197000000000021004b00000a110000813d0000077e020000410000077f0100004100000068030000390000001005000039000000000224016f0000000c033001ef000000000113016f000000000112019f000000000015041b000000000100001900001b7a0001042e0000079301000041000000000010043f0000076d0100004100001b7b000104300000000002000411000000000012004b00000ac30000c13d0000000b01000029000000000010043f0000000401000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b000000000201041a000006ec022001970000000c022001af000000000021041b0000000b01000029000000000010043f0000000201000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b000000000101041a000006e205100198000004da0000613d0000000001000414000006df0010009c000006df01008041000000c001100210000006ed011001c70000800d0200003900000004030000390000079f040000410000000c060000290000000b070000291b791b6f0000040f0000000100200190000000470000613d000008e00000013d0000001001000039000000000101041a000c06e60010019b0000000c012000290000000f02000039000000000202041a000000a802200270000006e602200197000000000021004b00000a0d0000213d0000000b0000006b00000b850000c13d000000a001000039000000400010043f000000800000043f000006f701000041000000a00010043f0000002001000039000000a40010043f000000c40010043f0000076b01000041000000e40010043f0000078e0100004100001b7b00010430000000000001004b00000aeb0000c13d000000400200043d000006e30020009c000000900000213d0000004001200039000000400010043f000000200120003900000773030000410000000000310435000000010100003900000000001204350000000c0000006b00000cdf0000c13d000000400300043d000006e30030009c000000900000213d0000004001300039000000400010043f000000200130003900000773040000410000000000410435000000010100003900000000001304350000001507000039000000000607041a000000010860019000000001046002700000007f0440618f0000001f0040008c00000000010000390000000101002039000000000116013f0000000100100190000004270000c13d000000400100043d0000002005100039000000000008004b00000efd0000613d000000000070043f000000000004004b00000eff0000613d000007740600004100000000070000190000000008570019000000000906041a000000000098043500000001066000390000002007700039000000000047004b000009ef0000413d00000eff0000013d000000000002004b00000b310000c13d000006f701000041000000800010043f0000002001000039000000840010043f0000001901000039000000a40010043f000006f601000041000000c40010043f000007790100004100001b7b00010430000a00000001001d000b00000003001d000c06e60030019b0000000c012000290000000f02000039000000000202041a000000a802200270000006e602200197000000000021004b00000b3b0000a13d0000079c01000041000000000010043f0000076d0100004100001b7b000104300000078001000041000000000010043f0000076d0100004100001b7b00010430000006ef03300197000000a8011002100000077b011001970000041a0000013d000000400100043d00000064021000390000079503000041000000000032043500000044021000390000079603000041000000000032043500000024021000390000002b030000390000000000320435000006f7020000410000000000210435000000040210003900000020030000390000000000320435000006df0010009c000006df0100804100000040011002100000075f011001c700001b7b00010430000000010320008a000000050330027000000000043100190000002003000039000000010440003900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b00000a320000c13d000000000072004b00000a430000813d0000000302700210000000f80220018f000007b30220027f000007b30220016700000000036300190000000003030433000000000223016f000000000021041b000000010170021000000001011001bf0000000104000039000000000014041b0000000a01000039000000000201041a000006ec032001970000000006000411000000000363019f000000000031041b0000000001000414000006e205200197000006df0010009c000006df01008041000000c001100210000006ed011001c70000800d020000390000000303000039000006ee040000411b791b6f0000040f00000001002001900000000a05000029000000470000613d0000000b010000390000000102000039000000000021041b0000000f03000039000000000103041a000006ef01100197000006f0021001c7000000000023041b0000001001000039000000000301041a000006f103300197000006f2033001c7000000000031041b000000400100043d0000000003000411000000000003004b00000a760000c13d0000004402100039000006f6030000410000000000320435000000240210003900000019030000390000000000320435000006f70200004100000000002104350000000402100039000000200300003900000b2b0000013d000006e30010009c000000900000213d0000004003100039000000400030043f0000002003100039000001f404000039000000000043043500000000030004110000000000310435000006e201300197000006f3011001c70000000c03000039000000000013041b000006e201500197000006f402200197000000000112019f0000000f02000039000000000012041b000000200100003900000100001004430000012000000443000006f50100004100001b7a0001042e000000000401001900000000030000190000000002030019000000010330003a000013250000613d000000090040008c0000000a0440011a00000a8f0000213d000007710020009c000000900000213d000007b2062001970000005f02600039000007b204200197000000400200043d0000000004420019000000000024004b00000000070000390000000107004039000006e60040009c000000900000213d0000000100700190000000900000c13d000000400040043f00000000043204360000002007600039000007b2067001980000001f0570018f00000ab10000613d0000000006640019000000000700003100000001077003670000000008040019000000007907043c0000000008980436000000000068004b00000aad0000c13d000000000005004b000000000003004b000013250000613d000000010330008a0000000005020433000000000035004b0000129f0000a13d0000000005430019000000090010008c0000000a6110011a000000f80660021000000000070504330000077207700197000000000676019f00000773066001c7000000000065043500000ab20000213d0000039e0000013d000000000010043f0000000501000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b0000000002000411000006e202200197000000000020043f000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b000000000101041a000000ff001001900000097a0000c13d000000400100043d00000064021000390000079d03000041000000000032043500000044021000390000079e0300004100000000003204350000002402100039000000380300003900000a220000013d000000000401001900000000030000190000000002030019000000010330003a000013250000613d000000090040008c0000000a0440011a00000aed0000213d000007710020009c000000900000213d000007b2062001970000005f02600039000007b204200197000000400200043d0000000004420019000000000024004b00000000070000390000000107004039000006e60040009c000000900000213d0000000100700190000000900000c13d000000400040043f00000000043204360000002007600039000007b2067001980000001f0570018f00000b0f0000613d0000000006640019000000000700003100000001077003670000000008040019000000007907043c0000000008980436000000000068004b00000b0b0000c13d000000000005004b000000000003004b000013250000613d000000010330008a0000000005020433000000000035004b0000129f0000a13d0000000005430019000000090010008c0000000a6110011a000000f80660021000000000070504330000077207700197000000000676019f00000773066001c7000000000065043500000b100000213d000009cf0000013d000000400100043d000000440210003900000787030000410000000000320435000006f702000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000006df0010009c000006df010080410000004001100210000006f8011001c700001b7b00010430000000c003000039000000400030043f000000800020043f000000a00010043f000000a001100210000000000121019f0000000c02000039000000000012041b000000000100001900001b7a0001042e000007560100004100000000001004430000000001000414000006df0010009c000006df01008041000000c00110021000000757011001c70000800b020000391b791b740000040f0000000100200190000014a80000613d000000000101043b0000000b0200002900000068022002700000074802200197000000000012004b00000d160000a13d0000078301000041000000000010043f0000076d0100004100001b7b000104300000000003000019000b00000003001d0000000502300210000a00000002001d0000000801200029000c00000001001d0000000101100367000000000101043b000000000010043f0000000201000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b000000000101041a000006e2001001980000068a0000613d0000000c010000290000000101100367000000000101043b000000000010043f0000001401000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000800200043d0000000b03000029000000000032004b0000129f0000a13d0000000a02000029000000a002200039000000000101043b000000000101041a000000ff0110018f00000000001204350000000103300039000000090030006c00000b510000413d0000072a0000013d000500800000003d000700000000001d000000400100043d000900000001001d000007610010009c000000900000213d000000090300002900000020023000390000000c010000290000000101100039000800000002001d000000400020043f0000000000030435000c00000001001d000000000010043f0000000201000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b000000000101041a000006e200100198000014a90000c13d0000000801000039000000000101041a000a00000001001d0000000c01000029000000000010043f0000000901000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b0000000a03000029000000000031041b000006e60030009c000000900000213d00000001013000390000000802000039000000000012041b000007620130009a0000000c02000029000000000021041b0000000b01000029000000000010043f0000000301000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b000000000101041a000a00000001001d0000000b01000029000000000010043f0000000601000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b0000000a02000029000000000020043f000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b0000000c02000029000000000021041b000000000020043f0000000701000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b0000000a02000029000000000021041b0000000b01000029000000000010043f0000000301000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b000000000201041a000000010220003a000013250000613d000000000021041b0000000c01000029000000000010043f0000000201000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b000000000201041a000006ec022001970000000b06000029000000000262019f000000000021041b0000000001000414000006df0010009c000006df01008041000000c001100210000006ed011001c70000800d020000390000000403000039000007630400004100000000050000190000000c070000291b791b6f0000040f0000000100200190000000470000613d000007640100004100000000001004430000000b0100002900000004001004430000000001000414000006df0010009c000006df01008041000000c00110021000000765011001c700008002020000391b791b740000040f0000000100200190000014a80000613d000000000101043b000000000001004b000000080600002900000ca00000613d000000400700043d00000064017000390000008002000039000000000021043500000044017000390000000c0200002900000000002104350000076601000041000000000017043500000004017000390000000b020000290000000000210435000000240170003900000000000104350000000901000029000000000101043300000084027000390000000000120435000000a402700039000000000001004b00000c5a0000613d000000000300001900000000042300190000000005630019000000000505043300000000005404350000002003300039000000000013004b00000c530000413d0000001f03100039000007b20330019700000000012100190000000000010435000000a401300039000006df0010009c000006df010080410000006001100210000006df0070009c000006df0200004100000000020740190000004002200210000000000121019f0000000002000414000006df0020009c000006df02008041000000c002200210000000000112019f0000000b02000029000a00000007001d1b791b6f0000040f0000000a0a0000290000006003100270000006df03300197000000200030008c00000020040000390000000004034019000000200640019000000000056a001900000c7e0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b00000c7a0000c13d0000001f0740019000000c8b0000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f00000000006504350000000100200190000010930000613d0000001f01400039000000600110018f0000000002a10019000000000012004b00000000010000390000000101004039000006e60020009c000000900000213d0000000100100190000000900000c13d000000400020043f000000200030008c000000470000413d00000000010a04330000076800100198000000470000c13d0000076901100197000007660010009c0000108e0000c13d0000000c01000029000000000010043f0000001401000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b000000000201041a000007b40220019700000003022001bf000000000021041b00000007010000290000000101100039000006e602100197000700000002001d000000060020006c00000b870000413d0000000c01000029000006e6011001970000001003000039000000000203041a0000076a02200197000000000112019f000000000013041b00000001010000390000000b02000039000000000012041b000000000100001900001b7a0001042e000000040300002900000005023000b9000000000003004b00000ccd0000613d0000079a033001970000079a0420019700000000033400d9000000050030006b000013250000c13d0000000c022000290000000f03000039000000000303041a000000a803300270000006e603300197000000000032004b00000a0d0000213d000e00000000003d000000040000006b00000d840000c13d0000076a011001970000000c02000029000006e602200197000000000112019f0000001002000039000000000012041b000000000100001900001b7a0001042e0000000c0400002900000000010000190000000003010019000000010110003a000013250000613d000000090040008c0000000a0440011a00000ce10000213d000007710030009c000000900000213d000007b2063001970000005f03600039000007b204300197000000400300043d0000000004430019000000000034004b00000000070000390000000107004039000006e60040009c000000900000213d0000000100700190000000900000c13d000000400040043f00000000041304360000002007600039000007b2067001980000001f0570018f00000d030000613d0000000006640019000000000700003100000001077003670000000008040019000000007907043c0000000008980436000000000068004b00000cff0000c13d000000000005004b0000000c08000029000000000001004b000013250000613d000000010110008a0000000005030433000000000015004b0000129f0000a13d0000000005410019000000090080008c0000000a6880011a000000f80660021000000000070504330000077207700197000000000676019f00000773066001c7000000000065043500000d050000213d000009db0000013d0000000001000411000006e201100197000b00000001001d000000000010043f0000001301000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b000000000101041a000000060010002a000013250000413d0000000601100029000500000001001d0000000a0010006c0000025f0000213d0000000b0000006b00000f390000c13d000000400100043d000007610010009c000000900000213d0000002002100039000000400020043f0000000000010435000000400100043d00000044021000390000076b0300004100000b240000013d00000002020000390000000b01000039000000000021041b0000000b0000006b000009250000613d0000000a020000290000000b0020006b0000025f0000213d0000001001000039000000000101041a000800000001001d000006e602100197000900000002001d0000000b012000290000000f02000039000000000202041a000000a802200270000006e602200197000000000021004b00000a0d0000213d000007560100004100000000001004430000000001000414000006df0010009c000006df01008041000000c00110021000000757011001c70000800b020000391b791b740000040f0000000100200190000014a80000613d000000000101043b000000080200002900000040022002700000074802200197000000000012004b000010970000a13d000000080200002900000068022002700000074802200197000000000021004b000010970000813d0000076e01000041000000000010043f0000076d0100004100001b7b00010430000007b40550019700000000005404350000000003430019000007760400004100000000004304350000000b033000390000000042020434000000000002004b00000d780000613d000000000500001900000000063500190000000007540019000000000707043300000000007604350000002005500039000000000025004b00000d710000413d000000000232001900000f1b0000013d000000000002004b000000000300001900000d7e0000613d000000a00300043d0000000304200210000007b30440027f000007b304400167000000000443016f000000010320021000000ef90000013d00000000010004150000000e0110008a00060005001002180000000101000039000100800000003d00000000020000190000000403000029000000000001004b00000ed20000613d000200000002001d0000000002000019000700000002001d000000060100002900000005011002700000000001010031000000000031004b0000129f0000813d000000050110021000000003011000290000000101100367000000000101043b000b00000001001d000006e20010009c000000470000213d000000400100043d000900000001001d000007610010009c000000900000213d00000009020000290000002001200039000800000001001d000000400010043f00000000000204350000000b0000006b00000d350000613d0000000c010000290000000101100039000c00000001001d000000000010043f0000000201000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b000000000101041a000006e200100198000014a90000c13d0000000801000039000000000101041a000a00000001001d0000000c01000029000000000010043f0000000901000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b0000000a03000029000000000031041b000006e60030009c000000900000213d00000001013000390000000802000039000000000012041b000007620130009a0000000c02000029000000000021041b0000000b01000029000000000010043f0000000301000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b000000000101041a000a00000001001d0000000b01000029000000000010043f0000000601000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b0000000a02000029000000000020043f000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b0000000c02000029000000000021041b000000000020043f0000000701000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b0000000a02000029000000000021041b0000000b01000029000000000010043f0000000301000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b000000000201041a000000010220003a000013250000613d000000000021041b0000000c01000029000000000010043f0000000201000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b000000000201041a000006ec022001970000000b06000029000000000262019f000000000021041b0000000001000414000006df0010009c000006df01008041000000c001100210000006ed011001c70000800d020000390000000403000039000007630400004100000000050000190000000c070000291b791b6f0000040f0000000100200190000000470000613d000007640100004100000000001004430000000b0100002900000004001004430000000001000414000006df0010009c000006df01008041000000c00110021000000765011001c700008002020000391b791b740000040f0000000100200190000014a80000613d000000000101043b000000000001004b000000080600002900000eb70000613d000000400700043d00000064017000390000008002000039000000000021043500000044017000390000000c02000029000000000021043500000766010000410000000000170435000000040170003900000000020004110000000000210435000000240170003900000000000104350000000901000029000000000101043300000084027000390000000000120435000000a402700039000000000001004b00000e710000613d000000000300001900000000042300190000000005630019000000000505043300000000005404350000002003300039000000000013004b00000e6a0000413d0000001f03100039000007b20330019700000000012100190000000000010435000000a401300039000006df0010009c000006df010080410000006001100210000006df0070009c000006df0200004100000000020740190000004002200210000000000121019f0000000002000414000006df0020009c000006df02008041000000c002200210000000000112019f0000000b02000029000b00000007001d1b791b6f0000040f0000000b0a0000290000006003100270000006df03300197000000200030008c00000020040000390000000004034019000000200640019000000000056a001900000e950000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b00000e910000c13d0000001f0740019000000ea20000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f00000000006504350000000100200190000011d30000613d0000001f01400039000000600110018f0000000002a10019000000000012004b00000000010000390000000101004039000006e60020009c000000900000213d0000000100100190000000900000c13d000000400020043f000000200030008c000000470000413d00000000010a04330000076800100198000000470000c13d0000076901100197000007660010009c0000108e0000c13d0000000c01000029000000000010043f0000001401000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b000000000201041a000007b40220019700000001022001bf000000000021041b00000007010000290000000101100039000006e602100197000000050020006c000000040300002900000d8f0000413d0000000501000029000000020200002900000ed30000013d0000000001000019000006e602200197000006e60020009c000013250000613d00000000040004150000000d0440008a0006000500400218000d00010020003d0000000102200039000000000032004b00000d8b0000413d0000001001000039000000000101041a00000cd70000013d00000774030000410000002006000039000000010540008a0000000505500270000007890550009a000000000706001900000080066000390000000006060433000000000063041b00000020067000390000000103300039000000000053004b00000ee50000c13d000000a005700039000000000024004b00000ef70000813d0000000304200210000000f80440018f000007b30440027f000007b3044001670000000005050433000000000445016f000000000043041b00000001030000390000000104200210000000000234019f000000000021041b000000000100001900001b7a0001042e000007b406600197000000000065043500000000045400190000000052020434000000000002004b00000f0b0000613d000000000600001900000000074600190000000008650019000000000808043300000000008704350000002006600039000000000026004b00000f040000413d00000000024200190000077504000041000000000042043500000001022000390000000043030434000000000003004b00000f1a0000613d000000000500001900000000062500190000000007540019000000000707043300000000007604350000002005500039000000000035004b00000f130000413d000000000223001900000000000204350000000002120049000000200320008a00000000003104350000001f02200039000007b2022001970000000004120019000000000024004b00000000020000390000000102004039000006e60040009c000000900000213d00000000030400190000000100200190000000900000c13d000c00000003001d000000400030043f000000200200003900000000022304361b7915320000040f0000000c020000290000000001210049000006df0010009c000006df01008041000006df0020009c000006df0200804100000060011002100000004002200210000000000121019f00001b7a0001042e000400800000003d000700000000001d000000400100043d000900000001001d000007610010009c000000900000213d000000090300002900000020023000390000000c010000290000000101100039000800000002001d000000400020043f0000000000030435000c00000001001d000000000010043f0000000201000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b000000000101041a000006e200100198000014a90000c13d0000000801000039000000000101041a000a00000001001d0000000c01000029000000000010043f0000000901000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b0000000a03000029000000000031041b000006e60030009c000000900000213d00000001013000390000000802000039000000000012041b000007620130009a0000000c02000029000000000021041b0000000b01000029000000000010043f0000000301000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b000000000101041a000a00000001001d0000000b01000029000000000010043f0000000601000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b0000000a02000029000000000020043f000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b0000000c02000029000000000021041b000000000020043f0000000701000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b0000000a02000029000000000021041b0000000b01000029000000000010043f0000000301000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b000000000201041a000000010220003a000013250000613d000000000021041b0000000c01000029000000000010043f0000000201000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b000000000201041a000006ec022001970000000b06000029000000000262019f000000000021041b0000000001000414000006df0010009c000006df01008041000000c001100210000006ed011001c70000800d020000390000000403000039000007630400004100000000050000190000000c070000291b791b6f0000040f0000000100200190000000470000613d00000764010000410000000000100443000000000100041100000004001004430000000001000414000006df0010009c000006df01008041000000c00110021000000765011001c700008002020000391b791b740000040f0000000100200190000014a80000613d000000000101043b000000000001004b0000000806000029000010540000613d000000400700043d00000064017000390000008002000039000000000021043500000044017000390000000c0200002900000000002104350000076601000041000000000017043500000004017000390000000b020000290000000000210435000000240170003900000000000104350000000901000029000000000101043300000084027000390000000000120435000000a402700039000000000001004b0000100e0000613d000000000300001900000000042300190000000005630019000000000505043300000000005404350000002003300039000000000013004b000010070000413d0000001f03100039000007b20330019700000000012100190000000000010435000000a401300039000006df0010009c000006df010080410000006001100210000006df0070009c000006df0200004100000000020740190000004002200210000000000121019f0000000002000414000006df0020009c000006df02008041000000c002200210000000000112019f0000000b02000029000a00000007001d1b791b6f0000040f0000000a0a0000290000006003100270000006df03300197000000200030008c00000020040000390000000004034019000000200640019000000000056a0019000010320000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b0000102e0000c13d0000001f074001900000103f0000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f00000000006504350000000100200190000012280000613d0000001f01400039000000600110018f0000000002a10019000000000012004b00000000010000390000000101004039000006e60020009c000000900000213d0000000100100190000000900000c13d000000400020043f000000200030008c000000470000413d00000000010a04330000076800100198000000470000c13d0000076901100197000007660010009c0000108e0000c13d0000000c01000029000000000010043f0000001401000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b000000000201041a000007b40220019700000003022001bf000000000021041b00000007010000290000000101100039000006e602100197000700000002001d000000060020006c00000f3b0000413d0000000c01000029000006e6011001970000001003000039000000000203041a0000076a02200197000000000112019f000000000013041b0000000b01000029000000000010043f0000001301000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b0000000502000029000000000021041b00000cbf0000013d000000c00200043d0000075b0020009c000011320000a13d000000400100043d00000064021000390000075d0300004100000000003204350000004402100039000007aa03000041000013040000013d000006f70100004100000000001204350000000401200039000c00000002001d000011a30000013d000000000003004b000011740000c13d00000060020000390000119b0000013d0000000f01000039000000000101041a000700000001001d000000400100043d0000008002100039000000000300041000000000003204350000000c0000006b000000020200003900000003020060390000006003100039000000000023043500000040021000390000000a0300002900000000003204350000008002000039000400000002001d00000000022104360000000003000411000006e203300197000800000003001d0000000000320435000007510010009c000000900000213d000000a003100039000000400030043f000006df0020009c000006df0200804100000040022002100000000001010433000006df0010009c000006df010080410000006001100210000000000121019f0000000002000414000006df0020009c000006df02008041000000c002200210000000000112019f000006ed011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000301043b000000400100043d0000002002100039000007580400004100000000004204350000003c0410003900000000003404350000003c030000390000000000310435000007590010009c000000900000213d0000006003100039000000400030043f000006df0020009c000006df0200804100000040022002100000000001010433000006df0010009c000006df010080410000006001100210000000000121019f0000000002000414000006df0020009c000006df02008041000000c002200210000000000112019f000006ed011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b000600000001001d000000800100043d000000410010008c000012a50000613d000000400010008c0000112e0000c13d000000c00100043d0000075a021001970000075b0020009c000010870000213d000000400300043d0000006004300039000000a00500043d000000000024043500000040023000390000000000520435000000ff011002700000001b011000390000002002300039000000000012043500000006010000290000000000130435000000000000043f000006df0030009c000006df0300804100000040013002100000000002000414000006df0020009c000006df02008041000000c002200210000000000112019f0000075c011001c700000001020000391b791b740000040f0000006003100270000006df03300197000000200030008c000000200400003900000000040340190000001f0540018f0000002004400190000011130000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b0000110f0000c13d000000000005004b000011200000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f00000000005404350000000100200190000012e00000c13d0000001f0530018f000006e106300198000000400200043d0000000004620019000011e20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011290000c13d000011e20000013d000000400100043d0000004402100039000007ab03000041000007f40000013d000000e00100043d000000f803100270000000400100043d0000001b0430008a000000010040008c000012ff0000213d000000a00400043d00000060051000390000000000250435000000400210003900000000004204350000002002100039000000000032043500000009020000290000000000210435000000000000043f000006df0010009c000006df0100804100000040011002100000000002000414000006df0020009c000006df02008041000000c002200210000000000112019f0000075c011001c700000001020000391b791b740000040f0000006003100270000006df03300197000000200030008c000000200400003900000000040340190000001f0540018f00000020044001900000115b0000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000011570000c13d000000000005004b000011680000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f00000000005404350000000100200190000011d70000613d000000000100043d000006e200100198000011b70000c13d000000400100043d0000004402100039000007a90300004100000000003204350000002402100039000000180300003900000a700000013d0000001f02300039000006e0022001970000003f022000390000076704200197000000400200043d0000000004420019000000000024004b00000000050000390000000105004039000006e60040009c000000900000213d0000000100500190000000900000c13d000000400040043f0000001f0430018f0000000006320436000006e105300198000500000006001d00000000035600190000118e0000613d000000000601034f0000000507000029000000006806043c0000000007870436000000000037004b0000118a0000c13d000000000004004b0000119b0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b000011ae0000c13d000000400200043d000c00000002001d000006f701000041000000000012043500000004012000391b791b4c0000040f0000000c020000290000000001210049000006df0010009c000006df010080410000006001100210000006df0020009c000006df020080410000004002200210000000000121019f00001b7b000104300000000502000029000006df0020009c000006df020080410000004002200210000006df0010009c000006df010080410000006001100210000000000121019f00001b7b000104300000000a0110014f000006e200100198000013080000c13d0000000901000029000000000010043f0000000e01000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b000000000101041a000000ff001001900000130f0000c13d0000000901000029000000000010043f0000000c0000006b000013160000c13d0000001101000039000000200010043f0000000001000414000013190000013d000000000003004b000011fc0000c13d0000006002000039000012230000013d0000001f0530018f000006e106300198000000400200043d0000000004620019000011e20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011de0000c13d000000000005004b000011ef0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000006df0020009c000006df020080410000004002200210000000000112019f00001b7b00010430000000400100043d0000004402100039000007500300004100000000003204350000002402100039000000110300003900000a700000013d0000001f02300039000006e0022001970000003f022000390000076704200197000000400200043d0000000004420019000000000024004b00000000050000390000000105004039000006e60040009c000000900000213d0000000100500190000000900000c13d000000400040043f0000001f0430018f0000000006320436000006e105300198000100000006001d0000000003560019000012160000613d000000000601034f0000000107000029000000006806043c0000000007870436000000000037004b000012120000c13d000000000004004b000012230000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b0000119e0000613d0000000102000029000011af0000013d000000000003004b0000122f0000c13d00000060020000390000000001020433000000000001004b0000119e0000613d000012590000013d0000001f02300039000006e0022001970000003f022000390000076704200197000000400200043d0000000004420019000000000024004b00000000050000390000000105004039000006e60040009c000000900000213d0000000100500190000000900000c13d000000400040043f0000001f0430018f0000000006320436000006e105300198000400000006001d0000000003560019000012490000613d000000000601034f0000000407000029000000006806043c0000000007870436000000000037004b000012450000c13d000000000004004b000012560000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b0000119e0000613d0000000402000029000011af0000013d00000000040000190000000a010000290000000001010433000000000041004b0000129f0000a13d00000008010000290000000001010433000000000041004b0000129f0000a13d000c00000004001d0000000504400210000000a0014000390000000001010433000006e2031001970000000901400029000b00000004001d000000070240002900000000020204330000000004010433000000400100043d00000080051000390000000006000410000000000065043500000040051000390000000000450435000000ff0220018f000000600410003900000000002404350000002002100039000000000032043500000080030000390000000000310435000007510010009c000000900000213d000000a003100039000000400030043f000006df0020009c000006df0200804100000040022002100000000001010433000006df0010009c000006df010080410000006001100210000000000121019f0000000002000414000006df0020009c000006df02008041000000c002200210000000000112019f000006ed011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000060300002900000000020304330000000c04000029000000000042004b0000129f0000a13d0000000b050000290000000502500029000000000101043b00000000001204350000000104400039000000800100043d000000000014004b0000125c0000413d000002070000013d0000078a01000041000000000010043f0000003201000039000000040010043f0000078b0100004100001b7b00010430000000c00200043d0000075b0020009c000010870000213d000000e00100043d000000f803100270000000400100043d0000001b0430008a000000010040008c000012ff0000213d000000a00400043d00000060051000390000000000250435000000400210003900000000004204350000002002100039000000000032043500000006020000290000000000210435000000000000043f000006df0010009c000006df0100804100000040011002100000000002000414000006df0020009c000006df02008041000000c002200210000000000112019f0000075c011001c700000001020000391b791b740000040f0000006003100270000006df03300197000000200030008c000000200400003900000000040340190000001f0540018f0000002004400190000012d10000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000012cd0000c13d000000000005004b000012de0000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f000000000054043500000001002001900000132b0000613d000000000100043d000006e2001001980000116d0000613d000000070110014f000006e200100198000013080000c13d0000000601000029000000000010043f0000000e01000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b000000000101041a000000ff001001900000130f0000c13d0000000601000029000000000010043f0000000c0000006b000013370000c13d0000001101000039000000200010043f00000000010004140000133a0000013d00000064021000390000075d03000041000000000032043500000044021000390000075e0300004100000000003204350000002402100039000000220300003900000a220000013d000000400100043d0000004402100039000007a70300004100000000003204350000002402100039000000130300003900000a700000013d000000400100043d0000004402100039000007a803000041000000000032043500000024021000390000000e0300003900000a700000013d0000001201000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b000000000101041a0000000b0110006b000008420000813d0000078a01000041000000000010043f0000001101000039000000040010043f0000078b0100004100001b7b000104300000001f0530018f000006e106300198000000400200043d0000000004620019000011e20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000013320000c13d000011e20000013d0000001201000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b000000000101041a0000000b0010002a000013250000413d0000000b011000290000000a0010006c0000134d0000a13d0000076c01000041000000000010043f0000076d0100004100001b7b000104300000000601000029000000000010043f0000000c0000006b000013550000c13d0000001101000039000000200010043f0000000001000414000013580000013d0000001201000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b000000000201041a0000000b02200029000000000021041b000000080000006b00000d2f0000613d000500000000001d0000137d0000013d0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d0000000302000039000000000101043b000000000301041a000007b403300197000000000223019f000000000021041b00000005010000290000000101100039000006e602100197000500000002001d0000000b0020006c000014b00000813d000000400100043d000600000001001d000007610010009c000000900000213d0000000603000029000000200230003900000009010000290000000101100039000a00000002001d000000400020043f0000000000030435000900000001001d000000000010043f0000000201000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b000000000101041a000006e200100198000014a90000c13d0000000801000039000000000101041a000700000001001d0000000901000029000000000010043f0000000901000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b0000000702000029000000000021041b000006e60020009c000000900000213d000000070300002900000001013000390000000802000039000000000012041b000007620130009a0000000902000029000000000021041b0000000801000029000000000010043f0000000301000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b000000000101041a000700000001001d0000000801000029000000000010043f0000000601000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b0000000702000029000000000020043f000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b0000000902000029000000000021041b000000000020043f0000000701000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b0000000702000029000000000021041b0000000801000029000000000010043f0000000301000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b000000000201041a000000010220003a000013250000613d000000000021041b0000000901000029000000000010043f0000000201000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d000000000101043b000000000201041a000006ec022001970000000806000029000000000262019f000000000021041b0000000001000414000006df0010009c000006df01008041000000c001100210000006ed011001c70000800d0200003900000004030000390000076304000041000000000500001900000009070000291b791b6f0000040f0000000100200190000000470000613d00000764010000410000000000100443000000000100041100000004001004430000000001000414000006df0010009c000006df01008041000000c00110021000000765011001c700008002020000391b791b740000040f0000000100200190000014a80000613d000000000101043b000000000001004b000014970000613d000000400300043d00000064013000390000008002000039000000000021043500000044013000390000000902000029000000000021043500000766010000410000000000130435000000040130003900000008020000290000000000210435000000240130003900000000000104350000000601000029000000000101043300000084023000390000000000120435000700000003001d000000a402300039000000000001004b000014510000613d000000000300001900000000042300190000000a05300029000000000505043300000000005404350000002003300039000000000013004b0000144a0000413d0000001f03100039000007b20330019700000000012100190000000000010435000000a401300039000006df0010009c000006df0100804100000060011002100000000702000029000006df0020009c000006df020080410000004002200210000000000121019f0000000002000414000006df0020009c000006df02008041000000c002200210000000000112019f00000008020000291b791b6f0000040f0000006003100270000006df03300197000000200030008c0000002004000039000000000403401900000020064001900000000705600029000014730000613d000000000701034f0000000708000029000000007907043c0000000008980436000000000058004b0000146f0000c13d0000001f07400190000014800000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f00000000006504350000000100200190000014b20000613d0000001f01400039000000600110018f0000000704100029000000000014004b00000000010000390000000101004039000006e60040009c000000900000213d0000000100100190000000900000c13d0000000002040019000000400040043f000000200030008c000000470000413d000000070100002900000000010104330000076800100198000000470000c13d0000076901100197000007660010009c000014cf0000c13d0000000901000029000000000010043f0000001401000039000000200010043f0000000c0000006b000013680000613d0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000000470000613d0000000202000039000013720000013d000000000001042f000000400100043d00000044021000390000079b03000041000000000032043500000024021000390000001c0300003900000a700000013d000000090100002900000cb90000013d000000000003004b0000122a0000613d0000001f02300039000006e0022001970000003f022000390000076704200197000000400200043d0000000004420019000000000024004b00000000050000390000000105004039000006e60040009c000000900000213d0000000100500190000000900000c13d000000400040043f0000001f0430018f0000000006320436000006e105300198000400000006001d0000000003560019000012490000613d000000000601034f0000000407000029000000006806043c0000000007870436000000000037004b000014ca0000c13d000012490000013d000006f701000041000a00000002001d000000000012043500000004012000391b791b4c0000040f0000000a02000029000011a50000013d0000001f02200039000007b2022001970000000001120019000000000021004b00000000020000390000000102004039000006e60010009c000014e20000213d0000000100200190000014e20000c13d000000400010043f000000000001042d0000078a01000041000000000010043f0000004101000039000000040010043f0000078b0100004100001b7b0001043000000000030100190000001f01100039000000000021004b00000000040000190000074f040040410000074f052001970000074f01100197000000000651013f000000000051004b00000000010000190000074f010020410000074f0060009c000000000104c019000000000001004b000015300000613d0000000105000367000000000135034f000000000401043b000007b50040009c0000152a0000813d0000001f01400039000007b2011001970000003f01100039000007b207100197000000400100043d0000000007710019000000000017004b00000000080000390000000108004039000006e60070009c0000152a0000213d00000001008001900000152a0000c13d0000002008300039000000400070043f00000000034104360000000007840019000000000027004b000015300000213d000000000585034f000007b2064001980000001f0740018f00000000026300190000151a0000613d000000000805034f0000000009030019000000008a08043c0000000009a90436000000000029004b000015160000c13d000000000007004b000015270000613d000000000565034f0000000306700210000000000702043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f000000000052043500000000024300190000000000020435000000000001042d0000078a01000041000000000010043f0000004101000039000000040010043f0000078b0100004100001b7b00010430000000000100001900001b7b0001043000000000430104340000000001320436000000000003004b0000153e0000613d000000000200001900000000051200190000000006240019000000000606043300000000006504350000002002200039000000000032004b000015370000413d000000000213001900000000000204350000001f02300039000007b2022001970000000001210019000000000001042d0000075a0010009c000015540000213d000000630010008c000015540000a13d00000001030003670000000401300370000000000101043b000006e20010009c000015540000213d0000002402300370000000000202043b000006e20020009c000015540000213d0000004403300370000000000303043b000000000001042d000000000100001900001b7b00010430000006e202200197000000000020043f000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000015640000613d000000000101043b000000000001042d000000000100001900001b7b00010430000000000001004b000015690000613d000000000001042d000000400100043d000000440210003900000787030000410000000000320435000006f702000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000006df0010009c000006df010080410000004001100210000006f8011001c700001b7b000104300001000000000002000100000001001d000000000010043f0000000201000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f00000001002001900000159c0000613d000000000101043b000000000101041a000006e2001001980000159e0000613d0000000101000029000000000010043f0000000401000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f00000001002001900000159c0000613d000000000101043b000000000101041a000006e201100197000000000001042d000000000100001900001b7b00010430000000400100043d0000006402100039000007b60300004100000000003204350000004402100039000007b703000041000000000032043500000024021000390000002c030000390000000000320435000006f7020000410000000000210435000000040210003900000020030000390000000000320435000006df0010009c000006df0100804100000040011002100000075f011001c700001b7b00010430000000000301001900000000011200a9000000000003004b000015b90000613d00000000033100d9000000000023004b000015ba0000c13d000000000001042d0000078a01000041000000000010043f0000001101000039000000040010043f0000078b0100004100001b7b00010430000000000001004b000015c30000613d000000000001042d000000400100043d0000006402100039000007b80300004100000000003204350000004402100039000007b9030000410000000000320435000000240210003900000031030000390000000000320435000006f7020000410000000000210435000000040210003900000020030000390000000000320435000006df0010009c000006df0100804100000040011002100000075f011001c700001b7b00010430000000400400043d000000800540003900000000060004100000000000650435000000ff0330018f000000600540003900000000003504350000004003400039000000000023043500000080020000390000000002240436000006e2011001970000000000120435000007ba0040009c000015fc0000813d000000a001400039000000400010043f000006df0020009c000006df0200804100000040012002100000000002040433000006df0020009c000006df020080410000006002200210000000000112019f0000000002000414000006df0020009c000006df02008041000000c002200210000000000112019f000006ed011001c700008010020000391b791b740000040f0000000100200190000016020000613d000000000101043b000000000001042d0000078a01000041000000000010043f0000004101000039000000040010043f0000078b0100004100001b7b00010430000000000100001900001b7b00010430000000000010043f0000000201000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000016150000613d000000000101043b000000000101041a000006e201100198000016170000613d000000000001042d000000000100001900001b7b00010430000000400100043d0000006402100039000007a20300004100000000003204350000004402100039000007a3030000410000000000320435000000240210003900000029030000390000000000320435000006f7020000410000000000210435000000040210003900000020030000390000000000320435000006df0010009c000006df0100804100000040011002100000075f011001c700001b7b00010430000000000001004b0000162e0000613d000000000001042d000000400100043d00000044021000390000077a030000410000000000320435000000240210003900000012030000390000000000320435000006f7020000410000000000210435000000040210003900000020030000390000000000320435000006df0010009c000006df010080410000004001100210000006f8011001c700001b7b00010430000006e201100198000016500000613d000000000010043f0000000301000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000016640000613d000000000101043b000000000101041a000000000001042d000000400100043d00000064021000390000079803000041000000000032043500000044021000390000079703000041000000000032043500000024021000390000002a030000390000000000320435000006f7020000410000000000210435000000040210003900000020030000390000000000320435000006df0010009c000006df0100804100000040011002100000075f011001c700001b7b00010430000000000100001900001b7b000104300006000000000002000200000004001d000500000002001d000400000001001d000600000003001d000000000030043f0000000201000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f00000001002001900000174d0000613d000000000101043b000000000101041a000006e2001001980000174f0000613d0000000601000029000000000010043f0000000201000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f00000001002001900000174d0000613d000000000101043b000000000101041a000006e201100198000017590000613d0000000002000411000306e20020019b000000030010006b000016d00000613d000000000010043f0000000501000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f00000001002001900000174d0000613d000000000101043b0000000302000029000000000020043f000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f00000001002001900000174d0000613d000000000101043b000000000101041a000000ff00100190000016d00000c13d0000000601000029000000000010043f0000000201000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f00000001002001900000174d0000613d000000000101043b000000000101041a000006e200100198000017c00000613d0000000601000029000000000010043f0000000401000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f00000001002001900000174d0000613d000000000101043b000000000101041a000006e201100197000000030010006c000017c70000c13d0000000401000029000000050200002900000006030000291b7918660000040f00000764010000410000000000100443000000050100002900000004001004430000000001000414000006df0010009c000006df01008041000000c00110021000000765011001c700008002020000391b791b740000040f00000001002001900000176d0000613d000000000101043b000000000001004b0000174c0000613d000000400700043d00000064017000390000008002000039000100000002001d00000000002104350000004401700039000000060200002900000000002104350000000401000029000006e20110019700000024027000390000000000120435000007660100004100000000001704350000000401700039000000030200002900000000002104350000008402700039000000020100002900000000310104340000000000120435000000a402700039000000000001004b000017040000613d000000000400001900000000052400190000000006430019000000000606043300000000006504350000002004400039000000000014004b000016fd0000413d0000001f03100039000007b20330019700000000012100190000000000010435000000a401300039000006df0010009c000006df010080410000006001100210000006df0070009c000006df0200004100000000020740190000004002200210000000000121019f0000000002000414000006df0020009c000006df02008041000000c002200210000000000112019f0000000502000029000006e202200197000600000007001d1b791b6f0000040f000000060b0000290000006003100270000006df03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000172a0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000017260000c13d000000000006004b000017370000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f000000000065043500000001002001900000176e0000613d0000001f01400039000000600110018f0000000002b10019000000000012004b00000000010000390000000101004039000006e60020009c000017b10000213d0000000100100190000017b10000c13d000000400020043f000000200030008c0000174d0000413d00000000010b043300000768001001980000174d0000c13d0000076901100197000007660010009c000017720000c13d000000000001042d000000000100001900001b7b00010430000000400100043d0000006402100039000007b60300004100000000003204350000004402100039000007bb03000041000000000032043500000024021000390000002c03000039000017620000013d000000400100043d0000006402100039000007a20300004100000000003204350000004402100039000007a3030000410000000000320435000000240210003900000029030000390000000000320435000006f7020000410000000000210435000000040210003900000020030000390000000000320435000006df0010009c000006df0100804100000040011002100000075f011001c700001b7b00010430000000000001042f000000000003004b000017770000c13d00000060020000390000179e0000013d000006f70100004100000000001204350000000401200039000600000002001d000017a60000013d0000001f02300039000006e0022001970000003f022000390000076704200197000000400200043d0000000004420019000000000024004b00000000050000390000000105004039000006e60040009c000017b10000213d0000000100500190000017b10000c13d000000400040043f0000001f0430018f0000000006320436000006e105300198000100000006001d0000000003560019000017910000613d000000000601034f0000000107000029000000006806043c0000000007870436000000000037004b0000178d0000c13d000000000004004b0000179e0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b000017b70000c13d000000400200043d000600000002001d000006f701000041000000000012043500000004012000391b791b4c0000040f00000006020000290000000001210049000006df0010009c000006df010080410000006001100210000006df0020009c000006df020080410000004002200210000000000121019f00001b7b000104300000078a01000041000000000010043f0000004101000039000000040010043f0000078b0100004100001b7b000104300000000102000029000006df0020009c000006df020080410000004002200210000006df0010009c000006df010080410000006001100210000000000121019f00001b7b00010430000000400100043d0000006402100039000007b60300004100000000003204350000004402100039000007b703000041000017550000013d000000400100043d0000006402100039000007b80300004100000000003204350000004402100039000007b903000041000000000032043500000024021000390000003103000039000017620000013d0002000000000002000100000001001d000200000002001d000000000020043f0000000201000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f00000001002001900000183f0000613d000000000101043b000000000101041a000006e200100198000018410000613d0000000201000029000000000010043f0000000201000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f00000001002001900000183f0000613d000000000101043b000000000101041a000006e2011001980000184b0000613d0000000102000029000006e202200197000000000012004b000017fb0000c13d0000000101000039000000000001042d000100000002001d000000000010043f0000000501000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f00000001002001900000183f0000613d000000000101043b0000000102000029000000000020043f000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f00000001002001900000183f0000613d000000000101043b000000000101041a000000ff011001900000181a0000613d000000000001042d0000000201000029000000000010043f0000000201000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f00000001002001900000183f0000613d000000000101043b000000000101041a000006e2001001980000185f0000613d0000000201000029000000000010043f0000000401000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f00000001002001900000183f0000613d000000000101043b000000000101041a000006e201100197000000010010006c00000000010000390000000101006039000000000001042d000000000100001900001b7b00010430000000400100043d0000006402100039000007b60300004100000000003204350000004402100039000007bb03000041000000000032043500000024021000390000002c03000039000018540000013d000000400100043d0000006402100039000007a20300004100000000003204350000004402100039000007a3030000410000000000320435000000240210003900000029030000390000000000320435000006f7020000410000000000210435000000040210003900000020030000390000000000320435000006df0010009c000006df0100804100000040011002100000075f011001c700001b7b00010430000000400100043d0000006402100039000007b60300004100000000003204350000004402100039000007b703000041000018470000013d0006000000000002000300000002001d000400000001001d000600000003001d000000000030043f0000000201000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000019cf0000613d000000000101043b000000000101041a000506e20010019c000019d70000613d0000000401000029000006e201100197000000050010006b000019e10000c13d0000000301000029000006e202100198000019eb0000613d000400000002001d000000050020006b0000195a0000613d0000000501000029000000000010043f0000000301000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000019cf0000613d000000000101043b000000000101041a000300000001001d000000000001004b000019d10000613d0000000601000029000000000010043f0000000701000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000019cf0000613d00000003020000290003000100200092000000000101043b000000000101041a000000030010006c000018f30000613d000200000001001d0000000501000029000000000010043f0000000601000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000019cf0000613d000000000101043b0000000302000029000000000020043f000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000019cf0000613d000000000101043b000000000101041a000100000001001d0000000501000029000000000010043f0000000601000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000019cf0000613d000000000101043b0000000202000029000000000020043f000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000019cf0000613d000000000101043b0000000102000029000000000021041b000000000020043f0000000701000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000019cf0000613d000000000101043b0000000202000029000000000021041b0000000601000029000000000010043f0000000701000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000019cf0000613d000000000101043b000000000001041b0000000501000029000000000010043f0000000601000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000019cf0000613d000000000101043b0000000302000029000000000020043f000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000019cf0000613d000000000101043b000000000001041b0000000401000029000000000010043f0000000301000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000019cf0000613d000000000101043b000000000101041a000300000001001d0000000401000029000000000010043f0000000601000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000019cf0000613d000000000101043b0000000302000029000000000020043f000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000019cf0000613d000000000101043b0000000602000029000000000021041b000000000020043f0000000701000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000019cf0000613d000000000101043b0000000302000029000000000021041b0000000601000029000000000010043f0000000401000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000019cf0000613d000000000101043b000000000201041a000006ec02200197000000000021041b0000000601000029000000000010043f0000000201000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000019cf0000613d000000000101043b000000000101041a000006e205100198000019d70000613d0000000001000414000006df0010009c000006df01008041000000c001100210000006ed011001c70000800d0200003900000004030000390000079f04000041000000000600001900000006070000291b791b6f0000040f0000000100200190000019cf0000613d0000000501000029000000000010043f0000000301000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000019cf0000613d000000000101043b000000000201041a000000000002004b000019d10000613d000000010220008a000000000021041b0000000401000029000000000010043f0000000301000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000019cf0000613d000000000101043b000000000201041a000000010220003a000019d10000613d000000000021041b0000000601000029000000000010043f0000000201000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f0000000100200190000019cf0000613d000000000101043b000000000201041a000006ec022001970000000406000029000000000262019f000000000021041b0000000001000414000006df0010009c000006df01008041000000c001100210000006ed011001c70000800d0200003900000004030000390000076304000041000000050500002900000006070000291b791b6f0000040f0000000100200190000019cf0000613d000000000001042d000000000100001900001b7b000104300000078a01000041000000000010043f0000001101000039000000040010043f0000078b0100004100001b7b00010430000000400100043d0000006402100039000007a20300004100000000003204350000004402100039000007a303000041000000000032043500000024021000390000002903000039000019f40000013d000000400100043d0000006402100039000007bc0300004100000000003204350000004402100039000007bd03000041000000000032043500000024021000390000002503000039000019f40000013d000000400100043d0000006402100039000007be0300004100000000003204350000004402100039000007bf030000410000000000320435000000240210003900000024030000390000000000320435000006f7020000410000000000210435000000040210003900000020030000390000000000320435000006df0010009c000006df0100804100000040011002100000075f011001c700001b7b000104300003000000000002000100000005001d000200000004001d000000400400043d000000800540003900000000060004100000000000650435000000ff0330018f000000600540003900000000003504350000004003400039000000000023043500000080020000390000000002240436000006e2011001970000000000120435000007ba0040009c00001ae80000813d000000a001400039000000400010043f000006df0020009c000006df0200804100000040012002100000000002040433000006df0020009c000006df020080410000006002200210000000000112019f0000000002000414000006df0020009c000006df02008041000000c002200210000000000112019f000006ed011001c700008010020000391b791b740000040f000000010020019000001ae60000613d000000000301043b000000400100043d0000002002100039000007580400004100000000004204350000003c0410003900000000003404350000003c030000390000000000310435000007590010009c00001ae80000213d0000006003100039000000400030043f000006df0020009c000006df0200804100000040022002100000000001010433000006df0010009c000006df010080410000006001100210000000000121019f0000000002000414000006df0020009c000006df02008041000000c002200210000000000112019f000006ed011001c700008010020000391b791b740000040f000000010020019000001ae60000613d000000000601043b00000002040000290000000021040434000000410010008c000300000006001d00001a910000613d000000400010008c00001b0a0000c13d000000400140003900000000010104330000075a031001970000075b0030009c00001aee0000213d0000000002020433000000400400043d0000006005400039000000000035043500000040034000390000000000230435000000ff011002700000001b01100039000000200240003900000000001204350000000000640435000000000000043f000006df0040009c000006df0400804100000040014002100000000002000414000006df0020009c000006df02008041000000c002200210000000000112019f0000075c011001c700000001020000391b791b740000040f0000006003100270000006df03300197000000200030008c000000200400003900000000040340190000001f0540018f000000200440019000001a760000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b00001a720000c13d000000000005004b00001a830000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000000010020019000001acd0000c13d0000001f0530018f000006e106300198000000400200043d000000000462001900001b390000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001a8c0000c13d00001b390000013d000000400140003900000000030104330000075b0030009c00001aee0000213d00000060014000390000000001010433000000f804100270000000400100043d0000001b0540008a000000010050008c00001b1b0000213d00000000020204330000006005100039000000000035043500000040031000390000000000230435000000200210003900000000004204350000000000610435000000000000043f000006df0010009c000006df0100804100000040011002100000000002000414000006df0020009c000006df02008041000000c002200210000000000112019f0000075c011001c700000001020000391b791b740000040f0000006003100270000006df03300197000000200030008c000000200400003900000000040340190000001f0540018f000000200440019000001abe0000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b00001aba0000c13d000000000005004b00001acb0000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000000010020019000001b2e0000613d000000000100043d000006e200100198000000030300002900001af50000613d000000010110014f000006e20010019800001afc0000c13d000000000030043f0000000e01000039000000200010043f0000000001000414000006df0010009c000006df01008041000000c00110021000000760011001c700008010020000391b791b740000040f000000010020019000001ae60000613d000000000101043b000000000101041a000000ff0010019000001b030000c13d0000000301000029000000000001042d000000000100001900001b7b000104300000078a01000041000000000010043f0000004101000039000000040010043f0000078b0100004100001b7b00010430000000400100043d00000064021000390000075d0300004100000000003204350000004402100039000007aa0300004100001b200000013d000000400100043d0000004402100039000007a90300004100000000003204350000002402100039000000180300003900001b100000013d000000400100043d0000004402100039000007a70300004100000000003204350000002402100039000000130300003900001b100000013d000000400100043d0000004402100039000007a803000041000000000032043500000024021000390000000e0300003900001b100000013d000000400100043d0000004402100039000007ab03000041000000000032043500000024021000390000001f030000390000000000320435000006f7020000410000000000210435000000040210003900000020030000390000000000320435000006df0010009c000006df010080410000004001100210000006f8011001c700001b7b0001043000000064021000390000075d03000041000000000032043500000044021000390000075e030000410000000000320435000000240210003900000022030000390000000000320435000006f7020000410000000000210435000000040210003900000020030000390000000000320435000006df0010009c000006df0100804100000040011002100000075f011001c700001b7b000104300000001f0530018f000006e106300198000000400200043d000000000462001900001b390000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001b350000c13d000000000005004b00001b460000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000006df0020009c000006df020080410000004002200210000000000112019f00001b7b000104300000006002100039000007c00300004100000000003204350000004002100039000007c1030000410000000000320435000000200210003900000032030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d000000000001042f000006df0010009c000006df010080410000004001100210000006df0020009c000006df020080410000006002200210000000000112019f0000000002000414000006df0020009c000006df02008041000000c002200210000000000112019f000006ed011001c700008010020000391b791b740000040f000000010020019000001b6d0000613d000000000101043b000000000001042d000000000100001900001b7b0001043000001b72002104210000000102000039000000000001042d0000000002000019000000000001042d00001b77002104230000000102000039000000000001042d0000000002000019000000000001042d00001b790000043200001b7a0001042e00001b7b0001043000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffbf54656464696573206279206e756d6f00000000000000000000000000000000005465646469657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffd6f21326ab749d5729fcba5677c79037b459436ab7bff709c9d06ce9f10c1a9d290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e56302000000000000000000000000000000000000200000000000000000000000004ef1d2ad89edf8c4d91132028e8195cdf30bb4b5053d4f8cd260341d4805f30ab10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6ffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0ffffff0000000000000000ffffffffffffffffffffffffffffffffffffffffff0000000000000000000d05000000000000000000000000000000000000000000ffffffffffffffffff000000000000000000000000000000ffffffffffffffff0000000000000000000000000001ffffffffffffffffffff00000000000000000000000000000000000001f40000000000000000000000000000000000000000ffffff0000000000000d05ff00000000000000000000000000000000000000000000000200000000000000000000000000000040000001000000000000000000455243323938313a20696e76616c69642072656365697665720000000000000008c379a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000000000000000000000000677bd58a000000000000000000000000000000000000000000000000000000009c4f3d0900000000000000000000000000000000000000000000000000000000e4918a7a00000000000000000000000000000000000000000000000000000000f2fde38a00000000000000000000000000000000000000000000000000000000f8dc090e00000000000000000000000000000000000000000000000000000000f8dc090f00000000000000000000000000000000000000000000000000000000faf7b1c700000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000f383baea00000000000000000000000000000000000000000000000000000000e4918a7b00000000000000000000000000000000000000000000000000000000e639366d00000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000b88d4fdd00000000000000000000000000000000000000000000000000000000c59f0e5300000000000000000000000000000000000000000000000000000000c59f0e5400000000000000000000000000000000000000000000000000000000c87b56dd00000000000000000000000000000000000000000000000000000000b88d4fde00000000000000000000000000000000000000000000000000000000bd62062b000000000000000000000000000000000000000000000000000000009c4f3d0a00000000000000000000000000000000000000000000000000000000a22cb46500000000000000000000000000000000000000000000000000000000aa1b103f00000000000000000000000000000000000000000000000000000000768d5191000000000000000000000000000000000000000000000000000000008838b5c20000000000000000000000000000000000000000000000000000000095d89b400000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000009a4f41ba000000000000000000000000000000000000000000000000000000008838b5c3000000000000000000000000000000000000000000000000000000008da5cb5b00000000000000000000000000000000000000000000000000000000768d519200000000000000000000000000000000000000000000000000000000771282f60000000000000000000000000000000000000000000000000000000080d696a7000000000000000000000000000000000000000000000000000000006c102eee0000000000000000000000000000000000000000000000000000000070a082300000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a6000000000000000000000000000000000000000000000000000000006c102eef000000000000000000000000000000000000000000000000000000006ffcd03d00000000000000000000000000000000000000000000000000000000677bd58b0000000000000000000000000000000000000000000000000000000068bd580e000000000000000000000000000000000000000000000000000000006afcb7b0000000000000000000000000000000000000000000000000000000002f745c58000000000000000000000000000000000000000000000000000000004f6ccce600000000000000000000000000000000000000000000000000000000542d50400000000000000000000000000000000000000000000000000000000062e354040000000000000000000000000000000000000000000000000000000062e35405000000000000000000000000000000000000000000000000000000006352211e00000000000000000000000000000000000000000000000000000000542d50410000000000000000000000000000000000000000000000000000000055f804b3000000000000000000000000000000000000000000000000000000004f6ccce7000000000000000000000000000000000000000000000000000000005067c65f0000000000000000000000000000000000000000000000000000000054214f69000000000000000000000000000000000000000000000000000000003ccfd60a00000000000000000000000000000000000000000000000000000000418e61d400000000000000000000000000000000000000000000000000000000418e61d50000000000000000000000000000000000000000000000000000000042842e0e000000000000000000000000000000000000000000000000000000003ccfd60b0000000000000000000000000000000000000000000000000000000040d0b4a9000000000000000000000000000000000000000000000000000000002f745c590000000000000000000000000000000000000000000000000000000030f7d71b0000000000000000000000000000000000000000000000000000000032cb6b0c0000000000000000000000000000000000000000000000000000000018160ddc000000000000000000000000000000000000000000000000000000002073447c000000000000000000000000000000000000000000000000000000002a552059000000000000000000000000000000000000000000000000000000002a55205a000000000000000000000000000000000000000000000000000000002b26e3a9000000000000000000000000000000000000000000000000000000002073447d0000000000000000000000000000000000000000000000000000000023b872dd0000000000000000000000000000000000000000000000000000000018160ddd00000000000000000000000000000000000000000000000000000000195e8708000000000000000000000000000000000000000000000000000000001d0956050000000000000000000000000000000000000000000000000000000006fdde0200000000000000000000000000000000000000000000000000000000095ea7b200000000000000000000000000000000000000000000000000000000095ea7b3000000000000000000000000000000000000000000000000000000000d026eb10000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000081812fc0000000000000000000000000000000000000000000000000000000001ffc9a700000000000000000000000000000000000000000000000000000000039380aa0000000000000000000000000000000000000000000000000000000004634d8d000000000000000000000000000000000000000000000000000000ffffffffff0000000000000000000000ff0000000000000000000000000000000000000000000000000000000000ffffffffff000000000000000000000000000000000000ffffffffffffffffff0000000000ffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000200000008000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0000000000000000000000000000000000000000000000000ffffffffffffff7f8000000000000000000000000000000000000000000000000000000000000000214c454e4754485f4d49534d4154434821000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff5f4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000840000008000000000000000000000000000000000000000000000000000000020000000000000000000000000796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d95539132020000020000000000000000000000000000000400000000000000000000000019457468657265756d205369676e6564204d6573736167653a0a333200000000000000000000000000000000000000000000000000000000ffffffffffffff9f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a00000000000000000000000000000000000000080000000000000000000000000756500000000000000000000000000000000000000000000000000000000000045434453413a20696e76616c6964207369676e6174757265202776272076616c00000000000000000000000000000000000000840000000000000000000000000200000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffdf0c085601c9b05546c4de925af5cdebeab0dd5f5d4bea4dc57b37e961749c911dddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef1806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000150b7a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003ffffffe000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffff00000000000000004552433732313a206d696e7420746f20746865207a65726f20616464726573732ed21ab30000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000001d262450000000000000000000000000000000000000000000000000000000005265656e7472616e637947756172643a207265656e7472616e742063616c6c000000000000000000ff0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fffffffffffffffe00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff300000000000000000000000000000000000000000000000000000000000000055f448fdea98c4d29eb340757ef0a66cd03dbb9538908a6a81d96026b71ec4752f00000000000000000000000000000000000000000000000000000000000000756e72657665616c65642f00000000000000000000000000000000000000000017307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c314552433732313a20617070726f766520746f2063616c6c6572000000000000000000000000000000000000000000000000000064000000800000000000000000436f6e7472616374206973207365616c65640000000000000000000000000000000000ffffffffffffffff0000000000000000000000000000000000000000001d77a899000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000ffffffffffffffffffffffffffff0000000000ffffffffffffffffffffffffff0000000000000000000000000000ffffffffff000000000000000000000000000bb25a4e00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffff0000000000ffffffffffffffff00000000000000000000000000000000000000ffffffffff0000000000000000cd967e3500000000000000000000000000000000000000000000000000000000de2bb82800000000000000000000000000000000000000000000000000000000ffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff00000000000000000000000100000000000000000000000000000000000000004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572aa0bb70215673b2d614cbf8a810f59932fc2446ac76f75957e269fd948e13b8baa0bb70215673b2d614cbf8a810f59932fc2446ac76f75957e269fd948e13b8a4e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000455243373231456e756d657261626c653a20676c6f62616c20696e646578206f7574206f6620626f756e647300000000000000000000000000000000000000000000000000000000000000000000000000000064000000a00000000000000000e59e82a200000000000000000000000000000000000000000000000000000000ffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffff00000000000000000100000000000000000000000000000000000000000000009cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f3927fcd9d100000000000000000000000000000000000000000000000000000000ceea21b60000000000000000000000000000000000000000000000000000000074206f6620626f756e6473000000000000000000000000000000000000000000455243373231456e756d657261626c653a206f776e657220696e646578206f754552433732313a2062616c616e636520717565727920666f7220746865207a65726f206164647265737300000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffff4552433732313a20746f6b656e20616c7265616479206d696e74656400000000d05cb609000000000000000000000000000000000000000000000000000000006e6572206e6f7220617070726f76656420666f7220616c6c00000000000000004552433732313a20617070726f76652063616c6c6572206973206e6f74206f778c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92572000000000000000000000000000000000000000000000000000000000000004552433732313a20617070726f76616c20746f2063757272656e74206f776e65656e7420746f6b656e00000000000000000000000000000000000000000000004552433732313a206f776e657220717565727920666f72206e6f6e65786973740000000000000000000000000000000000000000ffffffffffffffffffffffff455243323938313a20726f79616c7479206665652077696c6c206578636565642073616c6550726963650000000000000000000000000000000000000000000021494e56414c49445f5349474e4154555245210000000000000000000000000021414c52454144595f555345442100000000000000000000000000000000000045434453413a20696e76616c6964207369676e6174757265000000000000000045434453413a20696e76616c6964207369676e6174757265202773272076616c45434453413a20696e76616c6964207369676e6174757265206c656e677468005b5e139effffffffffffffffffffffffffffffffffffffffffffffffffffffff5b5e139f0000000000000000000000000000000000000000000000000000000080ac58cd00000000000000000000000000000000000000000000000000000000780e9d630000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000002a55205a00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000010000000000000000697374656e7420746f6b656e00000000000000000000000000000000000000004552433732313a20617070726f76656420717565727920666f72206e6f6e6578776e6572206e6f7220617070726f7665640000000000000000000000000000004552433732313a207472616e736665722063616c6c6572206973206e6f74206f000000000000000000000000000000000000000000000000ffffffffffffff604552433732313a206f70657261746f7220717565727920666f72206e6f6e65786f776e65720000000000000000000000000000000000000000000000000000004552433732313a207472616e736665722066726f6d20696e636f72726563742072657373000000000000000000000000000000000000000000000000000000004552433732313a207472616e7366657220746f20746865207a65726f2061646463656976657220696d706c656d656e74657200000000000000000000000000004552433732313a207472616e7366657220746f206e6f6e2045524337323152653dadc2b08e16bbbd9ff3d0043973251c072ee3a73bd55a539713767a11e5e591
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000047d6f870b98b440ba54b047f1a27021dbf25ad0c
-----Decoded View---------------
Arg [0] : _allowancesSigner (address): 0x47D6F870b98B440BA54b047f1a27021DbF25Ad0c
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000047d6f870b98b440ba54b047f1a27021dbf25ad0c
[ 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.