Source Code
Overview
ETH Balance
0 ETH
More Info
ContractCreator
Multichain Info
N/A
Latest 6 from a total of 6 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Kill Collided Po... | 4554327 | 7 hrs ago | IN | 0 ETH | 0.00034251 | ||||
Move Sl | 4551077 | 8 hrs ago | IN | 0 ETH | 0.00000256 | ||||
Push Initial Val... | 4550762 | 8 hrs ago | IN | 0 ETH | 0.00365356 | ||||
Kill Collided Po... | 4549993 | 8 hrs ago | IN | 0 ETH | 0.00004925 | ||||
Move Sl | 4549961 | 8 hrs ago | IN | 0 ETH | 0.00000236 | ||||
Push Initial Val... | 4549647 | 8 hrs ago | IN | 0 ETH | 0.00006605 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
4554327 | 7 hrs ago | 0 ETH | ||||
4554327 | 7 hrs ago | 0 ETH | ||||
4554327 | 7 hrs ago | 0 ETH | ||||
4554327 | 7 hrs ago | 0 ETH | ||||
4554327 | 7 hrs ago | 0 ETH | ||||
4554327 | 7 hrs ago | 0 ETH | ||||
4554327 | 7 hrs ago | 0 ETH | ||||
4554327 | 7 hrs ago | 0 ETH | ||||
4554327 | 7 hrs ago | 0 ETH | ||||
4554327 | 7 hrs ago | 0 ETH | ||||
4554327 | 7 hrs ago | 0 ETH | ||||
4554327 | 7 hrs ago | 0 ETH | ||||
4554327 | 7 hrs ago | 0 ETH | ||||
4554327 | 7 hrs ago | 0 ETH | ||||
4554327 | 7 hrs ago | 0 ETH | ||||
4554327 | 7 hrs ago | 0 ETH | ||||
4554327 | 7 hrs ago | 0 ETH | ||||
4554327 | 7 hrs ago | 0 ETH | ||||
4554327 | 7 hrs ago | 0 ETH | ||||
4554327 | 7 hrs ago | 0 ETH | ||||
4554327 | 7 hrs ago | 0 ETH | ||||
4554327 | 7 hrs ago | 0 ETH | ||||
4554327 | 7 hrs ago | 0 ETH | ||||
4554327 | 7 hrs ago | 0 ETH | ||||
4554327 | 7 hrs ago | 0 ETH |
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:
HelloAbstr
Compiler Version
v0.8.28-1.0.1
ZkSolc Version
v1.5.9
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract HelloAbstr is ERC721A, Ownable { uint256 public maxSupply = 1000; uint256 public maxPerTx = 10; uint256 public cost = 0.000001 ether; string public baseURI; string private uriSuffix = ".json"; bool public sale = false; error MaxPerTxReached(); error NotEnoughETH(); error MaxSupply(); error SaleNotStarted(); int16[] public tokenLats; int16[] public tokenLongs; mapping(int16 => mapping(int16 => uint16)) public tokenLatLongsMapping; bool[] isTokenBad; uint16[] deadList; //Right after the token is dead, it will be added to this list incrementally. which means deadList[999] will be the last survivor. prize will be distributed between deadList[900 to 999] constructor() ERC721A("HelloAbstr", "HA") Ownable() {} function mint(uint256 _amount) external payable { if (!sale) revert SaleNotStarted(); if (_totalMinted() + _amount > maxSupply) revert MaxSupply(); if (_amount > maxPerTx) revert MaxPerTxReached(); if (msg.value < cost * _amount) revert NotEnoughETH(); _mint(msg.sender, _amount); } function pushInitialValues(int16 count) external onlyOwner { SlCurrentlat = 0; SlCurrentlon = 0; isTokenBad.push(true); tokenLats.push(0); tokenLongs.push(0); setInitialLatLong(1, count); for (int16 i = 1; i <= count; i++) { isTokenBad.push(false); } } function airdrop(address _to, uint256 _amount) external onlyOwner { require(totalSupply() + _amount < maxSupply, "Max supply"); _mint(_to, _amount); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); return string(abi.encodePacked(baseURI, _toString(tokenId), uriSuffix)); } function _startTokenId() internal pure override returns (uint256) { return 1; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function setBaseURI(string calldata _newURI) external onlyOwner { baseURI = _newURI; } function setMaxPerTx(uint256 _maxPerTx) external onlyOwner { maxPerTx = _maxPerTx; } function setMaxSupply(uint256 _maxSupply) external onlyOwner { maxSupply = _maxSupply; } function setPrice(uint256 _price) external onlyOwner { cost = _price; } function saleToggle() external onlyOwner { sale = !sale; } function setInitialLatLong( int32 seed, // Arbitrary initial seed int16 count ) public { int16 catchExcess = 0; for (int16 i = 1; i <= count; i++) { // Generate pseudo-random value using keccak256 bytes32 hash = keccak256(abi.encodePacked(seed, i)); // Convert bytes32 to uint256 uint256 hashValue = uint256(hash); // Ensure the values fit into the required range int16 randomLat = int16(int256((hashValue >> 128) % 141) - 70); // -70 to 70 int16 randomLong = int16(int256(hashValue % 361) - 180); // -180 to 180 if(tokenLatLongsMapping[randomLat][randomLong] == 0){ tokenLats.push(randomLat); tokenLongs.push(randomLong); tokenLatLongsMapping[randomLat][randomLong] = uint16(i - catchExcess); }else{ count++; catchExcess++; } } } error NotOwnerOfToken(); error AlreadyOccupiedPoint(); function updateLatLong( int16 lat, int16 long, uint16 tokenId ) external { if (msg.sender != ownerOf(tokenId)) { revert NotOwnerOfToken(); } if (tokenLatLongsMapping[lat][long] != 0) { revert AlreadyOccupiedPoint(); } tokenLatLongsMapping[tokenLats[tokenId]][tokenLongs[tokenId]] = 0; tokenLats[tokenId] = lat; tokenLongs[tokenId] = long; tokenLatLongsMapping[lat][long] = tokenId; } function getAllCoordinates() external view returns ( int16[] memory, int16[] memory, bool[] memory, uint256 count ) { uint256 returnval = tokenLats.length; return (tokenLats, tokenLongs, isTokenBad, returnval); } function withdraw() external onlyOwner { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } int16 SlCurrentlat; int16 SlCurrentlon; bool SlReady; function moveSl(int16 lat, int16 lon) external onlyOwner { SlCurrentlat = lat; SlCurrentlon = lon; SlReady = true; } function getSlCurrentPos() external view returns ( int16 lat, int16 long, bool _SlReady ) { return (SlCurrentlat, SlCurrentlon, SlReady); } function getIsSlReady() external view returns (bool isReady) { return SlReady; } function killCollidedPoints(int16 lat, int16 lon, int16 _range) external onlyOwner { SlReady = false; int16 range = _range - 1; uint16 currentToken; for (int16 latOffset = -range; latOffset <= range; latOffset++) { for (int16 lonOffset = -range; lonOffset <= range; lonOffset++) { int16 newLat = lat + latOffset; int16 newLon = lon + lonOffset; if (newLon < -180) { newLon += 360; } else if (newLon > 180) { newLon -= 360; } currentToken = tokenLatLongsMapping[newLat][newLon]; if (!isTokenBad[currentToken]) { isTokenBad[currentToken] = true; deadList.push(currentToken); } } } } }
// 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 (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 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 // ERC721A Contracts v4.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * The `_sequentialUpTo()` function can be overriden to enable spot mints * (i.e. non-consecutive mints) for `tokenId`s greater than `_sequentialUpTo()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // The amount of tokens minted above `_sequentialUpTo()`. // We call these spot mints (i.e. non-sequential mints). uint256 private _spotMinted; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); if (_sequentialUpTo() < _startTokenId()) _revert(SequentialUpToTooSmall.selector); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID for sequential mints. * * Override this function to change the starting token ID for sequential mints. * * Note: The value returned must never change after any tokens have been minted. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the maximum token ID (inclusive) for sequential mints. * * Override this function to return a value less than 2**256 - 1, * but greater than `_startTokenId()`, to enable spot (non-sequential) mints. * * Note: The value returned must never change after any tokens have been minted. */ function _sequentialUpTo() internal view virtual returns (uint256) { return type(uint256).max; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256 result) { // Counter underflow is impossible as `_burnCounter` cannot be incremented // more than `_currentIndex + _spotMinted - _startTokenId()` times. unchecked { // With spot minting, the intermediate `result` can be temporarily negative, // and the computation must be unchecked. result = _currentIndex - _burnCounter - _startTokenId(); if (_sequentialUpTo() != type(uint256).max) result += _spotMinted; } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256 result) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { result = _currentIndex - _startTokenId(); if (_sequentialUpTo() != type(uint256).max) result += _spotMinted; } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } /** * @dev Returns the total number of tokens that are spot-minted. */ function _totalSpotMinted() internal view virtual returns (uint256) { return _spotMinted; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) _revert(BalanceQueryForZeroAddress.selector); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) _revert(URIQueryForNonexistentToken.selector); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Returns whether the ownership slot at `index` is initialized. * An uninitialized slot does not necessarily mean that the slot has no owner. */ function _ownershipIsInitialized(uint256 index) internal view virtual returns (bool) { return _packedOwnerships[index] != 0; } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * @dev Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256 packed) { if (_startTokenId() <= tokenId) { packed = _packedOwnerships[tokenId]; if (tokenId > _sequentialUpTo()) { if (_packedOwnershipExists(packed)) return packed; _revert(OwnerQueryForNonexistentToken.selector); } // If the data at the starting slot does not exist, start the scan. if (packed == 0) { if (tokenId >= _currentIndex) _revert(OwnerQueryForNonexistentToken.selector); // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `tokenId` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. for (;;) { unchecked { packed = _packedOwnerships[--tokenId]; } if (packed == 0) continue; if (packed & _BITMASK_BURNED == 0) return packed; // Otherwise, the token is burned, and we must revert. // This handles the case of batch burned tokens, where only the burned bit // of the starting slot is set, and remaining slots are left uninitialized. _revert(OwnerQueryForNonexistentToken.selector); } } // Otherwise, the data exists and we can skip the scan. // This is possible because we have already achieved the target condition. // This saves 2143 gas on transfers of initialized tokens. // If the token is not burned, return `packed`. Otherwise, revert. if (packed & _BITMASK_BURNED == 0) return packed; } _revert(OwnerQueryForNonexistentToken.selector); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. See {ERC721A-_approve}. * * Requirements: * * - The caller must own the token or be an approved operator. */ function approve(address to, uint256 tokenId) public payable virtual override { _approve(to, tokenId, true); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) _revert(ApprovalQueryForNonexistentToken.selector); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool result) { if (_startTokenId() <= tokenId) { if (tokenId > _sequentialUpTo()) return _packedOwnershipExists(_packedOwnerships[tokenId]); if (tokenId < _currentIndex) { uint256 packed; while ((packed = _packedOwnerships[tokenId]) == 0) --tokenId; result = packed & _BITMASK_BURNED == 0; } } } /** * @dev Returns whether `packed` represents a token that exists. */ function _packedOwnershipExists(uint256 packed) private pure returns (bool result) { assembly { // The following is equivalent to `owner != address(0) && burned == false`. // Symbolically tested. result := gt(and(packed, _BITMASK_ADDRESS), and(packed, _BITMASK_BURNED)) } } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean. from = address(uint160(uint256(uint160(from)) & _BITMASK_ADDRESS)); if (address(uint160(prevOwnershipPacked)) != from) _revert(TransferFromIncorrectOwner.selector); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) _revert(TransferCallerNotOwnerNorApproved.selector); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS; assembly { // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. from, // `from`. toMasked, // `to`. tokenId // `tokenId`. ) } if (toMasked == 0) _revert(TransferToZeroAddress.selector); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { _revert(TransferToNonERC721ReceiverImplementer.selector); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { _revert(TransferToNonERC721ReceiverImplementer.selector); } assembly { revert(add(32, reason), mload(reason)) } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) _revert(MintZeroQuantity.selector); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS; if (toMasked == 0) _revert(MintToZeroAddress.selector); uint256 end = startTokenId + quantity; uint256 tokenId = startTokenId; if (end - 1 > _sequentialUpTo()) _revert(SequentialMintExceedsLimit.selector); do { assembly { // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. tokenId // `tokenId`. ) } // The `!=` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. } while (++tokenId != end); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) _revert(MintToZeroAddress.selector); if (quantity == 0) _revert(MintZeroQuantity.selector); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) _revert(MintERC2309QuantityExceedsLimit.selector); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); if (startTokenId + quantity - 1 > _sequentialUpTo()) _revert(SequentialMintExceedsLimit.selector); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { _revert(TransferToNonERC721ReceiverImplementer.selector); } } while (index < end); // This prevents reentrancy to `_safeMint`. // It does not prevent reentrancy to `_safeMintSpot`. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } /** * @dev Mints a single token at `tokenId`. * * Note: A spot-minted `tokenId` that has been burned can be re-minted again. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` must be greater than `_sequentialUpTo()`. * - `tokenId` must not exist. * * Emits a {Transfer} event for each mint. */ function _mintSpot(address to, uint256 tokenId) internal virtual { if (tokenId <= _sequentialUpTo()) _revert(SpotMintTokenIdTooSmall.selector); uint256 prevOwnershipPacked = _packedOwnerships[tokenId]; if (_packedOwnershipExists(prevOwnershipPacked)) _revert(TokenAlreadyExists.selector); _beforeTokenTransfers(address(0), to, tokenId, 1); // Overflows are incredibly unrealistic. // The `numberMinted` for `to` is incremented by 1, and has a max limit of 2**64 - 1. // `_spotMinted` is incremented by 1, and has a max limit of 2**256 - 1. unchecked { // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `true` (as `quantity == 1`). _packedOwnerships[tokenId] = _packOwnershipData( to, _nextInitializedFlag(1) | _nextExtraData(address(0), to, prevOwnershipPacked) ); // Updates: // - `balance += 1`. // - `numberMinted += 1`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += (1 << _BITPOS_NUMBER_MINTED) | 1; // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS; if (toMasked == 0) _revert(MintToZeroAddress.selector); assembly { // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. tokenId // `tokenId`. ) } ++_spotMinted; } _afterTokenTransfers(address(0), to, tokenId, 1); } /** * @dev Safely mints a single token at `tokenId`. * * Note: A spot-minted `tokenId` that has been burned can be re-minted again. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}. * - `tokenId` must be greater than `_sequentialUpTo()`. * - `tokenId` must not exist. * * See {_mintSpot}. * * Emits a {Transfer} event. */ function _safeMintSpot( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mintSpot(to, tokenId); unchecked { if (to.code.length != 0) { uint256 currentSpotMinted = _spotMinted; if (!_checkContractOnERC721Received(address(0), to, tokenId, _data)) { _revert(TransferToNonERC721ReceiverImplementer.selector); } // This prevents reentrancy to `_safeMintSpot`. // It does not prevent reentrancy to `_safeMint`. if (_spotMinted != currentSpotMinted) revert(); } } } /** * @dev Equivalent to `_safeMintSpot(to, tokenId, '')`. */ function _safeMintSpot(address to, uint256 tokenId) internal virtual { _safeMintSpot(to, tokenId, ''); } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Equivalent to `_approve(to, tokenId, false)`. */ function _approve(address to, uint256 tokenId) internal virtual { _approve(to, tokenId, false); } /** * @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: * * - `tokenId` must exist. * * Emits an {Approval} event. */ function _approve( address to, uint256 tokenId, bool approvalCheck ) internal virtual { address owner = ownerOf(tokenId); if (approvalCheck && _msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { _revert(ApprovalCallerNotOwnerNorApproved.selector); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) _revert(TransferCallerNotOwnerNorApproved.selector); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as `_burnCounter` cannot be exceed `_currentIndex + _spotMinted` times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) _revert(OwnershipNotInitializedForExtraData.selector); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } /** * @dev For more efficient reverts. */ function _revert(bytes4 errorSelector) internal pure { assembly { mstore(0x00, errorSelector) revert(0x00, 0x04) } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); /** * `_sequentialUpTo()` must be greater than `_startTokenId()`. */ error SequentialUpToTooSmall(); /** * The `tokenId` of a sequential mint exceeds `_sequentialUpTo()`. */ error SequentialMintExceedsLimit(); /** * Spot minting requires a `tokenId` greater than `_sequentialUpTo()`. */ error SpotMintTokenIdTooSmall(); /** * Cannot mint over a token that already exists. */ error TokenAlreadyExists(); /** * The feature is not compatible with spot mints. */ error NotCompatibleWithSpotMints(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); }
{ "evmVersion": "paris", "optimizer": { "enabled": true, "mode": "3" }, "outputSelection": { "*": { "*": [ "abi" ] } }, "detectMissingLibraries": false, "forceEVMLA": false, "enableEraVMExtensions": false, "libraries": {} }
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyOccupiedPoint","type":"error"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MaxPerTxReached","type":"error"},{"inputs":[],"name":"MaxSupply","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NotCompatibleWithSpotMints","type":"error"},{"inputs":[],"name":"NotEnoughETH","type":"error"},{"inputs":[],"name":"NotOwnerOfToken","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"SaleNotStarted","type":"error"},{"inputs":[],"name":"SequentialMintExceedsLimit","type":"error"},{"inputs":[],"name":"SequentialUpToTooSmall","type":"error"},{"inputs":[],"name":"SpotMintTokenIdTooSmall","type":"error"},{"inputs":[],"name":"TokenAlreadyExists","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAllCoordinates","outputs":[{"internalType":"int16[]","name":"","type":"int16[]"},{"internalType":"int16[]","name":"","type":"int16[]"},{"internalType":"bool[]","name":"","type":"bool[]"},{"internalType":"uint256","name":"count","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getIsSlReady","outputs":[{"internalType":"bool","name":"isReady","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSlCurrentPos","outputs":[{"internalType":"int16","name":"lat","type":"int16"},{"internalType":"int16","name":"long","type":"int16"},{"internalType":"bool","name":"_SlReady","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"int16","name":"lat","type":"int16"},{"internalType":"int16","name":"lon","type":"int16"},{"internalType":"int16","name":"_range","type":"int16"}],"name":"killCollidedPoints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"int16","name":"lat","type":"int16"},{"internalType":"int16","name":"lon","type":"int16"}],"name":"moveSl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"int16","name":"count","type":"int16"}],"name":"pushInitialValues","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleToggle","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":"_newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"int32","name":"seed","type":"int32"},{"internalType":"int16","name":"count","type":"int16"}],"name":"setInitialLatLong","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerTx","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"int16","name":"","type":"int16"},{"internalType":"int16","name":"","type":"int16"}],"name":"tokenLatLongsMapping","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenLats","outputs":[{"internalType":"int16","name":"","type":"int16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenLongs","outputs":[{"internalType":"int16","name":"","type":"int16"}],"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":"result","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"int16","name":"lat","type":"int16"},{"internalType":"int16","name":"long","type":"int16"},{"internalType":"uint16","name":"tokenId","type":"uint16"}],"name":"updateLatLong","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
9c4d535b0000000000000000000000000000000000000000000000000000000000000000010005bff4655c9ede73a0de5464777d0530efdab729297564d7d12d621d928700000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x0001000000000002000c00000000000200000000000103550000008003000039000000400030043f00000001002001900000003b0000c13d0000006002100270000004fa04200197000000040040008c00000f8a0000413d000000000201043b000000e0022002700000050b0020009c0000006f0000a13d0000050c0020009c000000da0000a13d0000050d0020009c0000011c0000a13d0000050e0020009c000001f40000213d000005120020009c000003bc0000613d000005130020009c000004640000613d000005140020009c00000f8a0000c13d000000440040008c00000f8a0000413d0000000001000416000000000001004b00000f8a0000c13d13e50fb90000040f000a00000001001d13e50fc60000040f0000000902000039000000000202041a00000502022001970000000003000411000000000032004b00000000020000390000000102006039000900000001001d000000000102001913e5114d0000040f0000000a010000290000ffff0110018f000000090200002900000010022002100000054902200197000000000121019f0000001502000039000000000302041a0000054a03300197000000000131019f0000054b011001c7000000000012041b0000000001000019000013e60001042e0000000001000416000000000001004b00000f8a0000c13d0000000a01000039000000800010043f000004fb01000041000000a00010043f0000010001000039000000400010043f0000000201000039000000c00010043f000004fc02000041000000e00020043f000000000201041a000000010320019000000001022002700000007f0220618f0000001f0020008c00000000040000390000000104002039000000000043004b000000690000c13d000000200020008c0000005c0000413d000000000010043f000004fd030000410000001f022000390000000502200270000004fe0220009a000000000003041b0000000103300039000000000023004b000000580000413d000004ff02000041000000000021041b0000000303000039000000000103041a000000010010019000000001041002700000007f0440618f0000001f0040008c00000000020000390000000102002039000000000121013f0000000100100190000000800000613d0000055101000041000000000010043f0000002201000039000000040010043f0000055201000041000013e700010430000005280020009c000001050000213d000005360020009c000001290000213d0000053d0020009c000002020000a13d0000053e0020009c000005650000613d0000053f0020009c000005880000613d000005400020009c00000f8a0000c13d0000000001000416000000000001004b00000f8a0000c13d0000000c01000039000001fe0000013d000000200040008c000000990000413d000a00000004001d000000000030043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000500011001c7000080100200003913e513e00000040f000000010020019000000f8a0000613d000000000101043b0000000a020000290000001f0220003900000005022002700000000002210019000000000021004b0000000303000039000000990000813d000000000001041b0000000101100039000000000021004b000000950000413d000000e00100043d000005010110019700000004011001bf000000000013041b0000000101000039000000000010041b000000000100041100000502061001970000000901000039000000000201041a0000050304200197000000000464019f000000000041041b00000000010004140000050205200197000004fa0010009c000004fa01008041000000c00110021000000504011001c70000800d02000039000005050400004113e513db0000040f000000010020019000000f8a0000613d000003e8010000390000000a02000039000000000012041b0000000b01000039000000000021041b00000506010000410000000c02000039000000000012041b0000000e01000039000000000301041a000000010030019000000001023002700000007f0220618f0000001f0020008c00000000040000390000000104002039000000000343013f0000000100300190000000690000c13d000000200020008c000000cf0000413d000000000010043f00000507030000410000001f022000390000000502200270000005080220009a000000000003041b0000000103300039000000000023004b000000cb0000413d0000050902000041000000000021041b0000000f01000039000000000201041a000005aa02200197000000000021041b0000002001000039000001000010044300000120000004430000050a01000041000013e60001042e0000051b0020009c000001490000213d000005220020009c000002250000a13d000005230020009c000005970000613d000005240020009c000005af0000613d000005250020009c00000f8a0000c13d000000440040008c00000f8a0000413d0000000002000416000000000002004b00000f8a0000c13d0000000402100370000000000302043b000005020030009c00000f8a0000213d0000002401100370000000000201043b0000000901000039000000000101041a00000502011001970000000004000411000000000041004b0000090e0000c13d0000000101000039000000000101041a000005ab01100167000000000400041a0000000001140019000000000021001a00000f8c0000413d00000000042100190000000a01000039000000000501041a000000000054004b00000b1b0000813d000000000103001913e5135c0000040f0000000001000019000013e60001042e000005290020009c0000015d0000213d000005300020009c000002380000a13d000005310020009c000005b60000613d000005320020009c000005c90000613d000005330020009c00000f8a0000c13d000000240040008c00000f8a0000413d0000000002000416000000000002004b00000f8a0000c13d0000000401100370000000000101043b0000001102000039000000000202041a000000000021004b00000f8a0000813d13e50ffc0000040f000007ca0000013d000005150020009c000003450000a13d000005160020009c000007310000613d000005170020009c000007440000613d000005180020009c00000f8a0000c13d0000000001000416000000000001004b00000f8a0000c13d0000000a01000039000001fe0000013d000005370020009c0000038e0000a13d000005380020009c000007670000613d000005390020009c000007800000613d0000053a0020009c00000f8a0000c13d0000000001000416000000000001004b00000f8a0000c13d0000001501000039000000000101041a0000800000100190000080000200008a0000000003020019000000000300601900007fff0410018f000000000343019f000000800030043f00000562001001980000000002006019000000100310027000007fff0330018f000000000232019f000000a00020043f00000580001001980000000001000039000000010100c039000000c00010043f0000059801000041000013e60001042e0000051c0020009c000003970000a13d0000051d0020009c0000079f0000613d0000051e0020009c000007be0000613d0000051f0020009c00000f8a0000c13d000000240040008c00000f8a0000413d0000000401100370000000000201043b0000000f01000039000000000101041a000000ff001001900000092d0000c13d0000058c01000041000000000010043f0000058701000041000013e7000104300000052a0020009c000003ae0000a13d0000052b0020009c000007db0000613d0000052c0020009c000007e60000613d0000052d0020009c00000f8a0000c13d000000640040008c00000f8a0000413d0000000002000416000000000002004b00000f8a0000c13d0000000402100370000000000502043b0000800000500190000080000200008a0000000003020019000000000300601900007fff0450018f000000000343019f000900000005001d000000000035004b00000f8a0000c13d0000002403100370000000000403043b0000800000400190000000000200601900007fff0340018f000000000232019f000800000004001d000000000024004b00000f8a0000c13d0000004401100370000000000101043b000700000001001d0000ffff0010008c00000f8a0000213d0000000701000029000000000001004b000005930000613d000000000010043f0000000401000039000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000080100200003913e513e00000040f000000010020019000000f8a0000613d000000000101043b000000000101041a000000000001004b000001ae0000c13d000000000100041a0000000702000029000000000021004b000005930000a13d000a00000002001d0000000a01000029000000010110008a000a00000001001d000000000010043f0000000401000039000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000080100200003913e513e00000040f000000010020019000000f8a0000613d000000000101043b000000000101041a000000000001004b0000019b0000613d0000058300100198000005930000c13d00000502011001970000000002000411000000000012004b00000f400000c13d0000000901000029000000000010043f0000001201000039000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000080100200003913e513e00000040f000000010020019000000f8a0000613d000000000101043b0000000802000029000000000020043f000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000080100200003913e513e00000040f000000010020019000000f8a0000613d000000000101043b000000000101041a0000ffff0010019000000f4a0000c13d000000070100002913e5100d0000040f000000000101041a13e5101e0000040f13e50fd30000040f000a00000001001d000000070100002913e50ffc0000040f000000000101041a13e5101e0000040f00000000020100190000000a0100002913e50fe80000040f000000000201041a0000054d02200197000000000021041b000000070100002913e5100d0000040f000000090300002913e511600000040f000000070100002913e50ffc0000040f000000080300002913e511600000040f000000090100002913e50fd30000040f000000080200002913e50fe80000040f000000000201041a0000054d0220019700000007022001af000000000021041b0000000001000019000013e60001042e0000050f0020009c000008050000613d000005100020009c000008200000613d000005110020009c00000f8a0000c13d0000000001000416000000000001004b00000f8a0000c13d0000000b01000039000000000101041a000000800010043f0000054301000041000013e60001042e000005410020009c0000083d0000613d000005420020009c00000f8a0000c13d0000000001000416000000000001004b00000f8a0000c13d0000000203000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f0000000100500190000000690000c13d000000800010043f000000000004004b000009170000613d000000000030043f000000000001004b00000000020000190000091c0000613d000004fd030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b0000021d0000413d0000091c0000013d000005260020009c000008510000613d000005270020009c00000f8a0000c13d000000240040008c00000f8a0000413d0000000002000416000000000002004b00000f8a0000c13d0000000401100370000000000101043b000005020010009c00000f8a0000213d000000000001004b0000093a0000c13d0000059001000041000000000010043f0000058701000041000013e700010430000005340020009c000008670000613d000005350020009c00000f8a0000c13d000000440040008c00000f8a0000413d0000000002000416000000000002004b00000f8a0000c13d0000000402100370000000000202043b0000056200200198000005960300004100000000030060190000059704200197000000000343019f000000000032004b00000f8a0000c13d0000002401100370000000000401043b0000800000400190000080000100008a000000000100601900007fff0340018f000000000131019f000800000004001d000000000014004b00000f8a0000c13d0000000101000039000200e000200218000700000000001d0000025c0000013d0000000a02000029000000010120003900007fff0020008c00000f8c0000613d0000800000100190000080000400008a0000000002040019000000000200601900007fff0310018f000000000532019f000000080300002900008000003001900000000002040019000000000200601900007fff0330018f000000000632019f0000054e026001970000054e03500197000000000423013f000000000023004b00000000020000190000054e02004041000a00000005001d000600000006001d000000000065004b00000000030000190000054e030020410000054e0040009c000000000203c019000000000002004b00000b2e0000c13d000000400200043d000000200320003900000002040000290000000000430435000000f0011002100000002404200039000000000014043500000006010000390000000000120435000005950020009c00000a100000213d0000004001200039000000400010043f000004fa0030009c000004fa0300804100000040013002100000000002020433000004fa0020009c000004fa020080410000006002200210000000000112019f0000000002000414000004fa0020009c000004fa02008041000000c002200210000000000112019f00000504011001c7000080100200003913e513e00000040f000000010020019000000f8a0000613d000000000101043b000900000001001d00000080011002700000008d1010011a000000460210008a0000800000200190000080000100008a0000000001006019000500000002001d00007fff0220018f000000000121019f000400000001001d000000000010043f0000001201000039000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000080100200003913e513e00000040f0000000903000029000001693030011a000000010020019000000f8a0000613d000000b40330008a0000800000300190000080000200008a0000000002006019000900000003001d00007fff0330018f000000000232019f000000000101043b000300000002001d000000000020043f000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000080100200003913e513e00000040f000000010020019000000f8a0000613d000000000101043b000000000101041a0000ffff00100190000002d60000613d000000060300002900007fff0030008c00000f8c0000613d00000007020000290000800000200190000080000100008a000000000100601900007fff0220018f000000000121019f00007fff0010008c00000f8c0000613d000700010010003d000800010030003d000002580000013d0000001001000039000000000101041a000005540010009c00000a100000213d000600000001001d00000001011000390000001002000039000000000012041b000000000020043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000500011001c7000080100200003913e513e00000040f000000010020019000000f8a0000613d00000006050000290000000402500210000000f00220018f0000ffff0320020f000005ab033001670000000404500270000000000101043b0000000001410019000000000401041a000000000334016f00000005040000290000ffff0440018f00000000022401cf000000000223019f000000000021041b0000001101000039000000000101041a000005540010009c00000a100000213d000600000001001d00000001011000390000001102000039000000000012041b000000000020043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000500011001c7000080100200003913e513e00000040f000000010020019000000f8a0000613d00000006050000290000000402500210000000f00220018f0000ffff0320020f000005ab033001670000000404500270000000000101043b0000000001410019000000000401041a000000000334016f00000009040000290000ffff0440018f00000000022401cf000000000223019f000000000021041b00000007020000290000800000200190000080000100008a000000000100601900007fff0220018f000000000121019f0000000a01100069000900000001001d000080000110008a0000054d0010009c00000f8c0000413d0000000401000029000000000010043f0000001201000039000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000080100200003913e513e00000040f000000010020019000000f8a0000613d000000000101043b0000000302000029000000000020043f000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000080100200003913e513e00000040f000000010020019000000f8a0000613d00000009020000290000ffff0220018f000000000101043b000000000301041a0000054d03300197000000000223019f000000000021041b000002580000013d000005190020009c000008780000613d0000051a0020009c00000f8a0000c13d000000840040008c00000f8a0000413d0000000402100370000000000502043b000005020050009c00000f8a0000213d0000002402100370000000000202043b000005020020009c00000f8a0000213d0000004403100370000000000303043b0000006406100370000000000706043b000005540070009c00000f8a0000213d0000002306700039000000000046004b00000f8a0000813d0000000408700039000000000681034f000000000606043b000005540060009c00000a100000213d0000001f0a600039000005ac0aa001970000003f0aa00039000005ac0aa001970000056300a0009c00000a100000213d000000800aa000390000004000a0043f000000800060043f00000000076700190000002407700039000000000047004b00000f8a0000213d0000002004800039000000000441034f000005ac076001980000001f0860018f000000a0017000390000037a0000613d000000a009000039000000000a04034f00000000ab0a043c0000000009b90436000000000019004b000003760000c13d000000000008004b000003870000613d000000000474034f0000000307800210000000000801043300000000087801cf000000000878022f000000000404043b0000010007700089000000000474022f00000000047401cf000000000484019f0000000000410435000000a00160003900000000000104350000008004000039000000000105001913e5116d0000040f0000000001000019000013e60001042e0000053b0020009c000008bb0000613d0000053c0020009c00000f8a0000c13d000000000104001913e50fa70000040f13e5104a0000040f0000000001000019000013e60001042e000005200020009c000008c60000613d000005210020009c00000f8a0000c13d000000240040008c00000f8a0000413d0000000002000416000000000002004b00000f8a0000c13d0000000902000039000000000202041a00000502022001970000000003000411000000000032004b000000000200003900000001020060390000000401100370000000000101043b000a00000001001d000000000102001913e5114d0000040f0000000c01000039000008630000013d0000052e0020009c000008cf0000613d0000052f0020009c00000f8a0000c13d000000240040008c00000f8a0000413d0000000002000416000000000002004b00000f8a0000c13d0000000401100370000000000101043b13e513280000040f0000050201100197000007d40000013d0000000001000416000000000001004b00000f8a0000c13d0000001001000039000000000201041a000c00000002001d000a00000002001d000000800020043f000000000010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000500011001c7000080100200003913e513e00000040f000000010020019000000f8a0000613d000000000301043b0000000a0a000029000000a0010000390000001000a0008c000009450000413d000080000400008a000000010500008a0000000002000019000000000703041a000005550070019800000000080400190000000008006019000000e00970027000007fff0990018f000000000898019f000001c0091000390000000000890435000005560070019800000000080400190000000008006019000000d00970027000007fff0990018f000000000898019f000001a0091000390000000000890435000005570070019800000000080400190000000008006019000000c00970027000007fff0990018f000000000898019f00000180091000390000000000890435000005580070019800000000080400190000000008006019000000b00970027000007fff0990018f000000000898019f00000160091000390000000000890435000005590070019800000000080400190000000008006019000000a00970027000007fff0990018f000000000898019f000001400910003900000000008904350000055a0070019800000000080400190000000008006019000000900970027000007fff0990018f000000000898019f000001200910003900000000008904350000055b0070019800000000080400190000000008006019000000800970027000007fff0990018f000000000898019f000001000910003900000000008904350000055c0070019800000000080400190000000008006019000000700970027000007fff0990018f000000000898019f000000e00910003900000000008904350000055d0070019800000000080400190000000008006019000000600970027000007fff0990018f000000000898019f000000c00910003900000000008904350000055e0070019800000000080400190000000008006019000000500970027000007fff0990018f000000000898019f000000a00910003900000000008904350000055f0070019800000000080400190000000008006019000000400970027000007fff0990018f000000000898019f00000080091000390000000000890435000005600070019800000000080400190000000008006019000000300970027000007fff0990018f000000000898019f00000060091000390000000000890435000005610070019800000000080400190000000008006019000000200970027000007fff0990018f000000000898019f00000040091000390000000000890435000005620070019800000000080400190000000008006019000000100970027000007fff0990018f000000000898019f000000200910003900000000008904350000054e087001970000054e0080009c000000000800001900000000080560190000001008800210000000f009700270000000000889019f000000f00000008b000000000807601900008000008001900000000009040019000000000900601900007fff0880018f000000000889019f000001e009100039000000000089043500008000007001900000000008040019000000000800601900007fff0770018f000000000778019f00000000007104350000000103300039000002000110003900000010022000390000000f072001bf0000000000a7004b000003d60000413d000009460000013d000000640040008c00000f8a0000413d0000000002000416000000000002004b00000f8a0000c13d0000000402100370000000000402043b0000800000400190000080000200008a000000000200601900007fff0340018f000000000232019f000200000004001d000000000024004b00000f8a0000c13d0000002402100370000000000402043b0000800000400190000080000200008a000000000200601900007fff0340018f000000000232019f000500000004001d000000000024004b00000f8a0000c13d0000004401100370000000000101043b0000800000100190000080000200008a000000000200601900007fff0310018f000000000232019f000000000021004b00000f8a0000c13d0000000902000039000000000202041a00000502022001970000000003000411000000000032004b0000090e0000c13d0000001502000039000000000302041a0000054c03300197000000000032041b000080010210008a0000054d0020009c00000f8c0000413d000000010110008a0000800000100190000080000300008a0000000002030019000000000200601900007fff0110018f00080000001201a3000000080030006b00000f8c0000613d000000080300002900000000013000890000800000100190000080000200008a000000000200601900007fff0110018f000000000412019f0000054e014001970007054e0030019b000000070210014f000000070010006c00000000010000190000054e01004041000100000004001d000000000034004b00000000030000190000054e030020410000054e0020009c000000000103c019000000000001004b00000b2e0000c13d0000801005000039000300010000002d000000030200002900000002012000290000800000100190000080000200008a0000000002006019000080000310008a0000054d0030009c00000f8c0000413d00007fff0110018f00060000001201a300000001060000290000000507600029000080000170008a0000054d0010009c00000f8c0000413d0000800000700190000080000100008a000000000100601900007fff0270018f000000000121019f000005ad0010009c00000000020000190000054e020020410000054e031001970000054e043001670000054e0030009c00000000030000190000054e030040410000054e0040009c000000000302c019000000000003004b000004dc0000613d0000054f0010009c000004e00000213d000000b50010008c000004e00000413d000081680210008a0000054d0020009c00000f8c0000413d000001680710008a000004e00000013d00007e980210008a0000054d0020009c00000f8c0000413d0000016807100039000900000007001d000a00000006001d0000000601000029000000000010043f0000001201000039000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000000000205001913e513e00000040f000000010020019000000f8a0000613d00000009030000290000800000300190000080000200008a000000000200601900007fff0330018f000000000232019f000000000101043b000000000020043f000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000080100200003913e513e00000040f000000010020019000000f8a0000613d0000801005000039000000000101043b000000000101041a0000ffff0710018f0000001303000039000000000203041a000000000072004b00000f440000a13d000000000030043f0000000301100210000000f80110018f000000ff0310020f0000000502700270000005530220009a000000000402041a00000000003401700000000a06000029000005390000c13d000900000007001d000005ab03300167000000000334016f000000010110020f000000000113019f000000000012041b0000001402000039000000000102041a000005540010009c00000a100000213d000400000001001d0000000101100039000000000012041b000000000020043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000500011001c7000000000205001913e513e00000040f000000010020019000000f8a0000613d00000004050000290000000402500210000000f00220018f0000ffff0320020f000005ab033001670000000404500270000000000101043b0000000001410019000000000401041a000000000334016f00000009022001ef000000000223019f000000000021041b00008010050000390000000a0600002900007fff0060008c00000f8c0000613d00000001016000390000800000100190000080000200008a000000000200601900007fff0110018f000000000612019f0000054e01600197000000070210014f000000070010006c00000000010000190000054e01004041000000080060006c00000000030000190000054e030020410000054e0020009c000000000103c019000000000001004b000004be0000613d000000030100002900007fff0010008c00000f8c0000613d000000030100002900000001011000390000800000100190000080000200008a000000000200601900007fff0110018f000000000412019f0000054e01400197000000070210014f000000070010006c00000000010000190000054e01004041000300000004001d000000080040006c00000000030000190000054e030020410000054e0020009c000000000103c019000000000001004b000004b30000613d00000b2e0000013d000000240040008c00000f8a0000413d0000000002000416000000000002004b00000f8a0000c13d0000000401100370000000000201043b000000000002004b00000b8d0000613d000000000100041a000000000021004b00000b8d0000a13d000900000002001d000a00000002001d000000000020043f0000000401000039000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000080100200003913e513e00000040f000000010020019000000f8a0000613d000000000101043b000000000101041a000000000001004b00000b820000c13d0000000a02000029000000000002004b000000010220008a000005720000c13d00000f8c0000013d000000440040008c00000f8a0000413d0000000402100370000000000202043b000900000002001d000005020020009c00000f8a0000213d0000002401100370000000000101043b000000000001004b00000a160000c13d000005a301000041000000000010043f0000058701000041000013e7000104300000000001000416000000000001004b00000f8a0000c13d0000000901000039000000000201041a00000502032001970000000005000411000000000053004b0000090e0000c13d0000050302200197000000000021041b0000000001000414000004fa0010009c000004fa01008041000000c00110021000000504011001c70000800d0200003900000003030000390000050504000041000000000600001913e513db0000040f000000010020019000000f8a0000613d00000b2e0000013d0000000001000416000000000001004b00000f8a0000c13d0000001501000039000000000101041a0000058000100198000007e10000013d0000000001000416000000000001004b00000f8a0000c13d0000000901000039000000000101041a00000502011001970000000002000411000000000021004b0000000001000039000000010100603913e5114d0000040f0000000f01000039000000000201041a000005aa03200197000000ff0020019000000001033061bf000000000031041b0000000001000019000013e60001042e000000240040008c00000f8a0000413d0000000002000416000000000002004b00000f8a0000c13d0000000401100370000000000301043b0000800000300190000080000100008a000000000100601900007fff0230018f000000000121019f000200000003001d000000000013004b00000f8a0000c13d0000000901000039000000000101041a00000502011001970000000002000411000000000021004b0000090e0000c13d0000001501000039000000000201041a0000059402200197000000000021041b0000001301000039000000000101041a000005540010009c00000a100000213d000a00000001001d00000001011000390000001302000039000000000012041b000000000020043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000500011001c7000080100200003913e513e00000040f000000010020019000000f8a0000613d0000000a050000290000000302500210000000f80220018f000000ff0320020f000005ab033001670000000504500270000000000101043b0000000001410019000000000401041a000000000334016f000000010220020f000000000223019f000000000021041b0000001001000039000000000101041a000005540010009c00000a100000213d000a00000001001d00000001011000390000001002000039000000000012041b000000000020043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000500011001c7000080100200003913e513e00000040f000000010020019000000f8a0000613d0000000a040000290000000402400210000000f00220018f0000ffff0220020f000005ab022001670000000403400270000000000101043b0000000001310019000000000301041a000000000223016f000000000021041b0000001101000039000000000101041a000a00000001001d000005540010009c00000a100000213d0000000a0100002900000001011000390000001102000039000000000012041b000000000020043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000500011001c7000080100200003913e513e00000040f000000010020019000000f8a0000613d0000000a040000290000000402400210000000f00220018f0000ffff0220020f000005ab022001670000000403400270000000000101043b0000000001310019000000000301041a000000000223016f000000000021041b00000001010000390000801005000039000800020000002d000700000000001d000006450000013d0000000a02000029000000010120003900007fff0020008c00000f8c0000613d0000800000100190000080000400008a0000000002040019000000000200601900007fff0310018f000000000632019f000000080300002900008000003001900000000002040019000000000200601900007fff0330018f000000000732019f0000054e027001970000054e03600197000000000423013f000000000023004b00000000020000190000054e02002041000a00000006001d000000000076004b00000000030000190000054e0300a0410000054e0040009c000000000203c019000000000002004b00000f4e0000613d000600000007001d000000400200043d000000200320003900000583040000410000000000430435000000f0011002100000002404200039000000000014043500000006010000390000000000120435000005950020009c00000a100000213d0000004001200039000000400010043f000004fa0030009c000004fa0300804100000040013002100000000002020433000004fa0020009c000004fa020080410000006002200210000000000112019f0000000002000414000004fa0020009c000004fa02008041000000c002200210000000000112019f00000504011001c7000000000205001913e513e00000040f000000010020019000000f8a0000613d000000000101043b000900000001001d00000080011002700000008d1010011a000000460210008a0000800000200190000080000100008a0000000001006019000500000002001d00007fff0220018f000000000121019f000400000001001d000000000010043f0000001201000039000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000080100200003913e513e00000040f0000000903000029000001693030011a000000010020019000000f8a0000613d000000b40330008a0000800000300190000080000200008a0000000002006019000900000003001d00007fff0330018f000000000232019f000000000101043b000300000002001d000000000020043f000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000080100200003913e513e00000040f000000010020019000000f8a0000613d0000801005000039000000000101043b000000000101041a0000ffff00100190000006c00000613d000000060300002900007fff0030008c00000f8c0000613d00000007020000290000800000200190000080000100008a000000000100601900007fff0220018f000000000121019f00007fff0010008c00000f8c0000613d000700010010003d000800010030003d000006410000013d0000001001000039000000000101041a000005540010009c00000a100000213d000600000001001d00000001011000390000001002000039000000000012041b000000000020043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000500011001c7000000000205001913e513e00000040f000000010020019000000f8a0000613d00000006050000290000000402500210000000f00220018f0000ffff0320020f000005ab033001670000000404500270000000000101043b0000000001410019000000000401041a000000000334016f00000005040000290000ffff0440018f00000000022401cf000000000223019f000000000021041b0000001101000039000000000101041a000005540010009c000080100300003900000a100000213d000600000001001d00000001011000390000001102000039000000000012041b000000000020043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000500011001c7000000000203001913e513e00000040f000000010020019000000f8a0000613d00000006050000290000000402500210000000f00220018f0000ffff0320020f000005ab033001670000000404500270000000000101043b0000000001410019000000000401041a000000000334016f00000009040000290000ffff0440018f00000000022401cf000000000223019f000000000021041b00000007020000290000800000200190000080000100008a000000000100601900007fff0220018f000000000121019f0000000a01100069000900000001001d000080000110008a0000054d0010009c000080100200003900000f8c0000413d0000000401000029000000000010043f0000001201000039000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c713e513e00000040f000000010020019000000f8a0000613d000000000101043b0000000302000029000000000020043f000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000080100200003913e513e00000040f000000010020019000000f8a0000613d00000009020000290000ffff0220018f000000000101043b000000000301041a0000054d03300197000000000223019f000000000021041b0000801005000039000006410000013d000000240040008c00000f8a0000413d0000000002000416000000000002004b00000f8a0000c13d0000000902000039000000000202041a00000502022001970000000003000411000000000032004b000000000200003900000001020060390000000401100370000000000101043b000a00000001001d000000000102001913e5114d0000040f0000000b01000039000008630000013d000000240040008c00000f8a0000413d0000000002000416000000000002004b00000f8a0000c13d0000000401100370000000000201043b000000000002004b00000bc50000613d000000000100041a000000000021004b00000bc50000a13d000900000002001d000a00000002001d000000000020043f0000000401000039000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000080100200003913e513e00000040f000000010020019000000f8a0000613d000000000101043b000000000101041a000000000001004b00000b910000c13d0000000a02000029000000000002004b000000010220008a000007510000c13d00000f8c0000013d000000440040008c00000f8a0000413d0000000001000416000000000001004b00000f8a0000c13d13e50fb90000040f0000800000100190000080000200008a000000000200601900007fff0110018f000a0000001201a313e50fc60000040f0000000a02000029000000000020043f0000001202000039000000200020043f000a00000001001d0000004002000039000000000100001913e513c60000040f0000000a0200002913e50fe80000040f000000000101041a0000ffff0110018f000007d40000013d0000000001000416000000000001004b00000f8a0000c13d0000000901000039000000000101041a00000502011001970000000002000411000000000021004b0000090e0000c13d0000059a010000410000000000100443000000000100041000000004001004430000000001000414000004fa0010009c000004fa01008041000000c0011002100000059b011001c70000800a0200003913e513e00000040f000000010020019000000a660000613d000000000301043b0000000001000414000004fa0010009c000004fa01008041000000c001100210000000000003004b00000b240000c13d000000000200041100000b280000013d0000000001000416000000000001004b00000f8a0000c13d0000000303000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f0000000100500190000000690000c13d000000800010043f000000000004004b000009170000613d000000000030043f000000000001004b00000000020000190000091c0000613d0000058d030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b000007b60000413d0000091c0000013d000000240040008c00000f8a0000413d0000000002000416000000000002004b00000f8a0000c13d0000000401100370000000000101043b0000001002000039000000000202041a000000000021004b00000f8a0000813d13e5100d0000040f0000000302200210000000000101041a000000000121022f000000ff0020008c00000000010020190000800000100190000080000200008a000000000200601900007fff0110018f000000000112019f000000400200043d0000000000120435000004fa0020009c000004fa02008041000000400120021000000548011001c7000013e60001042e0000000001000416000000000001004b00000f8a0000c13d0000000f01000039000000000101041a000000ff001001900000000001000039000000010100c039000000800010043f0000054301000041000013e60001042e0000000001000416000000000001004b00000f8a0000c13d0000000d03000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f0000000100500190000000690000c13d000000800010043f000000000004004b000009170000613d000000000030043f000000000001004b00000000020000190000091c0000613d00000585030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b000007fd0000413d0000091c0000013d000000440040008c00000f8a0000413d0000000002000416000000000002004b00000f8a0000c13d0000000402100370000000000202043b000005020020009c00000f8a0000213d0000002401100370000000000101043b000a00000001001d000005020010009c00000f8a0000213d000000000020043f0000000701000039000000200010043f0000004002000039000000000100001913e513c60000040f0000000a0200002913e5103a0000040f000000000101041a000000ff001001900000000001000039000000010100c039000007d40000013d000000240040008c00000f8a0000413d0000000002000416000000000002004b00000f8a0000c13d0000000401100370000000000601043b000005020060009c00000f8a0000213d0000000901000039000000000201041a00000502032001970000000005000411000000000053004b0000090e0000c13d000000000006004b00000b300000c13d0000054401000041000000800010043f0000002001000039000000840010043f0000002601000039000000a40010043f0000054501000041000000c40010043f0000054601000041000000e40010043f0000054701000041000013e700010430000000240040008c00000f8a0000413d0000000002000416000000000002004b00000f8a0000c13d0000000401100370000000000201043b000005a50020019800000f8a0000c13d0000000101000039000005a602200197000005a70020009c000008cc0000613d000005a80020009c000008cc0000613d000005a90020009c000000000100c019000000800010043f0000054301000041000013e60001042e000000240040008c00000f8a0000413d0000000002000416000000000002004b00000f8a0000c13d0000000902000039000000000202041a00000502022001970000000003000411000000000032004b000000000200003900000001020060390000000401100370000000000101043b000a00000001001d000000000102001913e5114d0000040f0000000a010000390000000a02000029000000000021041b0000000001000019000013e60001042e000000000104001913e50fa70000040f000a00000001001d000900000002001d000800000003001d000000400100043d000700000001001d000000200200003913e510280000040f000000070400002900000000000404350000000a010000290000000902000029000000080300002913e5116d0000040f0000000001000019000013e60001042e000000440040008c00000f8a0000413d0000000002000416000000000002004b00000f8a0000c13d0000000402100370000000000202043b000a00000002001d000005020020009c00000f8a0000213d0000002401100370000000000201043b000000000002004b0000000001000039000000010100c039000900000002001d000000000012004b00000f8a0000c13d0000000001000411000000000010043f0000000701000039000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000080100200003913e513e00000040f000000010020019000000f8a0000613d000000000101043b0000000a02000029000000000020043f000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000080100200003913e513e00000040f000000010020019000000f8a0000613d000000000101043b000000000201041a000005aa022001970000000903000029000000000232019f000000000021041b000000400100043d0000000000310435000004fa0010009c000004fa0100804100000040011002100000000002000414000004fa0020009c000004fa02008041000000c002200210000000000112019f00000500011001c70000800d020000390000000303000039000005880400004100000000050004110000000a06000029000005ab0000013d0000000001000416000000000001004b00000f8a0000c13d0000000101000039000000000101041a000005ab01100167000000000200041a0000000001120019000000800010043f0000054301000041000013e60001042e0000000001000416000000000001004b00000f8a0000c13d0000000901000039000000000101041a0000050201100197000000800010043f0000054301000041000013e60001042e000000240040008c00000f8a0000413d0000000002000416000000000002004b00000f8a0000c13d0000000402100370000000000302043b000005540030009c00000f8a0000213d0000002302300039000000000042004b00000f8a0000813d0000000406300039000000000261034f000000000202043b000005540020009c00000f8a0000213d00000024053000390000000003520019000000000043004b00000f8a0000213d0000000903000039000000000303041a00000502033001970000000004000411000000000043004b0000090e0000c13d0000000d03000039000000000703041a000000010070019000000001047002700000007f0440618f0000001f0040008c00000000080000390000000108002039000000000787013f0000000100700190000000690000c13d000000200040008c000009060000413d000000000030043f0000001f072000390000000507700270000005930770009a000000200020008c00000585070040410000001f044000390000000504400270000005930440009a000000000047004b000009060000813d000000000007041b0000000107700039000000000047004b000009020000413d0000001f0020008c00000ee00000a13d000000000030043f000005ac0620019800000f160000c13d0000058504000041000000000700001900000f200000013d0000054401000041000000800010043f0000002001000039000000840010043f000000a40010043f0000059901000041000000c40010043f0000058f01000041000013e700010430000005aa02200197000000a00020043f000000000001004b000000200200003900000000020060390000002002200039000000800100003913e510280000040f000000400100043d000a00000001001d000000800200003913e50f920000040f0000000a020000290000000001210049000004fa0010009c000004fa010080410000006001100210000004fa0020009c000004fa020080410000004002200210000000000121019f000013e60001042e000000000100041a000000010110008a000000000021001a00000f8c0000413d00000000012100190000000a03000039000000000303041a000000000031004b00000a670000a13d0000058b01000041000000000010043f0000058701000041000013e700010430000000000010043f0000000501000039000000200010043f0000004002000039000000000100001913e513c60000040f000000000101041a0000055401100197000000800010043f0000054301000041000013e60001042e0000000002000019000000000303041a0000000000a2004b000009a70000813d0000800000300190000080000400008a000000000400601900007fff0530018f000000000454019f000000000141043600000001022001bf0000000000a2004b000009a90000413d0000000000a2004b000009b30000813d0000056100300198000080000400008a0000000004006019000000200530027000007fff0550018f000000000454019f000000000141043600000001022000390000000000a2004b000009b50000413d0000000000a2004b000009bf0000813d0000055f00300198000080000400008a0000000004006019000000400530027000007fff0550018f000000000454019f000000000141043600000001022000390000000000a2004b000009c10000413d0000000000a2004b000009cb0000813d0000055d00300198000080000400008a0000000004006019000000600530027000007fff0550018f000000000454019f000000000141043600000001022000390000000000a2004b000009cd0000413d0000000000a2004b000009d70000813d0000055b00300198000080000400008a0000000004006019000000800530027000007fff0550018f000000000454019f000000000141043600000001022000390000000000a2004b000009d90000413d0000000000a2004b000009e30000813d0000055900300198000080000400008a0000000004006019000000a00530027000007fff0550018f000000000454019f000000000141043600000001022000390000000000a2004b000009e50000413d0000000000a2004b000009ef0000813d0000055700300198000080000400008a0000000004006019000000c00530027000007fff0550018f000000000454019f000000000141043600000001022000390000000000a2004b000009f10000413d0000000000a2004b000009fb0000813d0000055500300198000080000400008a0000000004006019000000e00530027000007fff0550018f000000000454019f000000000141043600000001022000390000000000a2004b000009fd0000413d00000a0c0000013d0000000000a2004b000009520000813d0000056200300198000080000400008a0000000004006019000000100530027000007fff0550018f000000000454019f000000000141043600000001022000390000000000a2004b000009540000413d0000000000a2004b0000095e0000813d0000056000300198000080000400008a0000000004006019000000300530027000007fff0550018f000000000454019f000000000141043600000001022000390000000000a2004b000009600000413d0000000000a2004b0000096a0000813d0000055e00300198000080000400008a0000000004006019000000500530027000007fff0550018f000000000454019f000000000141043600000001022000390000000000a2004b0000096c0000413d0000000000a2004b000009760000813d0000055c00300198000080000400008a0000000004006019000000700530027000007fff0550018f000000000454019f000000000141043600000001022000390000000000a2004b000009780000413d0000000000a2004b000009820000813d0000055a00300198000080000400008a0000000004006019000000900530027000007fff0550018f000000000454019f000000000141043600000001022000390000000000a2004b000009840000413d0000000000a2004b0000098e0000813d0000055800300198000080000400008a0000000004006019000000b00530027000007fff0550018f000000000454019f000000000141043600000001022000390000000000a2004b000009900000413d0000000000a2004b0000099a0000813d0000055600300198000080000400008a0000000004006019000000d00530027000007fff0550018f000000000454019f000000000141043600000001022000390000000000a2004b0000099c0000413d0000000000a2004b00000a0c0000813d0000054e02300197000000010400008a0000054e0020009c000000000400c0190000001002400210000000f004300270000000000224019f000000f00000008b000000000302c0190000800000300190000080000200008a000000000200601900007fff0330018f000000000232019f0000000001210436000000610110008a000005ac01100197000005630010009c00000a6f0000a13d0000055101000041000000000010043f0000004101000039000000040010043f0000055201000041000013e700010430000800000001001d000000000010043f0000000401000039000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000080100200003913e513e00000040f000000010020019000000f8a0000613d000000000101043b000000000101041a000000000001004b00000a3e0000c13d000000000100041a0000000802000029000000000021004b000005930000a13d000000010220008a000a00000002001d000000000020043f0000000401000039000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000080100200003913e513e00000040f000000010020019000000f8a0000613d000000000101043b000000000101041a000000000001004b0000000a0200002900000a2b0000613d0000058300100198000005930000c13d000a05020010019b00000000020004110000000a0020006c00000ebd0000c13d0000000801000029000000000010043f0000000601000039000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000080100200003913e513e00000040f000000010020019000000f8a0000613d00000009020000290000050206200197000000000101043b000000000201041a0000050302200197000000000262019f000000000021041b0000000001000414000004fa0010009c000004fa01008041000000c00110021000000504011001c70000800d020000390000000403000039000005a2040000410000000a05000029000000080700002913e513db0000040f000000010020019000000b2e0000c13d00000f8a0000013d000000000001042f0000000b01000039000000000101041a000000000012004b00000b3c0000a13d0000058a01000041000000000010043f0000058701000041000013e700010430000900000001001d0000008002100039000000400020043f000b00800000003d0000001101000039000000000301041a000a00000002001d000800000003001d0000000000320435000000000010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000500011001c7000080100200003913e513e00000040f000000800a000039000000010020019000000f8a0000613d000000000301043b000000090c000029000000a001c00039000000080d0000290000001000d0008c00000bc90000413d000080000400008a000000010500008a00000000020000190000000a0b000029000000000703041a000005550070019800000000080400190000000008006019000000e00970027000007fff0990018f000000000898019f000001c0091000390000000000890435000005560070019800000000080400190000000008006019000000d00970027000007fff0990018f000000000898019f000001a0091000390000000000890435000005570070019800000000080400190000000008006019000000c00970027000007fff0990018f000000000898019f00000180091000390000000000890435000005580070019800000000080400190000000008006019000000b00970027000007fff0990018f000000000898019f00000160091000390000000000890435000005590070019800000000080400190000000008006019000000a00970027000007fff0990018f000000000898019f000001400910003900000000008904350000055a0070019800000000080400190000000008006019000000900970027000007fff0990018f000000000898019f000001200910003900000000008904350000055b0070019800000000080400190000000008006019000000800970027000007fff0990018f000000000898019f000001000910003900000000008904350000055c0070019800000000080400190000000008006019000000700970027000007fff0990018f000000000898019f000000e00910003900000000008904350000055d0070019800000000080400190000000008006019000000600970027000007fff0990018f000000000898019f000000c00910003900000000008904350000055e0070019800000000080400190000000008006019000000500970027000007fff0990018f000000000898019f000000a00910003900000000008904350000055f0070019800000000080400190000000008006019000000400970027000007fff0990018f000000000898019f00000080091000390000000000890435000005600070019800000000080400190000000008006019000000300970027000007fff0990018f000000000898019f00000060091000390000000000890435000005610070019800000000080400190000000008006019000000200970027000007fff0990018f000000000898019f00000040091000390000000000890435000005620070019800000000080400190000000008006019000000100970027000007fff0990018f000000000898019f000000200910003900000000008904350000054e087001970000054e0080009c000000000800001900000000080560190000001008800210000000f009700270000000000889019f000000f00000008b000000000807601900008000008001900000000009040019000000000900601900007fff0880018f000000000889019f000001e009100039000000000089043500008000007001900000000008040019000000000800601900007fff0770018f000000000778019f00000000007104350000000103300039000002000110003900000010022000390000000f072001bf0000000000d7004b00000a8d0000413d00000bcb0000013d0000054402000041000000800020043f0000002002000039000000840020043f000000a40010043f0000058e01000041000000c40010043f0000058f01000041000013e70001043000000504011001c700008009020000390000000004000411000000000500001913e513db0000040f0000006003100270000004fa0330019800000b4b0000c13d000000010020019000000b710000613d0000000001000019000013e60001042e0000050302200197000000000262019f000000000021041b0000000001000414000004fa0010009c000004fa01008041000000c00110021000000504011001c70000800d0200003900000003030000390000050504000041000005ab0000013d0000000c01000039000000000301041a00000000012300a9000000000003004b00000b440000613d00000000033100d9000000000023004b00000f8c0000c13d0000000003000416000000000013004b00000d4e0000813d0000058901000041000000000010043f0000058701000041000013e7000104300000001f043000390000059c044001970000003f044000390000059d04400197000000400500043d0000000004450019000000000054004b00000000060000390000000106004039000005540040009c00000a100000213d000000010060019000000a100000c13d000000400040043f0000001f0430018f00000000063504360000059e05300198000000000356001900000b630000613d000000000701034f000000007807043c0000000006860436000000000036004b00000b5f0000c13d000000000004004b00000b2c0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000b2c0000013d000000400100043d00000044021000390000059f03000041000000000032043500000024021000390000001003000039000000000032043500000544020000410000000000210435000000040210003900000020030000390000000000320435000004fa0010009c000004fa010080410000004001100210000005a0011001c7000013e7000104300000058300100198000000090100002900000b8d0000c13d000000000010043f0000000601000039000000200010043f0000004002000039000000000100001913e513c60000040f000000000101041a000003ba0000013d000005a401000041000000000010043f0000058701000041000013e7000104300000058300100198000000090600002900000bc50000c13d000000400200043d000000a001200039000000400010043f000000800120003900000000000104350000000003010019000000090060008c0000000a1660011a000000f804100210000000010130008a00000000050104330000056505500197000000000445019f00000584044001c7000000000041043500000b990000213d00000000023200490000008104200039000000210230008a00000000004204350000000d06000039000000000506041a000000010750019000000001035002700000007f0330618f0000001f0030008c00000000040000390000000104002039000000000445013f0000000100400190000000690000c13d000000400400043d00000000090400190000002004400039000000000007004b00000eec0000613d000000000060043f000000000003004b00000eee0000613d000005850500004100000000060000190000000007460019000000000805041a000000000087043500000001055000390000002006600039000000000036004b00000bbd0000413d00000eee0000013d0000058601000041000000000010043f0000058701000041000013e70001043000000000020000190000000a0b000029000000000303041a0000000000d2004b00000c2d0000813d0000800000300190000080000400008a000000000400601900007fff0530018f000000000454019f000000000141043600000001022001bf000000200900008a0000000000d2004b00000c300000413d0000000000d2004b00000c3a0000813d0000056100300198000080000400008a0000000004006019000000200530027000007fff0550018f000000000454019f000000000141043600000001022000390000000000d2004b00000c3c0000413d0000000000d2004b00000c460000813d0000055f00300198000080000400008a0000000004006019000000400530027000007fff0550018f000000000454019f000000000141043600000001022000390000000000d2004b00000c480000413d0000000000d2004b00000c520000813d0000055d00300198000080000400008a0000000004006019000000600530027000007fff0550018f000000000454019f000000000141043600000001022000390000000000d2004b00000c540000413d0000000000d2004b00000c5e0000813d0000055b00300198000080000400008a0000000004006019000000800530027000007fff0550018f000000000454019f000000000141043600000001022000390000000000d2004b00000c600000413d0000000000d2004b00000c6a0000813d0000055900300198000080000400008a0000000004006019000000a00530027000007fff0550018f000000000454019f000000000141043600000001022000390000000000d2004b00000c6c0000413d0000000000d2004b00000c760000813d0000055700300198000080000400008a0000000004006019000000c00530027000007fff0550018f000000000454019f000000000141043600000001022000390000000000d2004b00000c780000413d0000000000d2004b00000c820000813d0000055500300198000080000400008a0000000004006019000000e00530027000007fff0550018f000000000454019f000000000141043600000001022000390000000000d2004b00000c840000413d00000c930000013d000000200900008a0000000000d2004b00000bd80000813d0000056200300198000080000400008a0000000004006019000000100530027000007fff0550018f000000000454019f000000000141043600000001022000390000000000d2004b00000bda0000413d0000000000d2004b00000be40000813d0000056000300198000080000400008a0000000004006019000000300530027000007fff0550018f000000000454019f000000000141043600000001022000390000000000d2004b00000be60000413d0000000000d2004b00000bf00000813d0000055e00300198000080000400008a0000000004006019000000500530027000007fff0550018f000000000454019f000000000141043600000001022000390000000000d2004b00000bf20000413d0000000000d2004b00000bfc0000813d0000055c00300198000080000400008a0000000004006019000000700530027000007fff0550018f000000000454019f000000000141043600000001022000390000000000d2004b00000bfe0000413d0000000000d2004b00000c080000813d0000055a00300198000080000400008a0000000004006019000000900530027000007fff0550018f000000000454019f000000000141043600000001022000390000000000d2004b00000c0a0000413d0000000000d2004b00000c140000813d0000055800300198000080000400008a0000000004006019000000b00530027000007fff0550018f000000000454019f000000000141043600000001022000390000000000d2004b00000c160000413d0000000000d2004b00000c200000813d0000055600300198000080000400008a0000000004006019000000d00530027000007fff0550018f000000000454019f000000000141043600000001022000390000000000d2004b00000c220000413d0000000000d2004b00000c930000813d0000054e02300197000000010400008a0000054e0020009c000000000400c0190000001002400210000000f004300270000000000224019f000000f00000008b000000000302c0190000800000300190000080000200008a000000000200601900007fff0330018f000000000232019f00000000012104360000000001c10049000000610110008a000000000291016f0000000001b20019000000000021004b00000000020000390000000102004039000005540010009c00000a100000213d000000010020019000000a100000c13d000000400010043f0000001304000039000000000304041a0000000002310436000000000040043f0000056405000041000000200030008c00000d520000413d0000000004000019000003e007200039000000000605041a000005650060009c00000000080000390000000108002039000000000087043500000566006001980000000007000039000000010700c039000003c008200039000000000078043500000567006001980000000007000039000000010700c039000003a008200039000000000078043500000568006001980000000007000039000000010700c0390000038008200039000000000078043500000569006001980000000007000039000000010700c039000003600820003900000000007804350000056a006001980000000007000039000000010700c039000003400820003900000000007804350000056b006001980000000007000039000000010700c039000003200820003900000000007804350000056c006001980000000007000039000000010700c039000003000820003900000000007804350000056d006001980000000007000039000000010700c039000002e00820003900000000007804350000056e006001980000000007000039000000010700c039000002c00820003900000000007804350000056f006001980000000007000039000000010700c039000002a008200039000000000078043500000570006001980000000007000039000000010700c0390000028008200039000000000078043500000571006001980000000007000039000000010700c0390000026008200039000000000078043500000572006001980000000007000039000000010700c0390000024008200039000000000078043500000573006001980000000007000039000000010700c0390000022008200039000000000078043500000574006001980000000007000039000000010700c0390000020008200039000000000078043500000575006001980000000007000039000000010700c039000001e008200039000000000078043500000576006001980000000007000039000000010700c039000001c008200039000000000078043500000577006001980000000007000039000000010700c039000001a008200039000000000078043500000578006001980000000007000039000000010700c0390000018008200039000000000078043500000579006001980000000007000039000000010700c039000001600820003900000000007804350000057a006001980000000007000039000000010700c039000001400820003900000000007804350000057b006001980000000007000039000000010700c039000001200820003900000000007804350000057c006001980000000007000039000000010700c039000001000820003900000000007804350000057d006001980000000007000039000000010700c039000000e00820003900000000007804350000057e006001980000000007000039000000010700c039000000c00820003900000000007804350000057f006001980000000007000039000000010700c039000000a008200039000000000078043500000580006001980000000007000039000000010700c0390000008008200039000000000078043500000581006001980000000007000039000000010700c0390000006008200039000000000078043500000582006001980000000007000039000000010700c039000000400820003900000000007804350000ff00006001900000000007000039000000010700c03900000020082000390000000000780435000000ff006001900000000006000039000000010600c03900000000006204350000000105500039000004000220003900000020044000390000001f064001bf000000000036004b00000ca70000413d00000d530000013d000000000100041113e5135c0000040f0000000001000019000013e60001042e0000000004000019000000000505041a000000000034004b00000de50000813d000000ff005001900000000006000039000000010600c039000000000262043600000001044001bf000000000034004b00000de70000413d000000000034004b00000dee0000813d00000582005001980000000006000039000000010600c03900000000026204360000000104400039000000000034004b00000df00000413d000000000034004b00000df70000813d00000580005001980000000006000039000000010600c03900000000026204360000000104400039000000000034004b00000df90000413d000000000034004b00000e000000813d0000057e005001980000000006000039000000010600c03900000000026204360000000104400039000000000034004b00000e020000413d000000000034004b00000e090000813d0000057c005001980000000006000039000000010600c03900000000026204360000000104400039000000000034004b00000e0b0000413d000000000034004b00000e120000813d0000057a005001980000000006000039000000010600c03900000000026204360000000104400039000000000034004b00000e140000413d000000000034004b00000e1b0000813d00000578005001980000000006000039000000010600c03900000000026204360000000104400039000000000034004b00000e1d0000413d000000000034004b00000e240000813d00000576005001980000000006000039000000010600c03900000000026204360000000104400039000000000034004b00000e260000413d000000000034004b00000e2d0000813d00000574005001980000000006000039000000010600c03900000000026204360000000104400039000000000034004b00000e2f0000413d000000000034004b00000e360000813d00000572005001980000000006000039000000010600c03900000000026204360000000104400039000000000034004b00000e380000413d000000000034004b00000e3f0000813d00000570005001980000000006000039000000010600c03900000000026204360000000104400039000000000034004b00000e410000413d000000000034004b00000e480000813d0000056e005001980000000006000039000000010600c03900000000026204360000000104400039000000000034004b00000e4a0000413d000000000034004b00000e510000813d0000056c005001980000000006000039000000010600c03900000000026204360000000104400039000000000034004b00000e530000413d000000000034004b00000e5a0000813d0000056a005001980000000006000039000000010600c03900000000026204360000000104400039000000000034004b00000e5c0000413d000000000034004b00000e630000813d00000568005001980000000006000039000000010600c03900000000026204360000000104400039000000000034004b00000e650000413d000000000034004b00000e6c0000813d00000566005001980000000006000039000000010600c03900000000026204360000000104400039000000000034004b00000e6e0000413d00000e720000013d000000000034004b00000d5d0000813d0000ff00005001900000000006000039000000010600c03900000000026204360000000104400039000000000034004b00000d5f0000413d000000000034004b00000d660000813d00000581005001980000000006000039000000010600c03900000000026204360000000104400039000000000034004b00000d680000413d000000000034004b00000d6f0000813d0000057f005001980000000006000039000000010600c03900000000026204360000000104400039000000000034004b00000d710000413d000000000034004b00000d780000813d0000057d005001980000000006000039000000010600c03900000000026204360000000104400039000000000034004b00000d7a0000413d000000000034004b00000d810000813d0000057b005001980000000006000039000000010600c03900000000026204360000000104400039000000000034004b00000d830000413d000000000034004b00000d8a0000813d00000579005001980000000006000039000000010600c03900000000026204360000000104400039000000000034004b00000d8c0000413d000000000034004b00000d930000813d00000577005001980000000006000039000000010600c03900000000026204360000000104400039000000000034004b00000d950000413d000000000034004b00000d9c0000813d00000575005001980000000006000039000000010600c03900000000026204360000000104400039000000000034004b00000d9e0000413d000000000034004b00000da50000813d00000573005001980000000006000039000000010600c03900000000026204360000000104400039000000000034004b00000da70000413d000000000034004b00000dae0000813d00000571005001980000000006000039000000010600c03900000000026204360000000104400039000000000034004b00000db00000413d000000000034004b00000db70000813d0000056f005001980000000006000039000000010600c03900000000026204360000000104400039000000000034004b00000db90000413d000000000034004b00000dc00000813d0000056d005001980000000006000039000000010600c03900000000026204360000000104400039000000000034004b00000dc20000413d000000000034004b00000dc90000813d0000056b005001980000000006000039000000010600c03900000000026204360000000104400039000000000034004b00000dcb0000413d000000000034004b00000dd20000813d00000569005001980000000006000039000000010600c03900000000026204360000000104400039000000000034004b00000dd40000413d000000000034004b00000ddb0000813d00000567005001980000000006000039000000010600c03900000000026204360000000104400039000000000034004b00000ddd0000413d000000000034004b00000e720000813d000005650050009c00000000030000390000000103002039000000000232043600000000021200490000001f02200039000000000392016f0000000002130019000000000032004b00000000030000390000000103004039000005540020009c00000a100000213d000000010030019000000a100000c13d000000400020043f0000000c030000290000000b060000290000000004a20436000000800520003900000000070604330000000000750435000000a005200039000000000007004b00000e940000613d000080000800008a00000000090000190000002006600039000000000a0604330000800000a00190000000000b080019000000000b00601900007fff0aa0018f000000000aab019f0000000005a504360000000109900039000000000079004b00000e890000413d000000000625004900000000006404350000000a0a00002900000000060a04330000000004650436000000000006004b00000ea80000613d000080000500008a0000000007000019000000200aa0003900000000080a043300008000008001900000000009050019000000000900601900007fff0880018f000000000889019f00000000048404360000000107700039000000000067004b00000e9d0000413d00000000052400490000004006200039000000000056043500000000050104330000000004540436000000000005004b00000eb90000613d000000000600001900000020011000390000000007010433000000000007004b0000000007000039000000010700c03900000000047404360000000106600039000000000056004b00000eb00000413d000000600120003900000000003104350000000001240049000009250000013d0000000a01000029000000000010043f0000000701000039000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000080100200003913e513e00000040f000000010020019000000f8a0000613d000000000101043b00000000020004110000050202200197000000000020043f000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000080100200003913e513e00000040f000000010020019000000f8a0000613d000000000101043b000000000101041a000000ff0010019000000a440000c13d000005a101000041000000000010043f0000058701000041000013e700010430000000000002004b000000000400001900000ee60000613d0000002004600039000000000141034f000000000401043b0000000301200210000005ab0110027f000005ab01100167000000000414016f000000010120021000000f2d0000013d000005aa05500197000000000054043500000000034300190000000002020433000000000002004b00000efa0000613d000000000400001900000000053400190000000006140019000000000606043300000000006504350000002004400039000000000024004b00000ef30000413d000000000132001900000000000104350000000e04000039000000000304041a000000010530019000000001023002700000007f0220618f0000001f0020008c00000000060000390000000106002039000000000663013f0000000100600190000000690000c13d000000000005004b00000f310000613d000000000040043f000000000002004b00000f330000613d000005070300004100000000040000190000000005140019000000000603041a000000000065043500000001033000390000002004400039000000000024004b00000f0e0000413d00000f330000013d000005850400004100000000070000190000000008570019000000000881034f000000000808043b000000000084041b00000001044000390000002007700039000000000067004b00000f180000413d000000000026004b00000f2b0000813d0000000306200210000000f80660018f000005ab0660027f000005ab066001670000000005570019000000000151034f000000000101043b000000000161016f000000000014041b00000001010000390000000104200210000000000114019f000000000013041b0000000001000019000013e60001042e000005aa033001970000000000310435000a00000009001d00000000019100490000000002120019000000200120008a0000000000190435000000000109001913e510280000040f000000400100043d000900000001001d0000000a0200002913e50f920000040f0000000902000029000009240000013d0000059101000041000000000010043f0000058701000041000013e7000104300000055101000041000000000010043f0000003201000039000000040010043f0000055201000041000013e7000104300000059201000041000000000010043f0000058701000041000013e70001043000000002010000290000054f0010009c00000b2e0000213d000000020000006b00000b2e0000613d000a00010000003d00000002010000290008054e0010019b0000001301000039000000000101041a000005540010009c00000a100000213d000900000001001d00000001011000390000001302000039000000000012041b000000000020043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000500011001c7000080100200003913e513e00000040f000000010020019000000f8a0000613d00000009040000290000000302400210000000f80220018f000000ff0220020f000005ab022001670000000503400270000000000101043b0000000001310019000000000301041a000000000223016f000000000021041b0000000a0100002900007fff0010008c00000f8c0000613d00000001011000390000800000100190000080000200008a000000000200601900007fff0110018f000000000412019f0000054e01400197000000080210014f000000080010006c00000000010000190000054e01004041000a00000004001d000000020040006c00000000030000190000054e030020410000054e0020009c000000000103c019000000000001004b00000f560000613d00000b2e0000013d0000000001000019000013e7000104300000055101000041000000000010043f0000001101000039000000040010043f0000055201000041000013e70001043000000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b00000fa10000613d000000000400001900000000051400190000000006430019000000000606043300000000006504350000002004400039000000000024004b00000f9a0000413d000000000312001900000000000304350000001f02200039000005ac022001970000000001120019000000000001042d0000054f0010009c00000fb70000213d000000630010008c00000fb70000a13d00000000030003670000000401300370000000000101043b000005020010009c00000fb70000213d0000002402300370000000000202043b000005020020009c00000fb70000213d0000004403300370000000000303043b000000000001042d0000000001000019000013e70001043000000004010000390000000001100367000000000101043b0000800000100190000080000200008a000000000200601900007fff0310018f000000000232019f000000000021004b00000fc40000c13d000000000001042d0000000001000019000013e70001043000000024010000390000000001100367000000000101043b0000800000100190000080000200008a000000000200601900007fff0310018f000000000232019f000000000021004b00000fd10000c13d000000000001042d0000000001000019000013e7000104300000800000100190000080000200008a000000000200601900007fff0110018f000000000112019f000000000010043f0000001201000039000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000080100200003913e513e00000040f000000010020019000000fe60000613d000000000101043b000000000001042d0000000001000019000013e7000104300000800000200190000080000300008a000000000300601900007fff0220018f000000000223019f000000000020043f000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000080100200003913e513e00000040f000000010020019000000ffa0000613d000000000101043b000000000001042d0000000001000019000013e7000104300000001102000039000000000302041a000000000013004b000010070000a13d000000000020043f0000000402100270000005ae0320009a00000001011002100000001e0210018f0000000001030019000000000001042d0000055101000041000000000010043f0000003201000039000000040010043f0000055201000041000013e7000104300000001002000039000000000302041a000000000013004b000010180000a13d000000000020043f0000000402100270000005af0320009a00000001011002100000001e0210018f0000000001030019000000000001042d0000055101000041000000000010043f0000003201000039000000040010043f0000055201000041000013e7000104300000000302200210000000000121022f000000ff0020008c00000000010020190000800000100190000080000200008a000000000200601900007fff0110018f000000000112019f000000000001042d0000001f02200039000005ac022001970000000001120019000000000021004b00000000020000390000000102004039000005540010009c000010340000213d0000000100200190000010340000c13d000000400010043f000000000001042d0000055101000041000000000010043f0000004101000039000000040010043f0000055201000041000013e7000104300000050202200197000000000020043f000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000080100200003913e513e00000040f0000000100200190000010480000613d000000000101043b000000000001042d0000000001000019000013e7000104300007000000000002000300000002001d000500000001001d000600000003001d000000000003004b0000113c0000613d0000000601000029000000000010043f0000000401000039000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000080100200003913e513e00000040f00000001002001900000113a0000613d000000000101043b000000000101041a000000000001004b000010780000c13d000000000100041a000000060010006c0000113c0000a13d0000000602000029000000010220008a000700000002001d000000000020043f0000000401000039000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000080100200003913e513e00000040f00000001002001900000113a0000613d000000000101043b000000000101041a000000000001004b0000000702000029000010650000613d00000583001001980000113c0000c13d00000005020000290000050202200197000400000001001d0000050201100197000700000002001d000000000021004b000011400000c13d0000000601000029000000000010043f0000000601000039000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000080100200003913e513e00000040f00000001002001900000113a0000613d000000000201043b000000000302041a00000000010004110000050204100197000000070040006c000010b90000613d000000000034004b000010b90000613d000500000004001d000100000003001d000200000002001d0000000701000029000000000010043f0000000701000039000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000080100200003913e513e00000040f00000001002001900000113a0000613d000000000101043b0000000502000029000000000020043f000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000080100200003913e513e00000040f00000001002001900000113a0000613d000000000101043b000000000101041a000000ff0010019000000002020000290000000103000029000011490000613d000000000003004b000010bc0000613d000000000002041b0000000701000029000000000010043f0000000501000039000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000080100200003913e513e00000040f00000001002001900000113a0000613d000000000101043b000000000201041a000000010220008a000000000021041b00000003010000290000050201100197000500000001001d000000000010043f0000000501000039000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000080100200003913e513e00000040f00000001002001900000113a0000613d000000000101043b000000000201041a0000000102200039000000000021041b000005b20100004100000000001004430000000001000414000004fa0010009c000004fa01008041000000c001100210000005b3011001c70000800b0200003913e513e00000040f0000000100200190000011440000613d000000000101043b000300000001001d0000000601000029000000000010043f0000000401000039000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000080100200003913e513e00000040f00000001002001900000113a0000613d0000000302000029000000a00220021000000005022001af000005b4022001c7000000000101043b000000000021041b0000000401000029000005b400100198000011290000c13d00000006010000290000000101100039000300000001001d000000000010043f0000000401000039000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000080100200003913e513e00000040f00000001002001900000113a0000613d000000000101043b000000000101041a000000000001004b000011290000c13d000000000100041a000000030010006b000011290000613d0000000301000029000000000010043f0000000401000039000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000080100200003913e513e00000040f00000001002001900000113a0000613d000000000101043b0000000402000029000000000021041b0000000001000414000004fa0010009c000004fa01008041000000c00110021000000504011001c70000800d020000390000000403000039000005b50400004100000007050000290000000506000029000000060700002913e513db0000040f00000001002001900000113a0000613d000000050000006b000011450000613d000000000001042d0000000001000019000013e700010430000005a301000041000000000010043f0000058701000041000013e700010430000005b001000041000000000010043f0000058701000041000013e700010430000000000001042f000005b601000041000000000010043f0000058701000041000013e700010430000005b101000041000000000010043f0000058701000041000013e700010430000000000001004b000011500000613d000000000001042d000000400100043d0000004402100039000005990300004100000000003204350000054402000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000004fa0010009c000004fa010080410000004001100210000005a0011001c7000013e70001043000000003022002100000ffff0420020f000000010500008a000000ff0020008c000000000554a13f0000ffff0330018f00000000022301cf0000000002002019000000000301041a000000000353016f000000000223019f000000000021041b000000000001042d0008000000000002000100000004001d000500000002001d000600000001001d000700000003001d000000000003004b000012d60000613d0000000701000029000000000010043f0000000401000039000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000080100200003913e513e00000040f0000000100200190000012d40000613d000000000101043b000000000101041a000000000001004b0000119c0000c13d000000000100041a000000070010006c000012d60000a13d0000000702000029000000010220008a000800000002001d000000000020043f0000000401000039000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000080100200003913e513e00000040f0000000100200190000012d40000613d000000000101043b000000000101041a000000000001004b0000000802000029000011890000613d0000058300100198000012d60000c13d00000006020000290000050202200197000300000001001d0000050201100197000800000002001d000000000021004b000012db0000c13d0000000701000029000000000010043f0000000601000039000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000080100200003913e513e00000040f0000000100200190000012d40000613d000000000301043b000000000403041a00000000010004110000050202100197000400000002001d000000080020006c000011dd0000613d000000040040006b000011dd0000613d000200000004001d000600000003001d0000000801000029000000000010043f0000000701000039000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000080100200003913e513e00000040f0000000100200190000012d40000613d000000000101043b0000000402000029000000000020043f000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000080100200003913e513e00000040f0000000100200190000012d40000613d000000000101043b000000000101041a000000ff0010019000000006030000290000000204000029000012e70000613d000000000004004b000011e00000613d000000000003041b0000000801000029000000000010043f0000000501000039000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000080100200003913e513e00000040f0000000100200190000012d40000613d000000000101043b000000000201041a000000010220008a000000000021041b00000005010000290000050201100197000600000001001d000000000010043f0000000501000039000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000080100200003913e513e00000040f0000000100200190000012d40000613d000000000101043b000000000201041a0000000102200039000000000021041b000005b20100004100000000001004430000000001000414000004fa0010009c000004fa01008041000000c001100210000005b3011001c70000800b0200003913e513e00000040f0000000100200190000012da0000613d000000000101043b000200000001001d0000000701000029000000000010043f0000000401000039000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000080100200003913e513e00000040f0000000100200190000012d40000613d0000000202000029000000a00220021000000006022001af000005b4022001c7000000000101043b000000000021041b0000000301000029000005b4001001980000124d0000c13d00000007010000290000000101100039000200000001001d000000000010043f0000000401000039000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000080100200003913e513e00000040f0000000100200190000012d40000613d000000000101043b000000000101041a000000000001004b0000124d0000c13d000000000100041a000000020010006b0000124d0000613d0000000201000029000000000010043f0000000401000039000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000080100200003913e513e00000040f0000000100200190000012d40000613d000000000101043b0000000302000029000000000021041b0000000001000414000004fa0010009c000004fa01008041000000c00110021000000504011001c70000800d020000390000000403000039000005b50400004100000008050000290000000606000029000000070700002913e513db0000040f0000000100200190000012d40000613d000000060000006b000012df0000613d000005b7010000410000000000100443000000050100002900000004001004430000000001000414000004fa0010009c000004fa01008041000000c0011002100000059b011001c7000080020200003913e513e00000040f0000000100200190000012da0000613d000000000101043b000000000001004b000012d30000613d000000400700043d00000064017000390000008002000039000500000002001d0000000000210435000000440170003900000007020000290000000000210435000000240170003900000008020000290000000000210435000005b80100004100000000001704350000000401700039000000040200002900000000002104350000008402700039000000010100002900000000310104340000000000120435000000a402700039000000000001004b0000128c0000613d000000000400001900000000052400190000000006430019000000000606043300000000006504350000002004400039000000000014004b000012850000413d0000001f03100039000005ac0330019700000000012100190000000000010435000000a401300039000004fa0010009c000004fa010080410000006001100210000004fa0070009c000004fa0200004100000000020740190000004002200210000000000121019f0000000002000414000004fa0020009c000004fa02008041000000c002200210000000000112019f0000000602000029000800000007001d13e513db0000040f000000080b0000290000006003100270000004fa03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000012b10000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000012ad0000c13d000000000006004b000012be0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000012e30000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000005540010009c000013190000213d0000000100200190000013190000c13d000000400010043f000000200030008c000012d40000413d00000000010b0433000005a500100198000012d40000c13d000005a601100197000005b80010009c000013150000c13d000000000001042d0000000001000019000013e700010430000005a301000041000000000010043f0000058701000041000013e700010430000000000001042f000005b001000041000000000010043f0000058701000041000013e700010430000005b601000041000000000010043f0000058701000041000013e700010430000000000003004b000012eb0000c13d0000006002000039000013120000013d000005b101000041000000000010043f0000058701000041000013e7000104300000001f023000390000059c022001970000003f022000390000059d04200197000000400200043d0000000004420019000000000024004b00000000050000390000000105004039000005540040009c000013190000213d0000000100500190000013190000c13d000000400040043f0000001f0430018f00000000063204360000059e05300198000500000006001d0000000003560019000013050000613d000000000601034f0000000507000029000000006806043c0000000007870436000000000037004b000013010000c13d000000000004004b000013120000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b0000131f0000c13d000005b901000041000000000010043f0000058701000041000013e7000104300000055101000041000000000010043f0000004101000039000000040010043f0000055201000041000013e7000104300000000502000029000004fa0020009c000004fa020080410000004002200210000004fa0010009c000004fa010080410000006001100210000000000121019f000013e7000104300001000000000002000000000001004b000013580000613d000100000001001d000000000010043f0000000401000039000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000080100200003913e513e00000040f0000000100200190000013560000613d000000000101043b000000000101041a000000000001004b000013530000c13d000000000100041a0000000102000029000000000021004b000013580000a13d000000010220008a000100000002001d000000000020043f0000000401000039000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000080100200003913e513e00000040f0000000100200190000013560000613d000000000101043b000000000101041a000000000001004b0000000102000029000013400000613d0000058300100198000013580000c13d000000000001042d0000000001000019000013e700010430000005a301000041000000000010043f0000058701000041000013e7000104300004000000000002000300000001001d000200000002001d000000000002004b000013bc0000613d000000000100041a000400000001001d000005b20100004100000000001004430000000001000414000004fa0010009c000004fa01008041000000c001100210000005b3011001c70000800b0200003913e513e00000040f0000000100200190000013c00000613d000000000101043b000100000001001d0000000401000029000000000010043f0000000401000039000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000080100200003913e513e00000040f00000001002001900000000205000029000013ba0000613d000000030200002900000502042001970000000102000029000000a002200210000000010050008c0000000003000019000005b403006041000000000223019f000000000242019f000000000101043b000000000021041b000300000004001d000000000040043f0000000501000039000000200010043f0000000001000414000004fa0010009c000004fa01008041000000c00110021000000550011001c7000080100200003913e513e00000040f00000002040000290000000100200190000013ba0000613d000005ba024000d1000000000101043b000000000301041a0000000002230019000000000021041b000000030000006b000013c10000613d000200040040002d0000000001000019000013b10000013d00000004070000290000000001000414000004fa0010009c000004fa01008041000000c00110021000000504011001c70000800d020000390000000403000039000005b50400004100000000050000190000000306000029000400000007001d13e513db0000040f00000001002001900000000101000039000013ba0000613d0000000100100190000013a10000613d00000004070000290000000107700039000000020070006c000013a20000c13d0000000201000029000000000010041b000000000001042d0000000001000019000013e700010430000005bc01000041000000000010043f0000058701000041000013e700010430000000000001042f000005bb01000041000000000010043f0000058701000041000013e700010430000000000001042f000004fa0010009c000004fa010080410000004001100210000004fa0020009c000004fa020080410000006002200210000000000112019f0000000002000414000004fa0020009c000004fa02008041000000c002200210000000000112019f00000504011001c7000080100200003913e513e00000040f0000000100200190000013d90000613d000000000101043b000000000001042d0000000001000019000013e700010430000013de002104210000000102000039000000000001042d0000000002000019000000000001042d000013e3002104230000000102000039000000000001042d0000000002000019000000000001042d000013e500000432000013e60001042e000013e70001043000000000000000000000000000000000000000000000000000000000ffffffff48656c6c6f4162737472000000000000000000000000000000000000000000004841000000000000000000000000000000000000000000000000000000000000405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5acebfa87805ed57dc1f0d489ce33be4c4577d74ccde357eeeee058a32c55c44a53248656c6c6f4162737472000000000000000000000000000000000000000000140200000000000000000000000000000000000020000000000000000000000000ffff000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0000000000000000000000000000000000000000000000000000000e8d4a51000bb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fd4484b5bab23cb6c6dcb7d0f87ddcd612e617dbb100a7d33dfb07aab3c9df3c032e6a736f6e00000000000000000000000000000000000000000000000000000a0000000200000000000000000000000000000040000001000000000000000000000000000000000000000000000000000000000000000000000000006f8b44af00000000000000000000000000000000000000000000000000000000a22cb46400000000000000000000000000000000000000000000000000000000daa5121800000000000000000000000000000000000000000000000000000000e985e9c400000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000f968adbe00000000000000000000000000000000000000000000000000000000daa5121900000000000000000000000000000000000000000000000000000000db0e399d00000000000000000000000000000000000000000000000000000000e3966df500000000000000000000000000000000000000000000000000000000c6f6f21500000000000000000000000000000000000000000000000000000000c6f6f21600000000000000000000000000000000000000000000000000000000c87b56dd00000000000000000000000000000000000000000000000000000000d5abeb0100000000000000000000000000000000000000000000000000000000a22cb46500000000000000000000000000000000000000000000000000000000b88d4fde000000000000000000000000000000000000000000000000000000008da5cb5a0000000000000000000000000000000000000000000000000000000095d89b400000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000009733adcb00000000000000000000000000000000000000000000000000000000a0712d68000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000091b7f5ed00000000000000000000000000000000000000000000000000000000715018a500000000000000000000000000000000000000000000000000000000715018a60000000000000000000000000000000000000000000000000000000073cbb6ea000000000000000000000000000000000000000000000000000000008ba4cc3c000000000000000000000000000000000000000000000000000000006f8b44b00000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000042842e0d0000000000000000000000000000000000000000000000000000000055f804b2000000000000000000000000000000000000000000000000000000006ad1fe01000000000000000000000000000000000000000000000000000000006ad1fe02000000000000000000000000000000000000000000000000000000006c0360eb000000000000000000000000000000000000000000000000000000006ee3e6140000000000000000000000000000000000000000000000000000000055f804b3000000000000000000000000000000000000000000000000000000006352211e000000000000000000000000000000000000000000000000000000004639edea000000000000000000000000000000000000000000000000000000004639edeb00000000000000000000000000000000000000000000000000000000489ae77300000000000000000000000000000000000000000000000000000000524a202b0000000000000000000000000000000000000000000000000000000042842e0e00000000000000000000000000000000000000000000000000000000441303e40000000000000000000000000000000000000000000000000000000018160ddc000000000000000000000000000000000000000000000000000000002abae50d000000000000000000000000000000000000000000000000000000002abae50e000000000000000000000000000000000000000000000000000000003ccfd60b000000000000000000000000000000000000000000000000000000004266fec10000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000081812fb00000000000000000000000000000000000000000000000000000000081812fc00000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000013faede60000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000006fdde03000000000000000000000000000000000000002000000080000000000000000008c379a0000000000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084000000800000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000ffff0000ffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000000000000100000000ffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000080000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff02000000000000000000000000000000000000400000000000000000000000004e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000009921700258681c2163fa1703a84c40f13d756cf2bf4f2d7a26c3f9afe3095f70000000000000000000000000000000000000000000000000ffffffffffffffff00008000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000ffffffffffffff7f66de8ffda797e3de9c05e8fc57b3bf0ec28a930d40b0d285d93c06501cf6a09000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff0000000000000000000000000000000000000000000000000000000000000000ff0000000000000000000000000000000000000000000000000000000000000000ff0000000000000000000000000000000000000000000000000000000000000000ff0000000000000000000000000000000000000000000000000000000000000000ff0000000000000000000000000000000000000000000000000000000000000000ff0000000000000000000000000000000000000000000000000000000000000000ff0000000000000000000000000000000000000000000000000000000000000000ff0000000000000000000000000000000000000000000000000000000000000000ff0000000000000000000000000000000000000000000000000000000000000000ff0000000000000000000000000000000000000000000000000000000000000000ff0000000000000000000000000000000000000000000000000000000000000000ff0000000000000000000000000000000000000000000000000000000000000000ff0000000000000000000000000000000000000000000000000000000000000000ff0000000000000000000000000000000000000000000000000000000000000000ff0000000000000000000000000000000000000000000000000000000000000000ff0000000000000000000000000000000000000000000000000000000000000000ff0000000000000000000000000000000000000000000000000000000000000000ff0000000000000000000000000000000000000000000000000000000000000000ff0000000000000000000000000000000000000000000000000000000000000000ff0000000000000000000000000000000000000000000000000000000000000000ff0000000000000000000000000000000000000000000000000000000000000000ff0000000000000000000000000000000000000000000000000000000000000000ff0000000000000000000000000000000000000000000000000000000000000000ff0000000000000000000000000000000000000000000000000000000000000000ff0000000000000000000000000000000000000000000000000000000000000000ff0000000000000000000000000000000000000000000000000000000000000000ff0000000000000000000000000000000000000000000000000000000000000000ff0000000000000000000000000000000000000000000000000000000000000000ff000000000001000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000d7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb5a14c4b5000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000017307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31583aa0260000000000000000000000000000000000000000000000000000000084eef40b00000000000000000000000000000000000000000000000000000000b36c1284000000000000000000000000000000000000000000000000000000002d0a346e00000000000000000000000000000000000000000000000000000000c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b4d617820737570706c790000000000000000000000000000000000000000000000000000000000000000000000000000000000640000008000000000000000008f4eb604000000000000000000000000000000000000000000000000000000004c084f1400000000000000000000000000000000000000000000000000000000b830523700000000000000000000000000000000000000000000000000000000284966fefa8e6efe2541488ebb0d5cc7a37fcc532c506816bdc596a17e52e14bffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000ffffffffffffffbfffffffffffffffffffffffffffffffffffffffffffffffffffffffff80000000000000000000000000000000000000000000000000000000000000007fffffff00000000000000000000000000000000000000600000008000000000000000004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65729cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f39020000020000000000000000000000000000002400000000000000000000000000000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000003ffffffe000000000000000000000000000000000000000000000000000000000ffffffe05472616e73666572206661696c65642e000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000cfb3b942000000000000000000000000000000000000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925df2d9b4200000000000000000000000000000000000000000000000000000000cf4700e40000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000005b5e139f0000000000000000000000000000000000000000000000000000000080ac58cd00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff4bce133de58ba1c6975fb16a8f1bbda43e7057fe6397fd7e694ab92e9963dff398e497b8238be5e4f32f72d877ba0627e627848cb8a6504aa01d21a347d565198ea11481000000000000000000000000000000000000000000000000000000000059c896be00000000000000000000000000000000000000000000000000000000796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d9553913202000002000000000000000000000000000000040000000000000000000000000000000200000000000000000000000000000000000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efea553b34000000000000000000000000000000000000000000000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b83150b7a0200000000000000000000000000000000000000000000000000000000d1a57ed60000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000012e07630000000000000000000000000000000000000000000000000000000000b562e8dd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c666f158a838dada462f66112859d9a1cdabf4418ffa57fc5cbc29e086fe3434
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.