Source Code
Overview
ETH Balance
0 ETH
More Info
ContractCreator
TokenTracker
Multichain Info
N/A
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
6327161 | 36 hrs ago | 0 ETH | ||||
6327161 | 36 hrs ago | 0 ETH | ||||
6327161 | 36 hrs ago | 0 ETH | ||||
6327161 | 36 hrs ago | 0 ETH | ||||
6327161 | 36 hrs ago | 0 ETH | ||||
6327161 | 36 hrs ago | 0 ETH | ||||
6327161 | 36 hrs ago | 0 ETH | ||||
6327161 | 36 hrs ago | 0 ETH | ||||
6327161 | 36 hrs ago | 0 ETH | ||||
6321239 | 39 hrs ago | 0 ETH | ||||
6321239 | 39 hrs ago | 0 ETH | ||||
6321239 | 39 hrs ago | 0 ETH | ||||
6321239 | 39 hrs ago | 0 ETH | ||||
6321239 | 39 hrs ago | 0 ETH | ||||
6321239 | 39 hrs ago | 0 ETH | ||||
6321239 | 39 hrs ago | 0 ETH | ||||
6321239 | 39 hrs ago | 0 ETH | ||||
6321239 | 39 hrs ago | 0 ETH | ||||
6202415 | 3 days ago | 0 ETH | ||||
6202415 | 3 days ago | 0 ETH | ||||
6202415 | 3 days ago | 0 ETH | ||||
6202415 | 3 days ago | 0 ETH | ||||
6202415 | 3 days ago | 0 ETH | ||||
6202415 | 3 days ago | 0 ETH | ||||
6202415 | 3 days ago | 0 ETH |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Source Code Verified (Exact Match)
Contract Name:
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/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; contract SpaceSkellies is ERC721, Ownable { uint256 public constant MAX_SUPPLY = 3500; uint256 public constant MAX_PER_ADDRESS = 10; uint256 private _tokenIds = 0; string private _baseURIValue; mapping(address => uint256) private _mintedCount; 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"); require(_mintedCount[msg.sender] < MAX_PER_ADDRESS, "Mint limit exceeded for this address"); _tokenIds++; _mintedCount[msg.sender]++; _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 mintedCount(address user) external view returns (uint256) { return _mintedCount[user]; } function _baseURI() internal view override returns (string memory) { return _baseURIValue; } }
// 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/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 (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_PER_ADDRESS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"internalType":"address","name":"user","type":"address"}],"name":"mintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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
9c4d535b000000000000000000000000000000000000000000000000000000000000000001000363f82fd03868198f6d038af2031e64033eda3cf1f23d343c140fe80dda00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x0004000000000002000a0000000000020000006004100270000002ee0340019700030000003103550002000000010355000002ee0040019d00000001002001900000003b0000c13d0000008004000039000000400040043f000000040030008c000006c70000413d000000000201043b000000e002200270000002f90020009c000000570000213d000003080020009c000000b20000a13d000003090020009c000001270000213d0000030d0020009c000001e20000613d0000030e0020009c000001f30000613d0000030f0020009c000006c70000c13d0000000001000416000000000001004b000006c70000c13d0000000601000039000000000101041a000002f5011001970000000002000411000000000021004b000003160000c13d00000335010000410000000000100443000000000100041000000004001004430000000001000414000002ee0010009c000002ee01008041000000c00110021000000336011001c70000800a020000390bb50bb00000040f0000000100200190000005f30000613d000000000301043b000000000003004b000003af0000c13d000000400100043d00000044021000390000033903000041000000000032043500000024021000390000001403000039000004560000013d0000000001000416000000000001004b000006c70000c13d0000000e01000039000000800010043f000002ef01000041000000a00010043f0000010001000039000000400010043f0000000d01000039000000c00010043f000002f001000041000000e00010043f000000000100041a000000010210019000000001031002700000007f0330618f0000001f0030008c00000000010000390000000101002039000000000012004b0000008d0000613d0000032001000041000000000010043f0000002201000039000000040010043f000003210100004100000bb700010430000002fa0020009c000000c10000a13d000002fb0020009c000001930000213d000002ff0020009c000002050000613d000003000020009c000002240000613d000003010020009c000006c70000c13d000000240030008c000006c70000413d0000000002000416000000000002004b000006c70000c13d0000000401100370000000000101043b000800000001001d000000000010043f0000000201000039000000200010043f0000000001000414000002ee0010009c000002ee01008041000000c0011002100000031c011001c700008010020000390bb50bb00000040f0000000100200190000006c70000613d000000400300043d000000000101043b000000000101041a000002f500100198000003880000c13d00000064013000390000032602000041000000000021043500000044013000390000032702000041000000000021043500000024013000390000002f02000039000000000021043500000317010000410000000000130435000000040130003900000020020000390000000000210435000002ee0030009c000002ee03008041000000400130021000000328011001c700000bb700010430000000200030008c000000a50000413d000800000003001d000000000000043f0000000001000414000002ee0010009c000002ee01008041000000c001100210000002f1011001c700008010020000390bb50bb00000040f0000000100200190000006c70000613d000000000101043b00000008020000290000001f0220003900000005022002700000000002210019000000000021004b000000a50000813d000000000001041b0000000101100039000000000021004b000000a10000413d000000a00100043d000002f2011001970000001c011001bf000000000010041b000000c00400043d000002f30040009c000000e80000413d0000032001000041000000000010043f0000004101000039000000040010043f000003210100004100000bb700010430000003100020009c000001a50000a13d000003110020009c000002480000613d000003120020009c000002510000613d000003130020009c000006c70000c13d0000000001000416000000000001004b000006c70000c13d0000000a01000039000000800010043f000003160100004100000bb60001042e000003020020009c000001c70000a13d000003030020009c000002780000613d000003040020009c0000028d0000613d000003050020009c000006c70000c13d0000000001000416000000000001004b000006c70000c13d0000000103000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f0000000100500190000000510000c13d000000800010043f000000000004004b0000031f0000613d000000000030043f000000000001004b0000000002000019000003240000613d0000032c030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b000000e00000413d000003240000013d0000000106000039000000000106041a000000010010019000000001031002700000007f0330618f0000001f0030008c00000000020000390000000102002039000000000121013f0000000100100190000000510000c13d000000200030008c000001130000413d000700000003001d000800000004001d000000000060043f0000000001000414000002ee0010009c000002ee01008041000000c001100210000002f1011001c700008010020000390bb50bb00000040f0000000100200190000006c70000613d00000008040000290000001f024000390000000502200270000000200040008c0000000002004019000000000301043b00000007010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000000106000039000001130000813d000000000002041b0000000102200039000000000012004b0000010f0000413d0000001f0040008c0000030b0000a13d000800000004001d000000000060043f0000000001000414000002ee0010009c000002ee01008041000000c001100210000002f1011001c700008010020000390bb50bb00000040f0000000100200190000006c70000613d00000008070000290000035302700198000000000101043b000003540000c13d000000e0030000390000000106000039000003630000013d0000030a0020009c000002960000613d0000030b0020009c0000029d0000613d0000030c0020009c000006c70000c13d000000240030008c000006c70000413d0000000002000416000000000002004b000006c70000c13d0000000402100370000000000502043b0000031e0050009c000006c70000213d0000002302500039000000000032004b000006c70000813d0000000406500039000000000261034f000000000402043b0000031e0040009c000000ac0000213d0000001f0740003900000353077001970000003f0770003900000353077001970000032f0070009c000000ac0000213d00000024055000390000008007700039000000400070043f000000800040043f0000000005540019000000000035004b000006c70000213d0000002003600039000000000331034f00000353054001980000001f0640018f000000a001500039000001570000613d000000a007000039000000000803034f000000008908043c0000000007970436000000000017004b000001530000c13d000000000006004b000001640000613d000000000353034f0000000305600210000000000601043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f0000000000310435000000a00140003900000000000104350000000601000039000000000101041a000002f5011001970000000003000411000000000031004b0000050b0000c13d000000800300043d0000031e0030009c000000ac0000213d0000000801000039000000000501041a000000010050019000000001045002700000007f0440618f0000001f0040008c00000000060000390000000106002039000000000565013f0000000100500190000000510000c13d000000200040008c0000018b0000413d000000000010043f0000001f053000390000000505500270000003320550009a000000200030008c0000031d050040410000001f044000390000000504400270000003320440009a000000000045004b0000018b0000813d000000000005041b0000000105500039000000000045004b000001870000413d0000001f0030008c000005f40000a13d000000000010043f0000035305300198000006060000c13d000000a0060000390000031d04000041000006140000013d000002fc0020009c000002b00000613d000002fd0020009c000002cb0000613d000002fe0020009c000006c70000c13d000000240030008c000006c70000413d0000000002000416000000000002004b000006c70000c13d0000000401100370000000000101043b000002f50010009c000006c70000213d000000000010043f0000000901000039000003a70000013d000003140020009c000002e80000613d000003150020009c000006c70000c13d0000000001000416000000000001004b000006c70000c13d000000000200041a000000010320019000000001012002700000007f0110618f0000001f0010008c00000000040000390000000104002039000000000442013f0000000100400190000000510000c13d000000800010043f000000000003004b0000031f0000613d000000000000043f000000000001004b0000000002000019000003240000613d0000034f030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b000001bf0000413d000003240000013d000003060020009c000002fc0000613d000003070020009c000006c70000c13d000000240030008c000006c70000413d0000000002000416000000000002004b000006c70000c13d0000000401100370000000000101043b000002f50010009c000006c70000213d000000000001004b000003a50000c13d0000031701000041000000800010043f0000002001000039000000840010043f0000002a01000039000000a40010043f0000032d01000041000000c40010043f0000032e01000041000000e40010043f0000031a0100004100000bb7000104300000000001000416000000000001004b000006c70000c13d0000000701000039000000000101041a00000dac0010008c000003350000413d0000031701000041000000800010043f0000002001000039000000840010043f0000001601000039000000a40010043f0000034701000041000000c40010043f0000032b0100004100000bb7000104300000000001000416000000000001004b000006c70000c13d00000000010300190bb507250000040f000800000001001d000700000002001d0000000002030019000600000003001d00000000010004110bb50a330000040f0bb507d50000040f0000000801000029000000070200002900000006030000290bb50ac80000040f000000000100001900000bb60001042e000000440030008c000006c70000413d0000000002000416000000000002004b000006c70000c13d0000000402100370000000000202043b000800000002001d000002f50020009c000006c70000213d0000002401100370000000000201043b000000000002004b0000000001000039000000010100c039000700000002001d000000000012004b000006c70000c13d0000000002000411000000080020006c000003f30000c13d0000031701000041000000800010043f0000002001000039000000840010043f0000001901000039000000a40010043f0000032a01000041000000c40010043f0000032b0100004100000bb700010430000000840030008c000006c70000413d0000000002000416000000000002004b000006c70000c13d0000000402100370000000000202043b000800000002001d000002f50020009c000006c70000213d0000002402100370000000000202043b000700000002001d000002f50020009c000006c70000213d0000006402100370000000000402043b0000031e0040009c000006c70000213d0000002302400039000000000032004b000006c70000813d0000000402400039000000000121034f000000000201043b00000024014000390bb507540000040f00000044020000390000000202200367000000000302043b0000000004010019000000080100002900000007020000290bb508130000040f000000000100001900000bb60001042e000000240030008c000006c70000413d0000000002000416000000000002004b000006c70000c13d0000000401100370000000000101043b0bb5078c0000040f000003040000013d000000440030008c000006c70000413d0000000002000416000000000002004b000006c70000c13d0000000402100370000000000202043b000800000002001d000002f50020009c000006c70000213d0000002401100370000000000101043b000700000001001d000000000010043f0000000201000039000000200010043f0000000001000414000002ee0010009c000002ee01008041000000c0011002100000031c011001c700008010020000390bb50bb00000040f0000000100200190000006c70000613d000000000101043b000000000101041a000002f501100198000003b60000c13d000000400100043d00000064021000390000034d03000041000000000032043500000044021000390000034e03000041000000000032043500000024021000390000002903000039000003c10000013d0000000001000416000000000001004b000006c70000c13d0000000601000039000000000201041a000002f5032001970000000005000411000000000053004b000003160000c13d000002f402200197000000000021041b0000000001000414000002ee0010009c000002ee01008041000000c001100210000002f6011001c70000800d020000390000000303000039000002f7040000410000000006000019000004cb0000013d0000000001000416000000000001004b000006c70000c13d0000000601000039000000000101041a000002f501100197000000800010043f000003160100004100000bb60001042e0000000001000416000000000001004b000006c70000c13d00000dac01000039000000800010043f000003160100004100000bb60001042e0000000001000416000000000001004b000006c70000c13d00000000010300190bb507250000040f000800000001001d000700000002001d000600000003001d000000400100043d000500000001001d0bb507370000040f000000050400002900000000000404350000000801000029000000070200002900000006030000290bb508130000040f000000000100001900000bb60001042e000000440030008c000006c70000413d0000000002000416000000000002004b000006c70000c13d0000000402100370000000000202043b000002f50020009c000006c70000213d0000002401100370000000000101043b000800000001001d000002f50010009c000006c70000213d000000000020043f0000000501000039000000200010043f000000400200003900000000010000190bb50b960000040f00000008020000290bb507c50000040f000000000101041a000000ff001001900000000001000039000000010100c039000003040000013d000000240030008c000006c70000413d0000000002000416000000000002004b000006c70000c13d0000000401100370000000000601043b000002f50060009c000006c70000213d0000000601000039000000000201041a000002f5032001970000000005000411000000000053004b000003160000c13d000000000006004b000003cc0000c13d0000031701000041000000800010043f0000002001000039000000840010043f0000002601000039000000a40010043f0000031801000041000000c40010043f0000031901000041000000e40010043f0000031a0100004100000bb700010430000000240030008c000006c70000413d0000000002000416000000000002004b000006c70000c13d0000000401100370000000000201043b0000034100200198000006c70000c13d00000001010000390000034202200197000003500020009c000003ac0000613d000003510020009c000003ac0000613d000003520020009c000000000100c019000000800010043f000003160100004100000bb60001042e000000240030008c000006c70000413d0000000002000416000000000002004b000006c70000c13d0000000401100370000000000101043b0bb507ec0000040f000000400200043d0000000000120435000002ee0020009c000002ee0200804100000040012002100000031b011001c700000bb60001042e000000000004004b00000000010000190000030f0000613d000000e00100043d0000000302400210000003540220027f0000035402200167000000000121016f0000000102400210000000000121019f0000036e0000013d0000031701000041000000800010043f0000002001000039000000840010043f000000a40010043f0000033001000041000000c40010043f0000032b0100004100000bb7000104300000035502200197000000a00020043f000000000001004b00000020020000390000000002006039000000200220003900000080010000390bb507420000040f000000400100043d000800000001001d00000080020000390bb507100000040f00000008020000290000000001210049000002ee0010009c000002ee010080410000006001100210000002ee0020009c000002ee020080410000004002200210000000000121019f00000bb60001042e000700000001001d0000000001000411000002f501100197000800000001001d000000000010043f0000000901000039000000200010043f0000000001000414000002ee0010009c000002ee01008041000000c0011002100000031c011001c70000801002000039000600000004001d0bb50bb00000040f0000000100200190000006c70000613d000000000101043b000000000101041a0000000a0010008c000003d80000413d000000400100043d00000064021000390000034503000041000000000032043500000044021000390000034603000041000000000032043500000024021000390000002403000039000003c10000013d000000010320008a000000050330027000000000033100190000002004000039000000010330003900000001060000390000000005040019000000c0044000390000000004040433000000000041041b00000020045000390000000101100039000000000031004b0000035a0000c13d000000e003500039000000000072004b0000036c0000813d0000000302700210000000f80220018f000003540220027f00000354022001670000000003030433000000000223016f000000000021041b000000010170021000000001011001bf000000000016041b0000000601000039000000000201041a000002f4032001970000000006000411000000000363019f000000000031041b0000000001000414000002f505200197000002ee0010009c000002ee01008041000000c001100210000002f6011001c70000800d020000390000000303000039000002f7040000410bb50bab0000040f0000000100200190000006c70000613d0000000701000039000000000001041b000000200100003900000100001004430000012000000443000002f80100004100000bb60001042e0000000805000039000000000405041a000000010640019000000001024002700000007f0220618f0000001f0020008c00000000010000390000000101002039000000000114013f0000000100100190000000510000c13d0000000001230436000000000006004b000004230000613d000000000050043f000000000002004b00000000040000190000000808000029000004290000613d0000031d0500004100000000040000190000000006410019000000000705041a000000000076043500000001055000390000002004400039000000000024004b0000039d0000413d000004290000013d000000000010043f0000000301000039000000200010043f000000400200003900000000010000190bb50b960000040f000000000101041a000000800010043f000003160100004100000bb60001042e00000000010004140000000004000411000000040040008c0000043e0000c13d000000010200003900000001010000310000044c0000013d000000080010006b000004610000c13d000000400100043d00000064021000390000034b03000041000000000032043500000044021000390000034c03000041000000000032043500000024021000390000002103000039000000000032043500000317020000410000000000210435000000040210003900000020030000390000000000320435000002ee0010009c000002ee01008041000000400110021000000328011001c700000bb700010430000002f402200197000000000262019f000000000021041b0000000001000414000002ee0010009c000002ee01008041000000c001100210000002f6011001c70000800d020000390000000303000039000002f704000041000004cb0000013d000000070100002900000001011000390000000702000039000000000012041b0000000801000029000000000010043f0000000901000039000000200010043f0000000001000414000002ee0010009c000002ee01008041000000c0011002100000031c011001c700008010020000390bb50bb00000040f0000000100200190000006c70000613d000000000101043b000000000201041a000000010220003a000004d00000c13d0000032001000041000000000010043f0000001101000039000000040010043f000003210100004100000bb700010430000000000020043f0000000501000039000000200010043f0000000001000414000002ee0010009c000002ee01008041000000c0011002100000031c011001c700008010020000390bb50bb00000040f0000000100200190000006c70000613d000000000101043b0000000802000029000000000020043f000000200010043f0000000001000414000002ee0010009c000002ee01008041000000c0011002100000031c011001c700008010020000390bb50bb00000040f0000000100200190000006c70000613d000000000101043b000000000201041a00000355022001970000000703000029000000000232019f000000000021041b000000400100043d0000000000310435000002ee0010009c000002ee0100804100000040011002100000000002000414000002ee0020009c000002ee02008041000000c002200210000000000112019f000002f1011001c70000800d020000390000000303000039000003290400004100000000050004110000000806000029000004cb0000013d00000355044001970000000000410435000000000002004b0000002004000039000000000400603900000008080000290000003f0240003900000353052001970000000002350019000000000052004b000000000500003900000001050040390000031e0020009c000000ac0000213d0000000100500190000000ac0000c13d000000400020043f0000000005030433000000000005004b000005160000c13d000003250020009c000000ac0000213d0000002001200039000000400010043f0000000000020435000000400100043d0000054e0000013d000002ee0010009c000002ee01008041000000c001100210000002f6011001c700008009020000390000000005000019000800000003001d0bb50bab0000040f0000000803000029000000010220018f00030000000103550000006001100270000102ee0010019d000002ee01100197000000000001004b000004920000c13d000000400100043d000000000002004b000004bb0000c13d00000044021000390000033803000041000000000032043500000024021000390000000f03000039000000000032043500000317020000410000000000210435000000040210003900000020030000390000000000320435000002ee0010009c000002ee01008041000000400110021000000331011001c700000bb7000104300000000002000411000000000012004b000004e30000c13d0000000701000029000000000010043f0000000401000039000000200010043f0000000001000414000002ee0010009c000002ee01008041000000c0011002100000031c011001c700008010020000390bb50bb00000040f0000000100200190000006c70000613d000000000101043b000000000201041a000002f40220019700000008022001af000000000021041b0000000701000029000000000010043f0000000201000039000000200010043f0000000001000414000002ee0010009c000002ee01008041000000c0011002100000031c011001c700008010020000390bb50bb00000040f0000000100200190000006c70000613d000000000101043b000000000101041a000002f5051001980000026e0000613d0000000001000414000002ee0010009c000002ee01008041000000c001100210000002f6011001c70000800d0200003900000004030000390000034a0400004100000008060000290000000707000029000004cb0000013d0000031e0010009c000000ac0000213d0000001f0410003900000353044001970000003f044000390000035305400197000000400400043d0000000005540019000000000045004b000000000600003900000001060040390000031e0050009c000000ac0000213d0000000100600190000000ac0000c13d000000400050043f000000000614043600000353091001980000001f0410018f00000000019600190000000305000367000004ad0000613d000000000705034f000000007807043c0000000006860436000000000016004b000004a90000c13d000000000004004b0000044e0000613d000000000695034f0000000304400210000000000501043300000000054501cf000000000545022f000000000606043b0000010004400089000000000646022f00000000044601cf000000000454019f00000000004104350000044e0000013d0000000602000039000000000202041a0000000000310435000002ee0010009c000002ee0100804100000040011002100000000003000414000002ee0030009c000002ee03008041000000c003300210000000000113019f000002f1011001c7000002f5052001970000800d02000039000000020300003900000337040000410bb50bab0000040f0000000100200190000006c70000613d000000000100001900000bb60001042e000000000021041b0000000001000415000000400200043d000003250020009c000000ac0000213d000700000001001d0000000701000039000000000301041a0000002001200039000500000001001d000000400010043f000400000002001d0000000000020435000000080000006b000005860000c13d000000400100043d000000440210003900000344030000410000050e0000013d000000000010043f0000000501000039000000200010043f0000000001000414000002ee0010009c000002ee01008041000000c0011002100000031c011001c700008010020000390bb50bb00000040f0000000100200190000006c70000613d000000000101043b0000000002000411000002f502200197000000000020043f000000200010043f0000000001000414000002ee0010009c000002ee01008041000000c0011002100000031c011001c700008010020000390bb50bb00000040f0000000100200190000006c70000613d000000000101043b000000000101041a000000ff00100190000004640000c13d000000400100043d00000064021000390000034803000041000000000032043500000044021000390000034903000041000000000032043500000024021000390000003803000039000003c10000013d000000400100043d0000004402100039000003300300004100000000003204350000031702000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000045b0000013d000000000008004b000005500000c13d000003240020009c000000ac0000213d0000004005200039000000400050043f00000020052000390000032306000041000000000065043500000001050000390000000000520435000000400500043d00000020065000390000000003030433000000000003004b0000052e0000613d000000000700001900000000086700190000000009710019000000000909043300000000009804350000002007700039000000000037004b000005270000413d000000000163001900000000000104350000000032020434000000000002004b0000053b0000613d000000000600001900000000071600190000000008630019000000000808043300000000008704350000002006600039000000000026004b000005340000413d000000000112001900000000000104350000000001510049000000200210008a00000000002504350000001f0110003900000353011001970000000003510019000000000013004b000000000100003900000001010040390000031e0030009c000000ac0000213d0000000100100190000000ac0000c13d00000000020300190000000001030019000000400020043f0000000002050019000800000001001d0000032a0000013d000000000708001900000000050000190000000006050019000000010550003a000003ed0000613d000000090070008c0000000a0770011a000005520000213d0000031f0060009c000000ac0000213d00000353076001970000005f0670003900000353086001970000000006280019000000000086004b000000000800003900000001080040390000031e0060009c000000ac0000213d0000000100800190000000ac0000c13d000000400060043f0000000006520436000000200770003900000353087001980000001f0770018f000005730000613d000000000886001900000000090000310000000209900367000000000a060019000000009b09043c000000000aba043600000000008a004b0000056f0000c13d000000000007004b000000080a000029000000000005004b000003ed0000613d000000010550008a0000000007020433000000000057004b000006460000a13d00000000076500190000000900a0008c0000000a8aa0011a000000f80880021000000000090704330000032209900197000000000898019f00000323088001c70000000000870435000005750000213d000005210000013d000300000003001d000000000030043f0000000201000039000000200010043f0000000001000414000002ee0010009c000002ee01008041000000c0011002100000031c011001c700008010020000390bb50bb00000040f0000000100200190000006c70000613d000000000101043b000000000101041a000002f500100198000005ff0000c13d0000000801000029000000000010043f0000000301000039000000200010043f0000000001000414000002ee0010009c000002ee01008041000000c0011002100000031c011001c700008010020000390bb50bb00000040f0000000100200190000006c70000613d000000000101043b000000000201041a000000010220003a000003ed0000613d000000000021041b0000000301000029000000000010043f0000000201000039000000200010043f0000000001000414000002ee0010009c000002ee01008041000000c0011002100000031c011001c700008010020000390bb50bb00000040f0000000100200190000006c70000613d000000000101043b000000000201041a000002f4022001970000000806000029000000000262019f000000000021041b0000000001000414000002ee0010009c000002ee01008041000000c001100210000002f6011001c70000800d0200003900000004030000390000033b04000041000000000500001900000003070000290bb50bab0000040f0000000100200190000006c70000613d0000000001000415000200000001001d0000033c010000410000000000100443000000000100041100000004001004430000000001000414000002ee0010009c000002ee01008041000000c00110021000000336011001c700008002020000390bb50bb00000040f0000000100200190000005f30000613d000000000101043b000000000001004b0000064c0000c13d0000000001000415000000020110006900000000010000020000000001000415000000070110006900000000010000020000000701000039000000000101041a000000400200043d0000000000120435000002ee0020009c000002ee0200804100000040012002100000000002000414000002ee0020009c000002ee02008041000000c002200210000000000112019f000002f1011001c70000800d02000039000000020300003900000343040000410000000005000411000004cb0000013d000000000001042f000000000003004b0000000004000019000005f80000613d000000a00400043d0000000305300210000003540550027f0000035405500167000000000454016f0000000103300210000000000334019f0000061f0000013d000000400100043d00000044021000390000033a03000041000000000032043500000024021000390000001c03000039000004560000013d0000031d040000410000002007000039000000010650008a0000000506600270000003330660009a000000000807001900000080077000390000000007070433000000000074041b00000020078000390000000104400039000000000064004b0000060b0000c13d000000a006800039000000000035004b0000061d0000813d0000000305300210000000f80550018f000003540550027f00000354055001670000000006060433000000000556016f000000000054041b000000010330021000000001033001bf000000000031041b0000002003000039000000400100043d0000000004310436000000800300043d00000000003404350000004004100039000000000003004b000006300000613d00000000050000190000000006450019000000a007500039000000000707043300000000007604350000002005500039000000000035004b000006290000413d0000001f053000390000035302500197000000000343001900000000000304350000004002200039000002ee0020009c000002ee020080410000006002200210000002ee0010009c000002ee010080410000004001100210000000000112019f0000000002000414000002ee0020009c000002ee02008041000000c002200210000000000112019f000002f6011001c70000800d0200003900000001030000390000033404000041000004cb0000013d0000032001000041000000000010043f0000003201000039000000040010043f000003210100004100000bb700010430000000400300043d0000006401300039000000800200003900000000002104350000004401300039000000030200002900000000002104350000033d010000410000000000130435000000040130003900000008020000290000000000210435000000240130003900000000000104350000000401000029000000000101043300000084023000390000000000120435000100000003001d000000a402300039000000000001004b00000005060000290000066b0000613d000000000300001900000000042300190000000005630019000000000505043300000000005404350000002003300039000000000013004b000006640000413d0000000002210019000000000002043500000000020004140000000803000029000000040030008c000006790000c13d00000000050004150000000a0550008a00000005055002100000000103000031000000200030008c00000020040000390000000004034019000006ad0000013d0000001f011000390000035301100197000000a401100039000002ee0010009c000002ee0100804100000060011002100000000103000029000002ee0030009c000002ee030080410000004003300210000000000131019f000002ee0020009c000002ee02008041000000c002200210000000000112019f00000008020000290bb50bab0000040f0000006003100270000002ee03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000105700029000006990000613d000000000801034f0000000109000029000000008a08043c0000000009a90436000000000059004b000006950000c13d000000000006004b000006a60000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000005000415000000090550008a00000005055002100000000100200190000006c90000613d0000001f01400039000000600210018f0000000101200029000000000021004b000000000200003900000001020040390000031e0010009c000000ac0000213d0000000100200190000000ac0000c13d000000400010043f000000200030008c000006c70000413d000000010100002900000000010104330000034100100198000006c70000c13d0000000502500270000000000201001f00000000020004150000000202200069000000000200000200000342011001970000033d0010009c000005de0000613d000006f70000013d000000000100001900000bb700010430000000000003004b000006cd0000c13d0000006002000039000006f40000013d0000001f023000390000033e022001970000003f022000390000033f04200197000000400200043d0000000004420019000000000024004b000000000500003900000001050040390000031e0040009c000000ac0000213d0000000100500190000000ac0000c13d000000400040043f0000001f0430018f00000000063204360000034005300198000600000006001d0000000003560019000006e70000613d000000000601034f0000000607000029000000006806043c0000000007870436000000000037004b000006e30000c13d000000000004004b000006f40000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b000007070000c13d000000400200043d000800000002001d0000031701000041000000000012043500000004012000390bb50b880000040f00000008020000290000000001210049000002ee0010009c000002ee010080410000006001100210000002ee0020009c000002ee020080410000004002200210000000000121019f00000bb7000104300000000602000029000002ee0020009c000002ee020080410000004002200210000002ee0010009c000002ee010080410000006001100210000000000121019f00000bb70001043000000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b0000071f0000613d000000000400001900000000051400190000000006430019000000000606043300000000006504350000002004400039000000000024004b000007180000413d000000000312001900000000000304350000001f0220003900000353022001970000000001120019000000000001042d000003560010009c000007350000213d000000630010008c000007350000a13d00000002030003670000000401300370000000000101043b000002f50010009c000007350000213d0000002402300370000000000202043b000002f50020009c000007350000213d0000004403300370000000000303043b000000000001042d000000000100001900000bb700010430000003570010009c0000073c0000813d0000002001100039000000400010043f000000000001042d0000032001000041000000000010043f0000004101000039000000040010043f000003210100004100000bb7000104300000001f0220003900000353022001970000000001120019000000000021004b000000000200003900000001020040390000031e0010009c0000074e0000213d00000001002001900000074e0000c13d000000400010043f000000000001042d0000032001000041000000000010043f0000004101000039000000040010043f000003210100004100000bb700010430000002f30020009c000007840000813d00000000040100190000001f0120003900000353011001970000003f011000390000035305100197000000400100043d0000000005510019000000000015004b000000000700003900000001070040390000031e0050009c000007840000213d0000000100700190000007840000c13d000000400050043f00000000052104360000000007420019000000000037004b0000078a0000213d00000353062001980000001f0720018f00000002044003670000000003650019000007740000613d000000000804034f0000000009050019000000008a08043c0000000009a90436000000000039004b000007700000c13d000000000007004b000007810000613d000000000464034f0000000306700210000000000703043300000000076701cf000000000767022f000000000404043b0000010006600089000000000464022f00000000046401cf000000000474019f000000000043043500000000022500190000000000020435000000000001042d0000032001000041000000000010043f0000004101000039000000040010043f000003210100004100000bb700010430000000000100001900000bb7000104300001000000000002000100000001001d000000000010043f0000000201000039000000200010043f0000000001000414000002ee0010009c000002ee01008041000000c0011002100000031c011001c700008010020000390bb50bb00000040f0000000100200190000007af0000613d000000000101043b000000000101041a000002f500100198000007b10000613d0000000101000029000000000010043f0000000401000039000000200010043f0000000001000414000002ee0010009c000002ee01008041000000c0011002100000031c011001c700008010020000390bb50bb00000040f0000000100200190000007af0000613d000000000101043b000000000101041a000002f501100197000000000001042d000000000100001900000bb700010430000000400100043d00000064021000390000035803000041000000000032043500000044021000390000035903000041000000000032043500000024021000390000002c03000039000000000032043500000317020000410000000000210435000000040210003900000020030000390000000000320435000002ee0010009c000002ee01008041000000400110021000000328011001c700000bb700010430000002f502200197000000000020043f000000200010043f0000000001000414000002ee0010009c000002ee01008041000000c0011002100000031c011001c700008010020000390bb50bb00000040f0000000100200190000007d30000613d000000000101043b000000000001042d000000000100001900000bb700010430000000000001004b000007d80000613d000000000001042d000000400100043d00000064021000390000035a03000041000000000032043500000044021000390000035b03000041000000000032043500000024021000390000003103000039000000000032043500000317020000410000000000210435000000040210003900000020030000390000000000320435000002ee0010009c000002ee01008041000000400110021000000328011001c700000bb700010430000000000010043f0000000201000039000000200010043f0000000001000414000002ee0010009c000002ee01008041000000c0011002100000031c011001c700008010020000390bb50bb00000040f0000000100200190000007fd0000613d000000000101043b000000000101041a000002f501100198000007ff0000613d000000000001042d000000000100001900000bb700010430000000400100043d00000064021000390000034d03000041000000000032043500000044021000390000034e03000041000000000032043500000024021000390000002903000039000000000032043500000317020000410000000000210435000000040210003900000020030000390000000000320435000002ee0010009c000002ee01008041000000400110021000000328011001c700000bb7000104300009000000000002000100000004001d000400000002001d000500000001001d000700000003001d000000000030043f0000000201000039000000200010043f0000000001000414000002ee0010009c000002ee01008041000000c0011002100000031c011001c700008010020000390bb50bb00000040f00000001002001900000099a0000613d000000000101043b000000000101041a000002f500100198000009ac0000613d0000000701000029000000000010043f0000000201000039000000200010043f0000000001000414000002ee0010009c000002ee01008041000000c0011002100000031c011001c700008010020000390bb50bb00000040f00000001002001900000099a0000613d000000000101043b000000000101041a000002f5011001980000099c0000613d0000000002000411000302f50020019b000000030010006b0000087d0000613d000000000010043f0000000501000039000000200010043f0000000001000414000002ee0010009c000002ee01008041000000c0011002100000031c011001c700008010020000390bb50bb00000040f00000001002001900000099a0000613d000000000101043b0000000302000029000000000020043f000000200010043f0000000001000414000002ee0010009c000002ee01008041000000c0011002100000031c011001c700008010020000390bb50bb00000040f00000001002001900000099a0000613d000000000101043b000000000101041a000000ff001001900000087d0000c13d0000000701000029000000000010043f0000000201000039000000200010043f0000000001000414000002ee0010009c000002ee01008041000000c0011002100000031c011001c700008010020000390bb50bb00000040f00000001002001900000099a0000613d000000000101043b000000000101041a000002f500100198000009d90000613d0000000701000029000000000010043f0000000401000039000000200010043f0000000001000414000002ee0010009c000002ee01008041000000c0011002100000031c011001c700008010020000390bb50bb00000040f00000001002001900000099a0000613d000000000101043b000000000101041a000002f501100197000000030010006c000009e00000c13d0000000701000029000000000010043f0000000201000039000000200010043f0000000001000414000002ee0010009c000002ee01008041000000c0011002100000031c011001c700008010020000390bb50bb00000040f00000001002001900000099a0000613d000000000101043b000000000101041a000602f50010019c0000099c0000613d0000000501000029000002f501100197000000060010006b000009b60000c13d0000000401000029000502f50010019c000009c00000613d0000000701000029000000000010043f0000000401000039000000200010043f0000000001000414000002ee0010009c000002ee01008041000000c0011002100000031c011001c700008010020000390bb50bb00000040f00000001002001900000099a0000613d000000000101043b000000000201041a000002f402200197000000000021041b0000000701000029000000000010043f0000000201000039000000200010043f0000000001000414000002ee0010009c000002ee01008041000000c0011002100000031c011001c700008010020000390bb50bb00000040f00000001002001900000099a0000613d000000000101043b000000000101041a000002f5051001980000099c0000613d0000000001000414000002ee0010009c000002ee01008041000000c001100210000002f6011001c70000800d0200003900000004030000390000034a04000041000000000600001900000007070000290bb50bab0000040f00000001002001900000099a0000613d0000000601000029000000000010043f0000000301000039000000200010043f0000000001000414000002ee0010009c000002ee01008041000000c0011002100000031c011001c700008010020000390bb50bb00000040f00000001002001900000099a0000613d000000000101043b000000000201041a000000000002004b000009a60000613d000000010220008a000000000021041b0000000501000029000000000010043f0000000301000039000000200010043f0000000001000414000002ee0010009c000002ee01008041000000c0011002100000031c011001c700008010020000390bb50bb00000040f00000001002001900000099a0000613d000000000101043b000000000201041a000000010220003a000009a60000613d000000000021041b0000000701000029000000000010043f0000000201000039000000200010043f0000000001000414000002ee0010009c000002ee01008041000000c0011002100000031c011001c700008010020000390bb50bb00000040f00000001002001900000099a0000613d000000000101043b000000000201041a000002f4022001970000000506000029000000000262019f000000000021041b0000000001000414000002ee0010009c000002ee01008041000000c001100210000002f6011001c70000800d0200003900000004030000390000033b04000041000000060500002900000007070000290bb50bab0000040f00000001002001900000099a0000613d0000000001000415000200000001001d0000033c010000410000000000100443000000040100002900000004001004430000000001000414000002ee0010009c000002ee01008041000000c00110021000000336011001c700008002020000390bb50bb00000040f0000000100200190000009d40000613d000000000101043b000000000001004b000009470000613d000000400b00043d0000006401b00039000000800700003900000000007104350000004401b00039000000070200002900000000002104350000002401b00039000000060200002900000000002104350000033d0100004100000000001b04350000000401b00039000000030200002900000000002104350000008403b00039000000010100002900000000210104340000000000130435000000a403b00039000000000001004b000009390000613d000000000400001900000000053400190000000006420019000000000606043300000000006504350000002004400039000000000014004b000009320000413d0000000002310019000000000002043500000000040004140000000502000029000000040020008c0000094b0000c13d0000000005000415000000090550008a00000005055002100000000103000031000000200030008c00000020040000390000000004034019000009810000013d000000000100041500000002011000690000000001000002000000000001042d000600000007001d0000001f011000390000035301100197000000a401100039000002ee0010009c000002ee010080410000006001100210000002ee00b0009c000002ee0300004100000000030b40190000004003300210000000000131019f000002ee0040009c000002ee04008041000000c003400210000000000113019f00070000000b001d0bb50bab0000040f000000070b0000290000006003100270000002ee03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000096d0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000009690000c13d000000000006004b0000097a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000005000415000000080550008a00000005055002100000000100200190000009d50000613d0000001f01400039000000600210018f0000000001b20019000000000021004b000000000200003900000001020040390000031e0010009c00000a240000213d000000010020019000000a240000c13d000000400010043f000000200030008c0000099a0000413d00000000010b043300000341001001980000099a0000c13d0000000502500270000000000201001f00000000020004150000000202200069000000000200000200000342011001970000033d0010009c00000a140000c13d000000000001042d000000000100001900000bb700010430000000400100043d00000064021000390000034d03000041000000000032043500000044021000390000034e03000041000000000032043500000024021000390000002903000039000009c90000013d0000032001000041000000000010043f0000001101000039000000040010043f000003210100004100000bb700010430000000400100043d00000064021000390000035803000041000000000032043500000044021000390000035f03000041000000000032043500000024021000390000002c03000039000009c90000013d000000400100043d00000064021000390000035c03000041000000000032043500000044021000390000035d03000041000000000032043500000024021000390000002503000039000009c90000013d000000400100043d00000064021000390000034503000041000000000032043500000044021000390000035e03000041000000000032043500000024021000390000002403000039000000000032043500000317020000410000000000210435000000040210003900000020030000390000000000320435000002ee0010009c000002ee01008041000000400110021000000328011001c700000bb700010430000000000001042f000000000003004b000009ea0000c13d000000600200003900000a110000013d000000400100043d00000064021000390000035803000041000000000032043500000044021000390000035903000041000009b20000013d000000400100043d00000064021000390000035a03000041000000000032043500000044021000390000035b03000041000000000032043500000024021000390000003103000039000009c90000013d0000001f023000390000033e022001970000003f022000390000033f04200197000000400200043d0000000004420019000000000024004b000000000500003900000001050040390000031e0040009c00000a240000213d000000010050019000000a240000c13d000000400040043f0000001f0430018f00000000063204360000034005300198000600000006001d000000000356001900000a040000613d000000000601034f0000000607000029000000006806043c0000000007870436000000000037004b00000a000000c13d000000000004004b00000a110000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b00000a2a0000c13d000000400200043d000700000002001d0000031701000041000000000012043500000004012000390bb50b880000040f00000007020000290000000001210049000002ee0010009c000002ee010080410000006001100210000002ee0020009c000002ee020080410000004002200210000000000121019f00000bb7000104300000032001000041000000000010043f0000004101000039000000040010043f000003210100004100000bb7000104300000000602000029000002ee0020009c000002ee020080410000004002200210000002ee0010009c000002ee010080410000006001100210000000000121019f00000bb7000104300002000000000002000100000001001d000200000002001d000000000020043f0000000201000039000000200010043f0000000001000414000002ee0010009c000002ee01008041000000c0011002100000031c011001c700008010020000390bb50bb00000040f000000010020019000000aa10000613d000000000101043b000000000101041a000002f50010019800000aa30000613d0000000201000029000000000010043f0000000201000039000000200010043f0000000001000414000002ee0010009c000002ee01008041000000c0011002100000031c011001c700008010020000390bb50bb00000040f000000010020019000000aa10000613d000000000101043b000000000101041a000002f50110019800000aad0000613d0000000102000029000002f502200197000000000012004b00000a5d0000c13d0000000101000039000000000001042d000100000002001d000000000010043f0000000501000039000000200010043f0000000001000414000002ee0010009c000002ee01008041000000c0011002100000031c011001c700008010020000390bb50bb00000040f000000010020019000000aa10000613d000000000101043b0000000102000029000000000020043f000000200010043f0000000001000414000002ee0010009c000002ee01008041000000c0011002100000031c011001c700008010020000390bb50bb00000040f000000010020019000000aa10000613d000000000101043b000000000101041a000000ff0110019000000a7c0000613d000000000001042d0000000201000029000000000010043f0000000201000039000000200010043f0000000001000414000002ee0010009c000002ee01008041000000c0011002100000031c011001c700008010020000390bb50bb00000040f000000010020019000000aa10000613d000000000101043b000000000101041a000002f50010019800000ac10000613d0000000201000029000000000010043f0000000401000039000000200010043f0000000001000414000002ee0010009c000002ee01008041000000c0011002100000031c011001c700008010020000390bb50bb00000040f000000010020019000000aa10000613d000000000101043b000000000101041a000002f501100197000000010010006c00000000010000390000000101006039000000000001042d000000000100001900000bb700010430000000400100043d00000064021000390000035803000041000000000032043500000044021000390000035f03000041000000000032043500000024021000390000002c0300003900000ab60000013d000000400100043d00000064021000390000034d03000041000000000032043500000044021000390000034e03000041000000000032043500000024021000390000002903000039000000000032043500000317020000410000000000210435000000040210003900000020030000390000000000320435000002ee0010009c000002ee01008041000000400110021000000328011001c700000bb700010430000000400100043d0000006402100039000003580300004100000000003204350000004402100039000003590300004100000aa90000013d0004000000000002000100000002001d000200000001001d000400000003001d000000000030043f0000000201000039000000200010043f0000000001000414000002ee0010009c000002ee01008041000000c0011002100000031c011001c700008010020000390bb50bb00000040f000000010020019000000b580000613d000000000101043b000000000101041a000302f50010019c00000b5a0000613d0000000201000029000002f501100197000000030010006b00000b6a0000c13d0000000101000029000202f50010019c00000b740000613d0000000401000029000000000010043f0000000401000039000000200010043f0000000001000414000002ee0010009c000002ee01008041000000c0011002100000031c011001c700008010020000390bb50bb00000040f000000010020019000000b580000613d000000000101043b000000000201041a000002f402200197000000000021041b0000000401000029000000000010043f0000000201000039000000200010043f0000000001000414000002ee0010009c000002ee01008041000000c0011002100000031c011001c700008010020000390bb50bb00000040f000000010020019000000b580000613d000000000101043b000000000101041a000002f50510019800000b5a0000613d0000000001000414000002ee0010009c000002ee01008041000000c001100210000002f6011001c70000800d0200003900000004030000390000034a04000041000000000600001900000004070000290bb50bab0000040f000000010020019000000b580000613d0000000301000029000000000010043f0000000301000039000000200010043f0000000001000414000002ee0010009c000002ee01008041000000c0011002100000031c011001c700008010020000390bb50bb00000040f000000010020019000000b580000613d000000000101043b000000000201041a000000000002004b00000b640000613d000000010220008a000000000021041b0000000201000029000000000010043f0000000301000039000000200010043f0000000001000414000002ee0010009c000002ee01008041000000c0011002100000031c011001c700008010020000390bb50bb00000040f000000010020019000000b580000613d000000000101043b000000000201041a000000010220003a00000b640000613d000000000021041b0000000401000029000000000010043f0000000201000039000000200010043f0000000001000414000002ee0010009c000002ee01008041000000c0011002100000031c011001c700008010020000390bb50bb00000040f000000010020019000000b580000613d000000000101043b000000000201041a000002f4022001970000000206000029000000000262019f000000000021041b0000000001000414000002ee0010009c000002ee01008041000000c001100210000002f6011001c70000800d0200003900000004030000390000033b04000041000000030500002900000004070000290bb50bab0000040f000000010020019000000b580000613d000000000001042d000000000100001900000bb700010430000000400100043d00000064021000390000034d03000041000000000032043500000044021000390000034e0300004100000000003204350000002402100039000000290300003900000b7d0000013d0000032001000041000000000010043f0000001101000039000000040010043f000003210100004100000bb700010430000000400100043d00000064021000390000035c03000041000000000032043500000044021000390000035d0300004100000000003204350000002402100039000000250300003900000b7d0000013d000000400100043d00000064021000390000034503000041000000000032043500000044021000390000035e03000041000000000032043500000024021000390000002403000039000000000032043500000317020000410000000000210435000000040210003900000020030000390000000000320435000002ee0010009c000002ee01008041000000400110021000000328011001c700000bb700010430000000600210003900000360030000410000000000320435000000400210003900000361030000410000000000320435000000200210003900000032030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d000000000001042f000002ee0010009c000002ee010080410000004001100210000002ee0020009c000002ee020080410000006002200210000000000112019f0000000002000414000002ee0020009c000002ee02008041000000c002200210000000000112019f000002f6011001c700008010020000390bb50bb00000040f000000010020019000000ba90000613d000000000101043b000000000001042d000000000100001900000bb70001043000000bae002104210000000102000039000000000001042d0000000002000019000000000001042d00000bb3002104230000000102000039000000000001042d0000000002000019000000000001042d00000bb50000043200000bb60001042e00000bb70001043000000000000000000000000000000000000000000000000000000000ffffffff537061636520536b656c6c6965730000000000000000000000000000000000007370616365736b656c6c696573000000000000000000000000000000000000000200000000000000000000000000000000000020000000000000000000000000ffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff02000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e00000000200000000000000000000000000000040000001000000000000000000000000000000000000000000000000000000000000000000000000006352211d00000000000000000000000000000000000000000000000000000000a22cb46400000000000000000000000000000000000000000000000000000000e985e9c400000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000fddcb5ea00000000000000000000000000000000000000000000000000000000a22cb46500000000000000000000000000000000000000000000000000000000b88d4fde00000000000000000000000000000000000000000000000000000000c87b56dd00000000000000000000000000000000000000000000000000000000715018a500000000000000000000000000000000000000000000000000000000715018a6000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000006352211e0000000000000000000000000000000000000000000000000000000070a08231000000000000000000000000000000000000000000000000000000001249c58a0000000000000000000000000000000000000000000000000000000032cb6b0b0000000000000000000000000000000000000000000000000000000032cb6b0c0000000000000000000000000000000000000000000000000000000042842e0e0000000000000000000000000000000000000000000000000000000055f804b3000000000000000000000000000000000000000000000000000000001249c58b0000000000000000000000000000000000000000000000000000000023b872dd0000000000000000000000000000000000000000000000000000000024600fc300000000000000000000000000000000000000000000000000000000081812fb00000000000000000000000000000000000000000000000000000000081812fc00000000000000000000000000000000000000000000000000000000095ea7b3000000000000000000000000000000000000000000000000000000000aaef2850000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000006fdde03000000000000000000000000000000000000002000000080000000000000000008c379a0000000000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008400000080000000000000000000000000000000000000000000000000000000200000000000000000000000000200000000000000000000000000000000000040000000000000000000000000f3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee3000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000000000000000000000000000000000000fffffffffffffffe4e487b7100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffbf000000000000000000000000000000000000000000000000ffffffffffffffdf6e6578697374656e7420746f6b656e00000000000000000000000000000000004552433732314d657461646174613a2055524920717565727920666f72206e6f000000000000000000000000000000000000008400000000000000000000000017307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c314552433732313a20617070726f766520746f2063616c6c6572000000000000000000000000000000000000000000000000000064000000800000000000000000b10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf64552433732313a2062616c616e636520717565727920666f7220746865207a65726f206164647265737300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000640000000000000000000000000c085601c9b05546c4de925af5cdebeab0dd5f5d4bea4dc57b37e961749c911d0c085601c9b05546c4de925af5cdebeab0dd5f5d4bea4dc57b37e961749c911cf9c7803e94e0d3c02900d8a90893a6d5e90dd04d32a4cfe825520f82bf9f32f69cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f3902000002000000000000000000000000000000240000000000000000000000007084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d55769746864726177206661696c656400000000000000000000000000000000004e6f2066756e647320746f2077697468647261770000000000000000000000004552433732313a20746f6b656e20616c7265616479206d696e74656400000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef1806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b83150b7a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000003ffffffe000000000000000000000000000000000000000000000000000000000ffffffe000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000030385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe4552433732313a206d696e7420746f20746865207a65726f206164647265737372657373000000000000000000000000000000000000000000000000000000004d696e74206c696d697420657863656564656420666f722074686973206164644d6178204e465420737570706c792072656163686564000000000000000000006e6572206e6f7220617070726f76656420666f7220616c6c00000000000000004552433732313a20617070726f76652063616c6c6572206973206e6f74206f778c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92572000000000000000000000000000000000000000000000000000000000000004552433732313a20617070726f76616c20746f2063757272656e74206f776e65656e7420746f6b656e00000000000000000000000000000000000000000000004552433732313a206f776e657220717565727920666f72206e6f6e6578697374290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e56301ffc9a7000000000000000000000000000000000000000000000000000000005b5e139f0000000000000000000000000000000000000000000000000000000080ac58cd00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffe0697374656e7420746f6b656e00000000000000000000000000000000000000004552433732313a20617070726f76656420717565727920666f72206e6f6e6578776e6572206e6f7220617070726f7665640000000000000000000000000000004552433732313a207472616e736665722063616c6c6572206973206e6f74206f6f776e65720000000000000000000000000000000000000000000000000000004552433732313a207472616e736665722066726f6d20696e636f7272656374204552433732313a207472616e7366657220746f20746865207a65726f206164644552433732313a206f70657261746f7220717565727920666f72206e6f6e657863656976657220696d706c656d656e74657200000000000000000000000000004552433732313a207472616e7366657220746f206e6f6e2045524337323152653c57b0e61bcf3d075c8f79be3bb65fd8cb62961279d910ed5af950ca7b955b90
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.