ERC-721
Overview
Max Total Supply
456 SR
Holders
449
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 SRLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Specter
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-22 */ // File: @openzeppelin/contracts/utils/Strings.sol // 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/Address.sol // 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/token/ERC721/IERC721Receiver.sol // 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/utils/introspection/IERC165.sol // 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/token/ERC721/IERC721.sol // 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/extensions/IERC721Metadata.sol // 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/introspection/ERC165.sol // 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/interfaces/IERC2981.sol // 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/common/ERC2981.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @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 Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. 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; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _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 _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * 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 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 override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary 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 { _addressData[owner].aux = aux; } /** * 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) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // 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. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @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, 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 overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @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 == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_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 { _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 { _transfer(from, to, tokenId); if (to.isContract() && !_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 && !_ownerships[tokenId].burned; } 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. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @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. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) 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 or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @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 _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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 { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is 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 { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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 { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } 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 Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @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 IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @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 {} } // File: @openzeppelin/contracts/access/Ownable.sol // 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: Specter.sol pragma solidity ^0.8.4; contract Specter is ERC2981, ERC721A, Ownable { using Strings for uint256; uint32 public constant MAX_SUPPLY = 888; uint32 public FREE_SUPPLY = 444; uint32 public _freeMintTotal; uint32 public _MintPerWallet = 10; uint32 public _freeLimitPerWallet = 1; bool public _publicMintActive = true; bool public _freeMintActive = true; uint256 public _price = 0.001 ether; string public _prerevealURI = "ipfs://QmX36KvRzgVBkqKQY5M6Z6eEQTYTYLHUay8kkAYvPLo6jf"; string public _matadataURI; constructor() ERC721A("specter", "SR") { _setDefaultRoyalty(msg.sender, 750); } modifier callerIsUser() { require(tx.origin == msg.sender, "Contract caller forbidden"); _; } modifier supplyCompliance(uint32 amount) { require(_totalMinted() + amount <= MAX_SUPPLY, "Exceed max supply"); _; } modifier publicCompliance(uint32 amount) { require(_publicMintActive, "Public mint is inactive"); require(msg.value == _price * amount, "Value error"); require( _numberMinted(msg.sender) + amount <= _MintPerWallet, "Exceed public mint limit per wallet" ); _; } modifier freeCompliance(uint32 amount) { require(_freeMintActive, "Free mint is inactive"); require(_freeMintTotal < FREE_SUPPLY, "Exceed free supply"); require( _getAux(msg.sender) + amount <= _freeLimitPerWallet, "Exceed free mint limit per wallet" ); _; } // Public Read function tokenURI(uint256 tokenId) public view override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _matadataURI; return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json")) : _prerevealURI; } function _startTokenId() internal pure override returns (uint256) { return 1; } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC2981, ERC721A) returns (bool) { return interfaceId == type(IERC2981).interfaceId || interfaceId == type(IERC721).interfaceId || super.supportsInterface(interfaceId); } // Public Write function mint(uint32 amount) external payable supplyCompliance(amount) publicCompliance(amount) callerIsUser { _mint(msg.sender, amount, "", false); } function freeMint() external supplyCompliance(1) freeCompliance(1) callerIsUser { _setAux(msg.sender, _getAux(msg.sender) + 1); _freeMintTotal += 1; _mint(msg.sender, 1, "", false); } // Only Owner function setPublicLimitPerWallet(uint32 MintPerWallet) external onlyOwner { _MintPerWallet = MintPerWallet; } function set_free_supply(uint32 FREE_SUPPLY_NUM) external onlyOwner { FREE_SUPPLY = FREE_SUPPLY_NUM; } function flipPublicMintActive() external onlyOwner { _publicMintActive = !_publicMintActive; } function flipFreeMintActive() external onlyOwner { _freeMintActive = !_freeMintActive; } function setPrerevealURI(string calldata prerevealURI) external onlyOwner { _prerevealURI = prerevealURI; } function setMetadataURI(string calldata metadataURI) external onlyOwner { _matadataURI = metadataURI; } function setPrice(uint256 price) external onlyOwner { _price = price; } function setFeeNumerator(address receiver, uint96 feeNumerator) public onlyOwner { _setDefaultRoyalty(receiver, feeNumerator); } function withdraw(address to) external onlyOwner { payable(to).transfer(address(this).balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_SUPPLY","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_MintPerWallet","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_freeLimitPerWallet","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_freeMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_freeMintTotal","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_matadataURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_prerevealURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_publicMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipFreeMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPublicMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"amount","type":"uint32"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setFeeNumerator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"metadataURI","type":"string"}],"name":"setMetadataURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"prerevealURI","type":"string"}],"name":"setPrerevealURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"MintPerWallet","type":"uint32"}],"name":"setPublicLimitPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"FREE_SUPPLY_NUM","type":"uint32"}],"name":"set_free_supply","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":[{"internalType":"address","name":"to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
600a8054600167ffffffff0000000160a01b03167c0a00000000000001bc0000000000000000000000000000000000000000179055600b805465ffffffffffff19166501010000000117905566038d7ea4c68000600c5560e060405260356080818152906200277e60a03980516200008091600d916020909101906200026c565b503480156200008e57600080fd5b50604080518082018252600781526639b832b1ba32b960c91b60208083019182528351808501909452600284526129a960f11b908401528151919291620000d8916004916200026c565b508051620000ee9060059060208401906200026c565b5050600160025550620001013362000115565b6200010f336102ee62000167565b6200034f565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6127106001600160601b0382161115620001db5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084015b60405180910390fd5b6001600160a01b038216620002335760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401620001d2565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600055565b8280546200027a9062000312565b90600052602060002090601f0160209004810192826200029e5760008555620002e9565b82601f10620002b957805160ff1916838001178555620002e9565b82800160010185558215620002e9579182015b82811115620002e9578251825591602001919060010190620002cc565b50620002f7929150620002fb565b5090565b5b80821115620002f75760008155600101620002fc565b600181811c908216806200032757607f821691505b602082108114156200034957634e487b7160e01b600052602260045260246000fd5b50919050565b61241f806200035f6000396000f3fe60806040526004361061023b5760003560e01c8063750521f51161012e578063b88d4fde116100ab578063dc33e6811161006f578063dc33e681146106b8578063e9812cba146106d8578063e985e9c5146106ed578063f2fde38b14610736578063f5ad95a91461075657600080fd5b8063b88d4fde14610620578063bbe5989114610640578063c2de867414610660578063c87b56dd14610683578063d13423a9146106a357600080fd5b806395d89b41116100f257806395d89b41146105925780639858cf19146105a7578063a22cb465146105cb578063a71bbebe146105eb578063b1645eb9146105fe57600080fd5b8063750521f51461050a5780638da5cb5b1461052a5780638f430db01461054857806391b7f5ed1461055d57806392e3114b1461057d57600080fd5b80632a55205a116101bc57806351cff8d91161018057806351cff8d9146104805780635b70ea9f146104a05780636352211e146104b557806370a08231146104d5578063715018a6146104f557600080fd5b80632a55205a146103c757806332cb6b0c146104065780633ea9730a1461041c57806342842e0e1461043c5780634cba82861461045c57600080fd5b80630ecfaf25116102035780630ecfaf251461031157806318160ddd14610331578063235b6ea11461035857806323b872dd1461036e57806324b311b11461038e57600080fd5b806301ffc9a71461024057806306fdde0314610275578063078eef2814610297578063081812fc146102b9578063095ea7b3146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004612072565b610773565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a6107b9565b60405161026c9190612226565b3480156102a357600080fd5b506102b76102b23660046120ac565b61084b565b005b3480156102c557600080fd5b506102d96102d436600461211d565b610864565b6040516001600160a01b03909116815260200161026c565b3480156102fd57600080fd5b506102b761030c366004612010565b6108a8565b34801561031d57600080fd5b506102b761032c366004612158565b610931565b34801561033d57600080fd5b5060035460025403600019015b60405190815260200161026c565b34801561036457600080fd5b5061034a600c5481565b34801561037a57600080fd5b506102b7610389366004611ebd565b61095f565b34801561039a57600080fd5b50600a546103b290600160e01b900463ffffffff1681565b60405163ffffffff909116815260200161026c565b3480156103d357600080fd5b506103e76103e2366004612136565b61096a565b604080516001600160a01b03909316835260208301919091520161026c565b34801561041257600080fd5b506103b261037881565b34801561042857600080fd5b506102b7610437366004612158565b610a16565b34801561044857600080fd5b506102b7610457366004611ebd565b610a43565b34801561046857600080fd5b50600a546103b290600160c01b900463ffffffff1681565b34801561048c57600080fd5b506102b761049b366004611e6f565b610a5e565b3480156104ac57600080fd5b506102b7610a9f565b3480156104c157600080fd5b506102d96104d036600461211d565b610d36565b3480156104e157600080fd5b5061034a6104f0366004611e6f565b610d48565b34801561050157600080fd5b506102b7610d96565b34801561051657600080fd5b506102b76105253660046120ac565b610daa565b34801561053657600080fd5b50600a546001600160a01b03166102d9565b34801561055457600080fd5b506102b7610dbe565b34801561056957600080fd5b506102b761057836600461211d565b610deb565b34801561058957600080fd5b5061028a610df8565b34801561059e57600080fd5b5061028a610e86565b3480156105b357600080fd5b50600a546103b290600160a01b900463ffffffff1681565b3480156105d757600080fd5b506102b76105e6366004611fd4565b610e95565b6102b76105f9366004612158565b610f2b565b34801561060a57600080fd5b50600b5461026090640100000000900460ff1681565b34801561062c57600080fd5b506102b761063b366004611ef9565b611142565b34801561064c57600080fd5b506102b761065b36600461203a565b611193565b34801561066c57600080fd5b50600b546102609065010000000000900460ff1681565b34801561068f57600080fd5b5061028a61069e36600461211d565b6111a5565b3480156106af57600080fd5b506102b7611328565b3480156106c457600080fd5b5061034a6106d3366004611e6f565b611353565b3480156106e457600080fd5b5061028a611381565b3480156106f957600080fd5b50610260610708366004611e8a565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b34801561074257600080fd5b506102b7610751366004611e6f565b61138e565b34801561076257600080fd5b50600b546103b29063ffffffff1681565b60006001600160e01b0319821663152a902d60e11b14806107a457506001600160e01b031982166380ac58cd60e01b145b806107b357506107b382611407565b92915050565b6060600480546107c890612311565b80601f01602080910402602001604051908101604052809291908181526020018280546107f490612311565b80156108415780601f1061081657610100808354040283529160200191610841565b820191906000526020600020905b81548152906001019060200180831161082457829003601f168201915b5050505050905090565b610853611447565b61085f600d8383611dba565b505050565b600061086f826114a1565b61088c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b60006108b382610d36565b9050806001600160a01b0316836001600160a01b031614156108e85760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061090857506109068133610708565b155b15610926576040516367d9dca160e11b815260040160405180910390fd5b61085f8383836114da565b610939611447565b600a805463ffffffff909216600160a01b0263ffffffff60a01b19909216919091179055565b61085f838383611536565b60008281526001602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b03169282019290925282916109df5750604080518082019091526000546001600160a01b0381168252600160a01b90046001600160601b031660208201525b6020810151600090612710906109fe906001600160601b0316876122af565b610a08919061229b565b915196919550909350505050565b610a1e611447565b600a805463ffffffff909216600160e01b026001600160e01b03909216919091179055565b61085f83838360405180602001604052806000815250611142565b610a66611447565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610a9b573d6000803e3d6000fd5b5050565b600161037881610ab26002546000190190565b610abc9190612239565b1115610b035760405162461bcd60e51b8152602060048201526011602482015270457863656564206d617820737570706c7960781b60448201526064015b60405180910390fd5b600b5460019065010000000000900460ff16610b595760405162461bcd60e51b815260206004820152601560248201527446726565206d696e7420697320696e61637469766560581b6044820152606401610afa565b600a5463ffffffff600160a01b82048116600160c01b9092041610610bb55760405162461bcd60e51b8152602060048201526012602482015271457863656564206672656520737570706c7960701b6044820152606401610afa565b600b5463ffffffff908116908216610bcc33611724565b610bd69190612279565b6001600160401b03161115610c375760405162461bcd60e51b815260206004820152602160248201527f4578636565642066726565206d696e74206c696d6974207065722077616c6c656044820152601d60fa1b6064820152608401610afa565b323314610c825760405162461bcd60e51b815260206004820152601960248201527821b7b73a3930b1ba1031b0b63632b9103337b93134b23232b760391b6044820152606401610afa565b610cd933610c8f33611724565b610c9a906001612279565b6001600160a01b03909116600090815260076020526040902080546001600160401b03909216600160c01b026001600160c01b03909216919091179055565b6001600a60188282829054906101000a900463ffffffff16610cfb9190612251565b92506101000a81548163ffffffff021916908363ffffffff160217905550610a9b33600160405180602001604052806000815250600061174f565b6000610d418261191a565b5192915050565b60006001600160a01b038216610d71576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600760205260409020546001600160401b031690565b610d9e611447565b610da86000611a41565b565b610db2611447565b61085f600e8383611dba565b610dc6611447565b600b805465ff0000000000198116650100000000009182900460ff1615909102179055565b610df3611447565b600c55565b600d8054610e0590612311565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3190612311565b8015610e7e5780601f10610e5357610100808354040283529160200191610e7e565b820191906000526020600020905b815481529060010190602001808311610e6157829003601f168201915b505050505081565b6060600580546107c890612311565b6001600160a01b038216331415610ebf5760405163b06307db60e01b815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b8061037863ffffffff8216610f436002546000190190565b610f4d9190612239565b1115610f8f5760405162461bcd60e51b8152602060048201526011602482015270457863656564206d617820737570706c7960781b6044820152606401610afa565b600b548290640100000000900460ff16610feb5760405162461bcd60e51b815260206004820152601760248201527f5075626c6963206d696e7420697320696e6163746976650000000000000000006044820152606401610afa565b8063ffffffff16600c54610fff91906122af565b341461103b5760405162461bcd60e51b815260206004820152600b60248201526a2b30b63ab29032b93937b960a91b6044820152606401610afa565b600a5433600090815260076020526040902054600160e01b90910463ffffffff9081169161107b91841690600160401b90046001600160401b0316612239565b11156110d55760405162461bcd60e51b815260206004820152602360248201527f457863656564207075626c6963206d696e74206c696d6974207065722077616c6044820152621b195d60ea1b6064820152608401610afa565b3233146111205760405162461bcd60e51b815260206004820152601960248201527821b7b73a3930b1ba1031b0b63632b9103337b93134b23232b760391b6044820152606401610afa565b61085f338463ffffffff1660405180602001604052806000815250600061174f565b61114d848484611536565b6001600160a01b0383163b1515801561116f575061116d84848484611a93565b155b1561118d576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b61119b611447565b610a9b8282611b8b565b60606111b0826114a1565b6111cd57604051630a14c4b560e41b815260040160405180910390fd5b6000600e80546111dc90612311565b80601f016020809104026020016040519081016040528092919081815260200182805461120890612311565b80156112555780601f1061122a57610100808354040283529160200191611255565b820191906000526020600020905b81548152906001019060200180831161123857829003601f168201915b505050505090508051600014156112f657600d805461127390612311565b80601f016020809104026020016040519081016040528092919081815260200182805461129f90612311565b80156112ec5780601f106112c1576101008083540402835291602001916112ec565b820191906000526020600020905b8154815290600101906020018083116112cf57829003601f168201915b5050505050611321565b8061130084611c88565b6040516020016113119291906121aa565b6040516020818303038152906040525b9392505050565b611330611447565b600b805464ff000000001981166401000000009182900460ff1615909102179055565b6001600160a01b038116600090815260076020526040812054600160401b90046001600160401b03166107b3565b600e8054610e0590612311565b611396611447565b6001600160a01b0381166113fb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610afa565b61140481611a41565b50565b60006001600160e01b031982166380ac58cd60e01b148061143857506001600160e01b03198216635b5e139f60e01b145b806107b357506107b382611d85565b600a546001600160a01b03163314610da85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610afa565b6000816001111580156114b5575060025482105b80156107b3575050600090815260066020526040902054600160e01b900460ff161590565b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006115418261191a565b9050836001600160a01b031681600001516001600160a01b0316146115785760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061159657506115968533610708565b806115b15750336115a684610864565b6001600160a01b0316145b9050806115d157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166115f857604051633a954ecd60e21b815260040160405180910390fd5b611604600084876114da565b6001600160a01b038581166000908152600760209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600690945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166116d85760025482146116d857805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6001600160a01b0316600090815260076020526040902054600160c01b90046001600160401b031690565b6002546001600160a01b03851661177857604051622e076360e81b815260040160405180910390fd5b836117965760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260076020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600690925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561184257506001600160a01b0387163b15155b156118cb575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46118936000888480600101955088611a93565b6118b0576040516368d2bf6b60e11b815260040160405180910390fd5b808214156118485782600254146118c657600080fd5b611911565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156118cc575b5060025561171d565b6040805160608101825260008082526020820181905291810191909152818060011115801561194a575060025481105b15611a2857600081815260066020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611a265780516001600160a01b0316156119bd579392505050565b5060001901600081815260066020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611a21579392505050565b6119bd565b505b604051636f96cda160e11b815260040160405180910390fd5b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611ac89033908990889088906004016121e9565b602060405180830381600087803b158015611ae257600080fd5b505af1925050508015611b12575060408051601f3d908101601f19168201909252611b0f9181019061208f565b60015b611b6d573d808015611b40576040519150601f19603f3d011682016040523d82523d6000602084013e611b45565b606091505b508051611b65576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6127106001600160601b0382161115611bf95760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610afa565b6001600160a01b038216611c4f5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610afa565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600055565b606081611cac5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cd65780611cc08161234c565b9150611ccf9050600a8361229b565b9150611cb0565b6000816001600160401b03811115611cf057611cf06123bd565b6040519080825280601f01601f191660200182016040528015611d1a576020820181803683370190505b5090505b8415611b8357611d2f6001836122ce565b9150611d3c600a86612367565b611d47906030612239565b60f81b818381518110611d5c57611d5c6123a7565b60200101906001600160f81b031916908160001a905350611d7e600a8661229b565b9450611d1e565b60006001600160e01b0319821663152a902d60e11b14806107b357506301ffc9a760e01b6001600160e01b03198316146107b3565b828054611dc690612311565b90600052602060002090601f016020900481019282611de85760008555611e2e565b82601f10611e015782800160ff19823516178555611e2e565b82800160010185558215611e2e579182015b82811115611e2e578235825591602001919060010190611e13565b50611e3a929150611e3e565b5090565b5b80821115611e3a5760008155600101611e3f565b80356001600160a01b0381168114611e6a57600080fd5b919050565b600060208284031215611e8157600080fd5b61132182611e53565b60008060408385031215611e9d57600080fd5b611ea683611e53565b9150611eb460208401611e53565b90509250929050565b600080600060608486031215611ed257600080fd5b611edb84611e53565b9250611ee960208501611e53565b9150604084013590509250925092565b60008060008060808587031215611f0f57600080fd5b611f1885611e53565b9350611f2660208601611e53565b92506040850135915060608501356001600160401b0380821115611f4957600080fd5b818701915087601f830112611f5d57600080fd5b813581811115611f6f57611f6f6123bd565b604051601f8201601f19908116603f01168101908382118183101715611f9757611f976123bd565b816040528281528a6020848701011115611fb057600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611fe757600080fd5b611ff083611e53565b91506020830135801515811461200557600080fd5b809150509250929050565b6000806040838503121561202357600080fd5b61202c83611e53565b946020939093013593505050565b6000806040838503121561204d57600080fd5b61205683611e53565b915060208301356001600160601b038116811461200557600080fd5b60006020828403121561208457600080fd5b8135611321816123d3565b6000602082840312156120a157600080fd5b8151611321816123d3565b600080602083850312156120bf57600080fd5b82356001600160401b03808211156120d657600080fd5b818501915085601f8301126120ea57600080fd5b8135818111156120f957600080fd5b86602082850101111561210b57600080fd5b60209290920196919550909350505050565b60006020828403121561212f57600080fd5b5035919050565b6000806040838503121561214957600080fd5b50508035926020909101359150565b60006020828403121561216a57600080fd5b813563ffffffff8116811461132157600080fd5b600081518084526121968160208601602086016122e5565b601f01601f19169290920160200192915050565b600083516121bc8184602088016122e5565b8351908301906121d08183602088016122e5565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061221c9083018461217e565b9695505050505050565b602081526000611321602083018461217e565b6000821982111561224c5761224c61237b565b500190565b600063ffffffff8083168185168083038211156122705761227061237b565b01949350505050565b60006001600160401b038083168185168083038211156122705761227061237b565b6000826122aa576122aa612391565b500490565b60008160001904831182151516156122c9576122c961237b565b500290565b6000828210156122e0576122e061237b565b500390565b60005b838110156123005781810151838201526020016122e8565b8381111561118d5750506000910152565b600181811c9082168061232557607f821691505b6020821081141561234657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123605761236061237b565b5060010190565b60008261237657612376612391565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461140457600080fdfea2646970667358221220b975b22c669cefb2f20c2cb392b24d1669682126a3f5c1c71594ad9fdb5bd65264736f6c63430008070033697066733a2f2f516d5833364b76527a6756426b714b5159354d365a36654551545954594c48556179386b6b415976504c6f366a66
Deployed Bytecode
0x60806040526004361061023b5760003560e01c8063750521f51161012e578063b88d4fde116100ab578063dc33e6811161006f578063dc33e681146106b8578063e9812cba146106d8578063e985e9c5146106ed578063f2fde38b14610736578063f5ad95a91461075657600080fd5b8063b88d4fde14610620578063bbe5989114610640578063c2de867414610660578063c87b56dd14610683578063d13423a9146106a357600080fd5b806395d89b41116100f257806395d89b41146105925780639858cf19146105a7578063a22cb465146105cb578063a71bbebe146105eb578063b1645eb9146105fe57600080fd5b8063750521f51461050a5780638da5cb5b1461052a5780638f430db01461054857806391b7f5ed1461055d57806392e3114b1461057d57600080fd5b80632a55205a116101bc57806351cff8d91161018057806351cff8d9146104805780635b70ea9f146104a05780636352211e146104b557806370a08231146104d5578063715018a6146104f557600080fd5b80632a55205a146103c757806332cb6b0c146104065780633ea9730a1461041c57806342842e0e1461043c5780634cba82861461045c57600080fd5b80630ecfaf25116102035780630ecfaf251461031157806318160ddd14610331578063235b6ea11461035857806323b872dd1461036e57806324b311b11461038e57600080fd5b806301ffc9a71461024057806306fdde0314610275578063078eef2814610297578063081812fc146102b9578063095ea7b3146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004612072565b610773565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a6107b9565b60405161026c9190612226565b3480156102a357600080fd5b506102b76102b23660046120ac565b61084b565b005b3480156102c557600080fd5b506102d96102d436600461211d565b610864565b6040516001600160a01b03909116815260200161026c565b3480156102fd57600080fd5b506102b761030c366004612010565b6108a8565b34801561031d57600080fd5b506102b761032c366004612158565b610931565b34801561033d57600080fd5b5060035460025403600019015b60405190815260200161026c565b34801561036457600080fd5b5061034a600c5481565b34801561037a57600080fd5b506102b7610389366004611ebd565b61095f565b34801561039a57600080fd5b50600a546103b290600160e01b900463ffffffff1681565b60405163ffffffff909116815260200161026c565b3480156103d357600080fd5b506103e76103e2366004612136565b61096a565b604080516001600160a01b03909316835260208301919091520161026c565b34801561041257600080fd5b506103b261037881565b34801561042857600080fd5b506102b7610437366004612158565b610a16565b34801561044857600080fd5b506102b7610457366004611ebd565b610a43565b34801561046857600080fd5b50600a546103b290600160c01b900463ffffffff1681565b34801561048c57600080fd5b506102b761049b366004611e6f565b610a5e565b3480156104ac57600080fd5b506102b7610a9f565b3480156104c157600080fd5b506102d96104d036600461211d565b610d36565b3480156104e157600080fd5b5061034a6104f0366004611e6f565b610d48565b34801561050157600080fd5b506102b7610d96565b34801561051657600080fd5b506102b76105253660046120ac565b610daa565b34801561053657600080fd5b50600a546001600160a01b03166102d9565b34801561055457600080fd5b506102b7610dbe565b34801561056957600080fd5b506102b761057836600461211d565b610deb565b34801561058957600080fd5b5061028a610df8565b34801561059e57600080fd5b5061028a610e86565b3480156105b357600080fd5b50600a546103b290600160a01b900463ffffffff1681565b3480156105d757600080fd5b506102b76105e6366004611fd4565b610e95565b6102b76105f9366004612158565b610f2b565b34801561060a57600080fd5b50600b5461026090640100000000900460ff1681565b34801561062c57600080fd5b506102b761063b366004611ef9565b611142565b34801561064c57600080fd5b506102b761065b36600461203a565b611193565b34801561066c57600080fd5b50600b546102609065010000000000900460ff1681565b34801561068f57600080fd5b5061028a61069e36600461211d565b6111a5565b3480156106af57600080fd5b506102b7611328565b3480156106c457600080fd5b5061034a6106d3366004611e6f565b611353565b3480156106e457600080fd5b5061028a611381565b3480156106f957600080fd5b50610260610708366004611e8a565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b34801561074257600080fd5b506102b7610751366004611e6f565b61138e565b34801561076257600080fd5b50600b546103b29063ffffffff1681565b60006001600160e01b0319821663152a902d60e11b14806107a457506001600160e01b031982166380ac58cd60e01b145b806107b357506107b382611407565b92915050565b6060600480546107c890612311565b80601f01602080910402602001604051908101604052809291908181526020018280546107f490612311565b80156108415780601f1061081657610100808354040283529160200191610841565b820191906000526020600020905b81548152906001019060200180831161082457829003601f168201915b5050505050905090565b610853611447565b61085f600d8383611dba565b505050565b600061086f826114a1565b61088c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b60006108b382610d36565b9050806001600160a01b0316836001600160a01b031614156108e85760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061090857506109068133610708565b155b15610926576040516367d9dca160e11b815260040160405180910390fd5b61085f8383836114da565b610939611447565b600a805463ffffffff909216600160a01b0263ffffffff60a01b19909216919091179055565b61085f838383611536565b60008281526001602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b03169282019290925282916109df5750604080518082019091526000546001600160a01b0381168252600160a01b90046001600160601b031660208201525b6020810151600090612710906109fe906001600160601b0316876122af565b610a08919061229b565b915196919550909350505050565b610a1e611447565b600a805463ffffffff909216600160e01b026001600160e01b03909216919091179055565b61085f83838360405180602001604052806000815250611142565b610a66611447565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610a9b573d6000803e3d6000fd5b5050565b600161037881610ab26002546000190190565b610abc9190612239565b1115610b035760405162461bcd60e51b8152602060048201526011602482015270457863656564206d617820737570706c7960781b60448201526064015b60405180910390fd5b600b5460019065010000000000900460ff16610b595760405162461bcd60e51b815260206004820152601560248201527446726565206d696e7420697320696e61637469766560581b6044820152606401610afa565b600a5463ffffffff600160a01b82048116600160c01b9092041610610bb55760405162461bcd60e51b8152602060048201526012602482015271457863656564206672656520737570706c7960701b6044820152606401610afa565b600b5463ffffffff908116908216610bcc33611724565b610bd69190612279565b6001600160401b03161115610c375760405162461bcd60e51b815260206004820152602160248201527f4578636565642066726565206d696e74206c696d6974207065722077616c6c656044820152601d60fa1b6064820152608401610afa565b323314610c825760405162461bcd60e51b815260206004820152601960248201527821b7b73a3930b1ba1031b0b63632b9103337b93134b23232b760391b6044820152606401610afa565b610cd933610c8f33611724565b610c9a906001612279565b6001600160a01b03909116600090815260076020526040902080546001600160401b03909216600160c01b026001600160c01b03909216919091179055565b6001600a60188282829054906101000a900463ffffffff16610cfb9190612251565b92506101000a81548163ffffffff021916908363ffffffff160217905550610a9b33600160405180602001604052806000815250600061174f565b6000610d418261191a565b5192915050565b60006001600160a01b038216610d71576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600760205260409020546001600160401b031690565b610d9e611447565b610da86000611a41565b565b610db2611447565b61085f600e8383611dba565b610dc6611447565b600b805465ff0000000000198116650100000000009182900460ff1615909102179055565b610df3611447565b600c55565b600d8054610e0590612311565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3190612311565b8015610e7e5780601f10610e5357610100808354040283529160200191610e7e565b820191906000526020600020905b815481529060010190602001808311610e6157829003601f168201915b505050505081565b6060600580546107c890612311565b6001600160a01b038216331415610ebf5760405163b06307db60e01b815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b8061037863ffffffff8216610f436002546000190190565b610f4d9190612239565b1115610f8f5760405162461bcd60e51b8152602060048201526011602482015270457863656564206d617820737570706c7960781b6044820152606401610afa565b600b548290640100000000900460ff16610feb5760405162461bcd60e51b815260206004820152601760248201527f5075626c6963206d696e7420697320696e6163746976650000000000000000006044820152606401610afa565b8063ffffffff16600c54610fff91906122af565b341461103b5760405162461bcd60e51b815260206004820152600b60248201526a2b30b63ab29032b93937b960a91b6044820152606401610afa565b600a5433600090815260076020526040902054600160e01b90910463ffffffff9081169161107b91841690600160401b90046001600160401b0316612239565b11156110d55760405162461bcd60e51b815260206004820152602360248201527f457863656564207075626c6963206d696e74206c696d6974207065722077616c6044820152621b195d60ea1b6064820152608401610afa565b3233146111205760405162461bcd60e51b815260206004820152601960248201527821b7b73a3930b1ba1031b0b63632b9103337b93134b23232b760391b6044820152606401610afa565b61085f338463ffffffff1660405180602001604052806000815250600061174f565b61114d848484611536565b6001600160a01b0383163b1515801561116f575061116d84848484611a93565b155b1561118d576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b61119b611447565b610a9b8282611b8b565b60606111b0826114a1565b6111cd57604051630a14c4b560e41b815260040160405180910390fd5b6000600e80546111dc90612311565b80601f016020809104026020016040519081016040528092919081815260200182805461120890612311565b80156112555780601f1061122a57610100808354040283529160200191611255565b820191906000526020600020905b81548152906001019060200180831161123857829003601f168201915b505050505090508051600014156112f657600d805461127390612311565b80601f016020809104026020016040519081016040528092919081815260200182805461129f90612311565b80156112ec5780601f106112c1576101008083540402835291602001916112ec565b820191906000526020600020905b8154815290600101906020018083116112cf57829003601f168201915b5050505050611321565b8061130084611c88565b6040516020016113119291906121aa565b6040516020818303038152906040525b9392505050565b611330611447565b600b805464ff000000001981166401000000009182900460ff1615909102179055565b6001600160a01b038116600090815260076020526040812054600160401b90046001600160401b03166107b3565b600e8054610e0590612311565b611396611447565b6001600160a01b0381166113fb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610afa565b61140481611a41565b50565b60006001600160e01b031982166380ac58cd60e01b148061143857506001600160e01b03198216635b5e139f60e01b145b806107b357506107b382611d85565b600a546001600160a01b03163314610da85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610afa565b6000816001111580156114b5575060025482105b80156107b3575050600090815260066020526040902054600160e01b900460ff161590565b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006115418261191a565b9050836001600160a01b031681600001516001600160a01b0316146115785760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061159657506115968533610708565b806115b15750336115a684610864565b6001600160a01b0316145b9050806115d157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166115f857604051633a954ecd60e21b815260040160405180910390fd5b611604600084876114da565b6001600160a01b038581166000908152600760209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600690945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166116d85760025482146116d857805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6001600160a01b0316600090815260076020526040902054600160c01b90046001600160401b031690565b6002546001600160a01b03851661177857604051622e076360e81b815260040160405180910390fd5b836117965760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260076020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600690925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561184257506001600160a01b0387163b15155b156118cb575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46118936000888480600101955088611a93565b6118b0576040516368d2bf6b60e11b815260040160405180910390fd5b808214156118485782600254146118c657600080fd5b611911565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156118cc575b5060025561171d565b6040805160608101825260008082526020820181905291810191909152818060011115801561194a575060025481105b15611a2857600081815260066020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611a265780516001600160a01b0316156119bd579392505050565b5060001901600081815260066020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611a21579392505050565b6119bd565b505b604051636f96cda160e11b815260040160405180910390fd5b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611ac89033908990889088906004016121e9565b602060405180830381600087803b158015611ae257600080fd5b505af1925050508015611b12575060408051601f3d908101601f19168201909252611b0f9181019061208f565b60015b611b6d573d808015611b40576040519150601f19603f3d011682016040523d82523d6000602084013e611b45565b606091505b508051611b65576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6127106001600160601b0382161115611bf95760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610afa565b6001600160a01b038216611c4f5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610afa565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600055565b606081611cac5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cd65780611cc08161234c565b9150611ccf9050600a8361229b565b9150611cb0565b6000816001600160401b03811115611cf057611cf06123bd565b6040519080825280601f01601f191660200182016040528015611d1a576020820181803683370190505b5090505b8415611b8357611d2f6001836122ce565b9150611d3c600a86612367565b611d47906030612239565b60f81b818381518110611d5c57611d5c6123a7565b60200101906001600160f81b031916908160001a905350611d7e600a8661229b565b9450611d1e565b60006001600160e01b0319821663152a902d60e11b14806107b357506301ffc9a760e01b6001600160e01b03198316146107b3565b828054611dc690612311565b90600052602060002090601f016020900481019282611de85760008555611e2e565b82601f10611e015782800160ff19823516178555611e2e565b82800160010185558215611e2e579182015b82811115611e2e578235825591602001919060010190611e13565b50611e3a929150611e3e565b5090565b5b80821115611e3a5760008155600101611e3f565b80356001600160a01b0381168114611e6a57600080fd5b919050565b600060208284031215611e8157600080fd5b61132182611e53565b60008060408385031215611e9d57600080fd5b611ea683611e53565b9150611eb460208401611e53565b90509250929050565b600080600060608486031215611ed257600080fd5b611edb84611e53565b9250611ee960208501611e53565b9150604084013590509250925092565b60008060008060808587031215611f0f57600080fd5b611f1885611e53565b9350611f2660208601611e53565b92506040850135915060608501356001600160401b0380821115611f4957600080fd5b818701915087601f830112611f5d57600080fd5b813581811115611f6f57611f6f6123bd565b604051601f8201601f19908116603f01168101908382118183101715611f9757611f976123bd565b816040528281528a6020848701011115611fb057600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611fe757600080fd5b611ff083611e53565b91506020830135801515811461200557600080fd5b809150509250929050565b6000806040838503121561202357600080fd5b61202c83611e53565b946020939093013593505050565b6000806040838503121561204d57600080fd5b61205683611e53565b915060208301356001600160601b038116811461200557600080fd5b60006020828403121561208457600080fd5b8135611321816123d3565b6000602082840312156120a157600080fd5b8151611321816123d3565b600080602083850312156120bf57600080fd5b82356001600160401b03808211156120d657600080fd5b818501915085601f8301126120ea57600080fd5b8135818111156120f957600080fd5b86602082850101111561210b57600080fd5b60209290920196919550909350505050565b60006020828403121561212f57600080fd5b5035919050565b6000806040838503121561214957600080fd5b50508035926020909101359150565b60006020828403121561216a57600080fd5b813563ffffffff8116811461132157600080fd5b600081518084526121968160208601602086016122e5565b601f01601f19169290920160200192915050565b600083516121bc8184602088016122e5565b8351908301906121d08183602088016122e5565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061221c9083018461217e565b9695505050505050565b602081526000611321602083018461217e565b6000821982111561224c5761224c61237b565b500190565b600063ffffffff8083168185168083038211156122705761227061237b565b01949350505050565b60006001600160401b038083168185168083038211156122705761227061237b565b6000826122aa576122aa612391565b500490565b60008160001904831182151516156122c9576122c961237b565b500290565b6000828210156122e0576122e061237b565b500390565b60005b838110156123005781810151838201526020016122e8565b8381111561118d5750506000910152565b600181811c9082168061232557607f821691505b6020821081141561234657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123605761236061237b565b5060010190565b60008261237657612376612391565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461140457600080fdfea2646970667358221220b975b22c669cefb2f20c2cb392b24d1669682126a3f5c1c71594ad9fdb5bd65264736f6c63430008070033
Deployed Bytecode Sourcemap
50437:4281:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52736:349;;;;;;;;;;-1:-1:-1;52736:349:0;;;;;:::i;:::-;;:::i;:::-;;;6975:14:1;;6968:22;6950:41;;6938:2;6923:18;52736:349:0;;;;;;;;33046:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;54103:121::-;;;;;;;;;;-1:-1:-1;54103:121:0;;;;;:::i;:::-;;:::i;:::-;;34549:204;;;;;;;;;;-1:-1:-1;34549:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5994:32:1;;;5976:51;;5964:2;5949:18;34549:204:0;5830:203:1;34112:371:0;;;;;;;;;;-1:-1:-1;34112:371:0;;;;;:::i;:::-;;:::i;53755:116::-;;;;;;;;;;-1:-1:-1;53755:116:0;;;;;:::i;:::-;;:::i;29182:303::-;;;;;;;;;;-1:-1:-1;29436:12:0;;29420:13;;:28;-1:-1:-1;;29420:46:0;29182:303;;;11800:25:1;;;11788:2;11773:18;29182:303:0;11654:177:1;50817:35:0;;;;;;;;;;;;;;;;35414:170;;;;;;;;;;-1:-1:-1;35414:170:0;;;;;:::i;:::-;;:::i;50649:33::-;;;;;;;;;;-1:-1:-1;50649:33:0;;;;-1:-1:-1;;;50649:33:0;;;;;;;;;12010:10:1;11998:23;;;11980:42;;11968:2;11953:18;50649:33:0;11836:192:1;22291:442:0;;;;;;;;;;-1:-1:-1;22291:442:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;6723:32:1;;;6705:51;;6787:2;6772:18;;6765:34;;;;6678:18;22291:442:0;6531:274:1;50524:39:0;;;;;;;;;;;;50560:3;50524:39;;53624:123;;;;;;;;;;-1:-1:-1;53624:123:0;;;;;:::i;:::-;;:::i;35655:185::-;;;;;;;;;;-1:-1:-1;35655:185:0;;;;;:::i;:::-;;:::i;50612:28::-;;;;;;;;;;-1:-1:-1;50612:28:0;;;;-1:-1:-1;;;50612:28:0;;;;;;54604:111;;;;;;;;;;-1:-1:-1;54604:111:0;;;;;:::i;:::-;;:::i;53336:256::-;;;;;;;;;;;;;:::i;32854:125::-;;;;;;;;;;-1:-1:-1;32854:125:0;;;;;:::i;:::-;;:::i;30302:206::-;;;;;;;;;;-1:-1:-1;30302:206:0;;;;;:::i;:::-;;:::i;49559:103::-;;;;;;;;;;;;;:::i;54236:117::-;;;;;;;;;;-1:-1:-1;54236:117:0;;;;;:::i;:::-;;:::i;48911:87::-;;;;;;;;;;-1:-1:-1;48984:6:0;;-1:-1:-1;;;;;48984:6:0;48911:87;;53993:102;;;;;;;;;;;;;:::i;54361:85::-;;;;;;;;;;-1:-1:-1;54361:85:0;;;;;:::i;:::-;;:::i;50861:::-;;;;;;;;;;;;;:::i;33215:104::-;;;;;;;;;;;;;:::i;50572:31::-;;;;;;;;;;-1:-1:-1;50572:31:0;;;;-1:-1:-1;;;50572:31:0;;;;;;34825:287;;;;;;;;;;-1:-1:-1;34825:287:0;;;;;:::i;:::-;;:::i;53114:214::-;;;;;;:::i;:::-;;:::i;50733:36::-;;;;;;;;;;-1:-1:-1;50733:36:0;;;;;;;;;;;35911:369;;;;;;;;;;-1:-1:-1;35911:369:0;;;;;:::i;:::-;;:::i;54454:142::-;;;;;;;;;;-1:-1:-1;54454:142:0;;;;;:::i;:::-;;:::i;50776:34::-;;;;;;;;;;-1:-1:-1;50776:34:0;;;;;;;;;;;52078:422;;;;;;;;;;-1:-1:-1;52078:422:0;;;;;:::i;:::-;;:::i;53879:108::-;;;;;;;;;;;;;:::i;52611:113::-;;;;;;;;;;-1:-1:-1;52611:113:0;;;;;:::i;:::-;;:::i;50953:26::-;;;;;;;;;;;;;:::i;35183:164::-;;;;;;;;;;-1:-1:-1;35183:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;35304:25:0;;;35280:4;35304:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35183:164;49817:201;;;;;;;;;;-1:-1:-1;49817:201:0;;;;;:::i;:::-;;:::i;50689:37::-;;;;;;;;;;-1:-1:-1;50689:37:0;;;;;;;;52736:349;52884:4;-1:-1:-1;;;;;;52926:41:0;;-1:-1:-1;;;52926:41:0;;:98;;-1:-1:-1;;;;;;;52984:40:0;;-1:-1:-1;;;52984:40:0;52926:98;:151;;;;53041:36;53065:11;53041:23;:36::i;:::-;52906:171;52736:349;-1:-1:-1;;52736:349:0:o;33046:100::-;33100:13;33133:5;33126:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33046:100;:::o;54103:121::-;48797:13;:11;:13::i;:::-;54188:28:::1;:13;54204:12:::0;;54188:28:::1;:::i;:::-;;54103:121:::0;;:::o;34549:204::-;34617:7;34642:16;34650:7;34642;:16::i;:::-;34637:64;;34667:34;;-1:-1:-1;;;34667:34:0;;;;;;;;;;;34637:64;-1:-1:-1;34721:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34721:24:0;;34549:204::o;34112:371::-;34185:13;34201:24;34217:7;34201:15;:24::i;:::-;34185:40;;34246:5;-1:-1:-1;;;;;34240:11:0;:2;-1:-1:-1;;;;;34240:11:0;;34236:48;;;34260:24;;-1:-1:-1;;;34260:24:0;;;;;;;;;;;34236:48;25547:10;-1:-1:-1;;;;;34301:21:0;;;;;;:63;;-1:-1:-1;34327:37:0;34344:5;25547:10;35183:164;:::i;34327:37::-;34326:38;34301:63;34297:138;;;34388:35;;-1:-1:-1;;;34388:35:0;;;;;;;;;;;34297:138;34447:28;34456:2;34460:7;34469:5;34447:8;:28::i;53755:116::-;48797:13;:11;:13::i;:::-;53834:11:::1;:29:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;53834:29:0::1;-1:-1:-1::0;;;;53834:29:0;;::::1;::::0;;;::::1;::::0;;53755:116::o;35414:170::-;35548:28;35558:4;35564:2;35568:7;35548:9;:28::i;22291:442::-;22388:7;22446:27;;;:17;:27;;;;;;;;22417:56;;;;;;;;;-1:-1:-1;;;;;22417:56:0;;;;;-1:-1:-1;;;22417:56:0;;;-1:-1:-1;;;;;22417:56:0;;;;;;;;22388:7;;22486:92;;-1:-1:-1;22537:29:0;;;;;;;;;-1:-1:-1;22537:29:0;-1:-1:-1;;;;;22537:29:0;;;;-1:-1:-1;;;22537:29:0;;-1:-1:-1;;;;;22537:29:0;;;;;22486:92;22628:23;;;;22590:21;;23099:5;;22615:36;;-1:-1:-1;;;;;22615:36:0;:10;:36;:::i;:::-;22614:58;;;;:::i;:::-;22693:16;;;;;-1:-1:-1;22291:442:0;;-1:-1:-1;;;;22291:442:0:o;53624:123::-;48797:13;:11;:13::i;:::-;53709:14:::1;:30:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;53709:30:0::1;-1:-1:-1::0;;;;;53709:30:0;;::::1;::::0;;;::::1;::::0;;53624:123::o;35655:185::-;35793:39;35810:4;35816:2;35820:7;35793:39;;;;;;;;;;;;:16;:39::i;54604:111::-;48797:13;:11;:13::i;:::-;54664:43:::1;::::0;-1:-1:-1;;;;;54664:20:0;::::1;::::0;54685:21:::1;54664:43:::0;::::1;;;::::0;::::1;::::0;;;54685:21;54664:20;:43;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;54604:111:::0;:::o;53336:256::-;53400:1;50560:3;53400:1;51275:14;29811:13;;-1:-1:-1;;29811:31:0;;29578:283;51275:14;:23;;;;:::i;:::-;:37;;51267:67;;;;-1:-1:-1;;;51267:67:0;;9633:2:1;51267:67:0;;;9615:21:1;9672:2;9652:18;;;9645:30;-1:-1:-1;;;9691:18:1;;;9684:47;9748:18;;51267:67:0;;;;;;;;;51770:15:::1;::::0;53427:1:::1;::::0;51770:15;;::::1;;;51762:49;;;::::0;-1:-1:-1;;;51762:49:0;;7428:2:1;51762:49:0::1;::::0;::::1;7410:21:1::0;7467:2;7447:18;;;7440:30;-1:-1:-1;;;7486:18:1;;;7479:51;7547:18;;51762:49:0::1;7226:345:1::0;51762:49:0::1;51847:11;::::0;::::1;-1:-1:-1::0;;;51847:11:0;::::1;::::0;::::1;-1:-1:-1::0;;;51830:14:0;;::::1;;:28;51822:59;;;::::0;-1:-1:-1;;;51822:59:0;;11509:2:1;51822:59:0::1;::::0;::::1;11491:21:1::0;11548:2;11528:18;;;11521:30;-1:-1:-1;;;11567:18:1;;;11560:48;11625:18;;51822:59:0::1;11307:342:1::0;51822:59:0::1;51946:19;::::0;::::1;::::0;;::::1;::::0;51914:28;::::1;:19;51922:10;51914:7;:19::i;:::-;:28;;;;:::i;:::-;-1:-1:-1::0;;;;;51914:51:0::1;;;51892:134;;;::::0;-1:-1:-1;;;51892:134:0;;8539:2:1;51892:134:0::1;::::0;::::1;8521:21:1::0;8578:2;8558:18;;;8551:30;8617:34;8597:18;;;8590:62;-1:-1:-1;;;8668:18:1;;;8661:31;8709:19;;51892:134:0::1;8337:397:1::0;51892:134:0::1;51134:9:::2;51147:10;51134:23;51126:61;;;::::0;-1:-1:-1;;;51126:61:0;;8185:2:1;51126:61:0::2;::::0;::::2;8167:21:1::0;8224:2;8204:18;;;8197:30;-1:-1:-1;;;8243:18:1;;;8236:55;8308:18;;51126:61:0::2;7983:349:1::0;51126:61:0::2;53468:44:::3;53476:10;53488:19;53496:10;53488:7;:19::i;:::-;:23;::::0;53510:1:::3;53488:23;:::i;:::-;-1:-1:-1::0;;;;;31444:19:0;;;;;;;:12;:19;;;;;:29;;-1:-1:-1;;;;;31444:29:0;;;-1:-1:-1;;;31444:29:0;-1:-1:-1;;;;;31444:29:0;;;;;;;;;31380:101;53468:44:::3;53541:1;53523:14;;:19;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;53553:31;53559:10;53571:1;53553:31;;;;;;;;;;;::::0;53578:5:::3;53553;:31::i;32854:125::-:0;32918:7;32945:21;32958:7;32945:12;:21::i;:::-;:26;;32854:125;-1:-1:-1;;32854:125:0:o;30302:206::-;30366:7;-1:-1:-1;;;;;30390:19:0;;30386:60;;30418:28;;-1:-1:-1;;;30418:28:0;;;;;;;;;;;30386:60;-1:-1:-1;;;;;;30472:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;30472:27:0;;30302:206::o;49559:103::-;48797:13;:11;:13::i;:::-;49624:30:::1;49651:1;49624:18;:30::i;:::-;49559:103::o:0;54236:117::-;48797:13;:11;:13::i;:::-;54319:26:::1;:12;54334:11:::0;;54319:26:::1;:::i;53993:102::-:0;48797:13;:11;:13::i;:::-;54072:15:::1;::::0;;-1:-1:-1;;54053:34:0;::::1;54072:15:::0;;;;::::1;;;54071:16;54053:34:::0;;::::1;;::::0;;53993:102::o;54361:85::-;48797:13;:11;:13::i;:::-;54424:6:::1;:14:::0;54361:85::o;50861:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33215:104::-;33271:13;33304:7;33297:14;;;;;:::i;34825:287::-;-1:-1:-1;;;;;34924:24:0;;25547:10;34924:24;34920:54;;;34957:17;;-1:-1:-1;;;34957:17:0;;;;;;;;;;;34920:54;25547:10;34987:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34987:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34987:53:0;;;;;;;;;;35056:48;;6950:41:1;;;34987:42:0;;25547:10;35056:48;;6923:18:1;35056:48:0;;;;;;;34825:287;;:::o;53114:214::-;53204:6;50560:3;51275:37;:23;;:14;29811:13;;-1:-1:-1;;29811:31:0;;29578:283;51275:14;:23;;;;:::i;:::-;:37;;51267:67;;;;-1:-1:-1;;;51267:67:0;;9633:2:1;51267:67:0;;;9615:21:1;9672:2;9652:18;;;9645:30;-1:-1:-1;;;9691:18:1;;;9684:47;9748:18;;51267:67:0;9431:341:1;51267:67:0;51422:17:::1;::::0;53238:6;;51422:17;;::::1;;;51414:53;;;::::0;-1:-1:-1;;;51414:53:0;;8941:2:1;51414:53:0::1;::::0;::::1;8923:21:1::0;8980:2;8960:18;;;8953:30;9019:25;8999:18;;;8992:53;9062:18;;51414:53:0::1;8739:347:1::0;51414:53:0::1;51508:6;51499:15;;:6;;:15;;;;:::i;:::-;51486:9;:28;51478:52;;;::::0;-1:-1:-1;;;51478:52:0;;9293:2:1;51478:52:0::1;::::0;::::1;9275:21:1::0;9332:2;9312:18;;;9305:30;-1:-1:-1;;;9351:18:1;;;9344:41;9402:18;;51478:52:0::1;9091:335:1::0;51478:52:0::1;51603:14;::::0;51579:10:::1;30651:7:::0;30686:19;;;:12;:19;;;;;:32;-1:-1:-1;;;51603:14:0;;::::1;;::::0;;::::1;::::0;51565:34:::1;::::0;;::::1;::::0;-1:-1:-1;;;30686:32:0;;-1:-1:-1;;;;;30686:32:0;51565:34:::1;:::i;:::-;:52;;51541:139;;;::::0;-1:-1:-1;;;51541:139:0;;10340:2:1;51541:139:0::1;::::0;::::1;10322:21:1::0;10379:2;10359:18;;;10352:30;10418:34;10398:18;;;10391:62;-1:-1:-1;;;10469:18:1;;;10462:33;10512:19;;51541:139:0::1;10138:399:1::0;51541:139:0::1;51134:9:::2;51147:10;51134:23;51126:61;;;::::0;-1:-1:-1;;;51126:61:0;;8185:2:1;51126:61:0::2;::::0;::::2;8167:21:1::0;8224:2;8204:18;;;8197:30;-1:-1:-1;;;8243:18:1;;;8236:55;8308:18;;51126:61:0::2;7983:349:1::0;51126:61:0::2;53284:36:::3;53290:10;53302:6;53284:36;;;;;;;;;;;;;::::0;53314:5:::3;53284;:36::i;35911:369::-:0;36078:28;36088:4;36094:2;36098:7;36078:9;:28::i;:::-;-1:-1:-1;;;;;36121:13:0;;4025:19;:23;;36121:76;;;;;36141:56;36172:4;36178:2;36182:7;36191:5;36141:30;:56::i;:::-;36140:57;36121:76;36117:156;;;36221:40;;-1:-1:-1;;;36221:40:0;;;;;;;;;;;36117:156;35911:369;;;;:::o;54454:142::-;48797:13;:11;:13::i;:::-;54546:42:::1;54565:8;54575:12;54546:18;:42::i;52078:422::-:0;52181:13;52217:16;52225:7;52217;:16::i;:::-;52212:59;;52242:29;;-1:-1:-1;;;52242:29:0;;;;;;;;;;;52212:59;52284:21;52308:12;52284:36;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52357:7;52351:21;52376:1;52351:26;;:141;;52479:13;52351:141;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52421:7;52430:18;:7;:16;:18::i;:::-;52404:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52351:141;52331:161;52078:422;-1:-1:-1;;;52078:422:0:o;53879:108::-;48797:13;:11;:13::i;:::-;53962:17:::1;::::0;;-1:-1:-1;;53941:38:0;::::1;53962:17:::0;;;;::::1;;;53961:18;53941:38:::0;;::::1;;::::0;;53879:108::o;52611:113::-;-1:-1:-1;;;;;30686:19:0;;52669:7;30686:19;;;:12;:19;;;;;:32;-1:-1:-1;;;30686:32:0;;-1:-1:-1;;;;;30686:32:0;52696:20;30590:137;50953:26;;;;;;;:::i;49817:201::-;48797:13;:11;:13::i;:::-;-1:-1:-1;;;;;49906:22:0;::::1;49898:73;;;::::0;-1:-1:-1;;;49898:73:0;;7778:2:1;49898:73:0::1;::::0;::::1;7760:21:1::0;7817:2;7797:18;;;7790:30;7856:34;7836:18;;;7829:62;-1:-1:-1;;;7907:18:1;;;7900:36;7953:19;;49898:73:0::1;7576:402:1::0;49898:73:0::1;49982:28;50001:8;49982:18;:28::i;:::-;49817:201:::0;:::o;29933:305::-;30035:4;-1:-1:-1;;;;;;30072:40:0;;-1:-1:-1;;;30072:40:0;;:105;;-1:-1:-1;;;;;;;30129:48:0;;-1:-1:-1;;;30129:48:0;30072:105;:158;;;;30194:36;30218:11;30194:23;:36::i;49076:132::-;48984:6;;-1:-1:-1;;;;;48984:6:0;25547:10;49140:23;49132:68;;;;-1:-1:-1;;;49132:68:0;;9979:2:1;49132:68:0;;;9961:21:1;;;9998:18;;;9991:30;10057:34;10037:18;;;10030:62;10109:18;;49132:68:0;9777:356:1;36535:174:0;36592:4;36635:7;52594:1;36616:26;;:53;;;;;36656:13;;36646:7;:23;36616:53;:85;;;;-1:-1:-1;;36674:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;36674:27:0;;;;36673:28;;36535:174::o;44692:196::-;44807:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;44807:29:0;-1:-1:-1;;;;;44807:29:0;;;;;;;;;44852:28;;44807:24;;44852:28;;;;;;;44692:196;;;:::o;39635:2130::-;39750:35;39788:21;39801:7;39788:12;:21::i;:::-;39750:59;;39848:4;-1:-1:-1;;;;;39826:26:0;:13;:18;;;-1:-1:-1;;;;;39826:26:0;;39822:67;;39861:28;;-1:-1:-1;;;39861:28:0;;;;;;;;;;;39822:67;39902:22;25547:10;-1:-1:-1;;;;;39928:20:0;;;;:73;;-1:-1:-1;39965:36:0;39982:4;25547:10;35183:164;:::i;39965:36::-;39928:126;;;-1:-1:-1;25547:10:0;40018:20;40030:7;40018:11;:20::i;:::-;-1:-1:-1;;;;;40018:36:0;;39928:126;39902:153;;40073:17;40068:66;;40099:35;;-1:-1:-1;;;40099:35:0;;;;;;;;;;;40068:66;-1:-1:-1;;;;;40149:16:0;;40145:52;;40174:23;;-1:-1:-1;;;40174:23:0;;;;;;;;;;;40145:52;40318:35;40335:1;40339:7;40348:4;40318:8;:35::i;:::-;-1:-1:-1;;;;;40649:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;40649:31:0;;;-1:-1:-1;;;;;40649:31:0;;;-1:-1:-1;;40649:31:0;;;;;;;40695:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;40695:29:0;;;;;;;;;;;40775:20;;;:11;:20;;;;;;40810:18;;-1:-1:-1;;;;;;40843:49:0;;;;-1:-1:-1;;;40876:15:0;40843:49;;;;;;;;;;41166:11;;41226:24;;;;;41269:13;;40775:20;;41226:24;;41269:13;41265:384;;41479:13;;41464:11;:28;41460:174;;41517:20;;41586:28;;;;-1:-1:-1;;;;;41560:54:0;-1:-1:-1;;;41560:54:0;-1:-1:-1;;;;;;41560:54:0;;;-1:-1:-1;;;;;41517:20:0;;41560:54;;;;41460:174;40624:1036;;;41696:7;41692:2;-1:-1:-1;;;;;41677:27:0;41686:4;-1:-1:-1;;;;;41677:27:0;;;;;;;;;;;41715:42;39739:2026;;39635:2130;;;:::o;31080:112::-;-1:-1:-1;;;;;31161:19:0;31135:6;31161:19;;;:12;:19;;;;;:23;-1:-1:-1;;;31161:23:0;;-1:-1:-1;;;;;31161:23:0;;31080:112::o;37606:1775::-;37768:13;;-1:-1:-1;;;;;37796:16:0;;37792:48;;37821:19;;-1:-1:-1;;;37821:19:0;;;;;;;;;;;37792:48;37855:13;37851:44;;37877:18;;-1:-1:-1;;;37877:18:0;;;;;;;;;;;37851:44;-1:-1:-1;;;;;38246:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;38305:49:0;;-1:-1:-1;;;;;38246:44:0;;;;;;;38305:49;;;-1:-1:-1;;;;;38246:44:0;;;;;;38305:49;;;;;;;;;;;;;;;;38371:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;38421:66:0;;;;-1:-1:-1;;;38471:15:0;38421:66;;;;;;;;;;38371:25;38568:23;;;38612:4;:23;;;;-1:-1:-1;;;;;;38620:13:0;;4025:19;:23;;38620:15;38608:641;;;38656:314;38687:38;;38712:12;;-1:-1:-1;;;;;38687:38:0;;;38704:1;;38687:38;;38704:1;;38687:38;38753:69;38792:1;38796:2;38800:14;;;;;;38816:5;38753:30;:69::i;:::-;38748:174;;38858:40;;-1:-1:-1;;;38858:40:0;;;;;;;;;;;38748:174;38965:3;38949:12;:19;;38656:314;;39051:12;39034:13;;:29;39030:43;;39065:8;;;39030:43;38608:641;;;39114:120;39145:40;;39170:14;;;;;-1:-1:-1;;;;;39145:40:0;;;39162:1;;39145:40;;39162:1;;39145:40;39229:3;39213:12;:19;;39114:120;;38608:641;-1:-1:-1;39263:13:0;:28;39313:60;35911:369;31683:1109;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;31794:7:0;;52594:1;31843:23;;:47;;;;;31877:13;;31870:4;:20;31843:47;31839:886;;;31911:31;31945:17;;;:11;:17;;;;;;;;;31911:51;;;;;;;;;-1:-1:-1;;;;;31911:51:0;;;;-1:-1:-1;;;31911:51:0;;-1:-1:-1;;;;;31911:51:0;;;;;;;;-1:-1:-1;;;31911:51:0;;;;;;;;;;;;;;31981:729;;32031:14;;-1:-1:-1;;;;;32031:28:0;;32027:101;;32095:9;31683:1109;-1:-1:-1;;;31683:1109:0:o;32027:101::-;-1:-1:-1;;;32470:6:0;32515:17;;;;:11;:17;;;;;;;;;32503:29;;;;;;;;;-1:-1:-1;;;;;32503:29:0;;;;;-1:-1:-1;;;32503:29:0;;-1:-1:-1;;;;;32503:29:0;;;;;;;;-1:-1:-1;;;32503:29:0;;;;;;;;;;;;;32563:28;32559:109;;32631:9;31683:1109;-1:-1:-1;;;31683:1109:0:o;32559:109::-;32430:261;;;31892:833;31839:886;32753:31;;-1:-1:-1;;;32753:31:0;;;;;;;;;;;50178:191;50271:6;;;-1:-1:-1;;;;;50288:17:0;;;-1:-1:-1;;;;;;50288:17:0;;;;;;;50321:40;;50271:6;;;50288:17;50271:6;;50321:40;;50252:16;;50321:40;50241:128;50178:191;:::o;45380:667::-;45564:72;;-1:-1:-1;;;45564:72:0;;45543:4;;-1:-1:-1;;;;;45564:36:0;;;;;:72;;25547:10;;45615:4;;45621:7;;45630:5;;45564:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45564:72:0;;;;;;;;-1:-1:-1;;45564:72:0;;;;;;;;;;;;:::i;:::-;;;45560:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45798:13:0;;45794:235;;45844:40;;-1:-1:-1;;;45844:40:0;;;;;;;;;;;45794:235;45987:6;45981:13;45972:6;45968:2;45964:15;45957:38;45560:480;-1:-1:-1;;;;;;45683:55:0;-1:-1:-1;;;45683:55:0;;-1:-1:-1;45560:480:0;45380:667;;;;;;:::o;23383:332::-;23099:5;-1:-1:-1;;;;;23486:33:0;;;;23478:88;;;;-1:-1:-1;;;23478:88:0;;10744:2:1;23478:88:0;;;10726:21:1;10783:2;10763:18;;;10756:30;10822:34;10802:18;;;10795:62;-1:-1:-1;;;10873:18:1;;;10866:40;10923:19;;23478:88:0;10542:406:1;23478:88:0;-1:-1:-1;;;;;23585:22:0;;23577:60;;;;-1:-1:-1;;;23577:60:0;;11155:2:1;23577:60:0;;;11137:21:1;11194:2;11174:18;;;11167:30;11233:27;11213:18;;;11206:55;11278:18;;23577:60:0;10953:349:1;23577:60:0;23672:35;;;;;;;;;-1:-1:-1;;;;;23672:35:0;;;;;;-1:-1:-1;;;;;23672:35:0;;;;;;;;;;-1:-1:-1;;;23650:57:0;;;;-1:-1:-1;23650:57:0;23383:332::o;430:723::-;486:13;707:10;703:53;;-1:-1:-1;;734:10:0;;;;;;;;;;;;-1:-1:-1;;;734:10:0;;;;;430:723::o;703:53::-;781:5;766:12;822:78;829:9;;822:78;;855:8;;;;:::i;:::-;;-1:-1:-1;878:10:0;;-1:-1:-1;886:2:0;878:10;;:::i;:::-;;;822:78;;;910:19;942:6;-1:-1:-1;;;;;932:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;932:17:0;;910:39;;960:154;967:10;;960:154;;994:11;1004:1;994:11;;:::i;:::-;;-1:-1:-1;1063:10:0;1071:2;1063:5;:10;:::i;:::-;1050:24;;:2;:24;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1020:56:0;;;;;;;;-1:-1:-1;1091:11:0;1100:2;1091:11;;:::i;:::-;;;960:154;;22021:215;22123:4;-1:-1:-1;;;;;;22147:41:0;;-1:-1:-1;;;22147:41:0;;:81;;-1:-1:-1;;;;;;;;;;19682:40:0;;;22192:36;19573:157;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;-1:-1:-1;;;;;1445:2:1;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:1;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:1:o;2735:366::-;2802:6;2810;2863:2;2851:9;2842:7;2838:23;2834:32;2831:52;;;2879:1;2876;2869:12;2831:52;2902:29;2921:9;2902:29;:::i;:::-;2892:39;;2981:2;2970:9;2966:18;2953:32;-1:-1:-1;;;;;3018:5:1;3014:38;3007:5;3004:49;2994:77;;3067:1;3064;3057:12;3106:245;3164:6;3217:2;3205:9;3196:7;3192:23;3188:32;3185:52;;;3233:1;3230;3223:12;3185:52;3272:9;3259:23;3291:30;3315:5;3291:30;:::i;3356:249::-;3425:6;3478:2;3466:9;3457:7;3453:23;3449:32;3446:52;;;3494:1;3491;3484:12;3446:52;3526:9;3520:16;3545:30;3569:5;3545:30;:::i;3610:592::-;3681:6;3689;3742:2;3730:9;3721:7;3717:23;3713:32;3710:52;;;3758:1;3755;3748:12;3710:52;3798:9;3785:23;-1:-1:-1;;;;;3868:2:1;3860:6;3857:14;3854:34;;;3884:1;3881;3874:12;3854:34;3922:6;3911:9;3907:22;3897:32;;3967:7;3960:4;3956:2;3952:13;3948:27;3938:55;;3989:1;3986;3979:12;3938:55;4029:2;4016:16;4055:2;4047:6;4044:14;4041:34;;;4071:1;4068;4061:12;4041:34;4116:7;4111:2;4102:6;4098:2;4094:15;4090:24;4087:37;4084:57;;;4137:1;4134;4127:12;4084:57;4168:2;4160:11;;;;;4190:6;;-1:-1:-1;3610:592:1;;-1:-1:-1;;;;3610:592:1:o;4207:180::-;4266:6;4319:2;4307:9;4298:7;4294:23;4290:32;4287:52;;;4335:1;4332;4325:12;4287:52;-1:-1:-1;4358:23:1;;4207:180;-1:-1:-1;4207:180:1:o;4392:248::-;4460:6;4468;4521:2;4509:9;4500:7;4496:23;4492:32;4489:52;;;4537:1;4534;4527:12;4489:52;-1:-1:-1;;4560:23:1;;;4630:2;4615:18;;;4602:32;;-1:-1:-1;4392:248:1:o;4645:276::-;4703:6;4756:2;4744:9;4735:7;4731:23;4727:32;4724:52;;;4772:1;4769;4762:12;4724:52;4811:9;4798:23;4861:10;4854:5;4850:22;4843:5;4840:33;4830:61;;4887:1;4884;4877:12;4926:257;4967:3;5005:5;4999:12;5032:6;5027:3;5020:19;5048:63;5104:6;5097:4;5092:3;5088:14;5081:4;5074:5;5070:16;5048:63;:::i;:::-;5165:2;5144:15;-1:-1:-1;;5140:29:1;5131:39;;;;5172:4;5127:50;;4926:257;-1:-1:-1;;4926:257:1:o;5188:637::-;5468:3;5506:6;5500:13;5522:53;5568:6;5563:3;5556:4;5548:6;5544:17;5522:53;:::i;:::-;5638:13;;5597:16;;;;5660:57;5638:13;5597:16;5694:4;5682:17;;5660:57;:::i;:::-;-1:-1:-1;;;5739:20:1;;5768:22;;;5817:1;5806:13;;5188:637;-1:-1:-1;;;;5188:637:1:o;6038:488::-;-1:-1:-1;;;;;6307:15:1;;;6289:34;;6359:15;;6354:2;6339:18;;6332:43;6406:2;6391:18;;6384:34;;;6454:3;6449:2;6434:18;;6427:31;;;6232:4;;6475:45;;6500:19;;6492:6;6475:45;:::i;:::-;6467:53;6038:488;-1:-1:-1;;;;;;6038:488:1:o;7002:219::-;7151:2;7140:9;7133:21;7114:4;7171:44;7211:2;7200:9;7196:18;7188:6;7171:44;:::i;12033:128::-;12073:3;12104:1;12100:6;12097:1;12094:13;12091:39;;;12110:18;;:::i;:::-;-1:-1:-1;12146:9:1;;12033:128::o;12166:228::-;12205:3;12233:10;12270:2;12267:1;12263:10;12300:2;12297:1;12293:10;12331:3;12327:2;12323:12;12318:3;12315:21;12312:47;;;12339:18;;:::i;:::-;12375:13;;12166:228;-1:-1:-1;;;;12166:228:1:o;12399:236::-;12438:3;-1:-1:-1;;;;;12511:2:1;12508:1;12504:10;12541:2;12538:1;12534:10;12572:3;12568:2;12564:12;12559:3;12556:21;12553:47;;;12580:18;;:::i;12640:120::-;12680:1;12706;12696:35;;12711:18;;:::i;:::-;-1:-1:-1;12745:9:1;;12640:120::o;12765:168::-;12805:7;12871:1;12867;12863:6;12859:14;12856:1;12853:21;12848:1;12841:9;12834:17;12830:45;12827:71;;;12878:18;;:::i;:::-;-1:-1:-1;12918:9:1;;12765:168::o;12938:125::-;12978:4;13006:1;13003;13000:8;12997:34;;;13011:18;;:::i;:::-;-1:-1:-1;13048:9:1;;12938:125::o;13068:258::-;13140:1;13150:113;13164:6;13161:1;13158:13;13150:113;;;13240:11;;;13234:18;13221:11;;;13214:39;13186:2;13179:10;13150:113;;;13281:6;13278:1;13275:13;13272:48;;;-1:-1:-1;;13316:1:1;13298:16;;13291:27;13068:258::o;13331:380::-;13410:1;13406:12;;;;13453;;;13474:61;;13528:4;13520:6;13516:17;13506:27;;13474:61;13581:2;13573:6;13570:14;13550:18;13547:38;13544:161;;;13627:10;13622:3;13618:20;13615:1;13608:31;13662:4;13659:1;13652:15;13690:4;13687:1;13680:15;13544:161;;13331:380;;;:::o;13716:135::-;13755:3;-1:-1:-1;;13776:17:1;;13773:43;;;13796:18;;:::i;:::-;-1:-1:-1;13843:1:1;13832:13;;13716:135::o;13856:112::-;13888:1;13914;13904:35;;13919:18;;:::i;:::-;-1:-1:-1;13953:9:1;;13856:112::o;13973:127::-;14034:10;14029:3;14025:20;14022:1;14015:31;14065:4;14062:1;14055:15;14089:4;14086:1;14079:15;14105:127;14166:10;14161:3;14157:20;14154:1;14147:31;14197:4;14194:1;14187:15;14221:4;14218:1;14211:15;14237:127;14298:10;14293:3;14289:20;14286:1;14279:31;14329:4;14326:1;14319:15;14353:4;14350:1;14343:15;14369:127;14430:10;14425:3;14421:20;14418:1;14411:31;14461:4;14458:1;14451:15;14485:4;14482:1;14475:15;14501:131;-1:-1:-1;;;;;;14575:32:1;;14565:43;;14555:71;;14622:1;14619;14612:12
Swarm Source
ipfs://b975b22c669cefb2f20c2cb392b24d1669682126a3f5c1c71594ad9fdb5bd652
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.