Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
193 LG
Holders
63
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 LGLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WolfPunXLeadGuitarist
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-04-18 */ // File: contracts/assets/IOperatorFilterRegistry.sol pragma solidity ^0.8.2; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function unregister(address addr) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); } // File: contracts/assets/OperatorFilterer.sol pragma solidity ^0.8.2; /** * @title OperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. */ abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from != msg.sender) { _checkFilterOperator(msg.sender); } _; } modifier onlyAllowedOperatorApproval(address operator) virtual { _checkFilterOperator(operator); _; } function _checkFilterOperator(address operator) internal view virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; 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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.6.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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: contracts/assets/IERC721A.sol // ERC721A Contracts v4.2.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: contracts/assets/ERC721A.sol // ERC721A Contracts v4.2.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Reference type for token approval. struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 1; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: contracts/WolfPunXLeadGuitarist.sol // SPDX-License-Identifier: MIT pragma solidity ^0.8.4; contract WolfPunXLeadGuitarist is ERC721A, Ownable, ERC2981,OperatorFilterer{ using SafeMath for uint256; using Strings for uint256; ERC721Enumerable public WP; uint256 public constant maxSupply = 7777; uint256 public maxMintAmount = 20; uint256 public cost = 0.04 ether; uint256 public holdersCost = 0.03 ether; string private baseTokenUri; bool public paused = true; bool public holdersMinting = true; constructor( string memory _name, string memory _symbol, string memory _initBaseURI, address _WPAddress ) ERC721A(_name, _symbol) OperatorFilterer(address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6), true) { WP = ERC721Enumerable(_WPAddress); setBaseURI(_initBaseURI); } function mint(address _to,uint256 _quantity) public payable { require(msg.sender == owner() || !paused || (holdersMinting && WP.balanceOf(_to) >0 ), "Not Yet Active."); require((totalSupply() + _quantity) <= maxSupply, "Beyond Max Supply"); require(_quantity <= maxMintAmount, "Beyond Max Mint"); if (msg.sender != owner()) { require(msg.value >= (walletCost(_to) * _quantity), "Payment is below the price"); } _safeMint(_to, _quantity); } function walletCost(address _address) public view returns (uint256 ){ if(holdersMinting && WP.balanceOf(_address)>0) return holdersCost; else return cost; } function _baseURI() internal view virtual override returns (string memory) { return baseTokenUri; } //return uri for certain token function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); return bytes(baseTokenUri).length > 0 ? string(abi.encodePacked(baseTokenUri, tokenId.toString(), ".json")) : ""; } function setBaseURI(string memory _baseTokenUri) public onlyOwner{ baseTokenUri = _baseTokenUri; } function togglePause() external onlyOwner{ paused = !paused; } function toggleHoldersMinting() external onlyOwner{ holdersMinting = !holdersMinting; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setHoldersCost(uint256 _newHoldersCost) public onlyOwner { holdersCost = _newHoldersCost; } function setMaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner { maxMintAmount = _newmaxMintAmount; } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, ERC2981) returns (bool) { return ERC721A.supportsInterface(interfaceId) || ERC2981.supportsInterface(interfaceId); } function setDefaultRoyalty(address receiver,uint96 feeNumerator) external onlyOwner { _setDefaultRoyalty(receiver, feeNumerator); } function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } function approve(address operator, uint256 tokenId) public override onlyAllowedOperatorApproval(operator) { super.approve(operator, tokenId); } function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public override onlyAllowedOperator(from){ super.safeTransferFrom(from, to, tokenId, data); } function withdraw() public onlyOwner { (bool hs, ) =payable(0x5263677bAB45180b0f4Db25eA48d0687aB083d91).call{value: address(this).balance * 15 / 100}(""); require(hs); (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); //require(payable(msg.sender).send(address(this).balance)); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"address","name":"_WPAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WP","outputs":[{"internalType":"contract ERC721Enumerable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"holdersCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"holdersMinting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"string","name":"_baseTokenUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newHoldersCost","type":"uint256"}],"name":"setHoldersCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","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":[],"name":"toggleHoldersMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","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":"_address","type":"address"}],"name":"walletCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526014600c55668e1bc9bf040000600d55666a94d74f430000600e556001601060006101000a81548160ff0219169083151502179055506001601060016101000a81548160ff0219169083151502179055503480156200006257600080fd5b506040516200496b3803806200496b833981810160405281019062000088919062000643565b733cc6cdda760b79bafa08df41ecfa224f810dceb6600185858160029080519060200190620000b99291906200050a565b508060039080519060200190620000d29291906200050a565b50620000e36200035e60201b60201c565b60008190555050506200010b620000ff6200036760201b60201c565b6200036f60201b60201c565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111562000300578015620001c6576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200018c9291906200074f565b600060405180830381600087803b158015620001a757600080fd5b505af1158015620001bc573d6000803e3d6000fd5b50505050620002ff565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000280576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620002469291906200074f565b600060405180830381600087803b1580156200026157600080fd5b505af115801562000276573d6000803e3d6000fd5b50505050620002fe565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002c9919062000732565b600060405180830381600087803b158015620002e457600080fd5b505af1158015620002f9573d6000803e3d6000fd5b505050505b5b5b505080600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000354826200043560201b60201c565b5050505062000996565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620004456200036760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200046b620004e060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620004c4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004bb906200077c565b60405180910390fd5b80600f9080519060200190620004dc9291906200050a565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620005189062000878565b90600052602060002090601f0160209004810192826200053c576000855562000588565b82601f106200055757805160ff191683800117855562000588565b8280016001018555821562000588579182015b82811115620005875782518255916020019190600101906200056a565b5b5090506200059791906200059b565b5090565b5b80821115620005b65760008160009055506001016200059c565b5090565b6000620005d1620005cb84620007c7565b6200079e565b905082815260208101848484011115620005ea57600080fd5b620005f784828562000842565b509392505050565b60008151905062000610816200097c565b92915050565b600082601f8301126200062857600080fd5b81516200063a848260208601620005ba565b91505092915050565b600080600080608085870312156200065a57600080fd5b600085015167ffffffffffffffff8111156200067557600080fd5b620006838782880162000616565b945050602085015167ffffffffffffffff811115620006a157600080fd5b620006af8782880162000616565b935050604085015167ffffffffffffffff811115620006cd57600080fd5b620006db8782880162000616565b9250506060620006ee87828801620005ff565b91505092959194509250565b62000705816200080e565b82525050565b60006200071a602083620007fd565b9150620007278262000953565b602082019050919050565b6000602082019050620007496000830184620006fa565b92915050565b6000604082019050620007666000830185620006fa565b620007756020830184620006fa565b9392505050565b6000602082019050818103600083015262000797816200070b565b9050919050565b6000620007aa620007bd565b9050620007b88282620008ae565b919050565b6000604051905090565b600067ffffffffffffffff821115620007e557620007e462000913565b5b620007f08262000942565b9050602081019050919050565b600082825260208201905092915050565b60006200081b8262000822565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b838110156200086257808201518184015260208101905062000845565b8381111562000872576000848401525b50505050565b600060028204905060018216806200089157607f821691505b60208210811415620008a857620008a7620008e4565b5b50919050565b620008b98262000942565b810181811067ffffffffffffffff82111715620008db57620008da62000913565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b62000987816200080e565b81146200099357600080fd5b50565b613fc580620009a66000396000f3fe60806040526004361061020f5760003560e01c8063588849b611610118578063af55c6f2116100a0578063c4ae31681161006f578063c4ae316814610757578063c87b56dd1461076e578063d5abeb01146107ab578063e985e9c5146107d6578063f2fde38b146108135761020f565b8063af55c6f21461069d578063b6885683146106da578063b80fc2af14610703578063b88d4fde1461072e5761020f565b8063715018a6116100e7578063715018a6146105dc5780638da5cb5b146105f357806395d89b411461061e5780639b536ba214610649578063a22cb465146106745761020f565b8063588849b61461050c5780635c975abb146105375780636352211e1461056257806370a082311461059f5761020f565b8063239c70ae1161019b57806340c10f191161016a57806340c10f191461044a57806341f434341461046657806342842e0e1461049157806344a0d68a146104ba57806355f804b3146104e35761020f565b8063239c70ae146103a157806323b872dd146103cc5780632a55205a146103f55780633ccfd60b146104335761020f565b8063081812fc116101e2578063081812fc146102bc578063088a4ed0146102f9578063095ea7b31461032257806313faede61461034b57806318160ddd146103765761020f565b806301ffc9a71461021457806304634d8d14610251578063066632891461027a57806306fdde0314610291575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613194565b61083c565b60405161024891906136a0565b60405180910390f35b34801561025d57600080fd5b506102786004803603810190610273919061312f565b61085e565b005b34801561028657600080fd5b5061028f6108e8565b005b34801561029d57600080fd5b506102a6610990565b6040516102b391906136f1565b60405180910390f35b3480156102c857600080fd5b506102e360048036038101906102de9190613227565b610a22565b6040516102f091906135e7565b60405180910390f35b34801561030557600080fd5b50610320600480360381019061031b9190613227565b610aa1565b005b34801561032e57600080fd5b50610349600480360381019061034491906130f3565b610b27565b005b34801561035757600080fd5b50610360610b40565b60405161036d9190613833565b60405180910390f35b34801561038257600080fd5b5061038b610b46565b6040516103989190613833565b60405180910390f35b3480156103ad57600080fd5b506103b6610b5d565b6040516103c39190613833565b60405180910390f35b3480156103d857600080fd5b506103f360048036038101906103ee9190612fed565b610b63565b005b34801561040157600080fd5b5061041c60048036038101906104179190613279565b610bb2565b60405161042a929190613677565b60405180910390f35b34801561043f57600080fd5b50610448610d9d565b005b610464600480360381019061045f91906130f3565b610f3c565b005b34801561047257600080fd5b5061047b6111d1565b60405161048891906136d6565b60405180910390f35b34801561049d57600080fd5b506104b860048036038101906104b39190612fed565b6111e3565b005b3480156104c657600080fd5b506104e160048036038101906104dc9190613227565b611232565b005b3480156104ef57600080fd5b5061050a600480360381019061050591906131e6565b6112b8565b005b34801561051857600080fd5b5061052161134e565b60405161052e91906136bb565b60405180910390f35b34801561054357600080fd5b5061054c611374565b60405161055991906136a0565b60405180910390f35b34801561056e57600080fd5b5061058960048036038101906105849190613227565b611387565b60405161059691906135e7565b60405180910390f35b3480156105ab57600080fd5b506105c660048036038101906105c19190612f88565b611399565b6040516105d39190613833565b60405180910390f35b3480156105e857600080fd5b506105f1611452565b005b3480156105ff57600080fd5b506106086114da565b60405161061591906135e7565b60405180910390f35b34801561062a57600080fd5b50610633611504565b60405161064091906136f1565b60405180910390f35b34801561065557600080fd5b5061065e611596565b60405161066b9190613833565b60405180910390f35b34801561068057600080fd5b5061069b600480360381019061069691906130b7565b61159c565b005b3480156106a957600080fd5b506106c460048036038101906106bf9190612f88565b6115b5565b6040516106d19190613833565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc9190613227565b611697565b005b34801561070f57600080fd5b5061071861171d565b60405161072591906136a0565b60405180910390f35b34801561073a57600080fd5b506107556004803603810190610750919061303c565b611730565b005b34801561076357600080fd5b5061076c611781565b005b34801561077a57600080fd5b5061079560048036038101906107909190613227565b611829565b6040516107a291906136f1565b60405180910390f35b3480156107b757600080fd5b506107c06118d1565b6040516107cd9190613833565b60405180910390f35b3480156107e257600080fd5b506107fd60048036038101906107f89190612fb1565b6118d7565b60405161080a91906136a0565b60405180910390f35b34801561081f57600080fd5b5061083a60048036038101906108359190612f88565b61196b565b005b600061084782611a63565b80610857575061085682611af5565b5b9050919050565b610866611b6f565b73ffffffffffffffffffffffffffffffffffffffff166108846114da565b73ffffffffffffffffffffffffffffffffffffffff16146108da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d190613773565b60405180910390fd5b6108e48282611b77565b5050565b6108f0611b6f565b73ffffffffffffffffffffffffffffffffffffffff1661090e6114da565b73ffffffffffffffffffffffffffffffffffffffff1614610964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095b90613773565b60405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b60606002805461099f90613b63565b80601f01602080910402602001604051908101604052809291908181526020018280546109cb90613b63565b8015610a185780601f106109ed57610100808354040283529160200191610a18565b820191906000526020600020905b8154815290600101906020018083116109fb57829003601f168201915b5050505050905090565b6000610a2d82611d0d565b610a63576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610aa9611b6f565b73ffffffffffffffffffffffffffffffffffffffff16610ac76114da565b73ffffffffffffffffffffffffffffffffffffffff1614610b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1490613773565b60405180910390fd5b80600c8190555050565b81610b3181611d6c565b610b3b8383611e78565b505050565b600d5481565b6000610b50611fbc565b6001546000540303905090565b600c5481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ba157610ba033611d6c565b5b610bac848484611fc5565b50505050565b6000806000600a60008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161415610d485760096040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610d526122ea565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610d7e91906139bf565b610d88919061398e565b90508160000151819350935050509250929050565b610da5611b6f565b73ffffffffffffffffffffffffffffffffffffffff16610dc36114da565b73ffffffffffffffffffffffffffffffffffffffff1614610e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1090613773565b60405180910390fd5b6000735263677bab45180b0f4db25ea48d0687ab083d9173ffffffffffffffffffffffffffffffffffffffff166064600f47610e5591906139bf565b610e5f919061398e565b604051610e6b906135d2565b60006040518083038185875af1925050503d8060008114610ea8576040519150601f19603f3d011682016040523d82523d6000602084013e610ead565b606091505b5050905080610ebb57600080fd5b6000610ec56114da565b73ffffffffffffffffffffffffffffffffffffffff1647604051610ee8906135d2565b60006040518083038185875af1925050503d8060008114610f25576040519150601f19603f3d011682016040523d82523d6000602084013e610f2a565b606091505b5050905080610f3857600080fd5b5050565b610f446114da565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610f8a5750601060009054906101000a900460ff16155b806110575750601060019054906101000a900460ff16801561105657506000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b815260040161100491906135e7565b60206040518083038186803b15801561101c57600080fd5b505afa158015611030573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110549190613250565b115b5b611096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108d90613753565b60405180910390fd5b611e61816110a2610b46565b6110ac9190613938565b11156110ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e4906137b3565b60405180910390fd5b600c54811115611132576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611129906137f3565b60405180910390fd5b61113a6114da565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111c35780611176836115b5565b61118091906139bf565b3410156111c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b990613733565b60405180910390fd5b5b6111cd82826122f4565b5050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146112215761122033611d6c565b5b61122c848484612312565b50505050565b61123a611b6f565b73ffffffffffffffffffffffffffffffffffffffff166112586114da565b73ffffffffffffffffffffffffffffffffffffffff16146112ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a590613773565b60405180910390fd5b80600d8190555050565b6112c0611b6f565b73ffffffffffffffffffffffffffffffffffffffff166112de6114da565b73ffffffffffffffffffffffffffffffffffffffff1614611334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132b90613773565b60405180910390fd5b80600f908051906020019061134a929190612d6d565b5050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601060009054906101000a900460ff1681565b600061139282612332565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611401576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61145a611b6f565b73ffffffffffffffffffffffffffffffffffffffff166114786114da565b73ffffffffffffffffffffffffffffffffffffffff16146114ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c590613773565b60405180910390fd5b6114d86000612400565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461151390613b63565b80601f016020809104026020016040519081016040528092919081815260200182805461153f90613b63565b801561158c5780601f106115615761010080835404028352916020019161158c565b820191906000526020600020905b81548152906001019060200180831161156f57829003601f168201915b5050505050905090565b600e5481565b816115a681611d6c565b6115b083836124c6565b505050565b6000601060019054906101000a900460ff16801561167d57506000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b815260040161162b91906135e7565b60206040518083038186803b15801561164357600080fd5b505afa158015611657573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061167b9190613250565b115b1561168c57600e549050611692565b600d5490505b919050565b61169f611b6f565b73ffffffffffffffffffffffffffffffffffffffff166116bd6114da565b73ffffffffffffffffffffffffffffffffffffffff1614611713576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170a90613773565b60405180910390fd5b80600e8190555050565b601060019054906101000a900460ff1681565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461176e5761176d33611d6c565b5b61177a8585858561263e565b5050505050565b611789611b6f565b73ffffffffffffffffffffffffffffffffffffffff166117a76114da565b73ffffffffffffffffffffffffffffffffffffffff16146117fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f490613773565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b606061183482611d0d565b611873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186a90613793565b60405180910390fd5b6000600f805461188290613b63565b90501161189e57604051806020016040528060008152506118ca565b600f6118a9836126b1565b6040516020016118ba9291906135a3565b6040516020818303038152906040525b9050919050565b611e6181565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611973611b6f565b73ffffffffffffffffffffffffffffffffffffffff166119916114da565b73ffffffffffffffffffffffffffffffffffffffff16146119e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119de90613773565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4e90613713565b60405180910390fd5b611a6081612400565b50565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611abe57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611aee5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b685750611b678261285e565b5b9050919050565b600033905090565b611b7f6122ea565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd4906137d3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4490613813565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600960008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b600081611d18611fbc565b11158015611d27575060005482105b8015611d65575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611e75576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611de3929190613602565b60206040518083038186803b158015611dfb57600080fd5b505afa158015611e0f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e33919061316b565b611e7457806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611e6b91906135e7565b60405180910390fd5b5b50565b6000611e8382611387565b90508073ffffffffffffffffffffffffffffffffffffffff16611ea46128c8565b73ffffffffffffffffffffffffffffffffffffffff1614611f0757611ed081611ecb6128c8565b6118d7565b611f06576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611fd082612332565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612037576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080612043846128d0565b9150915061205981876120546128c8565b6128f7565b6120a55761206e866120696128c8565b6118d7565b6120a4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561210c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612119868686600161293b565b801561212457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506121f2856121ce888887612941565b7c020000000000000000000000000000000000000000000000000000000017612969565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416141561227a576000600185019050600060046000838152602001908152602001600020541415612278576000548114612277578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122e28686866001612994565b505050505050565b6000612710905090565b61230e82826040518060200160405280600081525061299a565b5050565b61232d83838360405180602001604052806000815250611730565b505050565b60008082905080612341611fbc565b116123c9576000548110156123c85760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156123c6575b60008114156123bc576004600083600190039350838152602001908152602001600020549050612391565b80925050506123fb565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124ce6128c8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612533576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006125406128c8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166125ed6128c8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161263291906136a0565b60405180910390a35050565b612649848484610b63565b60008373ffffffffffffffffffffffffffffffffffffffff163b146126ab5761267484848484612a37565b6126aa576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060008214156126f9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612859565b600082905060005b6000821461272b57808061271490613bc6565b915050600a82612724919061398e565b9150612701565b60008167ffffffffffffffff81111561276d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561279f5781602001600182028036833780820191505090505b5090505b60008514612852576001826127b89190613a19565b9150600a856127c79190613c0f565b60306127d39190613938565b60f81b81838151811061280f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561284b919061398e565b94506127a3565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612958868684612b97565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6129a48383612ba0565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612a3257600080549050600083820390505b6129e46000868380600101945086612a37565b612a1a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106129d1578160005414612a2f57600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a5d6128c8565b8786866040518563ffffffff1660e01b8152600401612a7f949392919061362b565b602060405180830381600087803b158015612a9957600080fd5b505af1925050508015612aca57506040513d601f19601f82011682018060405250810190612ac791906131bd565b60015b612b44573d8060008114612afa576040519150601f19603f3d011682016040523d82523d6000602084013e612aff565b606091505b50600081511415612b3c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b6000805490506000821415612be1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612bee600084838561293b565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612c6583612c566000866000612941565b612c5f85612d5d565b17612969565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612d0657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612ccb565b506000821415612d42576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612d586000848385612994565b505050565b60006001821460e11b9050919050565b828054612d7990613b63565b90600052602060002090601f016020900481019282612d9b5760008555612de2565b82601f10612db457805160ff1916838001178555612de2565b82800160010185558215612de2579182015b82811115612de1578251825591602001919060010190612dc6565b5b509050612def9190612df3565b5090565b5b80821115612e0c576000816000905550600101612df4565b5090565b6000612e23612e1e84613873565b61384e565b905082815260208101848484011115612e3b57600080fd5b612e46848285613b21565b509392505050565b6000612e61612e5c846138a4565b61384e565b905082815260208101848484011115612e7957600080fd5b612e84848285613b21565b509392505050565b600081359050612e9b81613f1c565b92915050565b600081359050612eb081613f33565b92915050565b600081519050612ec581613f33565b92915050565b600081359050612eda81613f4a565b92915050565b600081519050612eef81613f4a565b92915050565b600082601f830112612f0657600080fd5b8135612f16848260208601612e10565b91505092915050565b600082601f830112612f3057600080fd5b8135612f40848260208601612e4e565b91505092915050565b600081359050612f5881613f61565b92915050565b600081519050612f6d81613f61565b92915050565b600081359050612f8281613f78565b92915050565b600060208284031215612f9a57600080fd5b6000612fa884828501612e8c565b91505092915050565b60008060408385031215612fc457600080fd5b6000612fd285828601612e8c565b9250506020612fe385828601612e8c565b9150509250929050565b60008060006060848603121561300257600080fd5b600061301086828701612e8c565b935050602061302186828701612e8c565b925050604061303286828701612f49565b9150509250925092565b6000806000806080858703121561305257600080fd5b600061306087828801612e8c565b945050602061307187828801612e8c565b935050604061308287828801612f49565b925050606085013567ffffffffffffffff81111561309f57600080fd5b6130ab87828801612ef5565b91505092959194509250565b600080604083850312156130ca57600080fd5b60006130d885828601612e8c565b92505060206130e985828601612ea1565b9150509250929050565b6000806040838503121561310657600080fd5b600061311485828601612e8c565b925050602061312585828601612f49565b9150509250929050565b6000806040838503121561314257600080fd5b600061315085828601612e8c565b925050602061316185828601612f73565b9150509250929050565b60006020828403121561317d57600080fd5b600061318b84828501612eb6565b91505092915050565b6000602082840312156131a657600080fd5b60006131b484828501612ecb565b91505092915050565b6000602082840312156131cf57600080fd5b60006131dd84828501612ee0565b91505092915050565b6000602082840312156131f857600080fd5b600082013567ffffffffffffffff81111561321257600080fd5b61321e84828501612f1f565b91505092915050565b60006020828403121561323957600080fd5b600061324784828501612f49565b91505092915050565b60006020828403121561326257600080fd5b600061327084828501612f5e565b91505092915050565b6000806040838503121561328c57600080fd5b600061329a85828601612f49565b92505060206132ab85828601612f49565b9150509250929050565b6132be81613a4d565b82525050565b6132cd81613a5f565b82525050565b60006132de826138ea565b6132e88185613900565b93506132f8818560208601613b30565b61330181613cfc565b840191505092915050565b61331581613ad9565b82525050565b61332481613afd565b82525050565b6000613335826138f5565b61333f818561391c565b935061334f818560208601613b30565b61335881613cfc565b840191505092915050565b600061336e826138f5565b613378818561392d565b9350613388818560208601613b30565b80840191505092915050565b600081546133a181613b63565b6133ab818661392d565b945060018216600081146133c657600181146133d75761340a565b60ff1983168652818601935061340a565b6133e0856138d5565b60005b83811015613402578154818901526001820191506020810190506133e3565b838801955050505b50505092915050565b600061342060268361391c565b915061342b82613d0d565b604082019050919050565b6000613443601a8361391c565b915061344e82613d5c565b602082019050919050565b6000613466600f8361391c565b915061347182613d85565b602082019050919050565b600061348960058361392d565b915061349482613dae565b600582019050919050565b60006134ac60208361391c565b91506134b782613dd7565b602082019050919050565b60006134cf602f8361391c565b91506134da82613e00565b604082019050919050565b60006134f260118361391c565b91506134fd82613e4f565b602082019050919050565b6000613515600083613911565b915061352082613e78565b600082019050919050565b6000613538602a8361391c565b915061354382613e7b565b604082019050919050565b600061355b600f8361391c565b915061356682613eca565b602082019050919050565b600061357e60198361391c565b915061358982613ef3565b602082019050919050565b61359d81613ab7565b82525050565b60006135af8285613394565b91506135bb8284613363565b91506135c68261347c565b91508190509392505050565b60006135dd82613508565b9150819050919050565b60006020820190506135fc60008301846132b5565b92915050565b600060408201905061361760008301856132b5565b61362460208301846132b5565b9392505050565b600060808201905061364060008301876132b5565b61364d60208301866132b5565b61365a6040830185613594565b818103606083015261366c81846132d3565b905095945050505050565b600060408201905061368c60008301856132b5565b6136996020830184613594565b9392505050565b60006020820190506136b560008301846132c4565b92915050565b60006020820190506136d0600083018461330c565b92915050565b60006020820190506136eb600083018461331b565b92915050565b6000602082019050818103600083015261370b818461332a565b905092915050565b6000602082019050818103600083015261372c81613413565b9050919050565b6000602082019050818103600083015261374c81613436565b9050919050565b6000602082019050818103600083015261376c81613459565b9050919050565b6000602082019050818103600083015261378c8161349f565b9050919050565b600060208201905081810360008301526137ac816134c2565b9050919050565b600060208201905081810360008301526137cc816134e5565b9050919050565b600060208201905081810360008301526137ec8161352b565b9050919050565b6000602082019050818103600083015261380c8161354e565b9050919050565b6000602082019050818103600083015261382c81613571565b9050919050565b60006020820190506138486000830184613594565b92915050565b6000613858613869565b90506138648282613b95565b919050565b6000604051905090565b600067ffffffffffffffff82111561388e5761388d613ccd565b5b61389782613cfc565b9050602081019050919050565b600067ffffffffffffffff8211156138bf576138be613ccd565b5b6138c882613cfc565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061394382613ab7565b915061394e83613ab7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561398357613982613c40565b5b828201905092915050565b600061399982613ab7565b91506139a483613ab7565b9250826139b4576139b3613c6f565b5b828204905092915050565b60006139ca82613ab7565b91506139d583613ab7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a0e57613a0d613c40565b5b828202905092915050565b6000613a2482613ab7565b9150613a2f83613ab7565b925082821015613a4257613a41613c40565b5b828203905092915050565b6000613a5882613a97565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006bffffffffffffffffffffffff82169050919050565b6000613ae482613aeb565b9050919050565b6000613af682613a97565b9050919050565b6000613b0882613b0f565b9050919050565b6000613b1a82613a97565b9050919050565b82818337600083830152505050565b60005b83811015613b4e578082015181840152602081019050613b33565b83811115613b5d576000848401525b50505050565b60006002820490506001821680613b7b57607f821691505b60208210811415613b8f57613b8e613c9e565b5b50919050565b613b9e82613cfc565b810181811067ffffffffffffffff82111715613bbd57613bbc613ccd565b5b80604052505050565b6000613bd182613ab7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c0457613c03613c40565b5b600182019050919050565b6000613c1a82613ab7565b9150613c2583613ab7565b925082613c3557613c34613c6f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5061796d656e742069732062656c6f7720746865207072696365000000000000600082015250565b7f4e6f7420596574204163746976652e0000000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4265796f6e64204d617820537570706c79000000000000000000000000000000600082015250565b50565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f4265796f6e64204d6178204d696e740000000000000000000000000000000000600082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b613f2581613a4d565b8114613f3057600080fd5b50565b613f3c81613a5f565b8114613f4757600080fd5b50565b613f5381613a6b565b8114613f5e57600080fd5b50565b613f6a81613ab7565b8114613f7557600080fd5b50565b613f8181613ac1565b8114613f8c57600080fd5b5056fea2646970667358221220e7891501aafe835b1ae7f43a39a55b0c34794c339bb40149a71771cebcdff36664736f6c63430008040033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000003a59b50f651e033b2f7665bae5b12a4a675cb7d80000000000000000000000000000000000000000000000000000000000000017576f6c6670756e58204c6561642047756974617269737400000000000000000000000000000000000000000000000000000000000000000000000000000000024c470000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5874427978754d35503935415664533245587a6b317a68714b4d794161625662376e634b325067596b7273772f00000000000000000000
Deployed Bytecode
0x60806040526004361061020f5760003560e01c8063588849b611610118578063af55c6f2116100a0578063c4ae31681161006f578063c4ae316814610757578063c87b56dd1461076e578063d5abeb01146107ab578063e985e9c5146107d6578063f2fde38b146108135761020f565b8063af55c6f21461069d578063b6885683146106da578063b80fc2af14610703578063b88d4fde1461072e5761020f565b8063715018a6116100e7578063715018a6146105dc5780638da5cb5b146105f357806395d89b411461061e5780639b536ba214610649578063a22cb465146106745761020f565b8063588849b61461050c5780635c975abb146105375780636352211e1461056257806370a082311461059f5761020f565b8063239c70ae1161019b57806340c10f191161016a57806340c10f191461044a57806341f434341461046657806342842e0e1461049157806344a0d68a146104ba57806355f804b3146104e35761020f565b8063239c70ae146103a157806323b872dd146103cc5780632a55205a146103f55780633ccfd60b146104335761020f565b8063081812fc116101e2578063081812fc146102bc578063088a4ed0146102f9578063095ea7b31461032257806313faede61461034b57806318160ddd146103765761020f565b806301ffc9a71461021457806304634d8d14610251578063066632891461027a57806306fdde0314610291575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613194565b61083c565b60405161024891906136a0565b60405180910390f35b34801561025d57600080fd5b506102786004803603810190610273919061312f565b61085e565b005b34801561028657600080fd5b5061028f6108e8565b005b34801561029d57600080fd5b506102a6610990565b6040516102b391906136f1565b60405180910390f35b3480156102c857600080fd5b506102e360048036038101906102de9190613227565b610a22565b6040516102f091906135e7565b60405180910390f35b34801561030557600080fd5b50610320600480360381019061031b9190613227565b610aa1565b005b34801561032e57600080fd5b50610349600480360381019061034491906130f3565b610b27565b005b34801561035757600080fd5b50610360610b40565b60405161036d9190613833565b60405180910390f35b34801561038257600080fd5b5061038b610b46565b6040516103989190613833565b60405180910390f35b3480156103ad57600080fd5b506103b6610b5d565b6040516103c39190613833565b60405180910390f35b3480156103d857600080fd5b506103f360048036038101906103ee9190612fed565b610b63565b005b34801561040157600080fd5b5061041c60048036038101906104179190613279565b610bb2565b60405161042a929190613677565b60405180910390f35b34801561043f57600080fd5b50610448610d9d565b005b610464600480360381019061045f91906130f3565b610f3c565b005b34801561047257600080fd5b5061047b6111d1565b60405161048891906136d6565b60405180910390f35b34801561049d57600080fd5b506104b860048036038101906104b39190612fed565b6111e3565b005b3480156104c657600080fd5b506104e160048036038101906104dc9190613227565b611232565b005b3480156104ef57600080fd5b5061050a600480360381019061050591906131e6565b6112b8565b005b34801561051857600080fd5b5061052161134e565b60405161052e91906136bb565b60405180910390f35b34801561054357600080fd5b5061054c611374565b60405161055991906136a0565b60405180910390f35b34801561056e57600080fd5b5061058960048036038101906105849190613227565b611387565b60405161059691906135e7565b60405180910390f35b3480156105ab57600080fd5b506105c660048036038101906105c19190612f88565b611399565b6040516105d39190613833565b60405180910390f35b3480156105e857600080fd5b506105f1611452565b005b3480156105ff57600080fd5b506106086114da565b60405161061591906135e7565b60405180910390f35b34801561062a57600080fd5b50610633611504565b60405161064091906136f1565b60405180910390f35b34801561065557600080fd5b5061065e611596565b60405161066b9190613833565b60405180910390f35b34801561068057600080fd5b5061069b600480360381019061069691906130b7565b61159c565b005b3480156106a957600080fd5b506106c460048036038101906106bf9190612f88565b6115b5565b6040516106d19190613833565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc9190613227565b611697565b005b34801561070f57600080fd5b5061071861171d565b60405161072591906136a0565b60405180910390f35b34801561073a57600080fd5b506107556004803603810190610750919061303c565b611730565b005b34801561076357600080fd5b5061076c611781565b005b34801561077a57600080fd5b5061079560048036038101906107909190613227565b611829565b6040516107a291906136f1565b60405180910390f35b3480156107b757600080fd5b506107c06118d1565b6040516107cd9190613833565b60405180910390f35b3480156107e257600080fd5b506107fd60048036038101906107f89190612fb1565b6118d7565b60405161080a91906136a0565b60405180910390f35b34801561081f57600080fd5b5061083a60048036038101906108359190612f88565b61196b565b005b600061084782611a63565b80610857575061085682611af5565b5b9050919050565b610866611b6f565b73ffffffffffffffffffffffffffffffffffffffff166108846114da565b73ffffffffffffffffffffffffffffffffffffffff16146108da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d190613773565b60405180910390fd5b6108e48282611b77565b5050565b6108f0611b6f565b73ffffffffffffffffffffffffffffffffffffffff1661090e6114da565b73ffffffffffffffffffffffffffffffffffffffff1614610964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095b90613773565b60405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b60606002805461099f90613b63565b80601f01602080910402602001604051908101604052809291908181526020018280546109cb90613b63565b8015610a185780601f106109ed57610100808354040283529160200191610a18565b820191906000526020600020905b8154815290600101906020018083116109fb57829003601f168201915b5050505050905090565b6000610a2d82611d0d565b610a63576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610aa9611b6f565b73ffffffffffffffffffffffffffffffffffffffff16610ac76114da565b73ffffffffffffffffffffffffffffffffffffffff1614610b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1490613773565b60405180910390fd5b80600c8190555050565b81610b3181611d6c565b610b3b8383611e78565b505050565b600d5481565b6000610b50611fbc565b6001546000540303905090565b600c5481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ba157610ba033611d6c565b5b610bac848484611fc5565b50505050565b6000806000600a60008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161415610d485760096040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610d526122ea565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610d7e91906139bf565b610d88919061398e565b90508160000151819350935050509250929050565b610da5611b6f565b73ffffffffffffffffffffffffffffffffffffffff16610dc36114da565b73ffffffffffffffffffffffffffffffffffffffff1614610e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1090613773565b60405180910390fd5b6000735263677bab45180b0f4db25ea48d0687ab083d9173ffffffffffffffffffffffffffffffffffffffff166064600f47610e5591906139bf565b610e5f919061398e565b604051610e6b906135d2565b60006040518083038185875af1925050503d8060008114610ea8576040519150601f19603f3d011682016040523d82523d6000602084013e610ead565b606091505b5050905080610ebb57600080fd5b6000610ec56114da565b73ffffffffffffffffffffffffffffffffffffffff1647604051610ee8906135d2565b60006040518083038185875af1925050503d8060008114610f25576040519150601f19603f3d011682016040523d82523d6000602084013e610f2a565b606091505b5050905080610f3857600080fd5b5050565b610f446114da565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610f8a5750601060009054906101000a900460ff16155b806110575750601060019054906101000a900460ff16801561105657506000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b815260040161100491906135e7565b60206040518083038186803b15801561101c57600080fd5b505afa158015611030573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110549190613250565b115b5b611096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108d90613753565b60405180910390fd5b611e61816110a2610b46565b6110ac9190613938565b11156110ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e4906137b3565b60405180910390fd5b600c54811115611132576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611129906137f3565b60405180910390fd5b61113a6114da565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111c35780611176836115b5565b61118091906139bf565b3410156111c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b990613733565b60405180910390fd5b5b6111cd82826122f4565b5050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146112215761122033611d6c565b5b61122c848484612312565b50505050565b61123a611b6f565b73ffffffffffffffffffffffffffffffffffffffff166112586114da565b73ffffffffffffffffffffffffffffffffffffffff16146112ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a590613773565b60405180910390fd5b80600d8190555050565b6112c0611b6f565b73ffffffffffffffffffffffffffffffffffffffff166112de6114da565b73ffffffffffffffffffffffffffffffffffffffff1614611334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132b90613773565b60405180910390fd5b80600f908051906020019061134a929190612d6d565b5050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601060009054906101000a900460ff1681565b600061139282612332565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611401576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61145a611b6f565b73ffffffffffffffffffffffffffffffffffffffff166114786114da565b73ffffffffffffffffffffffffffffffffffffffff16146114ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c590613773565b60405180910390fd5b6114d86000612400565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461151390613b63565b80601f016020809104026020016040519081016040528092919081815260200182805461153f90613b63565b801561158c5780601f106115615761010080835404028352916020019161158c565b820191906000526020600020905b81548152906001019060200180831161156f57829003601f168201915b5050505050905090565b600e5481565b816115a681611d6c565b6115b083836124c6565b505050565b6000601060019054906101000a900460ff16801561167d57506000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b815260040161162b91906135e7565b60206040518083038186803b15801561164357600080fd5b505afa158015611657573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061167b9190613250565b115b1561168c57600e549050611692565b600d5490505b919050565b61169f611b6f565b73ffffffffffffffffffffffffffffffffffffffff166116bd6114da565b73ffffffffffffffffffffffffffffffffffffffff1614611713576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170a90613773565b60405180910390fd5b80600e8190555050565b601060019054906101000a900460ff1681565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461176e5761176d33611d6c565b5b61177a8585858561263e565b5050505050565b611789611b6f565b73ffffffffffffffffffffffffffffffffffffffff166117a76114da565b73ffffffffffffffffffffffffffffffffffffffff16146117fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f490613773565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b606061183482611d0d565b611873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186a90613793565b60405180910390fd5b6000600f805461188290613b63565b90501161189e57604051806020016040528060008152506118ca565b600f6118a9836126b1565b6040516020016118ba9291906135a3565b6040516020818303038152906040525b9050919050565b611e6181565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611973611b6f565b73ffffffffffffffffffffffffffffffffffffffff166119916114da565b73ffffffffffffffffffffffffffffffffffffffff16146119e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119de90613773565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4e90613713565b60405180910390fd5b611a6081612400565b50565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611abe57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611aee5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b685750611b678261285e565b5b9050919050565b600033905090565b611b7f6122ea565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd4906137d3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4490613813565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600960008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b600081611d18611fbc565b11158015611d27575060005482105b8015611d65575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611e75576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611de3929190613602565b60206040518083038186803b158015611dfb57600080fd5b505afa158015611e0f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e33919061316b565b611e7457806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611e6b91906135e7565b60405180910390fd5b5b50565b6000611e8382611387565b90508073ffffffffffffffffffffffffffffffffffffffff16611ea46128c8565b73ffffffffffffffffffffffffffffffffffffffff1614611f0757611ed081611ecb6128c8565b6118d7565b611f06576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611fd082612332565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612037576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080612043846128d0565b9150915061205981876120546128c8565b6128f7565b6120a55761206e866120696128c8565b6118d7565b6120a4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561210c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612119868686600161293b565b801561212457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506121f2856121ce888887612941565b7c020000000000000000000000000000000000000000000000000000000017612969565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416141561227a576000600185019050600060046000838152602001908152602001600020541415612278576000548114612277578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122e28686866001612994565b505050505050565b6000612710905090565b61230e82826040518060200160405280600081525061299a565b5050565b61232d83838360405180602001604052806000815250611730565b505050565b60008082905080612341611fbc565b116123c9576000548110156123c85760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156123c6575b60008114156123bc576004600083600190039350838152602001908152602001600020549050612391565b80925050506123fb565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124ce6128c8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612533576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006125406128c8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166125ed6128c8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161263291906136a0565b60405180910390a35050565b612649848484610b63565b60008373ffffffffffffffffffffffffffffffffffffffff163b146126ab5761267484848484612a37565b6126aa576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060008214156126f9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612859565b600082905060005b6000821461272b57808061271490613bc6565b915050600a82612724919061398e565b9150612701565b60008167ffffffffffffffff81111561276d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561279f5781602001600182028036833780820191505090505b5090505b60008514612852576001826127b89190613a19565b9150600a856127c79190613c0f565b60306127d39190613938565b60f81b81838151811061280f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561284b919061398e565b94506127a3565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612958868684612b97565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6129a48383612ba0565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612a3257600080549050600083820390505b6129e46000868380600101945086612a37565b612a1a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106129d1578160005414612a2f57600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a5d6128c8565b8786866040518563ffffffff1660e01b8152600401612a7f949392919061362b565b602060405180830381600087803b158015612a9957600080fd5b505af1925050508015612aca57506040513d601f19601f82011682018060405250810190612ac791906131bd565b60015b612b44573d8060008114612afa576040519150601f19603f3d011682016040523d82523d6000602084013e612aff565b606091505b50600081511415612b3c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b6000805490506000821415612be1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612bee600084838561293b565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612c6583612c566000866000612941565b612c5f85612d5d565b17612969565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612d0657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612ccb565b506000821415612d42576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612d586000848385612994565b505050565b60006001821460e11b9050919050565b828054612d7990613b63565b90600052602060002090601f016020900481019282612d9b5760008555612de2565b82601f10612db457805160ff1916838001178555612de2565b82800160010185558215612de2579182015b82811115612de1578251825591602001919060010190612dc6565b5b509050612def9190612df3565b5090565b5b80821115612e0c576000816000905550600101612df4565b5090565b6000612e23612e1e84613873565b61384e565b905082815260208101848484011115612e3b57600080fd5b612e46848285613b21565b509392505050565b6000612e61612e5c846138a4565b61384e565b905082815260208101848484011115612e7957600080fd5b612e84848285613b21565b509392505050565b600081359050612e9b81613f1c565b92915050565b600081359050612eb081613f33565b92915050565b600081519050612ec581613f33565b92915050565b600081359050612eda81613f4a565b92915050565b600081519050612eef81613f4a565b92915050565b600082601f830112612f0657600080fd5b8135612f16848260208601612e10565b91505092915050565b600082601f830112612f3057600080fd5b8135612f40848260208601612e4e565b91505092915050565b600081359050612f5881613f61565b92915050565b600081519050612f6d81613f61565b92915050565b600081359050612f8281613f78565b92915050565b600060208284031215612f9a57600080fd5b6000612fa884828501612e8c565b91505092915050565b60008060408385031215612fc457600080fd5b6000612fd285828601612e8c565b9250506020612fe385828601612e8c565b9150509250929050565b60008060006060848603121561300257600080fd5b600061301086828701612e8c565b935050602061302186828701612e8c565b925050604061303286828701612f49565b9150509250925092565b6000806000806080858703121561305257600080fd5b600061306087828801612e8c565b945050602061307187828801612e8c565b935050604061308287828801612f49565b925050606085013567ffffffffffffffff81111561309f57600080fd5b6130ab87828801612ef5565b91505092959194509250565b600080604083850312156130ca57600080fd5b60006130d885828601612e8c565b92505060206130e985828601612ea1565b9150509250929050565b6000806040838503121561310657600080fd5b600061311485828601612e8c565b925050602061312585828601612f49565b9150509250929050565b6000806040838503121561314257600080fd5b600061315085828601612e8c565b925050602061316185828601612f73565b9150509250929050565b60006020828403121561317d57600080fd5b600061318b84828501612eb6565b91505092915050565b6000602082840312156131a657600080fd5b60006131b484828501612ecb565b91505092915050565b6000602082840312156131cf57600080fd5b60006131dd84828501612ee0565b91505092915050565b6000602082840312156131f857600080fd5b600082013567ffffffffffffffff81111561321257600080fd5b61321e84828501612f1f565b91505092915050565b60006020828403121561323957600080fd5b600061324784828501612f49565b91505092915050565b60006020828403121561326257600080fd5b600061327084828501612f5e565b91505092915050565b6000806040838503121561328c57600080fd5b600061329a85828601612f49565b92505060206132ab85828601612f49565b9150509250929050565b6132be81613a4d565b82525050565b6132cd81613a5f565b82525050565b60006132de826138ea565b6132e88185613900565b93506132f8818560208601613b30565b61330181613cfc565b840191505092915050565b61331581613ad9565b82525050565b61332481613afd565b82525050565b6000613335826138f5565b61333f818561391c565b935061334f818560208601613b30565b61335881613cfc565b840191505092915050565b600061336e826138f5565b613378818561392d565b9350613388818560208601613b30565b80840191505092915050565b600081546133a181613b63565b6133ab818661392d565b945060018216600081146133c657600181146133d75761340a565b60ff1983168652818601935061340a565b6133e0856138d5565b60005b83811015613402578154818901526001820191506020810190506133e3565b838801955050505b50505092915050565b600061342060268361391c565b915061342b82613d0d565b604082019050919050565b6000613443601a8361391c565b915061344e82613d5c565b602082019050919050565b6000613466600f8361391c565b915061347182613d85565b602082019050919050565b600061348960058361392d565b915061349482613dae565b600582019050919050565b60006134ac60208361391c565b91506134b782613dd7565b602082019050919050565b60006134cf602f8361391c565b91506134da82613e00565b604082019050919050565b60006134f260118361391c565b91506134fd82613e4f565b602082019050919050565b6000613515600083613911565b915061352082613e78565b600082019050919050565b6000613538602a8361391c565b915061354382613e7b565b604082019050919050565b600061355b600f8361391c565b915061356682613eca565b602082019050919050565b600061357e60198361391c565b915061358982613ef3565b602082019050919050565b61359d81613ab7565b82525050565b60006135af8285613394565b91506135bb8284613363565b91506135c68261347c565b91508190509392505050565b60006135dd82613508565b9150819050919050565b60006020820190506135fc60008301846132b5565b92915050565b600060408201905061361760008301856132b5565b61362460208301846132b5565b9392505050565b600060808201905061364060008301876132b5565b61364d60208301866132b5565b61365a6040830185613594565b818103606083015261366c81846132d3565b905095945050505050565b600060408201905061368c60008301856132b5565b6136996020830184613594565b9392505050565b60006020820190506136b560008301846132c4565b92915050565b60006020820190506136d0600083018461330c565b92915050565b60006020820190506136eb600083018461331b565b92915050565b6000602082019050818103600083015261370b818461332a565b905092915050565b6000602082019050818103600083015261372c81613413565b9050919050565b6000602082019050818103600083015261374c81613436565b9050919050565b6000602082019050818103600083015261376c81613459565b9050919050565b6000602082019050818103600083015261378c8161349f565b9050919050565b600060208201905081810360008301526137ac816134c2565b9050919050565b600060208201905081810360008301526137cc816134e5565b9050919050565b600060208201905081810360008301526137ec8161352b565b9050919050565b6000602082019050818103600083015261380c8161354e565b9050919050565b6000602082019050818103600083015261382c81613571565b9050919050565b60006020820190506138486000830184613594565b92915050565b6000613858613869565b90506138648282613b95565b919050565b6000604051905090565b600067ffffffffffffffff82111561388e5761388d613ccd565b5b61389782613cfc565b9050602081019050919050565b600067ffffffffffffffff8211156138bf576138be613ccd565b5b6138c882613cfc565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061394382613ab7565b915061394e83613ab7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561398357613982613c40565b5b828201905092915050565b600061399982613ab7565b91506139a483613ab7565b9250826139b4576139b3613c6f565b5b828204905092915050565b60006139ca82613ab7565b91506139d583613ab7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a0e57613a0d613c40565b5b828202905092915050565b6000613a2482613ab7565b9150613a2f83613ab7565b925082821015613a4257613a41613c40565b5b828203905092915050565b6000613a5882613a97565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006bffffffffffffffffffffffff82169050919050565b6000613ae482613aeb565b9050919050565b6000613af682613a97565b9050919050565b6000613b0882613b0f565b9050919050565b6000613b1a82613a97565b9050919050565b82818337600083830152505050565b60005b83811015613b4e578082015181840152602081019050613b33565b83811115613b5d576000848401525b50505050565b60006002820490506001821680613b7b57607f821691505b60208210811415613b8f57613b8e613c9e565b5b50919050565b613b9e82613cfc565b810181811067ffffffffffffffff82111715613bbd57613bbc613ccd565b5b80604052505050565b6000613bd182613ab7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c0457613c03613c40565b5b600182019050919050565b6000613c1a82613ab7565b9150613c2583613ab7565b925082613c3557613c34613c6f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5061796d656e742069732062656c6f7720746865207072696365000000000000600082015250565b7f4e6f7420596574204163746976652e0000000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4265796f6e64204d617820537570706c79000000000000000000000000000000600082015250565b50565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f4265796f6e64204d6178204d696e740000000000000000000000000000000000600082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b613f2581613a4d565b8114613f3057600080fd5b50565b613f3c81613a5f565b8114613f4757600080fd5b50565b613f5381613a6b565b8114613f5e57600080fd5b50565b613f6a81613ab7565b8114613f7557600080fd5b50565b613f8181613ac1565b8114613f8c57600080fd5b5056fea2646970667358221220e7891501aafe835b1ae7f43a39a55b0c34794c339bb40149a71771cebcdff36664736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000003a59b50f651e033b2f7665bae5b12a4a675cb7d80000000000000000000000000000000000000000000000000000000000000017576f6c6670756e58204c6561642047756974617269737400000000000000000000000000000000000000000000000000000000000000000000000000000000024c470000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5874427978754d35503935415664533245587a6b317a68714b4d794161625662376e634b325067596b7273772f00000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): WolfpunX Lead Guitarist
Arg [1] : _symbol (string): LG
Arg [2] : _initBaseURI (string): ipfs://QmXtByxuM5P95AVdS2EXzk1zhqKMyAabVb7ncK2PgYkrsw/
Arg [3] : _WPAddress (address): 0x3A59B50F651e033B2F7665BaE5b12a4a675cB7d8
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000003a59b50f651e033b2f7665bae5b12a4a675cb7d8
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000017
Arg [5] : 576f6c6670756e58204c65616420477569746172697374000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [7] : 4c47000000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d5874427978754d35503935415664533245587a6b317a68
Arg [10] : 714b4d794161625662376e634b325067596b7273772f00000000000000000000
Deployed Bytecode Sourcemap
115131:4382:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117840:241;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;118089:145;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;117380:101;;;;;;;;;;;;;:::i;:::-;;83095:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89578:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;117709:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;118426:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;115405:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78846:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;115364:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;118592:163;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32485:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;119145:365;;;;;;;;;;;;;:::i;:::-;;115968:513;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2899:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;118763:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;117489:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;117176:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;115283:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;115530:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84488:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80030:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17243:103;;;;;;;;;;;;;:::i;:::-;;16592:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83271:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;115445:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;118242:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;116489:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;117583:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;115562:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;118942:195;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;117296:76;;;;;;;;;;;;;:::i;:::-;;116859:309;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;115317:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90601:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17501:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;117840:241;117943:4;117980:38;118006:11;117980:25;:38::i;:::-;:93;;;;118035:38;118061:11;118035:25;:38::i;:::-;117980:93;117960:113;;117840:241;;;:::o;118089:145::-;16823:12;:10;:12::i;:::-;16812:23;;:7;:5;:7::i;:::-;:23;;;16804:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;118184:42:::1;118203:8;118213:12;118184:18;:42::i;:::-;118089:145:::0;;:::o;117380:101::-;16823:12;:10;:12::i;:::-;16812:23;;:7;:5;:7::i;:::-;:23;;;16804:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;117459:14:::1;;;;;;;;;;;117458:15;117441:14;;:32;;;;;;;;;;;;;;;;;;117380:101::o:0;83095:100::-;83149:13;83182:5;83175:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83095:100;:::o;89578:218::-;89654:7;89679:16;89687:7;89679;:16::i;:::-;89674:64;;89704:34;;;;;;;;;;;;;;89674:64;89758:15;:24;89774:7;89758:24;;;;;;;;;;;:30;;;;;;;;;;;;89751:37;;89578:218;;;:::o;117709:122::-;16823:12;:10;:12::i;:::-;16812:23;;:7;:5;:7::i;:::-;:23;;;16804:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;117806:17:::1;117790:13;:33;;;;117709:122:::0;:::o;118426:158::-;118522:8;4420:30;4441:8;4420:20;:30::i;:::-;118544:32:::1;118558:8;118568:7;118544:13;:32::i;:::-;118426:158:::0;;;:::o;115405:33::-;;;;:::o;78846:323::-;78907:7;79135:15;:13;:15::i;:::-;79120:12;;79104:13;;:28;:46;79097:53;;78846:323;:::o;115364:34::-;;;;:::o;118592:163::-;118693:4;4248:10;4240:18;;:4;:18;;;4236:83;;4275:32;4296:10;4275:20;:32::i;:::-;4236:83;118710:37:::1;118729:4;118735:2;118739:7;118710:18;:37::i;:::-;118592:163:::0;;;;:::o;32485:442::-;32582:7;32591;32611:26;32640:17;:27;32658:8;32640:27;;;;;;;;;;;32611:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32712:1;32684:30;;:7;:16;;;:30;;;32680:92;;;32741:19;32731:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32680:92;32784:21;32849:17;:15;:17::i;:::-;32808:58;;32822:7;:23;;;32809:36;;:10;:36;;;;:::i;:::-;32808:58;;;;:::i;:::-;32784:82;;32887:7;:16;;;32905:13;32879:40;;;;;;32485:442;;;;;:::o;119145:365::-;16823:12;:10;:12::i;:::-;16812:23;;:7;:5;:7::i;:::-;:23;;;16804:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;119194:7:::1;119214:42;119206:56;;119299:3;119294:2;119270:21;:26;;;;:::i;:::-;:32;;;;:::i;:::-;119206:101;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119193:114;;;119326:2;119318:11;;;::::0;::::1;;119343:7;119364;:5;:7::i;:::-;119356:21;;119385;119356:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119342:69;;;119430:2;119422:11;;;::::0;::::1;;16883:1;;119145:365::o:0;115968:513::-;116061:7;:5;:7::i;:::-;116047:21;;:10;:21;;;:32;;;;116073:6;;;;;;;;;;;116072:7;116047:32;:77;;;;116084:14;;;;;;;;;;;:38;;;;;116121:1;116102:2;;;;;;;;;;;:12;;;116115:3;116102:17;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:20;116084:38;116047:77;116039:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;115353:4;116180:9;116164:13;:11;:13::i;:::-;:25;;;;:::i;:::-;116163:40;;116155:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;116257:13;;116244:9;:26;;116236:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;116319:7;:5;:7::i;:::-;116305:21;;:10;:21;;;116301:135;;116383:9;116365:15;116376:3;116365:10;:15::i;:::-;:27;;;;:::i;:::-;116351:9;:42;;116343:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;116301:135;116448:25;116458:3;116463:9;116448;:25::i;:::-;115968:513;;:::o;2899:143::-;2999:42;2899:143;:::o;118763:171::-;118868:4;4248:10;4240:18;;:4;:18;;;4236:83;;4275:32;4296:10;4275:20;:32::i;:::-;4236:83;118885:41:::1;118908:4;118914:2;118918:7;118885:22;:41::i;:::-;118763:171:::0;;;;:::o;117489:86::-;16823:12;:10;:12::i;:::-;16812:23;;:7;:5;:7::i;:::-;:23;;;16804:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;117559:8:::1;117552:4;:15;;;;117489:86:::0;:::o;117176:112::-;16823:12;:10;:12::i;:::-;16812:23;;:7;:5;:7::i;:::-;:23;;;16804:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;117267:13:::1;117252:12;:28;;;;;;;;;;;;:::i;:::-;;117176:112:::0;:::o;115283:27::-;;;;;;;;;;;;;:::o;115530:25::-;;;;;;;;;;;;;:::o;84488:152::-;84560:7;84603:27;84622:7;84603:18;:27::i;:::-;84580:52;;84488:152;;;:::o;80030:233::-;80102:7;80143:1;80126:19;;:5;:19;;;80122:60;;;80154:28;;;;;;;;;;;;;;80122:60;74189:13;80200:18;:25;80219:5;80200:25;;;;;;;;;;;;;;;;:55;80193:62;;80030:233;;;:::o;17243:103::-;16823:12;:10;:12::i;:::-;16812:23;;:7;:5;:7::i;:::-;:23;;;16804:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17308:30:::1;17335:1;17308:18;:30::i;:::-;17243:103::o:0;16592:87::-;16638:7;16665:6;;;;;;;;;;;16658:13;;16592:87;:::o;83271:104::-;83327:13;83360:7;83353:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83271:104;:::o;115445:40::-;;;;:::o;118242:176::-;118346:8;4420:30;4441:8;4420:20;:30::i;:::-;118367:43:::1;118391:8;118401;118367:23;:43::i;:::-;118242:176:::0;;;:::o;116489:205::-;116548:7;116571:14;;;;;;;;;;;:42;;;;;116612:1;116589:2;;;;;;;;;;;:12;;;116602:8;116589:22;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:24;116571:42;116568:118;;;116635:11;;116628:18;;;;116568:118;116682:4;;116675:11;;116489:205;;;;:::o;117583:114::-;16823:12;:10;:12::i;:::-;16812:23;;:7;:5;:7::i;:::-;:23;;;16804:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;117674:15:::1;117660:11;:29;;;;117583:114:::0;:::o;115562:33::-;;;;;;;;;;;;;:::o;118942:195::-;119066:4;4248:10;4240:18;;:4;:18;;;4236:83;;4275:32;4296:10;4275:20;:32::i;:::-;4236:83;119082:47:::1;119105:4;119111:2;119115:7;119124:4;119082:22;:47::i;:::-;118942:195:::0;;;;;:::o;117296:76::-;16823:12;:10;:12::i;:::-;16812:23;;:7;:5;:7::i;:::-;:23;;;16804:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;117358:6:::1;;;;;;;;;;;117357:7;117348:6;;:16;;;;;;;;;;;;;;;;;;117296:76::o:0;116859:309::-;116932:13;116966:16;116974:7;116966;:16::i;:::-;116958:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;117083:1;117060:12;117054:26;;;;;:::i;:::-;;;:30;:106;;;;;;;;;;;;;;;;;117111:12;117125:18;:7;:16;:18::i;:::-;117094:60;;;;;;;;;:::i;:::-;;;;;;;;;;;;;117054:106;117047:113;;116859:309;;;:::o;115317:40::-;115353:4;115317:40;:::o;90601:164::-;90698:4;90722:18;:25;90741:5;90722:25;;;;;;;;;;;;;;;:35;90748:8;90722:35;;;;;;;;;;;;;;;;;;;;;;;;;90715:42;;90601:164;;;;:::o;17501:201::-;16823:12;:10;:12::i;:::-;16812:23;;:7;:5;:7::i;:::-;:23;;;16804:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17610:1:::1;17590:22;;:8;:22;;;;17582:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;17666:28;17685:8;17666:18;:28::i;:::-;17501:201:::0;:::o;82193:639::-;82278:4;82617:10;82602:25;;:11;:25;;;;:102;;;;82694:10;82679:25;;:11;:25;;;;82602:102;:179;;;;82771:10;82756:25;;:11;:25;;;;82602:179;82582:199;;82193:639;;;:::o;32215:215::-;32317:4;32356:26;32341:41;;;:11;:41;;;;:81;;;;32386:36;32410:11;32386:23;:36::i;:::-;32341:81;32334:88;;32215:215;;;:::o;15263:98::-;15316:7;15343:10;15336:17;;15263:98;:::o;33577:332::-;33696:17;:15;:17::i;:::-;33680:33;;:12;:33;;;;33672:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;33799:1;33779:22;;:8;:22;;;;33771:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;33866:35;;;;;;;;33878:8;33866:35;;;;;;33888:12;33866:35;;;;;33844:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33577:332;;:::o;91023:282::-;91088:4;91144:7;91125:15;:13;:15::i;:::-;:26;;:66;;;;;91178:13;;91168:7;:23;91125:66;:153;;;;;91277:1;74965:8;91229:17;:26;91247:7;91229:26;;;;;;;;;;;;:44;:49;91125:153;91105:173;;91023:282;;;:::o;4478:419::-;4717:1;2999:42;4669:45;;;:49;4665:225;;;2999:42;4740;;;4791:4;4798:8;4740:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4735:144;;4854:8;4835:28;;;;;;;;;;;:::i;:::-;;;;;;;;4735:144;4665:225;4478:419;:::o;89019:400::-;89100:13;89116:16;89124:7;89116;:16::i;:::-;89100:32;;89172:5;89149:28;;:19;:17;:19::i;:::-;:28;;;89145:175;;89197:44;89214:5;89221:19;:17;:19::i;:::-;89197:16;:44::i;:::-;89192:128;;89269:35;;;;;;;;;;;;;;89192:128;89145:175;89365:2;89332:15;:24;89348:7;89332:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;89403:7;89399:2;89383:28;;89392:5;89383:28;;;;;;;;;;;;89019:400;;;:::o;78362:92::-;78418:7;78445:1;78438:8;;78362:92;:::o;93285:2817::-;93419:27;93449;93468:7;93449:18;:27::i;:::-;93419:57;;93534:4;93493:45;;93509:19;93493:45;;;93489:86;;93547:28;;;;;;;;;;;;;;93489:86;93589:27;93618:23;93645:35;93672:7;93645:26;:35::i;:::-;93588:92;;;;93780:68;93805:15;93822:4;93828:19;:17;:19::i;:::-;93780:24;:68::i;:::-;93775:180;;93868:43;93885:4;93891:19;:17;:19::i;:::-;93868:16;:43::i;:::-;93863:92;;93920:35;;;;;;;;;;;;;;93863:92;93775:180;93986:1;93972:16;;:2;:16;;;93968:52;;;93997:23;;;;;;;;;;;;;;93968:52;94033:43;94055:4;94061:2;94065:7;94074:1;94033:21;:43::i;:::-;94169:15;94166:2;;;94309:1;94288:19;94281:30;94166:2;94706:18;:24;94725:4;94706:24;;;;;;;;;;;;;;;;94704:26;;;;;;;;;;;;94775:18;:22;94794:2;94775:22;;;;;;;;;;;;;;;;94773:24;;;;;;;;;;;95097:146;95134:2;95183:45;95198:4;95204:2;95208:19;95183:14;:45::i;:::-;75245:8;95155:73;95097:18;:146::i;:::-;95068:17;:26;95086:7;95068:26;;;;;;;;;;;:175;;;;95414:1;75245:8;95363:19;:47;:52;95359:627;;;95436:19;95468:1;95458:7;:11;95436:33;;95625:1;95591:17;:30;95609:11;95591:30;;;;;;;;;;;;:35;95587:384;;;95729:13;;95714:11;:28;95710:242;;95909:19;95876:17;:30;95894:11;95876:30;;;;;;;;;;;:52;;;;95710:242;95587:384;95359:627;;96033:7;96029:2;96014:27;;96023:4;96014:27;;;;;;;;;;;;96052:42;96073:4;96079:2;96083:7;96092:1;96052:20;:42::i;:::-;93285:2817;;;;;;:::o;33209:97::-;33267:6;33293:5;33286:12;;33209:97;:::o;106621:112::-;106698:27;106708:2;106712:8;106698:27;;;;;;;;;;;;:9;:27::i;:::-;106621:112;;:::o;96198:185::-;96336:39;96353:4;96359:2;96363:7;96336:39;;;;;;;;;;;;:16;:39::i;:::-;96198:185;;;:::o;85643:1275::-;85710:7;85730:12;85745:7;85730:22;;85813:4;85794:15;:13;:15::i;:::-;:23;85790:1061;;85847:13;;85840:4;:20;85836:1015;;;85885:14;85902:17;:23;85920:4;85902:23;;;;;;;;;;;;85885:40;;86019:1;74965:8;85991:6;:24;:29;85987:845;;;86656:113;86673:1;86663:6;:11;86656:113;;;86716:17;:25;86734:6;;;;;;;86716:25;;;;;;;;;;;;86707:34;;86656:113;;;86802:6;86795:13;;;;;;85987:845;85836:1015;;85790:1061;86879:31;;;;;;;;;;;;;;85643:1275;;;;:::o;17862:191::-;17936:16;17955:6;;;;;;;;;;;17936:25;;17981:8;17972:6;;:17;;;;;;;;;;;;;;;;;;18036:8;18005:40;;18026:8;18005:40;;;;;;;;;;;;17862:191;;:::o;90136:308::-;90247:19;:17;:19::i;:::-;90235:31;;:8;:31;;;90231:61;;;90275:17;;;;;;;;;;;;;;90231:61;90357:8;90305:18;:39;90324:19;:17;:19::i;:::-;90305:39;;;;;;;;;;;;;;;:49;90345:8;90305:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;90417:8;90381:55;;90396:19;:17;:19::i;:::-;90381:55;;;90427:8;90381:55;;;;;;:::i;:::-;;;;;;;;90136:308;;:::o;96981:399::-;97148:31;97161:4;97167:2;97171:7;97148:12;:31::i;:::-;97212:1;97194:2;:14;;;:19;97190:183;;97233:56;97264:4;97270:2;97274:7;97283:5;97233:30;:56::i;:::-;97228:145;;97317:40;;;;;;;;;;;;;;97228:145;97190:183;96981:399;;;;:::o;12464:723::-;12520:13;12750:1;12741:5;:10;12737:53;;;12768:10;;;;;;;;;;;;;;;;;;;;;12737:53;12800:12;12815:5;12800:20;;12831:14;12856:78;12871:1;12863:4;:9;12856:78;;12889:8;;;;;:::i;:::-;;;;12920:2;12912:10;;;;;:::i;:::-;;;12856:78;;;12944:19;12976:6;12966:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12944:39;;12994:154;13010:1;13001:5;:10;12994:154;;13038:1;13028:11;;;;;:::i;:::-;;;13105:2;13097:5;:10;;;;:::i;:::-;13084:2;:24;;;;:::i;:::-;13071:39;;13054:6;13061;13054:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;13134:2;13125:11;;;;;:::i;:::-;;;12994:154;;;13172:6;13158:21;;;;;12464:723;;;;:::o;30612:157::-;30697:4;30736:25;30721:40;;;:11;:40;;;;30714:47;;30612:157;;;:::o;112789:105::-;112849:7;112876:10;112869:17;;112789:105;:::o;92186:479::-;92288:27;92317:23;92358:38;92399:15;:24;92415:7;92399:24;;;;;;;;;;;92358:65;;92570:18;92547:41;;92627:19;92621:26;92602:45;;92532:126;;;;:::o;91414:659::-;91563:11;91728:16;91721:5;91717:28;91708:37;;91888:16;91877:9;91873:32;91860:45;;92038:15;92027:9;92024:30;92016:5;92005:9;92002:20;91999:56;91989:66;;91596:470;;;;;:::o;98042:159::-;;;;;:::o;112098:311::-;112233:7;112253:16;75369:3;112279:19;:41;;112253:68;;75369:3;112347:31;112358:4;112364:2;112368:9;112347:10;:31::i;:::-;112339:40;;:62;;112332:69;;;112098:311;;;;;:::o;87466:450::-;87546:14;87714:16;87707:5;87703:28;87694:37;;87891:5;87877:11;87852:23;87848:41;87845:52;87838:5;87835:63;87825:73;;87582:327;;;;:::o;98866:158::-;;;;;:::o;105848:689::-;105979:19;105985:2;105989:8;105979:5;:19::i;:::-;106058:1;106040:2;:14;;;:19;106036:483;;106080:11;106094:13;;106080:27;;106126:13;106148:8;106142:3;:14;106126:30;;106175:233;106206:62;106245:1;106249:2;106253:7;;;;;;106262:5;106206:30;:62::i;:::-;106201:167;;106304:40;;;;;;;;;;;;;;106201:167;106403:3;106395:5;:11;106175:233;;106490:3;106473:13;;:20;106469:34;;106495:8;;;106469:34;106036:483;;;105848:689;;;:::o;99464:716::-;99627:4;99673:2;99648:45;;;99694:19;:17;:19::i;:::-;99715:4;99721:7;99730:5;99648:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;99644:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99948:1;99931:6;:13;:18;99927:235;;;99977:40;;;;;;;;;;;;;;99927:235;100120:6;100114:13;100105:6;100101:2;100097:15;100090:38;99644:529;99817:54;;;99807:64;;;:6;:64;;;;99800:71;;;99464:716;;;;;;:::o;111799:147::-;111936:6;111799:147;;;;;:::o;100642:2454::-;100715:20;100738:13;;100715:36;;100778:1;100766:8;:13;100762:44;;;100788:18;;;;;;;;;;;;;;100762:44;100819:61;100849:1;100853:2;100857:12;100871:8;100819:21;:61::i;:::-;101363:1;74327:2;101333:1;:26;;101332:32;101320:8;:45;101294:18;:22;101313:2;101294:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;101642:139;101679:2;101733:33;101756:1;101760:2;101764:1;101733:14;:33::i;:::-;101700:30;101721:8;101700:20;:30::i;:::-;:66;101642:18;:139::i;:::-;101608:17;:31;101626:12;101608:31;;;;;;;;;;;:173;;;;101798:16;101829:11;101858:8;101843:12;:23;101829:37;;102113:16;102109:2;102105:25;102093:37;;102485:12;102445:8;102404:1;102342:25;102283:1;102222;102195:335;102610:1;102596:12;102592:20;102550:346;102651:3;102642:7;102639:16;102550:346;;102869:7;102859:8;102856:1;102829:25;102826:1;102823;102818:59;102704:1;102695:7;102691:15;102680:26;;102550:346;;;102554:77;102941:1;102929:8;:13;102925:45;;;102951:19;;;;;;;;;;;;;;102925:45;103003:3;102987:13;:19;;;;100642:2454;;103028:60;103057:1;103061:2;103065:12;103079:8;103028:20;:60::i;:::-;100642:2454;;;:::o;88018:324::-;88088:14;88321:1;88311:8;88308:15;88282:24;88278:46;88268:56;;88190:145;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1045:5;1076:6;1070:13;1061:22;;1092:30;1116:5;1092:30;:::i;:::-;1051:77;;;;:::o;1134:137::-;1179:5;1217:6;1204:20;1195:29;;1233:32;1259:5;1233:32;:::i;:::-;1185:86;;;;:::o;1277:141::-;1333:5;1364:6;1358:13;1349:22;;1380:32;1406:5;1380:32;:::i;:::-;1339:79;;;;:::o;1437:271::-;1492:5;1541:3;1534:4;1526:6;1522:17;1518:27;1508:2;;1559:1;1556;1549:12;1508:2;1599:6;1586:20;1624:78;1698:3;1690:6;1683:4;1675:6;1671:17;1624:78;:::i;:::-;1615:87;;1498:210;;;;;:::o;1728:273::-;1784:5;1833:3;1826:4;1818:6;1814:17;1810:27;1800:2;;1851:1;1848;1841:12;1800:2;1891:6;1878:20;1916:79;1991:3;1983:6;1976:4;1968:6;1964:17;1916:79;:::i;:::-;1907:88;;1790:211;;;;;:::o;2007:139::-;2053:5;2091:6;2078:20;2069:29;;2107:33;2134:5;2107:33;:::i;:::-;2059:87;;;;:::o;2152:143::-;2209:5;2240:6;2234:13;2225:22;;2256:33;2283:5;2256:33;:::i;:::-;2215:80;;;;:::o;2301:137::-;2346:5;2384:6;2371:20;2362:29;;2400:32;2426:5;2400:32;:::i;:::-;2352:86;;;;:::o;2444:262::-;2503:6;2552:2;2540:9;2531:7;2527:23;2523:32;2520:2;;;2568:1;2565;2558:12;2520:2;2611:1;2636:53;2681:7;2672:6;2661:9;2657:22;2636:53;:::i;:::-;2626:63;;2582:117;2510:196;;;;:::o;2712:407::-;2780:6;2788;2837:2;2825:9;2816:7;2812:23;2808:32;2805:2;;;2853:1;2850;2843:12;2805:2;2896:1;2921:53;2966:7;2957:6;2946:9;2942:22;2921:53;:::i;:::-;2911:63;;2867:117;3023:2;3049:53;3094:7;3085:6;3074:9;3070:22;3049:53;:::i;:::-;3039:63;;2994:118;2795:324;;;;;:::o;3125:552::-;3202:6;3210;3218;3267:2;3255:9;3246:7;3242:23;3238:32;3235:2;;;3283:1;3280;3273:12;3235:2;3326:1;3351:53;3396:7;3387:6;3376:9;3372:22;3351:53;:::i;:::-;3341:63;;3297:117;3453:2;3479:53;3524:7;3515:6;3504:9;3500:22;3479:53;:::i;:::-;3469:63;;3424:118;3581:2;3607:53;3652:7;3643:6;3632:9;3628:22;3607:53;:::i;:::-;3597:63;;3552:118;3225:452;;;;;:::o;3683:809::-;3778:6;3786;3794;3802;3851:3;3839:9;3830:7;3826:23;3822:33;3819:2;;;3868:1;3865;3858:12;3819:2;3911:1;3936:53;3981:7;3972:6;3961:9;3957:22;3936:53;:::i;:::-;3926:63;;3882:117;4038:2;4064:53;4109:7;4100:6;4089:9;4085:22;4064:53;:::i;:::-;4054:63;;4009:118;4166:2;4192:53;4237:7;4228:6;4217:9;4213:22;4192:53;:::i;:::-;4182:63;;4137:118;4322:2;4311:9;4307:18;4294:32;4353:18;4345:6;4342:30;4339:2;;;4385:1;4382;4375:12;4339:2;4413:62;4467:7;4458:6;4447:9;4443:22;4413:62;:::i;:::-;4403:72;;4265:220;3809:683;;;;;;;:::o;4498:401::-;4563:6;4571;4620:2;4608:9;4599:7;4595:23;4591:32;4588:2;;;4636:1;4633;4626:12;4588:2;4679:1;4704:53;4749:7;4740:6;4729:9;4725:22;4704:53;:::i;:::-;4694:63;;4650:117;4806:2;4832:50;4874:7;4865:6;4854:9;4850:22;4832:50;:::i;:::-;4822:60;;4777:115;4578:321;;;;;:::o;4905:407::-;4973:6;4981;5030:2;5018:9;5009:7;5005:23;5001:32;4998:2;;;5046:1;5043;5036:12;4998:2;5089:1;5114:53;5159:7;5150:6;5139:9;5135:22;5114:53;:::i;:::-;5104:63;;5060:117;5216:2;5242:53;5287:7;5278:6;5267:9;5263:22;5242:53;:::i;:::-;5232:63;;5187:118;4988:324;;;;;:::o;5318:405::-;5385:6;5393;5442:2;5430:9;5421:7;5417:23;5413:32;5410:2;;;5458:1;5455;5448:12;5410:2;5501:1;5526:53;5571:7;5562:6;5551:9;5547:22;5526:53;:::i;:::-;5516:63;;5472:117;5628:2;5654:52;5698:7;5689:6;5678:9;5674:22;5654:52;:::i;:::-;5644:62;;5599:117;5400:323;;;;;:::o;5729:278::-;5796:6;5845:2;5833:9;5824:7;5820:23;5816:32;5813:2;;;5861:1;5858;5851:12;5813:2;5904:1;5929:61;5982:7;5973:6;5962:9;5958:22;5929:61;:::i;:::-;5919:71;;5875:125;5803:204;;;;:::o;6013:260::-;6071:6;6120:2;6108:9;6099:7;6095:23;6091:32;6088:2;;;6136:1;6133;6126:12;6088:2;6179:1;6204:52;6248:7;6239:6;6228:9;6224:22;6204:52;:::i;:::-;6194:62;;6150:116;6078:195;;;;:::o;6279:282::-;6348:6;6397:2;6385:9;6376:7;6372:23;6368:32;6365:2;;;6413:1;6410;6403:12;6365:2;6456:1;6481:63;6536:7;6527:6;6516:9;6512:22;6481:63;:::i;:::-;6471:73;;6427:127;6355:206;;;;:::o;6567:375::-;6636:6;6685:2;6673:9;6664:7;6660:23;6656:32;6653:2;;;6701:1;6698;6691:12;6653:2;6772:1;6761:9;6757:17;6744:31;6802:18;6794:6;6791:30;6788:2;;;6834:1;6831;6824:12;6788:2;6862:63;6917:7;6908:6;6897:9;6893:22;6862:63;:::i;:::-;6852:73;;6715:220;6643:299;;;;:::o;6948:262::-;7007:6;7056:2;7044:9;7035:7;7031:23;7027:32;7024:2;;;7072:1;7069;7062:12;7024:2;7115:1;7140:53;7185:7;7176:6;7165:9;7161:22;7140:53;:::i;:::-;7130:63;;7086:117;7014:196;;;;:::o;7216:284::-;7286:6;7335:2;7323:9;7314:7;7310:23;7306:32;7303:2;;;7351:1;7348;7341:12;7303:2;7394:1;7419:64;7475:7;7466:6;7455:9;7451:22;7419:64;:::i;:::-;7409:74;;7365:128;7293:207;;;;:::o;7506:407::-;7574:6;7582;7631:2;7619:9;7610:7;7606:23;7602:32;7599:2;;;7647:1;7644;7637:12;7599:2;7690:1;7715:53;7760:7;7751:6;7740:9;7736:22;7715:53;:::i;:::-;7705:63;;7661:117;7817:2;7843:53;7888:7;7879:6;7868:9;7864:22;7843:53;:::i;:::-;7833:63;;7788:118;7589:324;;;;;:::o;7919:118::-;8006:24;8024:5;8006:24;:::i;:::-;8001:3;7994:37;7984:53;;:::o;8043:109::-;8124:21;8139:5;8124:21;:::i;:::-;8119:3;8112:34;8102:50;;:::o;8158:360::-;8244:3;8272:38;8304:5;8272:38;:::i;:::-;8326:70;8389:6;8384:3;8326:70;:::i;:::-;8319:77;;8405:52;8450:6;8445:3;8438:4;8431:5;8427:16;8405:52;:::i;:::-;8482:29;8504:6;8482:29;:::i;:::-;8477:3;8473:39;8466:46;;8248:270;;;;;:::o;8524:181::-;8636:62;8692:5;8636:62;:::i;:::-;8631:3;8624:75;8614:91;;:::o;8711:193::-;8829:68;8891:5;8829:68;:::i;:::-;8824:3;8817:81;8807:97;;:::o;8910:364::-;8998:3;9026:39;9059:5;9026:39;:::i;:::-;9081:71;9145:6;9140:3;9081:71;:::i;:::-;9074:78;;9161:52;9206:6;9201:3;9194:4;9187:5;9183:16;9161:52;:::i;:::-;9238:29;9260:6;9238:29;:::i;:::-;9233:3;9229:39;9222:46;;9002:272;;;;;:::o;9280:377::-;9386:3;9414:39;9447:5;9414:39;:::i;:::-;9469:89;9551:6;9546:3;9469:89;:::i;:::-;9462:96;;9567:52;9612:6;9607:3;9600:4;9593:5;9589:16;9567:52;:::i;:::-;9644:6;9639:3;9635:16;9628:23;;9390:267;;;;;:::o;9687:845::-;9790:3;9827:5;9821:12;9856:36;9882:9;9856:36;:::i;:::-;9908:89;9990:6;9985:3;9908:89;:::i;:::-;9901:96;;10028:1;10017:9;10013:17;10044:1;10039:137;;;;10190:1;10185:341;;;;10006:520;;10039:137;10123:4;10119:9;10108;10104:25;10099:3;10092:38;10159:6;10154:3;10150:16;10143:23;;10039:137;;10185:341;10252:38;10284:5;10252:38;:::i;:::-;10312:1;10326:154;10340:6;10337:1;10334:13;10326:154;;;10414:7;10408:14;10404:1;10399:3;10395:11;10388:35;10464:1;10455:7;10451:15;10440:26;;10362:4;10359:1;10355:12;10350:17;;10326:154;;;10509:6;10504:3;10500:16;10493:23;;10192:334;;10006:520;;9794:738;;;;;;:::o;10538:366::-;10680:3;10701:67;10765:2;10760:3;10701:67;:::i;:::-;10694:74;;10777:93;10866:3;10777:93;:::i;:::-;10895:2;10890:3;10886:12;10879:19;;10684:220;;;:::o;10910:366::-;11052:3;11073:67;11137:2;11132:3;11073:67;:::i;:::-;11066:74;;11149:93;11238:3;11149:93;:::i;:::-;11267:2;11262:3;11258:12;11251:19;;11056:220;;;:::o;11282:366::-;11424:3;11445:67;11509:2;11504:3;11445:67;:::i;:::-;11438:74;;11521:93;11610:3;11521:93;:::i;:::-;11639:2;11634:3;11630:12;11623:19;;11428:220;;;:::o;11654:400::-;11814:3;11835:84;11917:1;11912:3;11835:84;:::i;:::-;11828:91;;11928:93;12017:3;11928:93;:::i;:::-;12046:1;12041:3;12037:11;12030:18;;11818:236;;;:::o;12060:366::-;12202:3;12223:67;12287:2;12282:3;12223:67;:::i;:::-;12216:74;;12299:93;12388:3;12299:93;:::i;:::-;12417:2;12412:3;12408:12;12401:19;;12206:220;;;:::o;12432:366::-;12574:3;12595:67;12659:2;12654:3;12595:67;:::i;:::-;12588:74;;12671:93;12760:3;12671:93;:::i;:::-;12789:2;12784:3;12780:12;12773:19;;12578:220;;;:::o;12804:366::-;12946:3;12967:67;13031:2;13026:3;12967:67;:::i;:::-;12960:74;;13043:93;13132:3;13043:93;:::i;:::-;13161:2;13156:3;13152:12;13145:19;;12950:220;;;:::o;13176:398::-;13335:3;13356:83;13437:1;13432:3;13356:83;:::i;:::-;13349:90;;13448:93;13537:3;13448:93;:::i;:::-;13566:1;13561:3;13557:11;13550:18;;13339:235;;;:::o;13580:366::-;13722:3;13743:67;13807:2;13802:3;13743:67;:::i;:::-;13736:74;;13819:93;13908:3;13819:93;:::i;:::-;13937:2;13932:3;13928:12;13921:19;;13726:220;;;:::o;13952:366::-;14094:3;14115:67;14179:2;14174:3;14115:67;:::i;:::-;14108:74;;14191:93;14280:3;14191:93;:::i;:::-;14309:2;14304:3;14300:12;14293:19;;14098:220;;;:::o;14324:366::-;14466:3;14487:67;14551:2;14546:3;14487:67;:::i;:::-;14480:74;;14563:93;14652:3;14563:93;:::i;:::-;14681:2;14676:3;14672:12;14665:19;;14470:220;;;:::o;14696:118::-;14783:24;14801:5;14783:24;:::i;:::-;14778:3;14771:37;14761:53;;:::o;14820:695::-;15098:3;15120:92;15208:3;15199:6;15120:92;:::i;:::-;15113:99;;15229:95;15320:3;15311:6;15229:95;:::i;:::-;15222:102;;15341:148;15485:3;15341:148;:::i;:::-;15334:155;;15506:3;15499:10;;15102:413;;;;;:::o;15521:379::-;15705:3;15727:147;15870:3;15727:147;:::i;:::-;15720:154;;15891:3;15884:10;;15709:191;;;:::o;15906:222::-;15999:4;16037:2;16026:9;16022:18;16014:26;;16050:71;16118:1;16107:9;16103:17;16094:6;16050:71;:::i;:::-;16004:124;;;;:::o;16134:332::-;16255:4;16293:2;16282:9;16278:18;16270:26;;16306:71;16374:1;16363:9;16359:17;16350:6;16306:71;:::i;:::-;16387:72;16455:2;16444:9;16440:18;16431:6;16387:72;:::i;:::-;16260:206;;;;;:::o;16472:640::-;16667:4;16705:3;16694:9;16690:19;16682:27;;16719:71;16787:1;16776:9;16772:17;16763:6;16719:71;:::i;:::-;16800:72;16868:2;16857:9;16853:18;16844:6;16800:72;:::i;:::-;16882;16950:2;16939:9;16935:18;16926:6;16882:72;:::i;:::-;17001:9;16995:4;16991:20;16986:2;16975:9;16971:18;16964:48;17029:76;17100:4;17091:6;17029:76;:::i;:::-;17021:84;;16672:440;;;;;;;:::o;17118:332::-;17239:4;17277:2;17266:9;17262:18;17254:26;;17290:71;17358:1;17347:9;17343:17;17334:6;17290:71;:::i;:::-;17371:72;17439:2;17428:9;17424:18;17415:6;17371:72;:::i;:::-;17244:206;;;;;:::o;17456:210::-;17543:4;17581:2;17570:9;17566:18;17558:26;;17594:65;17656:1;17645:9;17641:17;17632:6;17594:65;:::i;:::-;17548:118;;;;:::o;17672:272::-;17790:4;17828:2;17817:9;17813:18;17805:26;;17841:96;17934:1;17923:9;17919:17;17910:6;17841:96;:::i;:::-;17795:149;;;;:::o;17950:284::-;18074:4;18112:2;18101:9;18097:18;18089:26;;18125:102;18224:1;18213:9;18209:17;18200:6;18125:102;:::i;:::-;18079:155;;;;:::o;18240:313::-;18353:4;18391:2;18380:9;18376:18;18368:26;;18440:9;18434:4;18430:20;18426:1;18415:9;18411:17;18404:47;18468:78;18541:4;18532:6;18468:78;:::i;:::-;18460:86;;18358:195;;;;:::o;18559:419::-;18725:4;18763:2;18752:9;18748:18;18740:26;;18812:9;18806:4;18802:20;18798:1;18787:9;18783:17;18776:47;18840:131;18966:4;18840:131;:::i;:::-;18832:139;;18730:248;;;:::o;18984:419::-;19150:4;19188:2;19177:9;19173:18;19165:26;;19237:9;19231:4;19227:20;19223:1;19212:9;19208:17;19201:47;19265:131;19391:4;19265:131;:::i;:::-;19257:139;;19155:248;;;:::o;19409:419::-;19575:4;19613:2;19602:9;19598:18;19590:26;;19662:9;19656:4;19652:20;19648:1;19637:9;19633:17;19626:47;19690:131;19816:4;19690:131;:::i;:::-;19682:139;;19580:248;;;:::o;19834:419::-;20000:4;20038:2;20027:9;20023:18;20015:26;;20087:9;20081:4;20077:20;20073:1;20062:9;20058:17;20051:47;20115:131;20241:4;20115:131;:::i;:::-;20107:139;;20005:248;;;:::o;20259:419::-;20425:4;20463:2;20452:9;20448:18;20440:26;;20512:9;20506:4;20502:20;20498:1;20487:9;20483:17;20476:47;20540:131;20666:4;20540:131;:::i;:::-;20532:139;;20430:248;;;:::o;20684:419::-;20850:4;20888:2;20877:9;20873:18;20865:26;;20937:9;20931:4;20927:20;20923:1;20912:9;20908:17;20901:47;20965:131;21091:4;20965:131;:::i;:::-;20957:139;;20855:248;;;:::o;21109:419::-;21275:4;21313:2;21302:9;21298:18;21290:26;;21362:9;21356:4;21352:20;21348:1;21337:9;21333:17;21326:47;21390:131;21516:4;21390:131;:::i;:::-;21382:139;;21280:248;;;:::o;21534:419::-;21700:4;21738:2;21727:9;21723:18;21715:26;;21787:9;21781:4;21777:20;21773:1;21762:9;21758:17;21751:47;21815:131;21941:4;21815:131;:::i;:::-;21807:139;;21705:248;;;:::o;21959:419::-;22125:4;22163:2;22152:9;22148:18;22140:26;;22212:9;22206:4;22202:20;22198:1;22187:9;22183:17;22176:47;22240:131;22366:4;22240:131;:::i;:::-;22232:139;;22130:248;;;:::o;22384:222::-;22477:4;22515:2;22504:9;22500:18;22492:26;;22528:71;22596:1;22585:9;22581:17;22572:6;22528:71;:::i;:::-;22482:124;;;;:::o;22612:129::-;22646:6;22673:20;;:::i;:::-;22663:30;;22702:33;22730:4;22722:6;22702:33;:::i;:::-;22653:88;;;:::o;22747:75::-;22780:6;22813:2;22807:9;22797:19;;22787:35;:::o;22828:307::-;22889:4;22979:18;22971:6;22968:30;22965:2;;;23001:18;;:::i;:::-;22965:2;23039:29;23061:6;23039:29;:::i;:::-;23031:37;;23123:4;23117;23113:15;23105:23;;22894:241;;;:::o;23141:308::-;23203:4;23293:18;23285:6;23282:30;23279:2;;;23315:18;;:::i;:::-;23279:2;23353:29;23375:6;23353:29;:::i;:::-;23345:37;;23437:4;23431;23427:15;23419:23;;23208:241;;;:::o;23455:141::-;23504:4;23527:3;23519:11;;23550:3;23547:1;23540:14;23584:4;23581:1;23571:18;23563:26;;23509:87;;;:::o;23602:98::-;23653:6;23687:5;23681:12;23671:22;;23660:40;;;:::o;23706:99::-;23758:6;23792:5;23786:12;23776:22;;23765:40;;;:::o;23811:168::-;23894:11;23928:6;23923:3;23916:19;23968:4;23963:3;23959:14;23944:29;;23906:73;;;;:::o;23985:147::-;24086:11;24123:3;24108:18;;24098:34;;;;:::o;24138:169::-;24222:11;24256:6;24251:3;24244:19;24296:4;24291:3;24287:14;24272:29;;24234:73;;;;:::o;24313:148::-;24415:11;24452:3;24437:18;;24427:34;;;;:::o;24467:305::-;24507:3;24526:20;24544:1;24526:20;:::i;:::-;24521:25;;24560:20;24578:1;24560:20;:::i;:::-;24555:25;;24714:1;24646:66;24642:74;24639:1;24636:81;24633:2;;;24720:18;;:::i;:::-;24633:2;24764:1;24761;24757:9;24750:16;;24511:261;;;;:::o;24778:185::-;24818:1;24835:20;24853:1;24835:20;:::i;:::-;24830:25;;24869:20;24887:1;24869:20;:::i;:::-;24864:25;;24908:1;24898:2;;24913:18;;:::i;:::-;24898:2;24955:1;24952;24948:9;24943:14;;24820:143;;;;:::o;24969:348::-;25009:7;25032:20;25050:1;25032:20;:::i;:::-;25027:25;;25066:20;25084:1;25066:20;:::i;:::-;25061:25;;25254:1;25186:66;25182:74;25179:1;25176:81;25171:1;25164:9;25157:17;25153:105;25150:2;;;25261:18;;:::i;:::-;25150:2;25309:1;25306;25302:9;25291:20;;25017:300;;;;:::o;25323:191::-;25363:4;25383:20;25401:1;25383:20;:::i;:::-;25378:25;;25417:20;25435:1;25417:20;:::i;:::-;25412:25;;25456:1;25453;25450:8;25447:2;;;25461:18;;:::i;:::-;25447:2;25506:1;25503;25499:9;25491:17;;25368:146;;;;:::o;25520:96::-;25557:7;25586:24;25604:5;25586:24;:::i;:::-;25575:35;;25565:51;;;:::o;25622:90::-;25656:7;25699:5;25692:13;25685:21;25674:32;;25664:48;;;:::o;25718:149::-;25754:7;25794:66;25787:5;25783:78;25772:89;;25762:105;;;:::o;25873:126::-;25910:7;25950:42;25943:5;25939:54;25928:65;;25918:81;;;:::o;26005:77::-;26042:7;26071:5;26060:16;;26050:32;;;:::o;26088:109::-;26124:7;26164:26;26157:5;26153:38;26142:49;;26132:65;;;:::o;26203:176::-;26278:9;26311:62;26367:5;26311:62;:::i;:::-;26298:75;;26288:91;;;:::o;26385:138::-;26460:9;26493:24;26511:5;26493:24;:::i;:::-;26480:37;;26470:53;;;:::o;26529:188::-;26610:9;26643:68;26705:5;26643:68;:::i;:::-;26630:81;;26620:97;;;:::o;26723:144::-;26804:9;26837:24;26855:5;26837:24;:::i;:::-;26824:37;;26814:53;;;:::o;26873:154::-;26957:6;26952:3;26947;26934:30;27019:1;27010:6;27005:3;27001:16;26994:27;26924:103;;;:::o;27033:307::-;27101:1;27111:113;27125:6;27122:1;27119:13;27111:113;;;27210:1;27205:3;27201:11;27195:18;27191:1;27186:3;27182:11;27175:39;27147:2;27144:1;27140:10;27135:15;;27111:113;;;27242:6;27239:1;27236:13;27233:2;;;27322:1;27313:6;27308:3;27304:16;27297:27;27233:2;27082:258;;;;:::o;27346:320::-;27390:6;27427:1;27421:4;27417:12;27407:22;;27474:1;27468:4;27464:12;27495:18;27485:2;;27551:4;27543:6;27539:17;27529:27;;27485:2;27613;27605:6;27602:14;27582:18;27579:38;27576:2;;;27632:18;;:::i;:::-;27576:2;27397:269;;;;:::o;27672:281::-;27755:27;27777:4;27755:27;:::i;:::-;27747:6;27743:40;27885:6;27873:10;27870:22;27849:18;27837:10;27834:34;27831:62;27828:2;;;27896:18;;:::i;:::-;27828:2;27936:10;27932:2;27925:22;27715:238;;;:::o;27959:233::-;27998:3;28021:24;28039:5;28021:24;:::i;:::-;28012:33;;28067:66;28060:5;28057:77;28054:2;;;28137:18;;:::i;:::-;28054:2;28184:1;28177:5;28173:13;28166:20;;28002:190;;;:::o;28198:176::-;28230:1;28247:20;28265:1;28247:20;:::i;:::-;28242:25;;28281:20;28299:1;28281:20;:::i;:::-;28276:25;;28320:1;28310:2;;28325:18;;:::i;:::-;28310:2;28366:1;28363;28359:9;28354:14;;28232:142;;;;:::o;28380:180::-;28428:77;28425:1;28418:88;28525:4;28522:1;28515:15;28549:4;28546:1;28539:15;28566:180;28614:77;28611:1;28604:88;28711:4;28708:1;28701:15;28735:4;28732:1;28725:15;28752:180;28800:77;28797:1;28790:88;28897:4;28894:1;28887:15;28921:4;28918:1;28911:15;28938:180;28986:77;28983:1;28976:88;29083:4;29080:1;29073:15;29107:4;29104:1;29097:15;29124:102;29165:6;29216:2;29212:7;29207:2;29200:5;29196:14;29192:28;29182:38;;29172:54;;;:::o;29232:225::-;29372:34;29368:1;29360:6;29356:14;29349:58;29441:8;29436:2;29428:6;29424:15;29417:33;29338:119;:::o;29463:176::-;29603:28;29599:1;29591:6;29587:14;29580:52;29569:70;:::o;29645:165::-;29785:17;29781:1;29773:6;29769:14;29762:41;29751:59;:::o;29816:155::-;29956:7;29952:1;29944:6;29940:14;29933:31;29922:49;:::o;29977:182::-;30117:34;30113:1;30105:6;30101:14;30094:58;30083:76;:::o;30165:234::-;30305:34;30301:1;30293:6;30289:14;30282:58;30374:17;30369:2;30361:6;30357:15;30350:42;30271:128;:::o;30405:167::-;30545:19;30541:1;30533:6;30529:14;30522:43;30511:61;:::o;30578:114::-;30684:8;:::o;30698:229::-;30838:34;30834:1;30826:6;30822:14;30815:58;30907:12;30902:2;30894:6;30890:15;30883:37;30804:123;:::o;30933:165::-;31073:17;31069:1;31061:6;31057:14;31050:41;31039:59;:::o;31104:175::-;31244:27;31240:1;31232:6;31228:14;31221:51;31210:69;:::o;31285:122::-;31358:24;31376:5;31358:24;:::i;:::-;31351:5;31348:35;31338:2;;31397:1;31394;31387:12;31338:2;31328:79;:::o;31413:116::-;31483:21;31498:5;31483:21;:::i;:::-;31476:5;31473:32;31463:2;;31519:1;31516;31509:12;31463:2;31453:76;:::o;31535:120::-;31607:23;31624:5;31607:23;:::i;:::-;31600:5;31597:34;31587:2;;31645:1;31642;31635:12;31587:2;31577:78;:::o;31661:122::-;31734:24;31752:5;31734:24;:::i;:::-;31727:5;31724:35;31714:2;;31773:1;31770;31763:12;31714:2;31704:79;:::o;31789:120::-;31861:23;31878:5;31861:23;:::i;:::-;31854:5;31851:34;31841:2;;31899:1;31896;31889:12;31841:2;31831:78;:::o
Swarm Source
ipfs://e7891501aafe835b1ae7f43a39a55b0c34794c339bb40149a71771cebcdff366
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.