Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
2,000 SUPERFAN
Holders
39
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 SUPERFANLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
NFTPass
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-17 */ // Sources flattened with hardhat v2.10.0 https://hardhat.org // File erc721a/contracts/[email protected] // SPDX-License-Identifier: MIT AND Unlicensed // 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 erc721a/contracts/[email protected] // 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/[email protected] // 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/[email protected] // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions 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 @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/interfaces/[email protected] // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must 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); } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // 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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File @openzeppelin/contracts/security/[email protected] // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Pausable.sol) pragma solidity ^0.8.0; /** * @dev ERC721 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. */ abstract contract ERC721Pausable is ERC721, Pausable { /** * @dev See {ERC721-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); require(!paused(), "ERC721Pausable: token transfer while paused"); } } // File contracts/NFTPass.sol pragma solidity ^0.8.4; /// @title Motorsport NFT Pass contract /// @author Artema Labs contract NFTPass is ERC721A, IERC2981, Ownable, Pausable { string public _uri; uint256 public _royaltyPoints = 500; bool public _locked = true; address public _royaltyReceiver; event Locked(bool _state); constructor( string memory name_, string memory symbol_, string memory baseURI_, address royaltyReceiver_ ) ERC721A(name_, symbol_) { setBaseURI(baseURI_); _royaltyReceiver = royaltyReceiver_; } /// @notice if contract is locked only owner can transfer tokens /// @dev when locked, minting is still allowed by owner only function setLocked(bool locked_) external onlyOwner { _locked = locked_; emit Locked(locked_); } /// @notice set the royalty points by contract owner as a percentage * 100 function setRoyalty(uint256 royalty_, address royaltyReceiver_) external onlyOwner { _royaltyPoints = royalty_; _royaltyReceiver = royaltyReceiver_; } /// @notice set the base URI function setBaseURI(string memory uri_) public onlyOwner { _uri = uri_; } /// @notice retrieve the contract description for OpenSea function contractURI() external view returns (string memory) { return string(abi.encodePacked(_uri, "contract.json")); } /// @notice EIP2981 royalty information implementation function function royaltyInfo(uint256, uint256 _salePrice) public view override returns (address receiver, uint256 royaltyAmount) { return (_royaltyReceiver, (_salePrice * _royaltyPoints) / 10000); } /// @notice allows owner to burn any token function ownerBurn(uint256 tokenId_) external onlyOwner { _burn(tokenId_); } /// @dev See {IERC165-supportsInterface}. function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, IERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** @dev tokens can only be transfered by owner if contract is locked*/ function _beforeTokenTransfers( address from, address to, uint256 tokenId, uint256 quantity ) internal virtual override whenNotPaused { if (_locked) { require(msg.sender == owner(), "Transfers locked"); } super._beforeTokenTransfers(from, to, tokenId, quantity); } // @dev Returns base URI string function _baseURI() internal view override returns (string memory) { return _uri; } /** @dev tokens can only be preminted if not paused @dev admin can also only mint whenNotPaused */ function adminMint(uint256 quantity_) external whenNotPaused onlyOwner { _mint(msg.sender, quantity_); } function pause() external onlyOwner { _pause(); } function unpause() external onlyOwner { _unpause(); } /// @dev Allows owner to trigger withdrawal of contract funds to the owner address function withdraw() public whenNotPaused { uint256 balance = address(this).balance; require((balance > 0), "No funds to withdraw"); Address.sendValue(payable(owner()), balance); } receive() external payable {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"address","name":"royaltyReceiver_","type":"address"}],"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":false,"internalType":"bool","name":"_state","type":"bool"}],"name":"Locked","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"_locked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_royaltyPoints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_royaltyReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity_","type":"uint256"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","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":"contractURI","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":"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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"ownerBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"locked_","type":"bool"}],"name":"setLocked","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"royalty_","type":"uint256"},{"internalType":"address","name":"royaltyReceiver_","type":"address"}],"name":"setRoyalty","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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526101f4600a556001600b60006101000a81548160ff0219169083151502179055503480156200003257600080fd5b50604051620039bc380380620039bc83398181016040528101906200005891906200042e565b8383816002908051906020019062000072929190620002f5565b5080600390805190602001906200008b929190620002f5565b506200009c6200013b60201b60201c565b6000819055505050620000c4620000b86200014060201b60201c565b6200014860201b60201c565b6000600860146101000a81548160ff021916908315150217905550620000f0826200020e60201b60201c565b80600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505062000726565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200021e6200023a60201b60201c565b806009908051906020019062000236929190620002f5565b5050565b6200024a6200014060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000270620002cb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002c9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c0906200050c565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003039062000608565b90600052602060002090601f01602090048101928262000327576000855562000373565b82601f106200034257805160ff191683800117855562000373565b8280016001018555821562000373579182015b828111156200037257825182559160200191906001019062000355565b5b50905062000382919062000386565b5090565b5b80821115620003a157600081600090555060010162000387565b5090565b6000620003bc620003b68462000557565b6200052e565b905082815260208101848484011115620003d557600080fd5b620003e2848285620005d2565b509392505050565b600081519050620003fb816200070c565b92915050565b600082601f8301126200041357600080fd5b815162000425848260208601620003a5565b91505092915050565b600080600080608085870312156200044557600080fd5b600085015167ffffffffffffffff8111156200046057600080fd5b6200046e8782880162000401565b945050602085015167ffffffffffffffff8111156200048c57600080fd5b6200049a8782880162000401565b935050604085015167ffffffffffffffff811115620004b857600080fd5b620004c68782880162000401565b9250506060620004d987828801620003ea565b91505092959194509250565b6000620004f46020836200058d565b91506200050182620006e3565b602082019050919050565b600060208201905081810360008301526200052781620004e5565b9050919050565b60006200053a6200054d565b90506200054882826200063e565b919050565b6000604051905090565b600067ffffffffffffffff821115620005755762000574620006a3565b5b6200058082620006d2565b9050602081019050919050565b600082825260208201905092915050565b6000620005ab82620005b2565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015620005f2578082015181840152602081019050620005d5565b8381111562000602576000848401525b50505050565b600060028204905060018216806200062157607f821691505b6020821081141562000638576200063762000674565b5b50919050565b6200064982620006d2565b810181811067ffffffffffffffff821117156200066b576200066a620006a3565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b62000717816200059e565b81146200072357600080fd5b50565b61328680620007366000396000f3fe6080604052600436106101e75760003560e01c806355f804b311610102578063a22cb46511610095578063e637f98f11610064578063e637f98f146106b0578063e8a3d485146106db578063e985e9c514610706578063f2fde38b14610743576101ee565b8063a22cb465146105f8578063b88d4fde14610621578063c1f261231461064a578063c87b56dd14610673576101ee565b8063715018a6116100d1578063715018a6146105745780638456cb591461058b5780638da5cb5b146105a257806395d89b41146105cd576101ee565b806355f804b3146104a65780635c975abb146104cf5780636352211e146104fa57806370a0823114610537576101ee565b806323277f961161017a5780633ccfd60b116101495780633ccfd60b146104265780633f4ba83a1461043d57806340e3276b1461045457806342842e0e1461047d576101ee565b806323277f961461036b57806323b872dd146103965780632a55205a146103bf5780633a4b3664146103fd576101ee565b80630dccc9ad116101b65780630dccc9ad146102c157806318160ddd146102ec578063211e28b614610317578063223fcbc914610340576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298576101ee565b366101ee57005b600080fd5b3480156101ff57600080fd5b5061021a600480360381019061021591906126b5565b61076c565b6040516102279190612b81565b60405180910390f35b34801561023c57600080fd5b50610245610866565b6040516102529190612b9c565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612748565b6108f8565b60405161028f9190612af1565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612650565b610974565b005b3480156102cd57600080fd5b506102d6610ab5565b6040516102e39190612b9c565b60405180910390f35b3480156102f857600080fd5b50610301610b43565b60405161030e9190612cbe565b60405180910390f35b34801561032357600080fd5b5061033e6004803603810190610339919061268c565b610b5a565b005b34801561034c57600080fd5b50610355610bb6565b6040516103629190612b81565b60405180910390f35b34801561037757600080fd5b50610380610bc9565b60405161038d9190612cbe565b60405180910390f35b3480156103a257600080fd5b506103bd60048036038101906103b8919061254a565b610bcf565b005b3480156103cb57600080fd5b506103e660048036038101906103e191906127ad565b610ef4565b6040516103f4929190612b58565b60405180910390f35b34801561040957600080fd5b50610424600480360381019061041f9190612748565b610f40565b005b34801561043257600080fd5b5061043b610f54565b005b34801561044957600080fd5b50610452610fb8565b005b34801561046057600080fd5b5061047b60048036038101906104769190612771565b610fca565b005b34801561048957600080fd5b506104a4600480360381019061049f919061254a565b61101e565b005b3480156104b257600080fd5b506104cd60048036038101906104c89190612707565b61103e565b005b3480156104db57600080fd5b506104e4611060565b6040516104f19190612b81565b60405180910390f35b34801561050657600080fd5b50610521600480360381019061051c9190612748565b611077565b60405161052e9190612af1565b60405180910390f35b34801561054357600080fd5b5061055e600480360381019061055991906124e5565b611089565b60405161056b9190612cbe565b60405180910390f35b34801561058057600080fd5b50610589611142565b005b34801561059757600080fd5b506105a0611156565b005b3480156105ae57600080fd5b506105b7611168565b6040516105c49190612af1565b60405180910390f35b3480156105d957600080fd5b506105e2611192565b6040516105ef9190612b9c565b60405180910390f35b34801561060457600080fd5b5061061f600480360381019061061a9190612614565b611224565b005b34801561062d57600080fd5b5061064860048036038101906106439190612599565b61139c565b005b34801561065657600080fd5b50610671600480360381019061066c9190612748565b61140f565b005b34801561067f57600080fd5b5061069a60048036038101906106959190612748565b61142c565b6040516106a79190612b9c565b60405180910390f35b3480156106bc57600080fd5b506106c56114cb565b6040516106d29190612af1565b60405180910390f35b3480156106e757600080fd5b506106f06114f1565b6040516106fd9190612b9c565b60405180910390f35b34801561071257600080fd5b5061072d6004803603810190610728919061250e565b611519565b60405161073a9190612b81565b60405180910390f35b34801561074f57600080fd5b5061076a600480360381019061076591906124e5565b6115ad565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ff57506301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061082f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085f5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461087590612f04565b80601f01602080910402602001604051908101604052809291908181526020018280546108a190612f04565b80156108ee5780601f106108c3576101008083540402835291602001916108ee565b820191906000526020600020905b8154815290600101906020018083116108d157829003601f168201915b5050505050905090565b600061090382611631565b610939576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061097f82611077565b90508073ffffffffffffffffffffffffffffffffffffffff166109a0611690565b73ffffffffffffffffffffffffffffffffffffffff1614610a03576109cc816109c7611690565b611519565b610a02576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60098054610ac290612f04565b80601f0160208091040260200160405190810160405280929190818152602001828054610aee90612f04565b8015610b3b5780601f10610b1057610100808354040283529160200191610b3b565b820191906000526020600020905b815481529060010190602001808311610b1e57829003601f168201915b505050505081565b6000610b4d611698565b6001546000540303905090565b610b6261169d565b80600b60006101000a81548160ff0219169083151502179055507fe3f0ec9c4af57e69d5aeff78a5912ca25733e4458710bab2b55d0985e98aeb5e81604051610bab9190612b81565b60405180910390a150565b600b60009054906101000a900460ff1681565b600a5481565b6000610bda8261171b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c41576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c4d846117e9565b91509150610c638187610c5e611690565b61180b565b610caf57610c7886610c73611690565b611519565b610cae576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d16576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d23868686600161184f565b8015610d2e57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610dfc85610dd88888876118f4565b7c02000000000000000000000000000000000000000000000000000000001761191c565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e84576000600185019050600060046000838152602001908152602001600020541415610e82576000548114610e81578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610eec8686866001611947565b505050505050565b600080600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612710600a5485610f2b9190612df4565b610f359190612dc3565b915091509250929050565b610f4861169d565b610f518161194d565b50565b610f5c61195b565b600047905060008111610fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9b90612bfe565b60405180910390fd5b610fb5610faf611168565b826119a5565b50565b610fc061169d565b610fc8611a99565b565b610fd261169d565b81600a8190555080600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6110398383836040518060200160405280600081525061139c565b505050565b61104661169d565b806009908051906020019061105c929190612309565b5050565b6000600860149054906101000a900460ff16905090565b60006110828261171b565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110f1576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61114a61169d565b6111546000611afc565b565b61115e61169d565b611166611bc2565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546111a190612f04565b80601f01602080910402602001604051908101604052809291908181526020018280546111cd90612f04565b801561121a5780601f106111ef5761010080835404028352916020019161121a565b820191906000526020600020905b8154815290600101906020018083116111fd57829003601f168201915b5050505050905090565b61122c611690565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611291576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061129e611690565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661134b611690565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113909190612b81565b60405180910390a35050565b6113a7848484610bcf565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611409576113d284848484611c25565b611408576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61141761195b565b61141f61169d565b6114293382611d85565b50565b606061143782611631565b61146d576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611477611f59565b905060008151141561149857604051806020016040528060008152506114c3565b806114a284611feb565b6040516020016114b3929190612a96565b6040516020818303038152906040525b915050919050565b600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060096040516020016115059190612aba565b604051602081830303815290604052905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115b561169d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c90612bde565b60405180910390fd5b61162e81611afc565b50565b60008161163c611698565b1115801561164b575060005482105b8015611689575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b6116a5612045565b73ffffffffffffffffffffffffffffffffffffffff166116c3611168565b73ffffffffffffffffffffffffffffffffffffffff1614611719576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171090612c9e565b60405180910390fd5b565b6000808290508061172a611698565b116117b2576000548110156117b15760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156117af575b60008114156117a557600460008360019003935083815260200190815260200160002054905061177a565b80925050506117e4565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b61185761195b565b600b60009054906101000a900460ff16156118e257611874611168565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d890612c7e565b60405180910390fd5b5b6118ee8484848461204d565b50505050565b60008060e883901c905060e861190b868684612053565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61195881600061205c565b50565b611963611060565b156119a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199a90612c5e565b60405180910390fd5b565b804710156119e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119df90612c3e565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611a0e90612adc565b60006040518083038185875af1925050503d8060008114611a4b576040519150601f19603f3d011682016040523d82523d6000602084013e611a50565b606091505b5050905080611a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8b90612c1e565b60405180910390fd5b505050565b611aa16122b0565b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611ae5612045565b604051611af29190612af1565b60405180910390a1565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611bca61195b565b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611c0e612045565b604051611c1b9190612af1565b60405180910390a1565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c4b611690565b8786866040518563ffffffff1660e01b8152600401611c6d9493929190612b0c565b602060405180830381600087803b158015611c8757600080fd5b505af1925050508015611cb857506040513d601f19601f82011682018060405250810190611cb591906126de565b60015b611d32573d8060008114611ce8576040519150601f19603f3d011682016040523d82523d6000602084013e611ced565b606091505b50600081511415611d2a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611df2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415611e2d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e3a600084838561184f565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611eb183611ea260008660006118f4565b611eab856122f9565b1761191c565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611ed557806000819055505050611f546000848385611947565b505050565b606060098054611f6890612f04565b80601f0160208091040260200160405190810160405280929190818152602001828054611f9490612f04565b8015611fe15780601f10611fb657610100808354040283529160200191611fe1565b820191906000526020600020905b815481529060010190602001808311611fc457829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561203157600183039250600a81066030018353600a81049050612011565b508181036020830392508083525050919050565b600033905090565b50505050565b60009392505050565b60006120678361171b565b9050600081905060008061207a866117e9565b9150915084156120e3576120968184612091611690565b61180b565b6120e2576120ab836120a6611690565b611519565b6120e1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b6120f183600088600161184f565b80156120fc57600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506121a483612161856000886118f4565b7c02000000000000000000000000000000000000000000000000000000007c0100000000000000000000000000000000000000000000000000000000171761191c565b600460008881526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008516141561222c57600060018701905060006004600083815260200190815260200160002054141561222a576000548114612229578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612296836000886001611947565b600160008154809291906001019190505550505050505050565b6122b8611060565b6122f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ee90612bbe565b60405180910390fd5b565b60006001821460e11b9050919050565b82805461231590612f04565b90600052602060002090601f016020900481019282612337576000855561237e565b82601f1061235057805160ff191683800117855561237e565b8280016001018555821561237e579182015b8281111561237d578251825591602001919060010190612362565b5b50905061238b919061238f565b5090565b5b808211156123a8576000816000905550600101612390565b5090565b60006123bf6123ba84612cfe565b612cd9565b9050828152602081018484840111156123d757600080fd5b6123e2848285612ec2565b509392505050565b60006123fd6123f884612d2f565b612cd9565b90508281526020810184848401111561241557600080fd5b612420848285612ec2565b509392505050565b600081359050612437816131f4565b92915050565b60008135905061244c8161320b565b92915050565b60008135905061246181613222565b92915050565b60008151905061247681613222565b92915050565b600082601f83011261248d57600080fd5b813561249d8482602086016123ac565b91505092915050565b600082601f8301126124b757600080fd5b81356124c78482602086016123ea565b91505092915050565b6000813590506124df81613239565b92915050565b6000602082840312156124f757600080fd5b600061250584828501612428565b91505092915050565b6000806040838503121561252157600080fd5b600061252f85828601612428565b925050602061254085828601612428565b9150509250929050565b60008060006060848603121561255f57600080fd5b600061256d86828701612428565b935050602061257e86828701612428565b925050604061258f868287016124d0565b9150509250925092565b600080600080608085870312156125af57600080fd5b60006125bd87828801612428565b94505060206125ce87828801612428565b93505060406125df878288016124d0565b925050606085013567ffffffffffffffff8111156125fc57600080fd5b6126088782880161247c565b91505092959194509250565b6000806040838503121561262757600080fd5b600061263585828601612428565b92505060206126468582860161243d565b9150509250929050565b6000806040838503121561266357600080fd5b600061267185828601612428565b9250506020612682858286016124d0565b9150509250929050565b60006020828403121561269e57600080fd5b60006126ac8482850161243d565b91505092915050565b6000602082840312156126c757600080fd5b60006126d584828501612452565b91505092915050565b6000602082840312156126f057600080fd5b60006126fe84828501612467565b91505092915050565b60006020828403121561271957600080fd5b600082013567ffffffffffffffff81111561273357600080fd5b61273f848285016124a6565b91505092915050565b60006020828403121561275a57600080fd5b6000612768848285016124d0565b91505092915050565b6000806040838503121561278457600080fd5b6000612792858286016124d0565b92505060206127a385828601612428565b9150509250929050565b600080604083850312156127c057600080fd5b60006127ce858286016124d0565b92505060206127df858286016124d0565b9150509250929050565b6127f281612e4e565b82525050565b61280181612e60565b82525050565b600061281282612d75565b61281c8185612d8b565b935061282c818560208601612ed1565b61283581613023565b840191505092915050565b600061284b82612d80565b6128558185612da7565b9350612865818560208601612ed1565b61286e81613023565b840191505092915050565b600061288482612d80565b61288e8185612db8565b935061289e818560208601612ed1565b80840191505092915050565b600081546128b781612f04565b6128c18186612db8565b945060018216600081146128dc57600181146128ed57612920565b60ff19831686528186019350612920565b6128f685612d60565b60005b83811015612918578154818901526001820191506020810190506128f9565b838801955050505b50505092915050565b6000612936601483612da7565b915061294182613034565b602082019050919050565b6000612959600d83612db8565b91506129648261305d565b600d82019050919050565b600061297c602683612da7565b915061298782613086565b604082019050919050565b600061299f601483612da7565b91506129aa826130d5565b602082019050919050565b60006129c2603a83612da7565b91506129cd826130fe565b604082019050919050565b60006129e5601d83612da7565b91506129f08261314d565b602082019050919050565b6000612a08601083612da7565b9150612a1382613176565b602082019050919050565b6000612a2b601083612da7565b9150612a368261319f565b602082019050919050565b6000612a4e602083612da7565b9150612a59826131c8565b602082019050919050565b6000612a71600083612d9c565b9150612a7c826131f1565b600082019050919050565b612a9081612eb8565b82525050565b6000612aa28285612879565b9150612aae8284612879565b91508190509392505050565b6000612ac682846128aa565b9150612ad18261294c565b915081905092915050565b6000612ae782612a64565b9150819050919050565b6000602082019050612b0660008301846127e9565b92915050565b6000608082019050612b2160008301876127e9565b612b2e60208301866127e9565b612b3b6040830185612a87565b8181036060830152612b4d8184612807565b905095945050505050565b6000604082019050612b6d60008301856127e9565b612b7a6020830184612a87565b9392505050565b6000602082019050612b9660008301846127f8565b92915050565b60006020820190508181036000830152612bb68184612840565b905092915050565b60006020820190508181036000830152612bd781612929565b9050919050565b60006020820190508181036000830152612bf78161296f565b9050919050565b60006020820190508181036000830152612c1781612992565b9050919050565b60006020820190508181036000830152612c37816129b5565b9050919050565b60006020820190508181036000830152612c57816129d8565b9050919050565b60006020820190508181036000830152612c77816129fb565b9050919050565b60006020820190508181036000830152612c9781612a1e565b9050919050565b60006020820190508181036000830152612cb781612a41565b9050919050565b6000602082019050612cd36000830184612a87565b92915050565b6000612ce3612cf4565b9050612cef8282612f36565b919050565b6000604051905090565b600067ffffffffffffffff821115612d1957612d18612ff4565b5b612d2282613023565b9050602081019050919050565b600067ffffffffffffffff821115612d4a57612d49612ff4565b5b612d5382613023565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612dce82612eb8565b9150612dd983612eb8565b925082612de957612de8612f96565b5b828204905092915050565b6000612dff82612eb8565b9150612e0a83612eb8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e4357612e42612f67565b5b828202905092915050565b6000612e5982612e98565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612eef578082015181840152602081019050612ed4565b83811115612efe576000848401525b50505050565b60006002820490506001821680612f1c57607f821691505b60208210811415612f3057612f2f612fc5565b5b50919050565b612f3f82613023565b810181811067ffffffffffffffff82111715612f5e57612f5d612ff4565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f636f6e74726163742e6a736f6e00000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2066756e647320746f207769746864726177000000000000000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f5472616e7366657273206c6f636b656400000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b6131fd81612e4e565b811461320857600080fd5b50565b61321481612e60565b811461321f57600080fd5b50565b61322b81612e6c565b811461323657600080fd5b50565b61324281612eb8565b811461324d57600080fd5b5056fea2646970667358221220d0356c75730271faa137ad9d0efc807ba63f7ca33f54d8f54fd52454fd72413764736f6c63430008040033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000000d537570657266616e2050617373000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008535550455246414e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007568747470733a2f2f6a743737777a6b36733267646836686e7a6f6735716f6f7572687471716e6873347066796c3770726576666268766e7875676f712e617277656176652e6e65742f54505f375a5636576a4450343763754e32446e55696563494e504c6a793458393853564b453957336f5a302f0000000000000000000000000000000000000000000000000000000000000000000000000000000000002a30786232313441446430333533343131323634433332453761616433363963423364633634423446324500000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101e75760003560e01c806355f804b311610102578063a22cb46511610095578063e637f98f11610064578063e637f98f146106b0578063e8a3d485146106db578063e985e9c514610706578063f2fde38b14610743576101ee565b8063a22cb465146105f8578063b88d4fde14610621578063c1f261231461064a578063c87b56dd14610673576101ee565b8063715018a6116100d1578063715018a6146105745780638456cb591461058b5780638da5cb5b146105a257806395d89b41146105cd576101ee565b806355f804b3146104a65780635c975abb146104cf5780636352211e146104fa57806370a0823114610537576101ee565b806323277f961161017a5780633ccfd60b116101495780633ccfd60b146104265780633f4ba83a1461043d57806340e3276b1461045457806342842e0e1461047d576101ee565b806323277f961461036b57806323b872dd146103965780632a55205a146103bf5780633a4b3664146103fd576101ee565b80630dccc9ad116101b65780630dccc9ad146102c157806318160ddd146102ec578063211e28b614610317578063223fcbc914610340576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298576101ee565b366101ee57005b600080fd5b3480156101ff57600080fd5b5061021a600480360381019061021591906126b5565b61076c565b6040516102279190612b81565b60405180910390f35b34801561023c57600080fd5b50610245610866565b6040516102529190612b9c565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612748565b6108f8565b60405161028f9190612af1565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612650565b610974565b005b3480156102cd57600080fd5b506102d6610ab5565b6040516102e39190612b9c565b60405180910390f35b3480156102f857600080fd5b50610301610b43565b60405161030e9190612cbe565b60405180910390f35b34801561032357600080fd5b5061033e6004803603810190610339919061268c565b610b5a565b005b34801561034c57600080fd5b50610355610bb6565b6040516103629190612b81565b60405180910390f35b34801561037757600080fd5b50610380610bc9565b60405161038d9190612cbe565b60405180910390f35b3480156103a257600080fd5b506103bd60048036038101906103b8919061254a565b610bcf565b005b3480156103cb57600080fd5b506103e660048036038101906103e191906127ad565b610ef4565b6040516103f4929190612b58565b60405180910390f35b34801561040957600080fd5b50610424600480360381019061041f9190612748565b610f40565b005b34801561043257600080fd5b5061043b610f54565b005b34801561044957600080fd5b50610452610fb8565b005b34801561046057600080fd5b5061047b60048036038101906104769190612771565b610fca565b005b34801561048957600080fd5b506104a4600480360381019061049f919061254a565b61101e565b005b3480156104b257600080fd5b506104cd60048036038101906104c89190612707565b61103e565b005b3480156104db57600080fd5b506104e4611060565b6040516104f19190612b81565b60405180910390f35b34801561050657600080fd5b50610521600480360381019061051c9190612748565b611077565b60405161052e9190612af1565b60405180910390f35b34801561054357600080fd5b5061055e600480360381019061055991906124e5565b611089565b60405161056b9190612cbe565b60405180910390f35b34801561058057600080fd5b50610589611142565b005b34801561059757600080fd5b506105a0611156565b005b3480156105ae57600080fd5b506105b7611168565b6040516105c49190612af1565b60405180910390f35b3480156105d957600080fd5b506105e2611192565b6040516105ef9190612b9c565b60405180910390f35b34801561060457600080fd5b5061061f600480360381019061061a9190612614565b611224565b005b34801561062d57600080fd5b5061064860048036038101906106439190612599565b61139c565b005b34801561065657600080fd5b50610671600480360381019061066c9190612748565b61140f565b005b34801561067f57600080fd5b5061069a60048036038101906106959190612748565b61142c565b6040516106a79190612b9c565b60405180910390f35b3480156106bc57600080fd5b506106c56114cb565b6040516106d29190612af1565b60405180910390f35b3480156106e757600080fd5b506106f06114f1565b6040516106fd9190612b9c565b60405180910390f35b34801561071257600080fd5b5061072d6004803603810190610728919061250e565b611519565b60405161073a9190612b81565b60405180910390f35b34801561074f57600080fd5b5061076a600480360381019061076591906124e5565b6115ad565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ff57506301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061082f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085f5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461087590612f04565b80601f01602080910402602001604051908101604052809291908181526020018280546108a190612f04565b80156108ee5780601f106108c3576101008083540402835291602001916108ee565b820191906000526020600020905b8154815290600101906020018083116108d157829003601f168201915b5050505050905090565b600061090382611631565b610939576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061097f82611077565b90508073ffffffffffffffffffffffffffffffffffffffff166109a0611690565b73ffffffffffffffffffffffffffffffffffffffff1614610a03576109cc816109c7611690565b611519565b610a02576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60098054610ac290612f04565b80601f0160208091040260200160405190810160405280929190818152602001828054610aee90612f04565b8015610b3b5780601f10610b1057610100808354040283529160200191610b3b565b820191906000526020600020905b815481529060010190602001808311610b1e57829003601f168201915b505050505081565b6000610b4d611698565b6001546000540303905090565b610b6261169d565b80600b60006101000a81548160ff0219169083151502179055507fe3f0ec9c4af57e69d5aeff78a5912ca25733e4458710bab2b55d0985e98aeb5e81604051610bab9190612b81565b60405180910390a150565b600b60009054906101000a900460ff1681565b600a5481565b6000610bda8261171b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c41576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c4d846117e9565b91509150610c638187610c5e611690565b61180b565b610caf57610c7886610c73611690565b611519565b610cae576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d16576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d23868686600161184f565b8015610d2e57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610dfc85610dd88888876118f4565b7c02000000000000000000000000000000000000000000000000000000001761191c565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e84576000600185019050600060046000838152602001908152602001600020541415610e82576000548114610e81578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610eec8686866001611947565b505050505050565b600080600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612710600a5485610f2b9190612df4565b610f359190612dc3565b915091509250929050565b610f4861169d565b610f518161194d565b50565b610f5c61195b565b600047905060008111610fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9b90612bfe565b60405180910390fd5b610fb5610faf611168565b826119a5565b50565b610fc061169d565b610fc8611a99565b565b610fd261169d565b81600a8190555080600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6110398383836040518060200160405280600081525061139c565b505050565b61104661169d565b806009908051906020019061105c929190612309565b5050565b6000600860149054906101000a900460ff16905090565b60006110828261171b565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110f1576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61114a61169d565b6111546000611afc565b565b61115e61169d565b611166611bc2565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546111a190612f04565b80601f01602080910402602001604051908101604052809291908181526020018280546111cd90612f04565b801561121a5780601f106111ef5761010080835404028352916020019161121a565b820191906000526020600020905b8154815290600101906020018083116111fd57829003601f168201915b5050505050905090565b61122c611690565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611291576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061129e611690565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661134b611690565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113909190612b81565b60405180910390a35050565b6113a7848484610bcf565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611409576113d284848484611c25565b611408576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61141761195b565b61141f61169d565b6114293382611d85565b50565b606061143782611631565b61146d576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611477611f59565b905060008151141561149857604051806020016040528060008152506114c3565b806114a284611feb565b6040516020016114b3929190612a96565b6040516020818303038152906040525b915050919050565b600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060096040516020016115059190612aba565b604051602081830303815290604052905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115b561169d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c90612bde565b60405180910390fd5b61162e81611afc565b50565b60008161163c611698565b1115801561164b575060005482105b8015611689575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b6116a5612045565b73ffffffffffffffffffffffffffffffffffffffff166116c3611168565b73ffffffffffffffffffffffffffffffffffffffff1614611719576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171090612c9e565b60405180910390fd5b565b6000808290508061172a611698565b116117b2576000548110156117b15760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156117af575b60008114156117a557600460008360019003935083815260200190815260200160002054905061177a565b80925050506117e4565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b61185761195b565b600b60009054906101000a900460ff16156118e257611874611168565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d890612c7e565b60405180910390fd5b5b6118ee8484848461204d565b50505050565b60008060e883901c905060e861190b868684612053565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61195881600061205c565b50565b611963611060565b156119a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199a90612c5e565b60405180910390fd5b565b804710156119e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119df90612c3e565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611a0e90612adc565b60006040518083038185875af1925050503d8060008114611a4b576040519150601f19603f3d011682016040523d82523d6000602084013e611a50565b606091505b5050905080611a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8b90612c1e565b60405180910390fd5b505050565b611aa16122b0565b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611ae5612045565b604051611af29190612af1565b60405180910390a1565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611bca61195b565b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611c0e612045565b604051611c1b9190612af1565b60405180910390a1565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c4b611690565b8786866040518563ffffffff1660e01b8152600401611c6d9493929190612b0c565b602060405180830381600087803b158015611c8757600080fd5b505af1925050508015611cb857506040513d601f19601f82011682018060405250810190611cb591906126de565b60015b611d32573d8060008114611ce8576040519150601f19603f3d011682016040523d82523d6000602084013e611ced565b606091505b50600081511415611d2a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611df2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415611e2d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e3a600084838561184f565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611eb183611ea260008660006118f4565b611eab856122f9565b1761191c565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611ed557806000819055505050611f546000848385611947565b505050565b606060098054611f6890612f04565b80601f0160208091040260200160405190810160405280929190818152602001828054611f9490612f04565b8015611fe15780601f10611fb657610100808354040283529160200191611fe1565b820191906000526020600020905b815481529060010190602001808311611fc457829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561203157600183039250600a81066030018353600a81049050612011565b508181036020830392508083525050919050565b600033905090565b50505050565b60009392505050565b60006120678361171b565b9050600081905060008061207a866117e9565b9150915084156120e3576120968184612091611690565b61180b565b6120e2576120ab836120a6611690565b611519565b6120e1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b6120f183600088600161184f565b80156120fc57600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506121a483612161856000886118f4565b7c02000000000000000000000000000000000000000000000000000000007c0100000000000000000000000000000000000000000000000000000000171761191c565b600460008881526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008516141561222c57600060018701905060006004600083815260200190815260200160002054141561222a576000548114612229578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612296836000886001611947565b600160008154809291906001019190505550505050505050565b6122b8611060565b6122f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ee90612bbe565b60405180910390fd5b565b60006001821460e11b9050919050565b82805461231590612f04565b90600052602060002090601f016020900481019282612337576000855561237e565b82601f1061235057805160ff191683800117855561237e565b8280016001018555821561237e579182015b8281111561237d578251825591602001919060010190612362565b5b50905061238b919061238f565b5090565b5b808211156123a8576000816000905550600101612390565b5090565b60006123bf6123ba84612cfe565b612cd9565b9050828152602081018484840111156123d757600080fd5b6123e2848285612ec2565b509392505050565b60006123fd6123f884612d2f565b612cd9565b90508281526020810184848401111561241557600080fd5b612420848285612ec2565b509392505050565b600081359050612437816131f4565b92915050565b60008135905061244c8161320b565b92915050565b60008135905061246181613222565b92915050565b60008151905061247681613222565b92915050565b600082601f83011261248d57600080fd5b813561249d8482602086016123ac565b91505092915050565b600082601f8301126124b757600080fd5b81356124c78482602086016123ea565b91505092915050565b6000813590506124df81613239565b92915050565b6000602082840312156124f757600080fd5b600061250584828501612428565b91505092915050565b6000806040838503121561252157600080fd5b600061252f85828601612428565b925050602061254085828601612428565b9150509250929050565b60008060006060848603121561255f57600080fd5b600061256d86828701612428565b935050602061257e86828701612428565b925050604061258f868287016124d0565b9150509250925092565b600080600080608085870312156125af57600080fd5b60006125bd87828801612428565b94505060206125ce87828801612428565b93505060406125df878288016124d0565b925050606085013567ffffffffffffffff8111156125fc57600080fd5b6126088782880161247c565b91505092959194509250565b6000806040838503121561262757600080fd5b600061263585828601612428565b92505060206126468582860161243d565b9150509250929050565b6000806040838503121561266357600080fd5b600061267185828601612428565b9250506020612682858286016124d0565b9150509250929050565b60006020828403121561269e57600080fd5b60006126ac8482850161243d565b91505092915050565b6000602082840312156126c757600080fd5b60006126d584828501612452565b91505092915050565b6000602082840312156126f057600080fd5b60006126fe84828501612467565b91505092915050565b60006020828403121561271957600080fd5b600082013567ffffffffffffffff81111561273357600080fd5b61273f848285016124a6565b91505092915050565b60006020828403121561275a57600080fd5b6000612768848285016124d0565b91505092915050565b6000806040838503121561278457600080fd5b6000612792858286016124d0565b92505060206127a385828601612428565b9150509250929050565b600080604083850312156127c057600080fd5b60006127ce858286016124d0565b92505060206127df858286016124d0565b9150509250929050565b6127f281612e4e565b82525050565b61280181612e60565b82525050565b600061281282612d75565b61281c8185612d8b565b935061282c818560208601612ed1565b61283581613023565b840191505092915050565b600061284b82612d80565b6128558185612da7565b9350612865818560208601612ed1565b61286e81613023565b840191505092915050565b600061288482612d80565b61288e8185612db8565b935061289e818560208601612ed1565b80840191505092915050565b600081546128b781612f04565b6128c18186612db8565b945060018216600081146128dc57600181146128ed57612920565b60ff19831686528186019350612920565b6128f685612d60565b60005b83811015612918578154818901526001820191506020810190506128f9565b838801955050505b50505092915050565b6000612936601483612da7565b915061294182613034565b602082019050919050565b6000612959600d83612db8565b91506129648261305d565b600d82019050919050565b600061297c602683612da7565b915061298782613086565b604082019050919050565b600061299f601483612da7565b91506129aa826130d5565b602082019050919050565b60006129c2603a83612da7565b91506129cd826130fe565b604082019050919050565b60006129e5601d83612da7565b91506129f08261314d565b602082019050919050565b6000612a08601083612da7565b9150612a1382613176565b602082019050919050565b6000612a2b601083612da7565b9150612a368261319f565b602082019050919050565b6000612a4e602083612da7565b9150612a59826131c8565b602082019050919050565b6000612a71600083612d9c565b9150612a7c826131f1565b600082019050919050565b612a9081612eb8565b82525050565b6000612aa28285612879565b9150612aae8284612879565b91508190509392505050565b6000612ac682846128aa565b9150612ad18261294c565b915081905092915050565b6000612ae782612a64565b9150819050919050565b6000602082019050612b0660008301846127e9565b92915050565b6000608082019050612b2160008301876127e9565b612b2e60208301866127e9565b612b3b6040830185612a87565b8181036060830152612b4d8184612807565b905095945050505050565b6000604082019050612b6d60008301856127e9565b612b7a6020830184612a87565b9392505050565b6000602082019050612b9660008301846127f8565b92915050565b60006020820190508181036000830152612bb68184612840565b905092915050565b60006020820190508181036000830152612bd781612929565b9050919050565b60006020820190508181036000830152612bf78161296f565b9050919050565b60006020820190508181036000830152612c1781612992565b9050919050565b60006020820190508181036000830152612c37816129b5565b9050919050565b60006020820190508181036000830152612c57816129d8565b9050919050565b60006020820190508181036000830152612c77816129fb565b9050919050565b60006020820190508181036000830152612c9781612a1e565b9050919050565b60006020820190508181036000830152612cb781612a41565b9050919050565b6000602082019050612cd36000830184612a87565b92915050565b6000612ce3612cf4565b9050612cef8282612f36565b919050565b6000604051905090565b600067ffffffffffffffff821115612d1957612d18612ff4565b5b612d2282613023565b9050602081019050919050565b600067ffffffffffffffff821115612d4a57612d49612ff4565b5b612d5382613023565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612dce82612eb8565b9150612dd983612eb8565b925082612de957612de8612f96565b5b828204905092915050565b6000612dff82612eb8565b9150612e0a83612eb8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e4357612e42612f67565b5b828202905092915050565b6000612e5982612e98565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612eef578082015181840152602081019050612ed4565b83811115612efe576000848401525b50505050565b60006002820490506001821680612f1c57607f821691505b60208210811415612f3057612f2f612fc5565b5b50919050565b612f3f82613023565b810181811067ffffffffffffffff82111715612f5e57612f5d612ff4565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f636f6e74726163742e6a736f6e00000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2066756e647320746f207769746864726177000000000000000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f5472616e7366657273206c6f636b656400000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b6131fd81612e4e565b811461320857600080fd5b50565b61321481612e60565b811461321f57600080fd5b50565b61322b81612e6c565b811461323657600080fd5b50565b61324281612eb8565b811461324d57600080fd5b5056fea2646970667358221220d0356c75730271faa137ad9d0efc807ba63f7ca33f54d8f54fd52454fd72413764736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000000d537570657266616e2050617373000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008535550455246414e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007568747470733a2f2f6a743737777a6b36733267646836686e7a6f6735716f6f7572687471716e6873347066796c3770726576666268766e7875676f712e617277656176652e6e65742f54505f375a5636576a4450343763754e32446e55696563494e504c6a793458393853564b453957336f5a302f0000000000000000000000000000000000000000000000000000000000000000000000000000000000002a30786232313441446430333533343131323634433332453761616433363963423364633634423446324500000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Superfan Pass
Arg [1] : symbol_ (string): SUPERFAN
Arg [2] : baseURI_ (string): https://jt77wzk6s2gdh6hnzog5qoourhtqqnhs4pfyl7prevfbhvnxugoq.arweave.net/TP_7ZV6WjDP47cuN2DnUiecINPLjy4X98SVKE9W3oZ0/
Arg [3] : royaltyReceiver_ (address): 0x00000000000000000000000000000000000001a0
-----Encoded View---------------
16 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [5] : 537570657266616e205061737300000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [7] : 535550455246414e000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000075
Arg [9] : 68747470733a2f2f6a743737777a6b36733267646836686e7a6f6735716f6f75
Arg [10] : 72687471716e6873347066796c3770726576666268766e7875676f712e617277
Arg [11] : 656176652e6e65742f54505f375a5636576a4450343763754e32446e55696563
Arg [12] : 494e504c6a793458393853564b453957336f5a302f0000000000000000000000
Arg [13] : 000000000000000000000000000000000000000000000000000000000000002a
Arg [14] : 3078623231344144643033353334313132363443333245376161643336396342
Arg [15] : 3364633634423446324500000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
87505:3672:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89382:478;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20362:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22308:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21856:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;87569:18;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13769:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88145:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;87636:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87594:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31573:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88936:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;89237:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;90926:211;;;;;;;;;;;;;:::i;:::-;;90763:67;;;;;;;;;;;;;:::i;:::-;;88352:173;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23198:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88567:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85419:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20151:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15394:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47637:103;;;;;;;;;;;;;:::i;:::-;;90692:63;;;;;;;;;;;;;:::i;:::-;;46989:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20531:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22584:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23454:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;90566:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20706:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87669:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88725:134;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22963:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47895:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;89382:478;89530:4;89587:26;89572:41;;;:11;:41;;;;:83;;;;89645:10;89630:25;;:11;:25;;;;89572:83;:160;;;;89722:10;89707:25;;:11;:25;;;;89572:160;:237;;;;89799:10;89784:25;;:11;:25;;;;89572:237;89552:257;;89382:478;;;:::o;20362:100::-;20416:13;20449:5;20442:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20362:100;:::o;22308:204::-;22376:7;22401:16;22409:7;22401;:16::i;:::-;22396:64;;22426:34;;;;;;;;;;;;;;22396:64;22480:15;:24;22496:7;22480:24;;;;;;;;;;;;;;;;;;;;;22473:31;;22308:204;;;:::o;21856:386::-;21929:13;21945:16;21953:7;21945;:16::i;:::-;21929:32;;22001:5;21978:28;;:19;:17;:19::i;:::-;:28;;;21974:175;;22026:44;22043:5;22050:19;:17;:19::i;:::-;22026:16;:44::i;:::-;22021:128;;22098:35;;;;;;;;;;;;;;22021:128;21974:175;22188:2;22161:15;:24;22177:7;22161:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;22226:7;22222:2;22206:28;;22215:5;22206:28;;;;;;;;;;;;21856:386;;;:::o;87569:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;13769:315::-;13822:7;14050:15;:13;:15::i;:::-;14035:12;;14019:13;;:28;:46;14012:53;;13769:315;:::o;88145:119::-;46875:13;:11;:13::i;:::-;88218:7:::1;88208;;:17;;;;;;;;;;;;;;;;;;88241:15;88248:7;88241:15;;;;;;:::i;:::-;;;;;;;;88145:119:::0;:::o;87636:26::-;;;;;;;;;;;;;:::o;87594:35::-;;;;:::o;31573:2800::-;31707:27;31737;31756:7;31737:18;:27::i;:::-;31707:57;;31822:4;31781:45;;31797:19;31781:45;;;31777:86;;31835:28;;;;;;;;;;;;;;31777:86;31877:27;31906:23;31933:28;31953:7;31933:19;:28::i;:::-;31876:85;;;;32061:62;32080:15;32097:4;32103:19;:17;:19::i;:::-;32061:18;:62::i;:::-;32056:174;;32143:43;32160:4;32166:19;:17;:19::i;:::-;32143:16;:43::i;:::-;32138:92;;32195:35;;;;;;;;;;;;;;32138:92;32056:174;32261:1;32247:16;;:2;:16;;;32243:52;;;32272:23;;;;;;;;;;;;;;32243:52;32308:43;32330:4;32336:2;32340:7;32349:1;32308:21;:43::i;:::-;32444:15;32441:2;;;32584:1;32563:19;32556:30;32441:2;32979:18;:24;32998:4;32979:24;;;;;;;;;;;;;;;;32977:26;;;;;;;;;;;;33048:18;:22;33067:2;33048:22;;;;;;;;;;;;;;;;33046:24;;;;;;;;;;;33370:145;33407:2;33455:45;33470:4;33476:2;33480:19;33455:14;:45::i;:::-;10997:8;33428:72;33370:18;:145::i;:::-;33341:17;:26;33359:7;33341:26;;;;;;;;;;;:174;;;;33685:1;10997:8;33635:19;:46;:51;33631:626;;;33707:19;33739:1;33729:7;:11;33707:33;;33896:1;33862:17;:30;33880:11;33862:30;;;;;;;;;;;;:35;33858:384;;;34000:13;;33985:11;:28;33981:242;;34180:19;34147:17;:30;34165:11;34147:30;;;;;;;;;;;:52;;;;33981:242;33858:384;33631:626;;34304:7;34300:2;34285:27;;34294:4;34285:27;;;;;;;;;;;;34323:42;34344:4;34350:2;34354:7;34363:1;34323:20;:42::i;:::-;31573:2800;;;;;;:::o;88936:245::-;89052:16;89070:21;89117:16;;;;;;;;;;;89167:5;89149:14;;89136:10;:27;;;;:::i;:::-;89135:37;;;;:::i;:::-;89109:64;;;;88936:245;;;;;:::o;89237:90::-;46875:13;:11;:13::i;:::-;89304:15:::1;89310:8;89304:5;:15::i;:::-;89237:90:::0;:::o;90926:211::-;85024:19;:17;:19::i;:::-;90978:15:::1;90996:21;90978:39;;91047:1;91037:7;:11;91028:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;91085:44;91111:7;:5;:7::i;:::-;91121;91085:17;:44::i;:::-;85054:1;90926:211::o:0;90763:67::-;46875:13;:11;:13::i;:::-;90812:10:::1;:8;:10::i;:::-;90763:67::o:0;88352:173::-;46875:13;:11;:13::i;:::-;88463:8:::1;88446:14;:25;;;;88501:16;88482;;:35;;;;;;;;;;;;;;;;;;88352:173:::0;;:::o;23198:185::-;23336:39;23353:4;23359:2;23363:7;23336:39;;;;;;;;;;;;:16;:39::i;:::-;23198:185;;;:::o;88567:87::-;46875:13;:11;:13::i;:::-;88642:4:::1;88635;:11;;;;;;;;;;;;:::i;:::-;;88567:87:::0;:::o;85419:86::-;85466:4;85490:7;;;;;;;;;;;85483:14;;85419:86;:::o;20151:144::-;20215:7;20258:27;20277:7;20258:18;:27::i;:::-;20235:52;;20151:144;;;:::o;15394:224::-;15458:7;15499:1;15482:19;;:5;:19;;;15478:60;;;15510:28;;;;;;;;;;;;;;15478:60;9949:13;15556:18;:25;15575:5;15556:25;;;;;;;;;;;;;;;;:54;15549:61;;15394:224;;;:::o;47637:103::-;46875:13;:11;:13::i;:::-;47702:30:::1;47729:1;47702:18;:30::i;:::-;47637:103::o:0;90692:63::-;46875:13;:11;:13::i;:::-;90739:8:::1;:6;:8::i;:::-;90692:63::o:0;46989:87::-;47035:7;47062:6;;;;;;;;;;;47055:13;;46989:87;:::o;20531:104::-;20587:13;20620:7;20613:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20531:104;:::o;22584:308::-;22695:19;:17;:19::i;:::-;22683:31;;:8;:31;;;22679:61;;;22723:17;;;;;;;;;;;;;;22679:61;22805:8;22753:18;:39;22772:19;:17;:19::i;:::-;22753:39;;;;;;;;;;;;;;;:49;22793:8;22753:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;22865:8;22829:55;;22844:19;:17;:19::i;:::-;22829:55;;;22875:8;22829:55;;;;;;:::i;:::-;;;;;;;;22584:308;;:::o;23454:399::-;23621:31;23634:4;23640:2;23644:7;23621:12;:31::i;:::-;23685:1;23667:2;:14;;;:19;23663:183;;23706:56;23737:4;23743:2;23747:7;23756:5;23706:30;:56::i;:::-;23701:145;;23790:40;;;;;;;;;;;;;;23701:145;23663:183;23454:399;;;;:::o;90566:118::-;85024:19;:17;:19::i;:::-;46875:13:::1;:11;:13::i;:::-;90648:28:::2;90654:10;90666:9;90648:5;:28::i;:::-;90566:118:::0;:::o;20706:318::-;20779:13;20810:16;20818:7;20810;:16::i;:::-;20805:59;;20835:29;;;;;;;;;;;;;;20805:59;20877:21;20901:10;:8;:10::i;:::-;20877:34;;20954:1;20935:7;20929:21;:26;;:87;;;;;;;;;;;;;;;;;20982:7;20991:18;21001:7;20991:9;:18::i;:::-;20965:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;20929:87;20922:94;;;20706:318;;;:::o;87669:31::-;;;;;;;;;;;;;:::o;88725:134::-;88771:13;88828:4;88811:39;;;;;;;;:::i;:::-;;;;;;;;;;;;;88797:54;;88725:134;:::o;22963:164::-;23060:4;23084:18;:25;23103:5;23084:25;;;;;;;;;;;;;;;:35;23110:8;23084:35;;;;;;;;;;;;;;;;;;;;;;;;;23077:42;;22963:164;;;;:::o;47895:201::-;46875:13;:11;:13::i;:::-;48004:1:::1;47984:22;;:8;:22;;;;47976:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;48060:28;48079:8;48060:18;:28::i;:::-;47895:201:::0;:::o;24108:273::-;24165:4;24221:7;24202:15;:13;:15::i;:::-;:26;;:66;;;;;24255:13;;24245:7;:23;24202:66;:152;;;;;24353:1;10719:8;24306:17;:26;24324:7;24306:26;;;;;;;;;;;;:43;:48;24202:152;24182:172;;24108:273;;;:::o;42669:105::-;42729:7;42756:10;42749:17;;42669:105;:::o;13293:92::-;13349:7;13293:92;:::o;47154:132::-;47229:12;:10;:12::i;:::-;47218:23;;:7;:5;:7::i;:::-;:23;;;47210:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47154:132::o;17068:1129::-;17135:7;17155:12;17170:7;17155:22;;17238:4;17219:15;:13;:15::i;:::-;:23;17215:915;;17272:13;;17265:4;:20;17261:869;;;17310:14;17327:17;:23;17345:4;17327:23;;;;;;;;;;;;17310:40;;17443:1;10719:8;17416:6;:23;:28;17412:699;;;17935:113;17952:1;17942:6;:11;17935:113;;;17995:17;:25;18013:6;;;;;;;17995:25;;;;;;;;;;;;17986:34;;17935:113;;;18081:6;18074:13;;;;;;17412:699;17261:869;;17215:915;18158:31;;;;;;;;;;;;;;17068:1129;;;;:::o;29909:652::-;30004:27;30033:23;30074:53;30130:15;30074:71;;30316:7;30310:4;30303:21;30351:22;30345:4;30338:36;30427:4;30421;30411:21;30388:44;;30523:19;30517:26;30498:45;;30254:300;;;;:::o;30674:645::-;30816:11;30978:15;30972:4;30968:26;30960:34;;31137:15;31126:9;31122:31;31109:44;;31284:15;31273:9;31270:30;31263:4;31252:9;31249:19;31246:55;31236:65;;30849:463;;;;;:::o;89946:350::-;85024:19;:17;:19::i;:::-;90136:7:::1;;;;;;;;;;;90132:90;;;90182:7;:5;:7::i;:::-;90168:21;;:10;:21;;;90160:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;90132:90;90232:56;90260:4;90266:2;90270:7;90279:8;90232:27;:56::i;:::-;89946:350:::0;;;;:::o;39814:309::-;39949:7;39969:16;11120:3;39995:19;:40;;39969:67;;11120:3;40062:31;40073:4;40079:2;40083:9;40062:10;:31::i;:::-;40054:40;;:61;;40047:68;;;39814:309;;;;;:::o;19642:447::-;19722:14;19890:15;19883:5;19879:27;19870:36;;20064:5;20050:11;20026:22;20022:40;20019:51;20012:5;20009:62;19999:72;;19758:324;;;;:::o;42320:158::-;;;;;:::o;34451:89::-;34511:21;34517:7;34526:5;34511;:21::i;:::-;34451:89;:::o;85578:108::-;85649:8;:6;:8::i;:::-;85648:9;85640:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;85578:108::o;59546:317::-;59661:6;59636:21;:31;;59628:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;59715:12;59733:9;:14;;59755:6;59733:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59714:52;;;59785:7;59777:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;59546:317;;;:::o;86274:120::-;85283:16;:14;:16::i;:::-;86343:5:::1;86333:7;;:15;;;;;;;;;;;;;;;;;;86364:22;86373:12;:10;:12::i;:::-;86364:22;;;;;;:::i;:::-;;;;;;;;86274:120::o:0;48256:191::-;48330:16;48349:6;;;;;;;;;;;48330:25;;48375:8;48366:6;;:17;;;;;;;;;;;;;;;;;;48430:8;48399:40;;48420:8;48399:40;;;;;;;;;;;;48256:191;;:::o;86015:118::-;85024:19;:17;:19::i;:::-;86085:4:::1;86075:7;;:14;;;;;;;;;;;;;;;;;;86105:20;86112:12;:10;:12::i;:::-;86105:20;;;;;;:::i;:::-;;;;;;;;86015:118::o:0;38324:716::-;38487:4;38533:2;38508:45;;;38554:19;:17;:19::i;:::-;38575:4;38581:7;38590:5;38508:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38504:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38808:1;38791:6;:13;:18;38787:235;;;38837:40;;;;;;;;;;;;;;38787:235;38980:6;38974:13;38965:6;38961:2;38957:15;38950:38;38504:529;38677:54;;;38667:64;;;:6;:64;;;;38660:71;;;38324:716;;;;;;:::o;25939:1529::-;26004:20;26027:13;;26004:36;;26069:1;26055:16;;:2;:16;;;26051:48;;;26080:19;;;;;;;;;;;;;;26051:48;26126:1;26114:8;:13;26110:44;;;26136:18;;;;;;;;;;;;;;26110:44;26167:61;26197:1;26201:2;26205:12;26219:8;26167:21;:61::i;:::-;26710:1;10086:2;26681:1;:25;;26680:31;26668:8;:44;26642:18;:22;26661:2;26642:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;26989:139;27026:2;27080:33;27103:1;27107:2;27111:1;27080:14;:33::i;:::-;27047:30;27068:8;27047:20;:30::i;:::-;:66;26989:18;:139::i;:::-;26955:17;:31;26973:12;26955:31;;;;;;;;;;;:173;;;;27145:15;27163:12;27145:30;;27190:11;27219:8;27204:12;:23;27190:37;;27242:101;27294:9;;;;;;27290:2;27269:35;;27286:1;27269:35;;;;;;;;;;;;27338:3;27328:7;:13;27242:101;;27375:3;27359:13;:19;;;;25939:1529;;27400:60;27429:1;27433:2;27437:12;27451:8;27400:20;:60::i;:::-;25939:1529;;;:::o;90341:97::-;90393:13;90426:4;90419:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90341:97;:::o;42880:1960::-;42937:17;43356:3;43349:4;43343:11;43339:21;43332:28;;43447:3;43441:4;43434:17;43553:3;44009:5;44139:1;44134:3;44130:11;44123:18;;44276:2;44270:4;44266:13;44262:2;44258:22;44253:3;44245:36;44317:2;44311:4;44307:13;44299:21;;43901:697;44336:4;43901:697;;;44527:1;44522:3;44518:11;44511:18;;44578:2;44572:4;44568:13;44564:2;44560:22;44555:3;44547:36;44431:2;44425:4;44421:13;44413:21;;43901:697;;;43905:430;44637:3;44632;44628:13;44752:2;44747:3;44743:12;44736:19;;44815:6;44810:3;44803:19;42976:1857;;;;;:::o;45534:98::-;45587:7;45614:10;45607:17;;45534:98;:::o;41502:159::-;;;;;:::o;40699:147::-;40836:6;40699:147;;;;;:::o;34769:3063::-;34849:27;34879;34898:7;34879:18;:27::i;:::-;34849:57;;34919:12;34950:19;34919:52;;34985:27;35014:23;35041:28;35061:7;35041:19;:28::i;:::-;34984:85;;;;35086:13;35082:310;;;35207:62;35226:15;35243:4;35249:19;:17;:19::i;:::-;35207:18;:62::i;:::-;35202:178;;35293:43;35310:4;35316:19;:17;:19::i;:::-;35293:16;:43::i;:::-;35288:92;;35345:35;;;;;;;;;;;;;;35288:92;35202:178;35082:310;35404:51;35426:4;35440:1;35444:7;35453:1;35404:21;:51::i;:::-;35548:15;35545:2;;;35688:1;35667:19;35660:30;35545:2;36364:1;10212:3;36335:1;:25;;36334:31;36306:18;:24;36325:4;36306:24;;;;;;;;;;;;;;;;:59;;;;;;;;;;;36632:174;36669:4;36738:53;36753:4;36767:1;36771:19;36738:14;:53::i;:::-;10997:8;10719;36693:41;36692:99;36632:18;:174::i;:::-;36603:17;:26;36621:7;36603:26;;;;;;;;;;;:203;;;;36976:1;10997:8;36926:19;:46;:51;36922:626;;;36998:19;37030:1;37020:7;:11;36998:33;;37187:1;37153:17;:30;37171:11;37153:30;;;;;;;;;;;;:35;37149:384;;;37291:13;;37276:11;:28;37272:242;;37471:19;37438:17;:30;37456:11;37438:30;;;;;;;;;;;:52;;;;37272:242;37149:384;36922:626;;37603:7;37599:1;37576:35;;37585:4;37576:35;;;;;;;;;;;;37622:50;37643:4;37657:1;37661:7;37670:1;37622:20;:50::i;:::-;37799:12;;:14;;;;;;;;;;;;;34769:3063;;;;;;:::o;85763:108::-;85830:8;:6;:8::i;:::-;85822:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;85763:108::o;21472:322::-;21542:14;21773:1;21763:8;21760:15;21735:23;21731:45;21721:55;;21644:143;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1036:5;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;1190:5;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;1349:5;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;1641:5;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;1910:5;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;2068:6;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;2345:6;2353;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;2767:6;2775;2783;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;3343:6;3351;3359;3367;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;4128:6;4136;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;4538:6;4546;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:256::-;4939:6;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:50;5114:7;5105:6;5094:9;5090:22;5072:50;:::i;:::-;5062:60;;5018:114;4946:193;;;;:::o;5145:260::-;5203:6;5252:2;5240:9;5231:7;5227:23;5223:32;5220:2;;;5268:1;5265;5258:12;5220:2;5311:1;5336:52;5380:7;5371:6;5360:9;5356:22;5336:52;:::i;:::-;5326:62;;5282:116;5210:195;;;;:::o;5411:282::-;5480:6;5529:2;5517:9;5508:7;5504:23;5500:32;5497:2;;;5545:1;5542;5535:12;5497:2;5588:1;5613:63;5668:7;5659:6;5648:9;5644:22;5613:63;:::i;:::-;5603:73;;5559:127;5487:206;;;;:::o;5699:375::-;5768:6;5817:2;5805:9;5796:7;5792:23;5788:32;5785:2;;;5833:1;5830;5823:12;5785:2;5904:1;5893:9;5889:17;5876:31;5934:18;5926:6;5923:30;5920:2;;;5966:1;5963;5956:12;5920:2;5994:63;6049:7;6040:6;6029:9;6025:22;5994:63;:::i;:::-;5984:73;;5847:220;5775:299;;;;:::o;6080:262::-;6139:6;6188:2;6176:9;6167:7;6163:23;6159:32;6156:2;;;6204:1;6201;6194:12;6156:2;6247:1;6272:53;6317:7;6308:6;6297:9;6293:22;6272:53;:::i;:::-;6262:63;;6218:117;6146:196;;;;:::o;6348:407::-;6416:6;6424;6473:2;6461:9;6452:7;6448:23;6444:32;6441:2;;;6489:1;6486;6479:12;6441:2;6532:1;6557:53;6602:7;6593:6;6582:9;6578:22;6557:53;:::i;:::-;6547:63;;6503:117;6659:2;6685:53;6730:7;6721:6;6710:9;6706:22;6685:53;:::i;:::-;6675:63;;6630:118;6431:324;;;;;:::o;6761:407::-;6829:6;6837;6886:2;6874:9;6865:7;6861:23;6857:32;6854:2;;;6902:1;6899;6892:12;6854:2;6945:1;6970:53;7015:7;7006:6;6995:9;6991:22;6970:53;:::i;:::-;6960:63;;6916:117;7072:2;7098:53;7143:7;7134:6;7123:9;7119:22;7098:53;:::i;:::-;7088:63;;7043:118;6844:324;;;;;:::o;7174:118::-;7261:24;7279:5;7261:24;:::i;:::-;7256:3;7249:37;7239:53;;:::o;7298:109::-;7379:21;7394:5;7379:21;:::i;:::-;7374:3;7367:34;7357:50;;:::o;7413:360::-;7499:3;7527:38;7559:5;7527:38;:::i;:::-;7581:70;7644:6;7639:3;7581:70;:::i;:::-;7574:77;;7660:52;7705:6;7700:3;7693:4;7686:5;7682:16;7660:52;:::i;:::-;7737:29;7759:6;7737:29;:::i;:::-;7732:3;7728:39;7721:46;;7503:270;;;;;:::o;7779:364::-;7867:3;7895:39;7928:5;7895:39;:::i;:::-;7950:71;8014:6;8009:3;7950:71;:::i;:::-;7943:78;;8030:52;8075:6;8070:3;8063:4;8056:5;8052:16;8030:52;:::i;:::-;8107:29;8129:6;8107:29;:::i;:::-;8102:3;8098:39;8091:46;;7871:272;;;;;:::o;8149:377::-;8255:3;8283:39;8316:5;8283:39;:::i;:::-;8338:89;8420:6;8415:3;8338:89;:::i;:::-;8331:96;;8436:52;8481:6;8476:3;8469:4;8462:5;8458:16;8436:52;:::i;:::-;8513:6;8508:3;8504:16;8497:23;;8259:267;;;;;:::o;8556:845::-;8659:3;8696:5;8690:12;8725:36;8751:9;8725:36;:::i;:::-;8777:89;8859:6;8854:3;8777:89;:::i;:::-;8770:96;;8897:1;8886:9;8882:17;8913:1;8908:137;;;;9059:1;9054:341;;;;8875:520;;8908:137;8992:4;8988:9;8977;8973:25;8968:3;8961:38;9028:6;9023:3;9019:16;9012:23;;8908:137;;9054:341;9121:38;9153:5;9121:38;:::i;:::-;9181:1;9195:154;9209:6;9206:1;9203:13;9195:154;;;9283:7;9277:14;9273:1;9268:3;9264:11;9257:35;9333:1;9324:7;9320:15;9309:26;;9231:4;9228:1;9224:12;9219:17;;9195:154;;;9378:6;9373:3;9369:16;9362:23;;9061:334;;8875:520;;8663:738;;;;;;:::o;9407:366::-;9549:3;9570:67;9634:2;9629:3;9570:67;:::i;:::-;9563:74;;9646:93;9735:3;9646:93;:::i;:::-;9764:2;9759:3;9755:12;9748:19;;9553:220;;;:::o;9779:402::-;9939:3;9960:85;10042:2;10037:3;9960:85;:::i;:::-;9953:92;;10054:93;10143:3;10054:93;:::i;:::-;10172:2;10167:3;10163:12;10156:19;;9943:238;;;:::o;10187:366::-;10329:3;10350:67;10414:2;10409:3;10350:67;:::i;:::-;10343:74;;10426:93;10515:3;10426:93;:::i;:::-;10544:2;10539:3;10535:12;10528:19;;10333:220;;;:::o;10559:366::-;10701:3;10722:67;10786:2;10781:3;10722:67;:::i;:::-;10715:74;;10798:93;10887:3;10798:93;:::i;:::-;10916:2;10911:3;10907:12;10900:19;;10705:220;;;:::o;10931:366::-;11073:3;11094:67;11158:2;11153:3;11094:67;:::i;:::-;11087:74;;11170:93;11259:3;11170:93;:::i;:::-;11288:2;11283:3;11279:12;11272:19;;11077:220;;;:::o;11303:366::-;11445:3;11466:67;11530:2;11525:3;11466:67;:::i;:::-;11459:74;;11542:93;11631:3;11542:93;:::i;:::-;11660:2;11655:3;11651:12;11644:19;;11449:220;;;:::o;11675:366::-;11817:3;11838:67;11902:2;11897:3;11838:67;:::i;:::-;11831:74;;11914:93;12003:3;11914:93;:::i;:::-;12032:2;12027:3;12023:12;12016:19;;11821:220;;;:::o;12047:366::-;12189:3;12210:67;12274:2;12269:3;12210:67;:::i;:::-;12203:74;;12286:93;12375:3;12286:93;:::i;:::-;12404:2;12399:3;12395:12;12388:19;;12193:220;;;:::o;12419:366::-;12561:3;12582:67;12646:2;12641:3;12582:67;:::i;:::-;12575:74;;12658:93;12747:3;12658:93;:::i;:::-;12776:2;12771:3;12767:12;12760:19;;12565:220;;;:::o;12791:398::-;12950:3;12971:83;13052:1;13047:3;12971:83;:::i;:::-;12964:90;;13063:93;13152:3;13063:93;:::i;:::-;13181:1;13176:3;13172:11;13165:18;;12954:235;;;:::o;13195:118::-;13282:24;13300:5;13282:24;:::i;:::-;13277:3;13270:37;13260:53;;:::o;13319:435::-;13499:3;13521:95;13612:3;13603:6;13521:95;:::i;:::-;13514:102;;13633:95;13724:3;13715:6;13633:95;:::i;:::-;13626:102;;13745:3;13738:10;;13503:251;;;;;:::o;13760:535::-;13990:3;14012:92;14100:3;14091:6;14012:92;:::i;:::-;14005:99;;14121:148;14265:3;14121:148;:::i;:::-;14114:155;;14286:3;14279:10;;13994:301;;;;:::o;14301:379::-;14485:3;14507:147;14650:3;14507:147;:::i;:::-;14500:154;;14671:3;14664:10;;14489:191;;;:::o;14686:222::-;14779:4;14817:2;14806:9;14802:18;14794:26;;14830:71;14898:1;14887:9;14883:17;14874:6;14830:71;:::i;:::-;14784:124;;;;:::o;14914:640::-;15109:4;15147:3;15136:9;15132:19;15124:27;;15161:71;15229:1;15218:9;15214:17;15205:6;15161:71;:::i;:::-;15242:72;15310:2;15299:9;15295:18;15286:6;15242:72;:::i;:::-;15324;15392:2;15381:9;15377:18;15368:6;15324:72;:::i;:::-;15443:9;15437:4;15433:20;15428:2;15417:9;15413:18;15406:48;15471:76;15542:4;15533:6;15471:76;:::i;:::-;15463:84;;15114:440;;;;;;;:::o;15560:332::-;15681:4;15719:2;15708:9;15704:18;15696:26;;15732:71;15800:1;15789:9;15785:17;15776:6;15732:71;:::i;:::-;15813:72;15881:2;15870:9;15866:18;15857:6;15813:72;:::i;:::-;15686:206;;;;;:::o;15898:210::-;15985:4;16023:2;16012:9;16008:18;16000:26;;16036:65;16098:1;16087:9;16083:17;16074:6;16036:65;:::i;:::-;15990:118;;;;:::o;16114:313::-;16227:4;16265:2;16254:9;16250:18;16242:26;;16314:9;16308:4;16304:20;16300:1;16289:9;16285:17;16278:47;16342:78;16415:4;16406:6;16342:78;:::i;:::-;16334:86;;16232:195;;;;:::o;16433:419::-;16599:4;16637:2;16626:9;16622:18;16614:26;;16686:9;16680:4;16676:20;16672:1;16661:9;16657:17;16650:47;16714:131;16840:4;16714:131;:::i;:::-;16706:139;;16604:248;;;:::o;16858:419::-;17024:4;17062:2;17051:9;17047:18;17039:26;;17111:9;17105:4;17101:20;17097:1;17086:9;17082:17;17075:47;17139:131;17265:4;17139:131;:::i;:::-;17131:139;;17029:248;;;:::o;17283:419::-;17449:4;17487:2;17476:9;17472:18;17464:26;;17536:9;17530:4;17526:20;17522:1;17511:9;17507:17;17500:47;17564:131;17690:4;17564:131;:::i;:::-;17556:139;;17454:248;;;:::o;17708:419::-;17874:4;17912:2;17901:9;17897:18;17889:26;;17961:9;17955:4;17951:20;17947:1;17936:9;17932:17;17925:47;17989:131;18115:4;17989:131;:::i;:::-;17981:139;;17879:248;;;:::o;18133:419::-;18299:4;18337:2;18326:9;18322:18;18314:26;;18386:9;18380:4;18376:20;18372:1;18361:9;18357:17;18350:47;18414:131;18540:4;18414:131;:::i;:::-;18406:139;;18304:248;;;:::o;18558:419::-;18724:4;18762:2;18751:9;18747:18;18739:26;;18811:9;18805:4;18801:20;18797:1;18786:9;18782:17;18775:47;18839:131;18965:4;18839:131;:::i;:::-;18831:139;;18729:248;;;:::o;18983:419::-;19149:4;19187:2;19176:9;19172:18;19164:26;;19236:9;19230:4;19226:20;19222:1;19211:9;19207:17;19200:47;19264:131;19390:4;19264:131;:::i;:::-;19256:139;;19154:248;;;:::o;19408:419::-;19574:4;19612:2;19601:9;19597:18;19589:26;;19661:9;19655:4;19651:20;19647:1;19636:9;19632:17;19625:47;19689:131;19815:4;19689:131;:::i;:::-;19681:139;;19579:248;;;:::o;19833:222::-;19926:4;19964:2;19953:9;19949:18;19941:26;;19977:71;20045:1;20034:9;20030:17;20021:6;19977:71;:::i;:::-;19931:124;;;;:::o;20061:129::-;20095:6;20122:20;;:::i;:::-;20112:30;;20151:33;20179:4;20171:6;20151:33;:::i;:::-;20102:88;;;:::o;20196:75::-;20229:6;20262:2;20256:9;20246:19;;20236:35;:::o;20277:307::-;20338:4;20428:18;20420:6;20417:30;20414:2;;;20450:18;;:::i;:::-;20414:2;20488:29;20510:6;20488:29;:::i;:::-;20480:37;;20572:4;20566;20562:15;20554:23;;20343:241;;;:::o;20590:308::-;20652:4;20742:18;20734:6;20731:30;20728:2;;;20764:18;;:::i;:::-;20728:2;20802:29;20824:6;20802:29;:::i;:::-;20794:37;;20886:4;20880;20876:15;20868:23;;20657:241;;;:::o;20904:141::-;20953:4;20976:3;20968:11;;20999:3;20996:1;20989:14;21033:4;21030:1;21020:18;21012:26;;20958:87;;;:::o;21051:98::-;21102:6;21136:5;21130:12;21120:22;;21109:40;;;:::o;21155:99::-;21207:6;21241:5;21235:12;21225:22;;21214:40;;;:::o;21260:168::-;21343:11;21377:6;21372:3;21365:19;21417:4;21412:3;21408:14;21393:29;;21355:73;;;;:::o;21434:147::-;21535:11;21572:3;21557:18;;21547:34;;;;:::o;21587:169::-;21671:11;21705:6;21700:3;21693:19;21745:4;21740:3;21736:14;21721:29;;21683:73;;;;:::o;21762:148::-;21864:11;21901:3;21886:18;;21876:34;;;;:::o;21916:185::-;21956:1;21973:20;21991:1;21973:20;:::i;:::-;21968:25;;22007:20;22025:1;22007:20;:::i;:::-;22002:25;;22046:1;22036:2;;22051:18;;:::i;:::-;22036:2;22093:1;22090;22086:9;22081:14;;21958:143;;;;:::o;22107:348::-;22147:7;22170:20;22188:1;22170:20;:::i;:::-;22165:25;;22204:20;22222:1;22204:20;:::i;:::-;22199:25;;22392:1;22324:66;22320:74;22317:1;22314:81;22309:1;22302:9;22295:17;22291:105;22288:2;;;22399:18;;:::i;:::-;22288:2;22447:1;22444;22440:9;22429:20;;22155:300;;;;:::o;22461:96::-;22498:7;22527:24;22545:5;22527:24;:::i;:::-;22516:35;;22506:51;;;:::o;22563:90::-;22597:7;22640:5;22633:13;22626:21;22615:32;;22605:48;;;:::o;22659:149::-;22695:7;22735:66;22728:5;22724:78;22713:89;;22703:105;;;:::o;22814:126::-;22851:7;22891:42;22884:5;22880:54;22869:65;;22859:81;;;:::o;22946:77::-;22983:7;23012:5;23001:16;;22991:32;;;:::o;23029:154::-;23113:6;23108:3;23103;23090:30;23175:1;23166:6;23161:3;23157:16;23150:27;23080:103;;;:::o;23189:307::-;23257:1;23267:113;23281:6;23278:1;23275:13;23267:113;;;23366:1;23361:3;23357:11;23351:18;23347:1;23342:3;23338:11;23331:39;23303:2;23300:1;23296:10;23291:15;;23267:113;;;23398:6;23395:1;23392:13;23389:2;;;23478:1;23469:6;23464:3;23460:16;23453:27;23389:2;23238:258;;;;:::o;23502:320::-;23546:6;23583:1;23577:4;23573:12;23563:22;;23630:1;23624:4;23620:12;23651:18;23641:2;;23707:4;23699:6;23695:17;23685:27;;23641:2;23769;23761:6;23758:14;23738:18;23735:38;23732:2;;;23788:18;;:::i;:::-;23732:2;23553:269;;;;:::o;23828:281::-;23911:27;23933:4;23911:27;:::i;:::-;23903:6;23899:40;24041:6;24029:10;24026:22;24005:18;23993:10;23990:34;23987:62;23984:2;;;24052:18;;:::i;:::-;23984:2;24092:10;24088:2;24081:22;23871:238;;;:::o;24115:180::-;24163:77;24160:1;24153:88;24260:4;24257:1;24250:15;24284:4;24281:1;24274:15;24301:180;24349:77;24346:1;24339:88;24446:4;24443:1;24436:15;24470:4;24467:1;24460:15;24487:180;24535:77;24532:1;24525:88;24632:4;24629:1;24622:15;24656:4;24653:1;24646:15;24673:180;24721:77;24718:1;24711:88;24818:4;24815:1;24808:15;24842:4;24839:1;24832:15;24859:102;24900:6;24951:2;24947:7;24942:2;24935:5;24931:14;24927:28;24917:38;;24907:54;;;:::o;24967:170::-;25107:22;25103:1;25095:6;25091:14;25084:46;25073:64;:::o;25143:163::-;25283:15;25279:1;25271:6;25267:14;25260:39;25249:57;:::o;25312:225::-;25452:34;25448:1;25440:6;25436:14;25429:58;25521:8;25516:2;25508:6;25504:15;25497:33;25418:119;:::o;25543:170::-;25683:22;25679:1;25671:6;25667:14;25660:46;25649:64;:::o;25719:245::-;25859:34;25855:1;25847:6;25843:14;25836:58;25928:28;25923:2;25915:6;25911:15;25904:53;25825:139;:::o;25970:179::-;26110:31;26106:1;26098:6;26094:14;26087:55;26076:73;:::o;26155:166::-;26295:18;26291:1;26283:6;26279:14;26272:42;26261:60;:::o;26327:166::-;26467:18;26463:1;26455:6;26451:14;26444:42;26433:60;:::o;26499:182::-;26639:34;26635:1;26627:6;26623:14;26616:58;26605:76;:::o;26687:114::-;26793:8;:::o;26807:122::-;26880:24;26898:5;26880:24;:::i;:::-;26873:5;26870:35;26860:2;;26919:1;26916;26909:12;26860:2;26850:79;:::o;26935:116::-;27005:21;27020:5;27005:21;:::i;:::-;26998:5;26995:32;26985:2;;27041:1;27038;27031:12;26985:2;26975:76;:::o;27057:120::-;27129:23;27146:5;27129:23;:::i;:::-;27122:5;27119:34;27109:2;;27167:1;27164;27157:12;27109:2;27099:78;:::o;27183:122::-;27256:24;27274:5;27256:24;:::i;:::-;27249:5;27246:35;27236:2;;27295:1;27292;27285:12;27236:2;27226:79;:::o
Swarm Source
ipfs://d0356c75730271faa137ad9d0efc807ba63f7ca33f54d8f54fd52454fd724137
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.