ETH Price: $3,111.33 (+0.11%)
Gas: 3.48 Gwei
 

Overview

Max Total Supply

494 SWPF

Holders

72

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
Null: 0x000...000
Balance
0 SWPF
0x0000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SWPF

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : SWPF.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// Deployed with the Atlas IDE
// https://app.atlaszk.com
pragma solidity ^0.8.9;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";
contract SWPF is ERC721A, Ownable, ReentrancyGuard, ERC2981 {
event DevMintEvent(address ownerAddress, uint256 startWith, uint256 amountMinted);
uint256 public devTotal;
uint256 public _maxSupply = 2024;
uint256 public _mintPrice = 0.00099 ether;
uint256 public _maxMintPerTx = 24;
uint256 public _maxFreeMintPerAddr = 1;
uint256 public _maxFreeMintSupply = 1000;
uint256 public devSupply = 0;
using Strings for uint256;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 2 of 13 : ERC721A.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs
pragma solidity ^0.8.4;
import './IERC721A.sol';
/**
* @dev Interface of ERC721 token receiver.
*/
interface ERC721A__IERC721Receiver {
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
/**
* @title ERC721A
*
* @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
* Non-Fungible Token Standard, including the Metadata extension.
* Optimized for lower gas during batch mints.
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 3 of 13 : Ownable.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (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.
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 4 of 13 : ReentrancyGuard.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 5 of 13 : Strings.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
import "./math/Math.sol";
import "./math/SignedMath.sol";
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _SYMBOLS = "0123456789abcdef";
uint8 private constant _ADDRESS_LENGTH = 20;
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
unchecked {
uint256 length = Math.log10(value) + 1;
string memory buffer = new string(length);
uint256 ptr;
/// @solidity memory-safe-assembly
assembly {
ptr := add(buffer, add(32, length))
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 6 of 13 : IERC2981.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC2981.sol)
pragma solidity ^0.8.0;
import "../utils/introspection/IERC165.sol";
/**
* @dev Interface for the NFT Royalty Standard.
*
* A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
* support for royalty payments across all NFT marketplaces and ecosystem participants.
*
* _Available since v4.5._
*/
interface IERC2981 is IERC165 {
/**
* @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
* exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
*/
function royaltyInfo(
uint256 tokenId,
uint256 salePrice
) external view returns (address receiver, uint256 royaltyAmount);
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 7 of 13 : ERC2981.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/common/ERC2981.sol)
pragma solidity ^0.8.0;
import "../../interfaces/IERC2981.sol";
import "../../utils/introspection/ERC165.sol";
/**
* @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
*
* Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
* specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
*
* Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
* fee is specified in basis points by default.
*
* IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
* https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
* voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
*
* _Available since v4.5._
*/
abstract contract ERC2981 is IERC2981, ERC165 {
struct RoyaltyInfo {
address receiver;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 8 of 13 : Context.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// 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;
}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 9 of 13 : IERC165.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// 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);
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 10 of 13 : ERC165.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 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) {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 11 of 13 : Math.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
enum Rounding {
Down, // Toward negative infinity
Up, // Toward infinity
Zero // Toward zero
}
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 12 of 13 : SignedMath.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard signed math utilities missing in the Solidity language.
*/
library SignedMath {
/**
* @dev Returns the largest of two signed numbers.
*/
function max(int256 a, int256 b) internal pure returns (int256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two signed numbers.
*/
function min(int256 a, int256 b) internal pure returns (int256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two signed numbers without overflow.
* The result is rounded towards zero.
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 13 of 13 : IERC721A.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs
pragma solidity ^0.8.4;
/**
* @dev Interface of ERC721A.
*/
interface IERC721A {
/**
* The caller must own the token or be an approved operator.
*/
error ApprovalCallerNotOwnerNorApproved();
/**
* The token does not exist.
*/
error ApprovalQueryForNonexistentToken();
/**
* Cannot query the balance for the zero address.
*/
error BalanceQueryForZeroAddress();
/**
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Settings
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"optimizer": {
"enabled": true,
"runs": 200
},
"libraries": {},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"ownerAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"startWith","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountMinted","type":"uint256"}],"name":"DevMintEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_maxFreeMintPerAddr","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxFreeMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_mintPrice","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devTotal","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":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyAdd","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintPerTx","type":"uint256"}],"name":"setMaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setTokenRoyalty","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":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526107e8600d55660384665653e000600e556018600f5560016010556103e860115560006012556014805460ff191690553480156200004157600080fd5b50604051620024cc380380620024cc8339810160408190526200006491620002aa565b6040518060400160405280601581526020017f537465616d626f61742057696c6c69652046696c6d00000000000000000000008152506040518060400160405280600481526020016329aba82360e11b8152508160029081620000c891906200040e565b506003620000d782826200040e565b50506000805550620000e93362000112565b60016009556013620000fc82826200040e565b506200010b336101f462000164565b50620004da565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b601780546001600160a01b0319166001600160a01b0384161790556200018b82826200018f565b5050565b6127106001600160601b0382161115620002035760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084015b60405180910390fd5b6001600160a01b0382166200025b5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401620001fa565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600a55565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215620002be57600080fd5b82516001600160401b0380821115620002d657600080fd5b818501915085601f830112620002eb57600080fd5b81518181111562000300576200030062000294565b604051601f8201601f19908116603f011681019083821181831017156200032b576200032b62000294565b8160405282815288868487010111156200034457600080fd5b600093505b8284101562000368578484018601518185018701529285019262000349565b600086848301015280965050505050505092915050565b600181811c908216806200039457607f821691505b602082108103620003b557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200040957600081815260208120601f850160051c81016020861015620003e45750805b601f850160051c820191505b818110156200040557828155600101620003f0565b5050505b505050565b81516001600160401b038111156200042a576200042a62000294565b62000442816200043b84546200037f565b84620003bb565b602080601f8311600181146200047a5760008415620004615750858301515b600019600386901b1c1916600185901b17855562000405565b600085815260208120601f198616915b82811015620004ab578886015182559484019460019091019084016200048a565b5085821015620004ca5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611fe280620004ea6000396000f3fe60806040526004361061023b5760003560e01c80636352211e1161012e5780639cb57d20116100ab578063c87b56dd1161006f578063c87b56dd14610618578063de314a5914610638578063e985e9c51461064e578063f2c4ce1e1461066e578063f2fde38b1461068e57600080fd5b80639cb57d20146105a7578063a0712d68146105bd578063a22cb465146105d0578063a475b5dd146105f0578063b88d4fde1461060557600080fd5b80637c69e207116100f25780637c69e2071461051f5780638da5cb5b1461053457806391b7f5ed1461055257806392910eec1461057257806395d89b411461059257600080fd5b80636352211e1461049557806367a4f4a9146104b55780636c0360eb146104d557806370a08231146104ea578063715018a61461050a57600080fd5b806322f4596f116101bc57806342842e0e1161018057806342842e0e14610412578063518302271461042557806355f804b31461043f5780635e1c4b601461045f578063616cdb1e1461047557600080fd5b806322f4596f1461038c57806323b872dd146103a25780632a55205a146103b55780633ccfd60b146103f457806341c66d0a146103fc57600080fd5b8063081c8c4411610203578063081c8c4414610315578063095ea7b31461032a5780630afb04db1461033d57806318160ddd14610353578063190866921461036c57600080fd5b806301ffc9a7146102405780630387da421461027557806304634d8d1461029957806306fdde03146102bb578063081812fc146102dd575b600080fd5b34801561024c57600080fd5b5061026061025b366004611940565b6106ae565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028b600e5481565b60405190815260200161026c565b3480156102a557600080fd5b506102b96102b4366004611990565b61071b565b005b3480156102c757600080fd5b506102d0610744565b60405161026c9190611a13565b3480156102e957600080fd5b506102fd6102f8366004611a26565b6107d6565b6040516001600160a01b03909116815260200161026c565b34801561032157600080fd5b506102d061081a565b6102b9610338366004611a3f565b6108a8565b34801561034957600080fd5b5061028b600c5481565b34801561035f57600080fd5b506001546000540361028b565b34801561037857600080fd5b506017546102fd906001600160a01b031681565b34801561039857600080fd5b5061028b600d5481565b6102b96103b0366004611a69565b610948565b3480156103c157600080fd5b506103d56103d0366004611aa5565b610ae1565b604080516001600160a01b03909316835260208301919091520161026c565b6102b9610b08565b34801561040857600080fd5b5061028b60125481565b6102b9610420366004611a69565b610b7a565b34801561043157600080fd5b506014546102609060ff1681565b34801561044b57600080fd5b506102b961045a366004611b53565b610b9a565b34801561046b57600080fd5b5061028b60115481565b34801561048157600080fd5b506102b9610490366004611a26565b610bae565b3480156104a157600080fd5b506102fd6104b0366004611a26565b610bbb565b3480156104c157600080fd5b506102b96104d0366004611b9c565b610bc6565b3480156104e157600080fd5b506102d0610be6565b3480156104f657600080fd5b5061028b610505366004611bbf565b610bf3565b34801561051657600080fd5b506102b9610c42565b34801561052b57600080fd5b506102b9610c54565b34801561054057600080fd5b506008546001600160a01b03166102fd565b34801561055e57600080fd5b506102b961056d366004611a26565b610cc8565b34801561057e57600080fd5b506102b961058d366004611a26565b610cd5565b34801561059e57600080fd5b506102d0610ce2565b3480156105b357600080fd5b5061028b60105481565b6102b96105cb366004611a26565b610cf1565b3480156105dc57600080fd5b506102b96105eb366004611bda565b610eb9565b3480156105fc57600080fd5b506102b9610f25565b6102b9610613366004611c16565b610f3c565b34801561062457600080fd5b506102d0610633366004611a26565b610f86565b34801561064457600080fd5b5061028b600f5481565b34801561065a57600080fd5b50610260610669366004611c92565b6110c8565b34801561067a57600080fd5b506102b9610689366004611b53565b6110f6565b34801561069a57600080fd5b506102b96106a9366004611bbf565b61110a565b60006001600160e01b0319821663152a902d60e11b14806106df57506301ffc9a760e01b6001600160e01b03198316145b806106fa57506380ac58cd60e01b6001600160e01b03198316145b806107155750635b5e139f60e01b6001600160e01b03198316145b92915050565b601780546001600160a01b0319166001600160a01b0384161790556107408282611183565b5050565b60606002805461075390611cbc565b80601f016020809104026020016040519081016040528092919081815260200182805461077f90611cbc565b80156107cc5780601f106107a1576101008083540402835291602001916107cc565b820191906000526020600020905b8154815290600101906020018083116107af57829003601f168201915b5050505050905090565b60006107e18261123d565b6107fe576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6015805461082790611cbc565b80601f016020809104026020016040519081016040528092919081815260200182805461085390611cbc565b80156108a05780601f10610875576101008083540402835291602001916108a0565b820191906000526020600020905b81548152906001019060200180831161088357829003601f168201915b505050505081565b60006108b382610bbb565b9050336001600160a01b038216146108ec576108cf81336110c8565b6108ec576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061095382611264565b9050836001600160a01b0316816001600160a01b0316146109865760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176109d3576109b686336110c8565b6109d357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166109fa57604051633a954ecd60e21b815260040160405180910390fd5b8015610a0557600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610a9757600184016000818152600460205260408120549003610a95576000548114610a955760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6000806000610af085856112d2565b6017546001600160a01b031697909650945050505050565b610b1061137e565b610b186113d8565b604051600090339047908381818185875af1925050503d8060008114610b5a576040519150601f19603f3d011682016040523d82523d6000602084013e610b5f565b606091505b5050905080610b6d57600080fd5b50610b786001600955565b565b610b9583838360405180602001604052806000815250610f3c565b505050565b610ba261137e565b60136107408282611d3c565b610bb661137e565b600f55565b600061071582611264565b610bce61137e565b6017546107409083906001600160a01b031683611431565b6013805461082790611cbc565b60006001600160a01b038216610c1c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610c4a61137e565b610b7860006114fc565b610c5c61137e565b601254600c6000828254610c709190611e12565b9091555050600c5460125460408051338152602081019390935282810191909152517f8d8664e4328cbcd16b52db004cff5622d17995140cefada9f4578b857f9b204e9181900360600190a1610b783360125461154e565b610cd061137e565b600e55565b610cdd61137e565b601155565b60606003805461075390611cbc565b600e54601154600090610d05906001611e12565b83610d136001546000540390565b610d1d9190611e12565b108015610d46575060105433600090815260166020526040902054610d43908590611e12565b11155b80610d5b57506008546001600160a01b031633145b90508015610d6857600091505b610d728284611e25565b341015610dc65760405162461bcd60e51b815260206004820152601d60248201527f506c656173652073656e642074686520657861637420616d6f756e742e00000060448201526064015b60405180910390fd5b601254600d54610dd69190611e3c565b610de1906001611e12565b83610def6001546000540390565b610df99190611e12565b10610e325760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b6044820152606401610dbd565b600f54610e40906001611e12565b8310610e845760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b6044820152606401610dbd565b8015610eaf573360009081526016602052604081208054859290610ea9908490611e12565b90915550505b610b95338461154e565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f2d61137e565b6014805460ff19166001179055565b610f47848484610948565b6001600160a01b0383163b15610f8057610f6384848484611568565b610f80576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610f918261123d565b610ff55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610dbd565b60145460ff161515600003611096576015805461101190611cbc565b80601f016020809104026020016040519081016040528092919081815260200182805461103d90611cbc565b801561108a5780601f1061105f5761010080835404028352916020019161108a565b820191906000526020600020905b81548152906001019060200180831161106d57829003601f168201915b50505050509050919050565b60136110a183611654565b6040516020016110b2929190611e4f565b6040516020818303038152906040529050919050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6110fe61137e565b60156107408282611d3c565b61111261137e565b6001600160a01b0381166111775760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610dbd565b611180816114fc565b50565b6127106001600160601b03821611156111ae5760405162461bcd60e51b8152600401610dbd90611ee6565b6001600160a01b0382166112045760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610dbd565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600a55565b6000805482108015610715575050600090815260046020526040902054600160e01b161590565b6000816000548110156112b95760008181526004602052604081205490600160e01b821690036112b7575b806000036112b057506000190160008181526004602052604090205461128f565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6000828152600b602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291611347575060408051808201909152600a546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090611366906001600160601b031687611e25565b6113709190611f30565b915196919550909350505050565b6008546001600160a01b03163314610b785760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dbd565b60026009540361142a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610dbd565b6002600955565b6127106001600160601b038216111561145c5760405162461bcd60e51b8152600401610dbd90611ee6565b6001600160a01b0382166114b25760405162461bcd60e51b815260206004820152601b60248201527f455243323938313a20496e76616c696420706172616d657465727300000000006044820152606401610dbd565b6040805180820182526001600160a01b0393841681526001600160601b0392831660208083019182526000968752600b90529190942093519051909116600160a01b029116179055565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6107408282604051806020016040528060008152506116e7565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061159d903390899088908890600401611f52565b6020604051808303816000875af19250505080156115d8575060408051601f3d908101601f191682019092526115d591810190611f8f565b60015b611636573d808015611606576040519150601f19603f3d011682016040523d82523d6000602084013e61160b565b606091505b50805160000361162e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600061166183611754565b600101905060008167ffffffffffffffff81111561168157611681611ac7565b6040519080825280601f01601f1916602001820160405280156116ab576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846116b557509392505050565b6116f1838361182c565b6001600160a01b0383163b15610b95576000548281035b61171b6000868380600101945086611568565b611738576040516368d2bf6b60e11b815260040160405180910390fd5b81811061170857816000541461174d57600080fd5b5050505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106117935772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106117bf576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106117dd57662386f26fc10000830492506010015b6305f5e10083106117f5576305f5e100830492506008015b612710831061180957612710830492506004015b6064831061181b576064830492506002015b600a83106107155760010192915050565b60008054908290036118515760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461190057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001016118c8565b508160000361192157604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b03198116811461118057600080fd5b60006020828403121561195257600080fd5b81356112b08161192a565b80356001600160a01b038116811461197457600080fd5b919050565b80356001600160601b038116811461197457600080fd5b600080604083850312156119a357600080fd5b6119ac8361195d565b91506119ba60208401611979565b90509250929050565b60005b838110156119de5781810151838201526020016119c6565b50506000910152565b600081518084526119ff8160208601602086016119c3565b601f01601f19169290920160200192915050565b6020815260006112b060208301846119e7565b600060208284031215611a3857600080fd5b5035919050565b60008060408385031215611a5257600080fd5b611a5b8361195d565b946020939093013593505050565b600080600060608486031215611a7e57600080fd5b611a878461195d565b9250611a956020850161195d565b9150604084013590509250925092565b60008060408385031215611ab857600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611af857611af8611ac7565b604051601f8501601f19908116603f01168101908282118183101715611b2057611b20611ac7565b81604052809350858152868686011115611b3957600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611b6557600080fd5b813567ffffffffffffffff811115611b7c57600080fd5b8201601f81018413611b8d57600080fd5b61164c84823560208401611add565b60008060408385031215611baf57600080fd5b823591506119ba60208401611979565b600060208284031215611bd157600080fd5b6112b08261195d565b60008060408385031215611bed57600080fd5b611bf68361195d565b915060208301358015158114611c0b57600080fd5b809150509250929050565b60008060008060808587031215611c2c57600080fd5b611c358561195d565b9350611c436020860161195d565b925060408501359150606085013567ffffffffffffffff811115611c6657600080fd5b8501601f81018713611c7757600080fd5b611c8687823560208401611add565b91505092959194509250565b60008060408385031215611ca557600080fd5b611cae8361195d565b91506119ba6020840161195d565b600181811c90821680611cd057607f821691505b602082108103611cf057634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115610b9557600081815260208120601f850160051c81016020861015611d1d5750805b601f850160051c820191505b81811015610ad957828155600101611d29565b815167ffffffffffffffff811115611d5657611d56611ac7565b611d6a81611d648454611cbc565b84611cf6565b602080601f831160018114611d9f5760008415611d875750858301515b600019600386901b1c1916600185901b178555610ad9565b600085815260208120601f198616915b82811015611dce57888601518255948401946001909101908401611daf565b5085821015611dec5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082018082111561071557610715611dfc565b808202811582820484141761071557610715611dfc565b8181038181111561071557610715611dfc565b6000808454611e5d81611cbc565b60018281168015611e755760018114611e8a57611eb9565b60ff1984168752821515830287019450611eb9565b8860005260208060002060005b85811015611eb05781548a820152908401908201611e97565b50505082870194505b505050508351611ecd8183602088016119c3565b64173539b7b760d91b9101908152600501949350505050565b6020808252602a908201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646040820152692073616c65507269636560b01b606082015260800190565b600082611f4d57634e487b7160e01b600052601260045260246000fd5b500490565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f85908301846119e7565b9695505050505050565b600060208284031215611fa157600080fd5b81516112b08161192a56fea2646970667358221220a873d1f79b479b261b227dde89e25160a5d1672fdf5d86fc66bf810a6c93ac4664736f6c6343000813003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d53505a50657a5071364b75745a5466386e5174356935445a39464e7568313544366967437632734a52484c620000000000000000000000

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80636352211e1161012e5780639cb57d20116100ab578063c87b56dd1161006f578063c87b56dd14610618578063de314a5914610638578063e985e9c51461064e578063f2c4ce1e1461066e578063f2fde38b1461068e57600080fd5b80639cb57d20146105a7578063a0712d68146105bd578063a22cb465146105d0578063a475b5dd146105f0578063b88d4fde1461060557600080fd5b80637c69e207116100f25780637c69e2071461051f5780638da5cb5b1461053457806391b7f5ed1461055257806392910eec1461057257806395d89b411461059257600080fd5b80636352211e1461049557806367a4f4a9146104b55780636c0360eb146104d557806370a08231146104ea578063715018a61461050a57600080fd5b806322f4596f116101bc57806342842e0e1161018057806342842e0e14610412578063518302271461042557806355f804b31461043f5780635e1c4b601461045f578063616cdb1e1461047557600080fd5b806322f4596f1461038c57806323b872dd146103a25780632a55205a146103b55780633ccfd60b146103f457806341c66d0a146103fc57600080fd5b8063081c8c4411610203578063081c8c4414610315578063095ea7b31461032a5780630afb04db1461033d57806318160ddd14610353578063190866921461036c57600080fd5b806301ffc9a7146102405780630387da421461027557806304634d8d1461029957806306fdde03146102bb578063081812fc146102dd575b600080fd5b34801561024c57600080fd5b5061026061025b366004611940565b6106ae565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028b600e5481565b60405190815260200161026c565b3480156102a557600080fd5b506102b96102b4366004611990565b61071b565b005b3480156102c757600080fd5b506102d0610744565b60405161026c9190611a13565b3480156102e957600080fd5b506102fd6102f8366004611a26565b6107d6565b6040516001600160a01b03909116815260200161026c565b34801561032157600080fd5b506102d061081a565b6102b9610338366004611a3f565b6108a8565b34801561034957600080fd5b5061028b600c5481565b34801561035f57600080fd5b506001546000540361028b565b34801561037857600080fd5b506017546102fd906001600160a01b031681565b34801561039857600080fd5b5061028b600d5481565b6102b96103b0366004611a69565b610948565b3480156103c157600080fd5b506103d56103d0366004611aa5565b610ae1565b604080516001600160a01b03909316835260208301919091520161026c565b6102b9610b08565b34801561040857600080fd5b5061028b60125481565b6102b9610420366004611a69565b610b7a565b34801561043157600080fd5b506014546102609060ff1681565b34801561044b57600080fd5b506102b961045a366004611b53565b610b9a565b34801561046b57600080fd5b5061028b60115481565b34801561048157600080fd5b506102b9610490366004611a26565b610bae565b3480156104a157600080fd5b506102fd6104b0366004611a26565b610bbb565b3480156104c157600080fd5b506102b96104d0366004611b9c565b610bc6565b3480156104e157600080fd5b506102d0610be6565b3480156104f657600080fd5b5061028b610505366004611bbf565b610bf3565b34801561051657600080fd5b506102b9610c42565b34801561052b57600080fd5b506102b9610c54565b34801561054057600080fd5b506008546001600160a01b03166102fd565b34801561055e57600080fd5b506102b961056d366004611a26565b610cc8565b34801561057e57600080fd5b506102b961058d366004611a26565b610cd5565b34801561059e57600080fd5b506102d0610ce2565b3480156105b357600080fd5b5061028b60105481565b6102b96105cb366004611a26565b610cf1565b3480156105dc57600080fd5b506102b96105eb366004611bda565b610eb9565b3480156105fc57600080fd5b506102b9610f25565b6102b9610613366004611c16565b610f3c565b34801561062457600080fd5b506102d0610633366004611a26565b610f86565b34801561064457600080fd5b5061028b600f5481565b34801561065a57600080fd5b50610260610669366004611c92565b6110c8565b34801561067a57600080fd5b506102b9610689366004611b53565b6110f6565b34801561069a57600080fd5b506102b96106a9366004611bbf565b61110a565b60006001600160e01b0319821663152a902d60e11b14806106df57506301ffc9a760e01b6001600160e01b03198316145b806106fa57506380ac58cd60e01b6001600160e01b03198316145b806107155750635b5e139f60e01b6001600160e01b03198316145b92915050565b601780546001600160a01b0319166001600160a01b0384161790556107408282611183565b5050565b60606002805461075390611cbc565b80601f016020809104026020016040519081016040528092919081815260200182805461077f90611cbc565b80156107cc5780601f106107a1576101008083540402835291602001916107cc565b820191906000526020600020905b8154815290600101906020018083116107af57829003601f168201915b5050505050905090565b60006107e18261123d565b6107fe576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6015805461082790611cbc565b80601f016020809104026020016040519081016040528092919081815260200182805461085390611cbc565b80156108a05780601f10610875576101008083540402835291602001916108a0565b820191906000526020600020905b81548152906001019060200180831161088357829003601f168201915b505050505081565b60006108b382610bbb565b9050336001600160a01b038216146108ec576108cf81336110c8565b6108ec576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061095382611264565b9050836001600160a01b0316816001600160a01b0316146109865760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176109d3576109b686336110c8565b6109d357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166109fa57604051633a954ecd60e21b815260040160405180910390fd5b8015610a0557600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610a9757600184016000818152600460205260408120549003610a95576000548114610a955760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6000806000610af085856112d2565b6017546001600160a01b031697909650945050505050565b610b1061137e565b610b186113d8565b604051600090339047908381818185875af1925050503d8060008114610b5a576040519150601f19603f3d011682016040523d82523d6000602084013e610b5f565b606091505b5050905080610b6d57600080fd5b50610b786001600955565b565b610b9583838360405180602001604052806000815250610f3c565b505050565b610ba261137e565b60136107408282611d3c565b610bb661137e565b600f55565b600061071582611264565b610bce61137e565b6017546107409083906001600160a01b031683611431565b6013805461082790611cbc565b60006001600160a01b038216610c1c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610c4a61137e565b610b7860006114fc565b610c5c61137e565b601254600c6000828254610c709190611e12565b9091555050600c5460125460408051338152602081019390935282810191909152517f8d8664e4328cbcd16b52db004cff5622d17995140cefada9f4578b857f9b204e9181900360600190a1610b783360125461154e565b610cd061137e565b600e55565b610cdd61137e565b601155565b60606003805461075390611cbc565b600e54601154600090610d05906001611e12565b83610d136001546000540390565b610d1d9190611e12565b108015610d46575060105433600090815260166020526040902054610d43908590611e12565b11155b80610d5b57506008546001600160a01b031633145b90508015610d6857600091505b610d728284611e25565b341015610dc65760405162461bcd60e51b815260206004820152601d60248201527f506c656173652073656e642074686520657861637420616d6f756e742e00000060448201526064015b60405180910390fd5b601254600d54610dd69190611e3c565b610de1906001611e12565b83610def6001546000540390565b610df99190611e12565b10610e325760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b6044820152606401610dbd565b600f54610e40906001611e12565b8310610e845760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b6044820152606401610dbd565b8015610eaf573360009081526016602052604081208054859290610ea9908490611e12565b90915550505b610b95338461154e565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f2d61137e565b6014805460ff19166001179055565b610f47848484610948565b6001600160a01b0383163b15610f8057610f6384848484611568565b610f80576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610f918261123d565b610ff55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610dbd565b60145460ff161515600003611096576015805461101190611cbc565b80601f016020809104026020016040519081016040528092919081815260200182805461103d90611cbc565b801561108a5780601f1061105f5761010080835404028352916020019161108a565b820191906000526020600020905b81548152906001019060200180831161106d57829003601f168201915b50505050509050919050565b60136110a183611654565b6040516020016110b2929190611e4f565b6040516020818303038152906040529050919050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6110fe61137e565b60156107408282611d3c565b61111261137e565b6001600160a01b0381166111775760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610dbd565b611180816114fc565b50565b6127106001600160601b03821611156111ae5760405162461bcd60e51b8152600401610dbd90611ee6565b6001600160a01b0382166112045760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610dbd565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600a55565b6000805482108015610715575050600090815260046020526040902054600160e01b161590565b6000816000548110156112b95760008181526004602052604081205490600160e01b821690036112b7575b806000036112b057506000190160008181526004602052604090205461128f565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6000828152600b602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291611347575060408051808201909152600a546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090611366906001600160601b031687611e25565b6113709190611f30565b915196919550909350505050565b6008546001600160a01b03163314610b785760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dbd565b60026009540361142a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610dbd565b6002600955565b6127106001600160601b038216111561145c5760405162461bcd60e51b8152600401610dbd90611ee6565b6001600160a01b0382166114b25760405162461bcd60e51b815260206004820152601b60248201527f455243323938313a20496e76616c696420706172616d657465727300000000006044820152606401610dbd565b6040805180820182526001600160a01b0393841681526001600160601b0392831660208083019182526000968752600b90529190942093519051909116600160a01b029116179055565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6107408282604051806020016040528060008152506116e7565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061159d903390899088908890600401611f52565b6020604051808303816000875af19250505080156115d8575060408051601f3d908101601f191682019092526115d591810190611f8f565b60015b611636573d808015611606576040519150601f19603f3d011682016040523d82523d6000602084013e61160b565b606091505b50805160000361162e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600061166183611754565b600101905060008167ffffffffffffffff81111561168157611681611ac7565b6040519080825280601f01601f1916602001820160405280156116ab576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846116b557509392505050565b6116f1838361182c565b6001600160a01b0383163b15610b95576000548281035b61171b6000868380600101945086611568565b611738576040516368d2bf6b60e11b815260040160405180910390fd5b81811061170857816000541461174d57600080fd5b5050505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106117935772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106117bf576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106117dd57662386f26fc10000830492506010015b6305f5e10083106117f5576305f5e100830492506008015b612710831061180957612710830492506004015b6064831061181b576064830492506002015b600a83106107155760010192915050565b60008054908290036118515760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461190057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001016118c8565b508160000361192157604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b03198116811461118057600080fd5b60006020828403121561195257600080fd5b81356112b08161192a565b80356001600160a01b038116811461197457600080fd5b919050565b80356001600160601b038116811461197457600080fd5b600080604083850312156119a357600080fd5b6119ac8361195d565b91506119ba60208401611979565b90509250929050565b60005b838110156119de5781810151838201526020016119c6565b50506000910152565b600081518084526119ff8160208601602086016119c3565b601f01601f19169290920160200192915050565b6020815260006112b060208301846119e7565b600060208284031215611a3857600080fd5b5035919050565b60008060408385031215611a5257600080fd5b611a5b8361195d565b946020939093013593505050565b600080600060608486031215611a7e57600080fd5b611a878461195d565b9250611a956020850161195d565b9150604084013590509250925092565b60008060408385031215611ab857600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611af857611af8611ac7565b604051601f8501601f19908116603f01168101908282118183101715611b2057611b20611ac7565b81604052809350858152868686011115611b3957600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611b6557600080fd5b813567ffffffffffffffff811115611b7c57600080fd5b8201601f81018413611b8d57600080fd5b61164c84823560208401611add565b60008060408385031215611baf57600080fd5b823591506119ba60208401611979565b600060208284031215611bd157600080fd5b6112b08261195d565b60008060408385031215611bed57600080fd5b611bf68361195d565b915060208301358015158114611c0b57600080fd5b809150509250929050565b60008060008060808587031215611c2c57600080fd5b611c358561195d565b9350611c436020860161195d565b925060408501359150606085013567ffffffffffffffff811115611c6657600080fd5b8501601f81018713611c7757600080fd5b611c8687823560208401611add565b91505092959194509250565b60008060408385031215611ca557600080fd5b611cae8361195d565b91506119ba6020840161195d565b600181811c90821680611cd057607f821691505b602082108103611cf057634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115610b9557600081815260208120601f850160051c81016020861015611d1d5750805b601f850160051c820191505b81811015610ad957828155600101611d29565b815167ffffffffffffffff811115611d5657611d56611ac7565b611d6a81611d648454611cbc565b84611cf6565b602080601f831160018114611d9f5760008415611d875750858301515b600019600386901b1c1916600185901b178555610ad9565b600085815260208120601f198616915b82811015611dce57888601518255948401946001909101908401611daf565b5085821015611dec5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082018082111561071557610715611dfc565b808202811582820484141761071557610715611dfc565b8181038181111561071557610715611dfc565b6000808454611e5d81611cbc565b60018281168015611e755760018114611e8a57611eb9565b60ff1984168752821515830287019450611eb9565b8860005260208060002060005b85811015611eb05781548a820152908401908201611e97565b50505082870194505b505050508351611ecd8183602088016119c3565b64173539b7b760d91b9101908152600501949350505050565b6020808252602a908201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646040820152692073616c65507269636560b01b606082015260800190565b600082611f4d57634e487b7160e01b600052601260045260246000fd5b500490565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f85908301846119e7565b9695505050505050565b600060208284031215611fa157600080fd5b81516112b08161192a56fea2646970667358221220a873d1f79b479b261b227dde89e25160a5d1672fdf5d86fc66bf810a6c93ac4664736f6c63430008130033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d53505a50657a5071364b75745a5466386e5174356935445a39464e7568313544366967437632734a52484c620000000000000000000000

-----Decoded View---------------
Arg [0] : initBaseURI (string): ipfs://QmSPZPezPq6KutZTf8nQt5i5DZ9FNuh15D6igCv2sJRHLb

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [2] : 697066733a2f2f516d53505a50657a5071364b75745a5466386e517435693544
Arg [3] : 5a39464e7568313544366967437632734a52484c620000000000000000000000


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.