Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 433 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 21400657 | 14 days ago | IN | 0 ETH | 0.00056963 | ||||
Set Approval For... | 21399387 | 14 days ago | IN | 0 ETH | 0.00054244 | ||||
Set Approval For... | 21379398 | 17 days ago | IN | 0 ETH | 0.00098017 | ||||
Set Approval For... | 21374818 | 18 days ago | IN | 0 ETH | 0.00151952 | ||||
Set Approval For... | 21286372 | 30 days ago | IN | 0 ETH | 0.00075751 | ||||
Safe Transfer Fr... | 21175453 | 45 days ago | IN | 0 ETH | 0.00258333 | ||||
Set Approval For... | 21088815 | 57 days ago | IN | 0 ETH | 0.00034802 | ||||
Set Approval For... | 21053124 | 62 days ago | IN | 0 ETH | 0.00026818 | ||||
Safe Transfer Fr... | 20964367 | 75 days ago | IN | 0 ETH | 0.00333012 | ||||
Set Approval For... | 20939957 | 78 days ago | IN | 0 ETH | 0.00083517 | ||||
Safe Transfer Fr... | 20861130 | 89 days ago | IN | 0 ETH | 0.00023242 | ||||
Set Approval For... | 20810203 | 96 days ago | IN | 0 ETH | 0.00037969 | ||||
Set Approval For... | 20761835 | 103 days ago | IN | 0 ETH | 0.0006133 | ||||
Safe Transfer Fr... | 20624156 | 122 days ago | IN | 0 ETH | 0.00010059 | ||||
Set Approval For... | 20524300 | 136 days ago | IN | 0 ETH | 0.00010773 | ||||
Set Approval For... | 20295835 | 168 days ago | IN | 0 ETH | 0.00010845 | ||||
Set Approval For... | 20118399 | 193 days ago | IN | 0 ETH | 0.0004834 | ||||
Set Approval For... | 19875333 | 227 days ago | IN | 0 ETH | 0.00019431 | ||||
Safe Transfer Fr... | 19692806 | 252 days ago | IN | 0 ETH | 0.00067921 | ||||
Set Approval For... | 19515442 | 277 days ago | IN | 0 ETH | 0.00117553 | ||||
Set Approval For... | 19230960 | 317 days ago | IN | 0 ETH | 0.0012428 | ||||
Set Approval For... | 19199318 | 322 days ago | IN | 0 ETH | 0.00198801 | ||||
Set Approval For... | 19019545 | 347 days ago | IN | 0 ETH | 0.00179372 | ||||
Safe Transfer Fr... | 18997826 | 350 days ago | IN | 0 ETH | 0.00145364 | ||||
Set Approval For... | 18987981 | 351 days ago | IN | 0 ETH | 0.00102168 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
NFTCOLORPASS
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-01-13 */ //SPDX-License-Identifier: MIT 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); } } } } // 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); } // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } pragma solidity ^0.8.7; abstract contract MerkleProof { bytes32 internal _wlMerkleRoot; // Free Mint function _setwlMerkleRoot(bytes32 merkleRoot_) internal virtual { _wlMerkleRoot = merkleRoot_; } function isWhitelisted(address address_, uint256 wlCount, bytes32[] memory proof_) public view returns (bool) { bytes32 _leaf = keccak256(abi.encodePacked(address_, wlCount)); for (uint256 i = 0; i < proof_.length; i++) { _leaf = _leaf < proof_[i] ? keccak256(abi.encodePacked(_leaf, proof_[i])) : keccak256(abi.encodePacked(proof_[i], _leaf)); } return _leaf == _wlMerkleRoot; } } // OpenZeppelin Contracts (last updated v4.7.0) (utils/Base64.sol) pragma solidity ^0.8.0; /** * @dev Provides a set of functions to operate with Base64 strings. * * _Available since v4.5._ */ library Base64 { /** * @dev Base64 Encoding/Decoding Table */ string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; /** * @dev Converts a `bytes` to its Bytes64 `string` representation. */ function encode(bytes memory data) internal pure returns (string memory) { /** * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol */ if (data.length == 0) return ""; // Loads the table into memory string memory table = _TABLE; // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter // and split into 4 numbers of 6 bits. // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up // - `data.length + 2` -> Round up // - `/ 3` -> Number of 3-bytes chunks // - `4 *` -> 4 characters for each chunk string memory result = new string(4 * ((data.length + 2) / 3)); /// @solidity memory-safe-assembly assembly { // Prepare the lookup table (skip the first "length" byte) let tablePtr := add(table, 1) // Prepare result pointer, jump over length let resultPtr := add(result, 32) // Run over the input, 3 bytes at a time for { let dataPtr := data let endPtr := add(data, mload(data)) } lt(dataPtr, endPtr) { } { // Advance 3 bytes dataPtr := add(dataPtr, 3) let input := mload(dataPtr) // To write each character, shift the 3 bytes (18 bits) chunk // 4 times in blocks of 6 bits for each character (18, 12, 6, 0) // and apply logical AND with 0x3F which is the number of // the previous character in the ASCII table prior to the Base64 Table // The result is then added to the table to get the character to write, // and finally write it in the result pointer but with a left shift // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F)))) resultPtr := add(resultPtr, 1) // Advance mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F)))) resultPtr := add(resultPtr, 1) // Advance mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F)))) resultPtr := add(resultPtr, 1) // Advance mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F)))) resultPtr := add(resultPtr, 1) // Advance } // When data `bytes` is not exactly 3 bytes long // it is padded with `=` characters at the end switch mod(mload(data), 3) case 1 { mstore8(sub(resultPtr, 1), 0x3d) mstore8(sub(resultPtr, 2), 0x3d) } case 2 { mstore8(sub(resultPtr, 1), 0x3d) } } return result; } } // 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); } // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // 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); } // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A is IERC721, IERC721Metadata { /** * 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(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * 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(); // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); } // 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; } } // 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); } // 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]; } } // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // 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; } } // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721A { using Address for address; using Strings for uint256; // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner) if(!isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract()) if(!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOperator`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity ^0.8.9; abstract contract Operable is Context { mapping(address => bool) _operators; modifier onlyOperator() { _checkOperatorRole(_msgSender()); _; } function isOperator(address _operator) public view returns (bool) { return _operators[_operator]; } function _grantOperatorRole(address _candidate) internal { require( !_operators[_candidate], string( abi.encodePacked( "account ", Strings.toHexString(uint160(_msgSender()), 20), " is already has an operator role" ) ) ); _operators[_candidate] = true; } function _revokeOperatorRole(address _candidate) internal { _checkOperatorRole(_candidate); delete _operators[_candidate]; } function _checkOperatorRole(address _operator) internal view { require( _operators[_operator], string( abi.encodePacked( "account ", Strings.toHexString(uint160(_msgSender()), 20), " is not an operator" ) ) ); } } pragma solidity ^0.8.13; 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); } pragma solidity ^0.8.13; /** * @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); bool public operatorFilteringEnabled = true; 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 { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0 && operatorFilteringEnabled) { // 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) { _; return; } if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), msg.sender)) { revert OperatorNotAllowed(msg.sender); } } _; } modifier onlyAllowedOperatorApproval(address operator) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0 && operatorFilteringEnabled) { if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } _; } } pragma solidity ^0.8.13; /** * @title DefaultOperatorFilterer * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription. */ abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} } pragma solidity ^0.8.7; /* ╭━╮╱╭┳━━━┳━━━━┳━━━┳━━━┳╮╱╱╭━━━┳━━━╮╭━━━┳━━━┳━━━┳━━━╮ ┃┃╰╮┃┃╭━━┫╭╮╭╮┃╭━╮┃╭━╮┃┃╱╱┃╭━╮┃╭━╮┃┃╭━╮┃╭━╮┃╭━╮┃╭━╮┃ ┃╭╮╰╯┃╰━━╋╯┃┃╰┫┃╱╰┫┃╱┃┃┃╱╱┃┃╱┃┃╰━╯┃┃╰━╯┃┃╱┃┃╰━━┫╰━━╮ ┃┃╰╮┃┃╭━━╯╱┃┃╱┃┃╱╭┫┃╱┃┃┃╱╭┫┃╱┃┃╭╮╭╯┃╭━━┫╰━╯┣━━╮┣━━╮┃ ┃┃╱┃┃┃┃╱╱╱╱┃┃╱┃╰━╯┃╰━╯┃╰━╯┃╰━╯┃┃┃╰╮┃┃╱╱┃╭━╮┃╰━╯┃╰━╯┃ ╰╯╱╰━┻╯╱╱╱╱╰╯╱╰━━━┻━━━┻━━━┻━━━┻╯╰━╯╰╯╱╱╰╯╱╰┻━━━┻━━━╯ */ contract NFTCOLORPASS is Ownable, ERC721A, ReentrancyGuard, MerkleProof, ERC2981, DefaultOperatorFilterer, Operable { //Project Settings uint256 public psMintPrice = 0.2 ether; uint256 public maxSupply = 500; address payable internal _withdrawWallet; uint256 public maxMintsPerPS = 1; uint256 public maxMintsPerPSMint = 1; //URI string internal hiddenURI; string internal _baseTokenURI; string public _baseExtension = ".json"; //flags bool public isWlSaleEnabled; bool public isPublicSaleEnabled; bool public revealed = false; address public deployer; //mint records. mapping(address => uint256) internal _wlMinted; mapping(address => uint256) internal _psMinted; constructor ( address _royaltyReceiver, uint96 _royaltyFraction ) ERC721A ("NFTCOLOR PASS","NCP") { deployer = msg.sender; _withdrawWallet = payable(deployer); _grantOperatorRole(msg.sender); _setDefaultRoyalty(_royaltyReceiver,_royaltyFraction); } //start from 1.adjust. function _startTokenId() internal view virtual override returns (uint256) { return 1; } //set Default Royalty._feeNumerator 500 = 5% Royalty function setDefaultRoyalty(address _receiver, uint96 _feeNumerator) external virtual onlyOperator { _setDefaultRoyalty(_receiver, _feeNumerator); } //for ERC2981 function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, ERC2981) returns (bool) { return super.supportsInterface(interfaceId); } //for ERC2981 Opensea function contractURI() external view virtual returns (string memory) { return _formatContractURI(); } //make contractURI function _formatContractURI() internal view returns (string memory) { (address receiver, uint256 royaltyFraction) = royaltyInfo(0,_feeDenominator());//tokenid=0 return string( abi.encodePacked( "data:application/json;base64,", Base64.encode( bytes( abi.encodePacked( '{"seller_fee_basis_points":', Strings.toString(royaltyFraction), ', "fee_recipient":"', Strings.toHexString(uint256(uint160(receiver)), 20), '"}' ) ) ) ) ); } //set owner's wallet.withdraw to this wallet.only owner. function setWithdrawWallet(address _owner) external virtual onlyOperator { _withdrawWallet = payable(_owner); } function setDeployer(address _deployer) external virtual onlyOperator { deployer = _deployer; } //set maxSupply.only owner. function setMaxSupply(uint256 _maxSupply) external virtual onlyOperator { require(totalSupply() <= _maxSupply, "Lower than _currentIndex."); maxSupply = _maxSupply; } function setPsPrice(uint256 newPrice) external virtual onlyOperator { psMintPrice = newPrice; } //set reveal.only owner. function setReveal(bool newRevealStatus) external virtual onlyOperator { revealed = newRevealStatus; } //return _isRevealed() function _isRevealed() internal view virtual returns (bool){ return revealed; } // GET MINTED COUNT. function wlMinted(address _address) external view virtual returns (uint256){ return _wlMinted[_address]; } function psMinted(address _address) external view virtual returns (uint256){ return _psMinted[_address]; } function setPsMaxMints(uint256 _max) external virtual onlyOperator { maxMintsPerPS = _max; } function setMaxMintsPerPSMint(uint256 _max) external virtual onlyOperator { maxMintsPerPSMint = _max; } // SET SALES ENABLE. function setWhitelistSaleEnable(bool bool_) external virtual onlyOperator { isWlSaleEnabled = bool_; } function setPublicSaleEnable(bool bool_) external virtual onlyOperator { isPublicSaleEnabled = bool_; } // SET MERKLE ROOT. function setWlMerkleRoot(bytes32 merkleRoot_) external virtual onlyOperator { _setwlMerkleRoot(merkleRoot_); } //set HiddenBaseURI.only owner. function setHiddenURI(string memory uri_) external virtual onlyOperator { hiddenURI = uri_; } //return _currentIndex function getCurrentIndex() external view virtual returns (uint256){ return _currentIndex; } //set BaseURI at after reveal. only owner. function setBaseURI(string memory uri_) external virtual onlyOperator { _baseTokenURI = uri_; } function setBaseExtension(string memory _newBaseExtension) external onlyOperator { _baseExtension = _newBaseExtension; } //retuen BaseURI.internal. function _currentBaseURI() internal view returns (string memory){ return _baseTokenURI; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), "URI query for nonexistent token"); if(_isRevealed()){ return string(abi.encodePacked(_currentBaseURI(), Strings.toString(_tokenId), _baseExtension)); } return hiddenURI; } //owner mint.transfer to _address.only owner. function ownerMint(uint256 _amount, address _address) external virtual onlyOperator { require((_amount + totalSupply()) <= (maxSupply), "No more NFTs"); _safeMint(_address, _amount); } //WL mint. function whitelistMint(uint256 _amount, uint256 wlcount, bytes32[] memory proof_) external payable virtual nonReentrant { require(isWlSaleEnabled, "whitelistMint is Paused"); require(isWhitelisted(msg.sender, wlcount, proof_), "You are not whitelisted!"); require(wlcount > 0, "You have no WL!"); require(wlcount >= _amount, "whitelistMint: Over max mints per wallet"); require(wlcount >= _wlMinted[msg.sender] + _amount, "You have no whitelistMint left"); require((_amount + totalSupply()) <= (maxSupply), "No more NFTs"); _wlMinted[msg.sender] += _amount; _safeMint(msg.sender, _amount); } //Public mint. function publicMint(uint256 _amount) external payable virtual nonReentrant { require(isPublicSaleEnabled, "publicMint is Paused"); require(maxMintsPerPSMint >= _amount, "publicMint: Over max mints per one time."); require(maxMintsPerPS >= _amount, "publicMint: Over max mints per wallet"); require(maxMintsPerPS >= _psMinted[msg.sender] + _amount, "You have no publicMint left"); require(msg.value == psMintPrice * _amount, "ETH value is not correct"); require((_amount + totalSupply()) <= (maxSupply), "No more NFTs"); _psMinted[msg.sender] += _amount; _safeMint(msg.sender, _amount); } //burn function burn(uint256 tokenId) external virtual { _burn(tokenId, true); } //widraw ETH from this contract.only owner. function withdraw() external payable virtual onlyOperator nonReentrant{ // This will payout the owner 100% of the contract balance. // Do not remove this otherwise you will not be able to withdraw the funds. // ============================================================================= bool os; if(_withdrawWallet != address(0)){//if _withdrawWallet has. (os, ) = payable(_withdrawWallet).call{value: address(this).balance}(""); }else{ (os, ) = payable(owner()).call{value: address(this).balance}(""); } require(os); // ============================================================================= } //return wallet owned tokenids. function walletOfOwner(address _address) external view virtual returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_address); uint256[] memory tokenIds = new uint256[](ownerTokenCount); //search from all tonkenid. so spend high gas values.attention. uint256 tokenindex = 0; for (uint256 i = _startTokenId(); i < _currentIndex; i++) { if(_address == this.tryOwnerOf(i)) tokenIds[tokenindex++] = i; } return tokenIds; } //try catch vaersion ownerOf. support burned tokenid. function tryOwnerOf(uint256 tokenId) external view virtual returns (address) { try this.ownerOf(tokenId) returns (address _address) { return(_address); } catch { return (address(0));//return 0x0 if error. } } /** * @notice Set the state of the OpenSea operator filter * @param value Flag indicating if the operator filter should be applied to transfers and approvals */ function setOperatorFilteringEnabled(bool value) external onlyOperator { operatorFilteringEnabled = value; } 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); } /** @dev Operable Role */ function grantOperatorRole(address _candidate) external onlyOwner { _grantOperatorRole(_candidate); } function revokeOperatorRole(address _candidate) external onlyOwner { _revokeOperatorRole(_candidate); } } //CODE.BY.FRICKLIK
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_royaltyReceiver","type":"address"},{"internalType":"uint96","name":"_royaltyFraction","type":"uint96"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deployer","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"getCurrentIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_candidate","type":"address"}],"name":"grantOperatorRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"}],"name":"isOperator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"},{"internalType":"uint256","name":"wlCount","type":"uint256"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWlSaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerPSMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"psMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"psMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_candidate","type":"address"}],"name":"revokeOperatorRole","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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"setBaseURI","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":"address","name":"_deployer","type":"address"}],"name":"setDeployer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"setHiddenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxMintsPerPSMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setOperatorFilteringEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setPsMaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPsPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setPublicSaleEnable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newRevealStatus","type":"bool"}],"name":"setReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setWhitelistSaleEnable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"setWithdrawWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setWlMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tryOwnerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"wlcount","type":"uint256"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"wlMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
600d805460ff191660019081179091556702c68af0bb140000600f556101f4601055601281905560135560c06040526005608090815264173539b7b760d91b60a0526016906200005090826200073b565b506017805462ff0000191690553480156200006a57600080fd5b5060405162004455380380620044558339810160408190526200008d9162000807565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600d81526020016c4e4654434f4c4f52205041535360981b8152506040518060400160405280600381526020016204e43560ec1b81525062000100620000fa620002d160201b60201c565b620002d5565b60036200010e83826200073b565b5060046200011d82826200073b565b50600180815560095550506daaeb6d7670e522a718067333cd4e3b156200026d578015620001bb57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200019c57600080fd5b505af1158015620001b1573d6000803e3d6000fd5b505050506200026d565b6001600160a01b038216156200020c5760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af29039060440162000181565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200025357600080fd5b505af115801562000268573d6000803e3d6000fd5b505050505b5050601780546301000000338181026301000000600160b81b03199093169290921792839055601180546001600160a01b031916919093046001600160a01b031617909155620002bd9062000325565b620002c98282620003d3565b505062000986565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0381166000908152600e602052604090205460ff161562000363336001600160a01b03166014620004d460201b62001ec01760201c565b60405160200162000375919062000882565b60405160208183030381529060405290620003ae5760405162461bcd60e51b8152600401620003a59190620008db565b60405180910390fd5b506001600160a01b03166000908152600e60205260409020805460ff19166001179055565b6127106001600160601b0382161115620004435760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401620003a5565b6001600160a01b0382166200049b5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401620003a5565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600b55565b60606000620004e583600262000926565b620004f290600262000940565b6001600160401b038111156200050c576200050c62000696565b6040519080825280601f01601f19166020018201604052801562000537576020820181803683370190505b509050600360fc1b8160008151811062000555576200055562000956565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811062000587576200058762000956565b60200101906001600160f81b031916908160001a9053506000620005ad84600262000926565b620005ba90600162000940565b90505b60018111156200063c576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110620005f257620005f262000956565b1a60f81b8282815181106200060b576200060b62000956565b60200101906001600160f81b031916908160001a90535060049490941c9362000634816200096c565b9050620005bd565b5083156200068d5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401620003a5565b90505b92915050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620006c157607f821691505b602082108103620006e257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200073657600081815260208120601f850160051c81016020861015620007115750805b601f850160051c820191505b8181101562000732578281556001016200071d565b5050505b505050565b81516001600160401b0381111562000757576200075762000696565b6200076f81620007688454620006ac565b84620006e8565b602080601f831160018114620007a757600084156200078e5750858301515b600019600386901b1c1916600185901b17855562000732565b600085815260208120601f198616915b82811015620007d857888601518255948401946001909101908401620007b7565b5085821015620007f75787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600080604083850312156200081b57600080fd5b82516001600160a01b03811681146200083357600080fd5b60208401519092506001600160601b03811681146200085157600080fd5b809150509250929050565b60005b83811015620008795781810151838201526020016200085f565b50506000910152565b67030b1b1b7bab73a160c51b815260008251620008a78160088501602087016200085c565b7f20697320616c72656164792068617320616e206f70657261746f7220726f6c656008939091019283015250602801919050565b6020815260008251806020840152620008fc8160408501602087016200085c565b601f01601f19169190910160400192915050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141762000690576200069062000910565b8082018082111562000690576200069062000910565b634e487b7160e01b600052603260045260246000fd5b6000816200097e576200097e62000910565b506000190190565b613abf80620009966000396000f3fe60806040526004361061038c5760003560e01c8063715018a6116101dc578063b88d4fde11610102578063d5f39488116100a0578063e985e9c51161006f578063e985e9c514610a85578063f2fde38b14610aa5578063faf7a82614610ac5578063fb796e6c14610ae557600080fd5b8063d5f3948814610a09578063d78be71c14610a30578063da3ef23f14610a50578063e8a3d48514610a7057600080fd5b8063c4be5b59116100dc578063c4be5b59146109a0578063c87b56dd146109b3578063d52c57e0146109d3578063d5abeb01146109f357600080fd5b8063b88d4fde14610940578063bbaac02f14610960578063c3faf7241461098057600080fd5b80639373f4321161017a578063a22cb46511610149578063a22cb465146108c0578063a355fd29146108e0578063b219f7d714610900578063b7c0b8e81461092057600080fd5b80639373f43214610835578063942958f41461085557806395d89b411461088b57806396214735146108a057600080fd5b8063830b3a64116101b6578063830b3a64146107b75780638ac1e161146107d75780638da5cb5b146107f757806391df908b1461081557600080fd5b8063715018a61461074c57806378a9238014610761578063813779ef1461079757600080fd5b80632a55205a116102c157806342966c681161025f5780636352211e1161022e5780636352211e146106b35780636d70f7ae146106d35780636f8b44b01461070c57806370a082311461072c57600080fd5b806342966c6814610626578063438b630014610646578063518302271461067357806355f804b31461069357600080fd5b80634009920d1161029b5780634009920d146105af57806341f43434146105ce57806342454db9146105f057806342842e0e1461060657600080fd5b80632a55205a146105555780632db11544146105945780633ccfd60b146105a757600080fd5b806318160ddd1161032e57806323b872dd1161030857806323b872dd146104e05780632672c9021461050057806327ac0c58146105155780632a3f300c1461053557600080fd5b806318160ddd1461049b578063189f3de1146104b05780631a09cfe2146104ca57600080fd5b806306fdde031161036a57806306fdde031461040c578063081812fc1461042e578063095ea7b3146104665780630d9005ae1461048657600080fd5b806301ffc9a71461039157806304634d8d146103c657806305031069146103e8575b600080fd5b34801561039d57600080fd5b506103b16103ac366004613008565b610aff565b60405190151581526020015b60405180910390f35b3480156103d257600080fd5b506103e66103e136600461303a565b610b10565b005b3480156103f457600080fd5b506103fe60135481565b6040519081526020016103bd565b34801561041857600080fd5b50610421610b27565b6040516103bd91906130cf565b34801561043a57600080fd5b5061044e6104493660046130e2565b610bb9565b6040516001600160a01b0390911681526020016103bd565b34801561047257600080fd5b506103e66104813660046130fb565b610bfd565b34801561049257600080fd5b506001546103fe565b3480156104a757600080fd5b506103fe610cdb565b3480156104bc57600080fd5b506017546103b19060ff1681565b3480156104d657600080fd5b506103fe60125481565b3480156104ec57600080fd5b506103e66104fb366004613127565b610ce9565b34801561050c57600080fd5b50610421610dd2565b34801561052157600080fd5b506103e6610530366004613168565b610e60565b34801561054157600080fd5b506103e6610550366004613193565b610e74565b34801561056157600080fd5b506105756105703660046131b0565b610e99565b604080516001600160a01b0390931683526020830191909152016103bd565b6103e66105a23660046130e2565b610f45565b6103e66111af565b3480156105bb57600080fd5b506017546103b190610100900460ff1681565b3480156105da57600080fd5b5061044e6daaeb6d7670e522a718067333cd4e81565b3480156105fc57600080fd5b506103fe600f5481565b34801561061257600080fd5b506103e6610621366004613127565b6112bb565b34801561063257600080fd5b506103e66106413660046130e2565b611399565b34801561065257600080fd5b50610666610661366004613168565b6113a4565b6040516103bd91906131d2565b34801561067f57600080fd5b506017546103b19062010000900460ff1681565b34801561069f57600080fd5b506103e66106ae3660046132b3565b6114c7565b3480156106bf57600080fd5b5061044e6106ce3660046130e2565b6114dc565b3480156106df57600080fd5b506103b16106ee366004613168565b6001600160a01b03166000908152600e602052604090205460ff1690565b34801561071857600080fd5b506103e66107273660046130e2565b6114ee565b34801561073857600080fd5b506103fe610747366004613168565b611553565b34801561075857600080fd5b506103e66115a1565b34801561076d57600080fd5b506103fe61077c366004613168565b6001600160a01b031660009081526018602052604090205490565b3480156107a357600080fd5b506103e66107b23660046130e2565b6115b5565b3480156107c357600080fd5b5061044e6107d23660046130e2565b6115c3565b3480156107e357600080fd5b506103e66107f23660046130e2565b61162a565b34801561080357600080fd5b506000546001600160a01b031661044e565b34801561082157600080fd5b506103e66108303660046130e2565b61163c565b34801561084157600080fd5b506103e6610850366004613168565b61164a565b34801561086157600080fd5b506103fe610870366004613168565b6001600160a01b031660009081526019602052604090205490565b34801561089757600080fd5b50610421611675565b3480156108ac57600080fd5b506103e66108bb366004613168565b611684565b3480156108cc57600080fd5b506103e66108db3660046132fb565b6116b9565b3480156108ec57600080fd5b506103e66108fb366004613193565b61178d565b34801561090c57600080fd5b506103e661091b366004613168565b6117b0565b34801561092c57600080fd5b506103e661093b366004613193565b6117c1565b34801561094c57600080fd5b506103e661095b366004613329565b6117dd565b34801561096c57600080fd5b506103e661097b3660046132b3565b6118c9565b34801561098c57600080fd5b506103e661099b366004613193565b6118de565b6103e66109ae366004613427565b6118fa565b3480156109bf57600080fd5b506104216109ce3660046130e2565b611b43565b3480156109df57600080fd5b506103e66109ee366004613476565b611c78565b3480156109ff57600080fd5b506103fe60105481565b348015610a1557600080fd5b5060175461044e90630100000090046001600160a01b031681565b348015610a3c57600080fd5b506103e6610a4b3660046130e2565b611cbe565b348015610a5c57600080fd5b506103e6610a6b3660046132b3565b611ccc565b348015610a7c57600080fd5b50610421611ce1565b348015610a9157600080fd5b506103b1610aa036600461349b565b611cf0565b348015610ab157600080fd5b506103e6610ac0366004613168565b611d1e565b348015610ad157600080fd5b506103b1610ae03660046134c9565b611d94565b348015610af157600080fd5b50600d546103b19060ff1681565b6000610b0a82612062565b92915050565b610b1933612087565b610b2382826120f5565b5050565b606060038054610b369061350b565b80601f0160208091040260200160405190810160405280929190818152602001828054610b629061350b565b8015610baf5780601f10610b8457610100808354040283529160200191610baf565b820191906000526020600020905b815481529060010190602001808311610b9257829003601f168201915b5050505050905090565b6000610bc4826121f2565b610be1576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b816daaeb6d7670e522a718067333cd4e3b15801590610c1e5750600d5460ff165b15610ccc57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610c7b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c9f9190613545565b610ccc57604051633b79c77360e21b81526001600160a01b03821660048201526024015b60405180910390fd5b610cd6838361222b565b505050565b600254600154036000190190565b826daaeb6d7670e522a718067333cd4e3b15801590610d0a5750600d5460ff165b15610dc157336001600160a01b03821603610d2f57610d2a8484846122ac565b610dcc565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610d7e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610da29190613545565b610dc157604051633b79c77360e21b8152336004820152602401610cc3565b610dcc8484846122ac565b50505050565b60168054610ddf9061350b565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0b9061350b565b8015610e585780601f10610e2d57610100808354040283529160200191610e58565b820191906000526020600020905b815481529060010190602001808311610e3b57829003601f168201915b505050505081565b610e686122b7565b610e7181612311565b50565b610e7d33612087565b60178054911515620100000262ff000019909216919091179055565b6000828152600c602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610f0e575060408051808201909152600b546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610f2d906001600160601b031687613578565b610f3791906135a5565b915196919550909350505050565b600260095403610f675760405162461bcd60e51b8152600401610cc3906135b9565b6002600955601754610100900460ff16610fba5760405162461bcd60e51b81526020600482015260146024820152731c1d589b1a58d35a5b9d081a5cc814185d5cd95960621b6044820152606401610cc3565b80601354101561101d5760405162461bcd60e51b815260206004820152602860248201527f7075626c69634d696e743a204f766572206d6178206d696e747320706572206f6044820152673732903a34b6b29760c11b6064820152608401610cc3565b80601254101561107d5760405162461bcd60e51b815260206004820152602560248201527f7075626c69634d696e743a204f766572206d6178206d696e7473207065722077604482015264185b1b195d60da1b6064820152608401610cc3565b336000908152601960205260409020546110989082906135f0565b60125410156110e95760405162461bcd60e51b815260206004820152601b60248201527f596f752068617665206e6f207075626c69634d696e74206c65667400000000006044820152606401610cc3565b80600f546110f79190613578565b34146111455760405162461bcd60e51b815260206004820152601860248201527f4554482076616c7565206973206e6f7420636f727265637400000000000000006044820152606401610cc3565b601054611150610cdb565b61115a90836135f0565b11156111785760405162461bcd60e51b8152600401610cc390613603565b33600090815260196020526040812080548392906111979084906135f0565b909155506111a790503382612399565b506001600955565b6111b833612087565b6002600954036111da5760405162461bcd60e51b8152600401610cc3906135b9565b60026009556011546000906001600160a01b031615611250576011546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611240576040519150601f19603f3d011682016040523d82523d6000602084013e611245565b606091505b5050809150506112b1565b6000546001600160a01b03166001600160a01b03164760405160006040518083038185875af1925050503d80600081146112a6576040519150601f19603f3d011682016040523d82523d6000602084013e6112ab565b606091505b50909150505b806111a757600080fd5b826daaeb6d7670e522a718067333cd4e3b158015906112dc5750600d5460ff165b1561138e57336001600160a01b038216036112fc57610d2a8484846123b3565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561134b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061136f9190613545565b61138e57604051633b79c77360e21b8152336004820152602401610cc3565b610dcc8484846123b3565b610e718160016123ce565b606060006113b183611553565b90506000816001600160401b038111156113cd576113cd613216565b6040519080825280602002602001820160405280156113f6578160200160208202803683370190505b509050600060015b6001548110156114bd576040516320c2ce9960e21b815260048101829052309063830b3a6490602401602060405180830381865afa158015611444573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114689190613629565b6001600160a01b0316866001600160a01b0316036114ab5780838361148c81613646565b94508151811061149e5761149e61365f565b6020026020010181815250505b806114b581613646565b9150506113fe565b5090949350505050565b6114d033612087565b6015610b2382826136c3565b60006114e782612582565b5192915050565b6114f733612087565b80611500610cdb565b111561154e5760405162461bcd60e51b815260206004820152601960248201527f4c6f776572207468616e205f63757272656e74496e6465782e000000000000006044820152606401610cc3565b601055565b60006001600160a01b03821661157c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6115a96122b7565b6115b360006126a4565b565b6115be33612087565b601255565b6040516331a9108f60e11b8152600481018290526000903090636352211e90602401602060405180830381865afa92505050801561161e575060408051601f3d908101601f1916820190925261161b91810190613629565b60015b610b0a57506000919050565b61163333612087565b610e7181600a55565b61164533612087565b601355565b61165333612087565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b606060048054610b369061350b565b61168d33612087565b601780546001600160a01b039092166301000000026301000000600160b81b0319909216919091179055565b816daaeb6d7670e522a718067333cd4e3b158015906116da5750600d5460ff165b1561178357604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611737573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061175b9190613545565b61178357604051633b79c77360e21b81526001600160a01b0382166004820152602401610cc3565b610cd683836126f4565b61179633612087565b601780549115156101000261ff0019909216919091179055565b6117b86122b7565b610e7181612789565b6117ca33612087565b600d805460ff1916911515919091179055565b836daaeb6d7670e522a718067333cd4e3b158015906117fe5750600d5460ff165b156118b657336001600160a01b038216036118245761181f858585856127b3565b6118c2565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611873573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118979190613545565b6118b657604051633b79c77360e21b8152336004820152602401610cc3565b6118c2858585856127b3565b5050505050565b6118d233612087565b6014610b2382826136c3565b6118e733612087565b6017805460ff1916911515919091179055565b60026009540361191c5760405162461bcd60e51b8152600401610cc3906135b9565b600260095560175460ff166119735760405162461bcd60e51b815260206004820152601760248201527f77686974656c6973744d696e74206973205061757365640000000000000000006044820152606401610cc3565b61197e338383611d94565b6119ca5760405162461bcd60e51b815260206004820152601860248201527f596f7520617265206e6f742077686974656c69737465642100000000000000006044820152606401610cc3565b60008211611a0c5760405162461bcd60e51b815260206004820152600f60248201526e596f752068617665206e6f20574c2160881b6044820152606401610cc3565b82821015611a6d5760405162461bcd60e51b815260206004820152602860248201527f77686974656c6973744d696e743a204f766572206d6178206d696e74732070656044820152671c881dd85b1b195d60c21b6064820152608401610cc3565b33600090815260186020526040902054611a889084906135f0565b821015611ad75760405162461bcd60e51b815260206004820152601e60248201527f596f752068617665206e6f2077686974656c6973744d696e74206c65667400006044820152606401610cc3565b601054611ae2610cdb565b611aec90856135f0565b1115611b0a5760405162461bcd60e51b8152600401610cc390613603565b3360009081526018602052604081208054859290611b299084906135f0565b90915550611b3990503384612399565b5050600160095550565b6060611b4e826121f2565b611b9a5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610cc3565b60175462010000900460ff1615611be657611bb36127f7565b611bbc83612806565b6016604051602001611bd093929190613782565b6040516020818303038152906040529050919050565b60148054611bf39061350b565b80601f0160208091040260200160405190810160405280929190818152602001828054611c1f9061350b565b8015611c6c5780601f10611c4157610100808354040283529160200191611c6c565b820191906000526020600020905b815481529060010190602001808311611c4f57829003601f168201915b50505050509050919050565b611c8133612087565b601054611c8c610cdb565b611c9690846135f0565b1115611cb45760405162461bcd60e51b8152600401610cc390613603565b610b238183612399565b611cc733612087565b600f55565b611cd533612087565b6016610b2382826136c3565b6060611ceb61290e565b905090565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b611d266122b7565b6001600160a01b038116611d8b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cc3565b610e71816126a4565b6040516bffffffffffffffffffffffff19606085901b16602082015260348101839052600090819060540160405160208183030381529060405280519060200120905060005b8351811015611eb357838181518110611df557611df561365f565b60200260200101518210611e5357838181518110611e1557611e1561365f565b602002602001015182604051602001611e38929190918252602082015260400190565b60405160208183030381529060405280519060200120611e9f565b81848281518110611e6657611e6661365f565b6020026020010151604051602001611e88929190918252602082015260400190565b604051602081830303815290604052805190602001205b915080611eab81613646565b915050611dda565b50600a5414949350505050565b60606000611ecf836002613578565b611eda9060026135f0565b6001600160401b03811115611ef157611ef1613216565b6040519080825280601f01601f191660200182016040528015611f1b576020820181803683370190505b509050600360fc1b81600081518110611f3657611f3661365f565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611f6557611f6561365f565b60200101906001600160f81b031916908160001a9053506000611f89846002613578565b611f949060016135f0565b90505b600181111561200c576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611fc857611fc861365f565b1a60f81b828281518110611fde57611fde61365f565b60200101906001600160f81b031916908160001a90535060049490941c9361200581613822565b9050611f97565b50831561205b5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610cc3565b9392505050565b60006001600160e01b0319821663152a902d60e11b1480610b0a5750610b0a8261298e565b6001600160a01b0381166000908152600e602052604090205460ff166120b8335b6001600160a01b03166014611ec0565b6040516020016120c89190613839565b60405160208183030381529060405290610b235760405162461bcd60e51b8152600401610cc391906130cf565b6127106001600160601b03821611156121635760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610cc3565b6001600160a01b0382166121b95760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610cc3565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600b55565b600081600111158015612206575060015482105b8015610b0a575050600090815260056020526040902054600160e01b900460ff161590565b6000612236826114dc565b9050806001600160a01b0316836001600160a01b03160361226a5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146122a1576122848133611cf0565b6122a1576040516367d9dca160e11b815260040160405180910390fd5b610cd68383836129de565b610cd6838383612a3a565b6000546001600160a01b031633146115b35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cc3565b6001600160a01b0381166000908152600e602052604090205460ff1615612337336120a8565b6040516020016123479190613886565b604051602081830303815290604052906123745760405162461bcd60e51b8152600401610cc391906130cf565b506001600160a01b03166000908152600e60205260409020805460ff19166001179055565b610b23828260405180602001604052806000815250612c13565b610cd6838383604051806020016040528060008152506117dd565b60006123d983612582565b8051909150821561243f576000336001600160a01b038316148061240257506124028233611cf0565b8061241d57503361241286610bb9565b6001600160a01b0316145b90508061243d57604051632ce44b5f60e11b815260040160405180910390fd5b505b61244b600085836129de565b6001600160a01b0380821660008181526006602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526005909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b17855591890180845292208054919490911661254957600154821461254957805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020613a6a833981519152908390a450506002805460010190555050565b6040805160608101825260008082526020820181905291810191909152818060011161268b5760015481101561268b57600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906126895780516001600160a01b031615612620579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215612684579392505050565b612620565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b336001600160a01b0383160361271d5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61279281612087565b6001600160a01b03166000908152600e60205260409020805460ff19169055565b6127be848484612a3a565b6001600160a01b0383163b15610dcc576127da84848484612db5565b610dcc576040516368d2bf6b60e11b815260040160405180910390fd5b606060158054610b369061350b565b60608160000361282d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612857578061284181613646565b91506128509050600a836135a5565b9150612831565b6000816001600160401b0381111561287157612871613216565b6040519080825280601f01601f19166020018201604052801561289b576020820181803683370190505b5090505b8415612906576128b06001836138dd565b91506128bd600a866138f0565b6128c89060306135f0565b60f81b8183815181106128dd576128dd61365f565b60200101906001600160f81b031916908160001a9053506128ff600a866135a5565b945061289f565b949350505050565b606060008061291f81612710610e99565b9150915061296861292f82612806565b612943846001600160a01b03166014611ec0565b604051602001612954929190613904565b604051602081830303815290604052612ea0565b604051602001612978919061398a565b6040516020818303038152906040529250505090565b60006001600160e01b031982166380ac58cd60e01b14806129bf57506001600160e01b03198216635b5e139f60e01b145b80610b0a57506301ffc9a760e01b6001600160e01b0319831614610b0a565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000612a4582612582565b9050836001600160a01b031681600001516001600160a01b031614612a7c5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480612a9a5750612a9a8533611cf0565b80612ab5575033612aaa84610bb9565b6001600160a01b0316145b905080612ad557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416612afc57604051633a954ecd60e21b815260040160405180910390fd5b612b08600084876129de565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116612bdc576001548214612bdc57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b0316600080516020613a6a83398151915260405160405180910390a46118c2565b6001546001600160a01b038416612c3c57604051622e076360e81b815260040160405180910390fd5b82600003612c5d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600590925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15612d73575b60405182906001600160a01b03881690600090600080516020613a6a833981519152908290a4612d3c6000878480600101955087612db5565b612d59576040516368d2bf6b60e11b815260040160405180910390fd5b808210612d03578260015414612d6e57600080fd5b612da6565b5b6040516001830192906001600160a01b03881690600090600080516020613a6a833981519152908290a4808210612d74575b50600155610dcc600085838684565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612dea9033908990889088906004016139cf565b6020604051808303816000875af1925050508015612e25575060408051601f3d908101601f19168201909252612e2291810190613a0c565b60015b612e83573d808015612e53576040519150601f19603f3d011682016040523d82523d6000602084013e612e58565b606091505b508051600003612e7b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60608151600003612ebf57505060408051602081019091526000815290565b6000604051806060016040528060408152602001613a2a6040913990506000600384516002612eee91906135f0565b612ef891906135a5565b612f03906004613578565b6001600160401b03811115612f1a57612f1a613216565b6040519080825280601f01601f191660200182016040528015612f44576020820181803683370190505b509050600182016020820185865187015b80821015612fb0576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f8116850151845350600183019250612f55565b5050600386510660018114612fcc5760028114612fdf57612fe7565b603d6001830353603d6002830353612fe7565b603d60018303535b509195945050505050565b6001600160e01b031981168114610e7157600080fd5b60006020828403121561301a57600080fd5b813561205b81612ff2565b6001600160a01b0381168114610e7157600080fd5b6000806040838503121561304d57600080fd5b823561305881613025565b915060208301356001600160601b038116811461307457600080fd5b809150509250929050565b60005b8381101561309a578181015183820152602001613082565b50506000910152565b600081518084526130bb81602086016020860161307f565b601f01601f19169290920160200192915050565b60208152600061205b60208301846130a3565b6000602082840312156130f457600080fd5b5035919050565b6000806040838503121561310e57600080fd5b823561311981613025565b946020939093013593505050565b60008060006060848603121561313c57600080fd5b833561314781613025565b9250602084013561315781613025565b929592945050506040919091013590565b60006020828403121561317a57600080fd5b813561205b81613025565b8015158114610e7157600080fd5b6000602082840312156131a557600080fd5b813561205b81613185565b600080604083850312156131c357600080fd5b50508035926020909101359150565b6020808252825182820181905260009190848201906040850190845b8181101561320a578351835292840192918401916001016131ee565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561325457613254613216565b604052919050565b60006001600160401b0383111561327557613275613216565b613288601f8401601f191660200161322c565b905082815283838301111561329c57600080fd5b828260208301376000602084830101529392505050565b6000602082840312156132c557600080fd5b81356001600160401b038111156132db57600080fd5b8201601f810184136132ec57600080fd5b6129068482356020840161325c565b6000806040838503121561330e57600080fd5b823561331981613025565b9150602083013561307481613185565b6000806000806080858703121561333f57600080fd5b843561334a81613025565b9350602085013561335a81613025565b92506040850135915060608501356001600160401b0381111561337c57600080fd5b8501601f8101871361338d57600080fd5b61339c8782356020840161325c565b91505092959194509250565b600082601f8301126133b957600080fd5b813560206001600160401b038211156133d4576133d4613216565b8160051b6133e382820161322c565b92835284810182019282810190878511156133fd57600080fd5b83870192505b8483101561341c57823582529183019190830190613403565b979650505050505050565b60008060006060848603121561343c57600080fd5b833592506020840135915060408401356001600160401b0381111561346057600080fd5b61346c868287016133a8565b9150509250925092565b6000806040838503121561348957600080fd5b82359150602083013561307481613025565b600080604083850312156134ae57600080fd5b82356134b981613025565b9150602083013561307481613025565b6000806000606084860312156134de57600080fd5b83356134e981613025565b92506020840135915060408401356001600160401b0381111561346057600080fd5b600181811c9082168061351f57607f821691505b60208210810361353f57634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561355757600080fd5b815161205b81613185565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610b0a57610b0a613562565b634e487b7160e01b600052601260045260246000fd5b6000826135b4576135b461358f565b500490565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b80820180821115610b0a57610b0a613562565b6020808252600c908201526b4e6f206d6f7265204e46547360a01b604082015260600190565b60006020828403121561363b57600080fd5b815161205b81613025565b60006001820161365857613658613562565b5060010190565b634e487b7160e01b600052603260045260246000fd5b601f821115610cd657600081815260208120601f850160051c8101602086101561369c5750805b601f850160051c820191505b818110156136bb578281556001016136a8565b505050505050565b81516001600160401b038111156136dc576136dc613216565b6136f0816136ea845461350b565b84613675565b602080601f831160018114613725576000841561370d5750858301515b600019600386901b1c1916600185901b1785556136bb565b600085815260208120601f198616915b8281101561375457888601518255948401946001909101908401613735565b50858210156137725787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000845160206137958285838a0161307f565b8551918401916137a88184848a0161307f565b85549201916000906137b98161350b565b600182811680156137d157600181146137e657613812565b60ff1984168752821515830287019450613812565b896000528560002060005b8481101561380a578154898201529083019087016137f1565b505082870194505b50929a9950505050505050505050565b60008161383157613831613562565b506000190190565b67030b1b1b7bab73a160c51b81526000825161385c81600885016020870161307f565b721034b9903737ba1030b71037b832b930ba37b960691b6008939091019283015250601b01919050565b67030b1b1b7bab73a160c51b8152600082516138a981600885016020870161307f565b7f20697320616c72656164792068617320616e206f70657261746f7220726f6c656008939091019283015250602801919050565b81810381811115610b0a57610b0a613562565b6000826138ff576138ff61358f565b500690565b7f7b2273656c6c65725f6665655f62617369735f706f696e7473223a000000000081526000835161393c81601b85016020880161307f565b721610113332b2afb932b1b4b834b2b73a111d1160691b601b91840191820152835161396f81602e84016020880161307f565b61227d60f01b602e9290910191820152603001949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000008152600082516139c281601d85016020870161307f565b91909101601d0192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613a02908301846130a3565b9695505050505050565b600060208284031215613a1e57600080fd5b815161205b81612ff256fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212201912217dd3b1ff2bbf54b4f1ee84a69a86e19363ed301c99c47cc1700da32ff564736f6c634300081100330000000000000000000000000b73077d15fd83080625fca5ef96c552d1679e0c00000000000000000000000000000000000000000000000000000000000003e8
Deployed Bytecode
0x60806040526004361061038c5760003560e01c8063715018a6116101dc578063b88d4fde11610102578063d5f39488116100a0578063e985e9c51161006f578063e985e9c514610a85578063f2fde38b14610aa5578063faf7a82614610ac5578063fb796e6c14610ae557600080fd5b8063d5f3948814610a09578063d78be71c14610a30578063da3ef23f14610a50578063e8a3d48514610a7057600080fd5b8063c4be5b59116100dc578063c4be5b59146109a0578063c87b56dd146109b3578063d52c57e0146109d3578063d5abeb01146109f357600080fd5b8063b88d4fde14610940578063bbaac02f14610960578063c3faf7241461098057600080fd5b80639373f4321161017a578063a22cb46511610149578063a22cb465146108c0578063a355fd29146108e0578063b219f7d714610900578063b7c0b8e81461092057600080fd5b80639373f43214610835578063942958f41461085557806395d89b411461088b57806396214735146108a057600080fd5b8063830b3a64116101b6578063830b3a64146107b75780638ac1e161146107d75780638da5cb5b146107f757806391df908b1461081557600080fd5b8063715018a61461074c57806378a9238014610761578063813779ef1461079757600080fd5b80632a55205a116102c157806342966c681161025f5780636352211e1161022e5780636352211e146106b35780636d70f7ae146106d35780636f8b44b01461070c57806370a082311461072c57600080fd5b806342966c6814610626578063438b630014610646578063518302271461067357806355f804b31461069357600080fd5b80634009920d1161029b5780634009920d146105af57806341f43434146105ce57806342454db9146105f057806342842e0e1461060657600080fd5b80632a55205a146105555780632db11544146105945780633ccfd60b146105a757600080fd5b806318160ddd1161032e57806323b872dd1161030857806323b872dd146104e05780632672c9021461050057806327ac0c58146105155780632a3f300c1461053557600080fd5b806318160ddd1461049b578063189f3de1146104b05780631a09cfe2146104ca57600080fd5b806306fdde031161036a57806306fdde031461040c578063081812fc1461042e578063095ea7b3146104665780630d9005ae1461048657600080fd5b806301ffc9a71461039157806304634d8d146103c657806305031069146103e8575b600080fd5b34801561039d57600080fd5b506103b16103ac366004613008565b610aff565b60405190151581526020015b60405180910390f35b3480156103d257600080fd5b506103e66103e136600461303a565b610b10565b005b3480156103f457600080fd5b506103fe60135481565b6040519081526020016103bd565b34801561041857600080fd5b50610421610b27565b6040516103bd91906130cf565b34801561043a57600080fd5b5061044e6104493660046130e2565b610bb9565b6040516001600160a01b0390911681526020016103bd565b34801561047257600080fd5b506103e66104813660046130fb565b610bfd565b34801561049257600080fd5b506001546103fe565b3480156104a757600080fd5b506103fe610cdb565b3480156104bc57600080fd5b506017546103b19060ff1681565b3480156104d657600080fd5b506103fe60125481565b3480156104ec57600080fd5b506103e66104fb366004613127565b610ce9565b34801561050c57600080fd5b50610421610dd2565b34801561052157600080fd5b506103e6610530366004613168565b610e60565b34801561054157600080fd5b506103e6610550366004613193565b610e74565b34801561056157600080fd5b506105756105703660046131b0565b610e99565b604080516001600160a01b0390931683526020830191909152016103bd565b6103e66105a23660046130e2565b610f45565b6103e66111af565b3480156105bb57600080fd5b506017546103b190610100900460ff1681565b3480156105da57600080fd5b5061044e6daaeb6d7670e522a718067333cd4e81565b3480156105fc57600080fd5b506103fe600f5481565b34801561061257600080fd5b506103e6610621366004613127565b6112bb565b34801561063257600080fd5b506103e66106413660046130e2565b611399565b34801561065257600080fd5b50610666610661366004613168565b6113a4565b6040516103bd91906131d2565b34801561067f57600080fd5b506017546103b19062010000900460ff1681565b34801561069f57600080fd5b506103e66106ae3660046132b3565b6114c7565b3480156106bf57600080fd5b5061044e6106ce3660046130e2565b6114dc565b3480156106df57600080fd5b506103b16106ee366004613168565b6001600160a01b03166000908152600e602052604090205460ff1690565b34801561071857600080fd5b506103e66107273660046130e2565b6114ee565b34801561073857600080fd5b506103fe610747366004613168565b611553565b34801561075857600080fd5b506103e66115a1565b34801561076d57600080fd5b506103fe61077c366004613168565b6001600160a01b031660009081526018602052604090205490565b3480156107a357600080fd5b506103e66107b23660046130e2565b6115b5565b3480156107c357600080fd5b5061044e6107d23660046130e2565b6115c3565b3480156107e357600080fd5b506103e66107f23660046130e2565b61162a565b34801561080357600080fd5b506000546001600160a01b031661044e565b34801561082157600080fd5b506103e66108303660046130e2565b61163c565b34801561084157600080fd5b506103e6610850366004613168565b61164a565b34801561086157600080fd5b506103fe610870366004613168565b6001600160a01b031660009081526019602052604090205490565b34801561089757600080fd5b50610421611675565b3480156108ac57600080fd5b506103e66108bb366004613168565b611684565b3480156108cc57600080fd5b506103e66108db3660046132fb565b6116b9565b3480156108ec57600080fd5b506103e66108fb366004613193565b61178d565b34801561090c57600080fd5b506103e661091b366004613168565b6117b0565b34801561092c57600080fd5b506103e661093b366004613193565b6117c1565b34801561094c57600080fd5b506103e661095b366004613329565b6117dd565b34801561096c57600080fd5b506103e661097b3660046132b3565b6118c9565b34801561098c57600080fd5b506103e661099b366004613193565b6118de565b6103e66109ae366004613427565b6118fa565b3480156109bf57600080fd5b506104216109ce3660046130e2565b611b43565b3480156109df57600080fd5b506103e66109ee366004613476565b611c78565b3480156109ff57600080fd5b506103fe60105481565b348015610a1557600080fd5b5060175461044e90630100000090046001600160a01b031681565b348015610a3c57600080fd5b506103e6610a4b3660046130e2565b611cbe565b348015610a5c57600080fd5b506103e6610a6b3660046132b3565b611ccc565b348015610a7c57600080fd5b50610421611ce1565b348015610a9157600080fd5b506103b1610aa036600461349b565b611cf0565b348015610ab157600080fd5b506103e6610ac0366004613168565b611d1e565b348015610ad157600080fd5b506103b1610ae03660046134c9565b611d94565b348015610af157600080fd5b50600d546103b19060ff1681565b6000610b0a82612062565b92915050565b610b1933612087565b610b2382826120f5565b5050565b606060038054610b369061350b565b80601f0160208091040260200160405190810160405280929190818152602001828054610b629061350b565b8015610baf5780601f10610b8457610100808354040283529160200191610baf565b820191906000526020600020905b815481529060010190602001808311610b9257829003601f168201915b5050505050905090565b6000610bc4826121f2565b610be1576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b816daaeb6d7670e522a718067333cd4e3b15801590610c1e5750600d5460ff165b15610ccc57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610c7b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c9f9190613545565b610ccc57604051633b79c77360e21b81526001600160a01b03821660048201526024015b60405180910390fd5b610cd6838361222b565b505050565b600254600154036000190190565b826daaeb6d7670e522a718067333cd4e3b15801590610d0a5750600d5460ff165b15610dc157336001600160a01b03821603610d2f57610d2a8484846122ac565b610dcc565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610d7e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610da29190613545565b610dc157604051633b79c77360e21b8152336004820152602401610cc3565b610dcc8484846122ac565b50505050565b60168054610ddf9061350b565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0b9061350b565b8015610e585780601f10610e2d57610100808354040283529160200191610e58565b820191906000526020600020905b815481529060010190602001808311610e3b57829003601f168201915b505050505081565b610e686122b7565b610e7181612311565b50565b610e7d33612087565b60178054911515620100000262ff000019909216919091179055565b6000828152600c602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610f0e575060408051808201909152600b546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610f2d906001600160601b031687613578565b610f3791906135a5565b915196919550909350505050565b600260095403610f675760405162461bcd60e51b8152600401610cc3906135b9565b6002600955601754610100900460ff16610fba5760405162461bcd60e51b81526020600482015260146024820152731c1d589b1a58d35a5b9d081a5cc814185d5cd95960621b6044820152606401610cc3565b80601354101561101d5760405162461bcd60e51b815260206004820152602860248201527f7075626c69634d696e743a204f766572206d6178206d696e747320706572206f6044820152673732903a34b6b29760c11b6064820152608401610cc3565b80601254101561107d5760405162461bcd60e51b815260206004820152602560248201527f7075626c69634d696e743a204f766572206d6178206d696e7473207065722077604482015264185b1b195d60da1b6064820152608401610cc3565b336000908152601960205260409020546110989082906135f0565b60125410156110e95760405162461bcd60e51b815260206004820152601b60248201527f596f752068617665206e6f207075626c69634d696e74206c65667400000000006044820152606401610cc3565b80600f546110f79190613578565b34146111455760405162461bcd60e51b815260206004820152601860248201527f4554482076616c7565206973206e6f7420636f727265637400000000000000006044820152606401610cc3565b601054611150610cdb565b61115a90836135f0565b11156111785760405162461bcd60e51b8152600401610cc390613603565b33600090815260196020526040812080548392906111979084906135f0565b909155506111a790503382612399565b506001600955565b6111b833612087565b6002600954036111da5760405162461bcd60e51b8152600401610cc3906135b9565b60026009556011546000906001600160a01b031615611250576011546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611240576040519150601f19603f3d011682016040523d82523d6000602084013e611245565b606091505b5050809150506112b1565b6000546001600160a01b03166001600160a01b03164760405160006040518083038185875af1925050503d80600081146112a6576040519150601f19603f3d011682016040523d82523d6000602084013e6112ab565b606091505b50909150505b806111a757600080fd5b826daaeb6d7670e522a718067333cd4e3b158015906112dc5750600d5460ff165b1561138e57336001600160a01b038216036112fc57610d2a8484846123b3565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561134b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061136f9190613545565b61138e57604051633b79c77360e21b8152336004820152602401610cc3565b610dcc8484846123b3565b610e718160016123ce565b606060006113b183611553565b90506000816001600160401b038111156113cd576113cd613216565b6040519080825280602002602001820160405280156113f6578160200160208202803683370190505b509050600060015b6001548110156114bd576040516320c2ce9960e21b815260048101829052309063830b3a6490602401602060405180830381865afa158015611444573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114689190613629565b6001600160a01b0316866001600160a01b0316036114ab5780838361148c81613646565b94508151811061149e5761149e61365f565b6020026020010181815250505b806114b581613646565b9150506113fe565b5090949350505050565b6114d033612087565b6015610b2382826136c3565b60006114e782612582565b5192915050565b6114f733612087565b80611500610cdb565b111561154e5760405162461bcd60e51b815260206004820152601960248201527f4c6f776572207468616e205f63757272656e74496e6465782e000000000000006044820152606401610cc3565b601055565b60006001600160a01b03821661157c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6115a96122b7565b6115b360006126a4565b565b6115be33612087565b601255565b6040516331a9108f60e11b8152600481018290526000903090636352211e90602401602060405180830381865afa92505050801561161e575060408051601f3d908101601f1916820190925261161b91810190613629565b60015b610b0a57506000919050565b61163333612087565b610e7181600a55565b61164533612087565b601355565b61165333612087565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b606060048054610b369061350b565b61168d33612087565b601780546001600160a01b039092166301000000026301000000600160b81b0319909216919091179055565b816daaeb6d7670e522a718067333cd4e3b158015906116da5750600d5460ff165b1561178357604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611737573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061175b9190613545565b61178357604051633b79c77360e21b81526001600160a01b0382166004820152602401610cc3565b610cd683836126f4565b61179633612087565b601780549115156101000261ff0019909216919091179055565b6117b86122b7565b610e7181612789565b6117ca33612087565b600d805460ff1916911515919091179055565b836daaeb6d7670e522a718067333cd4e3b158015906117fe5750600d5460ff165b156118b657336001600160a01b038216036118245761181f858585856127b3565b6118c2565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611873573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118979190613545565b6118b657604051633b79c77360e21b8152336004820152602401610cc3565b6118c2858585856127b3565b5050505050565b6118d233612087565b6014610b2382826136c3565b6118e733612087565b6017805460ff1916911515919091179055565b60026009540361191c5760405162461bcd60e51b8152600401610cc3906135b9565b600260095560175460ff166119735760405162461bcd60e51b815260206004820152601760248201527f77686974656c6973744d696e74206973205061757365640000000000000000006044820152606401610cc3565b61197e338383611d94565b6119ca5760405162461bcd60e51b815260206004820152601860248201527f596f7520617265206e6f742077686974656c69737465642100000000000000006044820152606401610cc3565b60008211611a0c5760405162461bcd60e51b815260206004820152600f60248201526e596f752068617665206e6f20574c2160881b6044820152606401610cc3565b82821015611a6d5760405162461bcd60e51b815260206004820152602860248201527f77686974656c6973744d696e743a204f766572206d6178206d696e74732070656044820152671c881dd85b1b195d60c21b6064820152608401610cc3565b33600090815260186020526040902054611a889084906135f0565b821015611ad75760405162461bcd60e51b815260206004820152601e60248201527f596f752068617665206e6f2077686974656c6973744d696e74206c65667400006044820152606401610cc3565b601054611ae2610cdb565b611aec90856135f0565b1115611b0a5760405162461bcd60e51b8152600401610cc390613603565b3360009081526018602052604081208054859290611b299084906135f0565b90915550611b3990503384612399565b5050600160095550565b6060611b4e826121f2565b611b9a5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610cc3565b60175462010000900460ff1615611be657611bb36127f7565b611bbc83612806565b6016604051602001611bd093929190613782565b6040516020818303038152906040529050919050565b60148054611bf39061350b565b80601f0160208091040260200160405190810160405280929190818152602001828054611c1f9061350b565b8015611c6c5780601f10611c4157610100808354040283529160200191611c6c565b820191906000526020600020905b815481529060010190602001808311611c4f57829003601f168201915b50505050509050919050565b611c8133612087565b601054611c8c610cdb565b611c9690846135f0565b1115611cb45760405162461bcd60e51b8152600401610cc390613603565b610b238183612399565b611cc733612087565b600f55565b611cd533612087565b6016610b2382826136c3565b6060611ceb61290e565b905090565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b611d266122b7565b6001600160a01b038116611d8b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cc3565b610e71816126a4565b6040516bffffffffffffffffffffffff19606085901b16602082015260348101839052600090819060540160405160208183030381529060405280519060200120905060005b8351811015611eb357838181518110611df557611df561365f565b60200260200101518210611e5357838181518110611e1557611e1561365f565b602002602001015182604051602001611e38929190918252602082015260400190565b60405160208183030381529060405280519060200120611e9f565b81848281518110611e6657611e6661365f565b6020026020010151604051602001611e88929190918252602082015260400190565b604051602081830303815290604052805190602001205b915080611eab81613646565b915050611dda565b50600a5414949350505050565b60606000611ecf836002613578565b611eda9060026135f0565b6001600160401b03811115611ef157611ef1613216565b6040519080825280601f01601f191660200182016040528015611f1b576020820181803683370190505b509050600360fc1b81600081518110611f3657611f3661365f565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611f6557611f6561365f565b60200101906001600160f81b031916908160001a9053506000611f89846002613578565b611f949060016135f0565b90505b600181111561200c576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611fc857611fc861365f565b1a60f81b828281518110611fde57611fde61365f565b60200101906001600160f81b031916908160001a90535060049490941c9361200581613822565b9050611f97565b50831561205b5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610cc3565b9392505050565b60006001600160e01b0319821663152a902d60e11b1480610b0a5750610b0a8261298e565b6001600160a01b0381166000908152600e602052604090205460ff166120b8335b6001600160a01b03166014611ec0565b6040516020016120c89190613839565b60405160208183030381529060405290610b235760405162461bcd60e51b8152600401610cc391906130cf565b6127106001600160601b03821611156121635760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610cc3565b6001600160a01b0382166121b95760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610cc3565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600b55565b600081600111158015612206575060015482105b8015610b0a575050600090815260056020526040902054600160e01b900460ff161590565b6000612236826114dc565b9050806001600160a01b0316836001600160a01b03160361226a5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146122a1576122848133611cf0565b6122a1576040516367d9dca160e11b815260040160405180910390fd5b610cd68383836129de565b610cd6838383612a3a565b6000546001600160a01b031633146115b35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cc3565b6001600160a01b0381166000908152600e602052604090205460ff1615612337336120a8565b6040516020016123479190613886565b604051602081830303815290604052906123745760405162461bcd60e51b8152600401610cc391906130cf565b506001600160a01b03166000908152600e60205260409020805460ff19166001179055565b610b23828260405180602001604052806000815250612c13565b610cd6838383604051806020016040528060008152506117dd565b60006123d983612582565b8051909150821561243f576000336001600160a01b038316148061240257506124028233611cf0565b8061241d57503361241286610bb9565b6001600160a01b0316145b90508061243d57604051632ce44b5f60e11b815260040160405180910390fd5b505b61244b600085836129de565b6001600160a01b0380821660008181526006602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526005909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b17855591890180845292208054919490911661254957600154821461254957805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020613a6a833981519152908390a450506002805460010190555050565b6040805160608101825260008082526020820181905291810191909152818060011161268b5760015481101561268b57600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906126895780516001600160a01b031615612620579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215612684579392505050565b612620565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b336001600160a01b0383160361271d5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61279281612087565b6001600160a01b03166000908152600e60205260409020805460ff19169055565b6127be848484612a3a565b6001600160a01b0383163b15610dcc576127da84848484612db5565b610dcc576040516368d2bf6b60e11b815260040160405180910390fd5b606060158054610b369061350b565b60608160000361282d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612857578061284181613646565b91506128509050600a836135a5565b9150612831565b6000816001600160401b0381111561287157612871613216565b6040519080825280601f01601f19166020018201604052801561289b576020820181803683370190505b5090505b8415612906576128b06001836138dd565b91506128bd600a866138f0565b6128c89060306135f0565b60f81b8183815181106128dd576128dd61365f565b60200101906001600160f81b031916908160001a9053506128ff600a866135a5565b945061289f565b949350505050565b606060008061291f81612710610e99565b9150915061296861292f82612806565b612943846001600160a01b03166014611ec0565b604051602001612954929190613904565b604051602081830303815290604052612ea0565b604051602001612978919061398a565b6040516020818303038152906040529250505090565b60006001600160e01b031982166380ac58cd60e01b14806129bf57506001600160e01b03198216635b5e139f60e01b145b80610b0a57506301ffc9a760e01b6001600160e01b0319831614610b0a565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000612a4582612582565b9050836001600160a01b031681600001516001600160a01b031614612a7c5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480612a9a5750612a9a8533611cf0565b80612ab5575033612aaa84610bb9565b6001600160a01b0316145b905080612ad557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416612afc57604051633a954ecd60e21b815260040160405180910390fd5b612b08600084876129de565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116612bdc576001548214612bdc57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b0316600080516020613a6a83398151915260405160405180910390a46118c2565b6001546001600160a01b038416612c3c57604051622e076360e81b815260040160405180910390fd5b82600003612c5d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600590925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15612d73575b60405182906001600160a01b03881690600090600080516020613a6a833981519152908290a4612d3c6000878480600101955087612db5565b612d59576040516368d2bf6b60e11b815260040160405180910390fd5b808210612d03578260015414612d6e57600080fd5b612da6565b5b6040516001830192906001600160a01b03881690600090600080516020613a6a833981519152908290a4808210612d74575b50600155610dcc600085838684565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612dea9033908990889088906004016139cf565b6020604051808303816000875af1925050508015612e25575060408051601f3d908101601f19168201909252612e2291810190613a0c565b60015b612e83573d808015612e53576040519150601f19603f3d011682016040523d82523d6000602084013e612e58565b606091505b508051600003612e7b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60608151600003612ebf57505060408051602081019091526000815290565b6000604051806060016040528060408152602001613a2a6040913990506000600384516002612eee91906135f0565b612ef891906135a5565b612f03906004613578565b6001600160401b03811115612f1a57612f1a613216565b6040519080825280601f01601f191660200182016040528015612f44576020820181803683370190505b509050600182016020820185865187015b80821015612fb0576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f8116850151845350600183019250612f55565b5050600386510660018114612fcc5760028114612fdf57612fe7565b603d6001830353603d6002830353612fe7565b603d60018303535b509195945050505050565b6001600160e01b031981168114610e7157600080fd5b60006020828403121561301a57600080fd5b813561205b81612ff2565b6001600160a01b0381168114610e7157600080fd5b6000806040838503121561304d57600080fd5b823561305881613025565b915060208301356001600160601b038116811461307457600080fd5b809150509250929050565b60005b8381101561309a578181015183820152602001613082565b50506000910152565b600081518084526130bb81602086016020860161307f565b601f01601f19169290920160200192915050565b60208152600061205b60208301846130a3565b6000602082840312156130f457600080fd5b5035919050565b6000806040838503121561310e57600080fd5b823561311981613025565b946020939093013593505050565b60008060006060848603121561313c57600080fd5b833561314781613025565b9250602084013561315781613025565b929592945050506040919091013590565b60006020828403121561317a57600080fd5b813561205b81613025565b8015158114610e7157600080fd5b6000602082840312156131a557600080fd5b813561205b81613185565b600080604083850312156131c357600080fd5b50508035926020909101359150565b6020808252825182820181905260009190848201906040850190845b8181101561320a578351835292840192918401916001016131ee565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561325457613254613216565b604052919050565b60006001600160401b0383111561327557613275613216565b613288601f8401601f191660200161322c565b905082815283838301111561329c57600080fd5b828260208301376000602084830101529392505050565b6000602082840312156132c557600080fd5b81356001600160401b038111156132db57600080fd5b8201601f810184136132ec57600080fd5b6129068482356020840161325c565b6000806040838503121561330e57600080fd5b823561331981613025565b9150602083013561307481613185565b6000806000806080858703121561333f57600080fd5b843561334a81613025565b9350602085013561335a81613025565b92506040850135915060608501356001600160401b0381111561337c57600080fd5b8501601f8101871361338d57600080fd5b61339c8782356020840161325c565b91505092959194509250565b600082601f8301126133b957600080fd5b813560206001600160401b038211156133d4576133d4613216565b8160051b6133e382820161322c565b92835284810182019282810190878511156133fd57600080fd5b83870192505b8483101561341c57823582529183019190830190613403565b979650505050505050565b60008060006060848603121561343c57600080fd5b833592506020840135915060408401356001600160401b0381111561346057600080fd5b61346c868287016133a8565b9150509250925092565b6000806040838503121561348957600080fd5b82359150602083013561307481613025565b600080604083850312156134ae57600080fd5b82356134b981613025565b9150602083013561307481613025565b6000806000606084860312156134de57600080fd5b83356134e981613025565b92506020840135915060408401356001600160401b0381111561346057600080fd5b600181811c9082168061351f57607f821691505b60208210810361353f57634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561355757600080fd5b815161205b81613185565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610b0a57610b0a613562565b634e487b7160e01b600052601260045260246000fd5b6000826135b4576135b461358f565b500490565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b80820180821115610b0a57610b0a613562565b6020808252600c908201526b4e6f206d6f7265204e46547360a01b604082015260600190565b60006020828403121561363b57600080fd5b815161205b81613025565b60006001820161365857613658613562565b5060010190565b634e487b7160e01b600052603260045260246000fd5b601f821115610cd657600081815260208120601f850160051c8101602086101561369c5750805b601f850160051c820191505b818110156136bb578281556001016136a8565b505050505050565b81516001600160401b038111156136dc576136dc613216565b6136f0816136ea845461350b565b84613675565b602080601f831160018114613725576000841561370d5750858301515b600019600386901b1c1916600185901b1785556136bb565b600085815260208120601f198616915b8281101561375457888601518255948401946001909101908401613735565b50858210156137725787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000845160206137958285838a0161307f565b8551918401916137a88184848a0161307f565b85549201916000906137b98161350b565b600182811680156137d157600181146137e657613812565b60ff1984168752821515830287019450613812565b896000528560002060005b8481101561380a578154898201529083019087016137f1565b505082870194505b50929a9950505050505050505050565b60008161383157613831613562565b506000190190565b67030b1b1b7bab73a160c51b81526000825161385c81600885016020870161307f565b721034b9903737ba1030b71037b832b930ba37b960691b6008939091019283015250601b01919050565b67030b1b1b7bab73a160c51b8152600082516138a981600885016020870161307f565b7f20697320616c72656164792068617320616e206f70657261746f7220726f6c656008939091019283015250602801919050565b81810381811115610b0a57610b0a613562565b6000826138ff576138ff61358f565b500690565b7f7b2273656c6c65725f6665655f62617369735f706f696e7473223a000000000081526000835161393c81601b85016020880161307f565b721610113332b2afb932b1b4b834b2b73a111d1160691b601b91840191820152835161396f81602e84016020880161307f565b61227d60f01b602e9290910191820152603001949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000008152600082516139c281601d85016020870161307f565b91909101601d0192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613a02908301846130a3565b9695505050505050565b600060208284031215613a1e57600080fd5b815161205b81612ff256fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212201912217dd3b1ff2bbf54b4f1ee84a69a86e19363ed301c99c47cc1700da32ff564736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000b73077d15fd83080625fca5ef96c552d1679e0c00000000000000000000000000000000000000000000000000000000000003e8
-----Decoded View---------------
Arg [0] : _royaltyReceiver (address): 0x0B73077d15FD83080625fcA5EF96c552d1679e0c
Arg [1] : _royaltyFraction (uint96): 1000
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000b73077d15fd83080625fca5ef96c552d1679e0c
Arg [1] : 00000000000000000000000000000000000000000000000000000000000003e8
Deployed Bytecode Sourcemap
67073:9829:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68455:165;;;;;;;;;;-1:-1:-1;68455:165:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;68455:165:0;;;;;;;;68277:157;;;;;;;;;;-1:-1:-1;68277:157:0;;;;;:::i;:::-;;:::i;:::-;;67376:36;;;;;;;;;;;;;;;;;;;1314:25:1;;;1302:2;1287:18;67376:36:0;1168:177:1;40875:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;42387:204::-;;;;;;;;;;-1:-1:-1;42387:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2455:32:1;;;2437:51;;2425:2;2410:18;42387:204:0;2291:203:1;75862:157:0;;;;;;;;;;-1:-1:-1;75862:157:0;;;;;:::i;:::-;;:::i;71296:99::-;;;;;;;;;;-1:-1:-1;71376:13:0;;71296:99;;37000:312;;;;;;;;;;;;;:::i;67548:27::-;;;;;;;;;;-1:-1:-1;67548:27:0;;;;;;;;67339:32;;;;;;;;;;;;;;;;76027:163;;;;;;;;;;-1:-1:-1;76027:163:0;;;;;:::i;:::-;;:::i;67492:38::-;;;;;;;;;;;;;:::i;76659:115::-;;;;;;;;;;-1:-1:-1;76659:115:0;;;;;:::i;:::-;;:::i;70008:110::-;;;;;;;;;;-1:-1:-1;70008:110:0;;;;;:::i;:::-;;:::i;28911:442::-;;;;;;;;;;-1:-1:-1;28911:442:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;4346:32:1;;;4328:51;;4410:2;4395:18;;4388:34;;;;4301:18;28911:442:0;4154:274:1;73087:630:0;;;;;;:::i;:::-;;:::i;73868:664::-;;;:::i;67580:31::-;;;;;;;;;;-1:-1:-1;67580:31:0;;;;;;;;;;;63371:143;;;;;;;;;;;;63471:42;63371:143;;67216:38;;;;;;;;;;;;;;;;76198:171;;;;;;;;;;-1:-1:-1;76198:171:0;;;;;:::i;:::-;;:::i;73733:81::-;;;;;;;;;;-1:-1:-1;73733:81:0;;;;;:::i;:::-;;:::i;74575:475::-;;;;;;;;;;-1:-1:-1;74575:475:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;67616:28::-;;;;;;;;;;-1:-1:-1;67616:28:0;;;;;;;;;;;71447:103;;;;;;;;;;-1:-1:-1;71447:103:0;;;;;:::i;:::-;;:::i;40683:125::-;;;;;;;;;;-1:-1:-1;40683:125:0;;;;;:::i;:::-;;:::i;59447:113::-;;;;;;;;;;-1:-1:-1;59447:113:0;;;;;:::i;:::-;-1:-1:-1;;;;;59531:21:0;59507:4;59531:21;;;:10;:21;;;;;;;;;59447:113;69686:179;;;;;;;;;;-1:-1:-1;69686:179:0;;;;;:::i;:::-;;:::i;38129:206::-;;;;;;;;;;-1:-1:-1;38129:206:0;;;;;:::i;:::-;;:::i;58417:103::-;;;;;;;;;;;;;:::i;70265:114::-;;;;;;;;;;-1:-1:-1;70265:114:0;;;;;:::i;:::-;-1:-1:-1;;;;;70354:19:0;70332:7;70354:19;;;:9;:19;;;;;;;70265:114;70503:100;;;;;;;;;;-1:-1:-1;70503:100:0;;;;;:::i;:::-;;:::i;75113:243::-;;;;;;;;;;-1:-1:-1;75113:243:0;;;;;:::i;:::-;;:::i;71004:118::-;;;;;;;;;;-1:-1:-1;71004:118:0;;;;;:::i;:::-;;:::i;57769:87::-;;;;;;;;;;-1:-1:-1;57815:7:0;57842:6;-1:-1:-1;;;;;57842:6:0;57769:87;;70609:111;;;;;;;;;;-1:-1:-1;70609:111:0;;;;;:::i;:::-;;:::i;69421:119::-;;;;;;;;;;-1:-1:-1;69421:119:0;;;;;:::i;:::-;;:::i;70383:114::-;;;;;;;;;;-1:-1:-1;70383:114:0;;;;;:::i;:::-;-1:-1:-1;;;;;70472:19:0;70450:7;70472:19;;;:9;:19;;;;;;;70383:114;41044:104;;;;;;;;;;;;;:::i;69546:103::-;;;;;;;;;;-1:-1:-1;69546:103:0;;;;;:::i;:::-;;:::i;75678:176::-;;;;;;;;;;-1:-1:-1;75678:176:0;;;;;:::i;:::-;;:::i;70864:111::-;;;;;;;;;;-1:-1:-1;70864:111:0;;;;;:::i;:::-;;:::i;76782:117::-;;;;;;;;;;-1:-1:-1;76782:117:0;;;;;:::i;:::-;;:::i;75548:122::-;;;;;;;;;;-1:-1:-1;75548:122:0;;;;;:::i;:::-;;:::i;76377:228::-;;;;;;;;;;-1:-1:-1;76377:228:0;;;;;:::i;:::-;;:::i;71163:101::-;;;;;;;;;;-1:-1:-1;71163:101:0;;;;;:::i;:::-;;:::i;70750:110::-;;;;;;;;;;-1:-1:-1;70750:110:0;;;;;:::i;:::-;;:::i;72427:634::-;;;;;;:::i;:::-;;:::i;71830:322::-;;;;;;;;;;-1:-1:-1;71830:322:0;;;;;:::i;:::-;;:::i;72207:198::-;;;;;;;;;;-1:-1:-1;72207:198:0;;;;;:::i;:::-;;:::i;67259:30::-;;;;;;;;;;;;;;;;67649:23;;;;;;;;;;-1:-1:-1;67649:23:0;;;;;;;-1:-1:-1;;;;;67649:23:0;;;69871:103;;;;;;;;;;-1:-1:-1;69871:103:0;;;;;:::i;:::-;;:::i;71558:131::-;;;;;;;;;;-1:-1:-1;71558:131:0;;;;;:::i;:::-;;:::i;68649:113::-;;;;;;;;;;;;;:::i;43021:164::-;;;;;;;;;;-1:-1:-1;43021:164:0;;;;;:::i;:::-;;:::i;58675:201::-;;;;;;;;;;-1:-1:-1;58675:201:0;;;;;:::i;:::-;;:::i;12141:433::-;;;;;;;;;;-1:-1:-1;12141:433:0;;;;;:::i;:::-;;:::i;63319:43::-;;;;;;;;;;-1:-1:-1;63319:43:0;;;;;;;;68455:165;68558:4;68578:36;68602:11;68578:23;:36::i;:::-;68571:43;68455:165;-1:-1:-1;;68455:165:0:o;68277:157::-;59387:32;34815:10;59387:18;:32::i;:::-;68384:44:::1;68403:9;68414:13;68384:18;:44::i;:::-;68277:157:::0;;:::o;40875:100::-;40929:13;40962:5;40955:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40875:100;:::o;42387:204::-;42455:7;42480:16;42488:7;42480;:16::i;:::-;42475:64;;42505:34;;-1:-1:-1;;;42505:34:0;;;;;;;;;;;42475:64;-1:-1:-1;42559:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;42559:24:0;;42387:204::o;75862:157::-;75958:8;63471:42;65393:45;:49;;;;:77;;-1:-1:-1;65446:24:0;;;;65393:77;65389:253;;;65492:67;;-1:-1:-1;;;65492:67:0;;65543:4;65492:67;;;11034:34:1;-1:-1:-1;;;;;11104:15:1;;11084:18;;;11077:43;63471:42:0;;65492;;10969:18:1;;65492:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;65487:144;;65587:28;;-1:-1:-1;;;65587:28:0;;-1:-1:-1;;;;;2455:32:1;;65587:28:0;;;2437:51:1;2410:18;;65587:28:0;;;;;;;;65487:144;75979:32:::1;75993:8;76003:7;75979:13;:32::i;:::-;75862:157:::0;;;:::o;37000:312::-;37263:12;;68210:1;37247:13;:28;-1:-1:-1;;37247:46:0;;37000:312::o;76027:163::-;76128:4;63471:42;64619:45;:49;;;;:77;;-1:-1:-1;64672:24:0;;;;64619:77;64615:567;;;64936:10;-1:-1:-1;;;;;64928:18:0;;;64924:85;;76145:37:::1;76164:4;76170:2;76174:7;76145:18;:37::i;:::-;64987:7:::0;;64924:85;65028:69;;-1:-1:-1;;;65028:69:0;;65079:4;65028:69;;;11034:34:1;65086:10:0;11084:18:1;;;11077:43;63471:42:0;;65028;;10969:18:1;;65028:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;65023:148;;65125:30;;-1:-1:-1;;;65125:30:0;;65144:10;65125:30;;;2437:51:1;2410:18;;65125:30:0;2291:203:1;65023:148:0;76145:37:::1;76164:4;76170:2;76174:7;76145:18;:37::i;:::-;76027:163:::0;;;;:::o;67492:38::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;76659:115::-;57655:13;:11;:13::i;:::-;76736:30:::1;76755:10;76736:18;:30::i;:::-;76659:115:::0;:::o;70008:110::-;59387:32;34815:10;59387:18;:32::i;:::-;70086:8:::1;:26:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;70086:26:0;;::::1;::::0;;;::::1;::::0;;70008:110::o;28911:442::-;29008:7;29066:27;;;:17;:27;;;;;;;;29037:56;;;;;;;;;-1:-1:-1;;;;;29037:56:0;;;;;-1:-1:-1;;;29037:56:0;;;-1:-1:-1;;;;;29037:56:0;;;;;;;;29008:7;;29106:92;;-1:-1:-1;29157:29:0;;;;;;;;;29167:19;29157:29;-1:-1:-1;;;;;29157:29:0;;;;-1:-1:-1;;;29157:29:0;;-1:-1:-1;;;;;29157:29:0;;;;;29106:92;29248:23;;;;29210:21;;29719:5;;29235:36;;-1:-1:-1;;;;;29235:36:0;:10;:36;:::i;:::-;29234:58;;;;:::i;:::-;29313:16;;;;;-1:-1:-1;28911:442:0;;-1:-1:-1;;;;28911:442:0:o;73087:630::-;33159:1;33757:7;;:19;33749:63;;;;-1:-1:-1;;;33749:63:0;;;;;;;:::i;:::-;33159:1;33890:7;:18;73177:19:::1;::::0;::::1;::::0;::::1;;;73169:52;;;::::0;-1:-1:-1;;;73169:52:0;;12505:2:1;73169:52:0::1;::::0;::::1;12487:21:1::0;12544:2;12524:18;;;12517:30;-1:-1:-1;;;12563:18:1;;;12556:50;12623:18;;73169:52:0::1;12303:344:1::0;73169:52:0::1;73257:7;73236:17;;:28;;73228:81;;;::::0;-1:-1:-1;;;73228:81:0;;12854:2:1;73228:81:0::1;::::0;::::1;12836:21:1::0;12893:2;12873:18;;;12866:30;12932:34;12912:18;;;12905:62;-1:-1:-1;;;12983:18:1;;;12976:38;13031:19;;73228:81:0::1;12652:404:1::0;73228:81:0::1;73341:7;73324:13;;:24;;73316:74;;;::::0;-1:-1:-1;;;73316:74:0;;13263:2:1;73316:74:0::1;::::0;::::1;13245:21:1::0;13302:2;13282:18;;;13275:30;13341:34;13321:18;;;13314:62;-1:-1:-1;;;13392:18:1;;;13385:35;13437:19;;73316:74:0::1;13061:401:1::0;73316:74:0::1;73432:10;73422:21;::::0;;;:9:::1;:21;::::0;;;;;:31:::1;::::0;73446:7;;73422:31:::1;:::i;:::-;73405:13;;:48;;73397:88;;;::::0;-1:-1:-1;;;73397:88:0;;13799:2:1;73397:88:0::1;::::0;::::1;13781:21:1::0;13838:2;13818:18;;;13811:30;13877:29;13857:18;;;13850:57;13924:18;;73397:88:0::1;13597:351:1::0;73397:88:0::1;73527:7;73513:11;;:21;;;;:::i;:::-;73500:9;:34;73492:71;;;::::0;-1:-1:-1;;;73492:71:0;;14155:2:1;73492:71:0::1;::::0;::::1;14137:21:1::0;14194:2;14174:18;;;14167:30;14233:26;14213:18;;;14206:54;14277:18;;73492:71:0::1;13953:348:1::0;73492:71:0::1;73608:9;;73589:13;:11;:13::i;:::-;73579:23;::::0;:7;:23:::1;:::i;:::-;73578:40;;73570:65;;;;-1:-1:-1::0;;;73570:65:0::1;;;;;;;:::i;:::-;73652:10;73642:21;::::0;;;:9:::1;:21;::::0;;;;:32;;73667:7;;73642:21;:32:::1;::::0;73667:7;;73642:32:::1;:::i;:::-;::::0;;;-1:-1:-1;73681:30:0::1;::::0;-1:-1:-1;73691:10:0::1;73703:7:::0;73681:9:::1;:30::i;:::-;-1:-1:-1::0;33115:1:0;34069:7;:22;73087:630::o;73868:664::-;59387:32;34815:10;59387:18;:32::i;:::-;33159:1:::1;33757:7;;:19:::0;33749:63:::1;;;;-1:-1:-1::0;;;33749:63:0::1;;;;;;;:::i;:::-;33159:1;33890:7;:18:::0;74194:15:::2;::::0;74177:7:::2;::::0;-1:-1:-1;;;;;74194:15:0::2;:29:::0;74191:232:::2;;74275:15;::::0;74267:63:::2;::::0;-1:-1:-1;;;;;74275:15:0;;::::2;::::0;74304:21:::2;::::0;74267:63:::2;::::0;;;74304:21;74275:15;74267:63:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74258:72;;;;;74191:232;;;57815:7:::0;57842:6;-1:-1:-1;;;;;57842:6:0;-1:-1:-1;;;;;74360:21:0::2;74389;74360:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;74351:64:0;;-1:-1:-1;;74191:232:0::2;74437:2;74429:11;;;::::0;::::2;76198:171:::0;76303:4;63471:42;64619:45;:49;;;;:77;;-1:-1:-1;64672:24:0;;;;64619:77;64615:567;;;64936:10;-1:-1:-1;;;;;64928:18:0;;;64924:85;;76320:41:::1;76343:4;76349:2;76353:7;76320:22;:41::i;64924:85::-:0;65028:69;;-1:-1:-1;;;65028:69:0;;65079:4;65028:69;;;11034:34:1;65086:10:0;11084:18:1;;;11077:43;63471:42:0;;65028;;10969:18:1;;65028:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;65023:148;;65125:30;;-1:-1:-1;;;65125:30:0;;65144:10;65125:30;;;2437:51:1;2410:18;;65125:30:0;2291:203:1;65023:148:0;76320:41:::1;76343:4;76349:2;76353:7;76320:22;:41::i;73733:81::-:0;73788:20;73794:7;73803:4;73788:5;:20::i;74575:475::-;74647:16;74672:23;74698:19;74708:8;74698:9;:19::i;:::-;74672:45;;74724:25;74766:15;-1:-1:-1;;;;;74752:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;74752:30:0;-1:-1:-1;74724:58:0;-1:-1:-1;74858:18:0;68210:1;74887:136;74925:13;;74921:1;:17;74887:136;;;74969:18;;-1:-1:-1;;;74969:18:0;;;;;1314:25:1;;;74969:4:0;;:15;;1287:18:1;;74969::0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;74957:30:0;:8;-1:-1:-1;;;;;74957:30:0;;74954:61;;75014:1;74989:8;74998:12;;;;:::i;:::-;;;74989:22;;;;;;;;:::i;:::-;;;;;;:26;;;;;74954:61;74940:3;;;;:::i;:::-;;;;74887:136;;;-1:-1:-1;75036:8:0;;74575:475;-1:-1:-1;;;;74575:475:0:o;71447:103::-;59387:32;34815:10;59387:18;:32::i;:::-;71524:13:::1;:20;71540:4:::0;71524:13;:20:::1;:::i;40683:125::-:0;40747:7;40774:21;40787:7;40774:12;:21::i;:::-;:26;;40683:125;-1:-1:-1;;40683:125:0:o;69686:179::-;59387:32;34815:10;59387:18;:32::i;:::-;69790:10:::1;69773:13;:11;:13::i;:::-;:27;;69765:65;;;::::0;-1:-1:-1;;;69765:65:0;;17791:2:1;69765:65:0::1;::::0;::::1;17773:21:1::0;17830:2;17810:18;;;17803:30;17869:27;17849:18;;;17842:55;17914:18;;69765:65:0::1;17589:349:1::0;69765:65:0::1;69837:9;:22:::0;69686:179::o;38129:206::-;38193:7;-1:-1:-1;;;;;38217:19:0;;38213:60;;38245:28;;-1:-1:-1;;;38245:28:0;;;;;;;;;;;38213:60;-1:-1:-1;;;;;;38299:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;38299:27:0;;38129:206::o;58417:103::-;57655:13;:11;:13::i;:::-;58482:30:::1;58509:1;58482:18;:30::i;:::-;58417:103::o:0;70503:100::-;59387:32;34815:10;59387:18;:32::i;:::-;70577:13:::1;:20:::0;70503:100::o;75113:243::-;75202:21;;-1:-1:-1;;;75202:21:0;;;;;1314:25:1;;;75182:7:0;;75202:4;;:12;;1287:18:1;;75202:21:0;;;;;;;;;;;;;;;;;;-1:-1:-1;75202:21:0;;;;;;;;-1:-1:-1;;75202:21:0;;;;;;;;;;;;:::i;:::-;;;75198:153;;-1:-1:-1;75318:1:0;;75113:243;-1:-1:-1;75113:243:0:o;71004:118::-;59387:32;34815:10;59387:18;:32::i;:::-;71087:29:::1;71104:11;12098:13:::0;:27;12023:110;70609:111;59387:32;34815:10;59387:18;:32::i;:::-;70690:17:::1;:24:::0;70609:111::o;69421:119::-;59387:32;34815:10;59387:18;:32::i;:::-;69501:15:::1;:33:::0;;-1:-1:-1;;;;;;69501:33:0::1;-1:-1:-1::0;;;;;69501:33:0;;;::::1;::::0;;;::::1;::::0;;69421:119::o;41044:104::-;41100:13;41133:7;41126:14;;;;;:::i;69546:103::-;59387:32;34815:10;59387:18;:32::i;:::-;69623:8:::1;:20:::0;;-1:-1:-1;;;;;69623:20:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;69623:20:0;;::::1;::::0;;;::::1;::::0;;69546:103::o;75678:176::-;75782:8;63471:42;65393:45;:49;;;;:77;;-1:-1:-1;65446:24:0;;;;65393:77;65389:253;;;65492:67;;-1:-1:-1;;;65492:67:0;;65543:4;65492:67;;;11034:34:1;-1:-1:-1;;;;;11104:15:1;;11084:18;;;11077:43;63471:42:0;;65492;;10969:18:1;;65492:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;65487:144;;65587:28;;-1:-1:-1;;;65587:28:0;;-1:-1:-1;;;;;2455:32:1;;65587:28:0;;;2437:51:1;2410:18;;65587:28:0;2291:203:1;65487:144:0;75803:43:::1;75827:8;75837;75803:23;:43::i;70864:111::-:0;59387:32;34815:10;59387:18;:32::i;:::-;70942:19:::1;:27:::0;;;::::1;;;;-1:-1:-1::0;;70942:27:0;;::::1;::::0;;;::::1;::::0;;70864:111::o;76782:117::-;57655:13;:11;:13::i;:::-;76860:31:::1;76880:10;76860:19;:31::i;75548:122::-:0;59387:32;34815:10;59387:18;:32::i;:::-;75630:24:::1;:32:::0;;-1:-1:-1;;75630:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;75548:122::o;76377:228::-;76528:4;63471:42;64619:45;:49;;;;:77;;-1:-1:-1;64672:24:0;;;;64619:77;64615:567;;;64936:10;-1:-1:-1;;;;;64928:18:0;;;64924:85;;76550:47:::1;76573:4;76579:2;76583:7;76592:4;76550:22;:47::i;:::-;64987:7:::0;;64924:85;65028:69;;-1:-1:-1;;;65028:69:0;;65079:4;65028:69;;;11034:34:1;65086:10:0;11084:18:1;;;11077:43;63471:42:0;;65028;;10969:18:1;;65028:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;65023:148;;65125:30;;-1:-1:-1;;;65125:30:0;;65144:10;65125:30;;;2437:51:1;2410:18;;65125:30:0;2291:203:1;65023:148:0;76550:47:::1;76573:4;76579:2;76583:7;76592:4;76550:22;:47::i;:::-;76377:228:::0;;;;;:::o;71163:101::-;59387:32;34815:10;59387:18;:32::i;:::-;71242:9:::1;:16;71254:4:::0;71242:9;:16:::1;:::i;70750:110::-:0;59387:32;34815:10;59387:18;:32::i;:::-;70831:15:::1;:23:::0;;-1:-1:-1;;70831:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;70750:110::o;72427:634::-;33159:1;33757:7;;:19;33749:63;;;;-1:-1:-1;;;33749:63:0;;;;;;;:::i;:::-;33159:1;33890:7;:18;72562:15:::1;::::0;::::1;;72554:51;;;::::0;-1:-1:-1;;;72554:51:0;;18145:2:1;72554:51:0::1;::::0;::::1;18127:21:1::0;18184:2;18164:18;;;18157:30;18223:25;18203:18;;;18196:53;18266:18;;72554:51:0::1;17943:347:1::0;72554:51:0::1;72620:42;72634:10;72646:7;72655:6;72620:13;:42::i;:::-;72612:79;;;::::0;-1:-1:-1;;;72612:79:0;;18497:2:1;72612:79:0::1;::::0;::::1;18479:21:1::0;18536:2;18516:18;;;18509:30;18575:26;18555:18;;;18548:54;18619:18;;72612:79:0::1;18295:348:1::0;72612:79:0::1;72716:1;72706:7;:11;72698:39;;;::::0;-1:-1:-1;;;72698:39:0;;18850:2:1;72698:39:0::1;::::0;::::1;18832:21:1::0;18889:2;18869:18;;;18862:30;-1:-1:-1;;;18908:18:1;;;18901:45;18963:18;;72698:39:0::1;18648:339:1::0;72698:39:0::1;72763:7;72752;:18;;72744:71;;;::::0;-1:-1:-1;;;72744:71:0;;19194:2:1;72744:71:0::1;::::0;::::1;19176:21:1::0;19233:2;19213:18;;;19206:30;19272:34;19252:18;;;19245:62;-1:-1:-1;;;19323:18:1;;;19316:38;19371:19;;72744:71:0::1;18992:404:1::0;72744:71:0::1;72851:10;72841:21;::::0;;;:9:::1;:21;::::0;;;;;:31:::1;::::0;72865:7;;72841:31:::1;:::i;:::-;72830:7;:42;;72822:85;;;::::0;-1:-1:-1;;;72822:85:0;;19603:2:1;72822:85:0::1;::::0;::::1;19585:21:1::0;19642:2;19622:18;;;19615:30;19681:32;19661:18;;;19654:60;19731:18;;72822:85:0::1;19401:354:1::0;72822:85:0::1;72952:9;;72933:13;:11;:13::i;:::-;72923:23;::::0;:7;:23:::1;:::i;:::-;72922:40;;72914:65;;;;-1:-1:-1::0;;;72914:65:0::1;;;;;;;:::i;:::-;72996:10;72986:21;::::0;;;:9:::1;:21;::::0;;;;:32;;73011:7;;72986:21;:32:::1;::::0;73011:7;;72986:32:::1;:::i;:::-;::::0;;;-1:-1:-1;73025:30:0::1;::::0;-1:-1:-1;73035:10:0::1;73047:7:::0;73025:9:::1;:30::i;:::-;-1:-1:-1::0;;33115:1:0;34069:7;:22;-1:-1:-1;72427:634:0:o;71830:322::-;71904:13;71934:17;71942:8;71934:7;:17::i;:::-;71926:61;;;;-1:-1:-1;;;71926:61:0;;19962:2:1;71926:61:0;;;19944:21:1;20001:2;19981:18;;;19974:30;20040:33;20020:18;;;20013:61;20091:18;;71926:61:0;19760:355:1;71926:61:0;70221:8;;;;;;;71994:130;;;72053:17;:15;:17::i;:::-;72072:26;72089:8;72072:16;:26::i;:::-;72100:14;72036:79;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;72022:94;;71830:322;;;:::o;71994:130::-;72137:9;72130:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71830:322;;;:::o;72207:198::-;59387:32;34815:10;59387:18;:32::i;:::-;72337:9:::1;;72318:13;:11;:13::i;:::-;72308:23;::::0;:7;:23:::1;:::i;:::-;72307:40;;72299:65;;;;-1:-1:-1::0;;;72299:65:0::1;;;;;;;:::i;:::-;72371:28;72381:8;72391:7;72371:9;:28::i;69871:103::-:0;59387:32;34815:10;59387:18;:32::i;:::-;69946:11:::1;:22:::0;69871:103::o;71558:131::-;59387:32;34815:10;59387:18;:32::i;:::-;71649:14:::1;:34;71666:17:::0;71649:14;:34:::1;:::i;68649:113::-:0;68703:13;68736:20;:18;:20::i;:::-;68729:27;;68649:113;:::o;43021:164::-;-1:-1:-1;;;;;43142:25:0;;;43118:4;43142:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;43021:164::o;58675:201::-;57655:13;:11;:13::i;:::-;-1:-1:-1;;;;;58764:22:0;::::1;58756:73;;;::::0;-1:-1:-1;;;58756:73:0;;21583:2:1;58756:73:0::1;::::0;::::1;21565:21:1::0;21622:2;21602:18;;;21595:30;21661:34;21641:18;;;21634:62;-1:-1:-1;;;21712:18:1;;;21705:36;21758:19;;58756:73:0::1;21381:402:1::0;58756:73:0::1;58840:28;58859:8;58840:18;:28::i;12141:433::-:0;12288:35;;-1:-1:-1;;21965:2:1;21961:15;;;21957:53;12288:35:0;;;21945:66:1;22027:12;;;22020:28;;;12245:4:0;;;;22064:12:1;;12288:35:0;;;;;;;;;;;;12278:46;;;;;;12262:62;;12340:9;12335:192;12359:6;:13;12355:1;:17;12335:192;;;12410:6;12417:1;12410:9;;;;;;;;:::i;:::-;;;;;;;12402:5;:17;:113;;12497:6;12504:1;12497:9;;;;;;;;:::i;:::-;;;;;;;12508:5;12480:34;;;;;;;;22244:19:1;;;22288:2;22279:12;;22272:28;22325:2;22316:12;;22087:247;12480:34:0;;;;;;;;;;;;;12470:45;;;;;;12402:113;;;12449:5;12456:6;12463:1;12456:9;;;;;;;;:::i;:::-;;;;;;;12432:34;;;;;;;;22244:19:1;;;22288:2;22279:12;;22272:28;22325:2;22316:12;;22087:247;12432:34:0;;;;;;;;;;;;;12422:45;;;;;;12402:113;12394:121;-1:-1:-1;12374:3:0;;;;:::i;:::-;;;;12335:192;;;-1:-1:-1;12553:13:0;;12544:22;;12141:433;-1:-1:-1;;;;12141:433:0:o;11130:451::-;11205:13;11231:19;11263:10;11267:6;11263:1;:10;:::i;:::-;:14;;11276:1;11263:14;:::i;:::-;-1:-1:-1;;;;;11253:25:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11253:25:0;;11231:47;;-1:-1:-1;;;11289:6:0;11296:1;11289:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;11289:15:0;;;;;;;;;-1:-1:-1;;;11315:6:0;11322:1;11315:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;11315:15:0;;;;;;;;-1:-1:-1;11346:9:0;11358:10;11362:6;11358:1;:10;:::i;:::-;:14;;11371:1;11358:14;:::i;:::-;11346:26;;11341:135;11378:1;11374;:5;11341:135;;;-1:-1:-1;;;11426:5:0;11434:3;11426:11;11413:25;;;;;;;:::i;:::-;;;;11401:6;11408:1;11401:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;11401:37:0;;;;;;;;-1:-1:-1;11463:1:0;11453:11;;;;;11381:3;;;:::i;:::-;;;11341:135;;;-1:-1:-1;11494:10:0;;11486:55;;;;-1:-1:-1;;;11486:55:0;;22682:2:1;11486:55:0;;;22664:21:1;;;22701:18;;;22694:30;22760:34;22740:18;;;22733:62;22812:18;;11486:55:0;22480:356:1;11486:55:0;11566:6;11130:451;-1:-1:-1;;;11130:451:0:o;28641:215::-;28743:4;-1:-1:-1;;;;;;28767:41:0;;-1:-1:-1;;;28767:41:0;;:81;;;28812:36;28836:11;28812:23;:36::i;60152:370::-;-1:-1:-1;;;;;60246:21:0;;;;;;:10;:21;;;;;;;;60379:46;34815:10;60407:12;-1:-1:-1;;;;;60379:46:0;60422:2;60379:19;:46::i;:::-;60307:181;;;;;;;;:::i;:::-;;;;;;;;;;;;;60224:290;;;;;-1:-1:-1;;;60224:290:0;;;;;;;;:::i;30003:332::-;29719:5;-1:-1:-1;;;;;30106:33:0;;;;30098:88;;;;-1:-1:-1;;;30098:88:0;;23659:2:1;30098:88:0;;;23641:21:1;23698:2;23678:18;;;23671:30;23737:34;23717:18;;;23710:62;-1:-1:-1;;;23788:18:1;;;23781:40;23838:19;;30098:88:0;23457:406:1;30098:88:0;-1:-1:-1;;;;;30205:22:0;;30197:60;;;;-1:-1:-1;;;30197:60:0;;24070:2:1;30197:60:0;;;24052:21:1;24109:2;24089:18;;;24082:30;24148:27;24128:18;;;24121:55;24193:18;;30197:60:0;23868:349:1;30197:60:0;30292:35;;;;;;;;;-1:-1:-1;;;;;30292:35:0;;;;;;-1:-1:-1;;;;;30292:35:0;;;;;;;;;;-1:-1:-1;;;30270:57:0;;;;:19;:57;30003:332::o;44374:174::-;44431:4;44474:7;68210:1;44455:26;;:53;;;;;44495:13;;44485:7;:23;44455:53;:85;;;;-1:-1:-1;;44513:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;44513:27:0;;;;44512:28;;44374:174::o;41941:380::-;42022:13;42038:24;42054:7;42038:15;:24::i;:::-;42022:40;;42083:5;-1:-1:-1;;;;;42077:11:0;:2;-1:-1:-1;;;;;42077:11:0;;42073:48;;42097:24;;-1:-1:-1;;;42097:24:0;;;;;;;;;;;42073:48;34815:10;-1:-1:-1;;;;;42138:21:0;;;42134:139;;42165:37;42182:5;34815:10;43021:164;:::i;42165:37::-;42161:112;;42226:35;;-1:-1:-1;;;42226:35:0;;;;;;;;;;;42161:112;42285:28;42294:2;42298:7;42307:5;42285:8;:28::i;43252:170::-;43386:28;43396:4;43402:2;43406:7;43386:9;:28::i;57934:132::-;57815:7;57842:6;-1:-1:-1;;;;;57842:6:0;34815:10;57998:23;57990:68;;;;-1:-1:-1;;;57990:68:0;;24424:2:1;57990:68:0;;;24406:21:1;;;24443:18;;;24436:30;24502:34;24482:18;;;24475:62;24554:18;;57990:68:0;24222:356:1;59568:421:0;-1:-1:-1;;;;;59659:22:0;;;;;;:10;:22;;;;;;;;59658:23;59793:46;34815:10;59821:12;34735:98;59793:46;59721:194;;;;;;;;:::i;:::-;;;;;;;;;;;;;59636:305;;;;;-1:-1:-1;;;59636:305:0;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;59952:22:0;;;;;:10;:22;;;;;:29;;-1:-1:-1;;59952:29:0;59977:4;59952:29;;;59568:421::o;44632:104::-;44701:27;44711:2;44715:8;44701:27;;;;;;;;;;;;:9;:27::i;43493:185::-;43631:39;43648:4;43654:2;43658:7;43631:39;;;;;;;;;;;;:16;:39::i;51070:2408::-;51150:35;51188:21;51201:7;51188:12;:21::i;:::-;51237:18;;51150:59;;-1:-1:-1;51268:290:0;;;;51302:22;34815:10;-1:-1:-1;;;;;51328:20:0;;;;:77;;-1:-1:-1;51369:36:0;51386:4;34815:10;43021:164;:::i;51369:36::-;51328:134;;;-1:-1:-1;34815:10:0;51426:20;51438:7;51426:11;:20::i;:::-;-1:-1:-1;;;;;51426:36:0;;51328:134;51302:161;;51485:17;51480:66;;51511:35;;-1:-1:-1;;;51511:35:0;;;;;;;;;;;51480:66;51287:271;51268:290;51686:35;51703:1;51707:7;51716:4;51686:8;:35::i;:::-;-1:-1:-1;;;;;52051:18:0;;;52017:31;52051:18;;;:12;:18;;;;;;;;52084:24;;-1:-1:-1;;;;;;;;;;52084:24:0;;;;;;;;;-1:-1:-1;;52084:24:0;;;;52123:29;;;;;52107:1;52123:29;;;;;;;;-1:-1:-1;;52123:29:0;;;;;;;;;;52285:20;;;:11;:20;;;;;;52320;;-1:-1:-1;;;;52388:15:0;52355:49;;;-1:-1:-1;;;52355:49:0;-1:-1:-1;;;;;;52355:49:0;;;;;;;;;;52419:22;-1:-1:-1;;;52419:22:0;;;52711:11;;;52771:24;;;;;52814:13;;52051:18;;52771:24;;52814:13;52810:384;;53024:13;;53009:11;:28;53005:174;;53062:20;;53131:28;;;;-1:-1:-1;;;;;53105:54:0;-1:-1:-1;;;53105:54:0;-1:-1:-1;;;;;;53105:54:0;;;-1:-1:-1;;;;;53062:20:0;;53105:54;;;;53005:174;-1:-1:-1;;53222:35:0;;53249:7;;-1:-1:-1;53245:1:0;;-1:-1:-1;;;;;;53222:35:0;;;-1:-1:-1;;;;;;;;;;;53222:35:0;53245:1;;53222:35;-1:-1:-1;;53445:12:0;:14;;;;;;-1:-1:-1;;51070:2408:0:o;39510:1111::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;39621:7:0;;68210:1;39670:23;39666:888;;39706:13;;39699:4;:20;39695:859;;;39740:31;39774:17;;;:11;:17;;;;;;;;;39740:51;;;;;;;;;-1:-1:-1;;;;;39740:51:0;;;;-1:-1:-1;;;39740:51:0;;-1:-1:-1;;;;;39740:51:0;;;;;;;;-1:-1:-1;;;39740:51:0;;;;;;;;;;;;;;39810:729;;39860:14;;-1:-1:-1;;;;;39860:28:0;;39856:101;;39924:9;39510:1111;-1:-1:-1;;;39510:1111:0:o;39856:101::-;-1:-1:-1;;;40299:6:0;40344:17;;;;:11;:17;;;;;;;;;40332:29;;;;;;;;;-1:-1:-1;;;;;40332:29:0;;;;;-1:-1:-1;;;40332:29:0;;-1:-1:-1;;;;;40332:29:0;;;;;;;;-1:-1:-1;;;40332:29:0;;;;;;;;;;;;;40392:28;40388:109;;40460:9;39510:1111;-1:-1:-1;;;39510:1111:0:o;40388:109::-;40259:261;;;39721:833;39695:859;40582:31;;-1:-1:-1;;;40582:31:0;;;;;;;;;;;59036:191;59110:16;59129:6;;-1:-1:-1;;;;;59146:17:0;;;-1:-1:-1;;;;;;59146:17:0;;;;;;59179:40;;59129:6;;;;;;;59179:40;;59110:16;59179:40;59099:128;59036:191;:::o;42663:287::-;34815:10;-1:-1:-1;;;;;42762:24:0;;;42758:54;;42795:17;;-1:-1:-1;;;42795:17:0;;;;;;;;;;;42758:54;34815:10;42825:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;42825:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;42825:53:0;;;;;;;;;;42894:48;;540:41:1;;;42825:42:0;;34815:10;42894:48;;513:18:1;42894:48:0;;;;;;;42663:287;;:::o;59997:147::-;60066:30;60085:10;60066:18;:30::i;:::-;-1:-1:-1;;;;;60114:22:0;;;;;:10;:22;;;;;60107:29;;-1:-1:-1;;60107:29:0;;;59997:147::o;43749:370::-;43916:28;43926:4;43932:2;43936:7;43916:9;:28::i;:::-;-1:-1:-1;;;;;43959:13:0;;1435:19;:23;43955:157;;43980:56;44011:4;44017:2;44021:7;44030:5;43980:30;:56::i;:::-;43976:136;;44060:40;;-1:-1:-1;;;44060:40:0;;;;;;;;;;;71725:97;71775:13;71803;71796:20;;;;;:::i;9829:723::-;9885:13;10106:5;10115:1;10106:10;10102:53;;-1:-1:-1;;10133:10:0;;;;;;;;;;;;-1:-1:-1;;;10133:10:0;;;;;9829:723::o;10102:53::-;10180:5;10165:12;10221:78;10228:9;;10221:78;;10254:8;;;;:::i;:::-;;-1:-1:-1;10277:10:0;;-1:-1:-1;10285:2:0;10277:10;;:::i;:::-;;;10221:78;;;10309:19;10341:6;-1:-1:-1;;;;;10331:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10331:17:0;;10309:39;;10359:154;10366:10;;10359:154;;10393:11;10403:1;10393:11;;:::i;:::-;;-1:-1:-1;10462:10:0;10470:2;10462:5;:10;:::i;:::-;10449:24;;:2;:24;:::i;:::-;10436:39;;10419:6;10426;10419:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;10419:56:0;;;;;;;;-1:-1:-1;10490:11:0;10499:2;10490:11;;:::i;:::-;;;10359:154;;;10537:6;9829:723;-1:-1:-1;;;;9829:723:0:o;68788:567::-;68841:13;68864:16;;68909:32;68864:16;29719:5;68909:11;:32::i;:::-;68863:78;;;;69050:283;69162:33;69179:15;69162:16;:33::i;:::-;69237:51;69273:8;-1:-1:-1;;;;;69257:26:0;69285:2;69237:19;:51::i;:::-;69096:213;;;;;;;;;:::i;:::-;;;;;;;;;;;;;69050:13;:283::i;:::-;68981:361;;;;;;;;:::i;:::-;;;;;;;;;;;;;68959:390;;;;68788:567;:::o;37760:305::-;37862:4;-1:-1:-1;;;;;;37899:40:0;;-1:-1:-1;;;37899:40:0;;:105;;-1:-1:-1;;;;;;;37956:48:0;;-1:-1:-1;;;37956:48:0;37899:105;:158;;;-1:-1:-1;;;;;;;;;;26415:40:0;;;38021:36;26306:157;53596:196;53711:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;53711:29:0;-1:-1:-1;;;;;53711:29:0;;;;;;;;;53756:28;;53711:24;;53756:28;;;;;;;53596:196;;;:::o;48544:2130::-;48659:35;48697:21;48710:7;48697:12;:21::i;:::-;48659:59;;48757:4;-1:-1:-1;;;;;48735:26:0;:13;:18;;;-1:-1:-1;;;;;48735:26:0;;48731:67;;48770:28;;-1:-1:-1;;;48770:28:0;;;;;;;;;;;48731:67;48811:22;34815:10;-1:-1:-1;;;;;48837:20:0;;;;:73;;-1:-1:-1;48874:36:0;48891:4;34815:10;43021:164;:::i;48874:36::-;48837:126;;;-1:-1:-1;34815:10:0;48927:20;48939:7;48927:11;:20::i;:::-;-1:-1:-1;;;;;48927:36:0;;48837:126;48811:153;;48982:17;48977:66;;49008:35;;-1:-1:-1;;;49008:35:0;;;;;;;;;;;48977:66;-1:-1:-1;;;;;49058:16:0;;49054:52;;49083:23;;-1:-1:-1;;;49083:23:0;;;;;;;;;;;49054:52;49227:35;49244:1;49248:7;49257:4;49227:8;:35::i;:::-;-1:-1:-1;;;;;49558:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;49558:31:0;;;-1:-1:-1;;;;;49558:31:0;;;-1:-1:-1;;49558:31:0;;;;;;;49604:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;49604:29:0;;;;;;;;;;;49684:20;;;:11;:20;;;;;;49719:18;;-1:-1:-1;;;;;;49752:49:0;;;;-1:-1:-1;;;49785:15:0;49752:49;;;;;;;;;;50075:11;;50135:24;;;;;50178:13;;49684:20;;50135:24;;50178:13;50174:384;;50388:13;;50373:11;:28;50369:174;;50426:20;;50495:28;;;;-1:-1:-1;;;;;50469:54:0;-1:-1:-1;;;50469:54:0;-1:-1:-1;;;;;;50469:54:0;;;-1:-1:-1;;;;;50426:20:0;;50469:54;;;;50369:174;49533:1036;;;50605:7;50601:2;-1:-1:-1;;;;;50586:27:0;50595:4;-1:-1:-1;;;;;50586:27:0;-1:-1:-1;;;;;;;;;;;50586:27:0;;;;;;;;;50624:42;76027:163;45109:1749;45255:13;;-1:-1:-1;;;;;45283:16:0;;45279:48;;45308:19;;-1:-1:-1;;;45308:19:0;;;;;;;;;;;45279:48;45342:8;45354:1;45342:13;45338:44;;45364:18;;-1:-1:-1;;;45364:18:0;;;;;;;;;;;45338:44;-1:-1:-1;;;;;45733:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;45792:49:0;;-1:-1:-1;;;;;45733:44:0;;;;;;;45792:49;;;;-1:-1:-1;;45733:44:0;;;;;;45792:49;;;;;;;;;;;;;;;;45858:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;45908:66:0;;;-1:-1:-1;;;45958:15:0;45908:66;;;;;;;;;;;;;45858:25;;46055:23;;;;1435:19;:23;46095:631;;46135:313;46166:38;;46191:12;;-1:-1:-1;;;;;46166:38:0;;;46183:1;;-1:-1:-1;;;;;;;;;;;46166:38:0;46183:1;;46166:38;46232:69;46271:1;46275:2;46279:14;;;;;;46295:5;46232:30;:69::i;:::-;46227:174;;46337:40;;-1:-1:-1;;;46337:40:0;;;;;;;;;;;46227:174;46443:3;46428:12;:18;46135:313;;46529:12;46512:13;;:29;46508:43;;46543:8;;;46508:43;46095:631;;;46592:119;46623:40;;46648:14;;;;;-1:-1:-1;;;;;46623:40:0;;;46640:1;;-1:-1:-1;;;;;;;;;;;46623:40:0;46640:1;;46623:40;46706:3;46691:12;:18;46592:119;;46095:631;-1:-1:-1;46740:13:0;:28;46790:60;46819:1;46823:2;46827:12;46841:8;46790:60;:::i;54284:667::-;54468:72;;-1:-1:-1;;;54468:72:0;;54447:4;;-1:-1:-1;;;;;54468:36:0;;;;;:72;;34815:10;;54519:4;;54525:7;;54534:5;;54468:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54468:72:0;;;;;;;;-1:-1:-1;;54468:72:0;;;;;;;;;;;;:::i;:::-;;;54464:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54702:6;:13;54719:1;54702:18;54698:235;;54748:40;;-1:-1:-1;;;54748:40:0;;;;;;;;;;;54698:235;54891:6;54885:13;54876:6;54872:2;54868:15;54861:38;54464:480;-1:-1:-1;;;;;;54587:55:0;-1:-1:-1;;;54587:55:0;;-1:-1:-1;54284:667:0;;;;;;:::o;13076:3097::-;13134:13;13371:4;:11;13386:1;13371:16;13367:31;;-1:-1:-1;;13389:9:0;;;;;;;;;-1:-1:-1;13389:9:0;;;13076:3097::o;13367:31::-;13451:19;13473:6;;;;;;;;;;;;;;;;;13451:28;;13890:20;13949:1;13930:4;:11;13944:1;13930:15;;;;:::i;:::-;13929:21;;;;:::i;:::-;13924:27;;:1;:27;:::i;:::-;-1:-1:-1;;;;;13913:39:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13913:39:0;;13890:62;;14132:1;14125:5;14121:13;14236:2;14228:6;14224:15;14347:4;14399;14393:11;14387:4;14383:22;14309:1432;14433:6;14424:7;14421:19;14309:1432;;;14539:1;14530:7;14526:15;14515:26;;14578:7;14572:14;15231:4;15223:5;15219:2;15215:14;15211:25;15201:8;15197:40;15191:47;15180:9;15172:67;15285:1;15274:9;15270:17;15257:30;;15377:4;15369:5;15365:2;15361:14;15357:25;15347:8;15343:40;15337:47;15326:9;15318:67;15431:1;15420:9;15416:17;15403:30;;15522:4;15514:5;15511:1;15507:13;15503:24;15493:8;15489:39;15483:46;15472:9;15464:66;15576:1;15565:9;15561:17;15548:30;;15659:4;15652:5;15648:16;15638:8;15634:31;15628:38;15617:9;15609:58;;15713:1;15702:9;15698:17;15685:30;;14309:1432;;;14313:107;;15903:1;15896:4;15890:11;15886:19;15924:1;15919:123;;;;16061:1;16056:73;;;;15879:250;;15919:123;15972:4;15968:1;15957:9;15953:17;15945:32;16022:4;16018:1;16007:9;16003:17;15995:32;15919:123;;16056:73;16109:4;16105:1;16094:9;16090:17;16082:32;15879:250;-1:-1:-1;16159:6:0;;13076:3097;-1:-1:-1;;;;;13076:3097:0:o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:131::-;-1:-1:-1;;;;;667:31:1;;657:42;;647:70;;713:1;710;703:12;728:435;795:6;803;856:2;844:9;835:7;831:23;827:32;824:52;;;872:1;869;862:12;824:52;911:9;898:23;930:31;955:5;930:31;:::i;:::-;980:5;-1:-1:-1;1037:2:1;1022:18;;1009:32;-1:-1:-1;;;;;1072:40:1;;1060:53;;1050:81;;1127:1;1124;1117:12;1050:81;1150:7;1140:17;;;728:435;;;;;:::o;1350:250::-;1435:1;1445:113;1459:6;1456:1;1453:13;1445:113;;;1535:11;;;1529:18;1516:11;;;1509:39;1481:2;1474:10;1445:113;;;-1:-1:-1;;1592:1:1;1574:16;;1567:27;1350:250::o;1605:271::-;1647:3;1685:5;1679:12;1712:6;1707:3;1700:19;1728:76;1797:6;1790:4;1785:3;1781:14;1774:4;1767:5;1763:16;1728:76;:::i;:::-;1858:2;1837:15;-1:-1:-1;;1833:29:1;1824:39;;;;1865:4;1820:50;;1605:271;-1:-1:-1;;1605:271:1:o;1881:220::-;2030:2;2019:9;2012:21;1993:4;2050:45;2091:2;2080:9;2076:18;2068:6;2050:45;:::i;2106:180::-;2165:6;2218:2;2206:9;2197:7;2193:23;2189:32;2186:52;;;2234:1;2231;2224:12;2186:52;-1:-1:-1;2257:23:1;;2106:180;-1:-1:-1;2106:180:1:o;2499:315::-;2567:6;2575;2628:2;2616:9;2607:7;2603:23;2599:32;2596:52;;;2644:1;2641;2634:12;2596:52;2683:9;2670:23;2702:31;2727:5;2702:31;:::i;:::-;2752:5;2804:2;2789:18;;;;2776:32;;-1:-1:-1;;;2499:315:1:o;2819:456::-;2896:6;2904;2912;2965:2;2953:9;2944:7;2940:23;2936:32;2933:52;;;2981:1;2978;2971:12;2933:52;3020:9;3007:23;3039:31;3064:5;3039:31;:::i;:::-;3089:5;-1:-1:-1;3146:2:1;3131:18;;3118:32;3159:33;3118:32;3159:33;:::i;:::-;2819:456;;3211:7;;-1:-1:-1;;;3265:2:1;3250:18;;;;3237:32;;2819:456::o;3280:247::-;3339:6;3392:2;3380:9;3371:7;3367:23;3363:32;3360:52;;;3408:1;3405;3398:12;3360:52;3447:9;3434:23;3466:31;3491:5;3466:31;:::i;3532:118::-;3618:5;3611:13;3604:21;3597:5;3594:32;3584:60;;3640:1;3637;3630:12;3655:241;3711:6;3764:2;3752:9;3743:7;3739:23;3735:32;3732:52;;;3780:1;3777;3770:12;3732:52;3819:9;3806:23;3838:28;3860:5;3838:28;:::i;3901:248::-;3969:6;3977;4030:2;4018:9;4009:7;4005:23;4001:32;3998:52;;;4046:1;4043;4036:12;3998:52;-1:-1:-1;;4069:23:1;;;4139:2;4124:18;;;4111:32;;-1:-1:-1;3901:248:1:o;4673:632::-;4844:2;4896:21;;;4966:13;;4869:18;;;4988:22;;;4815:4;;4844:2;5067:15;;;;5041:2;5026:18;;;4815:4;5110:169;5124:6;5121:1;5118:13;5110:169;;;5185:13;;5173:26;;5254:15;;;;5219:12;;;;5146:1;5139:9;5110:169;;;-1:-1:-1;5296:3:1;;4673:632;-1:-1:-1;;;;;;4673:632:1:o;5310:127::-;5371:10;5366:3;5362:20;5359:1;5352:31;5402:4;5399:1;5392:15;5426:4;5423:1;5416:15;5442:275;5513:2;5507:9;5578:2;5559:13;;-1:-1:-1;;5555:27:1;5543:40;;-1:-1:-1;;;;;5598:34:1;;5634:22;;;5595:62;5592:88;;;5660:18;;:::i;:::-;5696:2;5689:22;5442:275;;-1:-1:-1;5442:275:1:o;5722:407::-;5787:5;-1:-1:-1;;;;;5813:6:1;5810:30;5807:56;;;5843:18;;:::i;:::-;5881:57;5926:2;5905:15;;-1:-1:-1;;5901:29:1;5932:4;5897:40;5881:57;:::i;:::-;5872:66;;5961:6;5954:5;5947:21;6001:3;5992:6;5987:3;5983:16;5980:25;5977:45;;;6018:1;6015;6008:12;5977:45;6067:6;6062:3;6055:4;6048:5;6044:16;6031:43;6121:1;6114:4;6105:6;6098:5;6094:18;6090:29;6083:40;5722:407;;;;;:::o;6134:451::-;6203:6;6256:2;6244:9;6235:7;6231:23;6227:32;6224:52;;;6272:1;6269;6262:12;6224:52;6312:9;6299:23;-1:-1:-1;;;;;6337:6:1;6334:30;6331:50;;;6377:1;6374;6367:12;6331:50;6400:22;;6453:4;6445:13;;6441:27;-1:-1:-1;6431:55:1;;6482:1;6479;6472:12;6431:55;6505:74;6571:7;6566:2;6553:16;6548:2;6544;6540:11;6505:74;:::i;6775:382::-;6840:6;6848;6901:2;6889:9;6880:7;6876:23;6872:32;6869:52;;;6917:1;6914;6907:12;6869:52;6956:9;6943:23;6975:31;7000:5;6975:31;:::i;:::-;7025:5;-1:-1:-1;7082:2:1;7067:18;;7054:32;7095:30;7054:32;7095:30;:::i;7162:795::-;7257:6;7265;7273;7281;7334:3;7322:9;7313:7;7309:23;7305:33;7302:53;;;7351:1;7348;7341:12;7302:53;7390:9;7377:23;7409:31;7434:5;7409:31;:::i;:::-;7459:5;-1:-1:-1;7516:2:1;7501:18;;7488:32;7529:33;7488:32;7529:33;:::i;:::-;7581:7;-1:-1:-1;7635:2:1;7620:18;;7607:32;;-1:-1:-1;7690:2:1;7675:18;;7662:32;-1:-1:-1;;;;;7706:30:1;;7703:50;;;7749:1;7746;7739:12;7703:50;7772:22;;7825:4;7817:13;;7813:27;-1:-1:-1;7803:55:1;;7854:1;7851;7844:12;7803:55;7877:74;7943:7;7938:2;7925:16;7920:2;7916;7912:11;7877:74;:::i;:::-;7867:84;;;7162:795;;;;;;;:::o;7962:712::-;8016:5;8069:3;8062:4;8054:6;8050:17;8046:27;8036:55;;8087:1;8084;8077:12;8036:55;8123:6;8110:20;8149:4;-1:-1:-1;;;;;8168:2:1;8165:26;8162:52;;;8194:18;;:::i;:::-;8240:2;8237:1;8233:10;8263:28;8287:2;8283;8279:11;8263:28;:::i;:::-;8325:15;;;8395;;;8391:24;;;8356:12;;;;8427:15;;;8424:35;;;8455:1;8452;8445:12;8424:35;8491:2;8483:6;8479:15;8468:26;;8503:142;8519:6;8514:3;8511:15;8503:142;;;8585:17;;8573:30;;8536:12;;;;8623;;;;8503:142;;;8663:5;7962:712;-1:-1:-1;;;;;;;7962:712:1:o;8679:484::-;8781:6;8789;8797;8850:2;8838:9;8829:7;8825:23;8821:32;8818:52;;;8866:1;8863;8856:12;8818:52;8902:9;8889:23;8879:33;;8959:2;8948:9;8944:18;8931:32;8921:42;;9014:2;9003:9;8999:18;8986:32;-1:-1:-1;;;;;9033:6:1;9030:30;9027:50;;;9073:1;9070;9063:12;9027:50;9096:61;9149:7;9140:6;9129:9;9125:22;9096:61;:::i;:::-;9086:71;;;8679:484;;;;;:::o;9168:315::-;9236:6;9244;9297:2;9285:9;9276:7;9272:23;9268:32;9265:52;;;9313:1;9310;9303:12;9265:52;9349:9;9336:23;9326:33;;9409:2;9398:9;9394:18;9381:32;9422:31;9447:5;9422:31;:::i;9488:388::-;9556:6;9564;9617:2;9605:9;9596:7;9592:23;9588:32;9585:52;;;9633:1;9630;9623:12;9585:52;9672:9;9659:23;9691:31;9716:5;9691:31;:::i;:::-;9741:5;-1:-1:-1;9798:2:1;9783:18;;9770:32;9811:33;9770:32;9811:33;:::i;9881:551::-;9983:6;9991;9999;10052:2;10040:9;10031:7;10027:23;10023:32;10020:52;;;10068:1;10065;10058:12;10020:52;10107:9;10094:23;10126:31;10151:5;10126:31;:::i;:::-;10176:5;-1:-1:-1;10228:2:1;10213:18;;10200:32;;-1:-1:-1;10283:2:1;10268:18;;10255:32;-1:-1:-1;;;;;10299:30:1;;10296:50;;;10342:1;10339;10332:12;10437:380;10516:1;10512:12;;;;10559;;;10580:61;;10634:4;10626:6;10622:17;10612:27;;10580:61;10687:2;10679:6;10676:14;10656:18;10653:38;10650:161;;10733:10;10728:3;10724:20;10721:1;10714:31;10768:4;10765:1;10758:15;10796:4;10793:1;10786:15;10650:161;;10437:380;;;:::o;11131:245::-;11198:6;11251:2;11239:9;11230:7;11226:23;11222:32;11219:52;;;11267:1;11264;11257:12;11219:52;11299:9;11293:16;11318:28;11340:5;11318:28;:::i;11381:127::-;11442:10;11437:3;11433:20;11430:1;11423:31;11473:4;11470:1;11463:15;11497:4;11494:1;11487:15;11513:168;11586:9;;;11617;;11634:15;;;11628:22;;11614:37;11604:71;;11655:18;;:::i;11686:127::-;11747:10;11742:3;11738:20;11735:1;11728:31;11778:4;11775:1;11768:15;11802:4;11799:1;11792:15;11818:120;11858:1;11884;11874:35;;11889:18;;:::i;:::-;-1:-1:-1;11923:9:1;;11818:120::o;11943:355::-;12145:2;12127:21;;;12184:2;12164:18;;;12157:30;12223:33;12218:2;12203:18;;12196:61;12289:2;12274:18;;11943:355::o;13467:125::-;13532:9;;;13553:10;;;13550:36;;;13566:18;;:::i;14306:336::-;14508:2;14490:21;;;14547:2;14527:18;;;14520:30;-1:-1:-1;;;14581:2:1;14566:18;;14559:42;14633:2;14618:18;;14306:336::o;14857:251::-;14927:6;14980:2;14968:9;14959:7;14955:23;14951:32;14948:52;;;14996:1;14993;14986:12;14948:52;15028:9;15022:16;15047:31;15072:5;15047:31;:::i;15113:135::-;15152:3;15173:17;;;15170:43;;15193:18;;:::i;:::-;-1:-1:-1;15240:1:1;15229:13;;15113:135::o;15253:127::-;15314:10;15309:3;15305:20;15302:1;15295:31;15345:4;15342:1;15335:15;15369:4;15366:1;15359:15;15511:545;15613:2;15608:3;15605:11;15602:448;;;15649:1;15674:5;15670:2;15663:17;15719:4;15715:2;15705:19;15789:2;15777:10;15773:19;15770:1;15766:27;15760:4;15756:38;15825:4;15813:10;15810:20;15807:47;;;-1:-1:-1;15848:4:1;15807:47;15903:2;15898:3;15894:12;15891:1;15887:20;15881:4;15877:31;15867:41;;15958:82;15976:2;15969:5;15966:13;15958:82;;;16021:17;;;16002:1;15991:13;15958:82;;;15962:3;;;15511:545;;;:::o;16232:1352::-;16358:3;16352:10;-1:-1:-1;;;;;16377:6:1;16374:30;16371:56;;;16407:18;;:::i;:::-;16436:97;16526:6;16486:38;16518:4;16512:11;16486:38;:::i;:::-;16480:4;16436:97;:::i;:::-;16588:4;;16652:2;16641:14;;16669:1;16664:663;;;;17371:1;17388:6;17385:89;;;-1:-1:-1;17440:19:1;;;17434:26;17385:89;-1:-1:-1;;16189:1:1;16185:11;;;16181:24;16177:29;16167:40;16213:1;16209:11;;;16164:57;17487:81;;16634:944;;16664:663;15458:1;15451:14;;;15495:4;15482:18;;-1:-1:-1;;16700:20:1;;;16818:236;16832:7;16829:1;16826:14;16818:236;;;16921:19;;;16915:26;16900:42;;17013:27;;;;16981:1;16969:14;;;;16848:19;;16818:236;;;16822:3;17082:6;17073:7;17070:19;17067:201;;;17143:19;;;17137:26;-1:-1:-1;;17226:1:1;17222:14;;;17238:3;17218:24;17214:37;17210:42;17195:58;17180:74;;17067:201;-1:-1:-1;;;;;17314:1:1;17298:14;;;17294:22;17281:36;;-1:-1:-1;16232:1352:1:o;20120:1256::-;20344:3;20382:6;20376:13;20408:4;20421:64;20478:6;20473:3;20468:2;20460:6;20456:15;20421:64;:::i;:::-;20548:13;;20507:16;;;;20570:68;20548:13;20507:16;20605:15;;;20570:68;:::i;:::-;20727:13;;20660:20;;;20700:1;;20765:36;20727:13;20765:36;:::i;:::-;20820:1;20837:18;;;20864:141;;;;21019:1;21014:337;;;;20830:521;;20864:141;-1:-1:-1;;20899:24:1;;20885:39;;20976:16;;20969:24;20955:39;;20944:51;;;-1:-1:-1;20864:141:1;;21014:337;21045:6;21042:1;21035:17;21093:2;21090:1;21080:16;21118:1;21132:169;21146:8;21143:1;21140:15;21132:169;;;21228:14;;21213:13;;;21206:37;21271:16;;;;21163:10;;21132:169;;;21136:3;;21332:8;21325:5;21321:20;21314:27;;20830:521;-1:-1:-1;21367:3:1;;20120:1256;-1:-1:-1;;;;;;;;;;20120:1256:1:o;22339:136::-;22378:3;22406:5;22396:39;;22415:18;;:::i;:::-;-1:-1:-1;;;22451:18:1;;22339:136::o;22841:611::-;-1:-1:-1;;;23199:3:1;23192:23;23174:3;23244:6;23238:13;23260:74;23327:6;23323:1;23318:3;23314:11;23307:4;23299:6;23295:17;23260:74;:::i;:::-;-1:-1:-1;;;23393:1:1;23353:16;;;;23385:10;;;23378:41;-1:-1:-1;23443:2:1;23435:11;;22841:611;-1:-1:-1;22841:611:1:o;24583:624::-;-1:-1:-1;;;24941:3:1;24934:23;24916:3;24986:6;24980:13;25002:74;25069:6;25065:1;25060:3;25056:11;25049:4;25041:6;25037:17;25002:74;:::i;:::-;25139:34;25135:1;25095:16;;;;25127:10;;;25120:54;-1:-1:-1;25198:2:1;25190:11;;24583:624;-1:-1:-1;24583:624:1:o;25212:128::-;25279:9;;;25300:11;;;25297:37;;;25314:18;;:::i;25345:112::-;25377:1;25403;25393:35;;25408:18;;:::i;:::-;-1:-1:-1;25442:9:1;;25345:112::o;25462:1050::-;25974:66;25969:3;25962:79;25944:3;26070:6;26064:13;26086:75;26154:6;26149:2;26144:3;26140:12;26133:4;26125:6;26121:17;26086:75;:::i;:::-;-1:-1:-1;;;26220:2:1;26180:16;;;26212:11;;;26205:71;26301:13;;26323:76;26301:13;26385:2;26377:11;;26370:4;26358:17;;26323:76;:::i;:::-;-1:-1:-1;;;26459:2:1;26418:17;;;;26451:11;;;26444:35;26503:2;26495:11;;25462:1050;-1:-1:-1;;;;25462:1050:1:o;26517:461::-;26779:31;26774:3;26767:44;26749:3;26840:6;26834:13;26856:75;26924:6;26919:2;26914:3;26910:12;26903:4;26895:6;26891:17;26856:75;:::i;:::-;26951:16;;;;26969:2;26947:25;;26517:461;-1:-1:-1;;26517:461:1:o;26983:489::-;-1:-1:-1;;;;;27252:15:1;;;27234:34;;27304:15;;27299:2;27284:18;;27277:43;27351:2;27336:18;;27329:34;;;27399:3;27394:2;27379:18;;27372:31;;;27177:4;;27420:46;;27446:19;;27438:6;27420:46;:::i;:::-;27412:54;26983:489;-1:-1:-1;;;;;;26983:489:1:o;27477:249::-;27546:6;27599:2;27587:9;27578:7;27574:23;27570:32;27567:52;;;27615:1;27612;27605:12;27567:52;27647:9;27641:16;27666:30;27690:5;27666:30;:::i
Swarm Source
ipfs://1912217dd3b1ff2bbf54b4f1ee84a69a86e19363ed301c99c47cc1700da32ff5
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.