Source Code
Overview
ETH Balance
0 ETH
More Info
ContractCreator
Multichain Info
N/A
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
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:
Sheepy404Mirror
Compiler Version
v0.8.28+commit.7893614a
ZkSolc Version
v1.5.11
Optimization Enabled:
Yes with Mode 3
Other Settings:
cancun EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import {DN404Mirror} from "dn404/src/DN404Mirror.sol"; /// @dev This contract can be used by itself or as an proxy's implementation. contract Sheepy404Mirror is DN404Mirror { /*«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-*/ /* CONSTRUCTOR */ /*-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»*/ constructor() DN404Mirror(msg.sender) {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; /// @title DN404Mirror /// @notice DN404Mirror provides an interface for interacting with the /// NFT tokens in a DN404 implementation. /// /// @author vectorized.eth (@optimizoor) /// @author Quit (@0xQuit) /// @author Michael Amadi (@AmadiMichaels) /// @author cygaar (@0xCygaar) /// @author Thomas (@0xjustadev) /// @author Harrison (@PopPunkOnChain) /// /// @dev Note: /// - The ERC721 data is stored in the base DN404 contract. contract DN404Mirror { /*«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-*/ /* EVENTS */ /*-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»*/ /// @dev Emitted when token `id` is transferred from `from` to `to`. event Transfer(address indexed from, address indexed to, uint256 indexed id); /// @dev Emitted when `owner` enables `account` to manage the `id` token. event Approval(address indexed owner, address indexed account, uint256 indexed id); /// @dev Emitted when `owner` enables or disables `operator` to manage all of their tokens. event ApprovalForAll(address indexed owner, address indexed operator, bool isApproved); /// @dev The ownership is transferred from `oldOwner` to `newOwner`. /// This is for marketplace signaling purposes. This contract has a `pullOwner()` /// function that will sync the owner from the base contract. event OwnershipTransferred(address indexed oldOwner, address indexed newOwner); /// @dev `keccak256(bytes("Transfer(address,address,uint256)"))`. uint256 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; /// @dev `keccak256(bytes("Approval(address,address,uint256)"))`. uint256 private constant _APPROVAL_EVENT_SIGNATURE = 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925; /// @dev `keccak256(bytes("ApprovalForAll(address,address,bool)"))`. uint256 private constant _APPROVAL_FOR_ALL_EVENT_SIGNATURE = 0x17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31; /*«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-*/ /* CUSTOM ERRORS */ /*-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»*/ /// @dev Thrown when a call for an NFT function did not originate /// from the base DN404 contract. error SenderNotBase(); /// @dev Thrown when a call for an NFT function did not originate from the deployer. error SenderNotDeployer(); /// @dev Thrown when transferring an NFT to a contract address that /// does not implement ERC721Receiver. error TransferToNonERC721ReceiverImplementer(); /// @dev Thrown when a linkMirrorContract call is received and the /// NFT mirror contract has already been linked to a DN404 base contract. error AlreadyLinked(); /// @dev Thrown when retrieving the base DN404 address when a link has not /// been established. error NotLinked(); /// @dev The function selector is not recognized. error FnSelectorNotRecognized(); /*«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-*/ /* STORAGE */ /*-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»*/ /// @dev Struct contain the NFT mirror contract storage. struct DN404NFTStorage { // Address of the ERC20 base contract. address baseERC20; // The deployer, if provided. If non-zero, the initialization of the // ERC20 <-> ERC721 link can only be done by the deployer via the ERC20 base contract. address deployer; // The owner of the ERC20 base contract. For marketplace signaling. address owner; } /// @dev Returns a storage pointer for DN404NFTStorage. function _getDN404NFTStorage() internal pure virtual returns (DN404NFTStorage storage $) { /// @solidity memory-safe-assembly assembly { // `uint72(bytes9(keccak256("DN404_MIRROR_STORAGE")))`. $.slot := 0x3602298b8c10b01230 // Truncate to 9 bytes to reduce bytecode size. } } /*«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-*/ /* CONSTRUCTOR */ /*-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»*/ constructor(address deployer) { // For non-proxies, we will store the deployer so that only the deployer can // link the base contract. _getDN404NFTStorage().deployer = deployer; } /*«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-*/ /* ERC721 OPERATIONS */ /*-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»*/ /// @dev Returns the token collection name from the base DN404 contract. function name() public view virtual returns (string memory) { return _readString(0x06fdde03, 0); // `name()`. } /// @dev Returns the token collection symbol from the base DN404 contract. function symbol() public view virtual returns (string memory) { return _readString(0x95d89b41, 0); // `symbol()`. } /// @dev Returns the Uniform Resource Identifier (URI) for token `id` from /// the base DN404 contract. function tokenURI(uint256 id) public view virtual returns (string memory) { ownerOf(id); // `ownerOf` reverts if the token does not exist. // We'll leave if optional for `_tokenURI` to revert for non-existent token // on the ERC20 side, since this is only recommended by the ERC721 standard. return _readString(0xcb30b460, id); // `tokenURINFT(uint256)`. } /// @dev Returns the total NFT supply from the base DN404 contract. function totalSupply() public view virtual returns (uint256) { return _readWord(0xe2c79281, 0, 0); // `totalNFTSupply()`. } /// @dev Returns the number of NFT tokens owned by `nftOwner` from the base DN404 contract. /// /// Requirements: /// - `nftOwner` must not be the zero address. function balanceOf(address nftOwner) public view virtual returns (uint256) { return _readWord(0xf5b100ea, uint160(nftOwner), 0); // `balanceOfNFT(address)`. } /// @dev Returns the owner of token `id` from the base DN404 contract. /// /// Requirements: /// - Token `id` must exist. function ownerOf(uint256 id) public view virtual returns (address) { return address(uint160(_readWord(0x2d8a746e, id, 0))); // `ownerOfNFT(uint256)`. } /// @dev Returns the owner of token `id` from the base DN404 contract. /// Returns `address(0)` instead of reverting if the token does not exist. function ownerAt(uint256 id) public view virtual returns (address) { return address(uint160(_readWord(0xc016aa52, id, 0))); // `ownerAtNFT(uint256)`. } /// @dev Sets `spender` as the approved account to manage token `id` in /// the base DN404 contract. /// /// Requirements: /// - Token `id` must exist. /// - The caller must be the owner of the token, /// or an approved operator for the token owner. /// /// Emits an {Approval} event. function approve(address spender, uint256 id) public payable virtual { address base = baseERC20(); /// @solidity memory-safe-assembly assembly { spender := shr(96, shl(96, spender)) let m := mload(0x40) mstore(0x00, 0xd10b6e0c) // `approveNFT(address,uint256,address)`. mstore(0x20, spender) mstore(0x40, id) mstore(0x60, caller()) if iszero( and( // Arguments of `and` are evaluated last to first. gt(returndatasize(), 0x1f), // The call must return at least 32 bytes. call(gas(), base, callvalue(), 0x1c, 0x64, 0x00, 0x20) ) ) { returndatacopy(m, 0x00, returndatasize()) revert(m, returndatasize()) } mstore(0x40, m) // Restore the free memory pointer. mstore(0x60, 0) // Restore the zero pointer. // Emit the {Approval} event. log4(codesize(), 0x00, _APPROVAL_EVENT_SIGNATURE, shr(96, mload(0x0c)), spender, id) } } /// @dev Returns the account approved to manage token `id` from /// the base DN404 contract. /// /// Requirements: /// - Token `id` must exist. function getApproved(uint256 id) public view virtual returns (address) { return address(uint160(_readWord(0x27ef5495, id, 0))); // `getApprovedNFT(uint256)`. } /// @dev Sets whether `operator` is approved to manage the tokens of the caller in /// the base DN404 contract. /// /// Emits an {ApprovalForAll} event. function setApprovalForAll(address operator, bool approved) public virtual { address base = baseERC20(); /// @solidity memory-safe-assembly assembly { operator := shr(96, shl(96, operator)) let m := mload(0x40) mstore(0x00, 0xf6916ddd) // `setApprovalForAllNFT(address,bool,address)`. mstore(0x20, operator) mstore(0x40, iszero(iszero(approved))) mstore(0x60, caller()) if iszero( and( // Arguments of `and` are evaluated last to first. eq(mload(0x00), 1), // The call must return 1. call(gas(), base, callvalue(), 0x1c, 0x64, 0x00, 0x20) ) ) { returndatacopy(m, 0x00, returndatasize()) revert(m, returndatasize()) } // Emit the {ApprovalForAll} event. // The `approved` value is already at 0x40. log3(0x40, 0x20, _APPROVAL_FOR_ALL_EVENT_SIGNATURE, caller(), operator) mstore(0x40, m) // Restore the free memory pointer. mstore(0x60, 0) // Restore the zero pointer. } } /// @dev Returns whether `operator` is approved to manage the tokens of `nftOwner` from /// the base DN404 contract. function isApprovedForAll(address nftOwner, address operator) public view virtual returns (bool) { // `isApprovedForAllNFT(address,address)`. return _readWord(0x62fb246d, uint160(nftOwner), uint160(operator)) != 0; } /// @dev Transfers token `id` from `from` to `to`. /// /// Requirements: /// /// - Token `id` must exist. /// - `from` must be the owner of the token. /// - `to` cannot be the zero address. /// - The caller must be the owner of the token, or be approved to manage the token. /// /// Emits a {Transfer} event. function transferFrom(address from, address to, uint256 id) public payable virtual { address base = baseERC20(); /// @solidity memory-safe-assembly assembly { from := shr(96, shl(96, from)) to := shr(96, shl(96, to)) let m := mload(0x40) mstore(m, 0xe5eb36c8) // `transferFromNFT(address,address,uint256,address)`. mstore(add(m, 0x20), from) mstore(add(m, 0x40), to) mstore(add(m, 0x60), id) mstore(add(m, 0x80), caller()) if iszero( and( // Arguments of `and` are evaluated last to first. eq(mload(m), 1), // The call must return 1. call(gas(), base, callvalue(), add(m, 0x1c), 0x84, m, 0x20) ) ) { returndatacopy(m, 0x00, returndatasize()) revert(m, returndatasize()) } // Emit the {Transfer} event. log4(codesize(), 0x00, _TRANSFER_EVENT_SIGNATURE, from, to, id) } } /// @dev Equivalent to `safeTransferFrom(from, to, id, "")`. function safeTransferFrom(address from, address to, uint256 id) public payable virtual { bytes calldata emptyData; /// @solidity memory-safe-assembly assembly { emptyData.length := 0 } safeTransferFrom(from, to, id, emptyData); } /// @dev Transfers token `id` from `from` to `to`. /// /// Requirements: /// /// - Token `id` must exist. /// - `from` must be the owner of the token. /// - `to` cannot be the zero address. /// - The caller must be the owner of the token, or be approved to manage the token. /// - 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 id, bytes calldata data) public payable virtual { transferFrom(from, to, id); /// @solidity memory-safe-assembly assembly { if extcodesize(to) { // Prepare the calldata. let m := mload(0x40) let onERC721ReceivedSelector := 0x150b7a02 mstore(m, onERC721ReceivedSelector) mstore(add(m, 0x20), caller()) // The `operator`, which is always `msg.sender`. mstore(add(m, 0x40), shr(96, shl(96, from))) mstore(add(m, 0x60), id) mstore(add(m, 0x80), 0x80) mstore(add(m, 0xa0), data.length) calldatacopy(add(m, 0xc0), data.offset, data.length) // Revert if the call reverts. if iszero(call(gas(), to, 0, add(m, 0x1c), add(data.length, 0xa4), m, 0x20)) { if returndatasize() { // Bubble up the revert if the call reverts. returndatacopy(m, 0x00, returndatasize()) revert(m, returndatasize()) } } // Load the returndata and compare it. if iszero(eq(mload(m), shl(224, onERC721ReceivedSelector))) { mstore(0x00, 0xd1a57ed6) // `TransferToNonERC721ReceiverImplementer()`. revert(0x1c, 0x04) } } } } /// @dev Returns true if this contract implements the interface defined by `interfaceId`. /// See: https://eips.ethereum.org/EIPS/eip-165 /// This function call must use less than 30000 gas. function supportsInterface(bytes4 interfaceId) public view virtual returns (bool result) { /// @solidity memory-safe-assembly assembly { let s := shr(224, interfaceId) // ERC165: 0x01ffc9a7, ERC721: 0x80ac58cd, ERC721Metadata: 0x5b5e139f. result := or(or(eq(s, 0x01ffc9a7), eq(s, 0x80ac58cd)), eq(s, 0x5b5e139f)) } } /*«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-*/ /* OWNER SYNCING OPERATIONS */ /*-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»*/ /// @dev Returns the `owner` of the contract, for marketplace signaling purposes. function owner() public view virtual returns (address) { return _getDN404NFTStorage().owner; } /// @dev Permissionless function to pull the owner from the base DN404 contract /// if it implements ownable, for marketplace signaling purposes. function pullOwner() public virtual returns (bool) { address newOwner; address base = baseERC20(); /// @solidity memory-safe-assembly assembly { mstore(0x00, 0x8da5cb5b) // `owner()`. let success := staticcall(gas(), base, 0x1c, 0x04, 0x00, 0x20) newOwner := mul(shr(96, mload(0x0c)), and(gt(returndatasize(), 0x1f), success)) } DN404NFTStorage storage $ = _getDN404NFTStorage(); address oldOwner = $.owner; if (oldOwner != newOwner) { $.owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } return true; } /*«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-*/ /* MIRROR OPERATIONS */ /*-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»*/ /// @dev Returns the address of the base DN404 contract. function baseERC20() public view virtual returns (address base) { base = _getDN404NFTStorage().baseERC20; if (base == address(0)) _rv(uint32(NotLinked.selector)); } /// @dev Fallback modifier to execute calls from the base DN404 contract. modifier dn404NFTFallback() virtual { DN404NFTStorage storage $ = _getDN404NFTStorage(); uint256 fnSelector = _calldataload(0x00) >> 224; // `logTransfer(uint256[])`. if (fnSelector == 0x263c69d6) { if (msg.sender != $.baseERC20) _rv(uint32(SenderNotBase.selector)); /// @solidity memory-safe-assembly assembly { let o := add(0x24, calldataload(0x04)) // Packed logs offset. let end := add(o, shl(5, calldataload(sub(o, 0x20)))) for {} iszero(eq(o, end)) { o := add(0x20, o) } { let d := calldataload(o) // Entry in the packed logs. let a := shr(96, d) // The address. let b := and(1, d) // Whether it is a burn. log4( codesize(), 0x00, _TRANSFER_EVENT_SIGNATURE, mul(a, b), // `from`. mul(a, iszero(b)), // `to`. shr(168, shl(160, d)) // `id`. ) } mstore(0x00, 0x01) return(0x00, 0x20) } } // `logDirectTransfer(address,address,uint256[])`. if (fnSelector == 0x144027d3) { if (msg.sender != $.baseERC20) _rv(uint32(SenderNotBase.selector)); /// @solidity memory-safe-assembly assembly { let from := calldataload(0x04) let to := calldataload(0x24) let o := add(0x24, calldataload(0x44)) // Direct logs offset. let end := add(o, shl(5, calldataload(sub(o, 0x20)))) for {} iszero(eq(o, end)) { o := add(0x20, o) } { log4(codesize(), 0x00, _TRANSFER_EVENT_SIGNATURE, from, to, calldataload(o)) } mstore(0x00, 0x01) return(0x00, 0x20) } } // `linkMirrorContract(address)`. if (fnSelector == 0x0f4599e5) { if ($.deployer != address(0)) { if (address(uint160(_calldataload(0x04))) != $.deployer) { _rv(uint32(SenderNotDeployer.selector)); } } if ($.baseERC20 != address(0)) _rv(uint32(AlreadyLinked.selector)); $.baseERC20 = msg.sender; /// @solidity memory-safe-assembly assembly { mstore(0x00, 0x01) return(0x00, 0x20) } } _; } /// @dev Fallback function for calls from base DN404 contract. /// Override this if you need to implement your custom /// fallback with utilities like Solady's `LibZip.cdFallback()`. /// And always remember to always wrap the fallback with `dn404NFTFallback`. fallback() external payable virtual dn404NFTFallback { _rv(uint32(FnSelectorNotRecognized.selector)); // Not mandatory. Just for quality of life. } /// @dev This is to silence the compiler warning. /// Override and remove the revert if you want your contract to receive ETH via receive. receive() external payable virtual { if (msg.value != 0) revert(); } /*«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-*/ /* PRIVATE HELPERS */ /*-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»*/ /// @dev Helper to read a string from the base DN404 contract. function _readString(uint256 fnSelector, uint256 arg0) private view returns (string memory result) { address base = baseERC20(); /// @solidity memory-safe-assembly assembly { result := mload(0x40) mstore(0x00, fnSelector) mstore(0x20, arg0) if iszero(staticcall(gas(), base, 0x1c, 0x24, 0x00, 0x00)) { returndatacopy(result, 0x00, returndatasize()) revert(result, returndatasize()) } returndatacopy(0x00, 0x00, 0x20) // Copy the offset of the string in returndata. returndatacopy(result, mload(0x00), 0x20) // Copy the length of the string. returndatacopy(add(result, 0x20), add(mload(0x00), 0x20), mload(result)) // Copy the string. let end := add(add(result, 0x20), mload(result)) mstore(end, 0) // Zeroize the word after the string. mstore(0x40, add(end, 0x20)) // Allocate memory. } } /// @dev Helper to read a word from the base DN404 contract. function _readWord(uint256 fnSelector, uint256 arg0, uint256 arg1) private view returns (uint256 result) { address base = baseERC20(); /// @solidity memory-safe-assembly assembly { let m := mload(0x40) mstore(0x00, fnSelector) mstore(0x20, arg0) mstore(0x40, arg1) if iszero( and( // Arguments of `and` are evaluated last to first. gt(returndatasize(), 0x1f), // The call must return at least 32 bytes. staticcall(gas(), base, 0x1c, 0x44, 0x00, 0x20) ) ) { returndatacopy(m, 0x00, returndatasize()) revert(m, returndatasize()) } mstore(0x40, m) // Restore the free memory pointer. result := mload(0x00) } } /// @dev Returns the calldata value at `offset`. function _calldataload(uint256 offset) private pure returns (uint256 value) { /// @solidity memory-safe-assembly assembly { value := calldataload(offset) } } /// @dev More bytecode-efficient way to revert. function _rv(uint32 s) private pure { /// @solidity memory-safe-assembly assembly { mstore(0x00, s) revert(0x1c, 0x04) } } }
{ "viaIR": false, "codegen": "yul", "remappings": [ "dn404/=lib/dn404/", "forge-std/=lib/forge-std/src/", "solady/=lib/solady/src/" ], "evmVersion": "cancun", "outputSelection": { "*": { "*": [ "abi" ] } }, "optimizer": { "enabled": true, "mode": "3", "fallback_to_optimizing_for_size": false, "disable_system_request_memoization": true }, "metadata": {}, "libraries": {}, "enableEraVMExtensions": false, "forceEVMLA": false }
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyLinked","type":"error"},{"inputs":[],"name":"FnSelectorNotRecognized","type":"error"},{"inputs":[],"name":"NotLinked","type":"error"},{"inputs":[],"name":"SenderNotBase","type":"error"},{"inputs":[],"name":"SenderNotDeployer","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","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":"isApproved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldOwner","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":"id","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"nftOwner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseERC20","outputs":[{"internalType":"address","name":"base","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"nftOwner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"id","type":"uint256"}],"name":"ownerAt","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pullOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"result","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
9c4d535b000000000000000000000000000000000000000000000000000000000000000001000229cbc1555e8a7c41197440b1c1e37459e2edcf88c22a53801daedcaac600000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x0001000000000002000600000000000200000000000103550000008003000039000000400030043f0000000100200190000000230000c13d0000006002100270000001d005200197000000040050008c000000310000413d000000000301043b000000e003300270000001d40030009c000000380000213d000001e10030009c000000b70000a13d000001e20030009c0000017a0000a13d000001e30030009c000002270000613d000001e40030009c000002680000613d000001e50030009c000000890000c13d000000240050008c0000059b0000413d0000000002000416000000000002004b0000059b0000c13d0000000401100370000000000101043b073d06db0000040f000001ed011001970000043e0000013d0000000001000416000000000001004b0000059b0000c13d000001d101000041000000000201041a000001d2022001970000000003000411000000000232019f000000000021041b000000200100003900000100001004430000012000000443000001d3010000410000073e0001042e000000000005004b000000870000c13d0000000001000416000000000001004b0000059b0000c13d00000000010000190000073e0001042e000001d50030009c000000ea0000a13d000001d60030009c000001830000a13d000001d70030009c0000028c0000613d000001d80030009c000003210000613d000001d90030009c000000890000c13d000000440050008c0000059b0000413d0000000002000416000000000002004b0000059b0000c13d0000000402100370000000000302043b000001ed0030009c0000059b0000213d0000002401100370000000000101043b000001ed0010009c0000059b0000213d000001ee02000041000000000202041a000001ed022001980000044e0000613d000001ef04000041000000000040043f000000200030043f000000400010043f0000000001000414000001d00010009c000001d001008041000000c001100210000001f0011001c7073d07380000040f0000006003100270000001d003300197000000200030008c000000200400003900000000040340190000001f0540018f00000020044001900000006b0000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000000670000c13d000000000005004b000000780000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f00000000005404350000022002200167000000200030008c00000001022041bf00000001002001900000008008000039000005080000c13d0000008001000039000000400010043f000000000100043d000000000001004b0000000001000039000000010100c039000000800010043f000001f3010000410000073e0001042e000000000201043b000000e003200270000002180030009c000001330000613d000002190030009c000001450000613d0000021a0030009c000001720000c13d000001ee02000041000000000202041a000001ed022001970000000003000411000000000023004b000001760000c13d0000000402100370000000000202043b0000000403200039000000000131034f000000000101043b00000005011002120000016e0000613d0000002402200039000500000021001d000600000002001d0000000001200367000000000101043b0000000102100190000000600610027000000000052600a9000000000600c019000000080110027000000000020004140000021e07100197000001d00020009c000001d002008041000000c00120021000000206011001c70000800d0200003900000004030000390000020b04000041073d07330000040f00000001002001900000059b0000613d00000006020000290000002002200039000000050020006c0000009e0000c13d0000016e0000013d000001e80030009c000001d40000213d000001eb0030009c000003a30000613d000001ec0030009c000000890000c13d0000000001000416000000000001004b0000059b0000c13d000001ee01000041000000000101041a000001ed021001980000044e0000613d000001ec01000041000000000010043f000000200000043f0000000001000414000001d00010009c000001d001008041000000c001100210000001f6011001c7073d07380000040f0000006003100270000001d0033001970000000100200190000004930000613d000000200030008c0000059b0000413d000000000401043b000000000040043f0000002002400039000000000032004b0000059b0000213d000000000441034f000000000404043b000000800040043f0000000005240019000000000035004b0000059b0000213d000000000221034f00000221034001980000001f0440018f000000a001300039000003840000613d000000a005000039000000000602034f000000006706043c0000000005750436000000000015004b000000e50000c13d000003840000013d000001dc0030009c000001f60000213d000001df0030009c000003b70000613d000001e00030009c000000890000c13d000000240050008c0000059b0000413d0000000002000416000000000002004b0000059b0000c13d0000000401100370000000000101043b000001ed0010009c0000059b0000213d000001ee02000041000000000202041a000001ed022001980000044e0000613d0000020403000041000000000030043f000000200010043f000000400000043f0000000001000414000001d00010009c000001d001008041000000c001100210000001f0011001c7073d07380000040f0000006003100270000001d003300197000000200030008c000000200400003900000000040340190000001f0540018f0000002004400190000001150000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000001110000c13d000000000005004b000001220000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f00000000005404350000001f0030008c00000000040000390000000104002039000000000242016f0000000100200190000004340000c13d0000001f0430018f000001f1053001980000008002500039000005bd0000613d0000008006000039000000000701034f000000007807043c0000000006860436000000000026004b0000012e0000c13d000005bd0000013d000001d102000041000000000202041a000001ed022001980000013c0000613d0000000401100370000000000101043b000001ed01100197000000000021004b0000045c0000c13d000001ee01000041000000000201041a000001ed00200198000004580000c13d000001d2022001970000000003000411000000000223019f000000000021041b0000016e0000013d000001ee02000041000000000202041a000001ed022001970000000003000411000000000023004b000001760000c13d0000002402100370000000000202043b000500000002001d0000004402100370000000000202043b0000000403200039000000000331034f0000000401100370000000000101043b000400000001001d000000000103043b00000005011002120000016e0000613d0000002402200039000300000021001d000600000002001d0000000001200367000000000701043b0000000001000414000001d00010009c000001d001008041000000c00110021000000206011001c70000800d0200003900000004030000390000020b0400004100000004050000290000000506000029073d07330000040f00000001002001900000059b0000613d00000006020000290000002002200039000000030020006c0000015a0000c13d0000000101000039000000000010043f00000202010000410000073e0001042e0000021f01000041000000000010043f00000205010000410000073f000104300000021d01000041000000000010043f00000205010000410000073f00010430000001e60030009c000004030000613d000001e70030009c000000890000c13d0000000001050019073d063e0000040f073d06500000040f00000000010000190000073e0001042e000001da0030009c0000043a0000613d000001db0030009c000000890000c13d000000440050008c0000059b0000413d0000000002000416000000000002004b0000059b0000c13d0000000402100370000000000402043b000001ed0040009c0000059b0000213d0000002401100370000000000101043b000000000001004b0000000002000039000000010200c039000000000021004b0000059b0000c13d000001ee02000041000000000202041a000001ed022001980000044e0000613d000001fe03000041000000000030043f000600000004001d000000200040043f000000400010043f0000000001000411000000600010043f0000000001000414000001d00010009c000001d001008041000000c001100210000001ff011001c7073d07330000040f0000006003100270000001d003300197000000200030008c000000200400003900000000040340190000001f0540018f0000002004400190000001b60000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000001b20000c13d000000000005004b000001c30000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f00000000005404350000022002200167000000000400043d000000010040008c000000010220c1bf0000000100200190000005b30000c13d0000000001000414000001d00010009c000001d001008041000000c00110021000000200011001c70000800d020000390000000303000039000002010400004100000000050004110000000606000029000004f90000013d000001e90030009c000004450000613d000001ea0030009c000000890000c13d000000440050008c0000059b0000413d0000000402100370000000000202043b000001ed0020009c0000059b0000213d0000002401100370000000000301043b000001ee01000041000000000101041a000001ed041001980000044e0000613d0000021001000041000000000010043f000600000002001d000000200020043f000500000003001d000000400030043f0000000001000411000000600010043f0000000001000414000001d00010009c000001d001008041000000c0011002100000000003000416000000000003004b000004ca0000c13d000001ff011001c70000000002040019000004cd0000013d000001dd0030009c000004520000613d000001de0030009c000000890000c13d0000000001000416000000000001004b0000059b0000c13d000001ee01000041000000000101041a000001ed021001980000044e0000613d000001de01000041000000000010043f000000200000043f0000000001000414000001d00010009c000001d001008041000000c001100210000001f6011001c7073d07380000040f0000006003100270000001d00330019700000001002001900000049e0000613d000000200030008c0000059b0000413d000000000401043b000000000040043f0000002002400039000000000032004b0000059b0000213d000000000441034f000000000404043b000000800040043f0000000005240019000000000035004b0000059b0000213d000000000221034f00000221034001980000001f0440018f000000a001300039000003840000613d000000a005000039000000000602034f000000006706043c0000000005750436000000000015004b000002220000c13d000003840000013d000000240050008c0000059b0000413d0000000002000416000000000002004b0000059b0000c13d000001ee02000041000000000202041a000001ed022001980000044e0000613d0000020e03000041000000000030043f0000000401100370000000000101043b000000200010043f000000400000043f0000000001000414000001d00010009c000001d001008041000000c001100210000001f0011001c7073d07380000040f0000006003100270000001d003300197000000200030008c000000200400003900000000040340190000001f0540018f00000020044001900000024a0000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000002460000c13d000000000005004b000002570000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f00000000005404350000001f0030008c00000000040000390000000104002039000000000242016f00000001002001900000048c0000c13d0000001f0430018f000001f1053001980000008002500039000005bd0000613d0000008006000039000000000701034f000000007807043c0000000006860436000000000026004b000002630000c13d000005bd0000013d000000640050008c0000059b0000413d0000000402100370000000000302043b000001ed0030009c0000059b0000213d0000002402100370000000000202043b000001ed0020009c0000059b0000213d0000004401100370000000000501043b000001ee01000041000000000101041a000001ed041001980000044e0000613d0000020801000041000000800010043f000500000003001d000000a00030043f000600000002001d000000c00020043f000400000005001d000000e00050043f0000000001000411000001000010043f0000000001000414000001d00010009c000001d001008041000000c0011002100000000003000416000000000003004b000005120000c13d0000020a011001c70000000002040019000005150000013d000000840050008c0000059b0000413d0000000403100370000000000603043b000001ed0060009c0000059b0000213d0000002403100370000000000203043b000001ed0020009c0000059b0000213d0000004403100370000000000303043b0000006404100370000000000804043b000001f70080009c0000059b0000213d0000002304800039000000000054004b0000059b0000813d0000000407800039000000000171034f000000000401043b000001f70040009c0000059b0000213d00000000014800190000002401100039000000000051004b0000059b0000213d000300000007001d000500000004001d000400000006001d0000000001060019000200000003001d000600000002001d073d06500000040f000001f8010000410000000000100443000000060100002900000004001004430000000001000414000001d00010009c000001d001008041000000c001100210000001f9011001c70000800202000039073d07380000040f0000000100200190000005cd0000613d000000000101043b000000000001004b0000000503000029000000040500002900000003060000290000000207000029000000360000613d000000400400043d0000008001400039000000800200003900000000002104350000006001400039000000000071043500000040014000390000000000510435000000200140003900000000020004110000000000210435000001fa010000410000000000140435000000a001400039000000000031043500000221023001980000001f0330018f000100000004001d000000c005400039000000000125001900000020046000390000000004400367000002df0000613d000000000604034f000000006706043c0000000005750436000000000015004b000002db0000c13d000000000003004b000002ec0000613d000000000224034f0000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f00000000002104350000000501000029000001fb0010009c000001fb01008041000000600110021000000001020000290000001c02200039000001d00020009c000001d0020080410000004002200210000000000121019f0000000002000414000001d00020009c000001d002008041000000c002200210000000000121019f000001fc0110009a0000000602000029073d07330000040f0000006003100270000001d003300197000000200030008c000000200400003900000000040340190000001f0540018f000000200640019000000001046000290000030d0000613d000000000701034f0000000108000029000000007907043c0000000008980436000000000048004b000003090000c13d000000000005004b0000031a0000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000000000003004b00000001022061bf0000000100200190000005eb0000613d00000001010000290000000001010433000005950000013d000000240050008c0000059b0000413d0000000002000416000000000002004b0000059b0000c13d0000000401100370000000000301043b000001ee01000041000000000101041a000001ed021001980000044e0000613d000001f401000041000000000010043f000600000003001d000000200030043f000000400000043f0000000001000414000001d00010009c000001d001008041000000c001100210000001f0011001c7073d07380000040f0000006003100270000001d003300197000000200030008c000000200400003900000000040340190000001f0540018f0000002004400190000003450000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000003410000c13d000000000005004b000003520000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f00000000005404350000001f0030008c00000000040000390000000104002039000000000242016f0000000100200190000004a90000613d0000008001000039000000400010043f000001ee01000041000000000101041a000001ed0210019800000006030000290000044e0000613d000001f501000041000000000010043f000000200030043f0000000001000414000001d00010009c000001d001008041000000c001100210000001f6011001c7073d07380000040f0000006003100270000001d00330019700000001002001900000059d0000613d000000200030008c0000059b0000413d000000000401043b000000000040043f0000002002400039000000000032004b0000059b0000213d000000000441034f000000000404043b000000800040043f0000000005240019000000000035004b0000059b0000213d000000000221034f00000221034001980000001f0440018f000000a001300039000003840000613d000000a005000039000000000602034f000000006706043c0000000005750436000000000015004b000003800000c13d000000000004004b000003910000613d000000000232034f0000000303400210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f0000000000210435000000800100043d000000a0021000390000000000020435000000c001100039000600000001001d000000400010043f0000008002000039073d06090000040f00000006020000290000000001210049000001d00010009c000001d001008041000001d00020009c000001d00200804100000060011002100000004002200210000000000121019f0000073e0001042e000000240050008c0000059b0000413d0000000002000416000000000002004b0000059b0000c13d0000000401100370000000000101043b00000215001001980000059b0000c13d000000e001100270000002160010009c00000000020000390000000102006039000001eb0010009c00000001022061bf000002170010009c00000001022061bf000000800020043f000001f3010000410000073e0001042e0000000001000416000000000001004b0000059b0000c13d000001ee01000041000000000101041a000001ed021001980000044e0000613d000001dd01000041000000000010043f0000000001000414000001d00010009c000001d001008041000000c00110021000000205011001c7073d07380000040f0000006003100270000001d003300197000000200030008c000000200400003900000000040340190000001f0540018f0000002004400190000003d40000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000003d00000c13d000000000005004b000003e10000613d000000000141034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f0030008c0000000001000039000000010100203900000000001201700000000c0100043d000000600610027000000000060060190000020301000041000000000201041a000001ed05200197000000000065004b000003fb0000613d000001d202200197000000000226019f000000000021041b0000000001000414000001d00010009c000001d001008041000000c00110021000000206011001c70000800d0200003900000003030000390000020704000041073d07330000040f00000001002001900000059b0000613d000000400100043d00000001020000390000000000210435000001d00010009c000001d001008041000000400110021000000202011001c70000073e0001042e0000000001000416000000000001004b0000059b0000c13d000001ee01000041000000000101041a000001ed021001980000044e0000613d0000020f01000041000000000010043f000000200000043f000000400000043f0000000001000414000001d00010009c000001d001008041000000c001100210000001f0011001c7073d07380000040f0000006003100270000001d003300197000000200030008c000000200400003900000000040340190000001f0540018f0000002004400190000004220000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b0000041e0000c13d000000000005004b0000042f0000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f00000000005404350000022002200167000000200030008c00000001022041bf0000000100200190000004b40000c13d0000008001000039000000400010043f000000000100043d000000800010043f000001f3010000410000073e0001042e0000000001000416000000000001004b0000059b0000c13d073d06d20000040f000000400200043d0000000000120435000001d00020009c000001d002008041000000400120021000000202011001c70000073e0001042e000000240050008c0000059b0000413d0000000002000416000000000002004b0000059b0000c13d000001ee02000041000000000202041a000001ed02200198000004600000c13d0000021401000041000000000010043f00000205010000410000073f000104300000000001000416000000000001004b0000059b0000c13d0000020301000041000000000101041a0000048f0000013d0000021c01000041000000000010043f00000205010000410000073f000104300000021b01000041000000000010043f00000205010000410000073f000104300000021303000041000000000030043f0000000401100370000000000101043b000000200010043f000000400000043f0000000001000414000001d00010009c000001d001008041000000c001100210000001f0011001c7073d07380000040f0000006003100270000001d003300197000000200030008c000000200400003900000000040340190000001f0540018f00000020044001900000047a0000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000004760000c13d000000000005004b000004870000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f00000000005404350000022002200167000000200030008c00000001022041bf0000000100200190000004bf0000c13d0000008001000039000000400010043f000000000100043d000001ed01100197000000800010043f000001f3010000410000073e0001042e0000001f0430018f000001f1053001980000008002500039000005bd0000613d0000008006000039000000000701034f000000007807043c0000000006860436000000000026004b000004990000c13d000005bd0000013d0000001f0430018f000001f1053001980000008002500039000005bd0000613d0000008006000039000000000701034f000000007807043c0000000006860436000000000026004b000004a40000c13d000005bd0000013d0000001f0430018f000001f1053001980000008002500039000005bd0000613d0000008006000039000000000701034f000000007807043c0000000006860436000000000026004b000004af0000c13d000005bd0000013d0000001f0430018f000001f1053001980000008002500039000005bd0000613d0000008006000039000000000701034f000000007807043c0000000006860436000000000026004b000004ba0000c13d000005bd0000013d0000001f0430018f000001f1053001980000008002500039000005bd0000613d0000008006000039000000000701034f000000007807043c0000000006860436000000000026004b000004c50000c13d000005bd0000013d00000211011001c700008009020000390000000005000019073d07330000040f0000006003100270000001d003300197000000200030008c000000200400003900000000040340190000001f0540018f0000002004400190000004dc0000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000004d80000c13d000000000005004b000004e90000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f00000000005404350000000100200190000004fd0000613d000000200030008c000004fd0000413d0000000c0100043d0000000002000414000001d00020009c000001d002008041000000c002200210000000600510027000000206012001c70000800d020000390000000403000039000002120400004100000006060000290000000507000029073d07330000040f0000000100200190000000360000c13d0000059b0000013d0000001f0430018f000001f1053001980000008002500039000005bd0000613d0000008006000039000000000701034f000000007807043c0000000006860436000000000026004b000005030000c13d000005bd0000013d0000001f0430018f000001f1053001980000008002500039000005bd0000613d000000000601034f000000006706043c0000000008780436000000000028004b0000050d0000c13d000005bd0000013d00000209011001c700008009020000390000000005000019073d07330000040f0000006003100270000001d003300197000000200030008c000000200400003900000000040340190000001f0540018f000000200640019000000080046001bf000005250000613d0000008007000039000000000801034f000000008908043c0000000007970436000000000047004b000005210000c13d000000000005004b000005320000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f00000000005404350000000100200190000005a80000613d000000800200043d000000010020008c000005a80000c13d0000000001000414000001d00010009c000001d001008041000000c00110021000000206011001c70000800d0200003900000004030000390000020b04000041000000050500002900000006060000290000000407000029073d07330000040f000000060300002900000001002001900000059b0000613d000001f801000041000000000010044300000004003004430000000001000414000001d00010009c000001d001008041000000c001100210000001f9011001c70000800202000039073d07380000040f0000000100200190000005cd0000613d000000000101043b000000000001004b00000006020000290000000504000029000000360000613d000000400500043d000300000005001d00000080015000390000008003000039000000000031043500000060015000390000000403000029000000000031043500000040015000390000000000410435000000200150003900000000030004110000000000310435000001fa010000410000000000150435000000a00150003900000000000104350000001c01500039000001d00010009c000001d00100804100000040011002100000000003000414000001d00030009c000001d003008041000000c003300210000000000113019f0000020c011001c7073d07330000040f0000006003100270000001d003300197000000200030008c000000200400003900000000040340190000001f0540018f0000002006400190000000030a0000290000000304600029000005830000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b0000057f0000c13d000000000005004b000005900000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000000000003004b00000001022061bf0000000100200190000005ce0000613d00000000010a0433000001fd0010009c000000360000613d0000020d01000041000000000010043f00000205010000410000073f0001043000000000010000190000073f000104300000001f0430018f000001f10530019800000080025000390000008008000039000005bd0000613d000000000601034f000000006706043c0000000008780436000000000028004b000005a30000c13d000005bd0000013d0000001f0430018f000001f1053001980000008002500039000005bd0000613d0000008006000039000000000701034f000000007807043c0000000006860436000000000026004b000005ae0000c13d000005bd0000013d0000001f0430018f000001f1053001980000008002500039000005bd0000613d0000008006000039000000000701034f000000007807043c0000000006860436000000000026004b000005b90000c13d000000000004004b000005ca0000613d000000000151034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001204350000006001300210000001f2011001c70000073f00010430000000000001042f0000001f0430018f000001f10530019800000000025a0019000005d80000613d000000000601034f00000000070a0019000000006806043c0000000007870436000000000027004b000005d40000c13d000000000004004b000005e50000613d000000000151034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001204350000006001300210000001d000a0009c000001d00a0080410000004002a00210000000000121019f0000073f000104300000001f0430018f000001f1053001980000000102500029000005f50000613d000000000601034f0000000107000029000000006806043c0000000007870436000000000027004b000005f10000c13d000000000004004b000006020000613d000000000151034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000012043500000060013002100000000102000029000001d00020009c000001d0020080410000004002200210000000000121019f0000073f00010430000000200300003900000000033104360000000042020434000000000023043500000221062001970000001f0520018f0000004001100039000000000014004b000006220000813d000000000006004b0000061e0000613d00000000085400190000000007510019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c000006180000c13d000000000005004b000006380000613d00000000070100190000062e0000013d0000000007610019000000000006004b0000062b0000613d00000000080400190000000009010019000000008a0804340000000009a90436000000000079004b000006270000c13d000000000005004b000006380000613d00000000046400190000000305500210000000000607043300000000065601cf000000000656022f00000000040404330000010005500089000000000454022f00000000045401cf000000000464019f0000000000470435000000000421001900000000000404350000001f0220003900000221022001970000000001210019000000000001042d000002220010009c0000064e0000213d000000630010008c0000064e0000a13d00000000030003670000000401300370000000000101043b000001ed0010009c0000064e0000213d0000002402300370000000000202043b000001ed0020009c0000064e0000213d0000004403300370000000000303043b000000000001042d00000000010000190000073f000104300004000000000002000001ee04000041000000000404041a000001ed04400198000006ae0000613d000000400600043d0000008007600039000000000500041100000000005704350000006005600039000300000003001d000000000035043500000208030000410000000003360436000001ed052001970000004002600039000200000005001d0000000000520435000001ed01100197000100000001001d0000000000130435000400000006001d0000001c016000390000000002000414000001d00020009c000001d002008041000000c0022002100000000003000416000000000003004b000006760000613d0000004005100210000002230550009a000002240010009c00000225050080410000000001250019000080090200003900000000050000190000067c0000013d000001d00010009c000001d0010080410000004001100210000000000112019f00000226011001c70000000002040019073d07330000040f0000006003100270000001d003300197000000200030008c000000200400003900000000040340190000001f0540018f0000002006400190000000040a00002900000000046a00190000068d0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b000006890000c13d000000000005004b0000069a0000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f00000000005404350000000100200190000006b20000613d00000000020a0433000000010020008c000006b20000c13d0000000001000414000001d00010009c000001d001008041000000c00110021000000206011001c70000800d0200003900000004030000390000020b04000041000000010500002900000002060000290000000307000029073d07330000040f0000000100200190000006d00000613d000000000001042d0000021401000041000000000010043f00000205010000410000073f000104300000001f0430018f000001f10530019800000000025a0019000006bc0000613d000000000601034f0000000407000029000000006806043c0000000007870436000000000027004b000006b80000c13d000000000004004b000006c90000613d000000000151034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000012043500000060013002100000000402000029000001d00020009c000001d0020080410000004002200210000000000121019f0000073f0001043000000000010000190000073f00010430000001ee01000041000000000101041a000001ed01100198000006d70000613d000000000001042d0000021401000041000000000010043f00000205010000410000073f000104300001000000000002000001ee02000041000000000202041a000001ed02200198000007100000613d000000400300043d000100000003001d000001f403000041000000000030043f000000200010043f000000400000043f0000000001000414000001d00010009c000001d001008041000000c001100210000001f0011001c7073d07380000040f0000006003100270000001d003300197000000200030008c000000200400003900000000040340190000001f0540018f0000002004400190000006fa0000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000006f60000c13d000000000005004b000007070000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f00000000005404350000022002200167000000200030008c00000001022041bf0000000100200190000007140000c13d0000000101000029000000400010043f000000000100043d000000000001042d0000021401000041000000000010043f00000205010000410000073f000104300000001f0430018f000001f10530019800000001025000290000071e0000613d000000000601034f0000000107000029000000006806043c0000000007870436000000000027004b0000071a0000c13d000000000004004b0000072b0000613d000000000151034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000012043500000060013002100000000102000029000001d00020009c000001d0020080410000004002200210000000000121019f0000073f00010430000000000001042f00000736002104210000000102000039000000000001042d0000000002000019000000000001042d0000073b002104230000000102000039000000000001042d0000000002000019000000000001042d0000073d000004320000073e0001042e0000073f0001043000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000003602298b8c10b01231ffffffffffffffffffffffff00000000000000000000000000000000000000000000000200000000000000000000000000000040000001000000000000000000000000000000000000000000000000000000000000000000000000006cef16e50000000000000000000000000000000000000000000000000000000097e5311b00000000000000000000000000000000000000000000000000000000b88d4fdd00000000000000000000000000000000000000000000000000000000b88d4fde00000000000000000000000000000000000000000000000000000000c87b56dd00000000000000000000000000000000000000000000000000000000e985e9c50000000000000000000000000000000000000000000000000000000097e5311c00000000000000000000000000000000000000000000000000000000a22cb465000000000000000000000000000000000000000000000000000000008da5cb5a000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000006cef16e60000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000018160ddc000000000000000000000000000000000000000000000000000000002435987800000000000000000000000000000000000000000000000000000000243598790000000000000000000000000000000000000000000000000000000042842e0e000000000000000000000000000000000000000000000000000000006352211e0000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000081812fb00000000000000000000000000000000000000000000000000000000081812fc00000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000006fdde03000000000000000000000000ffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000003602298b8c10b012300000000000000000000000000000000000000000000000000000000062fb246d00000000000000000000000000000000000000440000001c000000000000000000000000000000000000000000000000000000000000000000000000ffffffe000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000020000000800000000000000000000000000000000000000000000000000000000000000000000000002d8a746e00000000000000000000000000000000000000000000000000000000cb30b46000000000000000000000000000000000000000240000001c0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff1806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b83020000020000000000000000000000000000002400000000000000000000000000000000000000000000000000000000000000000000000000000000150b7a0200000000000000000000000000000000000000000000000000000000ffffff5bffffffffffffffffffffffffffffffffffffff5c000000000000000000000000150b7a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f6916ddd00000000000000000000000000000000000000640000001c0000000000000000020000000000000000000000000000000000002000000040000000000000000017307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000003602298b8c10b0123200000000000000000000000000000000000000000000000000000000f5b100ea00000000000000000000000000000000000000040000001c000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e000000000000000000000000000000000000000000000000000000000e5eb36c802000000000000000000000000000000000000840000009c000000000000000000000000000000000000000000000000000000840000009c0000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef00000000000000000000000000000000000000a400000000000000000000000000000000000000000000000000000000000000000000000000000000d1a57ed600000000000000000000000000000000000000000000000000000000c016aa5200000000000000000000000000000000000000000000000000000000e2c7928100000000000000000000000000000000000000000000000000000000d10b6e0c02000000000000000000000000000000000000640000001c00000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9250000000000000000000000000000000000000000000000000000000027ef5495000000000000000000000000000000000000000000000000000000005b2a47ae00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000080ac58cd000000000000000000000000000000000000000000000000000000005b5e139f000000000000000000000000000000000000000000000000000000000f4599e500000000000000000000000000000000000000000000000000000000144027d300000000000000000000000000000000000000000000000000000000263c69d600000000000000000000000000000000000000000000000000000000c59ec47a00000000000000000000000000000000000000000000000000000000bf656a4600000000000000000000000000000000000000000000000000000000363cb312000000000000000000000000000000000000000000ffffffffffffffffffffff000000000000000000000000000000000000000000000000000000003c10b94effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffdffffffffffffffffffffffffffffffffffff7c00000000000000000000000000000000000000000000000000000000000000000000000000000001000000000200000000000000000000000000000000000084ffffffff000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fb337f46b1a38902ff792bbaf9b0687c9839e9452e2d8e54cc3c69f3a99ab030
Loading...
Loading
Loading...
Loading
[ 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.