Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
5,555 SKami
Holders
4,096
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 SKamiLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
shadowkami
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-06-13 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; //SHADOWKAMI// /** * @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; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // 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(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: contracts/contract.sol pragma solidity ^0.8.4; contract shadowkami is ERC721A, Ownable { uint256 public MAX_PER_WALLET = 10; uint256 public MAX_SUPPLY = 5555; uint256 public PRICE = 0.003 ether; uint256 public FREEAMOUNT = 1; string public _baseTokenURI; bool public isEnable = false; constructor(string memory baseURI) ERC721A ("Shadowkami", "SKami") { _baseTokenURI = baseURI; } function mint(uint256 quantity) external payable { require(quantity > 0); require(isEnable); require(_totalMinted() + quantity <= MAX_SUPPLY); uint256 numberMinted = _numberMinted(msg.sender); require(numberMinted + quantity <= MAX_PER_WALLET); if (numberMinted > 0) { require(msg.value == quantity * PRICE); } else { require(msg.value == (quantity - FREEAMOUNT) * PRICE); } _mint(msg.sender, quantity); } function airdropToOwner() public onlyOwner { require(_totalMinted() <= MAX_SUPPLY); _mint(msg.sender, 1); } function setEnable(bool isCurrentEnable) public onlyOwner { isEnable = isCurrentEnable; } function setFreeAmount(uint256 freeAmount) public onlyOwner { FREEAMOUNT = freeAmount; } function setMaxSupply(uint256 maxSupply) public onlyOwner { MAX_SUPPLY = maxSupply; } function setMintPrice(uint256 mintPrice) public onlyOwner { PRICE = mintPrice; } function setBaseURI(string calldata baseURI) public onlyOwner { _baseTokenURI = baseURI; } function _baseURI() internal view override returns (string memory) { return _baseTokenURI; } function withdraw() public onlyOwner { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer Failed"); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseURI","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":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":"FREEAMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdropToOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isEnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isCurrentEnable","type":"bool"}],"name":"setEnable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"freeAmount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintPrice","type":"uint256"}],"name":"setMintPrice","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":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600a6009556115b3600a55660aa87bee538000600b556001600c556000600e60006101000a81548160ff0219169083151502179055503480156200004757600080fd5b50604051620031563803806200315683398181016040528101906200006d9190620003b4565b6040518060400160405280600a81526020017f536861646f776b616d69000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f534b616d690000000000000000000000000000000000000000000000000000008152508160029081620000ea919062000650565b508060039081620000fc919062000650565b506200010d6200014e60201b60201c565b600081905550505062000135620001296200015360201b60201c565b6200015b60201b60201c565b80600d908162000146919062000650565b505062000737565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200028a826200023f565b810181811067ffffffffffffffff82111715620002ac57620002ab62000250565b5b80604052505050565b6000620002c162000221565b9050620002cf82826200027f565b919050565b600067ffffffffffffffff821115620002f257620002f162000250565b5b620002fd826200023f565b9050602081019050919050565b60005b838110156200032a5780820151818401526020810190506200030d565b60008484015250505050565b60006200034d6200034784620002d4565b620002b5565b9050828152602081018484840111156200036c576200036b6200023a565b5b620003798482856200030a565b509392505050565b600082601f83011262000399576200039862000235565b5b8151620003ab84826020860162000336565b91505092915050565b600060208284031215620003cd57620003cc6200022b565b5b600082015167ffffffffffffffff811115620003ee57620003ed62000230565b5b620003fc8482850162000381565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200045857607f821691505b6020821081036200046e576200046d62000410565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004d87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000499565b620004e4868362000499565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005316200052b6200052584620004fc565b62000506565b620004fc565b9050919050565b6000819050919050565b6200054d8362000510565b620005656200055c8262000538565b848454620004a6565b825550505050565b600090565b6200057c6200056d565b6200058981848462000542565b505050565b5b81811015620005b157620005a560008262000572565b6001810190506200058f565b5050565b601f8211156200060057620005ca8162000474565b620005d58462000489565b81016020851015620005e5578190505b620005fd620005f48562000489565b8301826200058e565b50505b505050565b600082821c905092915050565b6000620006256000198460080262000605565b1980831691505092915050565b600062000640838362000612565b9150826002028217905092915050565b6200065b8262000405565b67ffffffffffffffff81111562000677576200067662000250565b5b6200068382546200043f565b62000690828285620005b5565b600060209050601f831160018114620006c85760008415620006b3578287015190505b620006bf858262000632565b8655506200072f565b601f198416620006d88662000474565b60005b828110156200070257848901518255600182019150602085019450602081019050620006db565b868310156200072257848901516200071e601f89168262000612565b8355505b6001600288020188555050505b505050505050565b612a0f80620007476000396000f3fe6080604052600436106101d85760003560e01c806370a0823111610102578063a22cb46511610095578063e985e9c511610064578063e985e9c514610643578063f2fde38b14610680578063f4a0a528146106a9578063fd6789d7146106d2576101d8565b8063a22cb46514610596578063b88d4fde146105bf578063c87b56dd146105db578063cfc86f7b14610618576101d8565b80638da5cb5b116100d15780638da5cb5b146104fb57806392910eec1461052657806395d89b411461054f578063a0712d681461057a576101d8565b806370a0823114610453578063715018a6146104905780637726bed3146104a75780638d859f3e146104d0576101d8565b806332cb6b0c1161017a5780634bb77d68116101495780634bb77d681461039957806355f804b3146103c45780636352211e146103ed5780636f8b44b01461042a576101d8565b806332cb6b0c146103105780633559b19a1461033b5780633ccfd60b1461036657806342842e0e1461037d576101d8565b8063095ea7b3116101b6578063095ea7b3146102825780630f2cdd6c1461029e57806318160ddd146102c957806323b872dd146102f4576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190611cfe565b6106e9565b6040516102119190611d46565b60405180910390f35b34801561022657600080fd5b5061022f61077b565b60405161023c9190611df1565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190611e49565b61080d565b6040516102799190611eb7565b60405180910390f35b61029c60048036038101906102979190611efe565b61088c565b005b3480156102aa57600080fd5b506102b36109d0565b6040516102c09190611f4d565b60405180910390f35b3480156102d557600080fd5b506102de6109d6565b6040516102eb9190611f4d565b60405180910390f35b61030e60048036038101906103099190611f68565b6109ed565b005b34801561031c57600080fd5b50610325610d0f565b6040516103329190611f4d565b60405180910390f35b34801561034757600080fd5b50610350610d15565b60405161035d9190611f4d565b60405180910390f35b34801561037257600080fd5b5061037b610d1b565b005b61039760048036038101906103929190611f68565b610dd2565b005b3480156103a557600080fd5b506103ae610df2565b6040516103bb9190611d46565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e69190612020565b610e05565b005b3480156103f957600080fd5b50610414600480360381019061040f9190611e49565b610e23565b6040516104219190611eb7565b60405180910390f35b34801561043657600080fd5b50610451600480360381019061044c9190611e49565b610e35565b005b34801561045f57600080fd5b5061047a6004803603810190610475919061206d565b610e47565b6040516104879190611f4d565b60405180910390f35b34801561049c57600080fd5b506104a5610eff565b005b3480156104b357600080fd5b506104ce60048036038101906104c991906120c6565b610f13565b005b3480156104dc57600080fd5b506104e5610f38565b6040516104f29190611f4d565b60405180910390f35b34801561050757600080fd5b50610510610f3e565b60405161051d9190611eb7565b60405180910390f35b34801561053257600080fd5b5061054d60048036038101906105489190611e49565b610f68565b005b34801561055b57600080fd5b50610564610f7a565b6040516105719190611df1565b60405180910390f35b610594600480360381019061058f9190611e49565b61100c565b005b3480156105a257600080fd5b506105bd60048036038101906105b891906120f3565b6110d6565b005b6105d960048036038101906105d49190612263565b6111e1565b005b3480156105e757600080fd5b5061060260048036038101906105fd9190611e49565b611254565b60405161060f9190611df1565b60405180910390f35b34801561062457600080fd5b5061062d6112f2565b60405161063a9190611df1565b60405180910390f35b34801561064f57600080fd5b5061066a600480360381019061066591906122e6565b611380565b6040516106779190611d46565b60405180910390f35b34801561068c57600080fd5b506106a760048036038101906106a2919061206d565b611414565b005b3480156106b557600080fd5b506106d060048036038101906106cb9190611e49565b611497565b005b3480156106de57600080fd5b506106e76114a9565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107745750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461078a90612355565b80601f01602080910402602001604051908101604052809291908181526020018280546107b690612355565b80156108035780601f106107d857610100808354040283529160200191610803565b820191906000526020600020905b8154815290600101906020018083116107e657829003601f168201915b5050505050905090565b6000610818826114d4565b61084e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061089782610e23565b90508073ffffffffffffffffffffffffffffffffffffffff166108b8611533565b73ffffffffffffffffffffffffffffffffffffffff161461091b576108e4816108df611533565b611380565b61091a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60095481565b60006109e061153b565b6001546000540303905090565b60006109f882611540565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a5f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a6b8461160c565b91509150610a818187610a7c611533565b611633565b610acd57610a9686610a91611533565b611380565b610acc576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610b33576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b408686866001611677565b8015610b4b57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c1985610bf588888761167d565b7c0200000000000000000000000000000000000000000000000000000000176116a5565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610c9f5760006001850190506000600460008381526020019081526020016000205403610c9d576000548114610c9c578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d0786868660016116d0565b505050505050565b600a5481565b600c5481565b610d236116d6565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610d49906123b7565b60006040518083038185875af1925050503d8060008114610d86576040519150601f19603f3d011682016040523d82523d6000602084013e610d8b565b606091505b5050905080610dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc690612418565b60405180910390fd5b50565b610ded838383604051806020016040528060008152506111e1565b505050565b600e60009054906101000a900460ff1681565b610e0d6116d6565b8181600d9182610e1e9291906125ef565b505050565b6000610e2e82611540565b9050919050565b610e3d6116d6565b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eae576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f076116d6565b610f116000611754565b565b610f1b6116d6565b80600e60006101000a81548160ff02191690831515021790555050565b600b5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f706116d6565b80600c8190555050565b606060038054610f8990612355565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb590612355565b80156110025780601f10610fd757610100808354040283529160200191611002565b820191906000526020600020905b815481529060010190602001808311610fe557829003601f168201915b5050505050905090565b6000811161101957600080fd5b600e60009054906101000a900460ff1661103257600080fd5b600a548161103e61181a565b61104891906126ee565b111561105357600080fd5b600061105e3361182d565b9050600954828261106f91906126ee565b111561107a57600080fd5b60008111156110a157600b54826110919190612722565b341461109c57600080fd5b6110c8565b600b54600c54836110b29190612764565b6110bc9190612722565b34146110c757600080fd5b5b6110d23383611884565b5050565b80600760006110e3611533565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611190611533565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111d59190611d46565b60405180910390a35050565b6111ec8484846109ed565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461124e5761121784848484611a3f565b61124d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061125f826114d4565b611295576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061129f611b8f565b905060008151036112bf57604051806020016040528060008152506112ea565b806112c984611c21565b6040516020016112da9291906127d4565b6040516020818303038152906040525b915050919050565b600d80546112ff90612355565b80601f016020809104026020016040519081016040528092919081815260200182805461132b90612355565b80156113785780601f1061134d57610100808354040283529160200191611378565b820191906000526020600020905b81548152906001019060200180831161135b57829003601f168201915b505050505081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61141c6116d6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361148b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114829061286a565b60405180910390fd5b61149481611754565b50565b61149f6116d6565b80600b8190555050565b6114b16116d6565b600a546114bc61181a565b11156114c757600080fd5b6114d2336001611884565b565b6000816114df61153b565b111580156114ee575060005482105b801561152c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b6000808290508061154f61153b565b116115d5576000548110156115d45760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036115d2575b600081036115c857600460008360019003935083815260200190815260200160002054905061159e565b8092505050611607565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611694868684611c71565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6116de611c7a565b73ffffffffffffffffffffffffffffffffffffffff166116fc610f3e565b73ffffffffffffffffffffffffffffffffffffffff1614611752576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611749906128d6565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061182461153b565b60005403905090565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600080549050600082036118c4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118d16000848385611677565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061194883611939600086600061167d565b61194285611c82565b176116a5565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146119e957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506119ae565b5060008203611a24576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611a3a60008483856116d0565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a65611533565b8786866040518563ffffffff1660e01b8152600401611a87949392919061294b565b6020604051808303816000875af1925050508015611ac357506040513d601f19601f82011682018060405250810190611ac091906129ac565b60015b611b3c573d8060008114611af3576040519150601f19603f3d011682016040523d82523d6000602084013e611af8565b606091505b506000815103611b34576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d8054611b9e90612355565b80601f0160208091040260200160405190810160405280929190818152602001828054611bca90612355565b8015611c175780601f10611bec57610100808354040283529160200191611c17565b820191906000526020600020905b815481529060010190602001808311611bfa57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611c5c57600184039350600a81066030018453600a8104905080611c3a575b50828103602084039350808452505050919050565b60009392505050565b600033905090565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611cdb81611ca6565b8114611ce657600080fd5b50565b600081359050611cf881611cd2565b92915050565b600060208284031215611d1457611d13611c9c565b5b6000611d2284828501611ce9565b91505092915050565b60008115159050919050565b611d4081611d2b565b82525050565b6000602082019050611d5b6000830184611d37565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611d9b578082015181840152602081019050611d80565b60008484015250505050565b6000601f19601f8301169050919050565b6000611dc382611d61565b611dcd8185611d6c565b9350611ddd818560208601611d7d565b611de681611da7565b840191505092915050565b60006020820190508181036000830152611e0b8184611db8565b905092915050565b6000819050919050565b611e2681611e13565b8114611e3157600080fd5b50565b600081359050611e4381611e1d565b92915050565b600060208284031215611e5f57611e5e611c9c565b5b6000611e6d84828501611e34565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611ea182611e76565b9050919050565b611eb181611e96565b82525050565b6000602082019050611ecc6000830184611ea8565b92915050565b611edb81611e96565b8114611ee657600080fd5b50565b600081359050611ef881611ed2565b92915050565b60008060408385031215611f1557611f14611c9c565b5b6000611f2385828601611ee9565b9250506020611f3485828601611e34565b9150509250929050565b611f4781611e13565b82525050565b6000602082019050611f626000830184611f3e565b92915050565b600080600060608486031215611f8157611f80611c9c565b5b6000611f8f86828701611ee9565b9350506020611fa086828701611ee9565b9250506040611fb186828701611e34565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112611fe057611fdf611fbb565b5b8235905067ffffffffffffffff811115611ffd57611ffc611fc0565b5b60208301915083600182028301111561201957612018611fc5565b5b9250929050565b6000806020838503121561203757612036611c9c565b5b600083013567ffffffffffffffff81111561205557612054611ca1565b5b61206185828601611fca565b92509250509250929050565b60006020828403121561208357612082611c9c565b5b600061209184828501611ee9565b91505092915050565b6120a381611d2b565b81146120ae57600080fd5b50565b6000813590506120c08161209a565b92915050565b6000602082840312156120dc576120db611c9c565b5b60006120ea848285016120b1565b91505092915050565b6000806040838503121561210a57612109611c9c565b5b600061211885828601611ee9565b9250506020612129858286016120b1565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61217082611da7565b810181811067ffffffffffffffff8211171561218f5761218e612138565b5b80604052505050565b60006121a2611c92565b90506121ae8282612167565b919050565b600067ffffffffffffffff8211156121ce576121cd612138565b5b6121d782611da7565b9050602081019050919050565b82818337600083830152505050565b6000612206612201846121b3565b612198565b90508281526020810184848401111561222257612221612133565b5b61222d8482856121e4565b509392505050565b600082601f83011261224a57612249611fbb565b5b813561225a8482602086016121f3565b91505092915050565b6000806000806080858703121561227d5761227c611c9c565b5b600061228b87828801611ee9565b945050602061229c87828801611ee9565b93505060406122ad87828801611e34565b925050606085013567ffffffffffffffff8111156122ce576122cd611ca1565b5b6122da87828801612235565b91505092959194509250565b600080604083850312156122fd576122fc611c9c565b5b600061230b85828601611ee9565b925050602061231c85828601611ee9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061236d57607f821691505b6020821081036123805761237f612326565b5b50919050565b600081905092915050565b50565b60006123a1600083612386565b91506123ac82612391565b600082019050919050565b60006123c282612394565b9150819050919050565b7f5472616e73666572204661696c65640000000000000000000000000000000000600082015250565b6000612402600f83611d6c565b915061240d826123cc565b602082019050919050565b60006020820190508181036000830152612431816123f5565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026124a57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612468565b6124af8683612468565b95508019841693508086168417925050509392505050565b6000819050919050565b60006124ec6124e76124e284611e13565b6124c7565b611e13565b9050919050565b6000819050919050565b612506836124d1565b61251a612512826124f3565b848454612475565b825550505050565b600090565b61252f612522565b61253a8184846124fd565b505050565b5b8181101561255e57612553600082612527565b600181019050612540565b5050565b601f8211156125a35761257481612443565b61257d84612458565b8101602085101561258c578190505b6125a061259885612458565b83018261253f565b50505b505050565b600082821c905092915050565b60006125c6600019846008026125a8565b1980831691505092915050565b60006125df83836125b5565b9150826002028217905092915050565b6125f98383612438565b67ffffffffffffffff81111561261257612611612138565b5b61261c8254612355565b612627828285612562565b6000601f8311600181146126565760008415612644578287013590505b61264e85826125d3565b8655506126b6565b601f19841661266486612443565b60005b8281101561268c57848901358255600182019150602085019450602081019050612667565b868310156126a957848901356126a5601f8916826125b5565b8355505b6001600288020188555050505b50505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006126f982611e13565b915061270483611e13565b925082820190508082111561271c5761271b6126bf565b5b92915050565b600061272d82611e13565b915061273883611e13565b925082820261274681611e13565b9150828204841483151761275d5761275c6126bf565b5b5092915050565b600061276f82611e13565b915061277a83611e13565b9250828203905081811115612792576127916126bf565b5b92915050565b600081905092915050565b60006127ae82611d61565b6127b88185612798565b93506127c8818560208601611d7d565b80840191505092915050565b60006127e082856127a3565b91506127ec82846127a3565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612854602683611d6c565b915061285f826127f8565b604082019050919050565b6000602082019050818103600083015261288381612847565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006128c0602083611d6c565b91506128cb8261288a565b602082019050919050565b600060208201905081810360008301526128ef816128b3565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061291d826128f6565b6129278185612901565b9350612937818560208601611d7d565b61294081611da7565b840191505092915050565b60006080820190506129606000830187611ea8565b61296d6020830186611ea8565b61297a6040830185611f3e565b818103606083015261298c8184612912565b905095945050505050565b6000815190506129a681611cd2565b92915050565b6000602082840312156129c2576129c1611c9c565b5b60006129d084828501612997565b9150509291505056fea2646970667358221220fd3b4686cdbff08517932d49a158d7007e84a5ff0665ca1a4952f98d296c97bc64736f6c634300081100330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005968747470733a2f2f62616679626569627562676e6c74616c686637707a326a6c79776d62706777666d6b7263657635706635686b7673337571716f6a36686f647534612e697066732e6e667473746f726167652e6c696e6b2f00000000000000
Deployed Bytecode
0x6080604052600436106101d85760003560e01c806370a0823111610102578063a22cb46511610095578063e985e9c511610064578063e985e9c514610643578063f2fde38b14610680578063f4a0a528146106a9578063fd6789d7146106d2576101d8565b8063a22cb46514610596578063b88d4fde146105bf578063c87b56dd146105db578063cfc86f7b14610618576101d8565b80638da5cb5b116100d15780638da5cb5b146104fb57806392910eec1461052657806395d89b411461054f578063a0712d681461057a576101d8565b806370a0823114610453578063715018a6146104905780637726bed3146104a75780638d859f3e146104d0576101d8565b806332cb6b0c1161017a5780634bb77d68116101495780634bb77d681461039957806355f804b3146103c45780636352211e146103ed5780636f8b44b01461042a576101d8565b806332cb6b0c146103105780633559b19a1461033b5780633ccfd60b1461036657806342842e0e1461037d576101d8565b8063095ea7b3116101b6578063095ea7b3146102825780630f2cdd6c1461029e57806318160ddd146102c957806323b872dd146102f4576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190611cfe565b6106e9565b6040516102119190611d46565b60405180910390f35b34801561022657600080fd5b5061022f61077b565b60405161023c9190611df1565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190611e49565b61080d565b6040516102799190611eb7565b60405180910390f35b61029c60048036038101906102979190611efe565b61088c565b005b3480156102aa57600080fd5b506102b36109d0565b6040516102c09190611f4d565b60405180910390f35b3480156102d557600080fd5b506102de6109d6565b6040516102eb9190611f4d565b60405180910390f35b61030e60048036038101906103099190611f68565b6109ed565b005b34801561031c57600080fd5b50610325610d0f565b6040516103329190611f4d565b60405180910390f35b34801561034757600080fd5b50610350610d15565b60405161035d9190611f4d565b60405180910390f35b34801561037257600080fd5b5061037b610d1b565b005b61039760048036038101906103929190611f68565b610dd2565b005b3480156103a557600080fd5b506103ae610df2565b6040516103bb9190611d46565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e69190612020565b610e05565b005b3480156103f957600080fd5b50610414600480360381019061040f9190611e49565b610e23565b6040516104219190611eb7565b60405180910390f35b34801561043657600080fd5b50610451600480360381019061044c9190611e49565b610e35565b005b34801561045f57600080fd5b5061047a6004803603810190610475919061206d565b610e47565b6040516104879190611f4d565b60405180910390f35b34801561049c57600080fd5b506104a5610eff565b005b3480156104b357600080fd5b506104ce60048036038101906104c991906120c6565b610f13565b005b3480156104dc57600080fd5b506104e5610f38565b6040516104f29190611f4d565b60405180910390f35b34801561050757600080fd5b50610510610f3e565b60405161051d9190611eb7565b60405180910390f35b34801561053257600080fd5b5061054d60048036038101906105489190611e49565b610f68565b005b34801561055b57600080fd5b50610564610f7a565b6040516105719190611df1565b60405180910390f35b610594600480360381019061058f9190611e49565b61100c565b005b3480156105a257600080fd5b506105bd60048036038101906105b891906120f3565b6110d6565b005b6105d960048036038101906105d49190612263565b6111e1565b005b3480156105e757600080fd5b5061060260048036038101906105fd9190611e49565b611254565b60405161060f9190611df1565b60405180910390f35b34801561062457600080fd5b5061062d6112f2565b60405161063a9190611df1565b60405180910390f35b34801561064f57600080fd5b5061066a600480360381019061066591906122e6565b611380565b6040516106779190611d46565b60405180910390f35b34801561068c57600080fd5b506106a760048036038101906106a2919061206d565b611414565b005b3480156106b557600080fd5b506106d060048036038101906106cb9190611e49565b611497565b005b3480156106de57600080fd5b506106e76114a9565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107745750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461078a90612355565b80601f01602080910402602001604051908101604052809291908181526020018280546107b690612355565b80156108035780601f106107d857610100808354040283529160200191610803565b820191906000526020600020905b8154815290600101906020018083116107e657829003601f168201915b5050505050905090565b6000610818826114d4565b61084e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061089782610e23565b90508073ffffffffffffffffffffffffffffffffffffffff166108b8611533565b73ffffffffffffffffffffffffffffffffffffffff161461091b576108e4816108df611533565b611380565b61091a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60095481565b60006109e061153b565b6001546000540303905090565b60006109f882611540565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a5f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a6b8461160c565b91509150610a818187610a7c611533565b611633565b610acd57610a9686610a91611533565b611380565b610acc576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610b33576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b408686866001611677565b8015610b4b57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c1985610bf588888761167d565b7c0200000000000000000000000000000000000000000000000000000000176116a5565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610c9f5760006001850190506000600460008381526020019081526020016000205403610c9d576000548114610c9c578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d0786868660016116d0565b505050505050565b600a5481565b600c5481565b610d236116d6565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610d49906123b7565b60006040518083038185875af1925050503d8060008114610d86576040519150601f19603f3d011682016040523d82523d6000602084013e610d8b565b606091505b5050905080610dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc690612418565b60405180910390fd5b50565b610ded838383604051806020016040528060008152506111e1565b505050565b600e60009054906101000a900460ff1681565b610e0d6116d6565b8181600d9182610e1e9291906125ef565b505050565b6000610e2e82611540565b9050919050565b610e3d6116d6565b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eae576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f076116d6565b610f116000611754565b565b610f1b6116d6565b80600e60006101000a81548160ff02191690831515021790555050565b600b5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f706116d6565b80600c8190555050565b606060038054610f8990612355565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb590612355565b80156110025780601f10610fd757610100808354040283529160200191611002565b820191906000526020600020905b815481529060010190602001808311610fe557829003601f168201915b5050505050905090565b6000811161101957600080fd5b600e60009054906101000a900460ff1661103257600080fd5b600a548161103e61181a565b61104891906126ee565b111561105357600080fd5b600061105e3361182d565b9050600954828261106f91906126ee565b111561107a57600080fd5b60008111156110a157600b54826110919190612722565b341461109c57600080fd5b6110c8565b600b54600c54836110b29190612764565b6110bc9190612722565b34146110c757600080fd5b5b6110d23383611884565b5050565b80600760006110e3611533565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611190611533565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111d59190611d46565b60405180910390a35050565b6111ec8484846109ed565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461124e5761121784848484611a3f565b61124d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061125f826114d4565b611295576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061129f611b8f565b905060008151036112bf57604051806020016040528060008152506112ea565b806112c984611c21565b6040516020016112da9291906127d4565b6040516020818303038152906040525b915050919050565b600d80546112ff90612355565b80601f016020809104026020016040519081016040528092919081815260200182805461132b90612355565b80156113785780601f1061134d57610100808354040283529160200191611378565b820191906000526020600020905b81548152906001019060200180831161135b57829003601f168201915b505050505081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61141c6116d6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361148b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114829061286a565b60405180910390fd5b61149481611754565b50565b61149f6116d6565b80600b8190555050565b6114b16116d6565b600a546114bc61181a565b11156114c757600080fd5b6114d2336001611884565b565b6000816114df61153b565b111580156114ee575060005482105b801561152c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b6000808290508061154f61153b565b116115d5576000548110156115d45760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036115d2575b600081036115c857600460008360019003935083815260200190815260200160002054905061159e565b8092505050611607565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611694868684611c71565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6116de611c7a565b73ffffffffffffffffffffffffffffffffffffffff166116fc610f3e565b73ffffffffffffffffffffffffffffffffffffffff1614611752576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611749906128d6565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061182461153b565b60005403905090565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600080549050600082036118c4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118d16000848385611677565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061194883611939600086600061167d565b61194285611c82565b176116a5565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146119e957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506119ae565b5060008203611a24576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611a3a60008483856116d0565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a65611533565b8786866040518563ffffffff1660e01b8152600401611a87949392919061294b565b6020604051808303816000875af1925050508015611ac357506040513d601f19601f82011682018060405250810190611ac091906129ac565b60015b611b3c573d8060008114611af3576040519150601f19603f3d011682016040523d82523d6000602084013e611af8565b606091505b506000815103611b34576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d8054611b9e90612355565b80601f0160208091040260200160405190810160405280929190818152602001828054611bca90612355565b8015611c175780601f10611bec57610100808354040283529160200191611c17565b820191906000526020600020905b815481529060010190602001808311611bfa57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611c5c57600184039350600a81066030018453600a8104905080611c3a575b50828103602084039350808452505050919050565b60009392505050565b600033905090565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611cdb81611ca6565b8114611ce657600080fd5b50565b600081359050611cf881611cd2565b92915050565b600060208284031215611d1457611d13611c9c565b5b6000611d2284828501611ce9565b91505092915050565b60008115159050919050565b611d4081611d2b565b82525050565b6000602082019050611d5b6000830184611d37565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611d9b578082015181840152602081019050611d80565b60008484015250505050565b6000601f19601f8301169050919050565b6000611dc382611d61565b611dcd8185611d6c565b9350611ddd818560208601611d7d565b611de681611da7565b840191505092915050565b60006020820190508181036000830152611e0b8184611db8565b905092915050565b6000819050919050565b611e2681611e13565b8114611e3157600080fd5b50565b600081359050611e4381611e1d565b92915050565b600060208284031215611e5f57611e5e611c9c565b5b6000611e6d84828501611e34565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611ea182611e76565b9050919050565b611eb181611e96565b82525050565b6000602082019050611ecc6000830184611ea8565b92915050565b611edb81611e96565b8114611ee657600080fd5b50565b600081359050611ef881611ed2565b92915050565b60008060408385031215611f1557611f14611c9c565b5b6000611f2385828601611ee9565b9250506020611f3485828601611e34565b9150509250929050565b611f4781611e13565b82525050565b6000602082019050611f626000830184611f3e565b92915050565b600080600060608486031215611f8157611f80611c9c565b5b6000611f8f86828701611ee9565b9350506020611fa086828701611ee9565b9250506040611fb186828701611e34565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112611fe057611fdf611fbb565b5b8235905067ffffffffffffffff811115611ffd57611ffc611fc0565b5b60208301915083600182028301111561201957612018611fc5565b5b9250929050565b6000806020838503121561203757612036611c9c565b5b600083013567ffffffffffffffff81111561205557612054611ca1565b5b61206185828601611fca565b92509250509250929050565b60006020828403121561208357612082611c9c565b5b600061209184828501611ee9565b91505092915050565b6120a381611d2b565b81146120ae57600080fd5b50565b6000813590506120c08161209a565b92915050565b6000602082840312156120dc576120db611c9c565b5b60006120ea848285016120b1565b91505092915050565b6000806040838503121561210a57612109611c9c565b5b600061211885828601611ee9565b9250506020612129858286016120b1565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61217082611da7565b810181811067ffffffffffffffff8211171561218f5761218e612138565b5b80604052505050565b60006121a2611c92565b90506121ae8282612167565b919050565b600067ffffffffffffffff8211156121ce576121cd612138565b5b6121d782611da7565b9050602081019050919050565b82818337600083830152505050565b6000612206612201846121b3565b612198565b90508281526020810184848401111561222257612221612133565b5b61222d8482856121e4565b509392505050565b600082601f83011261224a57612249611fbb565b5b813561225a8482602086016121f3565b91505092915050565b6000806000806080858703121561227d5761227c611c9c565b5b600061228b87828801611ee9565b945050602061229c87828801611ee9565b93505060406122ad87828801611e34565b925050606085013567ffffffffffffffff8111156122ce576122cd611ca1565b5b6122da87828801612235565b91505092959194509250565b600080604083850312156122fd576122fc611c9c565b5b600061230b85828601611ee9565b925050602061231c85828601611ee9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061236d57607f821691505b6020821081036123805761237f612326565b5b50919050565b600081905092915050565b50565b60006123a1600083612386565b91506123ac82612391565b600082019050919050565b60006123c282612394565b9150819050919050565b7f5472616e73666572204661696c65640000000000000000000000000000000000600082015250565b6000612402600f83611d6c565b915061240d826123cc565b602082019050919050565b60006020820190508181036000830152612431816123f5565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026124a57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612468565b6124af8683612468565b95508019841693508086168417925050509392505050565b6000819050919050565b60006124ec6124e76124e284611e13565b6124c7565b611e13565b9050919050565b6000819050919050565b612506836124d1565b61251a612512826124f3565b848454612475565b825550505050565b600090565b61252f612522565b61253a8184846124fd565b505050565b5b8181101561255e57612553600082612527565b600181019050612540565b5050565b601f8211156125a35761257481612443565b61257d84612458565b8101602085101561258c578190505b6125a061259885612458565b83018261253f565b50505b505050565b600082821c905092915050565b60006125c6600019846008026125a8565b1980831691505092915050565b60006125df83836125b5565b9150826002028217905092915050565b6125f98383612438565b67ffffffffffffffff81111561261257612611612138565b5b61261c8254612355565b612627828285612562565b6000601f8311600181146126565760008415612644578287013590505b61264e85826125d3565b8655506126b6565b601f19841661266486612443565b60005b8281101561268c57848901358255600182019150602085019450602081019050612667565b868310156126a957848901356126a5601f8916826125b5565b8355505b6001600288020188555050505b50505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006126f982611e13565b915061270483611e13565b925082820190508082111561271c5761271b6126bf565b5b92915050565b600061272d82611e13565b915061273883611e13565b925082820261274681611e13565b9150828204841483151761275d5761275c6126bf565b5b5092915050565b600061276f82611e13565b915061277a83611e13565b9250828203905081811115612792576127916126bf565b5b92915050565b600081905092915050565b60006127ae82611d61565b6127b88185612798565b93506127c8818560208601611d7d565b80840191505092915050565b60006127e082856127a3565b91506127ec82846127a3565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612854602683611d6c565b915061285f826127f8565b604082019050919050565b6000602082019050818103600083015261288381612847565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006128c0602083611d6c565b91506128cb8261288a565b602082019050919050565b600060208201905081810360008301526128ef816128b3565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061291d826128f6565b6129278185612901565b9350612937818560208601611d7d565b61294081611da7565b840191505092915050565b60006080820190506129606000830187611ea8565b61296d6020830186611ea8565b61297a6040830185611f3e565b818103606083015261298c8184612912565b905095945050505050565b6000815190506129a681611cd2565b92915050565b6000602082840312156129c2576129c1611c9c565b5b60006129d084828501612997565b9150509291505056fea2646970667358221220fd3b4686cdbff08517932d49a158d7007e84a5ff0665ca1a4952f98d296c97bc64736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005968747470733a2f2f62616679626569627562676e6c74616c686637707a326a6c79776d62706777666d6b7263657635706635686b7673337571716f6a36686f647534612e697066732e6e667473746f726167652e6c696e6b2f00000000000000
-----Decoded View---------------
Arg [0] : baseURI (string): https://bafybeibubgnltalhf7pz2jlywmbpgwfmkrcev5pf5hkvs3uqqoj6hodu4a.ipfs.nftstorage.link/
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000059
Arg [2] : 68747470733a2f2f62616679626569627562676e6c74616c686637707a326a6c
Arg [3] : 79776d62706777666d6b7263657635706635686b7673337571716f6a36686f64
Arg [4] : 7534612e697066732e6e667473746f726167652e6c696e6b2f00000000000000
Deployed Bytecode Sourcemap
55138:1894:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22039:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22941:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29432:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28865:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55185:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18692:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33071:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55226:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55306:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56859:170;;;;;;;;;;;;;:::i;:::-;;35992:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55376:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56633:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24334:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56424:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19876:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2818:103;;;;;;;;;;;;;:::i;:::-;;56201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55265:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2177:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56314:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23117:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55530:525;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29990:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36783:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23327:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55342:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30381:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3076:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56531:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56063:130;;;;;;;;;;;;;:::i;:::-;;22039:639;22124:4;22463:10;22448:25;;:11;:25;;;;:102;;;;22540:10;22525:25;;:11;:25;;;;22448:102;:179;;;;22617:10;22602:25;;:11;:25;;;;22448:179;22428:199;;22039:639;;;:::o;22941:100::-;22995:13;23028:5;23021:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22941:100;:::o;29432:218::-;29508:7;29533:16;29541:7;29533;:16::i;:::-;29528:64;;29558:34;;;;;;;;;;;;;;29528:64;29612:15;:24;29628:7;29612:24;;;;;;;;;;;:30;;;;;;;;;;;;29605:37;;29432:218;;;:::o;28865:408::-;28954:13;28970:16;28978:7;28970;:16::i;:::-;28954:32;;29026:5;29003:28;;:19;:17;:19::i;:::-;:28;;;28999:175;;29051:44;29068:5;29075:19;:17;:19::i;:::-;29051:16;:44::i;:::-;29046:128;;29123:35;;;;;;;;;;;;;;29046:128;28999:175;29219:2;29186:15;:24;29202:7;29186:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;29257:7;29253:2;29237:28;;29246:5;29237:28;;;;;;;;;;;;28943:330;28865:408;;:::o;55185:34::-;;;;:::o;18692:323::-;18753:7;18981:15;:13;:15::i;:::-;18966:12;;18950:13;;:28;:46;18943:53;;18692:323;:::o;33071:2825::-;33213:27;33243;33262:7;33243:18;:27::i;:::-;33213:57;;33328:4;33287:45;;33303:19;33287:45;;;33283:86;;33341:28;;;;;;;;;;;;;;33283:86;33383:27;33412:23;33439:35;33466:7;33439:26;:35::i;:::-;33382:92;;;;33574:68;33599:15;33616:4;33622:19;:17;:19::i;:::-;33574:24;:68::i;:::-;33569:180;;33662:43;33679:4;33685:19;:17;:19::i;:::-;33662:16;:43::i;:::-;33657:92;;33714:35;;;;;;;;;;;;;;33657:92;33569:180;33780:1;33766:16;;:2;:16;;;33762:52;;33791:23;;;;;;;;;;;;;;33762:52;33827:43;33849:4;33855:2;33859:7;33868:1;33827:21;:43::i;:::-;33963:15;33960:160;;;34103:1;34082:19;34075:30;33960:160;34500:18;:24;34519:4;34500:24;;;;;;;;;;;;;;;;34498:26;;;;;;;;;;;;34569:18;:22;34588:2;34569:22;;;;;;;;;;;;;;;;34567:24;;;;;;;;;;;34891:146;34928:2;34977:45;34992:4;34998:2;35002:19;34977:14;:45::i;:::-;15091:8;34949:73;34891:18;:146::i;:::-;34862:17;:26;34880:7;34862:26;;;;;;;;;;;:175;;;;35208:1;15091:8;35157:19;:47;:52;35153:627;;35230:19;35262:1;35252:7;:11;35230:33;;35419:1;35385:17;:30;35403:11;35385:30;;;;;;;;;;;;:35;35381:384;;35523:13;;35508:11;:28;35504:242;;35703:19;35670:17;:30;35688:11;35670:30;;;;;;;;;;;:52;;;;35504:242;35381:384;35211:569;35153:627;35827:7;35823:2;35808:27;;35817:4;35808:27;;;;;;;;;;;;35846:42;35867:4;35873:2;35877:7;35886:1;35846:20;:42::i;:::-;33202:2694;;;33071:2825;;;:::o;55226:32::-;;;;:::o;55306:29::-;;;;:::o;56859:170::-;2063:13;:11;:13::i;:::-;56908:12:::1;56926:10;:15;;56949:21;56926:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56907:68;;;56994:7;56986:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;56896:133;56859:170::o:0;35992:193::-;36138:39;36155:4;36161:2;36165:7;36138:39;;;;;;;;;;;;:16;:39::i;:::-;35992:193;;;:::o;55376:28::-;;;;;;;;;;;;;:::o;56633:104::-;2063:13;:11;:13::i;:::-;56722:7:::1;;56706:13;:23;;;;;;;:::i;:::-;;56633:104:::0;;:::o;24334:152::-;24406:7;24449:27;24468:7;24449:18;:27::i;:::-;24426:52;;24334:152;;;:::o;56424:99::-;2063:13;:11;:13::i;:::-;56506:9:::1;56493:10;:22;;;;56424:99:::0;:::o;19876:233::-;19948:7;19989:1;19972:19;;:5;:19;;;19968:60;;20000:28;;;;;;;;;;;;;;19968:60;14035:13;20046:18;:25;20065:5;20046:25;;;;;;;;;;;;;;;;:55;20039:62;;19876:233;;;:::o;2818:103::-;2063:13;:11;:13::i;:::-;2883:30:::1;2910:1;2883:18;:30::i;:::-;2818:103::o:0;56201:::-;2063:13;:11;:13::i;:::-;56281:15:::1;56270:8;;:26;;;;;;;;;;;;;;;;;;56201:103:::0;:::o;55265:34::-;;;;:::o;2177:87::-;2223:7;2250:6;;;;;;;;;;;2243:13;;2177:87;:::o;56314:102::-;2063:13;:11;:13::i;:::-;56398:10:::1;56385;:23;;;;56314:102:::0;:::o;23117:104::-;23173:13;23206:7;23199:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23117:104;:::o;55530:525::-;55609:1;55598:8;:12;55590:21;;;;;;55630:8;;;;;;;;;;;55622:17;;;;;;55687:10;;55675:8;55658:14;:12;:14::i;:::-;:25;;;;:::i;:::-;:39;;55650:48;;;;;;55711:20;55734:25;55748:10;55734:13;:25::i;:::-;55711:48;;55807:14;;55795:8;55780:12;:23;;;;:::i;:::-;:41;;55772:50;;;;;;55854:1;55839:12;:16;55835:173;;;55904:5;;55893:8;:16;;;;:::i;:::-;55880:9;:29;55872:38;;;;;;55835:173;;;55990:5;;55976:10;;55965:8;:21;;;;:::i;:::-;55964:31;;;;:::i;:::-;55951:9;:44;55943:53;;;;;;55835:173;56020:27;56026:10;56038:8;56020:5;:27::i;:::-;55579:476;55530:525;:::o;29990:234::-;30137:8;30085:18;:39;30104:19;:17;:19::i;:::-;30085:39;;;;;;;;;;;;;;;:49;30125:8;30085:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;30197:8;30161:55;;30176:19;:17;:19::i;:::-;30161:55;;;30207:8;30161:55;;;;;;:::i;:::-;;;;;;;;29990:234;;:::o;36783:407::-;36958:31;36971:4;36977:2;36981:7;36958:12;:31::i;:::-;37022:1;37004:2;:14;;;:19;37000:183;;37043:56;37074:4;37080:2;37084:7;37093:5;37043:30;:56::i;:::-;37038:145;;37127:40;;;;;;;;;;;;;;37038:145;37000:183;36783:407;;;;:::o;23327:318::-;23400:13;23431:16;23439:7;23431;:16::i;:::-;23426:59;;23456:29;;;;;;;;;;;;;;23426:59;23498:21;23522:10;:8;:10::i;:::-;23498:34;;23575:1;23556:7;23550:21;:26;:87;;;;;;;;;;;;;;;;;23603:7;23612:18;23622:7;23612:9;:18::i;:::-;23586:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23550:87;23543:94;;;23327:318;;;:::o;55342:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30381:164::-;30478:4;30502:18;:25;30521:5;30502:25;;;;;;;;;;;;;;;:35;30528:8;30502:35;;;;;;;;;;;;;;;;;;;;;;;;;30495:42;;30381:164;;;;:::o;3076:201::-;2063:13;:11;:13::i;:::-;3185:1:::1;3165:22;;:8;:22;;::::0;3157:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3241:28;3260:8;3241:18;:28::i;:::-;3076:201:::0;:::o;56531:94::-;2063:13;:11;:13::i;:::-;56608:9:::1;56600:5;:17;;;;56531:94:::0;:::o;56063:130::-;2063:13;:11;:13::i;:::-;56143:10:::1;;56125:14;:12;:14::i;:::-;:28;;56117:37;;;::::0;::::1;;56165:20;56171:10;56183:1;56165:5;:20::i;:::-;56063:130::o:0;30803:282::-;30868:4;30924:7;30905:15;:13;:15::i;:::-;:26;;:66;;;;;30958:13;;30948:7;:23;30905:66;:153;;;;;31057:1;14811:8;31009:17;:26;31027:7;31009:26;;;;;;;;;;;;:44;:49;30905:153;30885:173;;30803:282;;;:::o;53111:105::-;53171:7;53198:10;53191:17;;53111:105;:::o;18208:92::-;18264:7;18208:92;:::o;25489:1275::-;25556:7;25576:12;25591:7;25576:22;;25659:4;25640:15;:13;:15::i;:::-;:23;25636:1061;;25693:13;;25686:4;:20;25682:1015;;;25731:14;25748:17;:23;25766:4;25748:23;;;;;;;;;;;;25731:40;;25865:1;14811:8;25837:6;:24;:29;25833:845;;26502:113;26519:1;26509:6;:11;26502:113;;26562:17;:25;26580:6;;;;;;;26562:25;;;;;;;;;;;;26553:34;;26502:113;;;26648:6;26641:13;;;;;;25833:845;25708:989;25682:1015;25636:1061;26725:31;;;;;;;;;;;;;;25489:1275;;;;:::o;31966:485::-;32068:27;32097:23;32138:38;32179:15;:24;32195:7;32179:24;;;;;;;;;;;32138:65;;32356:18;32333:41;;32413:19;32407:26;32388:45;;32318:126;31966:485;;;:::o;31194:659::-;31343:11;31508:16;31501:5;31497:28;31488:37;;31668:16;31657:9;31653:32;31640:45;;31818:15;31807:9;31804:30;31796:5;31785:9;31782:20;31779:56;31769:66;;31194:659;;;;;:::o;37852:159::-;;;;;:::o;52420:311::-;52555:7;52575:16;15215:3;52601:19;:41;;52575:68;;15215:3;52669:31;52680:4;52686:2;52690:9;52669:10;:31::i;:::-;52661:40;;:62;;52654:69;;;52420:311;;;;;:::o;27312:450::-;27392:14;27560:16;27553:5;27549:28;27540:37;;27737:5;27723:11;27698:23;27694:41;27691:52;27684:5;27681:63;27671:73;;27312:450;;;;:::o;38676:158::-;;;;;:::o;2342:132::-;2417:12;:10;:12::i;:::-;2406:23;;:7;:5;:7::i;:::-;:23;;;2398:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2342:132::o;3437:191::-;3511:16;3530:6;;;;;;;;;;;3511:25;;3556:8;3547:6;;:17;;;;;;;;;;;;;;;;;;3611:8;3580:40;;3601:8;3580:40;;;;;;;;;;;;3500:128;3437:191;:::o;19113:296::-;19168:7;19375:15;:13;:15::i;:::-;19359:13;;:31;19352:38;;19113:296;:::o;20191:178::-;20252:7;14035:13;14173:2;20280:18;:25;20299:5;20280:25;;;;;;;;;;;;;;;;:50;;20279:82;20272:89;;20191:178;;;:::o;40452:2966::-;40525:20;40548:13;;40525:36;;40588:1;40576:8;:13;40572:44;;40598:18;;;;;;;;;;;;;;40572:44;40629:61;40659:1;40663:2;40667:12;40681:8;40629:21;:61::i;:::-;41173:1;14173:2;41143:1;:26;;41142:32;41130:8;:45;41104:18;:22;41123:2;41104:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;41452:139;41489:2;41543:33;41566:1;41570:2;41574:1;41543:14;:33::i;:::-;41510:30;41531:8;41510:20;:30::i;:::-;:66;41452:18;:139::i;:::-;41418:17;:31;41436:12;41418:31;;;;;;;;;;;:173;;;;41608:16;41639:11;41668:8;41653:12;:23;41639:37;;42189:16;42185:2;42181:25;42169:37;;42561:12;42521:8;42480:1;42418:25;42359:1;42298;42271:335;42932:1;42918:12;42914:20;42872:346;42973:3;42964:7;42961:16;42872:346;;43191:7;43181:8;43178:1;43151:25;43148:1;43145;43140:59;43026:1;43017:7;43013:15;43002:26;;42872:346;;;42876:77;43263:1;43251:8;:13;43247:45;;43273:19;;;;;;;;;;;;;;43247:45;43325:3;43309:13;:19;;;;40878:2462;;43350:60;43379:1;43383:2;43387:12;43401:8;43350:20;:60::i;:::-;40514:2904;40452:2966;;:::o;39274:716::-;39437:4;39483:2;39458:45;;;39504:19;:17;:19::i;:::-;39525:4;39531:7;39540:5;39458:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39454:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39758:1;39741:6;:13;:18;39737:235;;39787:40;;;;;;;;;;;;;;39737:235;39930:6;39924:13;39915:6;39911:2;39907:15;39900:38;39454:529;39627:54;;;39617:64;;;:6;:64;;;;39610:71;;;39274:716;;;;;;:::o;56745:106::-;56797:13;56830;56823:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56745:106;:::o;53318:1745::-;53383:17;53817:4;53810;53804:11;53800:22;53909:1;53903:4;53896:15;53984:4;53981:1;53977:12;53970:19;;54066:1;54061:3;54054:14;54170:3;54409:5;54391:428;54417:1;54391:428;;;54457:1;54452:3;54448:11;54441:18;;54628:2;54622:4;54618:13;54614:2;54610:22;54605:3;54597:36;54722:2;54716:4;54712:13;54704:21;;54789:4;54391:428;54779:25;54391:428;54395:21;54858:3;54853;54849:13;54973:4;54968:3;54964:14;54957:21;;55038:6;55033:3;55026:19;53422:1634;;;53318:1745;;;:::o;52121:147::-;52258:6;52121:147;;;;;:::o;728:98::-;781:7;808:10;801:17;;728:98;:::o;27864:324::-;27934:14;28167:1;28157:8;28154:15;28128:24;28124:46;28114:56;;27864:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:117;6222:1;6219;6212:12;6250:553;6308:8;6318:6;6368:3;6361:4;6353:6;6349:17;6345:27;6335:122;;6376:79;;:::i;:::-;6335:122;6489:6;6476:20;6466:30;;6519:18;6511:6;6508:30;6505:117;;;6541:79;;:::i;:::-;6505:117;6655:4;6647:6;6643:17;6631:29;;6709:3;6701:4;6693:6;6689:17;6679:8;6675:32;6672:41;6669:128;;;6716:79;;:::i;:::-;6669:128;6250:553;;;;;:::o;6809:529::-;6880:6;6888;6937:2;6925:9;6916:7;6912:23;6908:32;6905:119;;;6943:79;;:::i;:::-;6905:119;7091:1;7080:9;7076:17;7063:31;7121:18;7113:6;7110:30;7107:117;;;7143:79;;:::i;:::-;7107:117;7256:65;7313:7;7304:6;7293:9;7289:22;7256:65;:::i;:::-;7238:83;;;;7034:297;6809:529;;;;;:::o;7344:329::-;7403:6;7452:2;7440:9;7431:7;7427:23;7423:32;7420:119;;;7458:79;;:::i;:::-;7420:119;7578:1;7603:53;7648:7;7639:6;7628:9;7624:22;7603:53;:::i;:::-;7593:63;;7549:117;7344:329;;;;:::o;7679:116::-;7749:21;7764:5;7749:21;:::i;:::-;7742:5;7739:32;7729:60;;7785:1;7782;7775:12;7729:60;7679:116;:::o;7801:133::-;7844:5;7882:6;7869:20;7860:29;;7898:30;7922:5;7898:30;:::i;:::-;7801:133;;;;:::o;7940:323::-;7996:6;8045:2;8033:9;8024:7;8020:23;8016:32;8013:119;;;8051:79;;:::i;:::-;8013:119;8171:1;8196:50;8238:7;8229:6;8218:9;8214:22;8196:50;:::i;:::-;8186:60;;8142:114;7940:323;;;;:::o;8269:468::-;8334:6;8342;8391:2;8379:9;8370:7;8366:23;8362:32;8359:119;;;8397:79;;:::i;:::-;8359:119;8517:1;8542:53;8587:7;8578:6;8567:9;8563:22;8542:53;:::i;:::-;8532:63;;8488:117;8644:2;8670:50;8712:7;8703:6;8692:9;8688:22;8670:50;:::i;:::-;8660:60;;8615:115;8269:468;;;;;:::o;8743:117::-;8852:1;8849;8842:12;8866:180;8914:77;8911:1;8904:88;9011:4;9008:1;9001:15;9035:4;9032:1;9025:15;9052:281;9135:27;9157:4;9135:27;:::i;:::-;9127:6;9123:40;9265:6;9253:10;9250:22;9229:18;9217:10;9214:34;9211:62;9208:88;;;9276:18;;:::i;:::-;9208:88;9316:10;9312:2;9305:22;9095:238;9052:281;;:::o;9339:129::-;9373:6;9400:20;;:::i;:::-;9390:30;;9429:33;9457:4;9449:6;9429:33;:::i;:::-;9339:129;;;:::o;9474:307::-;9535:4;9625:18;9617:6;9614:30;9611:56;;;9647:18;;:::i;:::-;9611:56;9685:29;9707:6;9685:29;:::i;:::-;9677:37;;9769:4;9763;9759:15;9751:23;;9474:307;;;:::o;9787:146::-;9884:6;9879:3;9874;9861:30;9925:1;9916:6;9911:3;9907:16;9900:27;9787:146;;;:::o;9939:423::-;10016:5;10041:65;10057:48;10098:6;10057:48;:::i;:::-;10041:65;:::i;:::-;10032:74;;10129:6;10122:5;10115:21;10167:4;10160:5;10156:16;10205:3;10196:6;10191:3;10187:16;10184:25;10181:112;;;10212:79;;:::i;:::-;10181:112;10302:54;10349:6;10344:3;10339;10302:54;:::i;:::-;10022:340;9939:423;;;;;:::o;10381:338::-;10436:5;10485:3;10478:4;10470:6;10466:17;10462:27;10452:122;;10493:79;;:::i;:::-;10452:122;10610:6;10597:20;10635:78;10709:3;10701:6;10694:4;10686:6;10682:17;10635:78;:::i;:::-;10626:87;;10442:277;10381:338;;;;:::o;10725:943::-;10820:6;10828;10836;10844;10893:3;10881:9;10872:7;10868:23;10864:33;10861:120;;;10900:79;;:::i;:::-;10861:120;11020:1;11045:53;11090:7;11081:6;11070:9;11066:22;11045:53;:::i;:::-;11035:63;;10991:117;11147:2;11173:53;11218:7;11209:6;11198:9;11194:22;11173:53;:::i;:::-;11163:63;;11118:118;11275:2;11301:53;11346:7;11337:6;11326:9;11322:22;11301:53;:::i;:::-;11291:63;;11246:118;11431:2;11420:9;11416:18;11403:32;11462:18;11454:6;11451:30;11448:117;;;11484:79;;:::i;:::-;11448:117;11589:62;11643:7;11634:6;11623:9;11619:22;11589:62;:::i;:::-;11579:72;;11374:287;10725:943;;;;;;;:::o;11674:474::-;11742:6;11750;11799:2;11787:9;11778:7;11774:23;11770:32;11767:119;;;11805:79;;:::i;:::-;11767:119;11925:1;11950:53;11995:7;11986:6;11975:9;11971:22;11950:53;:::i;:::-;11940:63;;11896:117;12052:2;12078:53;12123:7;12114:6;12103:9;12099:22;12078:53;:::i;:::-;12068:63;;12023:118;11674:474;;;;;:::o;12154:180::-;12202:77;12199:1;12192:88;12299:4;12296:1;12289:15;12323:4;12320:1;12313:15;12340:320;12384:6;12421:1;12415:4;12411:12;12401:22;;12468:1;12462:4;12458:12;12489:18;12479:81;;12545:4;12537:6;12533:17;12523:27;;12479:81;12607:2;12599:6;12596:14;12576:18;12573:38;12570:84;;12626:18;;:::i;:::-;12570:84;12391:269;12340:320;;;:::o;12666:147::-;12767:11;12804:3;12789:18;;12666:147;;;;:::o;12819:114::-;;:::o;12939:398::-;13098:3;13119:83;13200:1;13195:3;13119:83;:::i;:::-;13112:90;;13211:93;13300:3;13211:93;:::i;:::-;13329:1;13324:3;13320:11;13313:18;;12939:398;;;:::o;13343:379::-;13527:3;13549:147;13692:3;13549:147;:::i;:::-;13542:154;;13713:3;13706:10;;13343:379;;;:::o;13728:165::-;13868:17;13864:1;13856:6;13852:14;13845:41;13728:165;:::o;13899:366::-;14041:3;14062:67;14126:2;14121:3;14062:67;:::i;:::-;14055:74;;14138:93;14227:3;14138:93;:::i;:::-;14256:2;14251:3;14247:12;14240:19;;13899:366;;;:::o;14271:419::-;14437:4;14475:2;14464:9;14460:18;14452:26;;14524:9;14518:4;14514:20;14510:1;14499:9;14495:17;14488:47;14552:131;14678:4;14552:131;:::i;:::-;14544:139;;14271:419;;;:::o;14696:97::-;14755:6;14783:3;14773:13;;14696:97;;;;:::o;14799:141::-;14848:4;14871:3;14863:11;;14894:3;14891:1;14884:14;14928:4;14925:1;14915:18;14907:26;;14799:141;;;:::o;14946:93::-;14983:6;15030:2;15025;15018:5;15014:14;15010:23;15000:33;;14946:93;;;:::o;15045:107::-;15089:8;15139:5;15133:4;15129:16;15108:37;;15045:107;;;;:::o;15158:393::-;15227:6;15277:1;15265:10;15261:18;15300:97;15330:66;15319:9;15300:97;:::i;:::-;15418:39;15448:8;15437:9;15418:39;:::i;:::-;15406:51;;15490:4;15486:9;15479:5;15475:21;15466:30;;15539:4;15529:8;15525:19;15518:5;15515:30;15505:40;;15234:317;;15158:393;;;;;:::o;15557:60::-;15585:3;15606:5;15599:12;;15557:60;;;:::o;15623:142::-;15673:9;15706:53;15724:34;15733:24;15751:5;15733:24;:::i;:::-;15724:34;:::i;:::-;15706:53;:::i;:::-;15693:66;;15623:142;;;:::o;15771:75::-;15814:3;15835:5;15828:12;;15771:75;;;:::o;15852:269::-;15962:39;15993:7;15962:39;:::i;:::-;16023:91;16072:41;16096:16;16072:41;:::i;:::-;16064:6;16057:4;16051:11;16023:91;:::i;:::-;16017:4;16010:105;15928:193;15852:269;;;:::o;16127:73::-;16172:3;16127:73;:::o;16206:189::-;16283:32;;:::i;:::-;16324:65;16382:6;16374;16368:4;16324:65;:::i;:::-;16259:136;16206:189;;:::o;16401:186::-;16461:120;16478:3;16471:5;16468:14;16461:120;;;16532:39;16569:1;16562:5;16532:39;:::i;:::-;16505:1;16498:5;16494:13;16485:22;;16461:120;;;16401:186;;:::o;16593:543::-;16694:2;16689:3;16686:11;16683:446;;;16728:38;16760:5;16728:38;:::i;:::-;16812:29;16830:10;16812:29;:::i;:::-;16802:8;16798:44;16995:2;16983:10;16980:18;16977:49;;;17016:8;17001:23;;16977:49;17039:80;17095:22;17113:3;17095:22;:::i;:::-;17085:8;17081:37;17068:11;17039:80;:::i;:::-;16698:431;;16683:446;16593:543;;;:::o;17142:117::-;17196:8;17246:5;17240:4;17236:16;17215:37;;17142:117;;;;:::o;17265:169::-;17309:6;17342:51;17390:1;17386:6;17378:5;17375:1;17371:13;17342:51;:::i;:::-;17338:56;17423:4;17417;17413:15;17403:25;;17316:118;17265:169;;;;:::o;17439:295::-;17515:4;17661:29;17686:3;17680:4;17661:29;:::i;:::-;17653:37;;17723:3;17720:1;17716:11;17710:4;17707:21;17699:29;;17439:295;;;;:::o;17739:1403::-;17863:44;17903:3;17898;17863:44;:::i;:::-;17972:18;17964:6;17961:30;17958:56;;;17994:18;;:::i;:::-;17958:56;18038:38;18070:4;18064:11;18038:38;:::i;:::-;18123:67;18183:6;18175;18169:4;18123:67;:::i;:::-;18217:1;18246:2;18238:6;18235:14;18263:1;18258:632;;;;18934:1;18951:6;18948:84;;;19007:9;19002:3;18998:19;18985:33;18976:42;;18948:84;19058:67;19118:6;19111:5;19058:67;:::i;:::-;19052:4;19045:81;18907:229;18228:908;;18258:632;18310:4;18306:9;18298:6;18294:22;18344:37;18376:4;18344:37;:::i;:::-;18403:1;18417:215;18431:7;18428:1;18425:14;18417:215;;;18517:9;18512:3;18508:19;18495:33;18487:6;18480:49;18568:1;18560:6;18556:14;18546:24;;18615:2;18604:9;18600:18;18587:31;;18454:4;18451:1;18447:12;18442:17;;18417:215;;;18660:6;18651:7;18648:19;18645:186;;;18725:9;18720:3;18716:19;18703:33;18768:48;18810:4;18802:6;18798:17;18787:9;18768:48;:::i;:::-;18760:6;18753:64;18668:163;18645:186;18877:1;18873;18865:6;18861:14;18857:22;18851:4;18844:36;18265:625;;;18228:908;;17838:1304;;;17739:1403;;;:::o;19148:180::-;19196:77;19193:1;19186:88;19293:4;19290:1;19283:15;19317:4;19314:1;19307:15;19334:191;19374:3;19393:20;19411:1;19393:20;:::i;:::-;19388:25;;19427:20;19445:1;19427:20;:::i;:::-;19422:25;;19470:1;19467;19463:9;19456:16;;19491:3;19488:1;19485:10;19482:36;;;19498:18;;:::i;:::-;19482:36;19334:191;;;;:::o;19531:410::-;19571:7;19594:20;19612:1;19594:20;:::i;:::-;19589:25;;19628:20;19646:1;19628:20;:::i;:::-;19623:25;;19683:1;19680;19676:9;19705:30;19723:11;19705:30;:::i;:::-;19694:41;;19884:1;19875:7;19871:15;19868:1;19865:22;19845:1;19838:9;19818:83;19795:139;;19914:18;;:::i;:::-;19795:139;19579:362;19531:410;;;;:::o;19947:194::-;19987:4;20007:20;20025:1;20007:20;:::i;:::-;20002:25;;20041:20;20059:1;20041:20;:::i;:::-;20036:25;;20085:1;20082;20078:9;20070:17;;20109:1;20103:4;20100:11;20097:37;;;20114:18;;:::i;:::-;20097:37;19947:194;;;;:::o;20147:148::-;20249:11;20286:3;20271:18;;20147:148;;;;:::o;20301:390::-;20407:3;20435:39;20468:5;20435:39;:::i;:::-;20490:89;20572:6;20567:3;20490:89;:::i;:::-;20483:96;;20588:65;20646:6;20641:3;20634:4;20627:5;20623:16;20588:65;:::i;:::-;20678:6;20673:3;20669:16;20662:23;;20411:280;20301:390;;;;:::o;20697:435::-;20877:3;20899:95;20990:3;20981:6;20899:95;:::i;:::-;20892:102;;21011:95;21102:3;21093:6;21011:95;:::i;:::-;21004:102;;21123:3;21116:10;;20697:435;;;;;:::o;21138:225::-;21278:34;21274:1;21266:6;21262:14;21255:58;21347:8;21342:2;21334:6;21330:15;21323:33;21138:225;:::o;21369:366::-;21511:3;21532:67;21596:2;21591:3;21532:67;:::i;:::-;21525:74;;21608:93;21697:3;21608:93;:::i;:::-;21726:2;21721:3;21717:12;21710:19;;21369:366;;;:::o;21741:419::-;21907:4;21945:2;21934:9;21930:18;21922:26;;21994:9;21988:4;21984:20;21980:1;21969:9;21965:17;21958:47;22022:131;22148:4;22022:131;:::i;:::-;22014:139;;21741:419;;;:::o;22166:182::-;22306:34;22302:1;22294:6;22290:14;22283:58;22166:182;:::o;22354:366::-;22496:3;22517:67;22581:2;22576:3;22517:67;:::i;:::-;22510:74;;22593:93;22682:3;22593:93;:::i;:::-;22711:2;22706:3;22702:12;22695:19;;22354:366;;;:::o;22726:419::-;22892:4;22930:2;22919:9;22915:18;22907:26;;22979:9;22973:4;22969:20;22965:1;22954:9;22950:17;22943:47;23007:131;23133:4;23007:131;:::i;:::-;22999:139;;22726:419;;;:::o;23151:98::-;23202:6;23236:5;23230:12;23220:22;;23151:98;;;:::o;23255:168::-;23338:11;23372:6;23367:3;23360:19;23412:4;23407:3;23403:14;23388:29;;23255:168;;;;:::o;23429:373::-;23515:3;23543:38;23575:5;23543:38;:::i;:::-;23597:70;23660:6;23655:3;23597:70;:::i;:::-;23590:77;;23676:65;23734:6;23729:3;23722:4;23715:5;23711:16;23676:65;:::i;:::-;23766:29;23788:6;23766:29;:::i;:::-;23761:3;23757:39;23750:46;;23519:283;23429:373;;;;:::o;23808:640::-;24003:4;24041:3;24030:9;24026:19;24018:27;;24055:71;24123:1;24112:9;24108:17;24099:6;24055:71;:::i;:::-;24136:72;24204:2;24193:9;24189:18;24180:6;24136:72;:::i;:::-;24218;24286:2;24275:9;24271:18;24262:6;24218:72;:::i;:::-;24337:9;24331:4;24327:20;24322:2;24311:9;24307:18;24300:48;24365:76;24436:4;24427:6;24365:76;:::i;:::-;24357:84;;23808:640;;;;;;;:::o;24454:141::-;24510:5;24541:6;24535:13;24526:22;;24557:32;24583:5;24557:32;:::i;:::-;24454:141;;;;:::o;24601:349::-;24670:6;24719:2;24707:9;24698:7;24694:23;24690:32;24687:119;;;24725:79;;:::i;:::-;24687:119;24845:1;24870:63;24925:7;24916:6;24905:9;24901:22;24870:63;:::i;:::-;24860:73;;24816:127;24601:349;;;;:::o
Swarm Source
ipfs://fd3b4686cdbff08517932d49a158d7007e84a5ff0665ca1a4952f98d296c97bc
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.