Source Code
Overview
ETH Balance
0 ETH
More Info
ContractCreator
TokenTracker
Multichain Info
N/A
Latest 11 internal transactions
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:
SpaceSkellies
Compiler Version
v0.8.24+commit.e11b9ed9
ZkSolc Version
v1.5.7
Optimization Enabled:
Yes with Mode 3
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; contract SpaceSkellies is ERC721, Ownable { uint256 public constant MAX_SUPPLY = 3500; uint256 private _tokenIds = 1; string private _baseURIValue; event Minted(address indexed owner, uint256 tokenId); event BaseURISet(string baseURI); event Withdrawn(address indexed admin, uint256 amount); constructor() ERC721("Space Skellies", "spaceskellies") Ownable() {} function mint() external { require(_tokenIds < MAX_SUPPLY, "Max NFT supply reached"); _tokenIds++; _safeMint(msg.sender, _tokenIds); emit Minted(msg.sender, _tokenIds); } function setBaseURI(string memory newBaseURI) external onlyOwner { _baseURIValue = newBaseURI; emit BaseURISet(newBaseURI); } function withdrawFunds() external onlyOwner { uint256 balance = address(this).balance; require(balance > 0, "No funds to withdraw"); (bool success, ) = payable(owner()).call{value: balance}(""); require(success, "Withdraw failed"); emit Withdrawn(owner(), balance); } function _baseURI() internal view override returns (string memory) { return _baseURIValue; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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 (last updated v4.6.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "evmVersion": "paris", "optimizer": { "enabled": true, "mode": "3" }, "outputSelection": { "*": { "*": [ "abi", "metadata" ], "": [ "ast" ] } }, "detectMissingLibraries": false, "forceEVMLA": false, "enableEraVMExtensions": false, "libraries": {} }
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"baseURI","type":"string"}],"name":"BaseURISet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Minted","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"admin","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdrawn","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
9c4d535b00000000000000000000000000000000000000000000000000000000000000000100034f3018556e54ac341e89132b71077a2b08e8dbfe06231856617a3e9cda00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x0004000000000002000a0000000000020000006004100270000002dc0340019700030000003103550002000000010355000002dc0040019d00000001002001900000002c0000c13d0000008004000039000000400040043f000000040030008c0000067f0000413d000000000201043b000000e002200270000002e70020009c000000480000213d000002f50020009c000000960000213d000002fc0020009c000001680000a13d000002fd0020009c000001f10000613d000002fe0020009c000001fa0000613d000002ff0020009c0000067f0000c13d0000000001000416000000000001004b0000067f0000c13d0000000702000039000000000102041a00000dac0010008c000003080000413d0000030201000041000000800010043f0000002001000039000000840010043f0000001601000039000000a40010043f0000033101000041000000c40010043f000003160100004100000b6f000104300000000001000416000000000001004b0000067f0000c13d0000000e01000039000000800010043f000002dd01000041000000a00010043f0000010001000039000000400010043f0000000d01000039000000c00010043f000002de01000041000000e00010043f000000000100041a000000010210019000000001031002700000007f0330618f0000001f0030008c00000000010000390000000101002039000000000012004b000000710000613d0000030b01000041000000000010043f0000002201000039000000040010043f0000030c0100004100000b6f00010430000002e80020009c000001040000213d000002ef0020009c0000018a0000a13d000002f00020009c000002210000613d000002f10020009c000002360000613d000002f20020009c0000067f0000c13d0000000001000416000000000001004b0000067f0000c13d0000000103000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f0000000100500190000000420000c13d000000800010043f000000000004004b0000031f0000613d000000000030043f000000000001004b0000000002000019000003240000613d00000317030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b000000690000413d000003240000013d000000200030008c000000890000413d000800000003001d000000000000043f0000000001000414000002dc0010009c000002dc01008041000000c001100210000002df011001c700008010020000390b6d0b680000040f00000001002001900000067f0000613d000000000101043b00000008020000290000001f0220003900000005022002700000000002210019000000000021004b000000890000813d000000000001041b0000000101100039000000000021004b000000850000413d000000a00100043d000002e0011001970000001c011001bf000000000010041b000000c00400043d000002e10040009c000001290000413d0000030b01000041000000000010043f0000004101000039000000040010043f0000030c0100004100000b6f00010430000002f60020009c000001a50000a13d000002f70020009c0000023f0000613d000002f80020009c000002460000613d000002f90020009c0000067f0000c13d000000240030008c0000067f0000413d0000000002000416000000000002004b0000067f0000c13d0000000402100370000000000502043b000003090050009c0000067f0000213d0000002302500039000000000032004b0000067f0000813d0000000406500039000000000261034f000000000402043b000003090040009c000000900000213d0000001f074000390000033d077001970000003f077000390000033d077001970000031b0070009c000000900000213d00000024055000390000008007700039000000400070043f000000800040043f0000000005540019000000000035004b0000067f0000213d0000002003600039000000000331034f0000033d054001980000001f0640018f000000a001500039000000c80000613d000000a007000039000000000803034f000000008908043c0000000007970436000000000017004b000000c40000c13d000000000006004b000000d50000613d000000000353034f0000000305600210000000000601043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f0000000000310435000000a00140003900000000000104350000000601000039000000000101041a000002e3011001970000000003000411000000000031004b0000052d0000c13d000000800300043d000003090030009c000000900000213d0000000801000039000000000501041a000000010050019000000001045002700000007f0440618f0000001f0040008c00000000060000390000000106002039000000000565013f0000000100500190000000420000c13d000000200040008c000000fc0000413d000000000010043f0000001f0530003900000005055002700000031e0550009a000000200030008c00000308050040410000001f0440003900000005044002700000031e0440009a000000000045004b000000fc0000813d000000000005041b0000000105500039000000000045004b000000f80000413d0000001f0030008c000005b30000a13d000000000010043f0000033d05300198000005be0000c13d000000a0060000390000030804000041000005cc0000013d000002e90020009c000001c90000a13d000002ea0020009c000002590000613d000002eb0020009c000002850000613d000002ec0020009c0000067f0000c13d000000240030008c0000067f0000413d0000000002000416000000000002004b0000067f0000c13d0000000401100370000000000601043b000002e30060009c0000067f0000213d0000000601000039000000000201041a000002e3032001970000000005000411000000000053004b000002ff0000c13d000000000006004b000003910000c13d0000030201000041000000800010043f0000002001000039000000840010043f0000002601000039000000a40010043f0000030301000041000000c40010043f0000030401000041000000e40010043f000003050100004100000b6f000104300000000106000039000000000106041a000000010010019000000001031002700000007f0330618f0000001f0030008c00000000020000390000000102002039000000000121013f0000000100100190000000420000c13d000000200030008c000001540000413d000700000003001d000800000004001d000000000060043f0000000001000414000002dc0010009c000002dc01008041000000c001100210000002df011001c700008010020000390b6d0b680000040f00000001002001900000067f0000613d00000008040000290000001f024000390000000502200270000000200040008c0000000002004019000000000301043b00000007010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000000106000039000001540000813d000000000002041b0000000102200039000000000012004b000001500000413d0000001f0040008c000002f40000a13d000800000004001d000000000060043f0000000001000414000002dc0010009c000002dc01008041000000c001100210000002df011001c700008010020000390b6d0b680000040f00000001002001900000067f0000613d00000008070000290000033d02700198000000000101043b000003350000c13d000000e0030000390000000106000039000003440000013d000003000020009c000002a00000613d000003010020009c0000067f0000c13d0000000001000416000000000001004b0000067f0000c13d000000000200041a000000010320019000000001012002700000007f0110618f0000001f0010008c00000000040000390000000104002039000000000442013f0000000100400190000000420000c13d000000800010043f000000000003004b0000031f0000613d000000000000043f000000000001004b0000000002000019000003240000613d00000339030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b000001820000413d000003240000013d000002f30020009c000002b40000613d000002f40020009c0000067f0000c13d000000240030008c0000067f0000413d0000000002000416000000000002004b0000067f0000c13d0000000401100370000000000101043b000002e30010009c0000067f0000213d000000000001004b000003870000c13d0000030201000041000000800010043f0000002001000039000000840010043f0000002a01000039000000a40010043f0000031901000041000000c40010043f0000031a01000041000000e40010043f000003050100004100000b6f00010430000002fa0020009c000002c30000613d000002fb0020009c0000067f0000c13d0000000001000416000000000001004b0000067f0000c13d0000000601000039000000000101041a000002e3011001970000000002000411000000000021004b000002ff0000c13d00000321010000410000000000100443000000000100041000000004001004430000000001000414000002dc0010009c000002dc01008041000000c00110021000000322011001c70000800a020000390b6d0b680000040f0000000100200190000005b20000613d000000000301043b000000000003004b000004100000c13d000000400100043d00000044021000390000032503000041000000000032043500000024021000390000001403000039000004c00000013d000002ed0020009c000002d50000613d000002ee0020009c0000067f0000c13d000000840030008c0000067f0000413d0000000002000416000000000002004b0000067f0000c13d0000000402100370000000000202043b000800000002001d000002e30020009c0000067f0000213d0000002402100370000000000202043b000700000002001d000002e30020009c0000067f0000213d0000006402100370000000000402043b000003090040009c0000067f0000213d0000002302400039000000000032004b0000067f0000813d0000000402400039000000000121034f000000000201043b00000024014000390b6d070c0000040f00000044020000390000000202200367000000000302043b0000000004010019000000080100002900000007020000290b6d07cb0000040f000000000100001900000b6e0001042e000000240030008c0000067f0000413d0000000002000416000000000002004b0000067f0000c13d0000000401100370000000000101043b0b6d07440000040f000002bc0000013d000000440030008c0000067f0000413d0000000002000416000000000002004b0000067f0000c13d0000000402100370000000000202043b000800000002001d000002e30020009c0000067f0000213d0000002401100370000000000101043b000700000001001d000000000010043f0000000201000039000000200010043f0000000001000414000002dc0010009c000002dc01008041000000c00110021000000307011001c700008010020000390b6d0b680000040f00000001002001900000067f0000613d000000000101043b000000000101041a000002e3011001980000039d0000c13d000000400100043d00000064021000390000033703000041000000000032043500000044021000390000033803000041000000000032043500000024021000390000002903000039000003a80000013d0000000001000416000000000001004b0000067f0000c13d0000000601000039000000000201041a000002e3032001970000000005000411000000000053004b000002ff0000c13d000002e202200197000000000021041b0000000001000414000002dc0010009c000002dc01008041000000c001100210000002e4011001c70000800d020000390000000303000039000002e5040000410000000006000019000004b50000013d0000000001000416000000000001004b0000067f0000c13d0000000601000039000000000101041a000002e301100197000000800010043f000003180100004100000b6e0001042e0000000001000416000000000001004b0000067f0000c13d00000dac01000039000000800010043f000003180100004100000b6e0001042e0000000001000416000000000001004b0000067f0000c13d00000000010300190b6d06dd0000040f000800000001001d000700000002001d000600000003001d000000400100043d000500000001001d0b6d06ef0000040f000000050400002900000000000404350000000801000029000000070200002900000006030000290b6d07cb0000040f000000000100001900000b6e0001042e000000240030008c0000067f0000413d0000000002000416000000000002004b0000067f0000c13d0000000401100370000000000101043b000800000001001d000000000010043f0000000201000039000000200010043f0000000001000414000002dc0010009c000002dc01008041000000c00110021000000307011001c700008010020000390b6d0b680000040f00000001002001900000067f0000613d000000400300043d000000000101043b000000000101041a000002e3001001980000036a0000c13d00000064013000390000031102000041000000000021043500000044013000390000031202000041000000000021043500000024013000390000002f02000039000000000021043500000302010000410000000000130435000000040130003900000020020000390000000000210435000002dc0030009c000002dc03008041000000400130021000000313011001c700000b6f00010430000000440030008c0000067f0000413d0000000002000416000000000002004b0000067f0000c13d0000000402100370000000000202043b000002e30020009c0000067f0000213d0000002401100370000000000101043b000800000001001d000002e30010009c0000067f0000213d000000000020043f0000000501000039000000200010043f000000400200003900000000010000190b6d0b4e0000040f00000008020000290b6d07bb0000040f000000000101041a000000ff001001900000000001000039000000010100c039000002bc0000013d000000240030008c0000067f0000413d0000000002000416000000000002004b0000067f0000c13d0000000401100370000000000201043b0000032d002001980000067f0000c13d00000001010000390000032e022001970000033a0020009c000002430000613d0000033b0020009c000002430000613d0000033c0020009c000000000100c019000000800010043f000003180100004100000b6e0001042e000000240030008c0000067f0000413d0000000002000416000000000002004b0000067f0000c13d0000000401100370000000000101043b0b6d07940000040f000000400200043d0000000000120435000002dc0020009c000002dc02008041000000400120021000000306011001c700000b6e0001042e0000000001000416000000000001004b0000067f0000c13d00000000010300190b6d06dd0000040f000800000001001d000700000002001d0000000002030019000600000003001d00000000010004110b6d09eb0000040f0b6d077d0000040f0000000801000029000000070200002900000006030000290b6d0a800000040f000000000100001900000b6e0001042e000000440030008c0000067f0000413d0000000002000416000000000002004b0000067f0000c13d0000000402100370000000000202043b000800000002001d000002e30020009c0000067f0000213d0000002401100370000000000201043b000000000002004b0000000001000039000000010100c039000700000002001d000000000012004b0000067f0000c13d0000000002000411000000080020006c000003b30000c13d0000030201000041000000800010043f0000002001000039000000840010043f0000001901000039000000a40010043f0000031501000041000000c40010043f000003160100004100000b6f00010430000000000004004b0000000001000019000002f80000613d000000e00100043d00000003024002100000033e0220027f0000033e02200167000000000121016f0000000102400210000000000121019f0000034f0000013d0000030201000041000000800010043f0000002001000039000000840010043f000000a40010043f0000031c01000041000000c40010043f000003160100004100000b6f000104300000000106100039000000000062041b0000000002000415000000400500043d000003100050009c000000900000213d00000000010004110000002003500039000000400030043f0000000000050435000002e301100198000003e30000c13d000000400100043d000000440210003900000330030000410000000000320435000003020200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000004c50000013d0000033f02200197000000a00020043f000000000001004b00000020020000390000000002006039000000200220003900000080010000390b6d06fa0000040f000000400100043d000800000001001d00000080020000390b6d06c80000040f00000008020000290000000001210049000002dc0010009c000002dc010080410000006001100210000002dc0020009c000002dc020080410000004002200210000000000121019f00000b6e0001042e000000010320008a000000050330027000000000033100190000002004000039000000010330003900000001060000390000000005040019000000c0044000390000000004040433000000000041041b00000020045000390000000101100039000000000031004b0000033b0000c13d000000e003500039000000000072004b0000034d0000813d0000000302700210000000f80220018f0000033e0220027f0000033e022001670000000003030433000000000223016f000000000021041b000000010170021000000001011001bf000000000016041b0000000601000039000000000201041a000002e2032001970000000006000411000000000363019f000000000031041b0000000001000414000002e305200197000002dc0010009c000002dc01008041000000c001100210000002e4011001c70000800d020000390000000303000039000002e5040000410b6d0b630000040f00000001002001900000067f0000613d00000007010000390000000102000039000000000021041b000000200100003900000100001004430000012000000443000002e60100004100000b6e0001042e0000000805000039000000000405041a000000010640019000000001024002700000007f0220618f0000001f0020008c00000000010000390000000101002039000000000114013f0000000100100190000000420000c13d0000000001230436000000000006004b000004170000613d000000000050043f000000000002004b000000000400001900000008080000290000041d0000613d000003080500004100000000040000190000000006410019000000000705041a000000000076043500000001055000390000002004400039000000000024004b0000037f0000413d0000041d0000013d000000000010043f0000000301000039000000200010043f000000400200003900000000010000190b6d0b4e0000040f000000000101041a000000800010043f000003180100004100000b6e0001042e000002e202200197000000000262019f000000000021041b0000000001000414000002dc0010009c000002dc01008041000000c001100210000002e4011001c70000800d020000390000000303000039000002e504000041000004b50000013d000000080010006b000004320000c13d000000400100043d00000064021000390000033503000041000000000032043500000044021000390000033603000041000000000032043500000024021000390000002103000039000000000032043500000302020000410000000000210435000000040210003900000020030000390000000000320435000002dc0010009c000002dc01008041000000400110021000000313011001c700000b6f00010430000000000020043f0000000501000039000000200010043f0000000001000414000002dc0010009c000002dc01008041000000c00110021000000307011001c700008010020000390b6d0b680000040f00000001002001900000067f0000613d000000000101043b0000000802000029000000000020043f000000200010043f0000000001000414000002dc0010009c000002dc01008041000000c00110021000000307011001c700008010020000390b6d0b680000040f00000001002001900000067f0000613d000000000101043b000000000201041a0000033f022001970000000703000029000000000232019f000000000021041b000000400100043d0000000000310435000002dc0010009c000002dc0100804100000040011002100000000002000414000002dc0020009c000002dc02008041000000c002200210000000000112019f000002df011001c70000800d020000390000000303000039000003140400004100000000050004110000000806000029000004b50000013d000400000005001d000500000003001d000800000001001d000600000002001d000700000006001d000000000060043f0000000201000039000000200010043f0000000001000414000002dc0010009c000002dc01008041000000c00110021000000307011001c70000801002000039000300000004001d0b6d0b680000040f00000001002001900000067f0000613d000000000101043b000000000101041a000002e300100198000004ba0000c13d0000000801000029000000000010043f0000000301000039000000200010043f0000000001000414000002dc0010009c000002dc01008041000000c00110021000000307011001c700008010020000390b6d0b680000040f00000001002001900000067f0000613d000000000101043b000000000201041a000000010220003a000005670000c13d0000030b01000041000000000010043f0000001101000039000000040010043f0000030c0100004100000b6f0001043000000000010004140000000004000411000000040040008c000004630000c13d00000001020000390000000101000031000004710000013d0000033f044001970000000000410435000000000002004b0000002004000039000000000400603900000008080000290000003f024000390000033d052001970000000002350019000000000052004b00000000050000390000000105004039000003090020009c000000900000213d0000000100500190000000900000c13d000000400020043f0000000005030433000000000005004b000004cb0000c13d000003100020009c000000900000213d0000002001200039000000400010043f0000000000020435000000400100043d000005030000013d0000000002000411000000000012004b000005050000c13d0000000701000029000000000010043f0000000401000039000000200010043f0000000001000414000002dc0010009c000002dc01008041000000c00110021000000307011001c700008010020000390b6d0b680000040f00000001002001900000067f0000613d000000000101043b000000000201041a000002e20220019700000008022001af000000000021041b0000000701000029000000000010043f0000000201000039000000200010043f0000000001000414000002dc0010009c000002dc01008041000000c00110021000000307011001c700008010020000390b6d0b680000040f00000001002001900000067f0000613d000000000101043b000000000101041a000002e305100198000002170000613d0000000001000414000002dc0010009c000002dc01008041000000c001100210000002e4011001c70000800d020000390000000403000039000003340400004100000008060000290000000707000029000004b50000013d000002dc0010009c000002dc01008041000000c001100210000002e4011001c700008009020000390000000005000019000800000003001d0b6d0b630000040f0000000803000029000000010220018f00030000000103550000006001100270000102dc0010019d000002dc01100197000000000001004b0000047c0000c13d000000400100043d000000000002004b000004a50000c13d00000044021000390000032403000041000000000032043500000024021000390000000f03000039000004c00000013d000003090010009c000000900000213d0000001f041000390000033d044001970000003f044000390000033d05400197000000400400043d0000000005540019000000000045004b00000000060000390000000106004039000003090050009c000000900000213d0000000100600190000000900000c13d000000400050043f00000000061404360000033d091001980000001f0410018f00000000019600190000000305000367000004970000613d000000000705034f000000007807043c0000000006860436000000000016004b000004930000c13d000000000004004b000004730000613d000000000695034f0000000304400210000000000501043300000000054501cf000000000545022f000000000606043b0000010004400089000000000646022f00000000044601cf000000000454019f0000000000410435000004730000013d0000000602000039000000000202041a0000000000310435000002dc0010009c000002dc0100804100000040011002100000000003000414000002dc0030009c000002dc03008041000000c003300210000000000113019f000002df011001c7000002e3052001970000800d02000039000000020300003900000323040000410b6d0b630000040f00000001002001900000067f0000613d000000000100001900000b6e0001042e000000400100043d00000044021000390000032603000041000000000032043500000024021000390000001c03000039000000000032043500000302020000410000000000210435000000040210003900000020030000390000000000320435000002dc0010009c000002dc0100804100000040011002100000031d011001c700000b6f00010430000000000008004b000005310000c13d0000030f0020009c000000900000213d0000004005200039000000400050043f00000020052000390000030e06000041000000000065043500000001050000390000000000520435000000400500043d00000020065000390000000003030433000000000003004b000004e30000613d000000000700001900000000086700190000000009710019000000000909043300000000009804350000002007700039000000000037004b000004dc0000413d000000000163001900000000000104350000000032020434000000000002004b000004f00000613d000000000600001900000000071600190000000008630019000000000808043300000000008704350000002006600039000000000026004b000004e90000413d000000000112001900000000000104350000000001510049000000200210008a00000000002504350000001f011000390000033d011001970000000003510019000000000013004b00000000010000390000000101004039000003090030009c000000900000213d0000000100100190000000900000c13d00000000020300190000000001030019000000400020043f0000000002050019000800000001001d0000032a0000013d000000000010043f0000000501000039000000200010043f0000000001000414000002dc0010009c000002dc01008041000000c00110021000000307011001c700008010020000390b6d0b680000040f00000001002001900000067f0000613d000000000101043b0000000002000411000002e302200197000000000020043f000000200010043f0000000001000414000002dc0010009c000002dc01008041000000c00110021000000307011001c700008010020000390b6d0b680000040f00000001002001900000067f0000613d000000000101043b000000000101041a000000ff00100190000004350000c13d000000400100043d00000064021000390000033203000041000000000032043500000044021000390000033303000041000000000032043500000024021000390000003803000039000003a80000013d000000400100043d00000044021000390000031c03000041000003170000013d000000000708001900000000050000190000000006050019000000010550003a0000040a0000613d000000090070008c0000000a0770011a000005330000213d0000030a0060009c000000900000213d0000033d076001970000005f067000390000033d086001970000000006280019000000000086004b00000000080000390000000108004039000003090060009c000000900000213d0000000100800190000000900000c13d000000400060043f000000000652043600000020077000390000033d087001980000001f0770018f000005540000613d000000000886001900000000090000310000000209900367000000000a060019000000009b09043c000000000aba043600000000008a004b000005500000c13d000000000007004b000000080a000029000000000005004b0000040a0000613d000000010550008a0000000007020433000000000057004b000005fe0000a13d00000000076500190000000900a0008c0000000a8aa0011a000000f80880021000000000090704330000030d09900197000000000898019f0000030e088001c70000000000870435000005560000213d000004d60000013d000000000021041b0000000701000029000000000010043f0000000201000039000000200010043f0000000001000414000002dc0010009c000002dc01008041000000c00110021000000307011001c700008010020000390b6d0b680000040f00000001002001900000067f0000613d000000000101043b000000000201041a000002e2022001970000000806000029000000000262019f000000000021041b0000000001000414000002dc0010009c000002dc01008041000000c001100210000002e4011001c70000800d0200003900000004030000390000032704000041000000000500001900000007070000290b6d0b630000040f00000001002001900000067f0000613d0000000001000415000200000001001d00000328010000410000000000100443000000000100041100000004001004430000000001000414000002dc0010009c000002dc01008041000000c00110021000000322011001c700008002020000390b6d0b680000040f0000000100200190000005b20000613d000000000101043b000000000001004b000006040000c13d0000000001000415000000020110006900000000010000020000000001000415000000060110006900000000010000020000000701000039000000000101041a000000400200043d0000000000120435000002dc0020009c000002dc0200804100000040012002100000000002000414000002dc0020009c000002dc02008041000000c002200210000000000112019f000002df011001c70000800d0200003900000002030000390000032f040000410000000005000411000004b50000013d000000000001042f000000000003004b0000000004000019000005b70000613d000000a00400043d00000003053002100000033e0550027f0000033e05500167000000000454016f0000000103300210000000000334019f000005d70000013d00000308040000410000002007000039000000010650008a00000005066002700000031f0660009a000000000807001900000080077000390000000007070433000000000074041b00000020078000390000000104400039000000000064004b000005c30000c13d000000a006800039000000000035004b000005d50000813d0000000305300210000000f80550018f0000033e0550027f0000033e055001670000000006060433000000000556016f000000000054041b000000010330021000000001033001bf000000000031041b0000002003000039000000400100043d0000000004310436000000800300043d00000000003404350000004004100039000000000003004b000005e80000613d00000000050000190000000006450019000000a007500039000000000707043300000000007604350000002005500039000000000035004b000005e10000413d0000001f053000390000033d02500197000000000343001900000000000304350000004002200039000002dc0020009c000002dc020080410000006002200210000002dc0010009c000002dc010080410000004001100210000000000112019f0000000002000414000002dc0020009c000002dc02008041000000c002200210000000000112019f000002e4011001c70000800d0200003900000001030000390000032004000041000004b50000013d0000030b01000041000000000010043f0000003201000039000000040010043f0000030c0100004100000b6f00010430000000400300043d00000064013000390000008002000039000000000021043500000044013000390000000702000029000000000021043500000329010000410000000000130435000000040130003900000008020000290000000000210435000000240130003900000000000104350000000401000029000000000101043300000084023000390000000000120435000100000003001d000000a402300039000000000001004b0000000506000029000006230000613d000000000300001900000000042300190000000005630019000000000505043300000000005404350000002003300039000000000013004b0000061c0000413d0000000002210019000000000002043500000000020004140000000803000029000000040030008c000006310000c13d00000000050004150000000a0550008a00000005055002100000000103000031000000200030008c00000020040000390000000004034019000006650000013d0000001f011000390000033d01100197000000a401100039000002dc0010009c000002dc0100804100000060011002100000000103000029000002dc0030009c000002dc030080410000004003300210000000000131019f000002dc0020009c000002dc02008041000000c002200210000000000112019f00000008020000290b6d0b630000040f0000006003100270000002dc03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000105700029000006510000613d000000000801034f0000000109000029000000008a08043c0000000009a90436000000000059004b0000064d0000c13d000000000006004b0000065e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000005000415000000090550008a00000005055002100000000100200190000006810000613d0000001f01400039000000600210018f0000000101200029000000000021004b00000000020000390000000102004039000003090010009c000000900000213d0000000100200190000000900000c13d000000400010043f000000200030008c0000067f0000413d000000010100002900000000010104330000032d001001980000067f0000c13d0000000502500270000000000201001f0000000002000415000000020220006900000000020000020000032e01100197000003290010009c0000059d0000613d000006af0000013d000000000100001900000b6f00010430000000000003004b000006850000c13d0000006002000039000006ac0000013d0000001f023000390000032a022001970000003f022000390000032b04200197000000400200043d0000000004420019000000000024004b00000000050000390000000105004039000003090040009c000000900000213d0000000100500190000000900000c13d000000400040043f0000001f0430018f00000000063204360000032c05300198000300000006001d00000000035600190000069f0000613d000000000601034f0000000307000029000000006806043c0000000007870436000000000037004b0000069b0000c13d000000000004004b000006ac0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b000006bf0000c13d000000400200043d000800000002001d0000030201000041000000000012043500000004012000390b6d0b400000040f00000008020000290000000001210049000002dc0010009c000002dc010080410000006001100210000002dc0020009c000002dc020080410000004002200210000000000121019f00000b6f000104300000000302000029000002dc0020009c000002dc020080410000004002200210000002dc0010009c000002dc010080410000006001100210000000000121019f00000b6f0001043000000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b000006d70000613d000000000400001900000000051400190000000006430019000000000606043300000000006504350000002004400039000000000024004b000006d00000413d000000000312001900000000000304350000001f022000390000033d022001970000000001120019000000000001042d000003400010009c000006ed0000213d000000630010008c000006ed0000a13d00000002030003670000000401300370000000000101043b000002e30010009c000006ed0000213d0000002402300370000000000202043b000002e30020009c000006ed0000213d0000004403300370000000000303043b000000000001042d000000000100001900000b6f00010430000003410010009c000006f40000813d0000002001100039000000400010043f000000000001042d0000030b01000041000000000010043f0000004101000039000000040010043f0000030c0100004100000b6f000104300000001f022000390000033d022001970000000001120019000000000021004b00000000020000390000000102004039000003090010009c000007060000213d0000000100200190000007060000c13d000000400010043f000000000001042d0000030b01000041000000000010043f0000004101000039000000040010043f0000030c0100004100000b6f00010430000002e10020009c0000073c0000813d00000000040100190000001f012000390000033d011001970000003f011000390000033d05100197000000400100043d0000000005510019000000000015004b00000000070000390000000107004039000003090050009c0000073c0000213d00000001007001900000073c0000c13d000000400050043f00000000052104360000000007420019000000000037004b000007420000213d0000033d062001980000001f0720018f000000020440036700000000036500190000072c0000613d000000000804034f0000000009050019000000008a08043c0000000009a90436000000000039004b000007280000c13d000000000007004b000007390000613d000000000464034f0000000306700210000000000703043300000000076701cf000000000767022f000000000404043b0000010006600089000000000464022f00000000046401cf000000000474019f000000000043043500000000022500190000000000020435000000000001042d0000030b01000041000000000010043f0000004101000039000000040010043f0000030c0100004100000b6f00010430000000000100001900000b6f000104300001000000000002000100000001001d000000000010043f0000000201000039000000200010043f0000000001000414000002dc0010009c000002dc01008041000000c00110021000000307011001c700008010020000390b6d0b680000040f0000000100200190000007670000613d000000000101043b000000000101041a000002e300100198000007690000613d0000000101000029000000000010043f0000000401000039000000200010043f0000000001000414000002dc0010009c000002dc01008041000000c00110021000000307011001c700008010020000390b6d0b680000040f0000000100200190000007670000613d000000000101043b000000000101041a000002e301100197000000000001042d000000000100001900000b6f00010430000000400100043d00000064021000390000034203000041000000000032043500000044021000390000034303000041000000000032043500000024021000390000002c03000039000000000032043500000302020000410000000000210435000000040210003900000020030000390000000000320435000002dc0010009c000002dc01008041000000400110021000000313011001c700000b6f00010430000000000001004b000007800000613d000000000001042d000000400100043d00000064021000390000034403000041000000000032043500000044021000390000034503000041000000000032043500000024021000390000003103000039000000000032043500000302020000410000000000210435000000040210003900000020030000390000000000320435000002dc0010009c000002dc01008041000000400110021000000313011001c700000b6f00010430000000000010043f0000000201000039000000200010043f0000000001000414000002dc0010009c000002dc01008041000000c00110021000000307011001c700008010020000390b6d0b680000040f0000000100200190000007a50000613d000000000101043b000000000101041a000002e301100198000007a70000613d000000000001042d000000000100001900000b6f00010430000000400100043d00000064021000390000033703000041000000000032043500000044021000390000033803000041000000000032043500000024021000390000002903000039000000000032043500000302020000410000000000210435000000040210003900000020030000390000000000320435000002dc0010009c000002dc01008041000000400110021000000313011001c700000b6f00010430000002e302200197000000000020043f000000200010043f0000000001000414000002dc0010009c000002dc01008041000000c00110021000000307011001c700008010020000390b6d0b680000040f0000000100200190000007c90000613d000000000101043b000000000001042d000000000100001900000b6f000104300009000000000002000100000004001d000400000002001d000500000001001d000700000003001d000000000030043f0000000201000039000000200010043f0000000001000414000002dc0010009c000002dc01008041000000c00110021000000307011001c700008010020000390b6d0b680000040f0000000100200190000009520000613d000000000101043b000000000101041a000002e300100198000009640000613d0000000701000029000000000010043f0000000201000039000000200010043f0000000001000414000002dc0010009c000002dc01008041000000c00110021000000307011001c700008010020000390b6d0b680000040f0000000100200190000009520000613d000000000101043b000000000101041a000002e301100198000009540000613d0000000002000411000302e30020019b000000030010006b000008350000613d000000000010043f0000000501000039000000200010043f0000000001000414000002dc0010009c000002dc01008041000000c00110021000000307011001c700008010020000390b6d0b680000040f0000000100200190000009520000613d000000000101043b0000000302000029000000000020043f000000200010043f0000000001000414000002dc0010009c000002dc01008041000000c00110021000000307011001c700008010020000390b6d0b680000040f0000000100200190000009520000613d000000000101043b000000000101041a000000ff00100190000008350000c13d0000000701000029000000000010043f0000000201000039000000200010043f0000000001000414000002dc0010009c000002dc01008041000000c00110021000000307011001c700008010020000390b6d0b680000040f0000000100200190000009520000613d000000000101043b000000000101041a000002e300100198000009910000613d0000000701000029000000000010043f0000000401000039000000200010043f0000000001000414000002dc0010009c000002dc01008041000000c00110021000000307011001c700008010020000390b6d0b680000040f0000000100200190000009520000613d000000000101043b000000000101041a000002e301100197000000030010006c000009980000c13d0000000701000029000000000010043f0000000201000039000000200010043f0000000001000414000002dc0010009c000002dc01008041000000c00110021000000307011001c700008010020000390b6d0b680000040f0000000100200190000009520000613d000000000101043b000000000101041a000602e30010019c000009540000613d0000000501000029000002e301100197000000060010006b0000096e0000c13d0000000401000029000502e30010019c000009780000613d0000000701000029000000000010043f0000000401000039000000200010043f0000000001000414000002dc0010009c000002dc01008041000000c00110021000000307011001c700008010020000390b6d0b680000040f0000000100200190000009520000613d000000000101043b000000000201041a000002e202200197000000000021041b0000000701000029000000000010043f0000000201000039000000200010043f0000000001000414000002dc0010009c000002dc01008041000000c00110021000000307011001c700008010020000390b6d0b680000040f0000000100200190000009520000613d000000000101043b000000000101041a000002e305100198000009540000613d0000000001000414000002dc0010009c000002dc01008041000000c001100210000002e4011001c70000800d0200003900000004030000390000033404000041000000000600001900000007070000290b6d0b630000040f0000000100200190000009520000613d0000000601000029000000000010043f0000000301000039000000200010043f0000000001000414000002dc0010009c000002dc01008041000000c00110021000000307011001c700008010020000390b6d0b680000040f0000000100200190000009520000613d000000000101043b000000000201041a000000000002004b0000095e0000613d000000010220008a000000000021041b0000000501000029000000000010043f0000000301000039000000200010043f0000000001000414000002dc0010009c000002dc01008041000000c00110021000000307011001c700008010020000390b6d0b680000040f0000000100200190000009520000613d000000000101043b000000000201041a000000010220003a0000095e0000613d000000000021041b0000000701000029000000000010043f0000000201000039000000200010043f0000000001000414000002dc0010009c000002dc01008041000000c00110021000000307011001c700008010020000390b6d0b680000040f0000000100200190000009520000613d000000000101043b000000000201041a000002e2022001970000000506000029000000000262019f000000000021041b0000000001000414000002dc0010009c000002dc01008041000000c001100210000002e4011001c70000800d0200003900000004030000390000032704000041000000060500002900000007070000290b6d0b630000040f0000000100200190000009520000613d0000000001000415000200000001001d00000328010000410000000000100443000000040100002900000004001004430000000001000414000002dc0010009c000002dc01008041000000c00110021000000322011001c700008002020000390b6d0b680000040f00000001002001900000098c0000613d000000000101043b000000000001004b000008ff0000613d000000400b00043d0000006401b00039000000800700003900000000007104350000004401b00039000000070200002900000000002104350000002401b0003900000006020000290000000000210435000003290100004100000000001b04350000000401b00039000000030200002900000000002104350000008403b00039000000010100002900000000210104340000000000130435000000a403b00039000000000001004b000008f10000613d000000000400001900000000053400190000000006420019000000000606043300000000006504350000002004400039000000000014004b000008ea0000413d0000000002310019000000000002043500000000040004140000000502000029000000040020008c000009030000c13d0000000005000415000000090550008a00000005055002100000000103000031000000200030008c00000020040000390000000004034019000009390000013d000000000100041500000002011000690000000001000002000000000001042d000600000007001d0000001f011000390000033d01100197000000a401100039000002dc0010009c000002dc010080410000006001100210000002dc00b0009c000002dc0300004100000000030b40190000004003300210000000000131019f000002dc0040009c000002dc04008041000000c003400210000000000113019f00070000000b001d0b6d0b630000040f000000070b0000290000006003100270000002dc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000009250000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000009210000c13d000000000006004b000009320000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000005000415000000080550008a000000050550021000000001002001900000098d0000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000003090010009c000009dc0000213d0000000100200190000009dc0000c13d000000400010043f000000200030008c000009520000413d00000000010b04330000032d00100198000009520000c13d0000000502500270000000000201001f0000000002000415000000020220006900000000020000020000032e01100197000003290010009c000009cc0000c13d000000000001042d000000000100001900000b6f00010430000000400100043d00000064021000390000033703000041000000000032043500000044021000390000033803000041000000000032043500000024021000390000002903000039000009810000013d0000030b01000041000000000010043f0000001101000039000000040010043f0000030c0100004100000b6f00010430000000400100043d00000064021000390000034203000041000000000032043500000044021000390000034a03000041000000000032043500000024021000390000002c03000039000009810000013d000000400100043d00000064021000390000034603000041000000000032043500000044021000390000034703000041000000000032043500000024021000390000002503000039000009810000013d000000400100043d00000064021000390000034803000041000000000032043500000044021000390000034903000041000000000032043500000024021000390000002403000039000000000032043500000302020000410000000000210435000000040210003900000020030000390000000000320435000002dc0010009c000002dc01008041000000400110021000000313011001c700000b6f00010430000000000001042f000000000003004b000009a20000c13d0000006002000039000009c90000013d000000400100043d000000640210003900000342030000410000000000320435000000440210003900000343030000410000096a0000013d000000400100043d00000064021000390000034403000041000000000032043500000044021000390000034503000041000000000032043500000024021000390000003103000039000009810000013d0000001f023000390000032a022001970000003f022000390000032b04200197000000400200043d0000000004420019000000000024004b00000000050000390000000105004039000003090040009c000009dc0000213d0000000100500190000009dc0000c13d000000400040043f0000001f0430018f00000000063204360000032c05300198000600000006001d0000000003560019000009bc0000613d000000000601034f0000000607000029000000006806043c0000000007870436000000000037004b000009b80000c13d000000000004004b000009c90000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b000009e20000c13d000000400200043d000700000002001d0000030201000041000000000012043500000004012000390b6d0b400000040f00000007020000290000000001210049000002dc0010009c000002dc010080410000006001100210000002dc0020009c000002dc020080410000004002200210000000000121019f00000b6f000104300000030b01000041000000000010043f0000004101000039000000040010043f0000030c0100004100000b6f000104300000000602000029000002dc0020009c000002dc020080410000004002200210000002dc0010009c000002dc010080410000006001100210000000000121019f00000b6f000104300002000000000002000100000001001d000200000002001d000000000020043f0000000201000039000000200010043f0000000001000414000002dc0010009c000002dc01008041000000c00110021000000307011001c700008010020000390b6d0b680000040f000000010020019000000a590000613d000000000101043b000000000101041a000002e30010019800000a5b0000613d0000000201000029000000000010043f0000000201000039000000200010043f0000000001000414000002dc0010009c000002dc01008041000000c00110021000000307011001c700008010020000390b6d0b680000040f000000010020019000000a590000613d000000000101043b000000000101041a000002e30110019800000a650000613d0000000102000029000002e302200197000000000012004b00000a150000c13d0000000101000039000000000001042d000100000002001d000000000010043f0000000501000039000000200010043f0000000001000414000002dc0010009c000002dc01008041000000c00110021000000307011001c700008010020000390b6d0b680000040f000000010020019000000a590000613d000000000101043b0000000102000029000000000020043f000000200010043f0000000001000414000002dc0010009c000002dc01008041000000c00110021000000307011001c700008010020000390b6d0b680000040f000000010020019000000a590000613d000000000101043b000000000101041a000000ff0110019000000a340000613d000000000001042d0000000201000029000000000010043f0000000201000039000000200010043f0000000001000414000002dc0010009c000002dc01008041000000c00110021000000307011001c700008010020000390b6d0b680000040f000000010020019000000a590000613d000000000101043b000000000101041a000002e30010019800000a790000613d0000000201000029000000000010043f0000000401000039000000200010043f0000000001000414000002dc0010009c000002dc01008041000000c00110021000000307011001c700008010020000390b6d0b680000040f000000010020019000000a590000613d000000000101043b000000000101041a000002e301100197000000010010006c00000000010000390000000101006039000000000001042d000000000100001900000b6f00010430000000400100043d00000064021000390000034203000041000000000032043500000044021000390000034a03000041000000000032043500000024021000390000002c0300003900000a6e0000013d000000400100043d00000064021000390000033703000041000000000032043500000044021000390000033803000041000000000032043500000024021000390000002903000039000000000032043500000302020000410000000000210435000000040210003900000020030000390000000000320435000002dc0010009c000002dc01008041000000400110021000000313011001c700000b6f00010430000000400100043d0000006402100039000003420300004100000000003204350000004402100039000003430300004100000a610000013d0004000000000002000100000002001d000200000001001d000400000003001d000000000030043f0000000201000039000000200010043f0000000001000414000002dc0010009c000002dc01008041000000c00110021000000307011001c700008010020000390b6d0b680000040f000000010020019000000b100000613d000000000101043b000000000101041a000302e30010019c00000b120000613d0000000201000029000002e301100197000000030010006b00000b220000c13d0000000101000029000202e30010019c00000b2c0000613d0000000401000029000000000010043f0000000401000039000000200010043f0000000001000414000002dc0010009c000002dc01008041000000c00110021000000307011001c700008010020000390b6d0b680000040f000000010020019000000b100000613d000000000101043b000000000201041a000002e202200197000000000021041b0000000401000029000000000010043f0000000201000039000000200010043f0000000001000414000002dc0010009c000002dc01008041000000c00110021000000307011001c700008010020000390b6d0b680000040f000000010020019000000b100000613d000000000101043b000000000101041a000002e30510019800000b120000613d0000000001000414000002dc0010009c000002dc01008041000000c001100210000002e4011001c70000800d0200003900000004030000390000033404000041000000000600001900000004070000290b6d0b630000040f000000010020019000000b100000613d0000000301000029000000000010043f0000000301000039000000200010043f0000000001000414000002dc0010009c000002dc01008041000000c00110021000000307011001c700008010020000390b6d0b680000040f000000010020019000000b100000613d000000000101043b000000000201041a000000000002004b00000b1c0000613d000000010220008a000000000021041b0000000201000029000000000010043f0000000301000039000000200010043f0000000001000414000002dc0010009c000002dc01008041000000c00110021000000307011001c700008010020000390b6d0b680000040f000000010020019000000b100000613d000000000101043b000000000201041a000000010220003a00000b1c0000613d000000000021041b0000000401000029000000000010043f0000000201000039000000200010043f0000000001000414000002dc0010009c000002dc01008041000000c00110021000000307011001c700008010020000390b6d0b680000040f000000010020019000000b100000613d000000000101043b000000000201041a000002e2022001970000000206000029000000000262019f000000000021041b0000000001000414000002dc0010009c000002dc01008041000000c001100210000002e4011001c70000800d0200003900000004030000390000032704000041000000030500002900000004070000290b6d0b630000040f000000010020019000000b100000613d000000000001042d000000000100001900000b6f00010430000000400100043d0000006402100039000003370300004100000000003204350000004402100039000003380300004100000000003204350000002402100039000000290300003900000b350000013d0000030b01000041000000000010043f0000001101000039000000040010043f0000030c0100004100000b6f00010430000000400100043d0000006402100039000003460300004100000000003204350000004402100039000003470300004100000000003204350000002402100039000000250300003900000b350000013d000000400100043d00000064021000390000034803000041000000000032043500000044021000390000034903000041000000000032043500000024021000390000002403000039000000000032043500000302020000410000000000210435000000040210003900000020030000390000000000320435000002dc0010009c000002dc01008041000000400110021000000313011001c700000b6f0001043000000060021000390000034b03000041000000000032043500000040021000390000034c030000410000000000320435000000200210003900000032030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d000000000001042f000002dc0010009c000002dc010080410000004001100210000002dc0020009c000002dc020080410000006002200210000000000112019f0000000002000414000002dc0020009c000002dc02008041000000c002200210000000000112019f000002e4011001c700008010020000390b6d0b680000040f000000010020019000000b610000613d000000000101043b000000000001042d000000000100001900000b6f0001043000000b66002104210000000102000039000000000001042d0000000002000019000000000001042d00000b6b002104230000000102000039000000000001042d0000000002000019000000000001042d00000b6d0000043200000b6e0001042e00000b6f0001043000000000000000000000000000000000000000000000000000000000ffffffff537061636520536b656c6c6965730000000000000000000000000000000000007370616365736b656c6c696573000000000000000000000000000000000000000200000000000000000000000000000000000020000000000000000000000000ffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff02000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e00000000200000000000000000000000000000040000001000000000000000000000000000000000000000000000000000000000000000000000000006352211d00000000000000000000000000000000000000000000000000000000a22cb46400000000000000000000000000000000000000000000000000000000c87b56dc00000000000000000000000000000000000000000000000000000000c87b56dd00000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000a22cb46500000000000000000000000000000000000000000000000000000000b88d4fde00000000000000000000000000000000000000000000000000000000715018a500000000000000000000000000000000000000000000000000000000715018a6000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000006352211e0000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000023b872dc0000000000000000000000000000000000000000000000000000000032cb6b0b0000000000000000000000000000000000000000000000000000000032cb6b0c0000000000000000000000000000000000000000000000000000000042842e0e0000000000000000000000000000000000000000000000000000000055f804b30000000000000000000000000000000000000000000000000000000023b872dd0000000000000000000000000000000000000000000000000000000024600fc300000000000000000000000000000000000000000000000000000000081812fb00000000000000000000000000000000000000000000000000000000081812fc00000000000000000000000000000000000000000000000000000000095ea7b3000000000000000000000000000000000000000000000000000000001249c58b0000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000006fdde0308c379a0000000000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008400000080000000000000000000000000000000000000000000000000000000200000000000000000000000000200000000000000000000000000000000000040000000000000000000000000f3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee3000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000000000000000000000000000000000000fffffffffffffffe4e487b7100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffbf000000000000000000000000000000000000000000000000ffffffffffffffdf6e6578697374656e7420746f6b656e00000000000000000000000000000000004552433732314d657461646174613a2055524920717565727920666f72206e6f000000000000000000000000000000000000008400000000000000000000000017307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c314552433732313a20617070726f766520746f2063616c6c6572000000000000000000000000000000000000000000000000000064000000800000000000000000b10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf600000000000000000000000000000000000000200000008000000000000000004552433732313a2062616c616e636520717565727920666f7220746865207a65726f206164647265737300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000640000000000000000000000000c085601c9b05546c4de925af5cdebeab0dd5f5d4bea4dc57b37e961749c911d0c085601c9b05546c4de925af5cdebeab0dd5f5d4bea4dc57b37e961749c911cf9c7803e94e0d3c02900d8a90893a6d5e90dd04d32a4cfe825520f82bf9f32f69cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f3902000002000000000000000000000000000000240000000000000000000000007084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d55769746864726177206661696c656400000000000000000000000000000000004e6f2066756e647320746f2077697468647261770000000000000000000000004552433732313a20746f6b656e20616c7265616479206d696e74656400000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef1806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b83150b7a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000003ffffffe000000000000000000000000000000000000000000000000000000000ffffffe000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000030385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe4552433732313a206d696e7420746f20746865207a65726f20616464726573734d6178204e465420737570706c792072656163686564000000000000000000006e6572206e6f7220617070726f76656420666f7220616c6c00000000000000004552433732313a20617070726f76652063616c6c6572206973206e6f74206f778c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92572000000000000000000000000000000000000000000000000000000000000004552433732313a20617070726f76616c20746f2063757272656e74206f776e65656e7420746f6b656e00000000000000000000000000000000000000000000004552433732313a206f776e657220717565727920666f72206e6f6e6578697374290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e56301ffc9a7000000000000000000000000000000000000000000000000000000005b5e139f0000000000000000000000000000000000000000000000000000000080ac58cd00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffe0697374656e7420746f6b656e00000000000000000000000000000000000000004552433732313a20617070726f76656420717565727920666f72206e6f6e6578776e6572206e6f7220617070726f7665640000000000000000000000000000004552433732313a207472616e736665722063616c6c6572206973206e6f74206f6f776e65720000000000000000000000000000000000000000000000000000004552433732313a207472616e736665722066726f6d20696e636f72726563742072657373000000000000000000000000000000000000000000000000000000004552433732313a207472616e7366657220746f20746865207a65726f206164644552433732313a206f70657261746f7220717565727920666f72206e6f6e657863656976657220696d706c656d656e74657200000000000000000000000000004552433732313a207472616e7366657220746f206e6f6e2045524337323152650000000000000000000000000000000000000000000000000000000000000000f4ad008c7f7dd5f131a8a325cdd0d2bc3972644ad510e20a0387718dbddde8c8
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.