ERC-721
NFT
Overview
Max Total Supply
17 SPO
Holders
12
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 SPOLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
NFTSPO
Compiler Version
v0.8.16+commit.07a7930e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-19 */ // File: contracts/IERC721A.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * 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(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of 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 through `_extraData`. uint24 extraData; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // IERC165 // ============================== /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================== // 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`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // 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 standard. See `_mintERC2309` for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: contracts/ERC721A.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, * including the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at `_startTokenId()` * (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // 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 tokenId of the next token 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 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @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 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 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 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 returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ 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: 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. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view 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 { 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; } /** * 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 ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * 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); } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @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 See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { 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 ''; } /** * @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)) } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, 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 { _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 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 { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); 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 tokenId = startTokenId; uint256 end = startTokenId + quantity; do { emit Transfer(address(0), to, tokenId++); } while (tokenId < end); _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 { 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 Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { // Compute the slot. mstore(0x00, tokenId) mstore(0x20, tokenApprovalsPtr.slot) approvedAddressSlot := keccak256(0x00, 0x40) // Load the slot's value from storage. approvedAddress := sload(approvedAddressSlot) } } /** * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`. */ function _isOwnerOrApproved( address approvedAddress, address from, address msgSender ) private pure returns (bool result) { assembly { // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean. from := and(from, BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, BITMASK_ADDRESS) // `msgSender == from || msgSender == approvedAddress`. result := or(eq(msgSender, from), eq(msgSender, approvedAddress)) } } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(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 `_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) = _getApprovedAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(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++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _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)) } } } } /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal { 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 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; } /** * @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 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 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 returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts/NFTSPO.sol pragma solidity ^0.8.16; //@author BedoSensei //@title Stoned Pop Originals - Saison 1 contract NFTSPO is Ownable, ERC721A { using Strings for uint; //URI of the NFTs when revealed or not Revealed string public baseURI; string public notRevealedURI; //Is the contract paused ? bool public paused = false; //Are the NFTs revealed yet ? bool public revealed = false; enum Step { PreSale, PublicSale, SoldOut, Reveal } Step public sellingStep; //SUPPLY uint private constant MAX_SUPPLY = 8000; uint private constant MAX_PRESALE = 3000; uint private constant MAX_PUBLIC = 4800; uint private constant MAX_GIFT = 200; uint public preSalePrice = 0.04 ether; uint public publicSalePrice = 0.08 ether; mapping(address => uint) public amountNFTsperWalletPreSale; constructor(string memory _baseURI, string memory _notRevealedURI) ERC721A("Stoned Pop Originals - Season 1", "SPO") { baseURI = _baseURI; notRevealedURI = _notRevealedURI; } modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } //PreSale function presaleMint(address _account, uint _quantity) external payable callerIsUser { uint price = preSalePrice; require(price != 0, "Price is 0"); require(sellingStep == Step.PreSale, "Pre-sale sale is not activated"); require(amountNFTsperWalletPreSale[msg.sender] + _quantity <= 100, "You can only get 100 NFT on the Pre-sale"); require(totalSupply() + _quantity <= MAX_PRESALE, "Max supply exceeded"); require(msg.value >= price * _quantity, "Not enough funds"); amountNFTsperWalletPreSale[msg.sender] += _quantity; _safeMint(_account, _quantity); } //Sale function publicSaleMint(address _account, uint _quantity) external payable callerIsUser { uint price = publicSalePrice; require(price != 0, "Price is 0"); require(sellingStep == Step.PublicSale, "Public sale is not activated"); require(totalSupply() + _quantity <= MAX_PRESALE + MAX_PUBLIC, "Max supply exceeded"); require(msg.value >= price * _quantity, "Not enought funds"); _safeMint(_account, _quantity); } //Gift function gift(address _to, uint _quantity) external onlyOwner { require(sellingStep > Step.PublicSale, "Gift is after the public sale"); require(totalSupply() + _quantity <= MAX_SUPPLY, "Reached max Supply"); _safeMint(_to, _quantity); } /** * @notice Change the not revealed URI * * @param _notRevealedURI The new not revealed URI **/ function setNotRevealURI(string memory _notRevealedURI) external onlyOwner { notRevealedURI = _notRevealedURI; } /** * @notice Allows to set the revealed variable to true **/ function reveal() external onlyOwner{ revealed = true; } function setBaseUri(string memory _newBaseURI) external onlyOwner { baseURI = _newBaseURI; } function setStep(uint _step) external onlyOwner { sellingStep = Step(_step); } /** * @param _paused True or false if you want the contract to be paused or not **/ function setPaused(bool _paused) external onlyOwner { paused = _paused; } /** * @notice Allows to get the complete URI of a specific NFT by his ID * * @param _tokenId The id of the NFT * * @return The token URI of the NFT which has _nftId Id **/ function tokenURI(uint _tokenId) public view override returns (string memory) { require(_exists(_tokenId), "URI query for nonexistent token"); if(revealed == false) { return notRevealedURI; } return string(abi.encodePacked(baseURI, _tokenId.toString(), ".json")); } function withdraw() external payable onlyOwner { payable(owner()).transfer(address(this).balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"string","name":"_notRevealedURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","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":[{"internalType":"address","name":"","type":"address"}],"name":"amountNFTsperWalletPreSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"_to","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellingStep","outputs":[{"internalType":"enum NFTSPO.Step","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_paused","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_step","type":"uint256"}],"name":"setStep","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
6080604052600b805461ffff19169055668e1bc9bf040000600c5567011c37937e080000600d553480156200003357600080fd5b506040516200235b3803806200235b833981016040819052620000569162000226565b6040518060400160405280601f81526020017f53746f6e656420506f70204f726967696e616c73202d20536561736f6e2031008152506040518060400160405280600381526020016253504f60e81b815250620000c2620000bc6200010d60201b60201c565b62000111565b6003620000d083826200031f565b506004620000df82826200031f565b50506000600155506009620000f583826200031f565b50600a6200010482826200031f565b505050620003eb565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200018957600080fd5b81516001600160401b0380821115620001a657620001a662000161565b604051601f8301601f19908116603f01168101908282118183101715620001d157620001d162000161565b81604052838152602092508683858801011115620001ee57600080fd5b600091505b83821015620002125785820183015181830184015290820190620001f3565b600093810190920192909252949350505050565b600080604083850312156200023a57600080fd5b82516001600160401b03808211156200025257600080fd5b620002608683870162000177565b935060208501519150808211156200027757600080fd5b50620002868582860162000177565b9150509250929050565b600181811c90821680620002a557607f821691505b602082108103620002c657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200031a57600081815260208120601f850160051c81016020861015620002f55750805b601f850160051c820191505b81811015620003165782815560010162000301565b5050505b505050565b81516001600160401b038111156200033b576200033b62000161565b62000353816200034c845462000290565b84620002cc565b602080601f8311600181146200038b5760008415620003725750858301515b600019600386901b1c1916600185901b17855562000316565b600085815260208120601f198616915b82811015620003bc578886015182559484019460019091019084016200039b565b5085821015620003db5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611f6080620003fb6000396000f3fe6080604052600436106101f95760003560e01c8063722503801161010d578063ac5ae11b116100a0578063cbce4c971161006f578063cbce4c9714610570578063e757c17d14610590578063e985e9c5146105a6578063f2fde38b146105c6578063f8dcbddb146105e657600080fd5b8063ac5ae11b146104f0578063b88d4fde14610503578063c87b56dd14610523578063cbccefb21461054357600080fd5b80639b6a6709116100dc5780639b6a670914610488578063a0bcfc7f1461049b578063a22cb465146104bb578063a475b5dd146104db57600080fd5b8063722503801461042a5780638da5cb5b1461043f57806395d89b411461045d5780639b6860c81461047257600080fd5b80633ccfd60b116101905780635c975abb1161015f5780635c975abb146103a65780636352211e146103c05780636c0360eb146103e057806370a08231146103f5578063715018a61461041557600080fd5b80633ccfd60b1461033f57806342842e0e1461034757806351830227146103675780635accac991461038657600080fd5b806316c38b3c116101cc57806316c38b3c146102af57806318160ddd146102cf578063186d52a7146102f257806323b872dd1461031f57600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e6102193660046118af565b610606565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610658565b60405161022a919061191c565b34801561026157600080fd5b5061027561027036600461192f565b6106ea565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a8366004611964565b61072e565b005b3480156102bb57600080fd5b506102ad6102ca36600461199e565b6107ce565b3480156102db57600080fd5b50600254600154035b60405190815260200161022a565b3480156102fe57600080fd5b506102e461030d3660046119b9565b600e6020526000908152604090205481565b34801561032b57600080fd5b506102ad61033a3660046119d4565b610814565b6102ad6109ad565b34801561035357600080fd5b506102ad6103623660046119d4565b610a14565b34801561037357600080fd5b50600b5461021e90610100900460ff1681565b34801561039257600080fd5b506102ad6103a1366004611a9c565b610a34565b3480156103b257600080fd5b50600b5461021e9060ff1681565b3480156103cc57600080fd5b506102756103db36600461192f565b610a6e565b3480156103ec57600080fd5b50610248610a79565b34801561040157600080fd5b506102e46104103660046119b9565b610b07565b34801561042157600080fd5b506102ad610b56565b34801561043657600080fd5b50610248610b8c565b34801561044b57600080fd5b506000546001600160a01b0316610275565b34801561046957600080fd5b50610248610b99565b34801561047e57600080fd5b506102e4600d5481565b6102ad610496366004611964565b610ba8565b3480156104a757600080fd5b506102ad6104b6366004611a9c565b610dfb565b3480156104c757600080fd5b506102ad6104d6366004611ae5565b610e31565b3480156104e757600080fd5b506102ad610ec6565b6102ad6104fe366004611964565b610f01565b34801561050f57600080fd5b506102ad61051e366004611b18565b6110be565b34801561052f57600080fd5b5061024861053e36600461192f565b611108565b34801561054f57600080fd5b50600b546105639062010000900460ff1681565b60405161022a9190611baa565b34801561057c57600080fd5b506102ad61058b366004611964565b611237565b34801561059c57600080fd5b506102e4600c5481565b3480156105b257600080fd5b5061021e6105c1366004611bd2565b611335565b3480156105d257600080fd5b506102ad6105e13660046119b9565b611363565b3480156105f257600080fd5b506102ad61060136600461192f565b6113fb565b60006301ffc9a760e01b6001600160e01b03198316148061063757506380ac58cd60e01b6001600160e01b03198316145b806106525750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606003805461066790611bfc565b80601f016020809104026020016040519081016040528092919081815260200182805461069390611bfc565b80156106e05780601f106106b5576101008083540402835291602001916106e0565b820191906000526020600020905b8154815290600101906020018083116106c357829003601f168201915b5050505050905090565b60006106f58261145f565b610712576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061073982610a6e565b9050336001600160a01b03821614610772576107558133611335565b610772576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b031633146108015760405162461bcd60e51b81526004016107f890611c36565b60405180910390fd5b600b805460ff1916911515919091179055565b600061081f82611487565b9050836001600160a01b0316816001600160a01b0316146108525760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b0388169091141761089f576108828633611335565b61089f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166108c657604051633a954ecd60e21b815260040160405180910390fd5b80156108d157600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040812091909155600160e11b84169003610963576001840160008181526005602052604081205490036109615760015481146109615760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6000546001600160a01b031633146109d75760405162461bcd60e51b81526004016107f890611c36565b600080546040516001600160a01b03909116914780156108fc02929091818181858888f19350505050158015610a11573d6000803e3d6000fd5b50565b610a2f838383604051806020016040528060008152506110be565b505050565b6000546001600160a01b03163314610a5e5760405162461bcd60e51b81526004016107f890611c36565b600a610a6a8282611cb1565b5050565b600061065282611487565b60098054610a8690611bfc565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab290611bfc565b8015610aff5780601f10610ad457610100808354040283529160200191610aff565b820191906000526020600020905b815481529060010190602001808311610ae257829003601f168201915b505050505081565b60006001600160a01b038216610b30576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610b805760405162461bcd60e51b81526004016107f890611c36565b610b8a60006114f5565b565b600a8054610a8690611bfc565b60606004805461066790611bfc565b323314610bf75760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016107f8565b600c546000819003610c385760405162461bcd60e51b815260206004820152600a6024820152690507269636520697320360b41b60448201526064016107f8565b6000600b5462010000900460ff166003811115610c5757610c57611b94565b14610ca45760405162461bcd60e51b815260206004820152601e60248201527f5072652d73616c652073616c65206973206e6f7420616374697661746564000060448201526064016107f8565b336000908152600e6020526040902054606490610cc2908490611d87565b1115610d215760405162461bcd60e51b815260206004820152602860248201527f596f752063616e206f6e6c792067657420313030204e4654206f6e20746865206044820152675072652d73616c6560c01b60648201526084016107f8565b610bb882610d326002546001540390565b610d3c9190611d87565b1115610d805760405162461bcd60e51b815260206004820152601360248201527213585e081cdd5c1c1b1e48195e18d959591959606a1b60448201526064016107f8565b610d8a8282611d9a565b341015610dcc5760405162461bcd60e51b815260206004820152601060248201526f4e6f7420656e6f7567682066756e647360801b60448201526064016107f8565b336000908152600e602052604081208054849290610deb908490611d87565b90915550610a2f90508383611545565b6000546001600160a01b03163314610e255760405162461bcd60e51b81526004016107f890611c36565b6009610a6a8282611cb1565b336001600160a01b03831603610e5a5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314610ef05760405162461bcd60e51b81526004016107f890611c36565b600b805461ff001916610100179055565b323314610f505760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016107f8565b600d546000819003610f915760405162461bcd60e51b815260206004820152600a6024820152690507269636520697320360b41b60448201526064016107f8565b6001600b5462010000900460ff166003811115610fb057610fb0611b94565b14610ffd5760405162461bcd60e51b815260206004820152601c60248201527f5075626c69632073616c65206973206e6f74206163746976617465640000000060448201526064016107f8565b61100b6112c0610bb8611d87565b826110196002546001540390565b6110239190611d87565b11156110675760405162461bcd60e51b815260206004820152601360248201527213585e081cdd5c1c1b1e48195e18d959591959606a1b60448201526064016107f8565b6110718282611d9a565b3410156110b45760405162461bcd60e51b81526020600482015260116024820152704e6f7420656e6f756768742066756e647360781b60448201526064016107f8565b610a2f8383611545565b6110c9848484610814565b6001600160a01b0383163b15611102576110e58484848461155f565b611102576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606111138261145f565b61115f5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e0060448201526064016107f8565b600b54610100900460ff16151560000361120557600a805461118090611bfc565b80601f01602080910402602001604051908101604052809291908181526020018280546111ac90611bfc565b80156111f95780601f106111ce576101008083540402835291602001916111f9565b820191906000526020600020905b8154815290600101906020018083116111dc57829003601f168201915b50505050509050919050565b60096112108361164b565b604051602001611221929190611db9565b6040516020818303038152906040529050919050565b6000546001600160a01b031633146112615760405162461bcd60e51b81526004016107f890611c36565b6001600b5462010000900460ff16600381111561128057611280611b94565b116112cd5760405162461bcd60e51b815260206004820152601d60248201527f4769667420697320616674657220746865207075626c69632073616c6500000060448201526064016107f8565b611f40816112de6002546001540390565b6112e89190611d87565b111561132b5760405162461bcd60e51b815260206004820152601260248201527152656163686564206d617820537570706c7960701b60448201526064016107f8565b610a6a8282611545565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b6000546001600160a01b0316331461138d5760405162461bcd60e51b81526004016107f890611c36565b6001600160a01b0381166113f25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107f8565b610a11816114f5565b6000546001600160a01b031633146114255760405162461bcd60e51b81526004016107f890611c36565b80600381111561143757611437611b94565b600b805462ff000019166201000083600381111561145757611457611b94565b021790555050565b600060015482108015610652575050600090815260056020526040902054600160e01b161590565b6000816001548110156114dc5760008181526005602052604081205490600160e01b821690036114da575b806000036114d35750600019016000818152600560205260409020546114b2565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610a6a82826040518060200160405280600081525061174c565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611594903390899088908890600401611e50565b6020604051808303816000875af19250505080156115cf575060408051601f3d908101601f191682019092526115cc91810190611e8d565b60015b61162d573d8080156115fd576040519150601f19603f3d011682016040523d82523d6000602084013e611602565b606091505b508051600003611625576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036116725750506040805180820190915260018152600360fc1b602082015290565b8160005b811561169c578061168681611eaa565b91506116959050600a83611ed9565b9150611676565b60008167ffffffffffffffff8111156116b7576116b7611a10565b6040519080825280601f01601f1916602001820160405280156116e1576020820181803683370190505b5090505b8415611643576116f6600183611eed565b9150611703600a86611f00565b61170e906030611d87565b60f81b81838151811061172357611723611f14565b60200101906001600160f81b031916908160001a905350611745600a86611ed9565b94506116e5565b61175683836117b9565b6001600160a01b0383163b15610a2f576001548281035b611780600086838060010194508661155f565b61179d576040516368d2bf6b60e11b815260040160405180910390fd5b81811061176d5781600154146117b257600080fd5b5050505050565b6001546001600160a01b0383166117e257604051622e076360e81b815260040160405180910390fd5b816000036118035760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260056020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061184d5760015550505050565b6001600160e01b031981168114610a1157600080fd5b6000602082840312156118c157600080fd5b81356114d381611899565b60005b838110156118e75781810151838201526020016118cf565b50506000910152565b600081518084526119088160208601602086016118cc565b601f01601f19169290920160200192915050565b6020815260006114d360208301846118f0565b60006020828403121561194157600080fd5b5035919050565b80356001600160a01b038116811461195f57600080fd5b919050565b6000806040838503121561197757600080fd5b61198083611948565b946020939093013593505050565b8035801515811461195f57600080fd5b6000602082840312156119b057600080fd5b6114d38261198e565b6000602082840312156119cb57600080fd5b6114d382611948565b6000806000606084860312156119e957600080fd5b6119f284611948565b9250611a0060208501611948565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611a4157611a41611a10565b604051601f8501601f19908116603f01168101908282118183101715611a6957611a69611a10565b81604052809350858152868686011115611a8257600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611aae57600080fd5b813567ffffffffffffffff811115611ac557600080fd5b8201601f81018413611ad657600080fd5b61164384823560208401611a26565b60008060408385031215611af857600080fd5b611b0183611948565b9150611b0f6020840161198e565b90509250929050565b60008060008060808587031215611b2e57600080fd5b611b3785611948565b9350611b4560208601611948565b925060408501359150606085013567ffffffffffffffff811115611b6857600080fd5b8501601f81018713611b7957600080fd5b611b8887823560208401611a26565b91505092959194509250565b634e487b7160e01b600052602160045260246000fd5b6020810160048310611bcc57634e487b7160e01b600052602160045260246000fd5b91905290565b60008060408385031215611be557600080fd5b611bee83611948565b9150611b0f60208401611948565b600181811c90821680611c1057607f821691505b602082108103611c3057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f821115610a2f57600081815260208120601f850160051c81016020861015611c925750805b601f850160051c820191505b818110156109a557828155600101611c9e565b815167ffffffffffffffff811115611ccb57611ccb611a10565b611cdf81611cd98454611bfc565b84611c6b565b602080601f831160018114611d145760008415611cfc5750858301515b600019600386901b1c1916600185901b1785556109a5565b600085815260208120601f198616915b82811015611d4357888601518255948401946001909101908401611d24565b5085821015611d615787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082018082111561065257610652611d71565b6000816000190483118215151615611db457611db4611d71565b500290565b6000808454611dc781611bfc565b60018281168015611ddf5760018114611df457611e23565b60ff1984168752821515830287019450611e23565b8860005260208060002060005b85811015611e1a5781548a820152908401908201611e01565b50505082870194505b505050508351611e378183602088016118cc565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e83908301846118f0565b9695505050505050565b600060208284031215611e9f57600080fd5b81516114d381611899565b600060018201611ebc57611ebc611d71565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611ee857611ee8611ec3565b500490565b8181038181111561065257610652611d71565b600082611f0f57611f0f611ec3565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220a349fb5da002f6085e3ca29a7c949c5bb50f7e892e6dbb088d00ecd6a6fd39b264736f6c63430008100033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e65754b7a4c67594c52635976744571634170744a4a37484751464e6e5159626b786d574a366637486273612f000000000000000000000000000000000000000000000000000000000000000000000000000000000044697066733a2f2f516d5359574e63734c624e39784355507345617a5a454d6d53683233716a74727770456b4d58517631723834796d2f68696464656e6e65772e6a736f6e00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101f95760003560e01c8063722503801161010d578063ac5ae11b116100a0578063cbce4c971161006f578063cbce4c9714610570578063e757c17d14610590578063e985e9c5146105a6578063f2fde38b146105c6578063f8dcbddb146105e657600080fd5b8063ac5ae11b146104f0578063b88d4fde14610503578063c87b56dd14610523578063cbccefb21461054357600080fd5b80639b6a6709116100dc5780639b6a670914610488578063a0bcfc7f1461049b578063a22cb465146104bb578063a475b5dd146104db57600080fd5b8063722503801461042a5780638da5cb5b1461043f57806395d89b411461045d5780639b6860c81461047257600080fd5b80633ccfd60b116101905780635c975abb1161015f5780635c975abb146103a65780636352211e146103c05780636c0360eb146103e057806370a08231146103f5578063715018a61461041557600080fd5b80633ccfd60b1461033f57806342842e0e1461034757806351830227146103675780635accac991461038657600080fd5b806316c38b3c116101cc57806316c38b3c146102af57806318160ddd146102cf578063186d52a7146102f257806323b872dd1461031f57600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e6102193660046118af565b610606565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610658565b60405161022a919061191c565b34801561026157600080fd5b5061027561027036600461192f565b6106ea565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a8366004611964565b61072e565b005b3480156102bb57600080fd5b506102ad6102ca36600461199e565b6107ce565b3480156102db57600080fd5b50600254600154035b60405190815260200161022a565b3480156102fe57600080fd5b506102e461030d3660046119b9565b600e6020526000908152604090205481565b34801561032b57600080fd5b506102ad61033a3660046119d4565b610814565b6102ad6109ad565b34801561035357600080fd5b506102ad6103623660046119d4565b610a14565b34801561037357600080fd5b50600b5461021e90610100900460ff1681565b34801561039257600080fd5b506102ad6103a1366004611a9c565b610a34565b3480156103b257600080fd5b50600b5461021e9060ff1681565b3480156103cc57600080fd5b506102756103db36600461192f565b610a6e565b3480156103ec57600080fd5b50610248610a79565b34801561040157600080fd5b506102e46104103660046119b9565b610b07565b34801561042157600080fd5b506102ad610b56565b34801561043657600080fd5b50610248610b8c565b34801561044b57600080fd5b506000546001600160a01b0316610275565b34801561046957600080fd5b50610248610b99565b34801561047e57600080fd5b506102e4600d5481565b6102ad610496366004611964565b610ba8565b3480156104a757600080fd5b506102ad6104b6366004611a9c565b610dfb565b3480156104c757600080fd5b506102ad6104d6366004611ae5565b610e31565b3480156104e757600080fd5b506102ad610ec6565b6102ad6104fe366004611964565b610f01565b34801561050f57600080fd5b506102ad61051e366004611b18565b6110be565b34801561052f57600080fd5b5061024861053e36600461192f565b611108565b34801561054f57600080fd5b50600b546105639062010000900460ff1681565b60405161022a9190611baa565b34801561057c57600080fd5b506102ad61058b366004611964565b611237565b34801561059c57600080fd5b506102e4600c5481565b3480156105b257600080fd5b5061021e6105c1366004611bd2565b611335565b3480156105d257600080fd5b506102ad6105e13660046119b9565b611363565b3480156105f257600080fd5b506102ad61060136600461192f565b6113fb565b60006301ffc9a760e01b6001600160e01b03198316148061063757506380ac58cd60e01b6001600160e01b03198316145b806106525750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606003805461066790611bfc565b80601f016020809104026020016040519081016040528092919081815260200182805461069390611bfc565b80156106e05780601f106106b5576101008083540402835291602001916106e0565b820191906000526020600020905b8154815290600101906020018083116106c357829003601f168201915b5050505050905090565b60006106f58261145f565b610712576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061073982610a6e565b9050336001600160a01b03821614610772576107558133611335565b610772576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b031633146108015760405162461bcd60e51b81526004016107f890611c36565b60405180910390fd5b600b805460ff1916911515919091179055565b600061081f82611487565b9050836001600160a01b0316816001600160a01b0316146108525760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b0388169091141761089f576108828633611335565b61089f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166108c657604051633a954ecd60e21b815260040160405180910390fd5b80156108d157600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040812091909155600160e11b84169003610963576001840160008181526005602052604081205490036109615760015481146109615760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6000546001600160a01b031633146109d75760405162461bcd60e51b81526004016107f890611c36565b600080546040516001600160a01b03909116914780156108fc02929091818181858888f19350505050158015610a11573d6000803e3d6000fd5b50565b610a2f838383604051806020016040528060008152506110be565b505050565b6000546001600160a01b03163314610a5e5760405162461bcd60e51b81526004016107f890611c36565b600a610a6a8282611cb1565b5050565b600061065282611487565b60098054610a8690611bfc565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab290611bfc565b8015610aff5780601f10610ad457610100808354040283529160200191610aff565b820191906000526020600020905b815481529060010190602001808311610ae257829003601f168201915b505050505081565b60006001600160a01b038216610b30576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610b805760405162461bcd60e51b81526004016107f890611c36565b610b8a60006114f5565b565b600a8054610a8690611bfc565b60606004805461066790611bfc565b323314610bf75760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016107f8565b600c546000819003610c385760405162461bcd60e51b815260206004820152600a6024820152690507269636520697320360b41b60448201526064016107f8565b6000600b5462010000900460ff166003811115610c5757610c57611b94565b14610ca45760405162461bcd60e51b815260206004820152601e60248201527f5072652d73616c652073616c65206973206e6f7420616374697661746564000060448201526064016107f8565b336000908152600e6020526040902054606490610cc2908490611d87565b1115610d215760405162461bcd60e51b815260206004820152602860248201527f596f752063616e206f6e6c792067657420313030204e4654206f6e20746865206044820152675072652d73616c6560c01b60648201526084016107f8565b610bb882610d326002546001540390565b610d3c9190611d87565b1115610d805760405162461bcd60e51b815260206004820152601360248201527213585e081cdd5c1c1b1e48195e18d959591959606a1b60448201526064016107f8565b610d8a8282611d9a565b341015610dcc5760405162461bcd60e51b815260206004820152601060248201526f4e6f7420656e6f7567682066756e647360801b60448201526064016107f8565b336000908152600e602052604081208054849290610deb908490611d87565b90915550610a2f90508383611545565b6000546001600160a01b03163314610e255760405162461bcd60e51b81526004016107f890611c36565b6009610a6a8282611cb1565b336001600160a01b03831603610e5a5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314610ef05760405162461bcd60e51b81526004016107f890611c36565b600b805461ff001916610100179055565b323314610f505760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016107f8565b600d546000819003610f915760405162461bcd60e51b815260206004820152600a6024820152690507269636520697320360b41b60448201526064016107f8565b6001600b5462010000900460ff166003811115610fb057610fb0611b94565b14610ffd5760405162461bcd60e51b815260206004820152601c60248201527f5075626c69632073616c65206973206e6f74206163746976617465640000000060448201526064016107f8565b61100b6112c0610bb8611d87565b826110196002546001540390565b6110239190611d87565b11156110675760405162461bcd60e51b815260206004820152601360248201527213585e081cdd5c1c1b1e48195e18d959591959606a1b60448201526064016107f8565b6110718282611d9a565b3410156110b45760405162461bcd60e51b81526020600482015260116024820152704e6f7420656e6f756768742066756e647360781b60448201526064016107f8565b610a2f8383611545565b6110c9848484610814565b6001600160a01b0383163b15611102576110e58484848461155f565b611102576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606111138261145f565b61115f5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e0060448201526064016107f8565b600b54610100900460ff16151560000361120557600a805461118090611bfc565b80601f01602080910402602001604051908101604052809291908181526020018280546111ac90611bfc565b80156111f95780601f106111ce576101008083540402835291602001916111f9565b820191906000526020600020905b8154815290600101906020018083116111dc57829003601f168201915b50505050509050919050565b60096112108361164b565b604051602001611221929190611db9565b6040516020818303038152906040529050919050565b6000546001600160a01b031633146112615760405162461bcd60e51b81526004016107f890611c36565b6001600b5462010000900460ff16600381111561128057611280611b94565b116112cd5760405162461bcd60e51b815260206004820152601d60248201527f4769667420697320616674657220746865207075626c69632073616c6500000060448201526064016107f8565b611f40816112de6002546001540390565b6112e89190611d87565b111561132b5760405162461bcd60e51b815260206004820152601260248201527152656163686564206d617820537570706c7960701b60448201526064016107f8565b610a6a8282611545565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b6000546001600160a01b0316331461138d5760405162461bcd60e51b81526004016107f890611c36565b6001600160a01b0381166113f25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107f8565b610a11816114f5565b6000546001600160a01b031633146114255760405162461bcd60e51b81526004016107f890611c36565b80600381111561143757611437611b94565b600b805462ff000019166201000083600381111561145757611457611b94565b021790555050565b600060015482108015610652575050600090815260056020526040902054600160e01b161590565b6000816001548110156114dc5760008181526005602052604081205490600160e01b821690036114da575b806000036114d35750600019016000818152600560205260409020546114b2565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610a6a82826040518060200160405280600081525061174c565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611594903390899088908890600401611e50565b6020604051808303816000875af19250505080156115cf575060408051601f3d908101601f191682019092526115cc91810190611e8d565b60015b61162d573d8080156115fd576040519150601f19603f3d011682016040523d82523d6000602084013e611602565b606091505b508051600003611625576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036116725750506040805180820190915260018152600360fc1b602082015290565b8160005b811561169c578061168681611eaa565b91506116959050600a83611ed9565b9150611676565b60008167ffffffffffffffff8111156116b7576116b7611a10565b6040519080825280601f01601f1916602001820160405280156116e1576020820181803683370190505b5090505b8415611643576116f6600183611eed565b9150611703600a86611f00565b61170e906030611d87565b60f81b81838151811061172357611723611f14565b60200101906001600160f81b031916908160001a905350611745600a86611ed9565b94506116e5565b61175683836117b9565b6001600160a01b0383163b15610a2f576001548281035b611780600086838060010194508661155f565b61179d576040516368d2bf6b60e11b815260040160405180910390fd5b81811061176d5781600154146117b257600080fd5b5050505050565b6001546001600160a01b0383166117e257604051622e076360e81b815260040160405180910390fd5b816000036118035760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260056020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061184d5760015550505050565b6001600160e01b031981168114610a1157600080fd5b6000602082840312156118c157600080fd5b81356114d381611899565b60005b838110156118e75781810151838201526020016118cf565b50506000910152565b600081518084526119088160208601602086016118cc565b601f01601f19169290920160200192915050565b6020815260006114d360208301846118f0565b60006020828403121561194157600080fd5b5035919050565b80356001600160a01b038116811461195f57600080fd5b919050565b6000806040838503121561197757600080fd5b61198083611948565b946020939093013593505050565b8035801515811461195f57600080fd5b6000602082840312156119b057600080fd5b6114d38261198e565b6000602082840312156119cb57600080fd5b6114d382611948565b6000806000606084860312156119e957600080fd5b6119f284611948565b9250611a0060208501611948565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611a4157611a41611a10565b604051601f8501601f19908116603f01168101908282118183101715611a6957611a69611a10565b81604052809350858152868686011115611a8257600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611aae57600080fd5b813567ffffffffffffffff811115611ac557600080fd5b8201601f81018413611ad657600080fd5b61164384823560208401611a26565b60008060408385031215611af857600080fd5b611b0183611948565b9150611b0f6020840161198e565b90509250929050565b60008060008060808587031215611b2e57600080fd5b611b3785611948565b9350611b4560208601611948565b925060408501359150606085013567ffffffffffffffff811115611b6857600080fd5b8501601f81018713611b7957600080fd5b611b8887823560208401611a26565b91505092959194509250565b634e487b7160e01b600052602160045260246000fd5b6020810160048310611bcc57634e487b7160e01b600052602160045260246000fd5b91905290565b60008060408385031215611be557600080fd5b611bee83611948565b9150611b0f60208401611948565b600181811c90821680611c1057607f821691505b602082108103611c3057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f821115610a2f57600081815260208120601f850160051c81016020861015611c925750805b601f850160051c820191505b818110156109a557828155600101611c9e565b815167ffffffffffffffff811115611ccb57611ccb611a10565b611cdf81611cd98454611bfc565b84611c6b565b602080601f831160018114611d145760008415611cfc5750858301515b600019600386901b1c1916600185901b1785556109a5565b600085815260208120601f198616915b82811015611d4357888601518255948401946001909101908401611d24565b5085821015611d615787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082018082111561065257610652611d71565b6000816000190483118215151615611db457611db4611d71565b500290565b6000808454611dc781611bfc565b60018281168015611ddf5760018114611df457611e23565b60ff1984168752821515830287019450611e23565b8860005260208060002060005b85811015611e1a5781548a820152908401908201611e01565b50505082870194505b505050508351611e378183602088016118cc565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e83908301846118f0565b9695505050505050565b600060208284031215611e9f57600080fd5b81516114d381611899565b600060018201611ebc57611ebc611d71565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611ee857611ee8611ec3565b500490565b8181038181111561065257610652611d71565b600082611f0f57611f0f611ec3565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220a349fb5da002f6085e3ca29a7c949c5bb50f7e892e6dbb088d00ecd6a6fd39b264736f6c63430008100033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e65754b7a4c67594c52635976744571634170744a4a37484751464e6e5159626b786d574a366637486273612f000000000000000000000000000000000000000000000000000000000000000000000000000000000044697066733a2f2f516d5359574e63734c624e39784355507345617a5a454d6d53683233716a74727770456b4d58517631723834796d2f68696464656e6e65772e6a736f6e00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _baseURI (string): ipfs://QmNeuKzLgYLRcYvtEqcAptJJ7HGQFNnQYbkxmWJ6f7Hbsa/
Arg [1] : _notRevealedURI (string): ipfs://QmSYWNcsLbN9xCUPsEazZEMmSh23qjtrwpEkMXQv1r84ym/hiddennew.json
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d4e65754b7a4c67594c52635976744571634170744a4a37
Arg [4] : 484751464e6e5159626b786d574a366637486273612f00000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [6] : 697066733a2f2f516d5359574e63734c624e39784355507345617a5a454d6d53
Arg [7] : 683233716a74727770456b4d58517631723834796d2f68696464656e6e65772e
Arg [8] : 6a736f6e00000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
50388:4083:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14574:615;;;;;;;;;;-1:-1:-1;14574:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;14574:615:0;;;;;;;;20221:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22167:204::-;;;;;;;;;;-1:-1:-1;22167:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;22167:204:0;1533:203:1;21715:386:0;;;;;;;;;;-1:-1:-1;21715:386:0;;;;;:::i;:::-;;:::i;:::-;;53715:87;;;;;;;;;;-1:-1:-1;53715:87:0;;;;;:::i;:::-;;:::i;13628:315::-;;;;;;;;;;-1:-1:-1;13894:12:0;;13878:13;;:28;13628:315;;;2674:25:1;;;2662:2;2647:18;13628:315:0;2528:177:1;51142:58:0;;;;;;;;;;-1:-1:-1;51142:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;31432:2800;;;;;;;;;;-1:-1:-1;31432:2800:0;;;;;:::i;:::-;;:::i;54354:114::-;;;:::i;23057:185::-;;;;;;;;;;-1:-1:-1;23057:185:0;;;;;:::i;:::-;;:::i;50684:28::-;;;;;;;;;;-1:-1:-1;50684:28:0;;;;;;;;;;;53111:126;;;;;;;;;;-1:-1:-1;53111:126:0;;;;;:::i;:::-;;:::i;50614:26::-;;;;;;;;;;-1:-1:-1;50614:26:0;;;;;;;;20010:144;;;;;;;;;;-1:-1:-1;20010:144:0;;;;;:::i;:::-;;:::i;50517:21::-;;;;;;;;;;;;;:::i;15253:224::-;;;;;;;;;;-1:-1:-1;15253:224:0;;;;;:::i;:::-;;:::i;49434:103::-;;;;;;;;;;;;;:::i;50545:28::-;;;;;;;;;;;;;:::i;48783:87::-;;;;;;;;;;-1:-1:-1;48829:7:0;48856:6;-1:-1:-1;;;;;48856:6:0;48783:87;;20390:104;;;;;;;;;;;;;:::i;51091:40::-;;;;;;;;;;;;;;;;51569:631;;;;;;:::i;:::-;;:::i;53402:106::-;;;;;;;;;;-1:-1:-1;53402:106:0;;;;;:::i;:::-;;:::i;22443:308::-;;;;;;;;;;-1:-1:-1;22443:308:0;;;;;:::i;:::-;;:::i;53322:70::-;;;;;;;;;;;;;:::i;52220:469::-;;;;;;:::i;:::-;;:::i;23313:399::-;;;;;;;;;;-1:-1:-1;23313:399:0;;;;;:::i;:::-;;:::i;54017:329::-;;;;;;;;;;-1:-1:-1;54017:329:0;;;;;:::i;:::-;;:::i;50820:23::-;;;;;;;;;;-1:-1:-1;50820:23:0;;;;;;;;;;;;;;;;;;:::i;52709:269::-;;;;;;;;;;-1:-1:-1;52709:269:0;;;;;:::i;:::-;;:::i;51047:37::-;;;;;;;;;;;;;;;;22822:164;;;;;;;;;;-1:-1:-1;22822:164:0;;;;;:::i;:::-;;:::i;49692:201::-;;;;;;;;;;-1:-1:-1;49692:201:0;;;;;:::i;:::-;;:::i;53516:92::-;;;;;;;;;;-1:-1:-1;53516:92:0;;;;;:::i;:::-;;:::i;14574:615::-;14659:4;-1:-1:-1;;;;;;;;;14959:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;15036:25:0;;;14959:102;:179;;;-1:-1:-1;;;;;;;;;;15113:25:0;;;14959:179;14939:199;14574:615;-1:-1:-1;;14574:615:0:o;20221:100::-;20275:13;20308:5;20301:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20221:100;:::o;22167:204::-;22235:7;22260:16;22268:7;22260;:16::i;:::-;22255:64;;22285:34;;-1:-1:-1;;;22285:34:0;;;;;;;;;;;22255:64;-1:-1:-1;22339:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;22339:24:0;;22167:204::o;21715:386::-;21788:13;21804:16;21812:7;21804;:16::i;:::-;21788:32;-1:-1:-1;42615:10:0;-1:-1:-1;;;;;21837:28:0;;;21833:175;;21885:44;21902:5;42615:10;22822:164;:::i;21885:44::-;21880:128;;21957:35;;-1:-1:-1;;;21957:35:0;;;;;;;;;;;21880:128;22020:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;22020:29:0;-1:-1:-1;;;;;22020:29:0;;;;;;;;;22065:28;;22020:24;;22065:28;;;;;;;21777:324;21715:386;;:::o;53715:87::-;48829:7;48856:6;-1:-1:-1;;;;;48856:6:0;42615:10;49003:23;48995:68;;;;-1:-1:-1;;;48995:68:0;;;;;;;:::i;:::-;;;;;;;;;53778:6:::1;:16:::0;;-1:-1:-1;;53778:16:0::1;::::0;::::1;;::::0;;;::::1;::::0;;53715:87::o;31432:2800::-;31566:27;31596;31615:7;31596:18;:27::i;:::-;31566:57;;31681:4;-1:-1:-1;;;;;31640:45:0;31656:19;-1:-1:-1;;;;;31640:45:0;;31636:86;;31694:28;;-1:-1:-1;;;31694:28:0;;;;;;;;;;;31636:86;31736:27;30162:21;;;29989:15;30204:4;30197:36;30286:4;30270:21;;30376:26;;42615:10;31129:30;;;-1:-1:-1;;;;;30827:26:0;;31108:19;;;31105:55;31915:174;;32002:43;32019:4;42615:10;22822:164;:::i;32002:43::-;31997:92;;32054:35;;-1:-1:-1;;;32054:35:0;;;;;;;;;;;31997:92;-1:-1:-1;;;;;32106:16:0;;32102:52;;32131:23;;-1:-1:-1;;;32131:23:0;;;;;;;;;;;32102:52;32303:15;32300:160;;;32443:1;32422:19;32415:30;32300:160;-1:-1:-1;;;;;32838:24:0;;;;;;;:18;:24;;;;;;32836:26;;-1:-1:-1;;32836:26:0;;;32907:22;;;;;;;;;32905:24;;-1:-1:-1;32905:24:0;;;19909:11;19885:22;19881:40;19868:62;-1:-1:-1;;;19868:62:0;33200:26;;;;:17;:26;;;;;:174;;;;-1:-1:-1;;;33494:46:0;;:51;;33490:626;;33598:1;33588:11;;33566:19;33721:30;;;:17;:30;;;;;;:35;;33717:384;;33859:13;;33844:11;:28;33840:242;;34006:30;;;;:17;:30;;;;;:52;;;33840:242;33547:569;33490:626;34163:7;34159:2;-1:-1:-1;;;;;34144:27:0;34153:4;-1:-1:-1;;;;;34144:27:0;;;;;;;;;;;34182:42;31555:2677;;;31432:2800;;;:::o;54354:114::-;48829:7;48856:6;-1:-1:-1;;;;;48856:6:0;42615:10;49003:23;48995:68;;;;-1:-1:-1;;;48995:68:0;;;;;;;:::i;:::-;48829:7;48856:6;;54412:48:::1;::::0;-1:-1:-1;;;;;48856:6:0;;;;54438:21:::1;54412:48:::0;::::1;;;::::0;54438:21;;54412:48;48829:7;54412:48;54438:21;48856:6;54412:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;54354:114::o:0;23057:185::-;23195:39;23212:4;23218:2;23222:7;23195:39;;;;;;;;;;;;:16;:39::i;:::-;23057:185;;;:::o;53111:126::-;48829:7;48856:6;-1:-1:-1;;;;;48856:6:0;42615:10;49003:23;48995:68;;;;-1:-1:-1;;;48995:68:0;;;;;;;:::i;:::-;53197:14:::1;:32;53214:15:::0;53197:14;:32:::1;:::i;:::-;;53111:126:::0;:::o;20010:144::-;20074:7;20117:27;20136:7;20117:18;:27::i;50517:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;15253:224::-;15317:7;-1:-1:-1;;;;;15341:19:0;;15337:60;;15369:28;;-1:-1:-1;;;15369:28:0;;;;;;;;;;;15337:60;-1:-1:-1;;;;;;15415:25:0;;;;;:18;:25;;;;;;9808:13;15415:54;;15253:224::o;49434:103::-;48829:7;48856:6;-1:-1:-1;;;;;48856:6:0;42615:10;49003:23;48995:68;;;;-1:-1:-1;;;48995:68:0;;;;;;;:::i;:::-;49499:30:::1;49526:1;49499:18;:30::i;:::-;49434:103::o:0;50545:28::-;;;;;;;:::i;20390:104::-;20446:13;20479:7;20472:14;;;;;:::i;51569:631::-;51464:9;51477:10;51464:23;51456:66;;;;-1:-1:-1;;;51456:66:0;;9281:2:1;51456:66:0;;;9263:21:1;9320:2;9300:18;;;9293:30;9359:32;9339:18;;;9332:60;9409:18;;51456:66:0;9079:354:1;51456:66:0;51678:12:::1;::::0;51665:10:::1;51709::::0;;;51701:33:::1;;;::::0;-1:-1:-1;;;51701:33:0;;9640:2:1;51701:33:0::1;::::0;::::1;9622:21:1::0;9679:2;9659:18;;;9652:30;-1:-1:-1;;;9698:18:1;;;9691:40;9748:18;;51701:33:0::1;9438:334:1::0;51701:33:0::1;51768:12;51753:11;::::0;;;::::1;;;:27;::::0;::::1;;;;;;:::i;:::-;;51745:70;;;::::0;-1:-1:-1;;;51745:70:0;;9979:2:1;51745:70:0::1;::::0;::::1;9961:21:1::0;10018:2;9998:18;;;9991:30;10057:32;10037:18;;;10030:60;10107:18;;51745:70:0::1;9777:354:1::0;51745:70:0::1;51861:10;51834:38;::::0;;;:26:::1;:38;::::0;;;;;51888:3:::1;::::0;51834:50:::1;::::0;51875:9;;51834:50:::1;:::i;:::-;:57;;51826:110;;;::::0;-1:-1:-1;;;51826:110:0;;10600:2:1;51826:110:0::1;::::0;::::1;10582:21:1::0;10639:2;10619:18;;;10612:30;10678:34;10658:18;;;10651:62;-1:-1:-1;;;10729:18:1;;;10722:38;10777:19;;51826:110:0::1;10398:404:1::0;51826:110:0::1;50945:4;51971:9;51955:13;13894:12:::0;;13878:13;;:28;;13628:315;51955:13:::1;:25;;;;:::i;:::-;:40;;51947:72;;;::::0;-1:-1:-1;;;51947:72:0;;11009:2:1;51947:72:0::1;::::0;::::1;10991:21:1::0;11048:2;11028:18;;;11021:30;-1:-1:-1;;;11067:18:1;;;11060:49;11126:18;;51947:72:0::1;10807:343:1::0;51947:72:0::1;52051:17;52059:9:::0;52051:5;:17:::1;:::i;:::-;52038:9;:30;;52030:59;;;::::0;-1:-1:-1;;;52030:59:0;;11530:2:1;52030:59:0::1;::::0;::::1;11512:21:1::0;11569:2;11549:18;;;11542:30;-1:-1:-1;;;11588:18:1;;;11581:46;11644:18;;52030:59:0::1;11328:340:1::0;52030:59:0::1;52127:10;52100:38;::::0;;;:26:::1;:38;::::0;;;;:51;;52142:9;;52100:38;:51:::1;::::0;52142:9;;52100:51:::1;:::i;:::-;::::0;;;-1:-1:-1;52162:30:0::1;::::0;-1:-1:-1;52172:8:0;52182:9;52162::::1;:30::i;53402:106::-:0;48829:7;48856:6;-1:-1:-1;;;;;48856:6:0;42615:10;49003:23;48995:68;;;;-1:-1:-1;;;48995:68:0;;;;;;;:::i;:::-;53479:7:::1;:21;53489:11:::0;53479:7;:21:::1;:::i;22443:308::-:0;42615:10;-1:-1:-1;;;;;22542:31:0;;;22538:61;;22582:17;;-1:-1:-1;;;22582:17:0;;;;;;;;;;;22538:61;42615:10;22612:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;22612:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;22612:60:0;;;;;;;;;;22688:55;;540:41:1;;;22612:49:0;;42615:10;22688:55;;513:18:1;22688:55:0;;;;;;;22443:308;;:::o;53322:70::-;48829:7;48856:6;-1:-1:-1;;;;;48856:6:0;42615:10;49003:23;48995:68;;;;-1:-1:-1;;;48995:68:0;;;;;;;:::i;:::-;53369:8:::1;:15:::0;;-1:-1:-1;;53369:15:0::1;;;::::0;;53322:70::o;52220:469::-;51464:9;51477:10;51464:23;51456:66;;;;-1:-1:-1;;;51456:66:0;;9281:2:1;51456:66:0;;;9263:21:1;9320:2;9300:18;;;9293:30;9359:32;9339:18;;;9332:60;9409:18;;51456:66:0;9079:354:1;51456:66:0;52332:15:::1;::::0;52319:10:::1;52366::::0;;;52358:33:::1;;;::::0;-1:-1:-1;;;52358:33:0;;9640:2:1;52358:33:0::1;::::0;::::1;9622:21:1::0;9679:2;9659:18;;;9652:30;-1:-1:-1;;;9698:18:1;;;9691:40;9748:18;;52358:33:0::1;9438:334:1::0;52358:33:0::1;52425:15;52410:11;::::0;;;::::1;;;:30;::::0;::::1;;;;;;:::i;:::-;;52402:71;;;::::0;-1:-1:-1;;;52402:71:0;;11875:2:1;52402:71:0::1;::::0;::::1;11857:21:1::0;11914:2;11894:18;;;11887:30;11953;11933:18;;;11926:58;12001:18;;52402:71:0::1;11673:352:1::0;52402:71:0::1;52521:24;50991:4;50945;52521:24;:::i;:::-;52508:9;52492:13;13894:12:::0;;13878:13;;:28;;13628:315;52492:13:::1;:25;;;;:::i;:::-;:53;;52484:85;;;::::0;-1:-1:-1;;;52484:85:0;;11009:2:1;52484:85:0::1;::::0;::::1;10991:21:1::0;11048:2;11028:18;;;11021:30;-1:-1:-1;;;11067:18:1;;;11060:49;11126:18;;52484:85:0::1;10807:343:1::0;52484:85:0::1;52601:17;52609:9:::0;52601:5;:17:::1;:::i;:::-;52588:9;:30;;52580:60;;;::::0;-1:-1:-1;;;52580:60:0;;12232:2:1;52580:60:0::1;::::0;::::1;12214:21:1::0;12271:2;12251:18;;;12244:30;-1:-1:-1;;;12290:18:1;;;12283:47;12347:18;;52580:60:0::1;12030:341:1::0;52580:60:0::1;52651:30;52661:8;52671:9;52651;:30::i;23313:399::-:0;23480:31;23493:4;23499:2;23503:7;23480:12;:31::i;:::-;-1:-1:-1;;;;;23526:14:0;;;:19;23522:183;;23565:56;23596:4;23602:2;23606:7;23615:5;23565:30;:56::i;:::-;23560:145;;23649:40;;-1:-1:-1;;;23649:40:0;;;;;;;;;;;23560:145;23313:399;;;;:::o;54017:329::-;54080:13;54114:17;54122:8;54114:7;:17::i;:::-;54106:61;;;;-1:-1:-1;;;54106:61:0;;12578:2:1;54106:61:0;;;12560:21:1;12617:2;12597:18;;;12590:30;12656:33;12636:18;;;12629:61;12707:18;;54106:61:0;12376:355:1;54106:61:0;54181:8;;;;;;;:17;;54193:5;54181:17;54178:70;;54222:14;54215:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54017:329;;;:::o;54178:70::-;54299:7;54308:19;:8;:17;:19::i;:::-;54282:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54268:70;;54017:329;;;:::o;52709:269::-;48829:7;48856:6;-1:-1:-1;;;;;48856:6:0;42615:10;49003:23;48995:68;;;;-1:-1:-1;;;48995:68:0;;;;;;;:::i;:::-;52804:15:::1;52790:11;::::0;;;::::1;;;:29;::::0;::::1;;;;;;:::i;:::-;;52782:71;;;::::0;-1:-1:-1;;;52782:71:0;;14130:2:1;52782:71:0::1;::::0;::::1;14112:21:1::0;14169:2;14149:18;;;14142:30;14208:31;14188:18;;;14181:59;14257:18;;52782:71:0::1;13928:353:1::0;52782:71:0::1;50898:4;52888:9;52872:13;13894:12:::0;;13878:13;;:28;;13628:315;52872:13:::1;:25;;;;:::i;:::-;:39;;52864:70;;;::::0;-1:-1:-1;;;52864:70:0;;14488:2:1;52864:70:0::1;::::0;::::1;14470:21:1::0;14527:2;14507:18;;;14500:30;-1:-1:-1;;;14546:18:1;;;14539:48;14604:18;;52864:70:0::1;14286:342:1::0;52864:70:0::1;52945:25;52955:3;52960:9;52945;:25::i;22822:164::-:0;-1:-1:-1;;;;;22943:25:0;;;22919:4;22943:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;22822:164::o;49692:201::-;48829:7;48856:6;-1:-1:-1;;;;;48856:6:0;42615:10;49003:23;48995:68;;;;-1:-1:-1;;;48995:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49781:22:0;::::1;49773:73;;;::::0;-1:-1:-1;;;49773:73:0;;14835:2:1;49773:73:0::1;::::0;::::1;14817:21:1::0;14874:2;14854:18;;;14847:30;14913:34;14893:18;;;14886:62;-1:-1:-1;;;14964:18:1;;;14957:36;15010:19;;49773:73:0::1;14633:402:1::0;49773:73:0::1;49857:28;49876:8;49857:18;:28::i;53516:92::-:0;48829:7;48856:6;-1:-1:-1;;;;;48856:6:0;42615:10;49003:23;48995:68;;;;-1:-1:-1;;;48995:68:0;;;;;;;:::i;:::-;53594:5:::1;53589:11;;;;;;;;:::i;:::-;53575;:25:::0;;-1:-1:-1;;53575:25:0::1;::::0;;::::1;::::0;::::1;;;;;;:::i;:::-;;;;;;53516:92:::0;:::o;23967:273::-;24024:4;24114:13;;24104:7;:23;24061:152;;;;-1:-1:-1;;24165:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;24165:43:0;:48;;23967:273::o;16927:1129::-;16994:7;17029;17131:13;;17124:4;:20;17120:869;;;17169:14;17186:23;;;:17;:23;;;;;;;-1:-1:-1;;;17275:23:0;;:28;;17271:699;;17794:113;17801:6;17811:1;17801:11;17794:113;;-1:-1:-1;;;17872:6:0;17854:25;;;;:17;:25;;;;;;17794:113;;;17940:6;16927:1129;-1:-1:-1;;;16927:1129:0:o;17271:699::-;17146:843;17120:869;18017:31;;-1:-1:-1;;;18017:31:0;;;;;;;;;;;50053:191;50127:16;50146:6;;-1:-1:-1;;;;;50163:17:0;;;-1:-1:-1;;;;;;50163:17:0;;;;;;50196:40;;50146:6;;;;;;;50196:40;;50127:16;50196:40;50116:128;50053:191;:::o;24324:104::-;24393:27;24403:2;24407:8;24393:27;;;;;;;;;;;;:9;:27::i;38183:716::-;38367:88;;-1:-1:-1;;;38367:88:0;;38346:4;;-1:-1:-1;;;;;38367:45:0;;;;;:88;;42615:10;;38434:4;;38440:7;;38449:5;;38367:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38367:88:0;;;;;;;;-1:-1:-1;;38367:88:0;;;;;;;;;;;;:::i;:::-;;;38363:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38650:6;:13;38667:1;38650:18;38646:235;;38696:40;;-1:-1:-1;;;38696:40:0;;;;;;;;;;;38646:235;38839:6;38833:13;38824:6;38820:2;38816:15;38809:38;38363:529;-1:-1:-1;;;;;;38526:64:0;-1:-1:-1;;;38526:64:0;;-1:-1:-1;38363:529:0;38183:716;;;;;;:::o;45069:723::-;45125:13;45346:5;45355:1;45346:10;45342:53;;-1:-1:-1;;45373:10:0;;;;;;;;;;;;-1:-1:-1;;;45373:10:0;;;;;45069:723::o;45342:53::-;45420:5;45405:12;45461:78;45468:9;;45461:78;;45494:8;;;;:::i;:::-;;-1:-1:-1;45517:10:0;;-1:-1:-1;45525:2:0;45517:10;;:::i;:::-;;;45461:78;;;45549:19;45581:6;45571:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45571:17:0;;45549:39;;45599:154;45606:10;;45599:154;;45633:11;45643:1;45633:11;;:::i;:::-;;-1:-1:-1;45702:10:0;45710:2;45702:5;:10;:::i;:::-;45689:24;;:2;:24;:::i;:::-;45676:39;;45659:6;45666;45659:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;45659:56:0;;;;;;;;-1:-1:-1;45730:11:0;45739:2;45730:11;;:::i;:::-;;;45599:154;;24844:681;24967:19;24973:2;24977:8;24967:5;:19::i;:::-;-1:-1:-1;;;;;25028:14:0;;;:19;25024:483;;25082:13;;25130:14;;;25163:233;25194:62;25233:1;25237:2;25241:7;;;;;;25250:5;25194:30;:62::i;:::-;25189:167;;25292:40;;-1:-1:-1;;;25292:40:0;;;;;;;;;;;25189:167;25391:3;25383:5;:11;25163:233;;25478:3;25461:13;;:20;25457:34;;25483:8;;;25457:34;25049:458;;24844:681;;;:::o;25798:1529::-;25886:13;;-1:-1:-1;;;;;25914:16:0;;25910:48;;25939:19;;-1:-1:-1;;;25939:19:0;;;;;;;;;;;25910:48;25973:8;25985:1;25973:13;25969:44;;25995:18;;-1:-1:-1;;;25995:18:0;;;;;;;;;;;25969:44;-1:-1:-1;;;;;26501:22:0;;;;;;:18;:22;;9945:2;26501:22;;:70;;26539:31;26527:44;;26501:70;;;19909:11;19885:22;19881:40;-1:-1:-1;21619:15:0;;21594:23;21590:45;19878:51;19868:62;26814:31;;;;:17;:31;;;;;:173;26832:12;27063:23;;;27101:101;27128:35;;27153:9;;;;;-1:-1:-1;;;;;27128:35:0;;;27145:1;;27128:35;;27145:1;;27128:35;27197:3;27187:7;:13;27101:101;;27218:13;:19;-1:-1:-1;23057:185:0;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2178:160::-;2243:20;;2299:13;;2292:21;2282:32;;2272:60;;2328:1;2325;2318:12;2343:180;2399:6;2452:2;2440:9;2431:7;2427:23;2423:32;2420:52;;;2468:1;2465;2458:12;2420:52;2491:26;2507:9;2491:26;:::i;2710:186::-;2769:6;2822:2;2810:9;2801:7;2797:23;2793:32;2790:52;;;2838:1;2835;2828:12;2790:52;2861:29;2880:9;2861:29;:::i;2901:328::-;2978:6;2986;2994;3047:2;3035:9;3026:7;3022:23;3018:32;3015:52;;;3063:1;3060;3053:12;3015:52;3086:29;3105:9;3086:29;:::i;:::-;3076:39;;3134:38;3168:2;3157:9;3153:18;3134:38;:::i;:::-;3124:48;;3219:2;3208:9;3204:18;3191:32;3181:42;;2901:328;;;;;:::o;3234:127::-;3295:10;3290:3;3286:20;3283:1;3276:31;3326:4;3323:1;3316:15;3350:4;3347:1;3340:15;3366:632;3431:5;3461:18;3502:2;3494:6;3491:14;3488:40;;;3508:18;;:::i;:::-;3583:2;3577:9;3551:2;3637:15;;-1:-1:-1;;3633:24:1;;;3659:2;3629:33;3625:42;3613:55;;;3683:18;;;3703:22;;;3680:46;3677:72;;;3729:18;;:::i;:::-;3769:10;3765:2;3758:22;3798:6;3789:15;;3828:6;3820;3813:22;3868:3;3859:6;3854:3;3850:16;3847:25;3844:45;;;3885:1;3882;3875:12;3844:45;3935:6;3930:3;3923:4;3915:6;3911:17;3898:44;3990:1;3983:4;3974:6;3966;3962:19;3958:30;3951:41;;;;3366:632;;;;;:::o;4003:451::-;4072:6;4125:2;4113:9;4104:7;4100:23;4096:32;4093:52;;;4141:1;4138;4131:12;4093:52;4181:9;4168:23;4214:18;4206:6;4203:30;4200:50;;;4246:1;4243;4236:12;4200:50;4269:22;;4322:4;4314:13;;4310:27;-1:-1:-1;4300:55:1;;4351:1;4348;4341:12;4300:55;4374:74;4440:7;4435:2;4422:16;4417:2;4413;4409:11;4374:74;:::i;4459:254::-;4524:6;4532;4585:2;4573:9;4564:7;4560:23;4556:32;4553:52;;;4601:1;4598;4591:12;4553:52;4624:29;4643:9;4624:29;:::i;:::-;4614:39;;4672:35;4703:2;4692:9;4688:18;4672:35;:::i;:::-;4662:45;;4459:254;;;;;:::o;4718:667::-;4813:6;4821;4829;4837;4890:3;4878:9;4869:7;4865:23;4861:33;4858:53;;;4907:1;4904;4897:12;4858:53;4930:29;4949:9;4930:29;:::i;:::-;4920:39;;4978:38;5012:2;5001:9;4997:18;4978:38;:::i;:::-;4968:48;;5063:2;5052:9;5048:18;5035:32;5025:42;;5118:2;5107:9;5103:18;5090:32;5145:18;5137:6;5134:30;5131:50;;;5177:1;5174;5167:12;5131:50;5200:22;;5253:4;5245:13;;5241:27;-1:-1:-1;5231:55:1;;5282:1;5279;5272:12;5231:55;5305:74;5371:7;5366:2;5353:16;5348:2;5344;5340:11;5305:74;:::i;:::-;5295:84;;;4718:667;;;;;;;:::o;5390:127::-;5451:10;5446:3;5442:20;5439:1;5432:31;5482:4;5479:1;5472:15;5506:4;5503:1;5496:15;5522:337;5663:2;5648:18;;5696:1;5685:13;;5675:144;;5741:10;5736:3;5732:20;5729:1;5722:31;5776:4;5773:1;5766:15;5804:4;5801:1;5794:15;5675:144;5828:25;;;5522:337;:::o;5864:260::-;5932:6;5940;5993:2;5981:9;5972:7;5968:23;5964:32;5961:52;;;6009:1;6006;5999:12;5961:52;6032:29;6051:9;6032:29;:::i;:::-;6022:39;;6080:38;6114:2;6103:9;6099:18;6080:38;:::i;6129:380::-;6208:1;6204:12;;;;6251;;;6272:61;;6326:4;6318:6;6314:17;6304:27;;6272:61;6379:2;6371:6;6368:14;6348:18;6345:38;6342:161;;6425:10;6420:3;6416:20;6413:1;6406:31;6460:4;6457:1;6450:15;6488:4;6485:1;6478:15;6342:161;;6129:380;;;:::o;6514:356::-;6716:2;6698:21;;;6735:18;;;6728:30;6794:34;6789:2;6774:18;;6767:62;6861:2;6846:18;;6514:356::o;7001:545::-;7103:2;7098:3;7095:11;7092:448;;;7139:1;7164:5;7160:2;7153:17;7209:4;7205:2;7195:19;7279:2;7267:10;7263:19;7260:1;7256:27;7250:4;7246:38;7315:4;7303:10;7300:20;7297:47;;;-1:-1:-1;7338:4:1;7297:47;7393:2;7388:3;7384:12;7381:1;7377:20;7371:4;7367:31;7357:41;;7448:82;7466:2;7459:5;7456:13;7448:82;;;7511:17;;;7492:1;7481:13;7448:82;;7722:1352;7848:3;7842:10;7875:18;7867:6;7864:30;7861:56;;;7897:18;;:::i;:::-;7926:97;8016:6;7976:38;8008:4;8002:11;7976:38;:::i;:::-;7970:4;7926:97;:::i;:::-;8078:4;;8142:2;8131:14;;8159:1;8154:663;;;;8861:1;8878:6;8875:89;;;-1:-1:-1;8930:19:1;;;8924:26;8875:89;-1:-1:-1;;7679:1:1;7675:11;;;7671:24;7667:29;7657:40;7703:1;7699:11;;;7654:57;8977:81;;8124:944;;8154:663;6948:1;6941:14;;;6985:4;6972:18;;-1:-1:-1;;8190:20:1;;;8308:236;8322:7;8319:1;8316:14;8308:236;;;8411:19;;;8405:26;8390:42;;8503:27;;;;8471:1;8459:14;;;;8338:19;;8308:236;;;8312:3;8572:6;8563:7;8560:19;8557:201;;;8633:19;;;8627:26;-1:-1:-1;;8716:1:1;8712:14;;;8728:3;8708:24;8704:37;8700:42;8685:58;8670:74;;8557:201;-1:-1:-1;;;;;8804:1:1;8788:14;;;8784:22;8771:36;;-1:-1:-1;7722:1352:1:o;10136:127::-;10197:10;10192:3;10188:20;10185:1;10178:31;10228:4;10225:1;10218:15;10252:4;10249:1;10242:15;10268:125;10333:9;;;10354:10;;;10351:36;;;10367:18;;:::i;11155:168::-;11195:7;11261:1;11257;11253:6;11249:14;11246:1;11243:21;11238:1;11231:9;11224:17;11220:45;11217:71;;;11268:18;;:::i;:::-;-1:-1:-1;11308:9:1;;11155:168::o;12736:1187::-;13013:3;13042:1;13075:6;13069:13;13105:36;13131:9;13105:36;:::i;:::-;13160:1;13177:18;;;13204:133;;;;13351:1;13346:356;;;;13170:532;;13204:133;-1:-1:-1;;13237:24:1;;13225:37;;13310:14;;13303:22;13291:35;;13282:45;;;-1:-1:-1;13204:133:1;;13346:356;13377:6;13374:1;13367:17;13407:4;13452:2;13449:1;13439:16;13477:1;13491:165;13505:6;13502:1;13499:13;13491:165;;;13583:14;;13570:11;;;13563:35;13626:16;;;;13520:10;;13491:165;;;13495:3;;;13685:6;13680:3;13676:16;13669:23;;13170:532;;;;;13733:6;13727:13;13749:68;13808:8;13803:3;13796:4;13788:6;13784:17;13749:68;:::i;:::-;-1:-1:-1;;;13839:18:1;;13866:22;;;13915:1;13904:13;;12736:1187;-1:-1:-1;;;;12736:1187:1:o;15040:489::-;-1:-1:-1;;;;;15309:15:1;;;15291:34;;15361:15;;15356:2;15341:18;;15334:43;15408:2;15393:18;;15386:34;;;15456:3;15451:2;15436:18;;15429:31;;;15234:4;;15477:46;;15503:19;;15495:6;15477:46;:::i;:::-;15469:54;15040:489;-1:-1:-1;;;;;;15040:489:1:o;15534:249::-;15603:6;15656:2;15644:9;15635:7;15631:23;15627:32;15624:52;;;15672:1;15669;15662:12;15624:52;15704:9;15698:16;15723:30;15747:5;15723:30;:::i;15788:135::-;15827:3;15848:17;;;15845:43;;15868:18;;:::i;:::-;-1:-1:-1;15915:1:1;15904:13;;15788:135::o;15928:127::-;15989:10;15984:3;15980:20;15977:1;15970:31;16020:4;16017:1;16010:15;16044:4;16041:1;16034:15;16060:120;16100:1;16126;16116:35;;16131:18;;:::i;:::-;-1:-1:-1;16165:9:1;;16060:120::o;16185:128::-;16252:9;;;16273:11;;;16270:37;;;16287:18;;:::i;16318:112::-;16350:1;16376;16366:35;;16381:18;;:::i;:::-;-1:-1:-1;16415:9:1;;16318:112::o;16435:127::-;16496:10;16491:3;16487:20;16484:1;16477:31;16527:4;16524:1;16517:15;16551:4;16548:1;16541:15
Swarm Source
ipfs://a349fb5da002f6085e3ca29a7c949c5bb50f7e892e6dbb088d00ecd6a6fd39b2
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.